Show More
@@ -1,1404 +1,1407 | |||
|
1 | 1 | # configitems.py - centralized declaration of configuration option |
|
2 | 2 | # |
|
3 | 3 | # Copyright 2017 Pierre-Yves David <pierre-yves.david@octobus.net> |
|
4 | 4 | # |
|
5 | 5 | # This software may be used and distributed according to the terms of the |
|
6 | 6 | # GNU General Public License version 2 or any later version. |
|
7 | 7 | |
|
8 | 8 | from __future__ import absolute_import |
|
9 | 9 | |
|
10 | 10 | import functools |
|
11 | 11 | import re |
|
12 | 12 | |
|
13 | 13 | from . import ( |
|
14 | 14 | encoding, |
|
15 | 15 | error, |
|
16 | 16 | ) |
|
17 | 17 | |
|
18 | 18 | def loadconfigtable(ui, extname, configtable): |
|
19 | 19 | """update config item known to the ui with the extension ones""" |
|
20 | 20 | for section, items in sorted(configtable.items()): |
|
21 | 21 | knownitems = ui._knownconfig.setdefault(section, itemregister()) |
|
22 | 22 | knownkeys = set(knownitems) |
|
23 | 23 | newkeys = set(items) |
|
24 | 24 | for key in sorted(knownkeys & newkeys): |
|
25 | 25 | msg = "extension '%s' overwrite config item '%s.%s'" |
|
26 | 26 | msg %= (extname, section, key) |
|
27 | 27 | ui.develwarn(msg, config='warn-config') |
|
28 | 28 | |
|
29 | 29 | knownitems.update(items) |
|
30 | 30 | |
|
31 | 31 | class configitem(object): |
|
32 | 32 | """represent a known config item |
|
33 | 33 | |
|
34 | 34 | :section: the official config section where to find this item, |
|
35 | 35 | :name: the official name within the section, |
|
36 | 36 | :default: default value for this item, |
|
37 | 37 | :alias: optional list of tuples as alternatives, |
|
38 | 38 | :generic: this is a generic definition, match name using regular expression. |
|
39 | 39 | """ |
|
40 | 40 | |
|
41 | 41 | def __init__(self, section, name, default=None, alias=(), |
|
42 | 42 | generic=False, priority=0): |
|
43 | 43 | self.section = section |
|
44 | 44 | self.name = name |
|
45 | 45 | self.default = default |
|
46 | 46 | self.alias = list(alias) |
|
47 | 47 | self.generic = generic |
|
48 | 48 | self.priority = priority |
|
49 | 49 | self._re = None |
|
50 | 50 | if generic: |
|
51 | 51 | self._re = re.compile(self.name) |
|
52 | 52 | |
|
53 | 53 | class itemregister(dict): |
|
54 | 54 | """A specialized dictionary that can handle wild-card selection""" |
|
55 | 55 | |
|
56 | 56 | def __init__(self): |
|
57 | 57 | super(itemregister, self).__init__() |
|
58 | 58 | self._generics = set() |
|
59 | 59 | |
|
60 | 60 | def update(self, other): |
|
61 | 61 | super(itemregister, self).update(other) |
|
62 | 62 | self._generics.update(other._generics) |
|
63 | 63 | |
|
64 | 64 | def __setitem__(self, key, item): |
|
65 | 65 | super(itemregister, self).__setitem__(key, item) |
|
66 | 66 | if item.generic: |
|
67 | 67 | self._generics.add(item) |
|
68 | 68 | |
|
69 | 69 | def get(self, key): |
|
70 | 70 | baseitem = super(itemregister, self).get(key) |
|
71 | 71 | if baseitem is not None and not baseitem.generic: |
|
72 | 72 | return baseitem |
|
73 | 73 | |
|
74 | 74 | # search for a matching generic item |
|
75 | 75 | generics = sorted(self._generics, key=(lambda x: (x.priority, x.name))) |
|
76 | 76 | for item in generics: |
|
77 | 77 | # we use 'match' instead of 'search' to make the matching simpler |
|
78 | 78 | # for people unfamiliar with regular expression. Having the match |
|
79 | 79 | # rooted to the start of the string will produce less surprising |
|
80 | 80 | # result for user writing simple regex for sub-attribute. |
|
81 | 81 | # |
|
82 | 82 | # For example using "color\..*" match produces an unsurprising |
|
83 | 83 | # result, while using search could suddenly match apparently |
|
84 | 84 | # unrelated configuration that happens to contains "color." |
|
85 | 85 | # anywhere. This is a tradeoff where we favor requiring ".*" on |
|
86 | 86 | # some match to avoid the need to prefix most pattern with "^". |
|
87 | 87 | # The "^" seems more error prone. |
|
88 | 88 | if item._re.match(key): |
|
89 | 89 | return item |
|
90 | 90 | |
|
91 | 91 | return None |
|
92 | 92 | |
|
93 | 93 | coreitems = {} |
|
94 | 94 | |
|
95 | 95 | def _register(configtable, *args, **kwargs): |
|
96 | 96 | item = configitem(*args, **kwargs) |
|
97 | 97 | section = configtable.setdefault(item.section, itemregister()) |
|
98 | 98 | if item.name in section: |
|
99 | 99 | msg = "duplicated config item registration for '%s.%s'" |
|
100 | 100 | raise error.ProgrammingError(msg % (item.section, item.name)) |
|
101 | 101 | section[item.name] = item |
|
102 | 102 | |
|
103 | 103 | # special value for case where the default is derived from other values |
|
104 | 104 | dynamicdefault = object() |
|
105 | 105 | |
|
106 | 106 | # Registering actual config items |
|
107 | 107 | |
|
108 | 108 | def getitemregister(configtable): |
|
109 | 109 | f = functools.partial(_register, configtable) |
|
110 | 110 | # export pseudo enum as configitem.* |
|
111 | 111 | f.dynamicdefault = dynamicdefault |
|
112 | 112 | return f |
|
113 | 113 | |
|
114 | 114 | coreconfigitem = getitemregister(coreitems) |
|
115 | 115 | |
|
116 | 116 | coreconfigitem('alias', '.*', |
|
117 | 117 | default=dynamicdefault, |
|
118 | 118 | generic=True, |
|
119 | 119 | ) |
|
120 | 120 | coreconfigitem('annotate', 'nodates', |
|
121 | 121 | default=False, |
|
122 | 122 | ) |
|
123 | 123 | coreconfigitem('annotate', 'showfunc', |
|
124 | 124 | default=False, |
|
125 | 125 | ) |
|
126 | 126 | coreconfigitem('annotate', 'unified', |
|
127 | 127 | default=None, |
|
128 | 128 | ) |
|
129 | 129 | coreconfigitem('annotate', 'git', |
|
130 | 130 | default=False, |
|
131 | 131 | ) |
|
132 | 132 | coreconfigitem('annotate', 'ignorews', |
|
133 | 133 | default=False, |
|
134 | 134 | ) |
|
135 | 135 | coreconfigitem('annotate', 'ignorewsamount', |
|
136 | 136 | default=False, |
|
137 | 137 | ) |
|
138 | 138 | coreconfigitem('annotate', 'ignoreblanklines', |
|
139 | 139 | default=False, |
|
140 | 140 | ) |
|
141 | 141 | coreconfigitem('annotate', 'ignorewseol', |
|
142 | 142 | default=False, |
|
143 | 143 | ) |
|
144 | 144 | coreconfigitem('annotate', 'nobinary', |
|
145 | 145 | default=False, |
|
146 | 146 | ) |
|
147 | 147 | coreconfigitem('annotate', 'noprefix', |
|
148 | 148 | default=False, |
|
149 | 149 | ) |
|
150 | 150 | coreconfigitem('annotate', 'word-diff', |
|
151 | 151 | default=False, |
|
152 | 152 | ) |
|
153 | 153 | coreconfigitem('auth', 'cookiefile', |
|
154 | 154 | default=None, |
|
155 | 155 | ) |
|
156 | 156 | # bookmarks.pushing: internal hack for discovery |
|
157 | 157 | coreconfigitem('bookmarks', 'pushing', |
|
158 | 158 | default=list, |
|
159 | 159 | ) |
|
160 | 160 | # bundle.mainreporoot: internal hack for bundlerepo |
|
161 | 161 | coreconfigitem('bundle', 'mainreporoot', |
|
162 | 162 | default='', |
|
163 | 163 | ) |
|
164 | 164 | coreconfigitem('censor', 'policy', |
|
165 | 165 | default='abort', |
|
166 | 166 | ) |
|
167 | 167 | coreconfigitem('chgserver', 'idletimeout', |
|
168 | 168 | default=3600, |
|
169 | 169 | ) |
|
170 | 170 | coreconfigitem('chgserver', 'skiphash', |
|
171 | 171 | default=False, |
|
172 | 172 | ) |
|
173 | 173 | coreconfigitem('cmdserver', 'log', |
|
174 | 174 | default=None, |
|
175 | 175 | ) |
|
176 | 176 | coreconfigitem('color', '.*', |
|
177 | 177 | default=None, |
|
178 | 178 | generic=True, |
|
179 | 179 | ) |
|
180 | 180 | coreconfigitem('color', 'mode', |
|
181 | 181 | default='auto', |
|
182 | 182 | ) |
|
183 | 183 | coreconfigitem('color', 'pagermode', |
|
184 | 184 | default=dynamicdefault, |
|
185 | 185 | ) |
|
186 | 186 | coreconfigitem('commands', 'grep.all-files', |
|
187 | 187 | default=False, |
|
188 | 188 | ) |
|
189 | 189 | coreconfigitem('commands', 'resolve.confirm', |
|
190 | 190 | default=False, |
|
191 | 191 | ) |
|
192 | 192 | coreconfigitem('commands', 'resolve.explicit-re-merge', |
|
193 | 193 | default=False, |
|
194 | 194 | ) |
|
195 | 195 | coreconfigitem('commands', 'resolve.mark-check', |
|
196 | 196 | default='none', |
|
197 | 197 | ) |
|
198 | 198 | coreconfigitem('commands', 'show.aliasprefix', |
|
199 | 199 | default=list, |
|
200 | 200 | ) |
|
201 | 201 | coreconfigitem('commands', 'status.relative', |
|
202 | 202 | default=False, |
|
203 | 203 | ) |
|
204 | 204 | coreconfigitem('commands', 'status.skipstates', |
|
205 | 205 | default=[], |
|
206 | 206 | ) |
|
207 | 207 | coreconfigitem('commands', 'status.terse', |
|
208 | 208 | default='', |
|
209 | 209 | ) |
|
210 | 210 | coreconfigitem('commands', 'status.verbose', |
|
211 | 211 | default=False, |
|
212 | 212 | ) |
|
213 | 213 | coreconfigitem('commands', 'update.check', |
|
214 | 214 | default=None, |
|
215 | 215 | ) |
|
216 | 216 | coreconfigitem('commands', 'update.requiredest', |
|
217 | 217 | default=False, |
|
218 | 218 | ) |
|
219 | 219 | coreconfigitem('committemplate', '.*', |
|
220 | 220 | default=None, |
|
221 | 221 | generic=True, |
|
222 | 222 | ) |
|
223 | 223 | coreconfigitem('convert', 'bzr.saverev', |
|
224 | 224 | default=True, |
|
225 | 225 | ) |
|
226 | 226 | coreconfigitem('convert', 'cvsps.cache', |
|
227 | 227 | default=True, |
|
228 | 228 | ) |
|
229 | 229 | coreconfigitem('convert', 'cvsps.fuzz', |
|
230 | 230 | default=60, |
|
231 | 231 | ) |
|
232 | 232 | coreconfigitem('convert', 'cvsps.logencoding', |
|
233 | 233 | default=None, |
|
234 | 234 | ) |
|
235 | 235 | coreconfigitem('convert', 'cvsps.mergefrom', |
|
236 | 236 | default=None, |
|
237 | 237 | ) |
|
238 | 238 | coreconfigitem('convert', 'cvsps.mergeto', |
|
239 | 239 | default=None, |
|
240 | 240 | ) |
|
241 | 241 | coreconfigitem('convert', 'git.committeractions', |
|
242 | 242 | default=lambda: ['messagedifferent'], |
|
243 | 243 | ) |
|
244 | 244 | coreconfigitem('convert', 'git.extrakeys', |
|
245 | 245 | default=list, |
|
246 | 246 | ) |
|
247 | 247 | coreconfigitem('convert', 'git.findcopiesharder', |
|
248 | 248 | default=False, |
|
249 | 249 | ) |
|
250 | 250 | coreconfigitem('convert', 'git.remoteprefix', |
|
251 | 251 | default='remote', |
|
252 | 252 | ) |
|
253 | 253 | coreconfigitem('convert', 'git.renamelimit', |
|
254 | 254 | default=400, |
|
255 | 255 | ) |
|
256 | 256 | coreconfigitem('convert', 'git.saverev', |
|
257 | 257 | default=True, |
|
258 | 258 | ) |
|
259 | 259 | coreconfigitem('convert', 'git.similarity', |
|
260 | 260 | default=50, |
|
261 | 261 | ) |
|
262 | 262 | coreconfigitem('convert', 'git.skipsubmodules', |
|
263 | 263 | default=False, |
|
264 | 264 | ) |
|
265 | 265 | coreconfigitem('convert', 'hg.clonebranches', |
|
266 | 266 | default=False, |
|
267 | 267 | ) |
|
268 | 268 | coreconfigitem('convert', 'hg.ignoreerrors', |
|
269 | 269 | default=False, |
|
270 | 270 | ) |
|
271 | 271 | coreconfigitem('convert', 'hg.revs', |
|
272 | 272 | default=None, |
|
273 | 273 | ) |
|
274 | 274 | coreconfigitem('convert', 'hg.saverev', |
|
275 | 275 | default=False, |
|
276 | 276 | ) |
|
277 | 277 | coreconfigitem('convert', 'hg.sourcename', |
|
278 | 278 | default=None, |
|
279 | 279 | ) |
|
280 | 280 | coreconfigitem('convert', 'hg.startrev', |
|
281 | 281 | default=None, |
|
282 | 282 | ) |
|
283 | 283 | coreconfigitem('convert', 'hg.tagsbranch', |
|
284 | 284 | default='default', |
|
285 | 285 | ) |
|
286 | 286 | coreconfigitem('convert', 'hg.usebranchnames', |
|
287 | 287 | default=True, |
|
288 | 288 | ) |
|
289 | 289 | coreconfigitem('convert', 'ignoreancestorcheck', |
|
290 | 290 | default=False, |
|
291 | 291 | ) |
|
292 | 292 | coreconfigitem('convert', 'localtimezone', |
|
293 | 293 | default=False, |
|
294 | 294 | ) |
|
295 | 295 | coreconfigitem('convert', 'p4.encoding', |
|
296 | 296 | default=dynamicdefault, |
|
297 | 297 | ) |
|
298 | 298 | coreconfigitem('convert', 'p4.startrev', |
|
299 | 299 | default=0, |
|
300 | 300 | ) |
|
301 | 301 | coreconfigitem('convert', 'skiptags', |
|
302 | 302 | default=False, |
|
303 | 303 | ) |
|
304 | 304 | coreconfigitem('convert', 'svn.debugsvnlog', |
|
305 | 305 | default=True, |
|
306 | 306 | ) |
|
307 | 307 | coreconfigitem('convert', 'svn.trunk', |
|
308 | 308 | default=None, |
|
309 | 309 | ) |
|
310 | 310 | coreconfigitem('convert', 'svn.tags', |
|
311 | 311 | default=None, |
|
312 | 312 | ) |
|
313 | 313 | coreconfigitem('convert', 'svn.branches', |
|
314 | 314 | default=None, |
|
315 | 315 | ) |
|
316 | 316 | coreconfigitem('convert', 'svn.startrev', |
|
317 | 317 | default=0, |
|
318 | 318 | ) |
|
319 | 319 | coreconfigitem('debug', 'dirstate.delaywrite', |
|
320 | 320 | default=0, |
|
321 | 321 | ) |
|
322 | 322 | coreconfigitem('defaults', '.*', |
|
323 | 323 | default=None, |
|
324 | 324 | generic=True, |
|
325 | 325 | ) |
|
326 | 326 | coreconfigitem('devel', 'all-warnings', |
|
327 | 327 | default=False, |
|
328 | 328 | ) |
|
329 | 329 | coreconfigitem('devel', 'bundle2.debug', |
|
330 | 330 | default=False, |
|
331 | 331 | ) |
|
332 | 332 | coreconfigitem('devel', 'cache-vfs', |
|
333 | 333 | default=None, |
|
334 | 334 | ) |
|
335 | 335 | coreconfigitem('devel', 'check-locks', |
|
336 | 336 | default=False, |
|
337 | 337 | ) |
|
338 | 338 | coreconfigitem('devel', 'check-relroot', |
|
339 | 339 | default=False, |
|
340 | 340 | ) |
|
341 | 341 | coreconfigitem('devel', 'default-date', |
|
342 | 342 | default=None, |
|
343 | 343 | ) |
|
344 | 344 | coreconfigitem('devel', 'deprec-warn', |
|
345 | 345 | default=False, |
|
346 | 346 | ) |
|
347 | 347 | coreconfigitem('devel', 'disableloaddefaultcerts', |
|
348 | 348 | default=False, |
|
349 | 349 | ) |
|
350 | 350 | coreconfigitem('devel', 'warn-empty-changegroup', |
|
351 | 351 | default=False, |
|
352 | 352 | ) |
|
353 | 353 | coreconfigitem('devel', 'legacy.exchange', |
|
354 | 354 | default=list, |
|
355 | 355 | ) |
|
356 | 356 | coreconfigitem('devel', 'servercafile', |
|
357 | 357 | default='', |
|
358 | 358 | ) |
|
359 | 359 | coreconfigitem('devel', 'serverexactprotocol', |
|
360 | 360 | default='', |
|
361 | 361 | ) |
|
362 | 362 | coreconfigitem('devel', 'serverrequirecert', |
|
363 | 363 | default=False, |
|
364 | 364 | ) |
|
365 | 365 | coreconfigitem('devel', 'strip-obsmarkers', |
|
366 | 366 | default=True, |
|
367 | 367 | ) |
|
368 | 368 | coreconfigitem('devel', 'warn-config', |
|
369 | 369 | default=None, |
|
370 | 370 | ) |
|
371 | 371 | coreconfigitem('devel', 'warn-config-default', |
|
372 | 372 | default=None, |
|
373 | 373 | ) |
|
374 | 374 | coreconfigitem('devel', 'user.obsmarker', |
|
375 | 375 | default=None, |
|
376 | 376 | ) |
|
377 | 377 | coreconfigitem('devel', 'warn-config-unknown', |
|
378 | 378 | default=None, |
|
379 | 379 | ) |
|
380 | 380 | coreconfigitem('devel', 'debug.extensions', |
|
381 | 381 | default=False, |
|
382 | 382 | ) |
|
383 | 383 | coreconfigitem('devel', 'debug.peer-request', |
|
384 | 384 | default=False, |
|
385 | 385 | ) |
|
386 | 386 | coreconfigitem('diff', 'nodates', |
|
387 | 387 | default=False, |
|
388 | 388 | ) |
|
389 | 389 | coreconfigitem('diff', 'showfunc', |
|
390 | 390 | default=False, |
|
391 | 391 | ) |
|
392 | 392 | coreconfigitem('diff', 'unified', |
|
393 | 393 | default=None, |
|
394 | 394 | ) |
|
395 | 395 | coreconfigitem('diff', 'git', |
|
396 | 396 | default=False, |
|
397 | 397 | ) |
|
398 | 398 | coreconfigitem('diff', 'ignorews', |
|
399 | 399 | default=False, |
|
400 | 400 | ) |
|
401 | 401 | coreconfigitem('diff', 'ignorewsamount', |
|
402 | 402 | default=False, |
|
403 | 403 | ) |
|
404 | 404 | coreconfigitem('diff', 'ignoreblanklines', |
|
405 | 405 | default=False, |
|
406 | 406 | ) |
|
407 | 407 | coreconfigitem('diff', 'ignorewseol', |
|
408 | 408 | default=False, |
|
409 | 409 | ) |
|
410 | 410 | coreconfigitem('diff', 'nobinary', |
|
411 | 411 | default=False, |
|
412 | 412 | ) |
|
413 | 413 | coreconfigitem('diff', 'noprefix', |
|
414 | 414 | default=False, |
|
415 | 415 | ) |
|
416 | 416 | coreconfigitem('diff', 'word-diff', |
|
417 | 417 | default=False, |
|
418 | 418 | ) |
|
419 | 419 | coreconfigitem('email', 'bcc', |
|
420 | 420 | default=None, |
|
421 | 421 | ) |
|
422 | 422 | coreconfigitem('email', 'cc', |
|
423 | 423 | default=None, |
|
424 | 424 | ) |
|
425 | 425 | coreconfigitem('email', 'charsets', |
|
426 | 426 | default=list, |
|
427 | 427 | ) |
|
428 | 428 | coreconfigitem('email', 'from', |
|
429 | 429 | default=None, |
|
430 | 430 | ) |
|
431 | 431 | coreconfigitem('email', 'method', |
|
432 | 432 | default='smtp', |
|
433 | 433 | ) |
|
434 | 434 | coreconfigitem('email', 'reply-to', |
|
435 | 435 | default=None, |
|
436 | 436 | ) |
|
437 | 437 | coreconfigitem('email', 'to', |
|
438 | 438 | default=None, |
|
439 | 439 | ) |
|
440 | 440 | coreconfigitem('experimental', 'archivemetatemplate', |
|
441 | 441 | default=dynamicdefault, |
|
442 | 442 | ) |
|
443 | 443 | coreconfigitem('experimental', 'bundle-phases', |
|
444 | 444 | default=False, |
|
445 | 445 | ) |
|
446 | 446 | coreconfigitem('experimental', 'bundle2-advertise', |
|
447 | 447 | default=True, |
|
448 | 448 | ) |
|
449 | 449 | coreconfigitem('experimental', 'bundle2-output-capture', |
|
450 | 450 | default=False, |
|
451 | 451 | ) |
|
452 | 452 | coreconfigitem('experimental', 'bundle2.pushback', |
|
453 | 453 | default=False, |
|
454 | 454 | ) |
|
455 | 455 | coreconfigitem('experimental', 'bundle2lazylocking', |
|
456 | 456 | default=False, |
|
457 | 457 | ) |
|
458 | 458 | coreconfigitem('experimental', 'bundlecomplevel', |
|
459 | 459 | default=None, |
|
460 | 460 | ) |
|
461 | 461 | coreconfigitem('experimental', 'bundlecomplevel.bzip2', |
|
462 | 462 | default=None, |
|
463 | 463 | ) |
|
464 | 464 | coreconfigitem('experimental', 'bundlecomplevel.gzip', |
|
465 | 465 | default=None, |
|
466 | 466 | ) |
|
467 | 467 | coreconfigitem('experimental', 'bundlecomplevel.none', |
|
468 | 468 | default=None, |
|
469 | 469 | ) |
|
470 | 470 | coreconfigitem('experimental', 'bundlecomplevel.zstd', |
|
471 | 471 | default=None, |
|
472 | 472 | ) |
|
473 | 473 | coreconfigitem('experimental', 'changegroup3', |
|
474 | 474 | default=False, |
|
475 | 475 | ) |
|
476 | 476 | coreconfigitem('experimental', 'clientcompressionengines', |
|
477 | 477 | default=list, |
|
478 | 478 | ) |
|
479 | 479 | coreconfigitem('experimental', 'copytrace', |
|
480 | 480 | default='on', |
|
481 | 481 | ) |
|
482 | 482 | coreconfigitem('experimental', 'copytrace.movecandidateslimit', |
|
483 | 483 | default=100, |
|
484 | 484 | ) |
|
485 | 485 | coreconfigitem('experimental', 'copytrace.sourcecommitlimit', |
|
486 | 486 | default=100, |
|
487 | 487 | ) |
|
488 | 488 | coreconfigitem('experimental', 'crecordtest', |
|
489 | 489 | default=None, |
|
490 | 490 | ) |
|
491 | 491 | coreconfigitem('experimental', 'directaccess', |
|
492 | 492 | default=False, |
|
493 | 493 | ) |
|
494 | 494 | coreconfigitem('experimental', 'directaccess.revnums', |
|
495 | 495 | default=False, |
|
496 | 496 | ) |
|
497 | 497 | coreconfigitem('experimental', 'editortmpinhg', |
|
498 | 498 | default=False, |
|
499 | 499 | ) |
|
500 | 500 | coreconfigitem('experimental', 'evolution', |
|
501 | 501 | default=list, |
|
502 | 502 | ) |
|
503 | 503 | coreconfigitem('experimental', 'evolution.allowdivergence', |
|
504 | 504 | default=False, |
|
505 | 505 | alias=[('experimental', 'allowdivergence')] |
|
506 | 506 | ) |
|
507 | 507 | coreconfigitem('experimental', 'evolution.allowunstable', |
|
508 | 508 | default=None, |
|
509 | 509 | ) |
|
510 | 510 | coreconfigitem('experimental', 'evolution.createmarkers', |
|
511 | 511 | default=None, |
|
512 | 512 | ) |
|
513 | 513 | coreconfigitem('experimental', 'evolution.effect-flags', |
|
514 | 514 | default=True, |
|
515 | 515 | alias=[('experimental', 'effect-flags')] |
|
516 | 516 | ) |
|
517 | 517 | coreconfigitem('experimental', 'evolution.exchange', |
|
518 | 518 | default=None, |
|
519 | 519 | ) |
|
520 | 520 | coreconfigitem('experimental', 'evolution.bundle-obsmarker', |
|
521 | 521 | default=False, |
|
522 | 522 | ) |
|
523 | 523 | coreconfigitem('experimental', 'evolution.report-instabilities', |
|
524 | 524 | default=True, |
|
525 | 525 | ) |
|
526 | 526 | coreconfigitem('experimental', 'evolution.track-operation', |
|
527 | 527 | default=True, |
|
528 | 528 | ) |
|
529 | 529 | coreconfigitem('experimental', 'maxdeltachainspan', |
|
530 | 530 | default=-1, |
|
531 | 531 | ) |
|
532 | 532 | coreconfigitem('experimental', 'mergetempdirprefix', |
|
533 | 533 | default=None, |
|
534 | 534 | ) |
|
535 | 535 | coreconfigitem('experimental', 'mmapindexthreshold', |
|
536 | 536 | default=None, |
|
537 | 537 | ) |
|
538 | 538 | coreconfigitem('experimental', 'nonnormalparanoidcheck', |
|
539 | 539 | default=False, |
|
540 | 540 | ) |
|
541 | 541 | coreconfigitem('experimental', 'exportableenviron', |
|
542 | 542 | default=list, |
|
543 | 543 | ) |
|
544 | 544 | coreconfigitem('experimental', 'extendedheader.index', |
|
545 | 545 | default=None, |
|
546 | 546 | ) |
|
547 | 547 | coreconfigitem('experimental', 'extendedheader.similarity', |
|
548 | 548 | default=False, |
|
549 | 549 | ) |
|
550 | 550 | coreconfigitem('experimental', 'format.compression', |
|
551 | 551 | default='zlib', |
|
552 | 552 | ) |
|
553 | 553 | coreconfigitem('experimental', 'graphshorten', |
|
554 | 554 | default=False, |
|
555 | 555 | ) |
|
556 | 556 | coreconfigitem('experimental', 'graphstyle.parent', |
|
557 | 557 | default=dynamicdefault, |
|
558 | 558 | ) |
|
559 | 559 | coreconfigitem('experimental', 'graphstyle.missing', |
|
560 | 560 | default=dynamicdefault, |
|
561 | 561 | ) |
|
562 | 562 | coreconfigitem('experimental', 'graphstyle.grandparent', |
|
563 | 563 | default=dynamicdefault, |
|
564 | 564 | ) |
|
565 | 565 | coreconfigitem('experimental', 'hook-track-tags', |
|
566 | 566 | default=False, |
|
567 | 567 | ) |
|
568 | 568 | coreconfigitem('experimental', 'httppeer.advertise-v2', |
|
569 | 569 | default=False, |
|
570 | 570 | ) |
|
571 | 571 | coreconfigitem('experimental', 'httppostargs', |
|
572 | 572 | default=False, |
|
573 | 573 | ) |
|
574 | 574 | coreconfigitem('experimental', 'mergedriver', |
|
575 | 575 | default=None, |
|
576 | 576 | ) |
|
577 | 577 | coreconfigitem('experimental', 'nointerrupt', default=False) |
|
578 | 578 | coreconfigitem('experimental', 'nointerrupt-interactiveonly', default=True) |
|
579 | 579 | |
|
580 | 580 | coreconfigitem('experimental', 'obsmarkers-exchange-debug', |
|
581 | 581 | default=False, |
|
582 | 582 | ) |
|
583 | 583 | coreconfigitem('experimental', 'remotenames', |
|
584 | 584 | default=False, |
|
585 | 585 | ) |
|
586 | 586 | coreconfigitem('experimental', 'removeemptydirs', |
|
587 | 587 | default=True, |
|
588 | 588 | ) |
|
589 | 589 | coreconfigitem('experimental', 'revisions.prefixhexnode', |
|
590 | 590 | default=False, |
|
591 | 591 | ) |
|
592 | 592 | coreconfigitem('experimental', 'revlogv2', |
|
593 | 593 | default=None, |
|
594 | 594 | ) |
|
595 | 595 | coreconfigitem('experimental', 'revisions.disambiguatewithin', |
|
596 | 596 | default=None, |
|
597 | 597 | ) |
|
598 | 598 | coreconfigitem('experimental', 'single-head-per-branch', |
|
599 | 599 | default=False, |
|
600 | 600 | ) |
|
601 | 601 | coreconfigitem('experimental', 'sshserver.support-v2', |
|
602 | 602 | default=False, |
|
603 | 603 | ) |
|
604 | 604 | coreconfigitem('experimental', 'spacemovesdown', |
|
605 | 605 | default=False, |
|
606 | 606 | ) |
|
607 | 607 | coreconfigitem('experimental', 'sparse-read', |
|
608 | 608 | default=False, |
|
609 | 609 | ) |
|
610 | 610 | coreconfigitem('experimental', 'sparse-read.density-threshold', |
|
611 | 611 | default=0.50, |
|
612 | 612 | ) |
|
613 | 613 | coreconfigitem('experimental', 'sparse-read.min-gap-size', |
|
614 | 614 | default='65K', |
|
615 | 615 | ) |
|
616 | 616 | coreconfigitem('experimental', 'treemanifest', |
|
617 | 617 | default=False, |
|
618 | 618 | ) |
|
619 | 619 | coreconfigitem('experimental', 'update.atomic-file', |
|
620 | 620 | default=False, |
|
621 | 621 | ) |
|
622 | 622 | coreconfigitem('experimental', 'sshpeer.advertise-v2', |
|
623 | 623 | default=False, |
|
624 | 624 | ) |
|
625 | 625 | coreconfigitem('experimental', 'web.apiserver', |
|
626 | 626 | default=False, |
|
627 | 627 | ) |
|
628 | 628 | coreconfigitem('experimental', 'web.api.http-v2', |
|
629 | 629 | default=False, |
|
630 | 630 | ) |
|
631 | 631 | coreconfigitem('experimental', 'web.api.debugreflect', |
|
632 | 632 | default=False, |
|
633 | 633 | ) |
|
634 | 634 | coreconfigitem('experimental', 'worker.wdir-get-thread-safe', |
|
635 | 635 | default=False, |
|
636 | 636 | ) |
|
637 | 637 | coreconfigitem('experimental', 'xdiff', |
|
638 | 638 | default=False, |
|
639 | 639 | ) |
|
640 | 640 | coreconfigitem('extensions', '.*', |
|
641 | 641 | default=None, |
|
642 | 642 | generic=True, |
|
643 | 643 | ) |
|
644 | 644 | coreconfigitem('extdata', '.*', |
|
645 | 645 | default=None, |
|
646 | 646 | generic=True, |
|
647 | 647 | ) |
|
648 | 648 | coreconfigitem('format', 'chunkcachesize', |
|
649 | 649 | default=None, |
|
650 | 650 | ) |
|
651 | 651 | coreconfigitem('format', 'dotencode', |
|
652 | 652 | default=True, |
|
653 | 653 | ) |
|
654 | 654 | coreconfigitem('format', 'generaldelta', |
|
655 | 655 | default=False, |
|
656 | 656 | ) |
|
657 | 657 | coreconfigitem('format', 'manifestcachesize', |
|
658 | 658 | default=None, |
|
659 | 659 | ) |
|
660 | 660 | coreconfigitem('format', 'maxchainlen', |
|
661 | 661 | default=dynamicdefault, |
|
662 | 662 | ) |
|
663 | 663 | coreconfigitem('format', 'obsstore-version', |
|
664 | 664 | default=None, |
|
665 | 665 | ) |
|
666 | 666 | coreconfigitem('format', 'sparse-revlog', |
|
667 | 667 | default=False, |
|
668 | 668 | ) |
|
669 | 669 | coreconfigitem('format', 'usefncache', |
|
670 | 670 | default=True, |
|
671 | 671 | ) |
|
672 | 672 | coreconfigitem('format', 'usegeneraldelta', |
|
673 | 673 | default=True, |
|
674 | 674 | ) |
|
675 | 675 | coreconfigitem('format', 'usestore', |
|
676 | 676 | default=True, |
|
677 | 677 | ) |
|
678 | 678 | coreconfigitem('format', 'internal-phase', |
|
679 | 679 | default=False, |
|
680 | 680 | ) |
|
681 | 681 | coreconfigitem('fsmonitor', 'warn_when_unused', |
|
682 | 682 | default=True, |
|
683 | 683 | ) |
|
684 | 684 | coreconfigitem('fsmonitor', 'warn_update_file_count', |
|
685 | 685 | default=50000, |
|
686 | 686 | ) |
|
687 | 687 | coreconfigitem('hooks', '.*', |
|
688 | 688 | default=dynamicdefault, |
|
689 | 689 | generic=True, |
|
690 | 690 | ) |
|
691 | 691 | coreconfigitem('hgweb-paths', '.*', |
|
692 | 692 | default=list, |
|
693 | 693 | generic=True, |
|
694 | 694 | ) |
|
695 | 695 | coreconfigitem('hostfingerprints', '.*', |
|
696 | 696 | default=list, |
|
697 | 697 | generic=True, |
|
698 | 698 | ) |
|
699 | 699 | coreconfigitem('hostsecurity', 'ciphers', |
|
700 | 700 | default=None, |
|
701 | 701 | ) |
|
702 | 702 | coreconfigitem('hostsecurity', 'disabletls10warning', |
|
703 | 703 | default=False, |
|
704 | 704 | ) |
|
705 | 705 | coreconfigitem('hostsecurity', 'minimumprotocol', |
|
706 | 706 | default=dynamicdefault, |
|
707 | 707 | ) |
|
708 | 708 | coreconfigitem('hostsecurity', '.*:minimumprotocol$', |
|
709 | 709 | default=dynamicdefault, |
|
710 | 710 | generic=True, |
|
711 | 711 | ) |
|
712 | 712 | coreconfigitem('hostsecurity', '.*:ciphers$', |
|
713 | 713 | default=dynamicdefault, |
|
714 | 714 | generic=True, |
|
715 | 715 | ) |
|
716 | 716 | coreconfigitem('hostsecurity', '.*:fingerprints$', |
|
717 | 717 | default=list, |
|
718 | 718 | generic=True, |
|
719 | 719 | ) |
|
720 | 720 | coreconfigitem('hostsecurity', '.*:verifycertsfile$', |
|
721 | 721 | default=None, |
|
722 | 722 | generic=True, |
|
723 | 723 | ) |
|
724 | 724 | |
|
725 | 725 | coreconfigitem('http_proxy', 'always', |
|
726 | 726 | default=False, |
|
727 | 727 | ) |
|
728 | 728 | coreconfigitem('http_proxy', 'host', |
|
729 | 729 | default=None, |
|
730 | 730 | ) |
|
731 | 731 | coreconfigitem('http_proxy', 'no', |
|
732 | 732 | default=list, |
|
733 | 733 | ) |
|
734 | 734 | coreconfigitem('http_proxy', 'passwd', |
|
735 | 735 | default=None, |
|
736 | 736 | ) |
|
737 | 737 | coreconfigitem('http_proxy', 'user', |
|
738 | 738 | default=None, |
|
739 | 739 | ) |
|
740 | 740 | coreconfigitem('logtoprocess', 'commandexception', |
|
741 | 741 | default=None, |
|
742 | 742 | ) |
|
743 | 743 | coreconfigitem('logtoprocess', 'commandfinish', |
|
744 | 744 | default=None, |
|
745 | 745 | ) |
|
746 | 746 | coreconfigitem('logtoprocess', 'command', |
|
747 | 747 | default=None, |
|
748 | 748 | ) |
|
749 | 749 | coreconfigitem('logtoprocess', 'develwarn', |
|
750 | 750 | default=None, |
|
751 | 751 | ) |
|
752 | 752 | coreconfigitem('logtoprocess', 'uiblocked', |
|
753 | 753 | default=None, |
|
754 | 754 | ) |
|
755 | 755 | coreconfigitem('merge', 'checkunknown', |
|
756 | 756 | default='abort', |
|
757 | 757 | ) |
|
758 | 758 | coreconfigitem('merge', 'checkignored', |
|
759 | 759 | default='abort', |
|
760 | 760 | ) |
|
761 | 761 | coreconfigitem('experimental', 'merge.checkpathconflicts', |
|
762 | 762 | default=False, |
|
763 | 763 | ) |
|
764 | 764 | coreconfigitem('merge', 'followcopies', |
|
765 | 765 | default=True, |
|
766 | 766 | ) |
|
767 | 767 | coreconfigitem('merge', 'on-failure', |
|
768 | 768 | default='continue', |
|
769 | 769 | ) |
|
770 | 770 | coreconfigitem('merge', 'preferancestor', |
|
771 | 771 | default=lambda: ['*'], |
|
772 | 772 | ) |
|
773 | 773 | coreconfigitem('merge', 'strict-capability-check', |
|
774 | 774 | default=False, |
|
775 | 775 | ) |
|
776 | 776 | coreconfigitem('merge-tools', '.*', |
|
777 | 777 | default=None, |
|
778 | 778 | generic=True, |
|
779 | 779 | ) |
|
780 | 780 | coreconfigitem('merge-tools', br'.*\.args$', |
|
781 | 781 | default="$local $base $other", |
|
782 | 782 | generic=True, |
|
783 | 783 | priority=-1, |
|
784 | 784 | ) |
|
785 | 785 | coreconfigitem('merge-tools', br'.*\.binary$', |
|
786 | 786 | default=False, |
|
787 | 787 | generic=True, |
|
788 | 788 | priority=-1, |
|
789 | 789 | ) |
|
790 | 790 | coreconfigitem('merge-tools', br'.*\.check$', |
|
791 | 791 | default=list, |
|
792 | 792 | generic=True, |
|
793 | 793 | priority=-1, |
|
794 | 794 | ) |
|
795 | 795 | coreconfigitem('merge-tools', br'.*\.checkchanged$', |
|
796 | 796 | default=False, |
|
797 | 797 | generic=True, |
|
798 | 798 | priority=-1, |
|
799 | 799 | ) |
|
800 | 800 | coreconfigitem('merge-tools', br'.*\.executable$', |
|
801 | 801 | default=dynamicdefault, |
|
802 | 802 | generic=True, |
|
803 | 803 | priority=-1, |
|
804 | 804 | ) |
|
805 | 805 | coreconfigitem('merge-tools', br'.*\.fixeol$', |
|
806 | 806 | default=False, |
|
807 | 807 | generic=True, |
|
808 | 808 | priority=-1, |
|
809 | 809 | ) |
|
810 | 810 | coreconfigitem('merge-tools', br'.*\.gui$', |
|
811 | 811 | default=False, |
|
812 | 812 | generic=True, |
|
813 | 813 | priority=-1, |
|
814 | 814 | ) |
|
815 | 815 | coreconfigitem('merge-tools', br'.*\.mergemarkers$', |
|
816 | 816 | default='basic', |
|
817 | 817 | generic=True, |
|
818 | 818 | priority=-1, |
|
819 | 819 | ) |
|
820 | 820 | coreconfigitem('merge-tools', br'.*\.mergemarkertemplate$', |
|
821 | 821 | default=dynamicdefault, # take from ui.mergemarkertemplate |
|
822 | 822 | generic=True, |
|
823 | 823 | priority=-1, |
|
824 | 824 | ) |
|
825 | 825 | coreconfigitem('merge-tools', br'.*\.priority$', |
|
826 | 826 | default=0, |
|
827 | 827 | generic=True, |
|
828 | 828 | priority=-1, |
|
829 | 829 | ) |
|
830 | 830 | coreconfigitem('merge-tools', br'.*\.premerge$', |
|
831 | 831 | default=dynamicdefault, |
|
832 | 832 | generic=True, |
|
833 | 833 | priority=-1, |
|
834 | 834 | ) |
|
835 | 835 | coreconfigitem('merge-tools', br'.*\.symlink$', |
|
836 | 836 | default=False, |
|
837 | 837 | generic=True, |
|
838 | 838 | priority=-1, |
|
839 | 839 | ) |
|
840 | 840 | coreconfigitem('pager', 'attend-.*', |
|
841 | 841 | default=dynamicdefault, |
|
842 | 842 | generic=True, |
|
843 | 843 | ) |
|
844 | 844 | coreconfigitem('pager', 'ignore', |
|
845 | 845 | default=list, |
|
846 | 846 | ) |
|
847 | 847 | coreconfigitem('pager', 'pager', |
|
848 | 848 | default=dynamicdefault, |
|
849 | 849 | ) |
|
850 | 850 | coreconfigitem('patch', 'eol', |
|
851 | 851 | default='strict', |
|
852 | 852 | ) |
|
853 | 853 | coreconfigitem('patch', 'fuzz', |
|
854 | 854 | default=2, |
|
855 | 855 | ) |
|
856 | 856 | coreconfigitem('paths', 'default', |
|
857 | 857 | default=None, |
|
858 | 858 | ) |
|
859 | 859 | coreconfigitem('paths', 'default-push', |
|
860 | 860 | default=None, |
|
861 | 861 | ) |
|
862 | 862 | coreconfigitem('paths', '.*', |
|
863 | 863 | default=None, |
|
864 | 864 | generic=True, |
|
865 | 865 | ) |
|
866 | 866 | coreconfigitem('phases', 'checksubrepos', |
|
867 | 867 | default='follow', |
|
868 | 868 | ) |
|
869 | 869 | coreconfigitem('phases', 'new-commit', |
|
870 | 870 | default='draft', |
|
871 | 871 | ) |
|
872 | 872 | coreconfigitem('phases', 'publish', |
|
873 | 873 | default=True, |
|
874 | 874 | ) |
|
875 | 875 | coreconfigitem('profiling', 'enabled', |
|
876 | 876 | default=False, |
|
877 | 877 | ) |
|
878 | 878 | coreconfigitem('profiling', 'format', |
|
879 | 879 | default='text', |
|
880 | 880 | ) |
|
881 | 881 | coreconfigitem('profiling', 'freq', |
|
882 | 882 | default=1000, |
|
883 | 883 | ) |
|
884 | 884 | coreconfigitem('profiling', 'limit', |
|
885 | 885 | default=30, |
|
886 | 886 | ) |
|
887 | 887 | coreconfigitem('profiling', 'nested', |
|
888 | 888 | default=0, |
|
889 | 889 | ) |
|
890 | 890 | coreconfigitem('profiling', 'output', |
|
891 | 891 | default=None, |
|
892 | 892 | ) |
|
893 | 893 | coreconfigitem('profiling', 'showmax', |
|
894 | 894 | default=0.999, |
|
895 | 895 | ) |
|
896 | 896 | coreconfigitem('profiling', 'showmin', |
|
897 | 897 | default=dynamicdefault, |
|
898 | 898 | ) |
|
899 | 899 | coreconfigitem('profiling', 'sort', |
|
900 | 900 | default='inlinetime', |
|
901 | 901 | ) |
|
902 | 902 | coreconfigitem('profiling', 'statformat', |
|
903 | 903 | default='hotpath', |
|
904 | 904 | ) |
|
905 | 905 | coreconfigitem('profiling', 'time-track', |
|
906 | 906 | default='cpu', |
|
907 | 907 | ) |
|
908 | 908 | coreconfigitem('profiling', 'type', |
|
909 | 909 | default='stat', |
|
910 | 910 | ) |
|
911 | 911 | coreconfigitem('progress', 'assume-tty', |
|
912 | 912 | default=False, |
|
913 | 913 | ) |
|
914 | 914 | coreconfigitem('progress', 'changedelay', |
|
915 | 915 | default=1, |
|
916 | 916 | ) |
|
917 | 917 | coreconfigitem('progress', 'clear-complete', |
|
918 | 918 | default=True, |
|
919 | 919 | ) |
|
920 | 920 | coreconfigitem('progress', 'debug', |
|
921 | 921 | default=False, |
|
922 | 922 | ) |
|
923 | 923 | coreconfigitem('progress', 'delay', |
|
924 | 924 | default=3, |
|
925 | 925 | ) |
|
926 | 926 | coreconfigitem('progress', 'disable', |
|
927 | 927 | default=False, |
|
928 | 928 | ) |
|
929 | 929 | coreconfigitem('progress', 'estimateinterval', |
|
930 | 930 | default=60.0, |
|
931 | 931 | ) |
|
932 | 932 | coreconfigitem('progress', 'format', |
|
933 | 933 | default=lambda: ['topic', 'bar', 'number', 'estimate'], |
|
934 | 934 | ) |
|
935 | 935 | coreconfigitem('progress', 'refresh', |
|
936 | 936 | default=0.1, |
|
937 | 937 | ) |
|
938 | 938 | coreconfigitem('progress', 'width', |
|
939 | 939 | default=dynamicdefault, |
|
940 | 940 | ) |
|
941 | 941 | coreconfigitem('push', 'pushvars.server', |
|
942 | 942 | default=False, |
|
943 | 943 | ) |
|
944 | coreconfigitem('storage', 'new-repo-backend', | |
|
945 | default='revlogv1', | |
|
946 | ) | |
|
944 | 947 | coreconfigitem('storage', 'revlog.optimize-delta-parent-choice', |
|
945 | 948 | default=True, |
|
946 | 949 | alias=[('format', 'aggressivemergedeltas')], |
|
947 | 950 | ) |
|
948 | 951 | coreconfigitem('server', 'bookmarks-pushkey-compat', |
|
949 | 952 | default=True, |
|
950 | 953 | ) |
|
951 | 954 | coreconfigitem('server', 'bundle1', |
|
952 | 955 | default=True, |
|
953 | 956 | ) |
|
954 | 957 | coreconfigitem('server', 'bundle1gd', |
|
955 | 958 | default=None, |
|
956 | 959 | ) |
|
957 | 960 | coreconfigitem('server', 'bundle1.pull', |
|
958 | 961 | default=None, |
|
959 | 962 | ) |
|
960 | 963 | coreconfigitem('server', 'bundle1gd.pull', |
|
961 | 964 | default=None, |
|
962 | 965 | ) |
|
963 | 966 | coreconfigitem('server', 'bundle1.push', |
|
964 | 967 | default=None, |
|
965 | 968 | ) |
|
966 | 969 | coreconfigitem('server', 'bundle1gd.push', |
|
967 | 970 | default=None, |
|
968 | 971 | ) |
|
969 | 972 | coreconfigitem('server', 'bundle2.stream', |
|
970 | 973 | default=True, |
|
971 | 974 | alias=[('experimental', 'bundle2.stream')] |
|
972 | 975 | ) |
|
973 | 976 | coreconfigitem('server', 'compressionengines', |
|
974 | 977 | default=list, |
|
975 | 978 | ) |
|
976 | 979 | coreconfigitem('server', 'concurrent-push-mode', |
|
977 | 980 | default='strict', |
|
978 | 981 | ) |
|
979 | 982 | coreconfigitem('server', 'disablefullbundle', |
|
980 | 983 | default=False, |
|
981 | 984 | ) |
|
982 | 985 | coreconfigitem('server', 'maxhttpheaderlen', |
|
983 | 986 | default=1024, |
|
984 | 987 | ) |
|
985 | 988 | coreconfigitem('server', 'pullbundle', |
|
986 | 989 | default=False, |
|
987 | 990 | ) |
|
988 | 991 | coreconfigitem('server', 'preferuncompressed', |
|
989 | 992 | default=False, |
|
990 | 993 | ) |
|
991 | 994 | coreconfigitem('server', 'streamunbundle', |
|
992 | 995 | default=False, |
|
993 | 996 | ) |
|
994 | 997 | coreconfigitem('server', 'uncompressed', |
|
995 | 998 | default=True, |
|
996 | 999 | ) |
|
997 | 1000 | coreconfigitem('server', 'uncompressedallowsecret', |
|
998 | 1001 | default=False, |
|
999 | 1002 | ) |
|
1000 | 1003 | coreconfigitem('server', 'validate', |
|
1001 | 1004 | default=False, |
|
1002 | 1005 | ) |
|
1003 | 1006 | coreconfigitem('server', 'zliblevel', |
|
1004 | 1007 | default=-1, |
|
1005 | 1008 | ) |
|
1006 | 1009 | coreconfigitem('server', 'zstdlevel', |
|
1007 | 1010 | default=3, |
|
1008 | 1011 | ) |
|
1009 | 1012 | coreconfigitem('share', 'pool', |
|
1010 | 1013 | default=None, |
|
1011 | 1014 | ) |
|
1012 | 1015 | coreconfigitem('share', 'poolnaming', |
|
1013 | 1016 | default='identity', |
|
1014 | 1017 | ) |
|
1015 | 1018 | coreconfigitem('smtp', 'host', |
|
1016 | 1019 | default=None, |
|
1017 | 1020 | ) |
|
1018 | 1021 | coreconfigitem('smtp', 'local_hostname', |
|
1019 | 1022 | default=None, |
|
1020 | 1023 | ) |
|
1021 | 1024 | coreconfigitem('smtp', 'password', |
|
1022 | 1025 | default=None, |
|
1023 | 1026 | ) |
|
1024 | 1027 | coreconfigitem('smtp', 'port', |
|
1025 | 1028 | default=dynamicdefault, |
|
1026 | 1029 | ) |
|
1027 | 1030 | coreconfigitem('smtp', 'tls', |
|
1028 | 1031 | default='none', |
|
1029 | 1032 | ) |
|
1030 | 1033 | coreconfigitem('smtp', 'username', |
|
1031 | 1034 | default=None, |
|
1032 | 1035 | ) |
|
1033 | 1036 | coreconfigitem('sparse', 'missingwarning', |
|
1034 | 1037 | default=True, |
|
1035 | 1038 | ) |
|
1036 | 1039 | coreconfigitem('subrepos', 'allowed', |
|
1037 | 1040 | default=dynamicdefault, # to make backporting simpler |
|
1038 | 1041 | ) |
|
1039 | 1042 | coreconfigitem('subrepos', 'hg:allowed', |
|
1040 | 1043 | default=dynamicdefault, |
|
1041 | 1044 | ) |
|
1042 | 1045 | coreconfigitem('subrepos', 'git:allowed', |
|
1043 | 1046 | default=dynamicdefault, |
|
1044 | 1047 | ) |
|
1045 | 1048 | coreconfigitem('subrepos', 'svn:allowed', |
|
1046 | 1049 | default=dynamicdefault, |
|
1047 | 1050 | ) |
|
1048 | 1051 | coreconfigitem('templates', '.*', |
|
1049 | 1052 | default=None, |
|
1050 | 1053 | generic=True, |
|
1051 | 1054 | ) |
|
1052 | 1055 | coreconfigitem('trusted', 'groups', |
|
1053 | 1056 | default=list, |
|
1054 | 1057 | ) |
|
1055 | 1058 | coreconfigitem('trusted', 'users', |
|
1056 | 1059 | default=list, |
|
1057 | 1060 | ) |
|
1058 | 1061 | coreconfigitem('ui', '_usedassubrepo', |
|
1059 | 1062 | default=False, |
|
1060 | 1063 | ) |
|
1061 | 1064 | coreconfigitem('ui', 'allowemptycommit', |
|
1062 | 1065 | default=False, |
|
1063 | 1066 | ) |
|
1064 | 1067 | coreconfigitem('ui', 'archivemeta', |
|
1065 | 1068 | default=True, |
|
1066 | 1069 | ) |
|
1067 | 1070 | coreconfigitem('ui', 'askusername', |
|
1068 | 1071 | default=False, |
|
1069 | 1072 | ) |
|
1070 | 1073 | coreconfigitem('ui', 'clonebundlefallback', |
|
1071 | 1074 | default=False, |
|
1072 | 1075 | ) |
|
1073 | 1076 | coreconfigitem('ui', 'clonebundleprefers', |
|
1074 | 1077 | default=list, |
|
1075 | 1078 | ) |
|
1076 | 1079 | coreconfigitem('ui', 'clonebundles', |
|
1077 | 1080 | default=True, |
|
1078 | 1081 | ) |
|
1079 | 1082 | coreconfigitem('ui', 'color', |
|
1080 | 1083 | default='auto', |
|
1081 | 1084 | ) |
|
1082 | 1085 | coreconfigitem('ui', 'commitsubrepos', |
|
1083 | 1086 | default=False, |
|
1084 | 1087 | ) |
|
1085 | 1088 | coreconfigitem('ui', 'debug', |
|
1086 | 1089 | default=False, |
|
1087 | 1090 | ) |
|
1088 | 1091 | coreconfigitem('ui', 'debugger', |
|
1089 | 1092 | default=None, |
|
1090 | 1093 | ) |
|
1091 | 1094 | coreconfigitem('ui', 'editor', |
|
1092 | 1095 | default=dynamicdefault, |
|
1093 | 1096 | ) |
|
1094 | 1097 | coreconfigitem('ui', 'fallbackencoding', |
|
1095 | 1098 | default=None, |
|
1096 | 1099 | ) |
|
1097 | 1100 | coreconfigitem('ui', 'forcecwd', |
|
1098 | 1101 | default=None, |
|
1099 | 1102 | ) |
|
1100 | 1103 | coreconfigitem('ui', 'forcemerge', |
|
1101 | 1104 | default=None, |
|
1102 | 1105 | ) |
|
1103 | 1106 | coreconfigitem('ui', 'formatdebug', |
|
1104 | 1107 | default=False, |
|
1105 | 1108 | ) |
|
1106 | 1109 | coreconfigitem('ui', 'formatjson', |
|
1107 | 1110 | default=False, |
|
1108 | 1111 | ) |
|
1109 | 1112 | coreconfigitem('ui', 'formatted', |
|
1110 | 1113 | default=None, |
|
1111 | 1114 | ) |
|
1112 | 1115 | coreconfigitem('ui', 'graphnodetemplate', |
|
1113 | 1116 | default=None, |
|
1114 | 1117 | ) |
|
1115 | 1118 | coreconfigitem('ui', 'history-editing-backup', |
|
1116 | 1119 | default=True, |
|
1117 | 1120 | ) |
|
1118 | 1121 | coreconfigitem('ui', 'interactive', |
|
1119 | 1122 | default=None, |
|
1120 | 1123 | ) |
|
1121 | 1124 | coreconfigitem('ui', 'interface', |
|
1122 | 1125 | default=None, |
|
1123 | 1126 | ) |
|
1124 | 1127 | coreconfigitem('ui', 'interface.chunkselector', |
|
1125 | 1128 | default=None, |
|
1126 | 1129 | ) |
|
1127 | 1130 | coreconfigitem('ui', 'large-file-limit', |
|
1128 | 1131 | default=10000000, |
|
1129 | 1132 | ) |
|
1130 | 1133 | coreconfigitem('ui', 'logblockedtimes', |
|
1131 | 1134 | default=False, |
|
1132 | 1135 | ) |
|
1133 | 1136 | coreconfigitem('ui', 'logtemplate', |
|
1134 | 1137 | default=None, |
|
1135 | 1138 | ) |
|
1136 | 1139 | coreconfigitem('ui', 'merge', |
|
1137 | 1140 | default=None, |
|
1138 | 1141 | ) |
|
1139 | 1142 | coreconfigitem('ui', 'mergemarkers', |
|
1140 | 1143 | default='basic', |
|
1141 | 1144 | ) |
|
1142 | 1145 | coreconfigitem('ui', 'mergemarkertemplate', |
|
1143 | 1146 | default=('{node|short} ' |
|
1144 | 1147 | '{ifeq(tags, "tip", "", ' |
|
1145 | 1148 | 'ifeq(tags, "", "", "{tags} "))}' |
|
1146 | 1149 | '{if(bookmarks, "{bookmarks} ")}' |
|
1147 | 1150 | '{ifeq(branch, "default", "", "{branch} ")}' |
|
1148 | 1151 | '- {author|user}: {desc|firstline}') |
|
1149 | 1152 | ) |
|
1150 | 1153 | coreconfigitem('ui', 'nontty', |
|
1151 | 1154 | default=False, |
|
1152 | 1155 | ) |
|
1153 | 1156 | coreconfigitem('ui', 'origbackuppath', |
|
1154 | 1157 | default=None, |
|
1155 | 1158 | ) |
|
1156 | 1159 | coreconfigitem('ui', 'paginate', |
|
1157 | 1160 | default=True, |
|
1158 | 1161 | ) |
|
1159 | 1162 | coreconfigitem('ui', 'patch', |
|
1160 | 1163 | default=None, |
|
1161 | 1164 | ) |
|
1162 | 1165 | coreconfigitem('ui', 'portablefilenames', |
|
1163 | 1166 | default='warn', |
|
1164 | 1167 | ) |
|
1165 | 1168 | coreconfigitem('ui', 'promptecho', |
|
1166 | 1169 | default=False, |
|
1167 | 1170 | ) |
|
1168 | 1171 | coreconfigitem('ui', 'quiet', |
|
1169 | 1172 | default=False, |
|
1170 | 1173 | ) |
|
1171 | 1174 | coreconfigitem('ui', 'quietbookmarkmove', |
|
1172 | 1175 | default=False, |
|
1173 | 1176 | ) |
|
1174 | 1177 | coreconfigitem('ui', 'remotecmd', |
|
1175 | 1178 | default='hg', |
|
1176 | 1179 | ) |
|
1177 | 1180 | coreconfigitem('ui', 'report_untrusted', |
|
1178 | 1181 | default=True, |
|
1179 | 1182 | ) |
|
1180 | 1183 | coreconfigitem('ui', 'rollback', |
|
1181 | 1184 | default=True, |
|
1182 | 1185 | ) |
|
1183 | 1186 | coreconfigitem('ui', 'signal-safe-lock', |
|
1184 | 1187 | default=True, |
|
1185 | 1188 | ) |
|
1186 | 1189 | coreconfigitem('ui', 'slash', |
|
1187 | 1190 | default=False, |
|
1188 | 1191 | ) |
|
1189 | 1192 | coreconfigitem('ui', 'ssh', |
|
1190 | 1193 | default='ssh', |
|
1191 | 1194 | ) |
|
1192 | 1195 | coreconfigitem('ui', 'ssherrorhint', |
|
1193 | 1196 | default=None, |
|
1194 | 1197 | ) |
|
1195 | 1198 | coreconfigitem('ui', 'statuscopies', |
|
1196 | 1199 | default=False, |
|
1197 | 1200 | ) |
|
1198 | 1201 | coreconfigitem('ui', 'strict', |
|
1199 | 1202 | default=False, |
|
1200 | 1203 | ) |
|
1201 | 1204 | coreconfigitem('ui', 'style', |
|
1202 | 1205 | default='', |
|
1203 | 1206 | ) |
|
1204 | 1207 | coreconfigitem('ui', 'supportcontact', |
|
1205 | 1208 | default=None, |
|
1206 | 1209 | ) |
|
1207 | 1210 | coreconfigitem('ui', 'textwidth', |
|
1208 | 1211 | default=78, |
|
1209 | 1212 | ) |
|
1210 | 1213 | coreconfigitem('ui', 'timeout', |
|
1211 | 1214 | default='600', |
|
1212 | 1215 | ) |
|
1213 | 1216 | coreconfigitem('ui', 'timeout.warn', |
|
1214 | 1217 | default=0, |
|
1215 | 1218 | ) |
|
1216 | 1219 | coreconfigitem('ui', 'traceback', |
|
1217 | 1220 | default=False, |
|
1218 | 1221 | ) |
|
1219 | 1222 | coreconfigitem('ui', 'tweakdefaults', |
|
1220 | 1223 | default=False, |
|
1221 | 1224 | ) |
|
1222 | 1225 | coreconfigitem('ui', 'username', |
|
1223 | 1226 | alias=[('ui', 'user')] |
|
1224 | 1227 | ) |
|
1225 | 1228 | coreconfigitem('ui', 'verbose', |
|
1226 | 1229 | default=False, |
|
1227 | 1230 | ) |
|
1228 | 1231 | coreconfigitem('verify', 'skipflags', |
|
1229 | 1232 | default=None, |
|
1230 | 1233 | ) |
|
1231 | 1234 | coreconfigitem('web', 'allowbz2', |
|
1232 | 1235 | default=False, |
|
1233 | 1236 | ) |
|
1234 | 1237 | coreconfigitem('web', 'allowgz', |
|
1235 | 1238 | default=False, |
|
1236 | 1239 | ) |
|
1237 | 1240 | coreconfigitem('web', 'allow-pull', |
|
1238 | 1241 | alias=[('web', 'allowpull')], |
|
1239 | 1242 | default=True, |
|
1240 | 1243 | ) |
|
1241 | 1244 | coreconfigitem('web', 'allow-push', |
|
1242 | 1245 | alias=[('web', 'allow_push')], |
|
1243 | 1246 | default=list, |
|
1244 | 1247 | ) |
|
1245 | 1248 | coreconfigitem('web', 'allowzip', |
|
1246 | 1249 | default=False, |
|
1247 | 1250 | ) |
|
1248 | 1251 | coreconfigitem('web', 'archivesubrepos', |
|
1249 | 1252 | default=False, |
|
1250 | 1253 | ) |
|
1251 | 1254 | coreconfigitem('web', 'cache', |
|
1252 | 1255 | default=True, |
|
1253 | 1256 | ) |
|
1254 | 1257 | coreconfigitem('web', 'contact', |
|
1255 | 1258 | default=None, |
|
1256 | 1259 | ) |
|
1257 | 1260 | coreconfigitem('web', 'deny_push', |
|
1258 | 1261 | default=list, |
|
1259 | 1262 | ) |
|
1260 | 1263 | coreconfigitem('web', 'guessmime', |
|
1261 | 1264 | default=False, |
|
1262 | 1265 | ) |
|
1263 | 1266 | coreconfigitem('web', 'hidden', |
|
1264 | 1267 | default=False, |
|
1265 | 1268 | ) |
|
1266 | 1269 | coreconfigitem('web', 'labels', |
|
1267 | 1270 | default=list, |
|
1268 | 1271 | ) |
|
1269 | 1272 | coreconfigitem('web', 'logoimg', |
|
1270 | 1273 | default='hglogo.png', |
|
1271 | 1274 | ) |
|
1272 | 1275 | coreconfigitem('web', 'logourl', |
|
1273 | 1276 | default='https://mercurial-scm.org/', |
|
1274 | 1277 | ) |
|
1275 | 1278 | coreconfigitem('web', 'accesslog', |
|
1276 | 1279 | default='-', |
|
1277 | 1280 | ) |
|
1278 | 1281 | coreconfigitem('web', 'address', |
|
1279 | 1282 | default='', |
|
1280 | 1283 | ) |
|
1281 | 1284 | coreconfigitem('web', 'allow-archive', |
|
1282 | 1285 | alias=[('web', 'allow_archive')], |
|
1283 | 1286 | default=list, |
|
1284 | 1287 | ) |
|
1285 | 1288 | coreconfigitem('web', 'allow_read', |
|
1286 | 1289 | default=list, |
|
1287 | 1290 | ) |
|
1288 | 1291 | coreconfigitem('web', 'baseurl', |
|
1289 | 1292 | default=None, |
|
1290 | 1293 | ) |
|
1291 | 1294 | coreconfigitem('web', 'cacerts', |
|
1292 | 1295 | default=None, |
|
1293 | 1296 | ) |
|
1294 | 1297 | coreconfigitem('web', 'certificate', |
|
1295 | 1298 | default=None, |
|
1296 | 1299 | ) |
|
1297 | 1300 | coreconfigitem('web', 'collapse', |
|
1298 | 1301 | default=False, |
|
1299 | 1302 | ) |
|
1300 | 1303 | coreconfigitem('web', 'csp', |
|
1301 | 1304 | default=None, |
|
1302 | 1305 | ) |
|
1303 | 1306 | coreconfigitem('web', 'deny_read', |
|
1304 | 1307 | default=list, |
|
1305 | 1308 | ) |
|
1306 | 1309 | coreconfigitem('web', 'descend', |
|
1307 | 1310 | default=True, |
|
1308 | 1311 | ) |
|
1309 | 1312 | coreconfigitem('web', 'description', |
|
1310 | 1313 | default="", |
|
1311 | 1314 | ) |
|
1312 | 1315 | coreconfigitem('web', 'encoding', |
|
1313 | 1316 | default=lambda: encoding.encoding, |
|
1314 | 1317 | ) |
|
1315 | 1318 | coreconfigitem('web', 'errorlog', |
|
1316 | 1319 | default='-', |
|
1317 | 1320 | ) |
|
1318 | 1321 | coreconfigitem('web', 'ipv6', |
|
1319 | 1322 | default=False, |
|
1320 | 1323 | ) |
|
1321 | 1324 | coreconfigitem('web', 'maxchanges', |
|
1322 | 1325 | default=10, |
|
1323 | 1326 | ) |
|
1324 | 1327 | coreconfigitem('web', 'maxfiles', |
|
1325 | 1328 | default=10, |
|
1326 | 1329 | ) |
|
1327 | 1330 | coreconfigitem('web', 'maxshortchanges', |
|
1328 | 1331 | default=60, |
|
1329 | 1332 | ) |
|
1330 | 1333 | coreconfigitem('web', 'motd', |
|
1331 | 1334 | default='', |
|
1332 | 1335 | ) |
|
1333 | 1336 | coreconfigitem('web', 'name', |
|
1334 | 1337 | default=dynamicdefault, |
|
1335 | 1338 | ) |
|
1336 | 1339 | coreconfigitem('web', 'port', |
|
1337 | 1340 | default=8000, |
|
1338 | 1341 | ) |
|
1339 | 1342 | coreconfigitem('web', 'prefix', |
|
1340 | 1343 | default='', |
|
1341 | 1344 | ) |
|
1342 | 1345 | coreconfigitem('web', 'push_ssl', |
|
1343 | 1346 | default=True, |
|
1344 | 1347 | ) |
|
1345 | 1348 | coreconfigitem('web', 'refreshinterval', |
|
1346 | 1349 | default=20, |
|
1347 | 1350 | ) |
|
1348 | 1351 | coreconfigitem('web', 'server-header', |
|
1349 | 1352 | default=None, |
|
1350 | 1353 | ) |
|
1351 | 1354 | coreconfigitem('web', 'static', |
|
1352 | 1355 | default=None, |
|
1353 | 1356 | ) |
|
1354 | 1357 | coreconfigitem('web', 'staticurl', |
|
1355 | 1358 | default=None, |
|
1356 | 1359 | ) |
|
1357 | 1360 | coreconfigitem('web', 'stripes', |
|
1358 | 1361 | default=1, |
|
1359 | 1362 | ) |
|
1360 | 1363 | coreconfigitem('web', 'style', |
|
1361 | 1364 | default='paper', |
|
1362 | 1365 | ) |
|
1363 | 1366 | coreconfigitem('web', 'templates', |
|
1364 | 1367 | default=None, |
|
1365 | 1368 | ) |
|
1366 | 1369 | coreconfigitem('web', 'view', |
|
1367 | 1370 | default='served', |
|
1368 | 1371 | ) |
|
1369 | 1372 | coreconfigitem('worker', 'backgroundclose', |
|
1370 | 1373 | default=dynamicdefault, |
|
1371 | 1374 | ) |
|
1372 | 1375 | # Windows defaults to a limit of 512 open files. A buffer of 128 |
|
1373 | 1376 | # should give us enough headway. |
|
1374 | 1377 | coreconfigitem('worker', 'backgroundclosemaxqueue', |
|
1375 | 1378 | default=384, |
|
1376 | 1379 | ) |
|
1377 | 1380 | coreconfigitem('worker', 'backgroundcloseminfilecount', |
|
1378 | 1381 | default=2048, |
|
1379 | 1382 | ) |
|
1380 | 1383 | coreconfigitem('worker', 'backgroundclosethreadcount', |
|
1381 | 1384 | default=4, |
|
1382 | 1385 | ) |
|
1383 | 1386 | coreconfigitem('worker', 'enabled', |
|
1384 | 1387 | default=True, |
|
1385 | 1388 | ) |
|
1386 | 1389 | coreconfigitem('worker', 'numcpus', |
|
1387 | 1390 | default=None, |
|
1388 | 1391 | ) |
|
1389 | 1392 | |
|
1390 | 1393 | # Rebase related configuration moved to core because other extension are doing |
|
1391 | 1394 | # strange things. For example, shelve import the extensions to reuse some bit |
|
1392 | 1395 | # without formally loading it. |
|
1393 | 1396 | coreconfigitem('commands', 'rebase.requiredest', |
|
1394 | 1397 | default=False, |
|
1395 | 1398 | ) |
|
1396 | 1399 | coreconfigitem('experimental', 'rebaseskipobsolete', |
|
1397 | 1400 | default=True, |
|
1398 | 1401 | ) |
|
1399 | 1402 | coreconfigitem('rebase', 'singletransaction', |
|
1400 | 1403 | default=False, |
|
1401 | 1404 | ) |
|
1402 | 1405 | coreconfigitem('rebase', 'experimental.inmemory', |
|
1403 | 1406 | default=False, |
|
1404 | 1407 | ) |
@@ -1,3002 +1,3025 | |||
|
1 | 1 | # localrepo.py - read/write repository class for mercurial |
|
2 | 2 | # |
|
3 | 3 | # Copyright 2005-2007 Matt Mackall <mpm@selenic.com> |
|
4 | 4 | # |
|
5 | 5 | # This software may be used and distributed according to the terms of the |
|
6 | 6 | # GNU General Public License version 2 or any later version. |
|
7 | 7 | |
|
8 | 8 | from __future__ import absolute_import |
|
9 | 9 | |
|
10 | 10 | import errno |
|
11 | 11 | import hashlib |
|
12 | 12 | import os |
|
13 | 13 | import random |
|
14 | 14 | import sys |
|
15 | 15 | import time |
|
16 | 16 | import weakref |
|
17 | 17 | |
|
18 | 18 | from .i18n import _ |
|
19 | 19 | from .node import ( |
|
20 | 20 | bin, |
|
21 | 21 | hex, |
|
22 | 22 | nullid, |
|
23 | 23 | nullrev, |
|
24 | 24 | short, |
|
25 | 25 | ) |
|
26 | 26 | from . import ( |
|
27 | 27 | bookmarks, |
|
28 | 28 | branchmap, |
|
29 | 29 | bundle2, |
|
30 | 30 | changegroup, |
|
31 | 31 | changelog, |
|
32 | 32 | color, |
|
33 | 33 | context, |
|
34 | 34 | dirstate, |
|
35 | 35 | dirstateguard, |
|
36 | 36 | discovery, |
|
37 | 37 | encoding, |
|
38 | 38 | error, |
|
39 | 39 | exchange, |
|
40 | 40 | extensions, |
|
41 | 41 | filelog, |
|
42 | 42 | hook, |
|
43 | 43 | lock as lockmod, |
|
44 | 44 | manifest, |
|
45 | 45 | match as matchmod, |
|
46 | 46 | merge as mergemod, |
|
47 | 47 | mergeutil, |
|
48 | 48 | namespaces, |
|
49 | 49 | narrowspec, |
|
50 | 50 | obsolete, |
|
51 | 51 | pathutil, |
|
52 | 52 | phases, |
|
53 | 53 | pushkey, |
|
54 | 54 | pycompat, |
|
55 | 55 | repository, |
|
56 | 56 | repoview, |
|
57 | 57 | revset, |
|
58 | 58 | revsetlang, |
|
59 | 59 | scmutil, |
|
60 | 60 | sparse, |
|
61 | 61 | store as storemod, |
|
62 | 62 | subrepoutil, |
|
63 | 63 | tags as tagsmod, |
|
64 | 64 | transaction, |
|
65 | 65 | txnutil, |
|
66 | 66 | util, |
|
67 | 67 | vfs as vfsmod, |
|
68 | 68 | ) |
|
69 | 69 | from .utils import ( |
|
70 | 70 | interfaceutil, |
|
71 | 71 | procutil, |
|
72 | 72 | stringutil, |
|
73 | 73 | ) |
|
74 | 74 | |
|
75 | 75 | from .revlogutils import ( |
|
76 | 76 | constants as revlogconst, |
|
77 | 77 | ) |
|
78 | 78 | |
|
79 | 79 | release = lockmod.release |
|
80 | 80 | urlerr = util.urlerr |
|
81 | 81 | urlreq = util.urlreq |
|
82 | 82 | |
|
83 | 83 | # set of (path, vfs-location) tuples. vfs-location is: |
|
84 | 84 | # - 'plain for vfs relative paths |
|
85 | 85 | # - '' for svfs relative paths |
|
86 | 86 | _cachedfiles = set() |
|
87 | 87 | |
|
88 | 88 | class _basefilecache(scmutil.filecache): |
|
89 | 89 | """All filecache usage on repo are done for logic that should be unfiltered |
|
90 | 90 | """ |
|
91 | 91 | def __get__(self, repo, type=None): |
|
92 | 92 | if repo is None: |
|
93 | 93 | return self |
|
94 | 94 | return super(_basefilecache, self).__get__(repo.unfiltered(), type) |
|
95 | 95 | def __set__(self, repo, value): |
|
96 | 96 | return super(_basefilecache, self).__set__(repo.unfiltered(), value) |
|
97 | 97 | def __delete__(self, repo): |
|
98 | 98 | return super(_basefilecache, self).__delete__(repo.unfiltered()) |
|
99 | 99 | |
|
100 | 100 | class repofilecache(_basefilecache): |
|
101 | 101 | """filecache for files in .hg but outside of .hg/store""" |
|
102 | 102 | def __init__(self, *paths): |
|
103 | 103 | super(repofilecache, self).__init__(*paths) |
|
104 | 104 | for path in paths: |
|
105 | 105 | _cachedfiles.add((path, 'plain')) |
|
106 | 106 | |
|
107 | 107 | def join(self, obj, fname): |
|
108 | 108 | return obj.vfs.join(fname) |
|
109 | 109 | |
|
110 | 110 | class storecache(_basefilecache): |
|
111 | 111 | """filecache for files in the store""" |
|
112 | 112 | def __init__(self, *paths): |
|
113 | 113 | super(storecache, self).__init__(*paths) |
|
114 | 114 | for path in paths: |
|
115 | 115 | _cachedfiles.add((path, '')) |
|
116 | 116 | |
|
117 | 117 | def join(self, obj, fname): |
|
118 | 118 | return obj.sjoin(fname) |
|
119 | 119 | |
|
120 | 120 | def isfilecached(repo, name): |
|
121 | 121 | """check if a repo has already cached "name" filecache-ed property |
|
122 | 122 | |
|
123 | 123 | This returns (cachedobj-or-None, iscached) tuple. |
|
124 | 124 | """ |
|
125 | 125 | cacheentry = repo.unfiltered()._filecache.get(name, None) |
|
126 | 126 | if not cacheentry: |
|
127 | 127 | return None, False |
|
128 | 128 | return cacheentry.obj, True |
|
129 | 129 | |
|
130 | 130 | class unfilteredpropertycache(util.propertycache): |
|
131 | 131 | """propertycache that apply to unfiltered repo only""" |
|
132 | 132 | |
|
133 | 133 | def __get__(self, repo, type=None): |
|
134 | 134 | unfi = repo.unfiltered() |
|
135 | 135 | if unfi is repo: |
|
136 | 136 | return super(unfilteredpropertycache, self).__get__(unfi) |
|
137 | 137 | return getattr(unfi, self.name) |
|
138 | 138 | |
|
139 | 139 | class filteredpropertycache(util.propertycache): |
|
140 | 140 | """propertycache that must take filtering in account""" |
|
141 | 141 | |
|
142 | 142 | def cachevalue(self, obj, value): |
|
143 | 143 | object.__setattr__(obj, self.name, value) |
|
144 | 144 | |
|
145 | 145 | |
|
146 | 146 | def hasunfilteredcache(repo, name): |
|
147 | 147 | """check if a repo has an unfilteredpropertycache value for <name>""" |
|
148 | 148 | return name in vars(repo.unfiltered()) |
|
149 | 149 | |
|
150 | 150 | def unfilteredmethod(orig): |
|
151 | 151 | """decorate method that always need to be run on unfiltered version""" |
|
152 | 152 | def wrapper(repo, *args, **kwargs): |
|
153 | 153 | return orig(repo.unfiltered(), *args, **kwargs) |
|
154 | 154 | return wrapper |
|
155 | 155 | |
|
156 | 156 | moderncaps = {'lookup', 'branchmap', 'pushkey', 'known', 'getbundle', |
|
157 | 157 | 'unbundle'} |
|
158 | 158 | legacycaps = moderncaps.union({'changegroupsubset'}) |
|
159 | 159 | |
|
160 | 160 | @interfaceutil.implementer(repository.ipeercommandexecutor) |
|
161 | 161 | class localcommandexecutor(object): |
|
162 | 162 | def __init__(self, peer): |
|
163 | 163 | self._peer = peer |
|
164 | 164 | self._sent = False |
|
165 | 165 | self._closed = False |
|
166 | 166 | |
|
167 | 167 | def __enter__(self): |
|
168 | 168 | return self |
|
169 | 169 | |
|
170 | 170 | def __exit__(self, exctype, excvalue, exctb): |
|
171 | 171 | self.close() |
|
172 | 172 | |
|
173 | 173 | def callcommand(self, command, args): |
|
174 | 174 | if self._sent: |
|
175 | 175 | raise error.ProgrammingError('callcommand() cannot be used after ' |
|
176 | 176 | 'sendcommands()') |
|
177 | 177 | |
|
178 | 178 | if self._closed: |
|
179 | 179 | raise error.ProgrammingError('callcommand() cannot be used after ' |
|
180 | 180 | 'close()') |
|
181 | 181 | |
|
182 | 182 | # We don't need to support anything fancy. Just call the named |
|
183 | 183 | # method on the peer and return a resolved future. |
|
184 | 184 | fn = getattr(self._peer, pycompat.sysstr(command)) |
|
185 | 185 | |
|
186 | 186 | f = pycompat.futures.Future() |
|
187 | 187 | |
|
188 | 188 | try: |
|
189 | 189 | result = fn(**pycompat.strkwargs(args)) |
|
190 | 190 | except Exception: |
|
191 | 191 | pycompat.future_set_exception_info(f, sys.exc_info()[1:]) |
|
192 | 192 | else: |
|
193 | 193 | f.set_result(result) |
|
194 | 194 | |
|
195 | 195 | return f |
|
196 | 196 | |
|
197 | 197 | def sendcommands(self): |
|
198 | 198 | self._sent = True |
|
199 | 199 | |
|
200 | 200 | def close(self): |
|
201 | 201 | self._closed = True |
|
202 | 202 | |
|
203 | 203 | @interfaceutil.implementer(repository.ipeercommands) |
|
204 | 204 | class localpeer(repository.peer): |
|
205 | 205 | '''peer for a local repo; reflects only the most recent API''' |
|
206 | 206 | |
|
207 | 207 | def __init__(self, repo, caps=None): |
|
208 | 208 | super(localpeer, self).__init__() |
|
209 | 209 | |
|
210 | 210 | if caps is None: |
|
211 | 211 | caps = moderncaps.copy() |
|
212 | 212 | self._repo = repo.filtered('served') |
|
213 | 213 | self.ui = repo.ui |
|
214 | 214 | self._caps = repo._restrictcapabilities(caps) |
|
215 | 215 | |
|
216 | 216 | # Begin of _basepeer interface. |
|
217 | 217 | |
|
218 | 218 | def url(self): |
|
219 | 219 | return self._repo.url() |
|
220 | 220 | |
|
221 | 221 | def local(self): |
|
222 | 222 | return self._repo |
|
223 | 223 | |
|
224 | 224 | def peer(self): |
|
225 | 225 | return self |
|
226 | 226 | |
|
227 | 227 | def canpush(self): |
|
228 | 228 | return True |
|
229 | 229 | |
|
230 | 230 | def close(self): |
|
231 | 231 | self._repo.close() |
|
232 | 232 | |
|
233 | 233 | # End of _basepeer interface. |
|
234 | 234 | |
|
235 | 235 | # Begin of _basewirecommands interface. |
|
236 | 236 | |
|
237 | 237 | def branchmap(self): |
|
238 | 238 | return self._repo.branchmap() |
|
239 | 239 | |
|
240 | 240 | def capabilities(self): |
|
241 | 241 | return self._caps |
|
242 | 242 | |
|
243 | 243 | def clonebundles(self): |
|
244 | 244 | return self._repo.tryread('clonebundles.manifest') |
|
245 | 245 | |
|
246 | 246 | def debugwireargs(self, one, two, three=None, four=None, five=None): |
|
247 | 247 | """Used to test argument passing over the wire""" |
|
248 | 248 | return "%s %s %s %s %s" % (one, two, pycompat.bytestr(three), |
|
249 | 249 | pycompat.bytestr(four), |
|
250 | 250 | pycompat.bytestr(five)) |
|
251 | 251 | |
|
252 | 252 | def getbundle(self, source, heads=None, common=None, bundlecaps=None, |
|
253 | 253 | **kwargs): |
|
254 | 254 | chunks = exchange.getbundlechunks(self._repo, source, heads=heads, |
|
255 | 255 | common=common, bundlecaps=bundlecaps, |
|
256 | 256 | **kwargs)[1] |
|
257 | 257 | cb = util.chunkbuffer(chunks) |
|
258 | 258 | |
|
259 | 259 | if exchange.bundle2requested(bundlecaps): |
|
260 | 260 | # When requesting a bundle2, getbundle returns a stream to make the |
|
261 | 261 | # wire level function happier. We need to build a proper object |
|
262 | 262 | # from it in local peer. |
|
263 | 263 | return bundle2.getunbundler(self.ui, cb) |
|
264 | 264 | else: |
|
265 | 265 | return changegroup.getunbundler('01', cb, None) |
|
266 | 266 | |
|
267 | 267 | def heads(self): |
|
268 | 268 | return self._repo.heads() |
|
269 | 269 | |
|
270 | 270 | def known(self, nodes): |
|
271 | 271 | return self._repo.known(nodes) |
|
272 | 272 | |
|
273 | 273 | def listkeys(self, namespace): |
|
274 | 274 | return self._repo.listkeys(namespace) |
|
275 | 275 | |
|
276 | 276 | def lookup(self, key): |
|
277 | 277 | return self._repo.lookup(key) |
|
278 | 278 | |
|
279 | 279 | def pushkey(self, namespace, key, old, new): |
|
280 | 280 | return self._repo.pushkey(namespace, key, old, new) |
|
281 | 281 | |
|
282 | 282 | def stream_out(self): |
|
283 | 283 | raise error.Abort(_('cannot perform stream clone against local ' |
|
284 | 284 | 'peer')) |
|
285 | 285 | |
|
286 | 286 | def unbundle(self, bundle, heads, url): |
|
287 | 287 | """apply a bundle on a repo |
|
288 | 288 | |
|
289 | 289 | This function handles the repo locking itself.""" |
|
290 | 290 | try: |
|
291 | 291 | try: |
|
292 | 292 | bundle = exchange.readbundle(self.ui, bundle, None) |
|
293 | 293 | ret = exchange.unbundle(self._repo, bundle, heads, 'push', url) |
|
294 | 294 | if util.safehasattr(ret, 'getchunks'): |
|
295 | 295 | # This is a bundle20 object, turn it into an unbundler. |
|
296 | 296 | # This little dance should be dropped eventually when the |
|
297 | 297 | # API is finally improved. |
|
298 | 298 | stream = util.chunkbuffer(ret.getchunks()) |
|
299 | 299 | ret = bundle2.getunbundler(self.ui, stream) |
|
300 | 300 | return ret |
|
301 | 301 | except Exception as exc: |
|
302 | 302 | # If the exception contains output salvaged from a bundle2 |
|
303 | 303 | # reply, we need to make sure it is printed before continuing |
|
304 | 304 | # to fail. So we build a bundle2 with such output and consume |
|
305 | 305 | # it directly. |
|
306 | 306 | # |
|
307 | 307 | # This is not very elegant but allows a "simple" solution for |
|
308 | 308 | # issue4594 |
|
309 | 309 | output = getattr(exc, '_bundle2salvagedoutput', ()) |
|
310 | 310 | if output: |
|
311 | 311 | bundler = bundle2.bundle20(self._repo.ui) |
|
312 | 312 | for out in output: |
|
313 | 313 | bundler.addpart(out) |
|
314 | 314 | stream = util.chunkbuffer(bundler.getchunks()) |
|
315 | 315 | b = bundle2.getunbundler(self.ui, stream) |
|
316 | 316 | bundle2.processbundle(self._repo, b) |
|
317 | 317 | raise |
|
318 | 318 | except error.PushRaced as exc: |
|
319 | 319 | raise error.ResponseError(_('push failed:'), |
|
320 | 320 | stringutil.forcebytestr(exc)) |
|
321 | 321 | |
|
322 | 322 | # End of _basewirecommands interface. |
|
323 | 323 | |
|
324 | 324 | # Begin of peer interface. |
|
325 | 325 | |
|
326 | 326 | def commandexecutor(self): |
|
327 | 327 | return localcommandexecutor(self) |
|
328 | 328 | |
|
329 | 329 | # End of peer interface. |
|
330 | 330 | |
|
331 | 331 | @interfaceutil.implementer(repository.ipeerlegacycommands) |
|
332 | 332 | class locallegacypeer(localpeer): |
|
333 | 333 | '''peer extension which implements legacy methods too; used for tests with |
|
334 | 334 | restricted capabilities''' |
|
335 | 335 | |
|
336 | 336 | def __init__(self, repo): |
|
337 | 337 | super(locallegacypeer, self).__init__(repo, caps=legacycaps) |
|
338 | 338 | |
|
339 | 339 | # Begin of baselegacywirecommands interface. |
|
340 | 340 | |
|
341 | 341 | def between(self, pairs): |
|
342 | 342 | return self._repo.between(pairs) |
|
343 | 343 | |
|
344 | 344 | def branches(self, nodes): |
|
345 | 345 | return self._repo.branches(nodes) |
|
346 | 346 | |
|
347 | 347 | def changegroup(self, nodes, source): |
|
348 | 348 | outgoing = discovery.outgoing(self._repo, missingroots=nodes, |
|
349 | 349 | missingheads=self._repo.heads()) |
|
350 | 350 | return changegroup.makechangegroup(self._repo, outgoing, '01', source) |
|
351 | 351 | |
|
352 | 352 | def changegroupsubset(self, bases, heads, source): |
|
353 | 353 | outgoing = discovery.outgoing(self._repo, missingroots=bases, |
|
354 | 354 | missingheads=heads) |
|
355 | 355 | return changegroup.makechangegroup(self._repo, outgoing, '01', source) |
|
356 | 356 | |
|
357 | 357 | # End of baselegacywirecommands interface. |
|
358 | 358 | |
|
359 | 359 | # Increment the sub-version when the revlog v2 format changes to lock out old |
|
360 | 360 | # clients. |
|
361 | 361 | REVLOGV2_REQUIREMENT = 'exp-revlogv2.0' |
|
362 | 362 | |
|
363 | 363 | # A repository with the sparserevlog feature will have delta chains that |
|
364 | 364 | # can spread over a larger span. Sparse reading cuts these large spans into |
|
365 | 365 | # pieces, so that each piece isn't too big. |
|
366 | 366 | # Without the sparserevlog capability, reading from the repository could use |
|
367 | 367 | # huge amounts of memory, because the whole span would be read at once, |
|
368 | 368 | # including all the intermediate revisions that aren't pertinent for the chain. |
|
369 | 369 | # This is why once a repository has enabled sparse-read, it becomes required. |
|
370 | 370 | SPARSEREVLOG_REQUIREMENT = 'sparserevlog' |
|
371 | 371 | |
|
372 | 372 | # Functions receiving (ui, features) that extensions can register to impact |
|
373 | 373 | # the ability to load repositories with custom requirements. Only |
|
374 | 374 | # functions defined in loaded extensions are called. |
|
375 | 375 | # |
|
376 | 376 | # The function receives a set of requirement strings that the repository |
|
377 | 377 | # is capable of opening. Functions will typically add elements to the |
|
378 | 378 | # set to reflect that the extension knows how to handle that requirements. |
|
379 | 379 | featuresetupfuncs = set() |
|
380 | 380 | |
|
381 | 381 | def makelocalrepository(baseui, path, intents=None): |
|
382 | 382 | """Create a local repository object. |
|
383 | 383 | |
|
384 | 384 | Given arguments needed to construct a local repository, this function |
|
385 | 385 | performs various early repository loading functionality (such as |
|
386 | 386 | reading the ``.hg/requires`` and ``.hg/hgrc`` files), validates that |
|
387 | 387 | the repository can be opened, derives a type suitable for representing |
|
388 | 388 | that repository, and returns an instance of it. |
|
389 | 389 | |
|
390 | 390 | The returned object conforms to the ``repository.completelocalrepository`` |
|
391 | 391 | interface. |
|
392 | 392 | |
|
393 | 393 | The repository type is derived by calling a series of factory functions |
|
394 | 394 | for each aspect/interface of the final repository. These are defined by |
|
395 | 395 | ``REPO_INTERFACES``. |
|
396 | 396 | |
|
397 | 397 | Each factory function is called to produce a type implementing a specific |
|
398 | 398 | interface. The cumulative list of returned types will be combined into a |
|
399 | 399 | new type and that type will be instantiated to represent the local |
|
400 | 400 | repository. |
|
401 | 401 | |
|
402 | 402 | The factory functions each receive various state that may be consulted |
|
403 | 403 | as part of deriving a type. |
|
404 | 404 | |
|
405 | 405 | Extensions should wrap these factory functions to customize repository type |
|
406 | 406 | creation. Note that an extension's wrapped function may be called even if |
|
407 | 407 | that extension is not loaded for the repo being constructed. Extensions |
|
408 | 408 | should check if their ``__name__`` appears in the |
|
409 | 409 | ``extensionmodulenames`` set passed to the factory function and no-op if |
|
410 | 410 | not. |
|
411 | 411 | """ |
|
412 | 412 | ui = baseui.copy() |
|
413 | 413 | # Prevent copying repo configuration. |
|
414 | 414 | ui.copy = baseui.copy |
|
415 | 415 | |
|
416 | 416 | # Working directory VFS rooted at repository root. |
|
417 | 417 | wdirvfs = vfsmod.vfs(path, expandpath=True, realpath=True) |
|
418 | 418 | |
|
419 | 419 | # Main VFS for .hg/ directory. |
|
420 | 420 | hgpath = wdirvfs.join(b'.hg') |
|
421 | 421 | hgvfs = vfsmod.vfs(hgpath, cacheaudited=True) |
|
422 | 422 | |
|
423 | 423 | # The .hg/ path should exist and should be a directory. All other |
|
424 | 424 | # cases are errors. |
|
425 | 425 | if not hgvfs.isdir(): |
|
426 | 426 | try: |
|
427 | 427 | hgvfs.stat() |
|
428 | 428 | except OSError as e: |
|
429 | 429 | if e.errno != errno.ENOENT: |
|
430 | 430 | raise |
|
431 | 431 | |
|
432 | 432 | raise error.RepoError(_(b'repository %s not found') % path) |
|
433 | 433 | |
|
434 | 434 | # .hg/requires file contains a newline-delimited list of |
|
435 | 435 | # features/capabilities the opener (us) must have in order to use |
|
436 | 436 | # the repository. This file was introduced in Mercurial 0.9.2, |
|
437 | 437 | # which means very old repositories may not have one. We assume |
|
438 | 438 | # a missing file translates to no requirements. |
|
439 | 439 | try: |
|
440 | 440 | requirements = set(hgvfs.read(b'requires').splitlines()) |
|
441 | 441 | except IOError as e: |
|
442 | 442 | if e.errno != errno.ENOENT: |
|
443 | 443 | raise |
|
444 | 444 | requirements = set() |
|
445 | 445 | |
|
446 | 446 | # The .hg/hgrc file may load extensions or contain config options |
|
447 | 447 | # that influence repository construction. Attempt to load it and |
|
448 | 448 | # process any new extensions that it may have pulled in. |
|
449 | 449 | try: |
|
450 | 450 | ui.readconfig(hgvfs.join(b'hgrc'), root=wdirvfs.base) |
|
451 | 451 | # Run this before extensions.loadall() so extensions can be |
|
452 | 452 | # automatically enabled. |
|
453 | 453 | afterhgrcload(ui, wdirvfs, hgvfs, requirements) |
|
454 | 454 | except IOError: |
|
455 | 455 | pass |
|
456 | 456 | else: |
|
457 | 457 | extensions.loadall(ui) |
|
458 | 458 | |
|
459 | 459 | # Set of module names of extensions loaded for this repository. |
|
460 | 460 | extensionmodulenames = {m.__name__ for n, m in extensions.extensions(ui)} |
|
461 | 461 | |
|
462 | 462 | supportedrequirements = gathersupportedrequirements(ui) |
|
463 | 463 | |
|
464 | 464 | # We first validate the requirements are known. |
|
465 | 465 | ensurerequirementsrecognized(requirements, supportedrequirements) |
|
466 | 466 | |
|
467 | 467 | # Then we validate that the known set is reasonable to use together. |
|
468 | 468 | ensurerequirementscompatible(ui, requirements) |
|
469 | 469 | |
|
470 | 470 | # TODO there are unhandled edge cases related to opening repositories with |
|
471 | 471 | # shared storage. If storage is shared, we should also test for requirements |
|
472 | 472 | # compatibility in the pointed-to repo. This entails loading the .hg/hgrc in |
|
473 | 473 | # that repo, as that repo may load extensions needed to open it. This is a |
|
474 | 474 | # bit complicated because we don't want the other hgrc to overwrite settings |
|
475 | 475 | # in this hgrc. |
|
476 | 476 | # |
|
477 | 477 | # This bug is somewhat mitigated by the fact that we copy the .hg/requires |
|
478 | 478 | # file when sharing repos. But if a requirement is added after the share is |
|
479 | 479 | # performed, thereby introducing a new requirement for the opener, we may |
|
480 | 480 | # will not see that and could encounter a run-time error interacting with |
|
481 | 481 | # that shared store since it has an unknown-to-us requirement. |
|
482 | 482 | |
|
483 | 483 | # At this point, we know we should be capable of opening the repository. |
|
484 | 484 | # Now get on with doing that. |
|
485 | 485 | |
|
486 | 486 | features = set() |
|
487 | 487 | |
|
488 | 488 | # The "store" part of the repository holds versioned data. How it is |
|
489 | 489 | # accessed is determined by various requirements. The ``shared`` or |
|
490 | 490 | # ``relshared`` requirements indicate the store lives in the path contained |
|
491 | 491 | # in the ``.hg/sharedpath`` file. This is an absolute path for |
|
492 | 492 | # ``shared`` and relative to ``.hg/`` for ``relshared``. |
|
493 | 493 | if b'shared' in requirements or b'relshared' in requirements: |
|
494 | 494 | sharedpath = hgvfs.read(b'sharedpath').rstrip(b'\n') |
|
495 | 495 | if b'relshared' in requirements: |
|
496 | 496 | sharedpath = hgvfs.join(sharedpath) |
|
497 | 497 | |
|
498 | 498 | sharedvfs = vfsmod.vfs(sharedpath, realpath=True) |
|
499 | 499 | |
|
500 | 500 | if not sharedvfs.exists(): |
|
501 | 501 | raise error.RepoError(_(b'.hg/sharedpath points to nonexistent ' |
|
502 | 502 | b'directory %s') % sharedvfs.base) |
|
503 | 503 | |
|
504 | 504 | features.add(repository.REPO_FEATURE_SHARED_STORAGE) |
|
505 | 505 | |
|
506 | 506 | storebasepath = sharedvfs.base |
|
507 | 507 | cachepath = sharedvfs.join(b'cache') |
|
508 | 508 | else: |
|
509 | 509 | storebasepath = hgvfs.base |
|
510 | 510 | cachepath = hgvfs.join(b'cache') |
|
511 | 511 | |
|
512 | 512 | # The store has changed over time and the exact layout is dictated by |
|
513 | 513 | # requirements. The store interface abstracts differences across all |
|
514 | 514 | # of them. |
|
515 | 515 | store = makestore(requirements, storebasepath, |
|
516 | 516 | lambda base: vfsmod.vfs(base, cacheaudited=True)) |
|
517 | 517 | hgvfs.createmode = store.createmode |
|
518 | 518 | |
|
519 | 519 | storevfs = store.vfs |
|
520 | 520 | storevfs.options = resolvestorevfsoptions(ui, requirements, features) |
|
521 | 521 | |
|
522 | 522 | # The cache vfs is used to manage cache files. |
|
523 | 523 | cachevfs = vfsmod.vfs(cachepath, cacheaudited=True) |
|
524 | 524 | cachevfs.createmode = store.createmode |
|
525 | 525 | |
|
526 | 526 | # Now resolve the type for the repository object. We do this by repeatedly |
|
527 | 527 | # calling a factory function to produces types for specific aspects of the |
|
528 | 528 | # repo's operation. The aggregate returned types are used as base classes |
|
529 | 529 | # for a dynamically-derived type, which will represent our new repository. |
|
530 | 530 | |
|
531 | 531 | bases = [] |
|
532 | 532 | extrastate = {} |
|
533 | 533 | |
|
534 | 534 | for iface, fn in REPO_INTERFACES: |
|
535 | 535 | # We pass all potentially useful state to give extensions tons of |
|
536 | 536 | # flexibility. |
|
537 | 537 | typ = fn()(ui=ui, |
|
538 | 538 | intents=intents, |
|
539 | 539 | requirements=requirements, |
|
540 | 540 | features=features, |
|
541 | 541 | wdirvfs=wdirvfs, |
|
542 | 542 | hgvfs=hgvfs, |
|
543 | 543 | store=store, |
|
544 | 544 | storevfs=storevfs, |
|
545 | 545 | storeoptions=storevfs.options, |
|
546 | 546 | cachevfs=cachevfs, |
|
547 | 547 | extensionmodulenames=extensionmodulenames, |
|
548 | 548 | extrastate=extrastate, |
|
549 | 549 | baseclasses=bases) |
|
550 | 550 | |
|
551 | 551 | if not isinstance(typ, type): |
|
552 | 552 | raise error.ProgrammingError('unable to construct type for %s' % |
|
553 | 553 | iface) |
|
554 | 554 | |
|
555 | 555 | bases.append(typ) |
|
556 | 556 | |
|
557 | 557 | # type() allows you to use characters in type names that wouldn't be |
|
558 | 558 | # recognized as Python symbols in source code. We abuse that to add |
|
559 | 559 | # rich information about our constructed repo. |
|
560 | 560 | name = pycompat.sysstr(b'derivedrepo:%s<%s>' % ( |
|
561 | 561 | wdirvfs.base, |
|
562 | 562 | b','.join(sorted(requirements)))) |
|
563 | 563 | |
|
564 | 564 | cls = type(name, tuple(bases), {}) |
|
565 | 565 | |
|
566 | 566 | return cls( |
|
567 | 567 | baseui=baseui, |
|
568 | 568 | ui=ui, |
|
569 | 569 | origroot=path, |
|
570 | 570 | wdirvfs=wdirvfs, |
|
571 | 571 | hgvfs=hgvfs, |
|
572 | 572 | requirements=requirements, |
|
573 | 573 | supportedrequirements=supportedrequirements, |
|
574 | 574 | sharedpath=storebasepath, |
|
575 | 575 | store=store, |
|
576 | 576 | cachevfs=cachevfs, |
|
577 | 577 | features=features, |
|
578 | 578 | intents=intents) |
|
579 | 579 | |
|
580 | 580 | def afterhgrcload(ui, wdirvfs, hgvfs, requirements): |
|
581 | 581 | """Perform additional actions after .hg/hgrc is loaded. |
|
582 | 582 | |
|
583 | 583 | This function is called during repository loading immediately after |
|
584 | 584 | the .hg/hgrc file is loaded and before per-repo extensions are loaded. |
|
585 | 585 | |
|
586 | 586 | The function can be used to validate configs, automatically add |
|
587 | 587 | options (including extensions) based on requirements, etc. |
|
588 | 588 | """ |
|
589 | 589 | |
|
590 | 590 | # Map of requirements to list of extensions to load automatically when |
|
591 | 591 | # requirement is present. |
|
592 | 592 | autoextensions = { |
|
593 | 593 | b'largefiles': [b'largefiles'], |
|
594 | 594 | b'lfs': [b'lfs'], |
|
595 | 595 | } |
|
596 | 596 | |
|
597 | 597 | for requirement, names in sorted(autoextensions.items()): |
|
598 | 598 | if requirement not in requirements: |
|
599 | 599 | continue |
|
600 | 600 | |
|
601 | 601 | for name in names: |
|
602 | 602 | if not ui.hasconfig(b'extensions', name): |
|
603 | 603 | ui.setconfig(b'extensions', name, b'', source='autoload') |
|
604 | 604 | |
|
605 | 605 | def gathersupportedrequirements(ui): |
|
606 | 606 | """Determine the complete set of recognized requirements.""" |
|
607 | 607 | # Start with all requirements supported by this file. |
|
608 | 608 | supported = set(localrepository._basesupported) |
|
609 | 609 | |
|
610 | 610 | # Execute ``featuresetupfuncs`` entries if they belong to an extension |
|
611 | 611 | # relevant to this ui instance. |
|
612 | 612 | modules = {m.__name__ for n, m in extensions.extensions(ui)} |
|
613 | 613 | |
|
614 | 614 | for fn in featuresetupfuncs: |
|
615 | 615 | if fn.__module__ in modules: |
|
616 | 616 | fn(ui, supported) |
|
617 | 617 | |
|
618 | 618 | # Add derived requirements from registered compression engines. |
|
619 | 619 | for name in util.compengines: |
|
620 | 620 | engine = util.compengines[name] |
|
621 | 621 | if engine.revlogheader(): |
|
622 | 622 | supported.add(b'exp-compression-%s' % name) |
|
623 | 623 | |
|
624 | 624 | return supported |
|
625 | 625 | |
|
626 | 626 | def ensurerequirementsrecognized(requirements, supported): |
|
627 | 627 | """Validate that a set of local requirements is recognized. |
|
628 | 628 | |
|
629 | 629 | Receives a set of requirements. Raises an ``error.RepoError`` if there |
|
630 | 630 | exists any requirement in that set that currently loaded code doesn't |
|
631 | 631 | recognize. |
|
632 | 632 | |
|
633 | 633 | Returns a set of supported requirements. |
|
634 | 634 | """ |
|
635 | 635 | missing = set() |
|
636 | 636 | |
|
637 | 637 | for requirement in requirements: |
|
638 | 638 | if requirement in supported: |
|
639 | 639 | continue |
|
640 | 640 | |
|
641 | 641 | if not requirement or not requirement[0:1].isalnum(): |
|
642 | 642 | raise error.RequirementError(_(b'.hg/requires file is corrupt')) |
|
643 | 643 | |
|
644 | 644 | missing.add(requirement) |
|
645 | 645 | |
|
646 | 646 | if missing: |
|
647 | 647 | raise error.RequirementError( |
|
648 | 648 | _(b'repository requires features unknown to this Mercurial: %s') % |
|
649 | 649 | b' '.join(sorted(missing)), |
|
650 | 650 | hint=_(b'see https://mercurial-scm.org/wiki/MissingRequirement ' |
|
651 | 651 | b'for more information')) |
|
652 | 652 | |
|
653 | 653 | def ensurerequirementscompatible(ui, requirements): |
|
654 | 654 | """Validates that a set of recognized requirements is mutually compatible. |
|
655 | 655 | |
|
656 | 656 | Some requirements may not be compatible with others or require |
|
657 | 657 | config options that aren't enabled. This function is called during |
|
658 | 658 | repository opening to ensure that the set of requirements needed |
|
659 | 659 | to open a repository is sane and compatible with config options. |
|
660 | 660 | |
|
661 | 661 | Extensions can monkeypatch this function to perform additional |
|
662 | 662 | checking. |
|
663 | 663 | |
|
664 | 664 | ``error.RepoError`` should be raised on failure. |
|
665 | 665 | """ |
|
666 | 666 | if b'exp-sparse' in requirements and not sparse.enabled: |
|
667 | 667 | raise error.RepoError(_(b'repository is using sparse feature but ' |
|
668 | 668 | b'sparse is not enabled; enable the ' |
|
669 | 669 | b'"sparse" extensions to access')) |
|
670 | 670 | |
|
671 | 671 | def makestore(requirements, path, vfstype): |
|
672 | 672 | """Construct a storage object for a repository.""" |
|
673 | 673 | if b'store' in requirements: |
|
674 | 674 | if b'fncache' in requirements: |
|
675 | 675 | return storemod.fncachestore(path, vfstype, |
|
676 | 676 | b'dotencode' in requirements) |
|
677 | 677 | |
|
678 | 678 | return storemod.encodedstore(path, vfstype) |
|
679 | 679 | |
|
680 | 680 | return storemod.basicstore(path, vfstype) |
|
681 | 681 | |
|
682 | 682 | def resolvestorevfsoptions(ui, requirements, features): |
|
683 | 683 | """Resolve the options to pass to the store vfs opener. |
|
684 | 684 | |
|
685 | 685 | The returned dict is used to influence behavior of the storage layer. |
|
686 | 686 | """ |
|
687 | 687 | options = {} |
|
688 | 688 | |
|
689 | 689 | if b'treemanifest' in requirements: |
|
690 | 690 | options[b'treemanifest'] = True |
|
691 | 691 | |
|
692 | 692 | # experimental config: format.manifestcachesize |
|
693 | 693 | manifestcachesize = ui.configint(b'format', b'manifestcachesize') |
|
694 | 694 | if manifestcachesize is not None: |
|
695 | 695 | options[b'manifestcachesize'] = manifestcachesize |
|
696 | 696 | |
|
697 | 697 | # In the absence of another requirement superseding a revlog-related |
|
698 | 698 | # requirement, we have to assume the repo is using revlog version 0. |
|
699 | 699 | # This revlog format is super old and we don't bother trying to parse |
|
700 | 700 | # opener options for it because those options wouldn't do anything |
|
701 | 701 | # meaningful on such old repos. |
|
702 | 702 | if b'revlogv1' in requirements or REVLOGV2_REQUIREMENT in requirements: |
|
703 | 703 | options.update(resolverevlogstorevfsoptions(ui, requirements, features)) |
|
704 | 704 | |
|
705 | 705 | return options |
|
706 | 706 | |
|
707 | 707 | def resolverevlogstorevfsoptions(ui, requirements, features): |
|
708 | 708 | """Resolve opener options specific to revlogs.""" |
|
709 | 709 | |
|
710 | 710 | options = {} |
|
711 | 711 | |
|
712 | 712 | if b'revlogv1' in requirements: |
|
713 | 713 | options[b'revlogv1'] = True |
|
714 | 714 | if REVLOGV2_REQUIREMENT in requirements: |
|
715 | 715 | options[b'revlogv2'] = True |
|
716 | 716 | |
|
717 | 717 | if b'generaldelta' in requirements: |
|
718 | 718 | options[b'generaldelta'] = True |
|
719 | 719 | |
|
720 | 720 | # experimental config: format.chunkcachesize |
|
721 | 721 | chunkcachesize = ui.configint(b'format', b'chunkcachesize') |
|
722 | 722 | if chunkcachesize is not None: |
|
723 | 723 | options[b'chunkcachesize'] = chunkcachesize |
|
724 | 724 | |
|
725 | 725 | deltabothparents = ui.configbool(b'storage', |
|
726 | 726 | b'revlog.optimize-delta-parent-choice') |
|
727 | 727 | options[b'deltabothparents'] = deltabothparents |
|
728 | 728 | |
|
729 | 729 | options[b'lazydeltabase'] = not scmutil.gddeltaconfig(ui) |
|
730 | 730 | |
|
731 | 731 | chainspan = ui.configbytes(b'experimental', b'maxdeltachainspan') |
|
732 | 732 | if 0 <= chainspan: |
|
733 | 733 | options[b'maxdeltachainspan'] = chainspan |
|
734 | 734 | |
|
735 | 735 | mmapindexthreshold = ui.configbytes(b'experimental', |
|
736 | 736 | b'mmapindexthreshold') |
|
737 | 737 | if mmapindexthreshold is not None: |
|
738 | 738 | options[b'mmapindexthreshold'] = mmapindexthreshold |
|
739 | 739 | |
|
740 | 740 | withsparseread = ui.configbool(b'experimental', b'sparse-read') |
|
741 | 741 | srdensitythres = float(ui.config(b'experimental', |
|
742 | 742 | b'sparse-read.density-threshold')) |
|
743 | 743 | srmingapsize = ui.configbytes(b'experimental', |
|
744 | 744 | b'sparse-read.min-gap-size') |
|
745 | 745 | options[b'with-sparse-read'] = withsparseread |
|
746 | 746 | options[b'sparse-read-density-threshold'] = srdensitythres |
|
747 | 747 | options[b'sparse-read-min-gap-size'] = srmingapsize |
|
748 | 748 | |
|
749 | 749 | sparserevlog = SPARSEREVLOG_REQUIREMENT in requirements |
|
750 | 750 | options[b'sparse-revlog'] = sparserevlog |
|
751 | 751 | if sparserevlog: |
|
752 | 752 | options[b'generaldelta'] = True |
|
753 | 753 | |
|
754 | 754 | maxchainlen = None |
|
755 | 755 | if sparserevlog: |
|
756 | 756 | maxchainlen = revlogconst.SPARSE_REVLOG_MAX_CHAIN_LENGTH |
|
757 | 757 | # experimental config: format.maxchainlen |
|
758 | 758 | maxchainlen = ui.configint(b'format', b'maxchainlen', maxchainlen) |
|
759 | 759 | if maxchainlen is not None: |
|
760 | 760 | options[b'maxchainlen'] = maxchainlen |
|
761 | 761 | |
|
762 | 762 | for r in requirements: |
|
763 | 763 | if r.startswith(b'exp-compression-'): |
|
764 | 764 | options[b'compengine'] = r[len(b'exp-compression-'):] |
|
765 | 765 | |
|
766 | 766 | if repository.NARROW_REQUIREMENT in requirements: |
|
767 | 767 | options[b'enableellipsis'] = True |
|
768 | 768 | |
|
769 | 769 | return options |
|
770 | 770 | |
|
771 | 771 | def makemain(**kwargs): |
|
772 | 772 | """Produce a type conforming to ``ilocalrepositorymain``.""" |
|
773 | 773 | return localrepository |
|
774 | 774 | |
|
775 | 775 | @interfaceutil.implementer(repository.ilocalrepositoryfilestorage) |
|
776 | 776 | class revlogfilestorage(object): |
|
777 | 777 | """File storage when using revlogs.""" |
|
778 | 778 | |
|
779 | 779 | def file(self, path): |
|
780 | 780 | if path[0] == b'/': |
|
781 | 781 | path = path[1:] |
|
782 | 782 | |
|
783 | 783 | return filelog.filelog(self.svfs, path) |
|
784 | 784 | |
|
785 | 785 | @interfaceutil.implementer(repository.ilocalrepositoryfilestorage) |
|
786 | 786 | class revlognarrowfilestorage(object): |
|
787 | 787 | """File storage when using revlogs and narrow files.""" |
|
788 | 788 | |
|
789 | 789 | def file(self, path): |
|
790 | 790 | if path[0] == b'/': |
|
791 | 791 | path = path[1:] |
|
792 | 792 | |
|
793 | 793 | return filelog.narrowfilelog(self.svfs, path, self.narrowmatch()) |
|
794 | 794 | |
|
795 | 795 | def makefilestorage(requirements, features, **kwargs): |
|
796 | 796 | """Produce a type conforming to ``ilocalrepositoryfilestorage``.""" |
|
797 | 797 | features.add(repository.REPO_FEATURE_REVLOG_FILE_STORAGE) |
|
798 | 798 | |
|
799 | 799 | if repository.NARROW_REQUIREMENT in requirements: |
|
800 | 800 | return revlognarrowfilestorage |
|
801 | 801 | else: |
|
802 | 802 | return revlogfilestorage |
|
803 | 803 | |
|
804 | 804 | # List of repository interfaces and factory functions for them. Each |
|
805 | 805 | # will be called in order during ``makelocalrepository()`` to iteratively |
|
806 | 806 | # derive the final type for a local repository instance. We capture the |
|
807 | 807 | # function as a lambda so we don't hold a reference and the module-level |
|
808 | 808 | # functions can be wrapped. |
|
809 | 809 | REPO_INTERFACES = [ |
|
810 | 810 | (repository.ilocalrepositorymain, lambda: makemain), |
|
811 | 811 | (repository.ilocalrepositoryfilestorage, lambda: makefilestorage), |
|
812 | 812 | ] |
|
813 | 813 | |
|
814 | 814 | @interfaceutil.implementer(repository.ilocalrepositorymain) |
|
815 | 815 | class localrepository(object): |
|
816 | 816 | """Main class for representing local repositories. |
|
817 | 817 | |
|
818 | 818 | All local repositories are instances of this class. |
|
819 | 819 | |
|
820 | 820 | Constructed on its own, instances of this class are not usable as |
|
821 | 821 | repository objects. To obtain a usable repository object, call |
|
822 | 822 | ``hg.repository()``, ``localrepo.instance()``, or |
|
823 | 823 | ``localrepo.makelocalrepository()``. The latter is the lowest-level. |
|
824 | 824 | ``instance()`` adds support for creating new repositories. |
|
825 | 825 | ``hg.repository()`` adds more extension integration, including calling |
|
826 | 826 | ``reposetup()``. Generally speaking, ``hg.repository()`` should be |
|
827 | 827 | used. |
|
828 | 828 | """ |
|
829 | 829 | |
|
830 | 830 | # obsolete experimental requirements: |
|
831 | 831 | # - manifestv2: An experimental new manifest format that allowed |
|
832 | 832 | # for stem compression of long paths. Experiment ended up not |
|
833 | 833 | # being successful (repository sizes went up due to worse delta |
|
834 | 834 | # chains), and the code was deleted in 4.6. |
|
835 | 835 | supportedformats = { |
|
836 | 836 | 'revlogv1', |
|
837 | 837 | 'generaldelta', |
|
838 | 838 | 'treemanifest', |
|
839 | 839 | REVLOGV2_REQUIREMENT, |
|
840 | 840 | SPARSEREVLOG_REQUIREMENT, |
|
841 | 841 | } |
|
842 | 842 | _basesupported = supportedformats | { |
|
843 | 843 | 'store', |
|
844 | 844 | 'fncache', |
|
845 | 845 | 'shared', |
|
846 | 846 | 'relshared', |
|
847 | 847 | 'dotencode', |
|
848 | 848 | 'exp-sparse', |
|
849 | 849 | 'internal-phase' |
|
850 | 850 | } |
|
851 | 851 | |
|
852 | 852 | # list of prefix for file which can be written without 'wlock' |
|
853 | 853 | # Extensions should extend this list when needed |
|
854 | 854 | _wlockfreeprefix = { |
|
855 | 855 | # We migh consider requiring 'wlock' for the next |
|
856 | 856 | # two, but pretty much all the existing code assume |
|
857 | 857 | # wlock is not needed so we keep them excluded for |
|
858 | 858 | # now. |
|
859 | 859 | 'hgrc', |
|
860 | 860 | 'requires', |
|
861 | 861 | # XXX cache is a complicatged business someone |
|
862 | 862 | # should investigate this in depth at some point |
|
863 | 863 | 'cache/', |
|
864 | 864 | # XXX shouldn't be dirstate covered by the wlock? |
|
865 | 865 | 'dirstate', |
|
866 | 866 | # XXX bisect was still a bit too messy at the time |
|
867 | 867 | # this changeset was introduced. Someone should fix |
|
868 | 868 | # the remainig bit and drop this line |
|
869 | 869 | 'bisect.state', |
|
870 | 870 | } |
|
871 | 871 | |
|
872 | 872 | def __init__(self, baseui, ui, origroot, wdirvfs, hgvfs, requirements, |
|
873 | 873 | supportedrequirements, sharedpath, store, cachevfs, |
|
874 | 874 | features, intents=None): |
|
875 | 875 | """Create a new local repository instance. |
|
876 | 876 | |
|
877 | 877 | Most callers should use ``hg.repository()``, ``localrepo.instance()``, |
|
878 | 878 | or ``localrepo.makelocalrepository()`` for obtaining a new repository |
|
879 | 879 | object. |
|
880 | 880 | |
|
881 | 881 | Arguments: |
|
882 | 882 | |
|
883 | 883 | baseui |
|
884 | 884 | ``ui.ui`` instance that ``ui`` argument was based off of. |
|
885 | 885 | |
|
886 | 886 | ui |
|
887 | 887 | ``ui.ui`` instance for use by the repository. |
|
888 | 888 | |
|
889 | 889 | origroot |
|
890 | 890 | ``bytes`` path to working directory root of this repository. |
|
891 | 891 | |
|
892 | 892 | wdirvfs |
|
893 | 893 | ``vfs.vfs`` rooted at the working directory. |
|
894 | 894 | |
|
895 | 895 | hgvfs |
|
896 | 896 | ``vfs.vfs`` rooted at .hg/ |
|
897 | 897 | |
|
898 | 898 | requirements |
|
899 | 899 | ``set`` of bytestrings representing repository opening requirements. |
|
900 | 900 | |
|
901 | 901 | supportedrequirements |
|
902 | 902 | ``set`` of bytestrings representing repository requirements that we |
|
903 | 903 | know how to open. May be a supetset of ``requirements``. |
|
904 | 904 | |
|
905 | 905 | sharedpath |
|
906 | 906 | ``bytes`` Defining path to storage base directory. Points to a |
|
907 | 907 | ``.hg/`` directory somewhere. |
|
908 | 908 | |
|
909 | 909 | store |
|
910 | 910 | ``store.basicstore`` (or derived) instance providing access to |
|
911 | 911 | versioned storage. |
|
912 | 912 | |
|
913 | 913 | cachevfs |
|
914 | 914 | ``vfs.vfs`` used for cache files. |
|
915 | 915 | |
|
916 | 916 | features |
|
917 | 917 | ``set`` of bytestrings defining features/capabilities of this |
|
918 | 918 | instance. |
|
919 | 919 | |
|
920 | 920 | intents |
|
921 | 921 | ``set`` of system strings indicating what this repo will be used |
|
922 | 922 | for. |
|
923 | 923 | """ |
|
924 | 924 | self.baseui = baseui |
|
925 | 925 | self.ui = ui |
|
926 | 926 | self.origroot = origroot |
|
927 | 927 | # vfs rooted at working directory. |
|
928 | 928 | self.wvfs = wdirvfs |
|
929 | 929 | self.root = wdirvfs.base |
|
930 | 930 | # vfs rooted at .hg/. Used to access most non-store paths. |
|
931 | 931 | self.vfs = hgvfs |
|
932 | 932 | self.path = hgvfs.base |
|
933 | 933 | self.requirements = requirements |
|
934 | 934 | self.supported = supportedrequirements |
|
935 | 935 | self.sharedpath = sharedpath |
|
936 | 936 | self.store = store |
|
937 | 937 | self.cachevfs = cachevfs |
|
938 | 938 | self.features = features |
|
939 | 939 | |
|
940 | 940 | self.filtername = None |
|
941 | 941 | |
|
942 | 942 | if (self.ui.configbool('devel', 'all-warnings') or |
|
943 | 943 | self.ui.configbool('devel', 'check-locks')): |
|
944 | 944 | self.vfs.audit = self._getvfsward(self.vfs.audit) |
|
945 | 945 | # A list of callback to shape the phase if no data were found. |
|
946 | 946 | # Callback are in the form: func(repo, roots) --> processed root. |
|
947 | 947 | # This list it to be filled by extension during repo setup |
|
948 | 948 | self._phasedefaults = [] |
|
949 | 949 | |
|
950 | 950 | color.setup(self.ui) |
|
951 | 951 | |
|
952 | 952 | self.spath = self.store.path |
|
953 | 953 | self.svfs = self.store.vfs |
|
954 | 954 | self.sjoin = self.store.join |
|
955 | 955 | if (self.ui.configbool('devel', 'all-warnings') or |
|
956 | 956 | self.ui.configbool('devel', 'check-locks')): |
|
957 | 957 | if util.safehasattr(self.svfs, 'vfs'): # this is filtervfs |
|
958 | 958 | self.svfs.vfs.audit = self._getsvfsward(self.svfs.vfs.audit) |
|
959 | 959 | else: # standard vfs |
|
960 | 960 | self.svfs.audit = self._getsvfsward(self.svfs.audit) |
|
961 | 961 | |
|
962 | 962 | self._dirstatevalidatewarned = False |
|
963 | 963 | |
|
964 | 964 | self._branchcaches = {} |
|
965 | 965 | self._revbranchcache = None |
|
966 | 966 | self._filterpats = {} |
|
967 | 967 | self._datafilters = {} |
|
968 | 968 | self._transref = self._lockref = self._wlockref = None |
|
969 | 969 | |
|
970 | 970 | # A cache for various files under .hg/ that tracks file changes, |
|
971 | 971 | # (used by the filecache decorator) |
|
972 | 972 | # |
|
973 | 973 | # Maps a property name to its util.filecacheentry |
|
974 | 974 | self._filecache = {} |
|
975 | 975 | |
|
976 | 976 | # hold sets of revision to be filtered |
|
977 | 977 | # should be cleared when something might have changed the filter value: |
|
978 | 978 | # - new changesets, |
|
979 | 979 | # - phase change, |
|
980 | 980 | # - new obsolescence marker, |
|
981 | 981 | # - working directory parent change, |
|
982 | 982 | # - bookmark changes |
|
983 | 983 | self.filteredrevcache = {} |
|
984 | 984 | |
|
985 | 985 | # post-dirstate-status hooks |
|
986 | 986 | self._postdsstatus = [] |
|
987 | 987 | |
|
988 | 988 | # generic mapping between names and nodes |
|
989 | 989 | self.names = namespaces.namespaces() |
|
990 | 990 | |
|
991 | 991 | # Key to signature value. |
|
992 | 992 | self._sparsesignaturecache = {} |
|
993 | 993 | # Signature to cached matcher instance. |
|
994 | 994 | self._sparsematchercache = {} |
|
995 | 995 | |
|
996 | 996 | def _getvfsward(self, origfunc): |
|
997 | 997 | """build a ward for self.vfs""" |
|
998 | 998 | rref = weakref.ref(self) |
|
999 | 999 | def checkvfs(path, mode=None): |
|
1000 | 1000 | ret = origfunc(path, mode=mode) |
|
1001 | 1001 | repo = rref() |
|
1002 | 1002 | if (repo is None |
|
1003 | 1003 | or not util.safehasattr(repo, '_wlockref') |
|
1004 | 1004 | or not util.safehasattr(repo, '_lockref')): |
|
1005 | 1005 | return |
|
1006 | 1006 | if mode in (None, 'r', 'rb'): |
|
1007 | 1007 | return |
|
1008 | 1008 | if path.startswith(repo.path): |
|
1009 | 1009 | # truncate name relative to the repository (.hg) |
|
1010 | 1010 | path = path[len(repo.path) + 1:] |
|
1011 | 1011 | if path.startswith('cache/'): |
|
1012 | 1012 | msg = 'accessing cache with vfs instead of cachevfs: "%s"' |
|
1013 | 1013 | repo.ui.develwarn(msg % path, stacklevel=2, config="cache-vfs") |
|
1014 | 1014 | if path.startswith('journal.'): |
|
1015 | 1015 | # journal is covered by 'lock' |
|
1016 | 1016 | if repo._currentlock(repo._lockref) is None: |
|
1017 | 1017 | repo.ui.develwarn('write with no lock: "%s"' % path, |
|
1018 | 1018 | stacklevel=2, config='check-locks') |
|
1019 | 1019 | elif repo._currentlock(repo._wlockref) is None: |
|
1020 | 1020 | # rest of vfs files are covered by 'wlock' |
|
1021 | 1021 | # |
|
1022 | 1022 | # exclude special files |
|
1023 | 1023 | for prefix in self._wlockfreeprefix: |
|
1024 | 1024 | if path.startswith(prefix): |
|
1025 | 1025 | return |
|
1026 | 1026 | repo.ui.develwarn('write with no wlock: "%s"' % path, |
|
1027 | 1027 | stacklevel=2, config='check-locks') |
|
1028 | 1028 | return ret |
|
1029 | 1029 | return checkvfs |
|
1030 | 1030 | |
|
1031 | 1031 | def _getsvfsward(self, origfunc): |
|
1032 | 1032 | """build a ward for self.svfs""" |
|
1033 | 1033 | rref = weakref.ref(self) |
|
1034 | 1034 | def checksvfs(path, mode=None): |
|
1035 | 1035 | ret = origfunc(path, mode=mode) |
|
1036 | 1036 | repo = rref() |
|
1037 | 1037 | if repo is None or not util.safehasattr(repo, '_lockref'): |
|
1038 | 1038 | return |
|
1039 | 1039 | if mode in (None, 'r', 'rb'): |
|
1040 | 1040 | return |
|
1041 | 1041 | if path.startswith(repo.sharedpath): |
|
1042 | 1042 | # truncate name relative to the repository (.hg) |
|
1043 | 1043 | path = path[len(repo.sharedpath) + 1:] |
|
1044 | 1044 | if repo._currentlock(repo._lockref) is None: |
|
1045 | 1045 | repo.ui.develwarn('write with no lock: "%s"' % path, |
|
1046 | 1046 | stacklevel=3) |
|
1047 | 1047 | return ret |
|
1048 | 1048 | return checksvfs |
|
1049 | 1049 | |
|
1050 | 1050 | def close(self): |
|
1051 | 1051 | self._writecaches() |
|
1052 | 1052 | |
|
1053 | 1053 | def _writecaches(self): |
|
1054 | 1054 | if self._revbranchcache: |
|
1055 | 1055 | self._revbranchcache.write() |
|
1056 | 1056 | |
|
1057 | 1057 | def _restrictcapabilities(self, caps): |
|
1058 | 1058 | if self.ui.configbool('experimental', 'bundle2-advertise'): |
|
1059 | 1059 | caps = set(caps) |
|
1060 | 1060 | capsblob = bundle2.encodecaps(bundle2.getrepocaps(self, |
|
1061 | 1061 | role='client')) |
|
1062 | 1062 | caps.add('bundle2=' + urlreq.quote(capsblob)) |
|
1063 | 1063 | return caps |
|
1064 | 1064 | |
|
1065 | 1065 | def _writerequirements(self): |
|
1066 | 1066 | scmutil.writerequires(self.vfs, self.requirements) |
|
1067 | 1067 | |
|
1068 | 1068 | # Don't cache auditor/nofsauditor, or you'll end up with reference cycle: |
|
1069 | 1069 | # self -> auditor -> self._checknested -> self |
|
1070 | 1070 | |
|
1071 | 1071 | @property |
|
1072 | 1072 | def auditor(self): |
|
1073 | 1073 | # This is only used by context.workingctx.match in order to |
|
1074 | 1074 | # detect files in subrepos. |
|
1075 | 1075 | return pathutil.pathauditor(self.root, callback=self._checknested) |
|
1076 | 1076 | |
|
1077 | 1077 | @property |
|
1078 | 1078 | def nofsauditor(self): |
|
1079 | 1079 | # This is only used by context.basectx.match in order to detect |
|
1080 | 1080 | # files in subrepos. |
|
1081 | 1081 | return pathutil.pathauditor(self.root, callback=self._checknested, |
|
1082 | 1082 | realfs=False, cached=True) |
|
1083 | 1083 | |
|
1084 | 1084 | def _checknested(self, path): |
|
1085 | 1085 | """Determine if path is a legal nested repository.""" |
|
1086 | 1086 | if not path.startswith(self.root): |
|
1087 | 1087 | return False |
|
1088 | 1088 | subpath = path[len(self.root) + 1:] |
|
1089 | 1089 | normsubpath = util.pconvert(subpath) |
|
1090 | 1090 | |
|
1091 | 1091 | # XXX: Checking against the current working copy is wrong in |
|
1092 | 1092 | # the sense that it can reject things like |
|
1093 | 1093 | # |
|
1094 | 1094 | # $ hg cat -r 10 sub/x.txt |
|
1095 | 1095 | # |
|
1096 | 1096 | # if sub/ is no longer a subrepository in the working copy |
|
1097 | 1097 | # parent revision. |
|
1098 | 1098 | # |
|
1099 | 1099 | # However, it can of course also allow things that would have |
|
1100 | 1100 | # been rejected before, such as the above cat command if sub/ |
|
1101 | 1101 | # is a subrepository now, but was a normal directory before. |
|
1102 | 1102 | # The old path auditor would have rejected by mistake since it |
|
1103 | 1103 | # panics when it sees sub/.hg/. |
|
1104 | 1104 | # |
|
1105 | 1105 | # All in all, checking against the working copy seems sensible |
|
1106 | 1106 | # since we want to prevent access to nested repositories on |
|
1107 | 1107 | # the filesystem *now*. |
|
1108 | 1108 | ctx = self[None] |
|
1109 | 1109 | parts = util.splitpath(subpath) |
|
1110 | 1110 | while parts: |
|
1111 | 1111 | prefix = '/'.join(parts) |
|
1112 | 1112 | if prefix in ctx.substate: |
|
1113 | 1113 | if prefix == normsubpath: |
|
1114 | 1114 | return True |
|
1115 | 1115 | else: |
|
1116 | 1116 | sub = ctx.sub(prefix) |
|
1117 | 1117 | return sub.checknested(subpath[len(prefix) + 1:]) |
|
1118 | 1118 | else: |
|
1119 | 1119 | parts.pop() |
|
1120 | 1120 | return False |
|
1121 | 1121 | |
|
1122 | 1122 | def peer(self): |
|
1123 | 1123 | return localpeer(self) # not cached to avoid reference cycle |
|
1124 | 1124 | |
|
1125 | 1125 | def unfiltered(self): |
|
1126 | 1126 | """Return unfiltered version of the repository |
|
1127 | 1127 | |
|
1128 | 1128 | Intended to be overwritten by filtered repo.""" |
|
1129 | 1129 | return self |
|
1130 | 1130 | |
|
1131 | 1131 | def filtered(self, name, visibilityexceptions=None): |
|
1132 | 1132 | """Return a filtered version of a repository""" |
|
1133 | 1133 | cls = repoview.newtype(self.unfiltered().__class__) |
|
1134 | 1134 | return cls(self, name, visibilityexceptions) |
|
1135 | 1135 | |
|
1136 | 1136 | @repofilecache('bookmarks', 'bookmarks.current') |
|
1137 | 1137 | def _bookmarks(self): |
|
1138 | 1138 | return bookmarks.bmstore(self) |
|
1139 | 1139 | |
|
1140 | 1140 | @property |
|
1141 | 1141 | def _activebookmark(self): |
|
1142 | 1142 | return self._bookmarks.active |
|
1143 | 1143 | |
|
1144 | 1144 | # _phasesets depend on changelog. what we need is to call |
|
1145 | 1145 | # _phasecache.invalidate() if '00changelog.i' was changed, but it |
|
1146 | 1146 | # can't be easily expressed in filecache mechanism. |
|
1147 | 1147 | @storecache('phaseroots', '00changelog.i') |
|
1148 | 1148 | def _phasecache(self): |
|
1149 | 1149 | return phases.phasecache(self, self._phasedefaults) |
|
1150 | 1150 | |
|
1151 | 1151 | @storecache('obsstore') |
|
1152 | 1152 | def obsstore(self): |
|
1153 | 1153 | return obsolete.makestore(self.ui, self) |
|
1154 | 1154 | |
|
1155 | 1155 | @storecache('00changelog.i') |
|
1156 | 1156 | def changelog(self): |
|
1157 | 1157 | return changelog.changelog(self.svfs, |
|
1158 | 1158 | trypending=txnutil.mayhavepending(self.root)) |
|
1159 | 1159 | |
|
1160 | 1160 | @storecache('00manifest.i') |
|
1161 | 1161 | def manifestlog(self): |
|
1162 | 1162 | rootstore = manifest.manifestrevlog(self.svfs) |
|
1163 | 1163 | return manifest.manifestlog(self.svfs, self, rootstore) |
|
1164 | 1164 | |
|
1165 | 1165 | @repofilecache('dirstate') |
|
1166 | 1166 | def dirstate(self): |
|
1167 | 1167 | return self._makedirstate() |
|
1168 | 1168 | |
|
1169 | 1169 | def _makedirstate(self): |
|
1170 | 1170 | """Extension point for wrapping the dirstate per-repo.""" |
|
1171 | 1171 | sparsematchfn = lambda: sparse.matcher(self) |
|
1172 | 1172 | |
|
1173 | 1173 | return dirstate.dirstate(self.vfs, self.ui, self.root, |
|
1174 | 1174 | self._dirstatevalidate, sparsematchfn) |
|
1175 | 1175 | |
|
1176 | 1176 | def _dirstatevalidate(self, node): |
|
1177 | 1177 | try: |
|
1178 | 1178 | self.changelog.rev(node) |
|
1179 | 1179 | return node |
|
1180 | 1180 | except error.LookupError: |
|
1181 | 1181 | if not self._dirstatevalidatewarned: |
|
1182 | 1182 | self._dirstatevalidatewarned = True |
|
1183 | 1183 | self.ui.warn(_("warning: ignoring unknown" |
|
1184 | 1184 | " working parent %s!\n") % short(node)) |
|
1185 | 1185 | return nullid |
|
1186 | 1186 | |
|
1187 | 1187 | @storecache(narrowspec.FILENAME) |
|
1188 | 1188 | def narrowpats(self): |
|
1189 | 1189 | """matcher patterns for this repository's narrowspec |
|
1190 | 1190 | |
|
1191 | 1191 | A tuple of (includes, excludes). |
|
1192 | 1192 | """ |
|
1193 | 1193 | return narrowspec.load(self) |
|
1194 | 1194 | |
|
1195 | 1195 | @storecache(narrowspec.FILENAME) |
|
1196 | 1196 | def _narrowmatch(self): |
|
1197 | 1197 | if repository.NARROW_REQUIREMENT not in self.requirements: |
|
1198 | 1198 | return matchmod.always(self.root, '') |
|
1199 | 1199 | include, exclude = self.narrowpats |
|
1200 | 1200 | return narrowspec.match(self.root, include=include, exclude=exclude) |
|
1201 | 1201 | |
|
1202 | 1202 | # TODO(martinvonz): make this property-like instead? |
|
1203 | 1203 | def narrowmatch(self): |
|
1204 | 1204 | return self._narrowmatch |
|
1205 | 1205 | |
|
1206 | 1206 | def setnarrowpats(self, newincludes, newexcludes): |
|
1207 | 1207 | narrowspec.save(self, newincludes, newexcludes) |
|
1208 | 1208 | self.invalidate(clearfilecache=True) |
|
1209 | 1209 | |
|
1210 | 1210 | def __getitem__(self, changeid): |
|
1211 | 1211 | if changeid is None: |
|
1212 | 1212 | return context.workingctx(self) |
|
1213 | 1213 | if isinstance(changeid, context.basectx): |
|
1214 | 1214 | return changeid |
|
1215 | 1215 | if isinstance(changeid, slice): |
|
1216 | 1216 | # wdirrev isn't contiguous so the slice shouldn't include it |
|
1217 | 1217 | return [self[i] |
|
1218 | 1218 | for i in pycompat.xrange(*changeid.indices(len(self))) |
|
1219 | 1219 | if i not in self.changelog.filteredrevs] |
|
1220 | 1220 | try: |
|
1221 | 1221 | if isinstance(changeid, int): |
|
1222 | 1222 | node = self.changelog.node(changeid) |
|
1223 | 1223 | rev = changeid |
|
1224 | 1224 | return context.changectx(self, rev, node) |
|
1225 | 1225 | elif changeid == 'null': |
|
1226 | 1226 | node = nullid |
|
1227 | 1227 | rev = nullrev |
|
1228 | 1228 | return context.changectx(self, rev, node) |
|
1229 | 1229 | elif changeid == 'tip': |
|
1230 | 1230 | node = self.changelog.tip() |
|
1231 | 1231 | rev = self.changelog.rev(node) |
|
1232 | 1232 | return context.changectx(self, rev, node) |
|
1233 | 1233 | elif changeid == '.': |
|
1234 | 1234 | # this is a hack to delay/avoid loading obsmarkers |
|
1235 | 1235 | # when we know that '.' won't be hidden |
|
1236 | 1236 | node = self.dirstate.p1() |
|
1237 | 1237 | rev = self.unfiltered().changelog.rev(node) |
|
1238 | 1238 | return context.changectx(self, rev, node) |
|
1239 | 1239 | elif len(changeid) == 20: |
|
1240 | 1240 | try: |
|
1241 | 1241 | node = changeid |
|
1242 | 1242 | rev = self.changelog.rev(changeid) |
|
1243 | 1243 | return context.changectx(self, rev, node) |
|
1244 | 1244 | except error.FilteredLookupError: |
|
1245 | 1245 | changeid = hex(changeid) # for the error message |
|
1246 | 1246 | raise |
|
1247 | 1247 | except LookupError: |
|
1248 | 1248 | # check if it might have come from damaged dirstate |
|
1249 | 1249 | # |
|
1250 | 1250 | # XXX we could avoid the unfiltered if we had a recognizable |
|
1251 | 1251 | # exception for filtered changeset access |
|
1252 | 1252 | if (self.local() |
|
1253 | 1253 | and changeid in self.unfiltered().dirstate.parents()): |
|
1254 | 1254 | msg = _("working directory has unknown parent '%s'!") |
|
1255 | 1255 | raise error.Abort(msg % short(changeid)) |
|
1256 | 1256 | changeid = hex(changeid) # for the error message |
|
1257 | 1257 | |
|
1258 | 1258 | elif len(changeid) == 40: |
|
1259 | 1259 | try: |
|
1260 | 1260 | node = bin(changeid) |
|
1261 | 1261 | rev = self.changelog.rev(node) |
|
1262 | 1262 | return context.changectx(self, rev, node) |
|
1263 | 1263 | except error.FilteredLookupError: |
|
1264 | 1264 | raise |
|
1265 | 1265 | except LookupError: |
|
1266 | 1266 | pass |
|
1267 | 1267 | else: |
|
1268 | 1268 | raise error.ProgrammingError( |
|
1269 | 1269 | "unsupported changeid '%s' of type %s" % |
|
1270 | 1270 | (changeid, type(changeid))) |
|
1271 | 1271 | |
|
1272 | 1272 | except (error.FilteredIndexError, error.FilteredLookupError): |
|
1273 | 1273 | raise error.FilteredRepoLookupError(_("filtered revision '%s'") |
|
1274 | 1274 | % pycompat.bytestr(changeid)) |
|
1275 | 1275 | except IndexError: |
|
1276 | 1276 | pass |
|
1277 | 1277 | except error.WdirUnsupported: |
|
1278 | 1278 | return context.workingctx(self) |
|
1279 | 1279 | raise error.RepoLookupError( |
|
1280 | 1280 | _("unknown revision '%s'") % changeid) |
|
1281 | 1281 | |
|
1282 | 1282 | def __contains__(self, changeid): |
|
1283 | 1283 | """True if the given changeid exists |
|
1284 | 1284 | |
|
1285 | 1285 | error.AmbiguousPrefixLookupError is raised if an ambiguous node |
|
1286 | 1286 | specified. |
|
1287 | 1287 | """ |
|
1288 | 1288 | try: |
|
1289 | 1289 | self[changeid] |
|
1290 | 1290 | return True |
|
1291 | 1291 | except error.RepoLookupError: |
|
1292 | 1292 | return False |
|
1293 | 1293 | |
|
1294 | 1294 | def __nonzero__(self): |
|
1295 | 1295 | return True |
|
1296 | 1296 | |
|
1297 | 1297 | __bool__ = __nonzero__ |
|
1298 | 1298 | |
|
1299 | 1299 | def __len__(self): |
|
1300 | 1300 | # no need to pay the cost of repoview.changelog |
|
1301 | 1301 | unfi = self.unfiltered() |
|
1302 | 1302 | return len(unfi.changelog) |
|
1303 | 1303 | |
|
1304 | 1304 | def __iter__(self): |
|
1305 | 1305 | return iter(self.changelog) |
|
1306 | 1306 | |
|
1307 | 1307 | def revs(self, expr, *args): |
|
1308 | 1308 | '''Find revisions matching a revset. |
|
1309 | 1309 | |
|
1310 | 1310 | The revset is specified as a string ``expr`` that may contain |
|
1311 | 1311 | %-formatting to escape certain types. See ``revsetlang.formatspec``. |
|
1312 | 1312 | |
|
1313 | 1313 | Revset aliases from the configuration are not expanded. To expand |
|
1314 | 1314 | user aliases, consider calling ``scmutil.revrange()`` or |
|
1315 | 1315 | ``repo.anyrevs([expr], user=True)``. |
|
1316 | 1316 | |
|
1317 | 1317 | Returns a revset.abstractsmartset, which is a list-like interface |
|
1318 | 1318 | that contains integer revisions. |
|
1319 | 1319 | ''' |
|
1320 | 1320 | expr = revsetlang.formatspec(expr, *args) |
|
1321 | 1321 | m = revset.match(None, expr) |
|
1322 | 1322 | return m(self) |
|
1323 | 1323 | |
|
1324 | 1324 | def set(self, expr, *args): |
|
1325 | 1325 | '''Find revisions matching a revset and emit changectx instances. |
|
1326 | 1326 | |
|
1327 | 1327 | This is a convenience wrapper around ``revs()`` that iterates the |
|
1328 | 1328 | result and is a generator of changectx instances. |
|
1329 | 1329 | |
|
1330 | 1330 | Revset aliases from the configuration are not expanded. To expand |
|
1331 | 1331 | user aliases, consider calling ``scmutil.revrange()``. |
|
1332 | 1332 | ''' |
|
1333 | 1333 | for r in self.revs(expr, *args): |
|
1334 | 1334 | yield self[r] |
|
1335 | 1335 | |
|
1336 | 1336 | def anyrevs(self, specs, user=False, localalias=None): |
|
1337 | 1337 | '''Find revisions matching one of the given revsets. |
|
1338 | 1338 | |
|
1339 | 1339 | Revset aliases from the configuration are not expanded by default. To |
|
1340 | 1340 | expand user aliases, specify ``user=True``. To provide some local |
|
1341 | 1341 | definitions overriding user aliases, set ``localalias`` to |
|
1342 | 1342 | ``{name: definitionstring}``. |
|
1343 | 1343 | ''' |
|
1344 | 1344 | if user: |
|
1345 | 1345 | m = revset.matchany(self.ui, specs, |
|
1346 | 1346 | lookup=revset.lookupfn(self), |
|
1347 | 1347 | localalias=localalias) |
|
1348 | 1348 | else: |
|
1349 | 1349 | m = revset.matchany(None, specs, localalias=localalias) |
|
1350 | 1350 | return m(self) |
|
1351 | 1351 | |
|
1352 | 1352 | def url(self): |
|
1353 | 1353 | return 'file:' + self.root |
|
1354 | 1354 | |
|
1355 | 1355 | def hook(self, name, throw=False, **args): |
|
1356 | 1356 | """Call a hook, passing this repo instance. |
|
1357 | 1357 | |
|
1358 | 1358 | This a convenience method to aid invoking hooks. Extensions likely |
|
1359 | 1359 | won't call this unless they have registered a custom hook or are |
|
1360 | 1360 | replacing code that is expected to call a hook. |
|
1361 | 1361 | """ |
|
1362 | 1362 | return hook.hook(self.ui, self, name, throw, **args) |
|
1363 | 1363 | |
|
1364 | 1364 | @filteredpropertycache |
|
1365 | 1365 | def _tagscache(self): |
|
1366 | 1366 | '''Returns a tagscache object that contains various tags related |
|
1367 | 1367 | caches.''' |
|
1368 | 1368 | |
|
1369 | 1369 | # This simplifies its cache management by having one decorated |
|
1370 | 1370 | # function (this one) and the rest simply fetch things from it. |
|
1371 | 1371 | class tagscache(object): |
|
1372 | 1372 | def __init__(self): |
|
1373 | 1373 | # These two define the set of tags for this repository. tags |
|
1374 | 1374 | # maps tag name to node; tagtypes maps tag name to 'global' or |
|
1375 | 1375 | # 'local'. (Global tags are defined by .hgtags across all |
|
1376 | 1376 | # heads, and local tags are defined in .hg/localtags.) |
|
1377 | 1377 | # They constitute the in-memory cache of tags. |
|
1378 | 1378 | self.tags = self.tagtypes = None |
|
1379 | 1379 | |
|
1380 | 1380 | self.nodetagscache = self.tagslist = None |
|
1381 | 1381 | |
|
1382 | 1382 | cache = tagscache() |
|
1383 | 1383 | cache.tags, cache.tagtypes = self._findtags() |
|
1384 | 1384 | |
|
1385 | 1385 | return cache |
|
1386 | 1386 | |
|
1387 | 1387 | def tags(self): |
|
1388 | 1388 | '''return a mapping of tag to node''' |
|
1389 | 1389 | t = {} |
|
1390 | 1390 | if self.changelog.filteredrevs: |
|
1391 | 1391 | tags, tt = self._findtags() |
|
1392 | 1392 | else: |
|
1393 | 1393 | tags = self._tagscache.tags |
|
1394 | 1394 | for k, v in tags.iteritems(): |
|
1395 | 1395 | try: |
|
1396 | 1396 | # ignore tags to unknown nodes |
|
1397 | 1397 | self.changelog.rev(v) |
|
1398 | 1398 | t[k] = v |
|
1399 | 1399 | except (error.LookupError, ValueError): |
|
1400 | 1400 | pass |
|
1401 | 1401 | return t |
|
1402 | 1402 | |
|
1403 | 1403 | def _findtags(self): |
|
1404 | 1404 | '''Do the hard work of finding tags. Return a pair of dicts |
|
1405 | 1405 | (tags, tagtypes) where tags maps tag name to node, and tagtypes |
|
1406 | 1406 | maps tag name to a string like \'global\' or \'local\'. |
|
1407 | 1407 | Subclasses or extensions are free to add their own tags, but |
|
1408 | 1408 | should be aware that the returned dicts will be retained for the |
|
1409 | 1409 | duration of the localrepo object.''' |
|
1410 | 1410 | |
|
1411 | 1411 | # XXX what tagtype should subclasses/extensions use? Currently |
|
1412 | 1412 | # mq and bookmarks add tags, but do not set the tagtype at all. |
|
1413 | 1413 | # Should each extension invent its own tag type? Should there |
|
1414 | 1414 | # be one tagtype for all such "virtual" tags? Or is the status |
|
1415 | 1415 | # quo fine? |
|
1416 | 1416 | |
|
1417 | 1417 | |
|
1418 | 1418 | # map tag name to (node, hist) |
|
1419 | 1419 | alltags = tagsmod.findglobaltags(self.ui, self) |
|
1420 | 1420 | # map tag name to tag type |
|
1421 | 1421 | tagtypes = dict((tag, 'global') for tag in alltags) |
|
1422 | 1422 | |
|
1423 | 1423 | tagsmod.readlocaltags(self.ui, self, alltags, tagtypes) |
|
1424 | 1424 | |
|
1425 | 1425 | # Build the return dicts. Have to re-encode tag names because |
|
1426 | 1426 | # the tags module always uses UTF-8 (in order not to lose info |
|
1427 | 1427 | # writing to the cache), but the rest of Mercurial wants them in |
|
1428 | 1428 | # local encoding. |
|
1429 | 1429 | tags = {} |
|
1430 | 1430 | for (name, (node, hist)) in alltags.iteritems(): |
|
1431 | 1431 | if node != nullid: |
|
1432 | 1432 | tags[encoding.tolocal(name)] = node |
|
1433 | 1433 | tags['tip'] = self.changelog.tip() |
|
1434 | 1434 | tagtypes = dict([(encoding.tolocal(name), value) |
|
1435 | 1435 | for (name, value) in tagtypes.iteritems()]) |
|
1436 | 1436 | return (tags, tagtypes) |
|
1437 | 1437 | |
|
1438 | 1438 | def tagtype(self, tagname): |
|
1439 | 1439 | ''' |
|
1440 | 1440 | return the type of the given tag. result can be: |
|
1441 | 1441 | |
|
1442 | 1442 | 'local' : a local tag |
|
1443 | 1443 | 'global' : a global tag |
|
1444 | 1444 | None : tag does not exist |
|
1445 | 1445 | ''' |
|
1446 | 1446 | |
|
1447 | 1447 | return self._tagscache.tagtypes.get(tagname) |
|
1448 | 1448 | |
|
1449 | 1449 | def tagslist(self): |
|
1450 | 1450 | '''return a list of tags ordered by revision''' |
|
1451 | 1451 | if not self._tagscache.tagslist: |
|
1452 | 1452 | l = [] |
|
1453 | 1453 | for t, n in self.tags().iteritems(): |
|
1454 | 1454 | l.append((self.changelog.rev(n), t, n)) |
|
1455 | 1455 | self._tagscache.tagslist = [(t, n) for r, t, n in sorted(l)] |
|
1456 | 1456 | |
|
1457 | 1457 | return self._tagscache.tagslist |
|
1458 | 1458 | |
|
1459 | 1459 | def nodetags(self, node): |
|
1460 | 1460 | '''return the tags associated with a node''' |
|
1461 | 1461 | if not self._tagscache.nodetagscache: |
|
1462 | 1462 | nodetagscache = {} |
|
1463 | 1463 | for t, n in self._tagscache.tags.iteritems(): |
|
1464 | 1464 | nodetagscache.setdefault(n, []).append(t) |
|
1465 | 1465 | for tags in nodetagscache.itervalues(): |
|
1466 | 1466 | tags.sort() |
|
1467 | 1467 | self._tagscache.nodetagscache = nodetagscache |
|
1468 | 1468 | return self._tagscache.nodetagscache.get(node, []) |
|
1469 | 1469 | |
|
1470 | 1470 | def nodebookmarks(self, node): |
|
1471 | 1471 | """return the list of bookmarks pointing to the specified node""" |
|
1472 | 1472 | return self._bookmarks.names(node) |
|
1473 | 1473 | |
|
1474 | 1474 | def branchmap(self): |
|
1475 | 1475 | '''returns a dictionary {branch: [branchheads]} with branchheads |
|
1476 | 1476 | ordered by increasing revision number''' |
|
1477 | 1477 | branchmap.updatecache(self) |
|
1478 | 1478 | return self._branchcaches[self.filtername] |
|
1479 | 1479 | |
|
1480 | 1480 | @unfilteredmethod |
|
1481 | 1481 | def revbranchcache(self): |
|
1482 | 1482 | if not self._revbranchcache: |
|
1483 | 1483 | self._revbranchcache = branchmap.revbranchcache(self.unfiltered()) |
|
1484 | 1484 | return self._revbranchcache |
|
1485 | 1485 | |
|
1486 | 1486 | def branchtip(self, branch, ignoremissing=False): |
|
1487 | 1487 | '''return the tip node for a given branch |
|
1488 | 1488 | |
|
1489 | 1489 | If ignoremissing is True, then this method will not raise an error. |
|
1490 | 1490 | This is helpful for callers that only expect None for a missing branch |
|
1491 | 1491 | (e.g. namespace). |
|
1492 | 1492 | |
|
1493 | 1493 | ''' |
|
1494 | 1494 | try: |
|
1495 | 1495 | return self.branchmap().branchtip(branch) |
|
1496 | 1496 | except KeyError: |
|
1497 | 1497 | if not ignoremissing: |
|
1498 | 1498 | raise error.RepoLookupError(_("unknown branch '%s'") % branch) |
|
1499 | 1499 | else: |
|
1500 | 1500 | pass |
|
1501 | 1501 | |
|
1502 | 1502 | def lookup(self, key): |
|
1503 | 1503 | return scmutil.revsymbol(self, key).node() |
|
1504 | 1504 | |
|
1505 | 1505 | def lookupbranch(self, key): |
|
1506 | 1506 | if key in self.branchmap(): |
|
1507 | 1507 | return key |
|
1508 | 1508 | |
|
1509 | 1509 | return scmutil.revsymbol(self, key).branch() |
|
1510 | 1510 | |
|
1511 | 1511 | def known(self, nodes): |
|
1512 | 1512 | cl = self.changelog |
|
1513 | 1513 | nm = cl.nodemap |
|
1514 | 1514 | filtered = cl.filteredrevs |
|
1515 | 1515 | result = [] |
|
1516 | 1516 | for n in nodes: |
|
1517 | 1517 | r = nm.get(n) |
|
1518 | 1518 | resp = not (r is None or r in filtered) |
|
1519 | 1519 | result.append(resp) |
|
1520 | 1520 | return result |
|
1521 | 1521 | |
|
1522 | 1522 | def local(self): |
|
1523 | 1523 | return self |
|
1524 | 1524 | |
|
1525 | 1525 | def publishing(self): |
|
1526 | 1526 | # it's safe (and desirable) to trust the publish flag unconditionally |
|
1527 | 1527 | # so that we don't finalize changes shared between users via ssh or nfs |
|
1528 | 1528 | return self.ui.configbool('phases', 'publish', untrusted=True) |
|
1529 | 1529 | |
|
1530 | 1530 | def cancopy(self): |
|
1531 | 1531 | # so statichttprepo's override of local() works |
|
1532 | 1532 | if not self.local(): |
|
1533 | 1533 | return False |
|
1534 | 1534 | if not self.publishing(): |
|
1535 | 1535 | return True |
|
1536 | 1536 | # if publishing we can't copy if there is filtered content |
|
1537 | 1537 | return not self.filtered('visible').changelog.filteredrevs |
|
1538 | 1538 | |
|
1539 | 1539 | def shared(self): |
|
1540 | 1540 | '''the type of shared repository (None if not shared)''' |
|
1541 | 1541 | if self.sharedpath != self.path: |
|
1542 | 1542 | return 'store' |
|
1543 | 1543 | return None |
|
1544 | 1544 | |
|
1545 | 1545 | def wjoin(self, f, *insidef): |
|
1546 | 1546 | return self.vfs.reljoin(self.root, f, *insidef) |
|
1547 | 1547 | |
|
1548 | 1548 | def setparents(self, p1, p2=nullid): |
|
1549 | 1549 | with self.dirstate.parentchange(): |
|
1550 | 1550 | copies = self.dirstate.setparents(p1, p2) |
|
1551 | 1551 | pctx = self[p1] |
|
1552 | 1552 | if copies: |
|
1553 | 1553 | # Adjust copy records, the dirstate cannot do it, it |
|
1554 | 1554 | # requires access to parents manifests. Preserve them |
|
1555 | 1555 | # only for entries added to first parent. |
|
1556 | 1556 | for f in copies: |
|
1557 | 1557 | if f not in pctx and copies[f] in pctx: |
|
1558 | 1558 | self.dirstate.copy(copies[f], f) |
|
1559 | 1559 | if p2 == nullid: |
|
1560 | 1560 | for f, s in sorted(self.dirstate.copies().items()): |
|
1561 | 1561 | if f not in pctx and s not in pctx: |
|
1562 | 1562 | self.dirstate.copy(None, f) |
|
1563 | 1563 | |
|
1564 | 1564 | def filectx(self, path, changeid=None, fileid=None, changectx=None): |
|
1565 | 1565 | """changeid can be a changeset revision, node, or tag. |
|
1566 | 1566 | fileid can be a file revision or node.""" |
|
1567 | 1567 | return context.filectx(self, path, changeid, fileid, |
|
1568 | 1568 | changectx=changectx) |
|
1569 | 1569 | |
|
1570 | 1570 | def getcwd(self): |
|
1571 | 1571 | return self.dirstate.getcwd() |
|
1572 | 1572 | |
|
1573 | 1573 | def pathto(self, f, cwd=None): |
|
1574 | 1574 | return self.dirstate.pathto(f, cwd) |
|
1575 | 1575 | |
|
1576 | 1576 | def _loadfilter(self, filter): |
|
1577 | 1577 | if filter not in self._filterpats: |
|
1578 | 1578 | l = [] |
|
1579 | 1579 | for pat, cmd in self.ui.configitems(filter): |
|
1580 | 1580 | if cmd == '!': |
|
1581 | 1581 | continue |
|
1582 | 1582 | mf = matchmod.match(self.root, '', [pat]) |
|
1583 | 1583 | fn = None |
|
1584 | 1584 | params = cmd |
|
1585 | 1585 | for name, filterfn in self._datafilters.iteritems(): |
|
1586 | 1586 | if cmd.startswith(name): |
|
1587 | 1587 | fn = filterfn |
|
1588 | 1588 | params = cmd[len(name):].lstrip() |
|
1589 | 1589 | break |
|
1590 | 1590 | if not fn: |
|
1591 | 1591 | fn = lambda s, c, **kwargs: procutil.filter(s, c) |
|
1592 | 1592 | # Wrap old filters not supporting keyword arguments |
|
1593 | 1593 | if not pycompat.getargspec(fn)[2]: |
|
1594 | 1594 | oldfn = fn |
|
1595 | 1595 | fn = lambda s, c, **kwargs: oldfn(s, c) |
|
1596 | 1596 | l.append((mf, fn, params)) |
|
1597 | 1597 | self._filterpats[filter] = l |
|
1598 | 1598 | return self._filterpats[filter] |
|
1599 | 1599 | |
|
1600 | 1600 | def _filter(self, filterpats, filename, data): |
|
1601 | 1601 | for mf, fn, cmd in filterpats: |
|
1602 | 1602 | if mf(filename): |
|
1603 | 1603 | self.ui.debug("filtering %s through %s\n" % (filename, cmd)) |
|
1604 | 1604 | data = fn(data, cmd, ui=self.ui, repo=self, filename=filename) |
|
1605 | 1605 | break |
|
1606 | 1606 | |
|
1607 | 1607 | return data |
|
1608 | 1608 | |
|
1609 | 1609 | @unfilteredpropertycache |
|
1610 | 1610 | def _encodefilterpats(self): |
|
1611 | 1611 | return self._loadfilter('encode') |
|
1612 | 1612 | |
|
1613 | 1613 | @unfilteredpropertycache |
|
1614 | 1614 | def _decodefilterpats(self): |
|
1615 | 1615 | return self._loadfilter('decode') |
|
1616 | 1616 | |
|
1617 | 1617 | def adddatafilter(self, name, filter): |
|
1618 | 1618 | self._datafilters[name] = filter |
|
1619 | 1619 | |
|
1620 | 1620 | def wread(self, filename): |
|
1621 | 1621 | if self.wvfs.islink(filename): |
|
1622 | 1622 | data = self.wvfs.readlink(filename) |
|
1623 | 1623 | else: |
|
1624 | 1624 | data = self.wvfs.read(filename) |
|
1625 | 1625 | return self._filter(self._encodefilterpats, filename, data) |
|
1626 | 1626 | |
|
1627 | 1627 | def wwrite(self, filename, data, flags, backgroundclose=False, **kwargs): |
|
1628 | 1628 | """write ``data`` into ``filename`` in the working directory |
|
1629 | 1629 | |
|
1630 | 1630 | This returns length of written (maybe decoded) data. |
|
1631 | 1631 | """ |
|
1632 | 1632 | data = self._filter(self._decodefilterpats, filename, data) |
|
1633 | 1633 | if 'l' in flags: |
|
1634 | 1634 | self.wvfs.symlink(data, filename) |
|
1635 | 1635 | else: |
|
1636 | 1636 | self.wvfs.write(filename, data, backgroundclose=backgroundclose, |
|
1637 | 1637 | **kwargs) |
|
1638 | 1638 | if 'x' in flags: |
|
1639 | 1639 | self.wvfs.setflags(filename, False, True) |
|
1640 | 1640 | else: |
|
1641 | 1641 | self.wvfs.setflags(filename, False, False) |
|
1642 | 1642 | return len(data) |
|
1643 | 1643 | |
|
1644 | 1644 | def wwritedata(self, filename, data): |
|
1645 | 1645 | return self._filter(self._decodefilterpats, filename, data) |
|
1646 | 1646 | |
|
1647 | 1647 | def currenttransaction(self): |
|
1648 | 1648 | """return the current transaction or None if non exists""" |
|
1649 | 1649 | if self._transref: |
|
1650 | 1650 | tr = self._transref() |
|
1651 | 1651 | else: |
|
1652 | 1652 | tr = None |
|
1653 | 1653 | |
|
1654 | 1654 | if tr and tr.running(): |
|
1655 | 1655 | return tr |
|
1656 | 1656 | return None |
|
1657 | 1657 | |
|
1658 | 1658 | def transaction(self, desc, report=None): |
|
1659 | 1659 | if (self.ui.configbool('devel', 'all-warnings') |
|
1660 | 1660 | or self.ui.configbool('devel', 'check-locks')): |
|
1661 | 1661 | if self._currentlock(self._lockref) is None: |
|
1662 | 1662 | raise error.ProgrammingError('transaction requires locking') |
|
1663 | 1663 | tr = self.currenttransaction() |
|
1664 | 1664 | if tr is not None: |
|
1665 | 1665 | return tr.nest(name=desc) |
|
1666 | 1666 | |
|
1667 | 1667 | # abort here if the journal already exists |
|
1668 | 1668 | if self.svfs.exists("journal"): |
|
1669 | 1669 | raise error.RepoError( |
|
1670 | 1670 | _("abandoned transaction found"), |
|
1671 | 1671 | hint=_("run 'hg recover' to clean up transaction")) |
|
1672 | 1672 | |
|
1673 | 1673 | idbase = "%.40f#%f" % (random.random(), time.time()) |
|
1674 | 1674 | ha = hex(hashlib.sha1(idbase).digest()) |
|
1675 | 1675 | txnid = 'TXN:' + ha |
|
1676 | 1676 | self.hook('pretxnopen', throw=True, txnname=desc, txnid=txnid) |
|
1677 | 1677 | |
|
1678 | 1678 | self._writejournal(desc) |
|
1679 | 1679 | renames = [(vfs, x, undoname(x)) for vfs, x in self._journalfiles()] |
|
1680 | 1680 | if report: |
|
1681 | 1681 | rp = report |
|
1682 | 1682 | else: |
|
1683 | 1683 | rp = self.ui.warn |
|
1684 | 1684 | vfsmap = {'plain': self.vfs} # root of .hg/ |
|
1685 | 1685 | # we must avoid cyclic reference between repo and transaction. |
|
1686 | 1686 | reporef = weakref.ref(self) |
|
1687 | 1687 | # Code to track tag movement |
|
1688 | 1688 | # |
|
1689 | 1689 | # Since tags are all handled as file content, it is actually quite hard |
|
1690 | 1690 | # to track these movement from a code perspective. So we fallback to a |
|
1691 | 1691 | # tracking at the repository level. One could envision to track changes |
|
1692 | 1692 | # to the '.hgtags' file through changegroup apply but that fails to |
|
1693 | 1693 | # cope with case where transaction expose new heads without changegroup |
|
1694 | 1694 | # being involved (eg: phase movement). |
|
1695 | 1695 | # |
|
1696 | 1696 | # For now, We gate the feature behind a flag since this likely comes |
|
1697 | 1697 | # with performance impacts. The current code run more often than needed |
|
1698 | 1698 | # and do not use caches as much as it could. The current focus is on |
|
1699 | 1699 | # the behavior of the feature so we disable it by default. The flag |
|
1700 | 1700 | # will be removed when we are happy with the performance impact. |
|
1701 | 1701 | # |
|
1702 | 1702 | # Once this feature is no longer experimental move the following |
|
1703 | 1703 | # documentation to the appropriate help section: |
|
1704 | 1704 | # |
|
1705 | 1705 | # The ``HG_TAG_MOVED`` variable will be set if the transaction touched |
|
1706 | 1706 | # tags (new or changed or deleted tags). In addition the details of |
|
1707 | 1707 | # these changes are made available in a file at: |
|
1708 | 1708 | # ``REPOROOT/.hg/changes/tags.changes``. |
|
1709 | 1709 | # Make sure you check for HG_TAG_MOVED before reading that file as it |
|
1710 | 1710 | # might exist from a previous transaction even if no tag were touched |
|
1711 | 1711 | # in this one. Changes are recorded in a line base format:: |
|
1712 | 1712 | # |
|
1713 | 1713 | # <action> <hex-node> <tag-name>\n |
|
1714 | 1714 | # |
|
1715 | 1715 | # Actions are defined as follow: |
|
1716 | 1716 | # "-R": tag is removed, |
|
1717 | 1717 | # "+A": tag is added, |
|
1718 | 1718 | # "-M": tag is moved (old value), |
|
1719 | 1719 | # "+M": tag is moved (new value), |
|
1720 | 1720 | tracktags = lambda x: None |
|
1721 | 1721 | # experimental config: experimental.hook-track-tags |
|
1722 | 1722 | shouldtracktags = self.ui.configbool('experimental', 'hook-track-tags') |
|
1723 | 1723 | if desc != 'strip' and shouldtracktags: |
|
1724 | 1724 | oldheads = self.changelog.headrevs() |
|
1725 | 1725 | def tracktags(tr2): |
|
1726 | 1726 | repo = reporef() |
|
1727 | 1727 | oldfnodes = tagsmod.fnoderevs(repo.ui, repo, oldheads) |
|
1728 | 1728 | newheads = repo.changelog.headrevs() |
|
1729 | 1729 | newfnodes = tagsmod.fnoderevs(repo.ui, repo, newheads) |
|
1730 | 1730 | # notes: we compare lists here. |
|
1731 | 1731 | # As we do it only once buiding set would not be cheaper |
|
1732 | 1732 | changes = tagsmod.difftags(repo.ui, repo, oldfnodes, newfnodes) |
|
1733 | 1733 | if changes: |
|
1734 | 1734 | tr2.hookargs['tag_moved'] = '1' |
|
1735 | 1735 | with repo.vfs('changes/tags.changes', 'w', |
|
1736 | 1736 | atomictemp=True) as changesfile: |
|
1737 | 1737 | # note: we do not register the file to the transaction |
|
1738 | 1738 | # because we needs it to still exist on the transaction |
|
1739 | 1739 | # is close (for txnclose hooks) |
|
1740 | 1740 | tagsmod.writediff(changesfile, changes) |
|
1741 | 1741 | def validate(tr2): |
|
1742 | 1742 | """will run pre-closing hooks""" |
|
1743 | 1743 | # XXX the transaction API is a bit lacking here so we take a hacky |
|
1744 | 1744 | # path for now |
|
1745 | 1745 | # |
|
1746 | 1746 | # We cannot add this as a "pending" hooks since the 'tr.hookargs' |
|
1747 | 1747 | # dict is copied before these run. In addition we needs the data |
|
1748 | 1748 | # available to in memory hooks too. |
|
1749 | 1749 | # |
|
1750 | 1750 | # Moreover, we also need to make sure this runs before txnclose |
|
1751 | 1751 | # hooks and there is no "pending" mechanism that would execute |
|
1752 | 1752 | # logic only if hooks are about to run. |
|
1753 | 1753 | # |
|
1754 | 1754 | # Fixing this limitation of the transaction is also needed to track |
|
1755 | 1755 | # other families of changes (bookmarks, phases, obsolescence). |
|
1756 | 1756 | # |
|
1757 | 1757 | # This will have to be fixed before we remove the experimental |
|
1758 | 1758 | # gating. |
|
1759 | 1759 | tracktags(tr2) |
|
1760 | 1760 | repo = reporef() |
|
1761 | 1761 | if repo.ui.configbool('experimental', 'single-head-per-branch'): |
|
1762 | 1762 | scmutil.enforcesinglehead(repo, tr2, desc) |
|
1763 | 1763 | if hook.hashook(repo.ui, 'pretxnclose-bookmark'): |
|
1764 | 1764 | for name, (old, new) in sorted(tr.changes['bookmarks'].items()): |
|
1765 | 1765 | args = tr.hookargs.copy() |
|
1766 | 1766 | args.update(bookmarks.preparehookargs(name, old, new)) |
|
1767 | 1767 | repo.hook('pretxnclose-bookmark', throw=True, |
|
1768 | 1768 | txnname=desc, |
|
1769 | 1769 | **pycompat.strkwargs(args)) |
|
1770 | 1770 | if hook.hashook(repo.ui, 'pretxnclose-phase'): |
|
1771 | 1771 | cl = repo.unfiltered().changelog |
|
1772 | 1772 | for rev, (old, new) in tr.changes['phases'].items(): |
|
1773 | 1773 | args = tr.hookargs.copy() |
|
1774 | 1774 | node = hex(cl.node(rev)) |
|
1775 | 1775 | args.update(phases.preparehookargs(node, old, new)) |
|
1776 | 1776 | repo.hook('pretxnclose-phase', throw=True, txnname=desc, |
|
1777 | 1777 | **pycompat.strkwargs(args)) |
|
1778 | 1778 | |
|
1779 | 1779 | repo.hook('pretxnclose', throw=True, |
|
1780 | 1780 | txnname=desc, **pycompat.strkwargs(tr.hookargs)) |
|
1781 | 1781 | def releasefn(tr, success): |
|
1782 | 1782 | repo = reporef() |
|
1783 | 1783 | if success: |
|
1784 | 1784 | # this should be explicitly invoked here, because |
|
1785 | 1785 | # in-memory changes aren't written out at closing |
|
1786 | 1786 | # transaction, if tr.addfilegenerator (via |
|
1787 | 1787 | # dirstate.write or so) isn't invoked while |
|
1788 | 1788 | # transaction running |
|
1789 | 1789 | repo.dirstate.write(None) |
|
1790 | 1790 | else: |
|
1791 | 1791 | # discard all changes (including ones already written |
|
1792 | 1792 | # out) in this transaction |
|
1793 | 1793 | narrowspec.restorebackup(self, 'journal.narrowspec') |
|
1794 | 1794 | repo.dirstate.restorebackup(None, 'journal.dirstate') |
|
1795 | 1795 | |
|
1796 | 1796 | repo.invalidate(clearfilecache=True) |
|
1797 | 1797 | |
|
1798 | 1798 | tr = transaction.transaction(rp, self.svfs, vfsmap, |
|
1799 | 1799 | "journal", |
|
1800 | 1800 | "undo", |
|
1801 | 1801 | aftertrans(renames), |
|
1802 | 1802 | self.store.createmode, |
|
1803 | 1803 | validator=validate, |
|
1804 | 1804 | releasefn=releasefn, |
|
1805 | 1805 | checkambigfiles=_cachedfiles, |
|
1806 | 1806 | name=desc) |
|
1807 | 1807 | tr.changes['origrepolen'] = len(self) |
|
1808 | 1808 | tr.changes['obsmarkers'] = set() |
|
1809 | 1809 | tr.changes['phases'] = {} |
|
1810 | 1810 | tr.changes['bookmarks'] = {} |
|
1811 | 1811 | |
|
1812 | 1812 | tr.hookargs['txnid'] = txnid |
|
1813 | 1813 | # note: writing the fncache only during finalize mean that the file is |
|
1814 | 1814 | # outdated when running hooks. As fncache is used for streaming clone, |
|
1815 | 1815 | # this is not expected to break anything that happen during the hooks. |
|
1816 | 1816 | tr.addfinalize('flush-fncache', self.store.write) |
|
1817 | 1817 | def txnclosehook(tr2): |
|
1818 | 1818 | """To be run if transaction is successful, will schedule a hook run |
|
1819 | 1819 | """ |
|
1820 | 1820 | # Don't reference tr2 in hook() so we don't hold a reference. |
|
1821 | 1821 | # This reduces memory consumption when there are multiple |
|
1822 | 1822 | # transactions per lock. This can likely go away if issue5045 |
|
1823 | 1823 | # fixes the function accumulation. |
|
1824 | 1824 | hookargs = tr2.hookargs |
|
1825 | 1825 | |
|
1826 | 1826 | def hookfunc(): |
|
1827 | 1827 | repo = reporef() |
|
1828 | 1828 | if hook.hashook(repo.ui, 'txnclose-bookmark'): |
|
1829 | 1829 | bmchanges = sorted(tr.changes['bookmarks'].items()) |
|
1830 | 1830 | for name, (old, new) in bmchanges: |
|
1831 | 1831 | args = tr.hookargs.copy() |
|
1832 | 1832 | args.update(bookmarks.preparehookargs(name, old, new)) |
|
1833 | 1833 | repo.hook('txnclose-bookmark', throw=False, |
|
1834 | 1834 | txnname=desc, **pycompat.strkwargs(args)) |
|
1835 | 1835 | |
|
1836 | 1836 | if hook.hashook(repo.ui, 'txnclose-phase'): |
|
1837 | 1837 | cl = repo.unfiltered().changelog |
|
1838 | 1838 | phasemv = sorted(tr.changes['phases'].items()) |
|
1839 | 1839 | for rev, (old, new) in phasemv: |
|
1840 | 1840 | args = tr.hookargs.copy() |
|
1841 | 1841 | node = hex(cl.node(rev)) |
|
1842 | 1842 | args.update(phases.preparehookargs(node, old, new)) |
|
1843 | 1843 | repo.hook('txnclose-phase', throw=False, txnname=desc, |
|
1844 | 1844 | **pycompat.strkwargs(args)) |
|
1845 | 1845 | |
|
1846 | 1846 | repo.hook('txnclose', throw=False, txnname=desc, |
|
1847 | 1847 | **pycompat.strkwargs(hookargs)) |
|
1848 | 1848 | reporef()._afterlock(hookfunc) |
|
1849 | 1849 | tr.addfinalize('txnclose-hook', txnclosehook) |
|
1850 | 1850 | # Include a leading "-" to make it happen before the transaction summary |
|
1851 | 1851 | # reports registered via scmutil.registersummarycallback() whose names |
|
1852 | 1852 | # are 00-txnreport etc. That way, the caches will be warm when the |
|
1853 | 1853 | # callbacks run. |
|
1854 | 1854 | tr.addpostclose('-warm-cache', self._buildcacheupdater(tr)) |
|
1855 | 1855 | def txnaborthook(tr2): |
|
1856 | 1856 | """To be run if transaction is aborted |
|
1857 | 1857 | """ |
|
1858 | 1858 | reporef().hook('txnabort', throw=False, txnname=desc, |
|
1859 | 1859 | **pycompat.strkwargs(tr2.hookargs)) |
|
1860 | 1860 | tr.addabort('txnabort-hook', txnaborthook) |
|
1861 | 1861 | # avoid eager cache invalidation. in-memory data should be identical |
|
1862 | 1862 | # to stored data if transaction has no error. |
|
1863 | 1863 | tr.addpostclose('refresh-filecachestats', self._refreshfilecachestats) |
|
1864 | 1864 | self._transref = weakref.ref(tr) |
|
1865 | 1865 | scmutil.registersummarycallback(self, tr, desc) |
|
1866 | 1866 | return tr |
|
1867 | 1867 | |
|
1868 | 1868 | def _journalfiles(self): |
|
1869 | 1869 | return ((self.svfs, 'journal'), |
|
1870 | 1870 | (self.vfs, 'journal.dirstate'), |
|
1871 | 1871 | (self.vfs, 'journal.branch'), |
|
1872 | 1872 | (self.vfs, 'journal.desc'), |
|
1873 | 1873 | (self.vfs, 'journal.bookmarks'), |
|
1874 | 1874 | (self.svfs, 'journal.phaseroots')) |
|
1875 | 1875 | |
|
1876 | 1876 | def undofiles(self): |
|
1877 | 1877 | return [(vfs, undoname(x)) for vfs, x in self._journalfiles()] |
|
1878 | 1878 | |
|
1879 | 1879 | @unfilteredmethod |
|
1880 | 1880 | def _writejournal(self, desc): |
|
1881 | 1881 | self.dirstate.savebackup(None, 'journal.dirstate') |
|
1882 | 1882 | narrowspec.savebackup(self, 'journal.narrowspec') |
|
1883 | 1883 | self.vfs.write("journal.branch", |
|
1884 | 1884 | encoding.fromlocal(self.dirstate.branch())) |
|
1885 | 1885 | self.vfs.write("journal.desc", |
|
1886 | 1886 | "%d\n%s\n" % (len(self), desc)) |
|
1887 | 1887 | self.vfs.write("journal.bookmarks", |
|
1888 | 1888 | self.vfs.tryread("bookmarks")) |
|
1889 | 1889 | self.svfs.write("journal.phaseroots", |
|
1890 | 1890 | self.svfs.tryread("phaseroots")) |
|
1891 | 1891 | |
|
1892 | 1892 | def recover(self): |
|
1893 | 1893 | with self.lock(): |
|
1894 | 1894 | if self.svfs.exists("journal"): |
|
1895 | 1895 | self.ui.status(_("rolling back interrupted transaction\n")) |
|
1896 | 1896 | vfsmap = {'': self.svfs, |
|
1897 | 1897 | 'plain': self.vfs,} |
|
1898 | 1898 | transaction.rollback(self.svfs, vfsmap, "journal", |
|
1899 | 1899 | self.ui.warn, |
|
1900 | 1900 | checkambigfiles=_cachedfiles) |
|
1901 | 1901 | self.invalidate() |
|
1902 | 1902 | return True |
|
1903 | 1903 | else: |
|
1904 | 1904 | self.ui.warn(_("no interrupted transaction available\n")) |
|
1905 | 1905 | return False |
|
1906 | 1906 | |
|
1907 | 1907 | def rollback(self, dryrun=False, force=False): |
|
1908 | 1908 | wlock = lock = dsguard = None |
|
1909 | 1909 | try: |
|
1910 | 1910 | wlock = self.wlock() |
|
1911 | 1911 | lock = self.lock() |
|
1912 | 1912 | if self.svfs.exists("undo"): |
|
1913 | 1913 | dsguard = dirstateguard.dirstateguard(self, 'rollback') |
|
1914 | 1914 | |
|
1915 | 1915 | return self._rollback(dryrun, force, dsguard) |
|
1916 | 1916 | else: |
|
1917 | 1917 | self.ui.warn(_("no rollback information available\n")) |
|
1918 | 1918 | return 1 |
|
1919 | 1919 | finally: |
|
1920 | 1920 | release(dsguard, lock, wlock) |
|
1921 | 1921 | |
|
1922 | 1922 | @unfilteredmethod # Until we get smarter cache management |
|
1923 | 1923 | def _rollback(self, dryrun, force, dsguard): |
|
1924 | 1924 | ui = self.ui |
|
1925 | 1925 | try: |
|
1926 | 1926 | args = self.vfs.read('undo.desc').splitlines() |
|
1927 | 1927 | (oldlen, desc, detail) = (int(args[0]), args[1], None) |
|
1928 | 1928 | if len(args) >= 3: |
|
1929 | 1929 | detail = args[2] |
|
1930 | 1930 | oldtip = oldlen - 1 |
|
1931 | 1931 | |
|
1932 | 1932 | if detail and ui.verbose: |
|
1933 | 1933 | msg = (_('repository tip rolled back to revision %d' |
|
1934 | 1934 | ' (undo %s: %s)\n') |
|
1935 | 1935 | % (oldtip, desc, detail)) |
|
1936 | 1936 | else: |
|
1937 | 1937 | msg = (_('repository tip rolled back to revision %d' |
|
1938 | 1938 | ' (undo %s)\n') |
|
1939 | 1939 | % (oldtip, desc)) |
|
1940 | 1940 | except IOError: |
|
1941 | 1941 | msg = _('rolling back unknown transaction\n') |
|
1942 | 1942 | desc = None |
|
1943 | 1943 | |
|
1944 | 1944 | if not force and self['.'] != self['tip'] and desc == 'commit': |
|
1945 | 1945 | raise error.Abort( |
|
1946 | 1946 | _('rollback of last commit while not checked out ' |
|
1947 | 1947 | 'may lose data'), hint=_('use -f to force')) |
|
1948 | 1948 | |
|
1949 | 1949 | ui.status(msg) |
|
1950 | 1950 | if dryrun: |
|
1951 | 1951 | return 0 |
|
1952 | 1952 | |
|
1953 | 1953 | parents = self.dirstate.parents() |
|
1954 | 1954 | self.destroying() |
|
1955 | 1955 | vfsmap = {'plain': self.vfs, '': self.svfs} |
|
1956 | 1956 | transaction.rollback(self.svfs, vfsmap, 'undo', ui.warn, |
|
1957 | 1957 | checkambigfiles=_cachedfiles) |
|
1958 | 1958 | if self.vfs.exists('undo.bookmarks'): |
|
1959 | 1959 | self.vfs.rename('undo.bookmarks', 'bookmarks', checkambig=True) |
|
1960 | 1960 | if self.svfs.exists('undo.phaseroots'): |
|
1961 | 1961 | self.svfs.rename('undo.phaseroots', 'phaseroots', checkambig=True) |
|
1962 | 1962 | self.invalidate() |
|
1963 | 1963 | |
|
1964 | 1964 | parentgone = (parents[0] not in self.changelog.nodemap or |
|
1965 | 1965 | parents[1] not in self.changelog.nodemap) |
|
1966 | 1966 | if parentgone: |
|
1967 | 1967 | # prevent dirstateguard from overwriting already restored one |
|
1968 | 1968 | dsguard.close() |
|
1969 | 1969 | |
|
1970 | 1970 | narrowspec.restorebackup(self, 'undo.narrowspec') |
|
1971 | 1971 | self.dirstate.restorebackup(None, 'undo.dirstate') |
|
1972 | 1972 | try: |
|
1973 | 1973 | branch = self.vfs.read('undo.branch') |
|
1974 | 1974 | self.dirstate.setbranch(encoding.tolocal(branch)) |
|
1975 | 1975 | except IOError: |
|
1976 | 1976 | ui.warn(_('named branch could not be reset: ' |
|
1977 | 1977 | 'current branch is still \'%s\'\n') |
|
1978 | 1978 | % self.dirstate.branch()) |
|
1979 | 1979 | |
|
1980 | 1980 | parents = tuple([p.rev() for p in self[None].parents()]) |
|
1981 | 1981 | if len(parents) > 1: |
|
1982 | 1982 | ui.status(_('working directory now based on ' |
|
1983 | 1983 | 'revisions %d and %d\n') % parents) |
|
1984 | 1984 | else: |
|
1985 | 1985 | ui.status(_('working directory now based on ' |
|
1986 | 1986 | 'revision %d\n') % parents) |
|
1987 | 1987 | mergemod.mergestate.clean(self, self['.'].node()) |
|
1988 | 1988 | |
|
1989 | 1989 | # TODO: if we know which new heads may result from this rollback, pass |
|
1990 | 1990 | # them to destroy(), which will prevent the branchhead cache from being |
|
1991 | 1991 | # invalidated. |
|
1992 | 1992 | self.destroyed() |
|
1993 | 1993 | return 0 |
|
1994 | 1994 | |
|
1995 | 1995 | def _buildcacheupdater(self, newtransaction): |
|
1996 | 1996 | """called during transaction to build the callback updating cache |
|
1997 | 1997 | |
|
1998 | 1998 | Lives on the repository to help extension who might want to augment |
|
1999 | 1999 | this logic. For this purpose, the created transaction is passed to the |
|
2000 | 2000 | method. |
|
2001 | 2001 | """ |
|
2002 | 2002 | # we must avoid cyclic reference between repo and transaction. |
|
2003 | 2003 | reporef = weakref.ref(self) |
|
2004 | 2004 | def updater(tr): |
|
2005 | 2005 | repo = reporef() |
|
2006 | 2006 | repo.updatecaches(tr) |
|
2007 | 2007 | return updater |
|
2008 | 2008 | |
|
2009 | 2009 | @unfilteredmethod |
|
2010 | 2010 | def updatecaches(self, tr=None, full=False): |
|
2011 | 2011 | """warm appropriate caches |
|
2012 | 2012 | |
|
2013 | 2013 | If this function is called after a transaction closed. The transaction |
|
2014 | 2014 | will be available in the 'tr' argument. This can be used to selectively |
|
2015 | 2015 | update caches relevant to the changes in that transaction. |
|
2016 | 2016 | |
|
2017 | 2017 | If 'full' is set, make sure all caches the function knows about have |
|
2018 | 2018 | up-to-date data. Even the ones usually loaded more lazily. |
|
2019 | 2019 | """ |
|
2020 | 2020 | if tr is not None and tr.hookargs.get('source') == 'strip': |
|
2021 | 2021 | # During strip, many caches are invalid but |
|
2022 | 2022 | # later call to `destroyed` will refresh them. |
|
2023 | 2023 | return |
|
2024 | 2024 | |
|
2025 | 2025 | if tr is None or tr.changes['origrepolen'] < len(self): |
|
2026 | 2026 | # updating the unfiltered branchmap should refresh all the others, |
|
2027 | 2027 | self.ui.debug('updating the branch cache\n') |
|
2028 | 2028 | branchmap.updatecache(self.filtered('served')) |
|
2029 | 2029 | |
|
2030 | 2030 | if full: |
|
2031 | 2031 | rbc = self.revbranchcache() |
|
2032 | 2032 | for r in self.changelog: |
|
2033 | 2033 | rbc.branchinfo(r) |
|
2034 | 2034 | rbc.write() |
|
2035 | 2035 | |
|
2036 | 2036 | # ensure the working copy parents are in the manifestfulltextcache |
|
2037 | 2037 | for ctx in self['.'].parents(): |
|
2038 | 2038 | ctx.manifest() # accessing the manifest is enough |
|
2039 | 2039 | |
|
2040 | 2040 | def invalidatecaches(self): |
|
2041 | 2041 | |
|
2042 | 2042 | if '_tagscache' in vars(self): |
|
2043 | 2043 | # can't use delattr on proxy |
|
2044 | 2044 | del self.__dict__['_tagscache'] |
|
2045 | 2045 | |
|
2046 | 2046 | self.unfiltered()._branchcaches.clear() |
|
2047 | 2047 | self.invalidatevolatilesets() |
|
2048 | 2048 | self._sparsesignaturecache.clear() |
|
2049 | 2049 | |
|
2050 | 2050 | def invalidatevolatilesets(self): |
|
2051 | 2051 | self.filteredrevcache.clear() |
|
2052 | 2052 | obsolete.clearobscaches(self) |
|
2053 | 2053 | |
|
2054 | 2054 | def invalidatedirstate(self): |
|
2055 | 2055 | '''Invalidates the dirstate, causing the next call to dirstate |
|
2056 | 2056 | to check if it was modified since the last time it was read, |
|
2057 | 2057 | rereading it if it has. |
|
2058 | 2058 | |
|
2059 | 2059 | This is different to dirstate.invalidate() that it doesn't always |
|
2060 | 2060 | rereads the dirstate. Use dirstate.invalidate() if you want to |
|
2061 | 2061 | explicitly read the dirstate again (i.e. restoring it to a previous |
|
2062 | 2062 | known good state).''' |
|
2063 | 2063 | if hasunfilteredcache(self, 'dirstate'): |
|
2064 | 2064 | for k in self.dirstate._filecache: |
|
2065 | 2065 | try: |
|
2066 | 2066 | delattr(self.dirstate, k) |
|
2067 | 2067 | except AttributeError: |
|
2068 | 2068 | pass |
|
2069 | 2069 | delattr(self.unfiltered(), 'dirstate') |
|
2070 | 2070 | |
|
2071 | 2071 | def invalidate(self, clearfilecache=False): |
|
2072 | 2072 | '''Invalidates both store and non-store parts other than dirstate |
|
2073 | 2073 | |
|
2074 | 2074 | If a transaction is running, invalidation of store is omitted, |
|
2075 | 2075 | because discarding in-memory changes might cause inconsistency |
|
2076 | 2076 | (e.g. incomplete fncache causes unintentional failure, but |
|
2077 | 2077 | redundant one doesn't). |
|
2078 | 2078 | ''' |
|
2079 | 2079 | unfiltered = self.unfiltered() # all file caches are stored unfiltered |
|
2080 | 2080 | for k in list(self._filecache.keys()): |
|
2081 | 2081 | # dirstate is invalidated separately in invalidatedirstate() |
|
2082 | 2082 | if k == 'dirstate': |
|
2083 | 2083 | continue |
|
2084 | 2084 | if (k == 'changelog' and |
|
2085 | 2085 | self.currenttransaction() and |
|
2086 | 2086 | self.changelog._delayed): |
|
2087 | 2087 | # The changelog object may store unwritten revisions. We don't |
|
2088 | 2088 | # want to lose them. |
|
2089 | 2089 | # TODO: Solve the problem instead of working around it. |
|
2090 | 2090 | continue |
|
2091 | 2091 | |
|
2092 | 2092 | if clearfilecache: |
|
2093 | 2093 | del self._filecache[k] |
|
2094 | 2094 | try: |
|
2095 | 2095 | delattr(unfiltered, k) |
|
2096 | 2096 | except AttributeError: |
|
2097 | 2097 | pass |
|
2098 | 2098 | self.invalidatecaches() |
|
2099 | 2099 | if not self.currenttransaction(): |
|
2100 | 2100 | # TODO: Changing contents of store outside transaction |
|
2101 | 2101 | # causes inconsistency. We should make in-memory store |
|
2102 | 2102 | # changes detectable, and abort if changed. |
|
2103 | 2103 | self.store.invalidatecaches() |
|
2104 | 2104 | |
|
2105 | 2105 | def invalidateall(self): |
|
2106 | 2106 | '''Fully invalidates both store and non-store parts, causing the |
|
2107 | 2107 | subsequent operation to reread any outside changes.''' |
|
2108 | 2108 | # extension should hook this to invalidate its caches |
|
2109 | 2109 | self.invalidate() |
|
2110 | 2110 | self.invalidatedirstate() |
|
2111 | 2111 | |
|
2112 | 2112 | @unfilteredmethod |
|
2113 | 2113 | def _refreshfilecachestats(self, tr): |
|
2114 | 2114 | """Reload stats of cached files so that they are flagged as valid""" |
|
2115 | 2115 | for k, ce in self._filecache.items(): |
|
2116 | 2116 | k = pycompat.sysstr(k) |
|
2117 | 2117 | if k == r'dirstate' or k not in self.__dict__: |
|
2118 | 2118 | continue |
|
2119 | 2119 | ce.refresh() |
|
2120 | 2120 | |
|
2121 | 2121 | def _lock(self, vfs, lockname, wait, releasefn, acquirefn, desc, |
|
2122 | 2122 | inheritchecker=None, parentenvvar=None): |
|
2123 | 2123 | parentlock = None |
|
2124 | 2124 | # the contents of parentenvvar are used by the underlying lock to |
|
2125 | 2125 | # determine whether it can be inherited |
|
2126 | 2126 | if parentenvvar is not None: |
|
2127 | 2127 | parentlock = encoding.environ.get(parentenvvar) |
|
2128 | 2128 | |
|
2129 | 2129 | timeout = 0 |
|
2130 | 2130 | warntimeout = 0 |
|
2131 | 2131 | if wait: |
|
2132 | 2132 | timeout = self.ui.configint("ui", "timeout") |
|
2133 | 2133 | warntimeout = self.ui.configint("ui", "timeout.warn") |
|
2134 | 2134 | # internal config: ui.signal-safe-lock |
|
2135 | 2135 | signalsafe = self.ui.configbool('ui', 'signal-safe-lock') |
|
2136 | 2136 | |
|
2137 | 2137 | l = lockmod.trylock(self.ui, vfs, lockname, timeout, warntimeout, |
|
2138 | 2138 | releasefn=releasefn, |
|
2139 | 2139 | acquirefn=acquirefn, desc=desc, |
|
2140 | 2140 | inheritchecker=inheritchecker, |
|
2141 | 2141 | parentlock=parentlock, |
|
2142 | 2142 | signalsafe=signalsafe) |
|
2143 | 2143 | return l |
|
2144 | 2144 | |
|
2145 | 2145 | def _afterlock(self, callback): |
|
2146 | 2146 | """add a callback to be run when the repository is fully unlocked |
|
2147 | 2147 | |
|
2148 | 2148 | The callback will be executed when the outermost lock is released |
|
2149 | 2149 | (with wlock being higher level than 'lock').""" |
|
2150 | 2150 | for ref in (self._wlockref, self._lockref): |
|
2151 | 2151 | l = ref and ref() |
|
2152 | 2152 | if l and l.held: |
|
2153 | 2153 | l.postrelease.append(callback) |
|
2154 | 2154 | break |
|
2155 | 2155 | else: # no lock have been found. |
|
2156 | 2156 | callback() |
|
2157 | 2157 | |
|
2158 | 2158 | def lock(self, wait=True): |
|
2159 | 2159 | '''Lock the repository store (.hg/store) and return a weak reference |
|
2160 | 2160 | to the lock. Use this before modifying the store (e.g. committing or |
|
2161 | 2161 | stripping). If you are opening a transaction, get a lock as well.) |
|
2162 | 2162 | |
|
2163 | 2163 | If both 'lock' and 'wlock' must be acquired, ensure you always acquires |
|
2164 | 2164 | 'wlock' first to avoid a dead-lock hazard.''' |
|
2165 | 2165 | l = self._currentlock(self._lockref) |
|
2166 | 2166 | if l is not None: |
|
2167 | 2167 | l.lock() |
|
2168 | 2168 | return l |
|
2169 | 2169 | |
|
2170 | 2170 | l = self._lock(self.svfs, "lock", wait, None, |
|
2171 | 2171 | self.invalidate, _('repository %s') % self.origroot) |
|
2172 | 2172 | self._lockref = weakref.ref(l) |
|
2173 | 2173 | return l |
|
2174 | 2174 | |
|
2175 | 2175 | def _wlockchecktransaction(self): |
|
2176 | 2176 | if self.currenttransaction() is not None: |
|
2177 | 2177 | raise error.LockInheritanceContractViolation( |
|
2178 | 2178 | 'wlock cannot be inherited in the middle of a transaction') |
|
2179 | 2179 | |
|
2180 | 2180 | def wlock(self, wait=True): |
|
2181 | 2181 | '''Lock the non-store parts of the repository (everything under |
|
2182 | 2182 | .hg except .hg/store) and return a weak reference to the lock. |
|
2183 | 2183 | |
|
2184 | 2184 | Use this before modifying files in .hg. |
|
2185 | 2185 | |
|
2186 | 2186 | If both 'lock' and 'wlock' must be acquired, ensure you always acquires |
|
2187 | 2187 | 'wlock' first to avoid a dead-lock hazard.''' |
|
2188 | 2188 | l = self._wlockref and self._wlockref() |
|
2189 | 2189 | if l is not None and l.held: |
|
2190 | 2190 | l.lock() |
|
2191 | 2191 | return l |
|
2192 | 2192 | |
|
2193 | 2193 | # We do not need to check for non-waiting lock acquisition. Such |
|
2194 | 2194 | # acquisition would not cause dead-lock as they would just fail. |
|
2195 | 2195 | if wait and (self.ui.configbool('devel', 'all-warnings') |
|
2196 | 2196 | or self.ui.configbool('devel', 'check-locks')): |
|
2197 | 2197 | if self._currentlock(self._lockref) is not None: |
|
2198 | 2198 | self.ui.develwarn('"wlock" acquired after "lock"') |
|
2199 | 2199 | |
|
2200 | 2200 | def unlock(): |
|
2201 | 2201 | if self.dirstate.pendingparentchange(): |
|
2202 | 2202 | self.dirstate.invalidate() |
|
2203 | 2203 | else: |
|
2204 | 2204 | self.dirstate.write(None) |
|
2205 | 2205 | |
|
2206 | 2206 | self._filecache['dirstate'].refresh() |
|
2207 | 2207 | |
|
2208 | 2208 | l = self._lock(self.vfs, "wlock", wait, unlock, |
|
2209 | 2209 | self.invalidatedirstate, _('working directory of %s') % |
|
2210 | 2210 | self.origroot, |
|
2211 | 2211 | inheritchecker=self._wlockchecktransaction, |
|
2212 | 2212 | parentenvvar='HG_WLOCK_LOCKER') |
|
2213 | 2213 | self._wlockref = weakref.ref(l) |
|
2214 | 2214 | return l |
|
2215 | 2215 | |
|
2216 | 2216 | def _currentlock(self, lockref): |
|
2217 | 2217 | """Returns the lock if it's held, or None if it's not.""" |
|
2218 | 2218 | if lockref is None: |
|
2219 | 2219 | return None |
|
2220 | 2220 | l = lockref() |
|
2221 | 2221 | if l is None or not l.held: |
|
2222 | 2222 | return None |
|
2223 | 2223 | return l |
|
2224 | 2224 | |
|
2225 | 2225 | def currentwlock(self): |
|
2226 | 2226 | """Returns the wlock if it's held, or None if it's not.""" |
|
2227 | 2227 | return self._currentlock(self._wlockref) |
|
2228 | 2228 | |
|
2229 | 2229 | def _filecommit(self, fctx, manifest1, manifest2, linkrev, tr, changelist): |
|
2230 | 2230 | """ |
|
2231 | 2231 | commit an individual file as part of a larger transaction |
|
2232 | 2232 | """ |
|
2233 | 2233 | |
|
2234 | 2234 | fname = fctx.path() |
|
2235 | 2235 | fparent1 = manifest1.get(fname, nullid) |
|
2236 | 2236 | fparent2 = manifest2.get(fname, nullid) |
|
2237 | 2237 | if isinstance(fctx, context.filectx): |
|
2238 | 2238 | node = fctx.filenode() |
|
2239 | 2239 | if node in [fparent1, fparent2]: |
|
2240 | 2240 | self.ui.debug('reusing %s filelog entry\n' % fname) |
|
2241 | 2241 | if manifest1.flags(fname) != fctx.flags(): |
|
2242 | 2242 | changelist.append(fname) |
|
2243 | 2243 | return node |
|
2244 | 2244 | |
|
2245 | 2245 | flog = self.file(fname) |
|
2246 | 2246 | meta = {} |
|
2247 | 2247 | copy = fctx.renamed() |
|
2248 | 2248 | if copy and copy[0] != fname: |
|
2249 | 2249 | # Mark the new revision of this file as a copy of another |
|
2250 | 2250 | # file. This copy data will effectively act as a parent |
|
2251 | 2251 | # of this new revision. If this is a merge, the first |
|
2252 | 2252 | # parent will be the nullid (meaning "look up the copy data") |
|
2253 | 2253 | # and the second one will be the other parent. For example: |
|
2254 | 2254 | # |
|
2255 | 2255 | # 0 --- 1 --- 3 rev1 changes file foo |
|
2256 | 2256 | # \ / rev2 renames foo to bar and changes it |
|
2257 | 2257 | # \- 2 -/ rev3 should have bar with all changes and |
|
2258 | 2258 | # should record that bar descends from |
|
2259 | 2259 | # bar in rev2 and foo in rev1 |
|
2260 | 2260 | # |
|
2261 | 2261 | # this allows this merge to succeed: |
|
2262 | 2262 | # |
|
2263 | 2263 | # 0 --- 1 --- 3 rev4 reverts the content change from rev2 |
|
2264 | 2264 | # \ / merging rev3 and rev4 should use bar@rev2 |
|
2265 | 2265 | # \- 2 --- 4 as the merge base |
|
2266 | 2266 | # |
|
2267 | 2267 | |
|
2268 | 2268 | cfname = copy[0] |
|
2269 | 2269 | crev = manifest1.get(cfname) |
|
2270 | 2270 | newfparent = fparent2 |
|
2271 | 2271 | |
|
2272 | 2272 | if manifest2: # branch merge |
|
2273 | 2273 | if fparent2 == nullid or crev is None: # copied on remote side |
|
2274 | 2274 | if cfname in manifest2: |
|
2275 | 2275 | crev = manifest2[cfname] |
|
2276 | 2276 | newfparent = fparent1 |
|
2277 | 2277 | |
|
2278 | 2278 | # Here, we used to search backwards through history to try to find |
|
2279 | 2279 | # where the file copy came from if the source of a copy was not in |
|
2280 | 2280 | # the parent directory. However, this doesn't actually make sense to |
|
2281 | 2281 | # do (what does a copy from something not in your working copy even |
|
2282 | 2282 | # mean?) and it causes bugs (eg, issue4476). Instead, we will warn |
|
2283 | 2283 | # the user that copy information was dropped, so if they didn't |
|
2284 | 2284 | # expect this outcome it can be fixed, but this is the correct |
|
2285 | 2285 | # behavior in this circumstance. |
|
2286 | 2286 | |
|
2287 | 2287 | if crev: |
|
2288 | 2288 | self.ui.debug(" %s: copy %s:%s\n" % (fname, cfname, hex(crev))) |
|
2289 | 2289 | meta["copy"] = cfname |
|
2290 | 2290 | meta["copyrev"] = hex(crev) |
|
2291 | 2291 | fparent1, fparent2 = nullid, newfparent |
|
2292 | 2292 | else: |
|
2293 | 2293 | self.ui.warn(_("warning: can't find ancestor for '%s' " |
|
2294 | 2294 | "copied from '%s'!\n") % (fname, cfname)) |
|
2295 | 2295 | |
|
2296 | 2296 | elif fparent1 == nullid: |
|
2297 | 2297 | fparent1, fparent2 = fparent2, nullid |
|
2298 | 2298 | elif fparent2 != nullid: |
|
2299 | 2299 | # is one parent an ancestor of the other? |
|
2300 | 2300 | fparentancestors = flog.commonancestorsheads(fparent1, fparent2) |
|
2301 | 2301 | if fparent1 in fparentancestors: |
|
2302 | 2302 | fparent1, fparent2 = fparent2, nullid |
|
2303 | 2303 | elif fparent2 in fparentancestors: |
|
2304 | 2304 | fparent2 = nullid |
|
2305 | 2305 | |
|
2306 | 2306 | # is the file changed? |
|
2307 | 2307 | text = fctx.data() |
|
2308 | 2308 | if fparent2 != nullid or flog.cmp(fparent1, text) or meta: |
|
2309 | 2309 | changelist.append(fname) |
|
2310 | 2310 | return flog.add(text, meta, tr, linkrev, fparent1, fparent2) |
|
2311 | 2311 | # are just the flags changed during merge? |
|
2312 | 2312 | elif fname in manifest1 and manifest1.flags(fname) != fctx.flags(): |
|
2313 | 2313 | changelist.append(fname) |
|
2314 | 2314 | |
|
2315 | 2315 | return fparent1 |
|
2316 | 2316 | |
|
2317 | 2317 | def checkcommitpatterns(self, wctx, vdirs, match, status, fail): |
|
2318 | 2318 | """check for commit arguments that aren't committable""" |
|
2319 | 2319 | if match.isexact() or match.prefix(): |
|
2320 | 2320 | matched = set(status.modified + status.added + status.removed) |
|
2321 | 2321 | |
|
2322 | 2322 | for f in match.files(): |
|
2323 | 2323 | f = self.dirstate.normalize(f) |
|
2324 | 2324 | if f == '.' or f in matched or f in wctx.substate: |
|
2325 | 2325 | continue |
|
2326 | 2326 | if f in status.deleted: |
|
2327 | 2327 | fail(f, _('file not found!')) |
|
2328 | 2328 | if f in vdirs: # visited directory |
|
2329 | 2329 | d = f + '/' |
|
2330 | 2330 | for mf in matched: |
|
2331 | 2331 | if mf.startswith(d): |
|
2332 | 2332 | break |
|
2333 | 2333 | else: |
|
2334 | 2334 | fail(f, _("no match under directory!")) |
|
2335 | 2335 | elif f not in self.dirstate: |
|
2336 | 2336 | fail(f, _("file not tracked!")) |
|
2337 | 2337 | |
|
2338 | 2338 | @unfilteredmethod |
|
2339 | 2339 | def commit(self, text="", user=None, date=None, match=None, force=False, |
|
2340 | 2340 | editor=False, extra=None): |
|
2341 | 2341 | """Add a new revision to current repository. |
|
2342 | 2342 | |
|
2343 | 2343 | Revision information is gathered from the working directory, |
|
2344 | 2344 | match can be used to filter the committed files. If editor is |
|
2345 | 2345 | supplied, it is called to get a commit message. |
|
2346 | 2346 | """ |
|
2347 | 2347 | if extra is None: |
|
2348 | 2348 | extra = {} |
|
2349 | 2349 | |
|
2350 | 2350 | def fail(f, msg): |
|
2351 | 2351 | raise error.Abort('%s: %s' % (f, msg)) |
|
2352 | 2352 | |
|
2353 | 2353 | if not match: |
|
2354 | 2354 | match = matchmod.always(self.root, '') |
|
2355 | 2355 | |
|
2356 | 2356 | if not force: |
|
2357 | 2357 | vdirs = [] |
|
2358 | 2358 | match.explicitdir = vdirs.append |
|
2359 | 2359 | match.bad = fail |
|
2360 | 2360 | |
|
2361 | 2361 | wlock = lock = tr = None |
|
2362 | 2362 | try: |
|
2363 | 2363 | wlock = self.wlock() |
|
2364 | 2364 | lock = self.lock() # for recent changelog (see issue4368) |
|
2365 | 2365 | |
|
2366 | 2366 | wctx = self[None] |
|
2367 | 2367 | merge = len(wctx.parents()) > 1 |
|
2368 | 2368 | |
|
2369 | 2369 | if not force and merge and not match.always(): |
|
2370 | 2370 | raise error.Abort(_('cannot partially commit a merge ' |
|
2371 | 2371 | '(do not specify files or patterns)')) |
|
2372 | 2372 | |
|
2373 | 2373 | status = self.status(match=match, clean=force) |
|
2374 | 2374 | if force: |
|
2375 | 2375 | status.modified.extend(status.clean) # mq may commit clean files |
|
2376 | 2376 | |
|
2377 | 2377 | # check subrepos |
|
2378 | 2378 | subs, commitsubs, newstate = subrepoutil.precommit( |
|
2379 | 2379 | self.ui, wctx, status, match, force=force) |
|
2380 | 2380 | |
|
2381 | 2381 | # make sure all explicit patterns are matched |
|
2382 | 2382 | if not force: |
|
2383 | 2383 | self.checkcommitpatterns(wctx, vdirs, match, status, fail) |
|
2384 | 2384 | |
|
2385 | 2385 | cctx = context.workingcommitctx(self, status, |
|
2386 | 2386 | text, user, date, extra) |
|
2387 | 2387 | |
|
2388 | 2388 | # internal config: ui.allowemptycommit |
|
2389 | 2389 | allowemptycommit = (wctx.branch() != wctx.p1().branch() |
|
2390 | 2390 | or extra.get('close') or merge or cctx.files() |
|
2391 | 2391 | or self.ui.configbool('ui', 'allowemptycommit')) |
|
2392 | 2392 | if not allowemptycommit: |
|
2393 | 2393 | return None |
|
2394 | 2394 | |
|
2395 | 2395 | if merge and cctx.deleted(): |
|
2396 | 2396 | raise error.Abort(_("cannot commit merge with missing files")) |
|
2397 | 2397 | |
|
2398 | 2398 | ms = mergemod.mergestate.read(self) |
|
2399 | 2399 | mergeutil.checkunresolved(ms) |
|
2400 | 2400 | |
|
2401 | 2401 | if editor: |
|
2402 | 2402 | cctx._text = editor(self, cctx, subs) |
|
2403 | 2403 | edited = (text != cctx._text) |
|
2404 | 2404 | |
|
2405 | 2405 | # Save commit message in case this transaction gets rolled back |
|
2406 | 2406 | # (e.g. by a pretxncommit hook). Leave the content alone on |
|
2407 | 2407 | # the assumption that the user will use the same editor again. |
|
2408 | 2408 | msgfn = self.savecommitmessage(cctx._text) |
|
2409 | 2409 | |
|
2410 | 2410 | # commit subs and write new state |
|
2411 | 2411 | if subs: |
|
2412 | 2412 | for s in sorted(commitsubs): |
|
2413 | 2413 | sub = wctx.sub(s) |
|
2414 | 2414 | self.ui.status(_('committing subrepository %s\n') % |
|
2415 | 2415 | subrepoutil.subrelpath(sub)) |
|
2416 | 2416 | sr = sub.commit(cctx._text, user, date) |
|
2417 | 2417 | newstate[s] = (newstate[s][0], sr) |
|
2418 | 2418 | subrepoutil.writestate(self, newstate) |
|
2419 | 2419 | |
|
2420 | 2420 | p1, p2 = self.dirstate.parents() |
|
2421 | 2421 | hookp1, hookp2 = hex(p1), (p2 != nullid and hex(p2) or '') |
|
2422 | 2422 | try: |
|
2423 | 2423 | self.hook("precommit", throw=True, parent1=hookp1, |
|
2424 | 2424 | parent2=hookp2) |
|
2425 | 2425 | tr = self.transaction('commit') |
|
2426 | 2426 | ret = self.commitctx(cctx, True) |
|
2427 | 2427 | except: # re-raises |
|
2428 | 2428 | if edited: |
|
2429 | 2429 | self.ui.write( |
|
2430 | 2430 | _('note: commit message saved in %s\n') % msgfn) |
|
2431 | 2431 | raise |
|
2432 | 2432 | # update bookmarks, dirstate and mergestate |
|
2433 | 2433 | bookmarks.update(self, [p1, p2], ret) |
|
2434 | 2434 | cctx.markcommitted(ret) |
|
2435 | 2435 | ms.reset() |
|
2436 | 2436 | tr.close() |
|
2437 | 2437 | |
|
2438 | 2438 | finally: |
|
2439 | 2439 | lockmod.release(tr, lock, wlock) |
|
2440 | 2440 | |
|
2441 | 2441 | def commithook(node=hex(ret), parent1=hookp1, parent2=hookp2): |
|
2442 | 2442 | # hack for command that use a temporary commit (eg: histedit) |
|
2443 | 2443 | # temporary commit got stripped before hook release |
|
2444 | 2444 | if self.changelog.hasnode(ret): |
|
2445 | 2445 | self.hook("commit", node=node, parent1=parent1, |
|
2446 | 2446 | parent2=parent2) |
|
2447 | 2447 | self._afterlock(commithook) |
|
2448 | 2448 | return ret |
|
2449 | 2449 | |
|
2450 | 2450 | @unfilteredmethod |
|
2451 | 2451 | def commitctx(self, ctx, error=False): |
|
2452 | 2452 | """Add a new revision to current repository. |
|
2453 | 2453 | Revision information is passed via the context argument. |
|
2454 | 2454 | |
|
2455 | 2455 | ctx.files() should list all files involved in this commit, i.e. |
|
2456 | 2456 | modified/added/removed files. On merge, it may be wider than the |
|
2457 | 2457 | ctx.files() to be committed, since any file nodes derived directly |
|
2458 | 2458 | from p1 or p2 are excluded from the committed ctx.files(). |
|
2459 | 2459 | """ |
|
2460 | 2460 | |
|
2461 | 2461 | tr = None |
|
2462 | 2462 | p1, p2 = ctx.p1(), ctx.p2() |
|
2463 | 2463 | user = ctx.user() |
|
2464 | 2464 | |
|
2465 | 2465 | lock = self.lock() |
|
2466 | 2466 | try: |
|
2467 | 2467 | tr = self.transaction("commit") |
|
2468 | 2468 | trp = weakref.proxy(tr) |
|
2469 | 2469 | |
|
2470 | 2470 | if ctx.manifestnode(): |
|
2471 | 2471 | # reuse an existing manifest revision |
|
2472 | 2472 | self.ui.debug('reusing known manifest\n') |
|
2473 | 2473 | mn = ctx.manifestnode() |
|
2474 | 2474 | files = ctx.files() |
|
2475 | 2475 | elif ctx.files(): |
|
2476 | 2476 | m1ctx = p1.manifestctx() |
|
2477 | 2477 | m2ctx = p2.manifestctx() |
|
2478 | 2478 | mctx = m1ctx.copy() |
|
2479 | 2479 | |
|
2480 | 2480 | m = mctx.read() |
|
2481 | 2481 | m1 = m1ctx.read() |
|
2482 | 2482 | m2 = m2ctx.read() |
|
2483 | 2483 | |
|
2484 | 2484 | # check in files |
|
2485 | 2485 | added = [] |
|
2486 | 2486 | changed = [] |
|
2487 | 2487 | removed = list(ctx.removed()) |
|
2488 | 2488 | linkrev = len(self) |
|
2489 | 2489 | self.ui.note(_("committing files:\n")) |
|
2490 | 2490 | for f in sorted(ctx.modified() + ctx.added()): |
|
2491 | 2491 | self.ui.note(f + "\n") |
|
2492 | 2492 | try: |
|
2493 | 2493 | fctx = ctx[f] |
|
2494 | 2494 | if fctx is None: |
|
2495 | 2495 | removed.append(f) |
|
2496 | 2496 | else: |
|
2497 | 2497 | added.append(f) |
|
2498 | 2498 | m[f] = self._filecommit(fctx, m1, m2, linkrev, |
|
2499 | 2499 | trp, changed) |
|
2500 | 2500 | m.setflag(f, fctx.flags()) |
|
2501 | 2501 | except OSError as inst: |
|
2502 | 2502 | self.ui.warn(_("trouble committing %s!\n") % f) |
|
2503 | 2503 | raise |
|
2504 | 2504 | except IOError as inst: |
|
2505 | 2505 | errcode = getattr(inst, 'errno', errno.ENOENT) |
|
2506 | 2506 | if error or errcode and errcode != errno.ENOENT: |
|
2507 | 2507 | self.ui.warn(_("trouble committing %s!\n") % f) |
|
2508 | 2508 | raise |
|
2509 | 2509 | |
|
2510 | 2510 | # update manifest |
|
2511 | 2511 | removed = [f for f in sorted(removed) if f in m1 or f in m2] |
|
2512 | 2512 | drop = [f for f in removed if f in m] |
|
2513 | 2513 | for f in drop: |
|
2514 | 2514 | del m[f] |
|
2515 | 2515 | files = changed + removed |
|
2516 | 2516 | md = None |
|
2517 | 2517 | if not files: |
|
2518 | 2518 | # if no "files" actually changed in terms of the changelog, |
|
2519 | 2519 | # try hard to detect unmodified manifest entry so that the |
|
2520 | 2520 | # exact same commit can be reproduced later on convert. |
|
2521 | 2521 | md = m1.diff(m, scmutil.matchfiles(self, ctx.files())) |
|
2522 | 2522 | if not files and md: |
|
2523 | 2523 | self.ui.debug('not reusing manifest (no file change in ' |
|
2524 | 2524 | 'changelog, but manifest differs)\n') |
|
2525 | 2525 | if files or md: |
|
2526 | 2526 | self.ui.note(_("committing manifest\n")) |
|
2527 | 2527 | # we're using narrowmatch here since it's already applied at |
|
2528 | 2528 | # other stages (such as dirstate.walk), so we're already |
|
2529 | 2529 | # ignoring things outside of narrowspec in most cases. The |
|
2530 | 2530 | # one case where we might have files outside the narrowspec |
|
2531 | 2531 | # at this point is merges, and we already error out in the |
|
2532 | 2532 | # case where the merge has files outside of the narrowspec, |
|
2533 | 2533 | # so this is safe. |
|
2534 | 2534 | mn = mctx.write(trp, linkrev, |
|
2535 | 2535 | p1.manifestnode(), p2.manifestnode(), |
|
2536 | 2536 | added, drop, match=self.narrowmatch()) |
|
2537 | 2537 | else: |
|
2538 | 2538 | self.ui.debug('reusing manifest form p1 (listed files ' |
|
2539 | 2539 | 'actually unchanged)\n') |
|
2540 | 2540 | mn = p1.manifestnode() |
|
2541 | 2541 | else: |
|
2542 | 2542 | self.ui.debug('reusing manifest from p1 (no file change)\n') |
|
2543 | 2543 | mn = p1.manifestnode() |
|
2544 | 2544 | files = [] |
|
2545 | 2545 | |
|
2546 | 2546 | # update changelog |
|
2547 | 2547 | self.ui.note(_("committing changelog\n")) |
|
2548 | 2548 | self.changelog.delayupdate(tr) |
|
2549 | 2549 | n = self.changelog.add(mn, files, ctx.description(), |
|
2550 | 2550 | trp, p1.node(), p2.node(), |
|
2551 | 2551 | user, ctx.date(), ctx.extra().copy()) |
|
2552 | 2552 | xp1, xp2 = p1.hex(), p2 and p2.hex() or '' |
|
2553 | 2553 | self.hook('pretxncommit', throw=True, node=hex(n), parent1=xp1, |
|
2554 | 2554 | parent2=xp2) |
|
2555 | 2555 | # set the new commit is proper phase |
|
2556 | 2556 | targetphase = subrepoutil.newcommitphase(self.ui, ctx) |
|
2557 | 2557 | if targetphase: |
|
2558 | 2558 | # retract boundary do not alter parent changeset. |
|
2559 | 2559 | # if a parent have higher the resulting phase will |
|
2560 | 2560 | # be compliant anyway |
|
2561 | 2561 | # |
|
2562 | 2562 | # if minimal phase was 0 we don't need to retract anything |
|
2563 | 2563 | phases.registernew(self, tr, targetphase, [n]) |
|
2564 | 2564 | tr.close() |
|
2565 | 2565 | return n |
|
2566 | 2566 | finally: |
|
2567 | 2567 | if tr: |
|
2568 | 2568 | tr.release() |
|
2569 | 2569 | lock.release() |
|
2570 | 2570 | |
|
2571 | 2571 | @unfilteredmethod |
|
2572 | 2572 | def destroying(self): |
|
2573 | 2573 | '''Inform the repository that nodes are about to be destroyed. |
|
2574 | 2574 | Intended for use by strip and rollback, so there's a common |
|
2575 | 2575 | place for anything that has to be done before destroying history. |
|
2576 | 2576 | |
|
2577 | 2577 | This is mostly useful for saving state that is in memory and waiting |
|
2578 | 2578 | to be flushed when the current lock is released. Because a call to |
|
2579 | 2579 | destroyed is imminent, the repo will be invalidated causing those |
|
2580 | 2580 | changes to stay in memory (waiting for the next unlock), or vanish |
|
2581 | 2581 | completely. |
|
2582 | 2582 | ''' |
|
2583 | 2583 | # When using the same lock to commit and strip, the phasecache is left |
|
2584 | 2584 | # dirty after committing. Then when we strip, the repo is invalidated, |
|
2585 | 2585 | # causing those changes to disappear. |
|
2586 | 2586 | if '_phasecache' in vars(self): |
|
2587 | 2587 | self._phasecache.write() |
|
2588 | 2588 | |
|
2589 | 2589 | @unfilteredmethod |
|
2590 | 2590 | def destroyed(self): |
|
2591 | 2591 | '''Inform the repository that nodes have been destroyed. |
|
2592 | 2592 | Intended for use by strip and rollback, so there's a common |
|
2593 | 2593 | place for anything that has to be done after destroying history. |
|
2594 | 2594 | ''' |
|
2595 | 2595 | # When one tries to: |
|
2596 | 2596 | # 1) destroy nodes thus calling this method (e.g. strip) |
|
2597 | 2597 | # 2) use phasecache somewhere (e.g. commit) |
|
2598 | 2598 | # |
|
2599 | 2599 | # then 2) will fail because the phasecache contains nodes that were |
|
2600 | 2600 | # removed. We can either remove phasecache from the filecache, |
|
2601 | 2601 | # causing it to reload next time it is accessed, or simply filter |
|
2602 | 2602 | # the removed nodes now and write the updated cache. |
|
2603 | 2603 | self._phasecache.filterunknown(self) |
|
2604 | 2604 | self._phasecache.write() |
|
2605 | 2605 | |
|
2606 | 2606 | # refresh all repository caches |
|
2607 | 2607 | self.updatecaches() |
|
2608 | 2608 | |
|
2609 | 2609 | # Ensure the persistent tag cache is updated. Doing it now |
|
2610 | 2610 | # means that the tag cache only has to worry about destroyed |
|
2611 | 2611 | # heads immediately after a strip/rollback. That in turn |
|
2612 | 2612 | # guarantees that "cachetip == currenttip" (comparing both rev |
|
2613 | 2613 | # and node) always means no nodes have been added or destroyed. |
|
2614 | 2614 | |
|
2615 | 2615 | # XXX this is suboptimal when qrefresh'ing: we strip the current |
|
2616 | 2616 | # head, refresh the tag cache, then immediately add a new head. |
|
2617 | 2617 | # But I think doing it this way is necessary for the "instant |
|
2618 | 2618 | # tag cache retrieval" case to work. |
|
2619 | 2619 | self.invalidate() |
|
2620 | 2620 | |
|
2621 | 2621 | def status(self, node1='.', node2=None, match=None, |
|
2622 | 2622 | ignored=False, clean=False, unknown=False, |
|
2623 | 2623 | listsubrepos=False): |
|
2624 | 2624 | '''a convenience method that calls node1.status(node2)''' |
|
2625 | 2625 | return self[node1].status(node2, match, ignored, clean, unknown, |
|
2626 | 2626 | listsubrepos) |
|
2627 | 2627 | |
|
2628 | 2628 | def addpostdsstatus(self, ps): |
|
2629 | 2629 | """Add a callback to run within the wlock, at the point at which status |
|
2630 | 2630 | fixups happen. |
|
2631 | 2631 | |
|
2632 | 2632 | On status completion, callback(wctx, status) will be called with the |
|
2633 | 2633 | wlock held, unless the dirstate has changed from underneath or the wlock |
|
2634 | 2634 | couldn't be grabbed. |
|
2635 | 2635 | |
|
2636 | 2636 | Callbacks should not capture and use a cached copy of the dirstate -- |
|
2637 | 2637 | it might change in the meanwhile. Instead, they should access the |
|
2638 | 2638 | dirstate via wctx.repo().dirstate. |
|
2639 | 2639 | |
|
2640 | 2640 | This list is emptied out after each status run -- extensions should |
|
2641 | 2641 | make sure it adds to this list each time dirstate.status is called. |
|
2642 | 2642 | Extensions should also make sure they don't call this for statuses |
|
2643 | 2643 | that don't involve the dirstate. |
|
2644 | 2644 | """ |
|
2645 | 2645 | |
|
2646 | 2646 | # The list is located here for uniqueness reasons -- it is actually |
|
2647 | 2647 | # managed by the workingctx, but that isn't unique per-repo. |
|
2648 | 2648 | self._postdsstatus.append(ps) |
|
2649 | 2649 | |
|
2650 | 2650 | def postdsstatus(self): |
|
2651 | 2651 | """Used by workingctx to get the list of post-dirstate-status hooks.""" |
|
2652 | 2652 | return self._postdsstatus |
|
2653 | 2653 | |
|
2654 | 2654 | def clearpostdsstatus(self): |
|
2655 | 2655 | """Used by workingctx to clear post-dirstate-status hooks.""" |
|
2656 | 2656 | del self._postdsstatus[:] |
|
2657 | 2657 | |
|
2658 | 2658 | def heads(self, start=None): |
|
2659 | 2659 | if start is None: |
|
2660 | 2660 | cl = self.changelog |
|
2661 | 2661 | headrevs = reversed(cl.headrevs()) |
|
2662 | 2662 | return [cl.node(rev) for rev in headrevs] |
|
2663 | 2663 | |
|
2664 | 2664 | heads = self.changelog.heads(start) |
|
2665 | 2665 | # sort the output in rev descending order |
|
2666 | 2666 | return sorted(heads, key=self.changelog.rev, reverse=True) |
|
2667 | 2667 | |
|
2668 | 2668 | def branchheads(self, branch=None, start=None, closed=False): |
|
2669 | 2669 | '''return a (possibly filtered) list of heads for the given branch |
|
2670 | 2670 | |
|
2671 | 2671 | Heads are returned in topological order, from newest to oldest. |
|
2672 | 2672 | If branch is None, use the dirstate branch. |
|
2673 | 2673 | If start is not None, return only heads reachable from start. |
|
2674 | 2674 | If closed is True, return heads that are marked as closed as well. |
|
2675 | 2675 | ''' |
|
2676 | 2676 | if branch is None: |
|
2677 | 2677 | branch = self[None].branch() |
|
2678 | 2678 | branches = self.branchmap() |
|
2679 | 2679 | if branch not in branches: |
|
2680 | 2680 | return [] |
|
2681 | 2681 | # the cache returns heads ordered lowest to highest |
|
2682 | 2682 | bheads = list(reversed(branches.branchheads(branch, closed=closed))) |
|
2683 | 2683 | if start is not None: |
|
2684 | 2684 | # filter out the heads that cannot be reached from startrev |
|
2685 | 2685 | fbheads = set(self.changelog.nodesbetween([start], bheads)[2]) |
|
2686 | 2686 | bheads = [h for h in bheads if h in fbheads] |
|
2687 | 2687 | return bheads |
|
2688 | 2688 | |
|
2689 | 2689 | def branches(self, nodes): |
|
2690 | 2690 | if not nodes: |
|
2691 | 2691 | nodes = [self.changelog.tip()] |
|
2692 | 2692 | b = [] |
|
2693 | 2693 | for n in nodes: |
|
2694 | 2694 | t = n |
|
2695 | 2695 | while True: |
|
2696 | 2696 | p = self.changelog.parents(n) |
|
2697 | 2697 | if p[1] != nullid or p[0] == nullid: |
|
2698 | 2698 | b.append((t, n, p[0], p[1])) |
|
2699 | 2699 | break |
|
2700 | 2700 | n = p[0] |
|
2701 | 2701 | return b |
|
2702 | 2702 | |
|
2703 | 2703 | def between(self, pairs): |
|
2704 | 2704 | r = [] |
|
2705 | 2705 | |
|
2706 | 2706 | for top, bottom in pairs: |
|
2707 | 2707 | n, l, i = top, [], 0 |
|
2708 | 2708 | f = 1 |
|
2709 | 2709 | |
|
2710 | 2710 | while n != bottom and n != nullid: |
|
2711 | 2711 | p = self.changelog.parents(n)[0] |
|
2712 | 2712 | if i == f: |
|
2713 | 2713 | l.append(n) |
|
2714 | 2714 | f = f * 2 |
|
2715 | 2715 | n = p |
|
2716 | 2716 | i += 1 |
|
2717 | 2717 | |
|
2718 | 2718 | r.append(l) |
|
2719 | 2719 | |
|
2720 | 2720 | return r |
|
2721 | 2721 | |
|
2722 | 2722 | def checkpush(self, pushop): |
|
2723 | 2723 | """Extensions can override this function if additional checks have |
|
2724 | 2724 | to be performed before pushing, or call it if they override push |
|
2725 | 2725 | command. |
|
2726 | 2726 | """ |
|
2727 | 2727 | |
|
2728 | 2728 | @unfilteredpropertycache |
|
2729 | 2729 | def prepushoutgoinghooks(self): |
|
2730 | 2730 | """Return util.hooks consists of a pushop with repo, remote, outgoing |
|
2731 | 2731 | methods, which are called before pushing changesets. |
|
2732 | 2732 | """ |
|
2733 | 2733 | return util.hooks() |
|
2734 | 2734 | |
|
2735 | 2735 | def pushkey(self, namespace, key, old, new): |
|
2736 | 2736 | try: |
|
2737 | 2737 | tr = self.currenttransaction() |
|
2738 | 2738 | hookargs = {} |
|
2739 | 2739 | if tr is not None: |
|
2740 | 2740 | hookargs.update(tr.hookargs) |
|
2741 | 2741 | hookargs = pycompat.strkwargs(hookargs) |
|
2742 | 2742 | hookargs[r'namespace'] = namespace |
|
2743 | 2743 | hookargs[r'key'] = key |
|
2744 | 2744 | hookargs[r'old'] = old |
|
2745 | 2745 | hookargs[r'new'] = new |
|
2746 | 2746 | self.hook('prepushkey', throw=True, **hookargs) |
|
2747 | 2747 | except error.HookAbort as exc: |
|
2748 | 2748 | self.ui.write_err(_("pushkey-abort: %s\n") % exc) |
|
2749 | 2749 | if exc.hint: |
|
2750 | 2750 | self.ui.write_err(_("(%s)\n") % exc.hint) |
|
2751 | 2751 | return False |
|
2752 | 2752 | self.ui.debug('pushing key for "%s:%s"\n' % (namespace, key)) |
|
2753 | 2753 | ret = pushkey.push(self, namespace, key, old, new) |
|
2754 | 2754 | def runhook(): |
|
2755 | 2755 | self.hook('pushkey', namespace=namespace, key=key, old=old, new=new, |
|
2756 | 2756 | ret=ret) |
|
2757 | 2757 | self._afterlock(runhook) |
|
2758 | 2758 | return ret |
|
2759 | 2759 | |
|
2760 | 2760 | def listkeys(self, namespace): |
|
2761 | 2761 | self.hook('prelistkeys', throw=True, namespace=namespace) |
|
2762 | 2762 | self.ui.debug('listing keys for "%s"\n' % namespace) |
|
2763 | 2763 | values = pushkey.list(self, namespace) |
|
2764 | 2764 | self.hook('listkeys', namespace=namespace, values=values) |
|
2765 | 2765 | return values |
|
2766 | 2766 | |
|
2767 | 2767 | def debugwireargs(self, one, two, three=None, four=None, five=None): |
|
2768 | 2768 | '''used to test argument passing over the wire''' |
|
2769 | 2769 | return "%s %s %s %s %s" % (one, two, pycompat.bytestr(three), |
|
2770 | 2770 | pycompat.bytestr(four), |
|
2771 | 2771 | pycompat.bytestr(five)) |
|
2772 | 2772 | |
|
2773 | 2773 | def savecommitmessage(self, text): |
|
2774 | 2774 | fp = self.vfs('last-message.txt', 'wb') |
|
2775 | 2775 | try: |
|
2776 | 2776 | fp.write(text) |
|
2777 | 2777 | finally: |
|
2778 | 2778 | fp.close() |
|
2779 | 2779 | return self.pathto(fp.name[len(self.root) + 1:]) |
|
2780 | 2780 | |
|
2781 | 2781 | # used to avoid circular references so destructors work |
|
2782 | 2782 | def aftertrans(files): |
|
2783 | 2783 | renamefiles = [tuple(t) for t in files] |
|
2784 | 2784 | def a(): |
|
2785 | 2785 | for vfs, src, dest in renamefiles: |
|
2786 | 2786 | # if src and dest refer to a same file, vfs.rename is a no-op, |
|
2787 | 2787 | # leaving both src and dest on disk. delete dest to make sure |
|
2788 | 2788 | # the rename couldn't be such a no-op. |
|
2789 | 2789 | vfs.tryunlink(dest) |
|
2790 | 2790 | try: |
|
2791 | 2791 | vfs.rename(src, dest) |
|
2792 | 2792 | except OSError: # journal file does not yet exist |
|
2793 | 2793 | pass |
|
2794 | 2794 | return a |
|
2795 | 2795 | |
|
2796 | 2796 | def undoname(fn): |
|
2797 | 2797 | base, name = os.path.split(fn) |
|
2798 | 2798 | assert name.startswith('journal') |
|
2799 | 2799 | return os.path.join(base, name.replace('journal', 'undo', 1)) |
|
2800 | 2800 | |
|
2801 | 2801 | def instance(ui, path, create, intents=None, createopts=None): |
|
2802 | 2802 | localpath = util.urllocalpath(path) |
|
2803 | 2803 | if create: |
|
2804 | 2804 | createrepository(ui, localpath, createopts=createopts) |
|
2805 | 2805 | |
|
2806 | 2806 | return makelocalrepository(ui, localpath, intents=intents) |
|
2807 | 2807 | |
|
2808 | 2808 | def islocal(path): |
|
2809 | 2809 | return True |
|
2810 | 2810 | |
|
2811 |
def |
|
|
2811 | def defaultcreateopts(ui, createopts=None): | |
|
2812 | """Populate the default creation options for a repository. | |
|
2813 | ||
|
2814 | A dictionary of explicitly requested creation options can be passed | |
|
2815 | in. Missing keys will be populated. | |
|
2816 | """ | |
|
2817 | createopts = dict(createopts or {}) | |
|
2818 | ||
|
2819 | if 'backend' not in createopts: | |
|
2820 | # experimental config: storage.new-repo-backend | |
|
2821 | createopts['backend'] = ui.config('storage', 'new-repo-backend') | |
|
2822 | ||
|
2823 | return createopts | |
|
2824 | ||
|
2825 | def newreporequirements(ui, createopts): | |
|
2812 | 2826 | """Determine the set of requirements for a new local repository. |
|
2813 | 2827 | |
|
2814 | 2828 | Extensions can wrap this function to specify custom requirements for |
|
2815 | 2829 | new repositories. |
|
2816 | 2830 | """ |
|
2817 | createopts = createopts or {} | |
|
2818 | ||
|
2819 | 2831 | # If the repo is being created from a shared repository, we copy |
|
2820 | 2832 | # its requirements. |
|
2821 | 2833 | if 'sharedrepo' in createopts: |
|
2822 | 2834 | requirements = set(createopts['sharedrepo'].requirements) |
|
2823 | 2835 | if createopts.get('sharedrelative'): |
|
2824 | 2836 | requirements.add('relshared') |
|
2825 | 2837 | else: |
|
2826 | 2838 | requirements.add('shared') |
|
2827 | 2839 | |
|
2828 | 2840 | return requirements |
|
2829 | 2841 | |
|
2842 | if 'backend' not in createopts: | |
|
2843 | raise error.ProgrammingError('backend key not present in createopts; ' | |
|
2844 | 'was defaultcreateopts() called?') | |
|
2845 | ||
|
2846 | if createopts['backend'] != 'revlogv1': | |
|
2847 | raise error.Abort(_('unable to determine repository requirements for ' | |
|
2848 | 'storage backend: %s') % createopts['backend']) | |
|
2849 | ||
|
2830 | 2850 | requirements = {'revlogv1'} |
|
2831 | 2851 | if ui.configbool('format', 'usestore'): |
|
2832 | 2852 | requirements.add('store') |
|
2833 | 2853 | if ui.configbool('format', 'usefncache'): |
|
2834 | 2854 | requirements.add('fncache') |
|
2835 | 2855 | if ui.configbool('format', 'dotencode'): |
|
2836 | 2856 | requirements.add('dotencode') |
|
2837 | 2857 | |
|
2838 | 2858 | compengine = ui.config('experimental', 'format.compression') |
|
2839 | 2859 | if compengine not in util.compengines: |
|
2840 | 2860 | raise error.Abort(_('compression engine %s defined by ' |
|
2841 | 2861 | 'experimental.format.compression not available') % |
|
2842 | 2862 | compengine, |
|
2843 | 2863 | hint=_('run "hg debuginstall" to list available ' |
|
2844 | 2864 | 'compression engines')) |
|
2845 | 2865 | |
|
2846 | 2866 | # zlib is the historical default and doesn't need an explicit requirement. |
|
2847 | 2867 | if compengine != 'zlib': |
|
2848 | 2868 | requirements.add('exp-compression-%s' % compengine) |
|
2849 | 2869 | |
|
2850 | 2870 | if scmutil.gdinitconfig(ui): |
|
2851 | 2871 | requirements.add('generaldelta') |
|
2852 | 2872 | if ui.configbool('experimental', 'treemanifest'): |
|
2853 | 2873 | requirements.add('treemanifest') |
|
2854 | 2874 | # experimental config: format.sparse-revlog |
|
2855 | 2875 | if ui.configbool('format', 'sparse-revlog'): |
|
2856 | 2876 | requirements.add(SPARSEREVLOG_REQUIREMENT) |
|
2857 | 2877 | |
|
2858 | 2878 | revlogv2 = ui.config('experimental', 'revlogv2') |
|
2859 | 2879 | if revlogv2 == 'enable-unstable-format-and-corrupt-my-data': |
|
2860 | 2880 | requirements.remove('revlogv1') |
|
2861 | 2881 | # generaldelta is implied by revlogv2. |
|
2862 | 2882 | requirements.discard('generaldelta') |
|
2863 | 2883 | requirements.add(REVLOGV2_REQUIREMENT) |
|
2864 | 2884 | # experimental config: format.internal-phase |
|
2865 | 2885 | if ui.configbool('format', 'internal-phase'): |
|
2866 | 2886 | requirements.add('internal-phase') |
|
2867 | 2887 | |
|
2868 | 2888 | if createopts.get('narrowfiles'): |
|
2869 | 2889 | requirements.add(repository.NARROW_REQUIREMENT) |
|
2870 | 2890 | |
|
2871 | 2891 | return requirements |
|
2872 | 2892 | |
|
2873 | 2893 | def filterknowncreateopts(ui, createopts): |
|
2874 | 2894 | """Filters a dict of repo creation options against options that are known. |
|
2875 | 2895 | |
|
2876 | 2896 | Receives a dict of repo creation options and returns a dict of those |
|
2877 | 2897 | options that we don't know how to handle. |
|
2878 | 2898 | |
|
2879 | 2899 | This function is called as part of repository creation. If the |
|
2880 | 2900 | returned dict contains any items, repository creation will not |
|
2881 | 2901 | be allowed, as it means there was a request to create a repository |
|
2882 | 2902 | with options not recognized by loaded code. |
|
2883 | 2903 | |
|
2884 | 2904 | Extensions can wrap this function to filter out creation options |
|
2885 | 2905 | they know how to handle. |
|
2886 | 2906 | """ |
|
2887 | 2907 | known = { |
|
2908 | 'backend', | |
|
2888 | 2909 | 'narrowfiles', |
|
2889 | 2910 | 'sharedrepo', |
|
2890 | 2911 | 'sharedrelative', |
|
2891 | 2912 | 'shareditems', |
|
2892 | 2913 | } |
|
2893 | 2914 | |
|
2894 | 2915 | return {k: v for k, v in createopts.items() if k not in known} |
|
2895 | 2916 | |
|
2896 | 2917 | def createrepository(ui, path, createopts=None): |
|
2897 | 2918 | """Create a new repository in a vfs. |
|
2898 | 2919 | |
|
2899 | 2920 | ``path`` path to the new repo's working directory. |
|
2900 | 2921 | ``createopts`` options for the new repository. |
|
2901 | 2922 | |
|
2902 | 2923 | The following keys for ``createopts`` are recognized: |
|
2903 | 2924 | |
|
2925 | backend | |
|
2926 | The storage backend to use. | |
|
2904 | 2927 | narrowfiles |
|
2905 | 2928 | Set up repository to support narrow file storage. |
|
2906 | 2929 | sharedrepo |
|
2907 | 2930 | Repository object from which storage should be shared. |
|
2908 | 2931 | sharedrelative |
|
2909 | 2932 | Boolean indicating if the path to the shared repo should be |
|
2910 | 2933 | stored as relative. By default, the pointer to the "parent" repo |
|
2911 | 2934 | is stored as an absolute path. |
|
2912 | 2935 | shareditems |
|
2913 | 2936 | Set of items to share to the new repository (in addition to storage). |
|
2914 | 2937 | """ |
|
2915 |
createopts = createopts |
|
|
2938 | createopts = defaultcreateopts(ui, createopts=createopts) | |
|
2916 | 2939 | |
|
2917 | 2940 | unknownopts = filterknowncreateopts(ui, createopts) |
|
2918 | 2941 | |
|
2919 | 2942 | if not isinstance(unknownopts, dict): |
|
2920 | 2943 | raise error.ProgrammingError('filterknowncreateopts() did not return ' |
|
2921 | 2944 | 'a dict') |
|
2922 | 2945 | |
|
2923 | 2946 | if unknownopts: |
|
2924 | 2947 | raise error.Abort(_('unable to create repository because of unknown ' |
|
2925 | 2948 | 'creation option: %s') % |
|
2926 | 2949 | ', '.join(sorted(unknownopts)), |
|
2927 | 2950 | hint=_('is a required extension not loaded?')) |
|
2928 | 2951 | |
|
2929 | 2952 | requirements = newreporequirements(ui, createopts=createopts) |
|
2930 | 2953 | |
|
2931 | 2954 | wdirvfs = vfsmod.vfs(path, expandpath=True, realpath=True) |
|
2932 | 2955 | |
|
2933 | 2956 | hgvfs = vfsmod.vfs(wdirvfs.join(b'.hg')) |
|
2934 | 2957 | if hgvfs.exists(): |
|
2935 | 2958 | raise error.RepoError(_('repository %s already exists') % path) |
|
2936 | 2959 | |
|
2937 | 2960 | if 'sharedrepo' in createopts: |
|
2938 | 2961 | sharedpath = createopts['sharedrepo'].sharedpath |
|
2939 | 2962 | |
|
2940 | 2963 | if createopts.get('sharedrelative'): |
|
2941 | 2964 | try: |
|
2942 | 2965 | sharedpath = os.path.relpath(sharedpath, hgvfs.base) |
|
2943 | 2966 | except (IOError, ValueError) as e: |
|
2944 | 2967 | # ValueError is raised on Windows if the drive letters differ |
|
2945 | 2968 | # on each path. |
|
2946 | 2969 | raise error.Abort(_('cannot calculate relative path'), |
|
2947 | 2970 | hint=stringutil.forcebytestr(e)) |
|
2948 | 2971 | |
|
2949 | 2972 | if not wdirvfs.exists(): |
|
2950 | 2973 | wdirvfs.makedirs() |
|
2951 | 2974 | |
|
2952 | 2975 | hgvfs.makedir(notindexed=True) |
|
2953 | 2976 | |
|
2954 | 2977 | if b'store' in requirements and 'sharedrepo' not in createopts: |
|
2955 | 2978 | hgvfs.mkdir(b'store') |
|
2956 | 2979 | |
|
2957 | 2980 | # We create an invalid changelog outside the store so very old |
|
2958 | 2981 | # Mercurial versions (which didn't know about the requirements |
|
2959 | 2982 | # file) encounter an error on reading the changelog. This |
|
2960 | 2983 | # effectively locks out old clients and prevents them from |
|
2961 | 2984 | # mucking with a repo in an unknown format. |
|
2962 | 2985 | # |
|
2963 | 2986 | # The revlog header has version 2, which won't be recognized by |
|
2964 | 2987 | # such old clients. |
|
2965 | 2988 | hgvfs.append(b'00changelog.i', |
|
2966 | 2989 | b'\0\0\0\2 dummy changelog to prevent using the old repo ' |
|
2967 | 2990 | b'layout') |
|
2968 | 2991 | |
|
2969 | 2992 | scmutil.writerequires(hgvfs, requirements) |
|
2970 | 2993 | |
|
2971 | 2994 | # Write out file telling readers where to find the shared store. |
|
2972 | 2995 | if 'sharedrepo' in createopts: |
|
2973 | 2996 | hgvfs.write(b'sharedpath', sharedpath) |
|
2974 | 2997 | |
|
2975 | 2998 | if createopts.get('shareditems'): |
|
2976 | 2999 | shared = b'\n'.join(sorted(createopts['shareditems'])) + b'\n' |
|
2977 | 3000 | hgvfs.write(b'shared', shared) |
|
2978 | 3001 | |
|
2979 | 3002 | def poisonrepository(repo): |
|
2980 | 3003 | """Poison a repository instance so it can no longer be used.""" |
|
2981 | 3004 | # Perform any cleanup on the instance. |
|
2982 | 3005 | repo.close() |
|
2983 | 3006 | |
|
2984 | 3007 | # Our strategy is to replace the type of the object with one that |
|
2985 | 3008 | # has all attribute lookups result in error. |
|
2986 | 3009 | # |
|
2987 | 3010 | # But we have to allow the close() method because some constructors |
|
2988 | 3011 | # of repos call close() on repo references. |
|
2989 | 3012 | class poisonedrepository(object): |
|
2990 | 3013 | def __getattribute__(self, item): |
|
2991 | 3014 | if item == r'close': |
|
2992 | 3015 | return object.__getattribute__(self, item) |
|
2993 | 3016 | |
|
2994 | 3017 | raise error.ProgrammingError('repo instances should not be used ' |
|
2995 | 3018 | 'after unshare') |
|
2996 | 3019 | |
|
2997 | 3020 | def close(self): |
|
2998 | 3021 | pass |
|
2999 | 3022 | |
|
3000 | 3023 | # We may have a repoview, which intercepts __setattr__. So be sure |
|
3001 | 3024 | # we operate at the lowest level possible. |
|
3002 | 3025 | object.__setattr__(repo, r'__class__', poisonedrepository) |
@@ -1,895 +1,897 | |||
|
1 | 1 | # upgrade.py - functions for in place upgrade of Mercurial repository |
|
2 | 2 | # |
|
3 | 3 | # Copyright (c) 2016-present, Gregory Szorc |
|
4 | 4 | # |
|
5 | 5 | # This software may be used and distributed according to the terms of the |
|
6 | 6 | # GNU General Public License version 2 or any later version. |
|
7 | 7 | |
|
8 | 8 | from __future__ import absolute_import |
|
9 | 9 | |
|
10 | 10 | import stat |
|
11 | 11 | |
|
12 | 12 | from .i18n import _ |
|
13 | 13 | from . import ( |
|
14 | 14 | changelog, |
|
15 | 15 | error, |
|
16 | 16 | filelog, |
|
17 | 17 | hg, |
|
18 | 18 | localrepo, |
|
19 | 19 | manifest, |
|
20 | 20 | pycompat, |
|
21 | 21 | revlog, |
|
22 | 22 | scmutil, |
|
23 | 23 | util, |
|
24 | 24 | vfs as vfsmod, |
|
25 | 25 | ) |
|
26 | 26 | |
|
27 | 27 | def requiredsourcerequirements(repo): |
|
28 | 28 | """Obtain requirements required to be present to upgrade a repo. |
|
29 | 29 | |
|
30 | 30 | An upgrade will not be allowed if the repository doesn't have the |
|
31 | 31 | requirements returned by this function. |
|
32 | 32 | """ |
|
33 | 33 | return { |
|
34 | 34 | # Introduced in Mercurial 0.9.2. |
|
35 | 35 | 'revlogv1', |
|
36 | 36 | # Introduced in Mercurial 0.9.2. |
|
37 | 37 | 'store', |
|
38 | 38 | } |
|
39 | 39 | |
|
40 | 40 | def blocksourcerequirements(repo): |
|
41 | 41 | """Obtain requirements that will prevent an upgrade from occurring. |
|
42 | 42 | |
|
43 | 43 | An upgrade cannot be performed if the source repository contains a |
|
44 | 44 | requirements in the returned set. |
|
45 | 45 | """ |
|
46 | 46 | return { |
|
47 | 47 | # The upgrade code does not yet support these experimental features. |
|
48 | 48 | # This is an artificial limitation. |
|
49 | 49 | 'treemanifest', |
|
50 | 50 | # This was a precursor to generaldelta and was never enabled by default. |
|
51 | 51 | # It should (hopefully) not exist in the wild. |
|
52 | 52 | 'parentdelta', |
|
53 | 53 | # Upgrade should operate on the actual store, not the shared link. |
|
54 | 54 | 'shared', |
|
55 | 55 | } |
|
56 | 56 | |
|
57 | 57 | def supportremovedrequirements(repo): |
|
58 | 58 | """Obtain requirements that can be removed during an upgrade. |
|
59 | 59 | |
|
60 | 60 | If an upgrade were to create a repository that dropped a requirement, |
|
61 | 61 | the dropped requirement must appear in the returned set for the upgrade |
|
62 | 62 | to be allowed. |
|
63 | 63 | """ |
|
64 | 64 | return { |
|
65 | 65 | localrepo.SPARSEREVLOG_REQUIREMENT, |
|
66 | 66 | } |
|
67 | 67 | |
|
68 | 68 | def supporteddestrequirements(repo): |
|
69 | 69 | """Obtain requirements that upgrade supports in the destination. |
|
70 | 70 | |
|
71 | 71 | If the result of the upgrade would create requirements not in this set, |
|
72 | 72 | the upgrade is disallowed. |
|
73 | 73 | |
|
74 | 74 | Extensions should monkeypatch this to add their custom requirements. |
|
75 | 75 | """ |
|
76 | 76 | return { |
|
77 | 77 | 'dotencode', |
|
78 | 78 | 'fncache', |
|
79 | 79 | 'generaldelta', |
|
80 | 80 | 'revlogv1', |
|
81 | 81 | 'store', |
|
82 | 82 | localrepo.SPARSEREVLOG_REQUIREMENT, |
|
83 | 83 | } |
|
84 | 84 | |
|
85 | 85 | def allowednewrequirements(repo): |
|
86 | 86 | """Obtain requirements that can be added to a repository during upgrade. |
|
87 | 87 | |
|
88 | 88 | This is used to disallow proposed requirements from being added when |
|
89 | 89 | they weren't present before. |
|
90 | 90 | |
|
91 | 91 | We use a list of allowed requirement additions instead of a list of known |
|
92 | 92 | bad additions because the whitelist approach is safer and will prevent |
|
93 | 93 | future, unknown requirements from accidentally being added. |
|
94 | 94 | """ |
|
95 | 95 | return { |
|
96 | 96 | 'dotencode', |
|
97 | 97 | 'fncache', |
|
98 | 98 | 'generaldelta', |
|
99 | 99 | localrepo.SPARSEREVLOG_REQUIREMENT, |
|
100 | 100 | } |
|
101 | 101 | |
|
102 | 102 | def preservedrequirements(repo): |
|
103 | 103 | return set() |
|
104 | 104 | |
|
105 | 105 | deficiency = 'deficiency' |
|
106 | 106 | optimisation = 'optimization' |
|
107 | 107 | |
|
108 | 108 | class improvement(object): |
|
109 | 109 | """Represents an improvement that can be made as part of an upgrade. |
|
110 | 110 | |
|
111 | 111 | The following attributes are defined on each instance: |
|
112 | 112 | |
|
113 | 113 | name |
|
114 | 114 | Machine-readable string uniquely identifying this improvement. It |
|
115 | 115 | will be mapped to an action later in the upgrade process. |
|
116 | 116 | |
|
117 | 117 | type |
|
118 | 118 | Either ``deficiency`` or ``optimisation``. A deficiency is an obvious |
|
119 | 119 | problem. An optimization is an action (sometimes optional) that |
|
120 | 120 | can be taken to further improve the state of the repository. |
|
121 | 121 | |
|
122 | 122 | description |
|
123 | 123 | Message intended for humans explaining the improvement in more detail, |
|
124 | 124 | including the implications of it. For ``deficiency`` types, should be |
|
125 | 125 | worded in the present tense. For ``optimisation`` types, should be |
|
126 | 126 | worded in the future tense. |
|
127 | 127 | |
|
128 | 128 | upgrademessage |
|
129 | 129 | Message intended for humans explaining what an upgrade addressing this |
|
130 | 130 | issue will do. Should be worded in the future tense. |
|
131 | 131 | """ |
|
132 | 132 | def __init__(self, name, type, description, upgrademessage): |
|
133 | 133 | self.name = name |
|
134 | 134 | self.type = type |
|
135 | 135 | self.description = description |
|
136 | 136 | self.upgrademessage = upgrademessage |
|
137 | 137 | |
|
138 | 138 | def __eq__(self, other): |
|
139 | 139 | if not isinstance(other, improvement): |
|
140 | 140 | # This is what python tell use to do |
|
141 | 141 | return NotImplemented |
|
142 | 142 | return self.name == other.name |
|
143 | 143 | |
|
144 | 144 | def __ne__(self, other): |
|
145 | 145 | return not self == other |
|
146 | 146 | |
|
147 | 147 | def __hash__(self): |
|
148 | 148 | return hash(self.name) |
|
149 | 149 | |
|
150 | 150 | allformatvariant = [] |
|
151 | 151 | |
|
152 | 152 | def registerformatvariant(cls): |
|
153 | 153 | allformatvariant.append(cls) |
|
154 | 154 | return cls |
|
155 | 155 | |
|
156 | 156 | class formatvariant(improvement): |
|
157 | 157 | """an improvement subclass dedicated to repository format""" |
|
158 | 158 | type = deficiency |
|
159 | 159 | ### The following attributes should be defined for each class: |
|
160 | 160 | |
|
161 | 161 | # machine-readable string uniquely identifying this improvement. it will be |
|
162 | 162 | # mapped to an action later in the upgrade process. |
|
163 | 163 | name = None |
|
164 | 164 | |
|
165 | 165 | # message intended for humans explaining the improvement in more detail, |
|
166 | 166 | # including the implications of it ``deficiency`` types, should be worded |
|
167 | 167 | # in the present tense. |
|
168 | 168 | description = None |
|
169 | 169 | |
|
170 | 170 | # message intended for humans explaining what an upgrade addressing this |
|
171 | 171 | # issue will do. should be worded in the future tense. |
|
172 | 172 | upgrademessage = None |
|
173 | 173 | |
|
174 | 174 | # value of current Mercurial default for new repository |
|
175 | 175 | default = None |
|
176 | 176 | |
|
177 | 177 | def __init__(self): |
|
178 | 178 | raise NotImplementedError() |
|
179 | 179 | |
|
180 | 180 | @staticmethod |
|
181 | 181 | def fromrepo(repo): |
|
182 | 182 | """current value of the variant in the repository""" |
|
183 | 183 | raise NotImplementedError() |
|
184 | 184 | |
|
185 | 185 | @staticmethod |
|
186 | 186 | def fromconfig(repo): |
|
187 | 187 | """current value of the variant in the configuration""" |
|
188 | 188 | raise NotImplementedError() |
|
189 | 189 | |
|
190 | 190 | class requirementformatvariant(formatvariant): |
|
191 | 191 | """formatvariant based on a 'requirement' name. |
|
192 | 192 | |
|
193 | 193 | Many format variant are controlled by a 'requirement'. We define a small |
|
194 | 194 | subclass to factor the code. |
|
195 | 195 | """ |
|
196 | 196 | |
|
197 | 197 | # the requirement that control this format variant |
|
198 | 198 | _requirement = None |
|
199 | 199 | |
|
200 | 200 | @staticmethod |
|
201 | 201 | def _newreporequirements(ui): |
|
202 |
return localrepo.newreporequirements( |
|
|
202 | return localrepo.newreporequirements( | |
|
203 | ui, localrepo.defaultcreateopts(ui)) | |
|
203 | 204 | |
|
204 | 205 | @classmethod |
|
205 | 206 | def fromrepo(cls, repo): |
|
206 | 207 | assert cls._requirement is not None |
|
207 | 208 | return cls._requirement in repo.requirements |
|
208 | 209 | |
|
209 | 210 | @classmethod |
|
210 | 211 | def fromconfig(cls, repo): |
|
211 | 212 | assert cls._requirement is not None |
|
212 | 213 | return cls._requirement in cls._newreporequirements(repo.ui) |
|
213 | 214 | |
|
214 | 215 | @registerformatvariant |
|
215 | 216 | class fncache(requirementformatvariant): |
|
216 | 217 | name = 'fncache' |
|
217 | 218 | |
|
218 | 219 | _requirement = 'fncache' |
|
219 | 220 | |
|
220 | 221 | default = True |
|
221 | 222 | |
|
222 | 223 | description = _('long and reserved filenames may not work correctly; ' |
|
223 | 224 | 'repository performance is sub-optimal') |
|
224 | 225 | |
|
225 | 226 | upgrademessage = _('repository will be more resilient to storing ' |
|
226 | 227 | 'certain paths and performance of certain ' |
|
227 | 228 | 'operations should be improved') |
|
228 | 229 | |
|
229 | 230 | @registerformatvariant |
|
230 | 231 | class dotencode(requirementformatvariant): |
|
231 | 232 | name = 'dotencode' |
|
232 | 233 | |
|
233 | 234 | _requirement = 'dotencode' |
|
234 | 235 | |
|
235 | 236 | default = True |
|
236 | 237 | |
|
237 | 238 | description = _('storage of filenames beginning with a period or ' |
|
238 | 239 | 'space may not work correctly') |
|
239 | 240 | |
|
240 | 241 | upgrademessage = _('repository will be better able to store files ' |
|
241 | 242 | 'beginning with a space or period') |
|
242 | 243 | |
|
243 | 244 | @registerformatvariant |
|
244 | 245 | class generaldelta(requirementformatvariant): |
|
245 | 246 | name = 'generaldelta' |
|
246 | 247 | |
|
247 | 248 | _requirement = 'generaldelta' |
|
248 | 249 | |
|
249 | 250 | default = True |
|
250 | 251 | |
|
251 | 252 | description = _('deltas within internal storage are unable to ' |
|
252 | 253 | 'choose optimal revisions; repository is larger and ' |
|
253 | 254 | 'slower than it could be; interaction with other ' |
|
254 | 255 | 'repositories may require extra network and CPU ' |
|
255 | 256 | 'resources, making "hg push" and "hg pull" slower') |
|
256 | 257 | |
|
257 | 258 | upgrademessage = _('repository storage will be able to create ' |
|
258 | 259 | 'optimal deltas; new repository data will be ' |
|
259 | 260 | 'smaller and read times should decrease; ' |
|
260 | 261 | 'interacting with other repositories using this ' |
|
261 | 262 | 'storage model should require less network and ' |
|
262 | 263 | 'CPU resources, making "hg push" and "hg pull" ' |
|
263 | 264 | 'faster') |
|
264 | 265 | |
|
265 | 266 | @registerformatvariant |
|
266 | 267 | class sparserevlog(requirementformatvariant): |
|
267 | 268 | name = 'sparserevlog' |
|
268 | 269 | |
|
269 | 270 | _requirement = localrepo.SPARSEREVLOG_REQUIREMENT |
|
270 | 271 | |
|
271 | 272 | default = False |
|
272 | 273 | |
|
273 | 274 | description = _('in order to limit disk reading and memory usage on older ' |
|
274 | 275 | 'version, the span of a delta chain from its root to its ' |
|
275 | 276 | 'end is limited, whatever the relevant data in this span. ' |
|
276 | 277 | 'This can severly limit Mercurial ability to build good ' |
|
277 | 278 | 'chain of delta resulting is much more storage space being ' |
|
278 | 279 | 'taken and limit reusability of on disk delta during ' |
|
279 | 280 | 'exchange.' |
|
280 | 281 | ) |
|
281 | 282 | |
|
282 | 283 | upgrademessage = _('Revlog supports delta chain with more unused data ' |
|
283 | 284 | 'between payload. These gaps will be skipped at read ' |
|
284 | 285 | 'time. This allows for better delta chains, making a ' |
|
285 | 286 | 'better compression and faster exchange with server.') |
|
286 | 287 | |
|
287 | 288 | @registerformatvariant |
|
288 | 289 | class removecldeltachain(formatvariant): |
|
289 | 290 | name = 'plain-cl-delta' |
|
290 | 291 | |
|
291 | 292 | default = True |
|
292 | 293 | |
|
293 | 294 | description = _('changelog storage is using deltas instead of ' |
|
294 | 295 | 'raw entries; changelog reading and any ' |
|
295 | 296 | 'operation relying on changelog data are slower ' |
|
296 | 297 | 'than they could be') |
|
297 | 298 | |
|
298 | 299 | upgrademessage = _('changelog storage will be reformated to ' |
|
299 | 300 | 'store raw entries; changelog reading will be ' |
|
300 | 301 | 'faster; changelog size may be reduced') |
|
301 | 302 | |
|
302 | 303 | @staticmethod |
|
303 | 304 | def fromrepo(repo): |
|
304 | 305 | # Mercurial 4.0 changed changelogs to not use delta chains. Search for |
|
305 | 306 | # changelogs with deltas. |
|
306 | 307 | cl = repo.changelog |
|
307 | 308 | chainbase = cl.chainbase |
|
308 | 309 | return all(rev == chainbase(rev) for rev in cl) |
|
309 | 310 | |
|
310 | 311 | @staticmethod |
|
311 | 312 | def fromconfig(repo): |
|
312 | 313 | return True |
|
313 | 314 | |
|
314 | 315 | @registerformatvariant |
|
315 | 316 | class compressionengine(formatvariant): |
|
316 | 317 | name = 'compression' |
|
317 | 318 | default = 'zlib' |
|
318 | 319 | |
|
319 | 320 | description = _('Compresion algorithm used to compress data. ' |
|
320 | 321 | 'Some engine are faster than other') |
|
321 | 322 | |
|
322 | 323 | upgrademessage = _('revlog content will be recompressed with the new ' |
|
323 | 324 | 'algorithm.') |
|
324 | 325 | |
|
325 | 326 | @classmethod |
|
326 | 327 | def fromrepo(cls, repo): |
|
327 | 328 | for req in repo.requirements: |
|
328 | 329 | if req.startswith('exp-compression-'): |
|
329 | 330 | return req.split('-', 2)[2] |
|
330 | 331 | return 'zlib' |
|
331 | 332 | |
|
332 | 333 | @classmethod |
|
333 | 334 | def fromconfig(cls, repo): |
|
334 | 335 | return repo.ui.config('experimental', 'format.compression') |
|
335 | 336 | |
|
336 | 337 | def finddeficiencies(repo): |
|
337 | 338 | """returns a list of deficiencies that the repo suffer from""" |
|
338 | 339 | deficiencies = [] |
|
339 | 340 | |
|
340 | 341 | # We could detect lack of revlogv1 and store here, but they were added |
|
341 | 342 | # in 0.9.2 and we don't support upgrading repos without these |
|
342 | 343 | # requirements, so let's not bother. |
|
343 | 344 | |
|
344 | 345 | for fv in allformatvariant: |
|
345 | 346 | if not fv.fromrepo(repo): |
|
346 | 347 | deficiencies.append(fv) |
|
347 | 348 | |
|
348 | 349 | return deficiencies |
|
349 | 350 | |
|
350 | 351 | def findoptimizations(repo): |
|
351 | 352 | """Determine optimisation that could be used during upgrade""" |
|
352 | 353 | # These are unconditionally added. There is logic later that figures out |
|
353 | 354 | # which ones to apply. |
|
354 | 355 | optimizations = [] |
|
355 | 356 | |
|
356 | 357 | optimizations.append(improvement( |
|
357 | 358 | name='redeltaparent', |
|
358 | 359 | type=optimisation, |
|
359 | 360 | description=_('deltas within internal storage will be recalculated to ' |
|
360 | 361 | 'choose an optimal base revision where this was not ' |
|
361 | 362 | 'already done; the size of the repository may shrink and ' |
|
362 | 363 | 'various operations may become faster; the first time ' |
|
363 | 364 | 'this optimization is performed could slow down upgrade ' |
|
364 | 365 | 'execution considerably; subsequent invocations should ' |
|
365 | 366 | 'not run noticeably slower'), |
|
366 | 367 | upgrademessage=_('deltas within internal storage will choose a new ' |
|
367 | 368 | 'base revision if needed'))) |
|
368 | 369 | |
|
369 | 370 | optimizations.append(improvement( |
|
370 | 371 | name='redeltamultibase', |
|
371 | 372 | type=optimisation, |
|
372 | 373 | description=_('deltas within internal storage will be recalculated ' |
|
373 | 374 | 'against multiple base revision and the smallest ' |
|
374 | 375 | 'difference will be used; the size of the repository may ' |
|
375 | 376 | 'shrink significantly when there are many merges; this ' |
|
376 | 377 | 'optimization will slow down execution in proportion to ' |
|
377 | 378 | 'the number of merges in the repository and the amount ' |
|
378 | 379 | 'of files in the repository; this slow down should not ' |
|
379 | 380 | 'be significant unless there are tens of thousands of ' |
|
380 | 381 | 'files and thousands of merges'), |
|
381 | 382 | upgrademessage=_('deltas within internal storage will choose an ' |
|
382 | 383 | 'optimal delta by computing deltas against multiple ' |
|
383 | 384 | 'parents; may slow down execution time ' |
|
384 | 385 | 'significantly'))) |
|
385 | 386 | |
|
386 | 387 | optimizations.append(improvement( |
|
387 | 388 | name='redeltaall', |
|
388 | 389 | type=optimisation, |
|
389 | 390 | description=_('deltas within internal storage will always be ' |
|
390 | 391 | 'recalculated without reusing prior deltas; this will ' |
|
391 | 392 | 'likely make execution run several times slower; this ' |
|
392 | 393 | 'optimization is typically not needed'), |
|
393 | 394 | upgrademessage=_('deltas within internal storage will be fully ' |
|
394 | 395 | 'recomputed; this will likely drastically slow down ' |
|
395 | 396 | 'execution time'))) |
|
396 | 397 | |
|
397 | 398 | optimizations.append(improvement( |
|
398 | 399 | name='redeltafulladd', |
|
399 | 400 | type=optimisation, |
|
400 | 401 | description=_('every revision will be re-added as if it was new ' |
|
401 | 402 | 'content. It will go through the full storage ' |
|
402 | 403 | 'mechanism giving extensions a chance to process it ' |
|
403 | 404 | '(eg. lfs). This is similar to "redeltaall" but even ' |
|
404 | 405 | 'slower since more logic is involved.'), |
|
405 | 406 | upgrademessage=_('each revision will be added as new content to the ' |
|
406 | 407 | 'internal storage; this will likely drastically slow ' |
|
407 | 408 | 'down execution time, but some extensions might need ' |
|
408 | 409 | 'it'))) |
|
409 | 410 | |
|
410 | 411 | return optimizations |
|
411 | 412 | |
|
412 | 413 | def determineactions(repo, deficiencies, sourcereqs, destreqs): |
|
413 | 414 | """Determine upgrade actions that will be performed. |
|
414 | 415 | |
|
415 | 416 | Given a list of improvements as returned by ``finddeficiencies`` and |
|
416 | 417 | ``findoptimizations``, determine the list of upgrade actions that |
|
417 | 418 | will be performed. |
|
418 | 419 | |
|
419 | 420 | The role of this function is to filter improvements if needed, apply |
|
420 | 421 | recommended optimizations from the improvements list that make sense, |
|
421 | 422 | etc. |
|
422 | 423 | |
|
423 | 424 | Returns a list of action names. |
|
424 | 425 | """ |
|
425 | 426 | newactions = [] |
|
426 | 427 | |
|
427 | 428 | knownreqs = supporteddestrequirements(repo) |
|
428 | 429 | |
|
429 | 430 | for d in deficiencies: |
|
430 | 431 | name = d.name |
|
431 | 432 | |
|
432 | 433 | # If the action is a requirement that doesn't show up in the |
|
433 | 434 | # destination requirements, prune the action. |
|
434 | 435 | if name in knownreqs and name not in destreqs: |
|
435 | 436 | continue |
|
436 | 437 | |
|
437 | 438 | newactions.append(d) |
|
438 | 439 | |
|
439 | 440 | # FUTURE consider adding some optimizations here for certain transitions. |
|
440 | 441 | # e.g. adding generaldelta could schedule parent redeltas. |
|
441 | 442 | |
|
442 | 443 | return newactions |
|
443 | 444 | |
|
444 | 445 | def _revlogfrompath(repo, path): |
|
445 | 446 | """Obtain a revlog from a repo path. |
|
446 | 447 | |
|
447 | 448 | An instance of the appropriate class is returned. |
|
448 | 449 | """ |
|
449 | 450 | if path == '00changelog.i': |
|
450 | 451 | return changelog.changelog(repo.svfs) |
|
451 | 452 | elif path.endswith('00manifest.i'): |
|
452 | 453 | mandir = path[:-len('00manifest.i')] |
|
453 | 454 | return manifest.manifestrevlog(repo.svfs, tree=mandir) |
|
454 | 455 | else: |
|
455 | 456 | #reverse of "/".join(("data", path + ".i")) |
|
456 | 457 | return filelog.filelog(repo.svfs, path[5:-2]) |
|
457 | 458 | |
|
458 | 459 | def _copyrevlogs(ui, srcrepo, dstrepo, tr, deltareuse, deltabothparents): |
|
459 | 460 | """Copy revlogs between 2 repos.""" |
|
460 | 461 | revcount = 0 |
|
461 | 462 | srcsize = 0 |
|
462 | 463 | srcrawsize = 0 |
|
463 | 464 | dstsize = 0 |
|
464 | 465 | fcount = 0 |
|
465 | 466 | frevcount = 0 |
|
466 | 467 | fsrcsize = 0 |
|
467 | 468 | frawsize = 0 |
|
468 | 469 | fdstsize = 0 |
|
469 | 470 | mcount = 0 |
|
470 | 471 | mrevcount = 0 |
|
471 | 472 | msrcsize = 0 |
|
472 | 473 | mrawsize = 0 |
|
473 | 474 | mdstsize = 0 |
|
474 | 475 | crevcount = 0 |
|
475 | 476 | csrcsize = 0 |
|
476 | 477 | crawsize = 0 |
|
477 | 478 | cdstsize = 0 |
|
478 | 479 | |
|
479 | 480 | # Perform a pass to collect metadata. This validates we can open all |
|
480 | 481 | # source files and allows a unified progress bar to be displayed. |
|
481 | 482 | for unencoded, encoded, size in srcrepo.store.walk(): |
|
482 | 483 | if unencoded.endswith('.d'): |
|
483 | 484 | continue |
|
484 | 485 | |
|
485 | 486 | rl = _revlogfrompath(srcrepo, unencoded) |
|
486 | 487 | |
|
487 | 488 | info = rl.storageinfo(exclusivefiles=True, revisionscount=True, |
|
488 | 489 | trackedsize=True, storedsize=True) |
|
489 | 490 | |
|
490 | 491 | revcount += info['revisionscount'] or 0 |
|
491 | 492 | datasize = info['storedsize'] or 0 |
|
492 | 493 | rawsize = info['trackedsize'] or 0 |
|
493 | 494 | |
|
494 | 495 | srcsize += datasize |
|
495 | 496 | srcrawsize += rawsize |
|
496 | 497 | |
|
497 | 498 | # This is for the separate progress bars. |
|
498 | 499 | if isinstance(rl, changelog.changelog): |
|
499 | 500 | crevcount += len(rl) |
|
500 | 501 | csrcsize += datasize |
|
501 | 502 | crawsize += rawsize |
|
502 | 503 | elif isinstance(rl, manifest.manifestrevlog): |
|
503 | 504 | mcount += 1 |
|
504 | 505 | mrevcount += len(rl) |
|
505 | 506 | msrcsize += datasize |
|
506 | 507 | mrawsize += rawsize |
|
507 | 508 | elif isinstance(rl, filelog.filelog): |
|
508 | 509 | fcount += 1 |
|
509 | 510 | frevcount += len(rl) |
|
510 | 511 | fsrcsize += datasize |
|
511 | 512 | frawsize += rawsize |
|
512 | 513 | else: |
|
513 | 514 | error.ProgrammingError('unknown revlog type') |
|
514 | 515 | |
|
515 | 516 | if not revcount: |
|
516 | 517 | return |
|
517 | 518 | |
|
518 | 519 | ui.write(_('migrating %d total revisions (%d in filelogs, %d in manifests, ' |
|
519 | 520 | '%d in changelog)\n') % |
|
520 | 521 | (revcount, frevcount, mrevcount, crevcount)) |
|
521 | 522 | ui.write(_('migrating %s in store; %s tracked data\n') % ( |
|
522 | 523 | (util.bytecount(srcsize), util.bytecount(srcrawsize)))) |
|
523 | 524 | |
|
524 | 525 | # Used to keep track of progress. |
|
525 | 526 | progress = None |
|
526 | 527 | def oncopiedrevision(rl, rev, node): |
|
527 | 528 | progress.increment() |
|
528 | 529 | |
|
529 | 530 | # Do the actual copying. |
|
530 | 531 | # FUTURE this operation can be farmed off to worker processes. |
|
531 | 532 | seen = set() |
|
532 | 533 | for unencoded, encoded, size in srcrepo.store.walk(): |
|
533 | 534 | if unencoded.endswith('.d'): |
|
534 | 535 | continue |
|
535 | 536 | |
|
536 | 537 | oldrl = _revlogfrompath(srcrepo, unencoded) |
|
537 | 538 | newrl = _revlogfrompath(dstrepo, unencoded) |
|
538 | 539 | |
|
539 | 540 | if isinstance(oldrl, changelog.changelog) and 'c' not in seen: |
|
540 | 541 | ui.write(_('finished migrating %d manifest revisions across %d ' |
|
541 | 542 | 'manifests; change in size: %s\n') % |
|
542 | 543 | (mrevcount, mcount, util.bytecount(mdstsize - msrcsize))) |
|
543 | 544 | |
|
544 | 545 | ui.write(_('migrating changelog containing %d revisions ' |
|
545 | 546 | '(%s in store; %s tracked data)\n') % |
|
546 | 547 | (crevcount, util.bytecount(csrcsize), |
|
547 | 548 | util.bytecount(crawsize))) |
|
548 | 549 | seen.add('c') |
|
549 | 550 | progress = srcrepo.ui.makeprogress(_('changelog revisions'), |
|
550 | 551 | total=crevcount) |
|
551 | 552 | elif isinstance(oldrl, manifest.manifestrevlog) and 'm' not in seen: |
|
552 | 553 | ui.write(_('finished migrating %d filelog revisions across %d ' |
|
553 | 554 | 'filelogs; change in size: %s\n') % |
|
554 | 555 | (frevcount, fcount, util.bytecount(fdstsize - fsrcsize))) |
|
555 | 556 | |
|
556 | 557 | ui.write(_('migrating %d manifests containing %d revisions ' |
|
557 | 558 | '(%s in store; %s tracked data)\n') % |
|
558 | 559 | (mcount, mrevcount, util.bytecount(msrcsize), |
|
559 | 560 | util.bytecount(mrawsize))) |
|
560 | 561 | seen.add('m') |
|
561 | 562 | if progress: |
|
562 | 563 | progress.complete() |
|
563 | 564 | progress = srcrepo.ui.makeprogress(_('manifest revisions'), |
|
564 | 565 | total=mrevcount) |
|
565 | 566 | elif 'f' not in seen: |
|
566 | 567 | ui.write(_('migrating %d filelogs containing %d revisions ' |
|
567 | 568 | '(%s in store; %s tracked data)\n') % |
|
568 | 569 | (fcount, frevcount, util.bytecount(fsrcsize), |
|
569 | 570 | util.bytecount(frawsize))) |
|
570 | 571 | seen.add('f') |
|
571 | 572 | if progress: |
|
572 | 573 | progress.complete() |
|
573 | 574 | progress = srcrepo.ui.makeprogress(_('file revisions'), |
|
574 | 575 | total=frevcount) |
|
575 | 576 | |
|
576 | 577 | |
|
577 | 578 | ui.note(_('cloning %d revisions from %s\n') % (len(oldrl), unencoded)) |
|
578 | 579 | oldrl.clone(tr, newrl, addrevisioncb=oncopiedrevision, |
|
579 | 580 | deltareuse=deltareuse, |
|
580 | 581 | deltabothparents=deltabothparents) |
|
581 | 582 | |
|
582 | 583 | info = newrl.storageinfo(storedsize=True) |
|
583 | 584 | datasize = info['storedsize'] or 0 |
|
584 | 585 | |
|
585 | 586 | dstsize += datasize |
|
586 | 587 | |
|
587 | 588 | if isinstance(newrl, changelog.changelog): |
|
588 | 589 | cdstsize += datasize |
|
589 | 590 | elif isinstance(newrl, manifest.manifestrevlog): |
|
590 | 591 | mdstsize += datasize |
|
591 | 592 | else: |
|
592 | 593 | fdstsize += datasize |
|
593 | 594 | |
|
594 | 595 | progress.complete() |
|
595 | 596 | |
|
596 | 597 | ui.write(_('finished migrating %d changelog revisions; change in size: ' |
|
597 | 598 | '%s\n') % (crevcount, util.bytecount(cdstsize - csrcsize))) |
|
598 | 599 | |
|
599 | 600 | ui.write(_('finished migrating %d total revisions; total change in store ' |
|
600 | 601 | 'size: %s\n') % (revcount, util.bytecount(dstsize - srcsize))) |
|
601 | 602 | |
|
602 | 603 | def _filterstorefile(srcrepo, dstrepo, requirements, path, mode, st): |
|
603 | 604 | """Determine whether to copy a store file during upgrade. |
|
604 | 605 | |
|
605 | 606 | This function is called when migrating store files from ``srcrepo`` to |
|
606 | 607 | ``dstrepo`` as part of upgrading a repository. |
|
607 | 608 | |
|
608 | 609 | Args: |
|
609 | 610 | srcrepo: repo we are copying from |
|
610 | 611 | dstrepo: repo we are copying to |
|
611 | 612 | requirements: set of requirements for ``dstrepo`` |
|
612 | 613 | path: store file being examined |
|
613 | 614 | mode: the ``ST_MODE`` file type of ``path`` |
|
614 | 615 | st: ``stat`` data structure for ``path`` |
|
615 | 616 | |
|
616 | 617 | Function should return ``True`` if the file is to be copied. |
|
617 | 618 | """ |
|
618 | 619 | # Skip revlogs. |
|
619 | 620 | if path.endswith(('.i', '.d')): |
|
620 | 621 | return False |
|
621 | 622 | # Skip transaction related files. |
|
622 | 623 | if path.startswith('undo'): |
|
623 | 624 | return False |
|
624 | 625 | # Only copy regular files. |
|
625 | 626 | if mode != stat.S_IFREG: |
|
626 | 627 | return False |
|
627 | 628 | # Skip other skipped files. |
|
628 | 629 | if path in ('lock', 'fncache'): |
|
629 | 630 | return False |
|
630 | 631 | |
|
631 | 632 | return True |
|
632 | 633 | |
|
633 | 634 | def _finishdatamigration(ui, srcrepo, dstrepo, requirements): |
|
634 | 635 | """Hook point for extensions to perform additional actions during upgrade. |
|
635 | 636 | |
|
636 | 637 | This function is called after revlogs and store files have been copied but |
|
637 | 638 | before the new store is swapped into the original location. |
|
638 | 639 | """ |
|
639 | 640 | |
|
640 | 641 | def _upgraderepo(ui, srcrepo, dstrepo, requirements, actions): |
|
641 | 642 | """Do the low-level work of upgrading a repository. |
|
642 | 643 | |
|
643 | 644 | The upgrade is effectively performed as a copy between a source |
|
644 | 645 | repository and a temporary destination repository. |
|
645 | 646 | |
|
646 | 647 | The source repository is unmodified for as long as possible so the |
|
647 | 648 | upgrade can abort at any time without causing loss of service for |
|
648 | 649 | readers and without corrupting the source repository. |
|
649 | 650 | """ |
|
650 | 651 | assert srcrepo.currentwlock() |
|
651 | 652 | assert dstrepo.currentwlock() |
|
652 | 653 | |
|
653 | 654 | ui.write(_('(it is safe to interrupt this process any time before ' |
|
654 | 655 | 'data migration completes)\n')) |
|
655 | 656 | |
|
656 | 657 | if 'redeltaall' in actions: |
|
657 | 658 | deltareuse = revlog.revlog.DELTAREUSENEVER |
|
658 | 659 | elif 'redeltaparent' in actions: |
|
659 | 660 | deltareuse = revlog.revlog.DELTAREUSESAMEREVS |
|
660 | 661 | elif 'redeltamultibase' in actions: |
|
661 | 662 | deltareuse = revlog.revlog.DELTAREUSESAMEREVS |
|
662 | 663 | elif 'redeltafulladd' in actions: |
|
663 | 664 | deltareuse = revlog.revlog.DELTAREUSEFULLADD |
|
664 | 665 | else: |
|
665 | 666 | deltareuse = revlog.revlog.DELTAREUSEALWAYS |
|
666 | 667 | |
|
667 | 668 | with dstrepo.transaction('upgrade') as tr: |
|
668 | 669 | _copyrevlogs(ui, srcrepo, dstrepo, tr, deltareuse, |
|
669 | 670 | 'redeltamultibase' in actions) |
|
670 | 671 | |
|
671 | 672 | # Now copy other files in the store directory. |
|
672 | 673 | # The sorted() makes execution deterministic. |
|
673 | 674 | for p, kind, st in sorted(srcrepo.store.vfs.readdir('', stat=True)): |
|
674 | 675 | if not _filterstorefile(srcrepo, dstrepo, requirements, |
|
675 | 676 | p, kind, st): |
|
676 | 677 | continue |
|
677 | 678 | |
|
678 | 679 | srcrepo.ui.write(_('copying %s\n') % p) |
|
679 | 680 | src = srcrepo.store.rawvfs.join(p) |
|
680 | 681 | dst = dstrepo.store.rawvfs.join(p) |
|
681 | 682 | util.copyfile(src, dst, copystat=True) |
|
682 | 683 | |
|
683 | 684 | _finishdatamigration(ui, srcrepo, dstrepo, requirements) |
|
684 | 685 | |
|
685 | 686 | ui.write(_('data fully migrated to temporary repository\n')) |
|
686 | 687 | |
|
687 | 688 | backuppath = pycompat.mkdtemp(prefix='upgradebackup.', dir=srcrepo.path) |
|
688 | 689 | backupvfs = vfsmod.vfs(backuppath) |
|
689 | 690 | |
|
690 | 691 | # Make a backup of requires file first, as it is the first to be modified. |
|
691 | 692 | util.copyfile(srcrepo.vfs.join('requires'), backupvfs.join('requires')) |
|
692 | 693 | |
|
693 | 694 | # We install an arbitrary requirement that clients must not support |
|
694 | 695 | # as a mechanism to lock out new clients during the data swap. This is |
|
695 | 696 | # better than allowing a client to continue while the repository is in |
|
696 | 697 | # an inconsistent state. |
|
697 | 698 | ui.write(_('marking source repository as being upgraded; clients will be ' |
|
698 | 699 | 'unable to read from repository\n')) |
|
699 | 700 | scmutil.writerequires(srcrepo.vfs, |
|
700 | 701 | srcrepo.requirements | {'upgradeinprogress'}) |
|
701 | 702 | |
|
702 | 703 | ui.write(_('starting in-place swap of repository data\n')) |
|
703 | 704 | ui.write(_('replaced files will be backed up at %s\n') % |
|
704 | 705 | backuppath) |
|
705 | 706 | |
|
706 | 707 | # Now swap in the new store directory. Doing it as a rename should make |
|
707 | 708 | # the operation nearly instantaneous and atomic (at least in well-behaved |
|
708 | 709 | # environments). |
|
709 | 710 | ui.write(_('replacing store...\n')) |
|
710 | 711 | tstart = util.timer() |
|
711 | 712 | util.rename(srcrepo.spath, backupvfs.join('store')) |
|
712 | 713 | util.rename(dstrepo.spath, srcrepo.spath) |
|
713 | 714 | elapsed = util.timer() - tstart |
|
714 | 715 | ui.write(_('store replacement complete; repository was inconsistent for ' |
|
715 | 716 | '%0.1fs\n') % elapsed) |
|
716 | 717 | |
|
717 | 718 | # We first write the requirements file. Any new requirements will lock |
|
718 | 719 | # out legacy clients. |
|
719 | 720 | ui.write(_('finalizing requirements file and making repository readable ' |
|
720 | 721 | 'again\n')) |
|
721 | 722 | scmutil.writerequires(srcrepo.vfs, requirements) |
|
722 | 723 | |
|
723 | 724 | # The lock file from the old store won't be removed because nothing has a |
|
724 | 725 | # reference to its new location. So clean it up manually. Alternatively, we |
|
725 | 726 | # could update srcrepo.svfs and other variables to point to the new |
|
726 | 727 | # location. This is simpler. |
|
727 | 728 | backupvfs.unlink('store/lock') |
|
728 | 729 | |
|
729 | 730 | return backuppath |
|
730 | 731 | |
|
731 | 732 | def upgraderepo(ui, repo, run=False, optimize=None): |
|
732 | 733 | """Upgrade a repository in place.""" |
|
733 | 734 | optimize = set(optimize or []) |
|
734 | 735 | repo = repo.unfiltered() |
|
735 | 736 | |
|
736 | 737 | # Ensure the repository can be upgraded. |
|
737 | 738 | missingreqs = requiredsourcerequirements(repo) - repo.requirements |
|
738 | 739 | if missingreqs: |
|
739 | 740 | raise error.Abort(_('cannot upgrade repository; requirement ' |
|
740 | 741 | 'missing: %s') % _(', ').join(sorted(missingreqs))) |
|
741 | 742 | |
|
742 | 743 | blockedreqs = blocksourcerequirements(repo) & repo.requirements |
|
743 | 744 | if blockedreqs: |
|
744 | 745 | raise error.Abort(_('cannot upgrade repository; unsupported source ' |
|
745 | 746 | 'requirement: %s') % |
|
746 | 747 | _(', ').join(sorted(blockedreqs))) |
|
747 | 748 | |
|
748 | 749 | # FUTURE there is potentially a need to control the wanted requirements via |
|
749 | 750 | # command arguments or via an extension hook point. |
|
750 |
newreqs = localrepo.newreporequirements( |
|
|
751 | newreqs = localrepo.newreporequirements( | |
|
752 | repo.ui, localrepo.defaultcreateopts(repo.ui)) | |
|
751 | 753 | newreqs.update(preservedrequirements(repo)) |
|
752 | 754 | |
|
753 | 755 | noremovereqs = (repo.requirements - newreqs - |
|
754 | 756 | supportremovedrequirements(repo)) |
|
755 | 757 | if noremovereqs: |
|
756 | 758 | raise error.Abort(_('cannot upgrade repository; requirement would be ' |
|
757 | 759 | 'removed: %s') % _(', ').join(sorted(noremovereqs))) |
|
758 | 760 | |
|
759 | 761 | noaddreqs = (newreqs - repo.requirements - |
|
760 | 762 | allowednewrequirements(repo)) |
|
761 | 763 | if noaddreqs: |
|
762 | 764 | raise error.Abort(_('cannot upgrade repository; do not support adding ' |
|
763 | 765 | 'requirement: %s') % |
|
764 | 766 | _(', ').join(sorted(noaddreqs))) |
|
765 | 767 | |
|
766 | 768 | unsupportedreqs = newreqs - supporteddestrequirements(repo) |
|
767 | 769 | if unsupportedreqs: |
|
768 | 770 | raise error.Abort(_('cannot upgrade repository; do not support ' |
|
769 | 771 | 'destination requirement: %s') % |
|
770 | 772 | _(', ').join(sorted(unsupportedreqs))) |
|
771 | 773 | |
|
772 | 774 | # Find and validate all improvements that can be made. |
|
773 | 775 | alloptimizations = findoptimizations(repo) |
|
774 | 776 | |
|
775 | 777 | # Apply and Validate arguments. |
|
776 | 778 | optimizations = [] |
|
777 | 779 | for o in alloptimizations: |
|
778 | 780 | if o.name in optimize: |
|
779 | 781 | optimizations.append(o) |
|
780 | 782 | optimize.discard(o.name) |
|
781 | 783 | |
|
782 | 784 | if optimize: # anything left is unknown |
|
783 | 785 | raise error.Abort(_('unknown optimization action requested: %s') % |
|
784 | 786 | ', '.join(sorted(optimize)), |
|
785 | 787 | hint=_('run without arguments to see valid ' |
|
786 | 788 | 'optimizations')) |
|
787 | 789 | |
|
788 | 790 | deficiencies = finddeficiencies(repo) |
|
789 | 791 | actions = determineactions(repo, deficiencies, repo.requirements, newreqs) |
|
790 | 792 | actions.extend(o for o in sorted(optimizations) |
|
791 | 793 | # determineactions could have added optimisation |
|
792 | 794 | if o not in actions) |
|
793 | 795 | |
|
794 | 796 | def printrequirements(): |
|
795 | 797 | ui.write(_('requirements\n')) |
|
796 | 798 | ui.write(_(' preserved: %s\n') % |
|
797 | 799 | _(', ').join(sorted(newreqs & repo.requirements))) |
|
798 | 800 | |
|
799 | 801 | if repo.requirements - newreqs: |
|
800 | 802 | ui.write(_(' removed: %s\n') % |
|
801 | 803 | _(', ').join(sorted(repo.requirements - newreqs))) |
|
802 | 804 | |
|
803 | 805 | if newreqs - repo.requirements: |
|
804 | 806 | ui.write(_(' added: %s\n') % |
|
805 | 807 | _(', ').join(sorted(newreqs - repo.requirements))) |
|
806 | 808 | |
|
807 | 809 | ui.write('\n') |
|
808 | 810 | |
|
809 | 811 | def printupgradeactions(): |
|
810 | 812 | for a in actions: |
|
811 | 813 | ui.write('%s\n %s\n\n' % (a.name, a.upgrademessage)) |
|
812 | 814 | |
|
813 | 815 | if not run: |
|
814 | 816 | fromconfig = [] |
|
815 | 817 | onlydefault = [] |
|
816 | 818 | |
|
817 | 819 | for d in deficiencies: |
|
818 | 820 | if d.fromconfig(repo): |
|
819 | 821 | fromconfig.append(d) |
|
820 | 822 | elif d.default: |
|
821 | 823 | onlydefault.append(d) |
|
822 | 824 | |
|
823 | 825 | if fromconfig or onlydefault: |
|
824 | 826 | |
|
825 | 827 | if fromconfig: |
|
826 | 828 | ui.write(_('repository lacks features recommended by ' |
|
827 | 829 | 'current config options:\n\n')) |
|
828 | 830 | for i in fromconfig: |
|
829 | 831 | ui.write('%s\n %s\n\n' % (i.name, i.description)) |
|
830 | 832 | |
|
831 | 833 | if onlydefault: |
|
832 | 834 | ui.write(_('repository lacks features used by the default ' |
|
833 | 835 | 'config options:\n\n')) |
|
834 | 836 | for i in onlydefault: |
|
835 | 837 | ui.write('%s\n %s\n\n' % (i.name, i.description)) |
|
836 | 838 | |
|
837 | 839 | ui.write('\n') |
|
838 | 840 | else: |
|
839 | 841 | ui.write(_('(no feature deficiencies found in existing ' |
|
840 | 842 | 'repository)\n')) |
|
841 | 843 | |
|
842 | 844 | ui.write(_('performing an upgrade with "--run" will make the following ' |
|
843 | 845 | 'changes:\n\n')) |
|
844 | 846 | |
|
845 | 847 | printrequirements() |
|
846 | 848 | printupgradeactions() |
|
847 | 849 | |
|
848 | 850 | unusedoptimize = [i for i in alloptimizations if i not in actions] |
|
849 | 851 | |
|
850 | 852 | if unusedoptimize: |
|
851 | 853 | ui.write(_('additional optimizations are available by specifying ' |
|
852 | 854 | '"--optimize <name>":\n\n')) |
|
853 | 855 | for i in unusedoptimize: |
|
854 | 856 | ui.write(_('%s\n %s\n\n') % (i.name, i.description)) |
|
855 | 857 | return |
|
856 | 858 | |
|
857 | 859 | # Else we're in the run=true case. |
|
858 | 860 | ui.write(_('upgrade will perform the following actions:\n\n')) |
|
859 | 861 | printrequirements() |
|
860 | 862 | printupgradeactions() |
|
861 | 863 | |
|
862 | 864 | upgradeactions = [a.name for a in actions] |
|
863 | 865 | |
|
864 | 866 | ui.write(_('beginning upgrade...\n')) |
|
865 | 867 | with repo.wlock(), repo.lock(): |
|
866 | 868 | ui.write(_('repository locked and read-only\n')) |
|
867 | 869 | # Our strategy for upgrading the repository is to create a new, |
|
868 | 870 | # temporary repository, write data to it, then do a swap of the |
|
869 | 871 | # data. There are less heavyweight ways to do this, but it is easier |
|
870 | 872 | # to create a new repo object than to instantiate all the components |
|
871 | 873 | # (like the store) separately. |
|
872 | 874 | tmppath = pycompat.mkdtemp(prefix='upgrade.', dir=repo.path) |
|
873 | 875 | backuppath = None |
|
874 | 876 | try: |
|
875 | 877 | ui.write(_('creating temporary repository to stage migrated ' |
|
876 | 878 | 'data: %s\n') % tmppath) |
|
877 | 879 | |
|
878 | 880 | # clone ui without using ui.copy because repo.ui is protected |
|
879 | 881 | repoui = repo.ui.__class__(repo.ui) |
|
880 | 882 | dstrepo = hg.repository(repoui, path=tmppath, create=True) |
|
881 | 883 | |
|
882 | 884 | with dstrepo.wlock(), dstrepo.lock(): |
|
883 | 885 | backuppath = _upgraderepo(ui, repo, dstrepo, newreqs, |
|
884 | 886 | upgradeactions) |
|
885 | 887 | |
|
886 | 888 | finally: |
|
887 | 889 | ui.write(_('removing temporary repository %s\n') % tmppath) |
|
888 | 890 | repo.vfs.rmtree(tmppath, forcibly=True) |
|
889 | 891 | |
|
890 | 892 | if backuppath: |
|
891 | 893 | ui.warn(_('copy of old repository backed up at %s\n') % |
|
892 | 894 | backuppath) |
|
893 | 895 | ui.warn(_('the old repository will not be deleted; remove ' |
|
894 | 896 | 'it to free up disk space once the upgraded ' |
|
895 | 897 | 'repository is verified\n')) |
General Comments 0
You need to be logged in to leave comments.
Login now