comparison hgext/largefiles/uisetup.py @ 19778:55ef79031009

localrepo: make supported features manageable in each repositories individually Before this patch, all localrepositories support same features, because supported features are managed by the class variable "supported" of "localrepository". For example, "largefiles" feature provided by largefiles extension is recognized as supported, by adding the feature name to "supported" of "localrepository". So, commands handling multiple repositories at a time like below misunderstand that such features are supported also in repositories not enabling corresponded extensions: - clone/pull from or push to localhost - recursive execution in subrepo tree "reposetup()" can't be used to fix this problem, because it is invoked after checking whether supported features satisfy ones required in the target repository. So, this patch adds the set object named as "featuresetupfuncs" to "localrepository" to manage hook functions to setup supported features of each repositories. If any functions are added to "featuresetupfuncs", they are invoked, and information about supported features is managed in each repositories individually. This patch also adds checking below: - pull from localhost: whether features supported in the local(= dst) repository satisfies ones required in the remote(= src) - push to localhost: whether features supported in the remote(= dst) repository satisfies ones required in the local(= src) Managing supported features by the class variable means that there is no difference of supported features between each instances of "localrepository" in the same Python process, so such checking is not needed before this patch. Even with this patch, if intermediate bundlefile is used as pulling source, pulling indirectly from the remote repository, which requires features more than ones supported in the local, can't be prevented, because bundlefile has no information about "required features" in it.
author FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
date Sat, 21 Sep 2013 21:33:29 +0900
parents 43cb150e74f9
children fb6e87d93948
comparison
equal deleted inserted replaced
19777:6f72e7d28b35 19778:55ef79031009
151 proto.httpoldcallstream = httppeer.httppeer._callstream 151 proto.httpoldcallstream = httppeer.httppeer._callstream
152 sshpeer.sshpeer._callstream = proto.sshrepocallstream 152 sshpeer.sshpeer._callstream = proto.sshrepocallstream
153 httppeer.httppeer._callstream = proto.httprepocallstream 153 httppeer.httppeer._callstream = proto.httprepocallstream
154 154
155 # don't die on seeing a repo with the largefiles requirement 155 # don't die on seeing a repo with the largefiles requirement
156 localrepo.localrepository.supported |= set(['largefiles']) 156 localrepo.localrepository._basesupported |= set(['largefiles'])
157 157
158 # override some extensions' stuff as well 158 # override some extensions' stuff as well
159 for name, module in extensions.extensions(): 159 for name, module in extensions.extensions():
160 if name == 'fetch': 160 if name == 'fetch':
161 extensions.wrapcommand(getattr(module, 'cmdtable'), 'fetch', 161 extensions.wrapcommand(getattr(module, 'cmdtable'), 'fetch',