comparison mercurial/statichttprepo.py @ 33604:8b00c723cee1 stable

statichttprepo: implement wlock() (issue5613) statichttprepo inherits from localrepository. In doing so, it obtains default implementations of various methods, like wlock(). Before this change, tags cache writing would call repo.wlock(). This failed on statichttprepo due to localrepository's wlock() looking for an instance attribute that doesn't exist on statichttprepo (statichttprepo doesn't call localrepository.__init__). We /could/ define missing attributes until the base wlock() works. However, a statichttprepo is remote and read-only and can't be locked. The class already has a lock() that short circuits. So it makes sense to implement a short-circuited wlock() as well. That is what this patch does. LockError is expected to be raised when locking fails. The constructor takes a number of arguments that are local repository centric. Rather than rework LockError to not require them (which would not be appropriate for stable), this commit populates dummy values. I don't believe they'll ever be seen by the user, as lock failures on static http repos should be limited to well-defined (and tested) scenarios. We can and should revisit the LockError type to improve this.
author Gregory Szorc <gregory.szorc@gmail.com>
date Sat, 29 Jul 2017 12:50:56 -0700
parents 4133c0b0fcd7
children 3423f7e2d287
comparison
equal deleted inserted replaced
33603:075823a6161b 33604:8b00c723cee1
180 return False 180 return False
181 181
182 def peer(self): 182 def peer(self):
183 return statichttppeer(self) 183 return statichttppeer(self)
184 184
185 def wlock(self, wait=True):
186 raise error.LockUnavailable(0, _('lock not available'), 'lock',
187 _('cannot lock static-http repository'))
188
185 def lock(self, wait=True): 189 def lock(self, wait=True):
186 raise error.Abort(_('cannot lock static-http repository')) 190 raise error.Abort(_('cannot lock static-http repository'))
187 191
188 def _writecaches(self): 192 def _writecaches(self):
189 pass # statichttprepository are read only 193 pass # statichttprepository are read only