##// END OF EJS Templates
revset: stabilize repr of baseset initialized with a set...
Pierre-Yves David -
r28785:87b89dca default
parent child Browse files
Show More
@@ -1,3585 +1,3591
1 1 # revset.py - revision set queries for mercurial
2 2 #
3 3 # Copyright 2010 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 heapq
11 11 import re
12 12
13 13 from .i18n import _
14 14 from . import (
15 15 destutil,
16 16 encoding,
17 17 error,
18 18 hbisect,
19 19 match as matchmod,
20 20 node,
21 21 obsolete as obsmod,
22 22 parser,
23 23 pathutil,
24 24 phases,
25 25 registrar,
26 26 repoview,
27 27 util,
28 28 )
29 29
30 30 def _revancestors(repo, revs, followfirst):
31 31 """Like revlog.ancestors(), but supports followfirst."""
32 32 if followfirst:
33 33 cut = 1
34 34 else:
35 35 cut = None
36 36 cl = repo.changelog
37 37
38 38 def iterate():
39 39 revs.sort(reverse=True)
40 40 irevs = iter(revs)
41 41 h = []
42 42
43 43 inputrev = next(irevs, None)
44 44 if inputrev is not None:
45 45 heapq.heappush(h, -inputrev)
46 46
47 47 seen = set()
48 48 while h:
49 49 current = -heapq.heappop(h)
50 50 if current == inputrev:
51 51 inputrev = next(irevs, None)
52 52 if inputrev is not None:
53 53 heapq.heappush(h, -inputrev)
54 54 if current not in seen:
55 55 seen.add(current)
56 56 yield current
57 57 for parent in cl.parentrevs(current)[:cut]:
58 58 if parent != node.nullrev:
59 59 heapq.heappush(h, -parent)
60 60
61 61 return generatorset(iterate(), iterasc=False)
62 62
63 63 def _revdescendants(repo, revs, followfirst):
64 64 """Like revlog.descendants() but supports followfirst."""
65 65 if followfirst:
66 66 cut = 1
67 67 else:
68 68 cut = None
69 69
70 70 def iterate():
71 71 cl = repo.changelog
72 72 # XXX this should be 'parentset.min()' assuming 'parentset' is a
73 73 # smartset (and if it is not, it should.)
74 74 first = min(revs)
75 75 nullrev = node.nullrev
76 76 if first == nullrev:
77 77 # Are there nodes with a null first parent and a non-null
78 78 # second one? Maybe. Do we care? Probably not.
79 79 for i in cl:
80 80 yield i
81 81 else:
82 82 seen = set(revs)
83 83 for i in cl.revs(first + 1):
84 84 for x in cl.parentrevs(i)[:cut]:
85 85 if x != nullrev and x in seen:
86 86 seen.add(i)
87 87 yield i
88 88 break
89 89
90 90 return generatorset(iterate(), iterasc=True)
91 91
92 92 def _reachablerootspure(repo, minroot, roots, heads, includepath):
93 93 """return (heads(::<roots> and ::<heads>))
94 94
95 95 If includepath is True, return (<roots>::<heads>)."""
96 96 if not roots:
97 97 return []
98 98 parentrevs = repo.changelog.parentrevs
99 99 roots = set(roots)
100 100 visit = list(heads)
101 101 reachable = set()
102 102 seen = {}
103 103 # prefetch all the things! (because python is slow)
104 104 reached = reachable.add
105 105 dovisit = visit.append
106 106 nextvisit = visit.pop
107 107 # open-code the post-order traversal due to the tiny size of
108 108 # sys.getrecursionlimit()
109 109 while visit:
110 110 rev = nextvisit()
111 111 if rev in roots:
112 112 reached(rev)
113 113 if not includepath:
114 114 continue
115 115 parents = parentrevs(rev)
116 116 seen[rev] = parents
117 117 for parent in parents:
118 118 if parent >= minroot and parent not in seen:
119 119 dovisit(parent)
120 120 if not reachable:
121 121 return baseset()
122 122 if not includepath:
123 123 return reachable
124 124 for rev in sorted(seen):
125 125 for parent in seen[rev]:
126 126 if parent in reachable:
127 127 reached(rev)
128 128 return reachable
129 129
130 130 def reachableroots(repo, roots, heads, includepath=False):
131 131 """return (heads(::<roots> and ::<heads>))
132 132
133 133 If includepath is True, return (<roots>::<heads>)."""
134 134 if not roots:
135 135 return baseset()
136 136 minroot = roots.min()
137 137 roots = list(roots)
138 138 heads = list(heads)
139 139 try:
140 140 revs = repo.changelog.reachableroots(minroot, heads, roots, includepath)
141 141 except AttributeError:
142 142 revs = _reachablerootspure(repo, minroot, roots, heads, includepath)
143 143 revs = baseset(revs)
144 144 revs.sort()
145 145 return revs
146 146
147 147 elements = {
148 148 # token-type: binding-strength, primary, prefix, infix, suffix
149 149 "(": (21, None, ("group", 1, ")"), ("func", 1, ")"), None),
150 150 "##": (20, None, None, ("_concat", 20), None),
151 151 "~": (18, None, None, ("ancestor", 18), None),
152 152 "^": (18, None, None, ("parent", 18), ("parentpost", 18)),
153 153 "-": (5, None, ("negate", 19), ("minus", 5), None),
154 154 "::": (17, None, ("dagrangepre", 17), ("dagrange", 17),
155 155 ("dagrangepost", 17)),
156 156 "..": (17, None, ("dagrangepre", 17), ("dagrange", 17),
157 157 ("dagrangepost", 17)),
158 158 ":": (15, "rangeall", ("rangepre", 15), ("range", 15), ("rangepost", 15)),
159 159 "not": (10, None, ("not", 10), None, None),
160 160 "!": (10, None, ("not", 10), None, None),
161 161 "and": (5, None, None, ("and", 5), None),
162 162 "&": (5, None, None, ("and", 5), None),
163 163 "%": (5, None, None, ("only", 5), ("onlypost", 5)),
164 164 "or": (4, None, None, ("or", 4), None),
165 165 "|": (4, None, None, ("or", 4), None),
166 166 "+": (4, None, None, ("or", 4), None),
167 167 "=": (3, None, None, ("keyvalue", 3), None),
168 168 ",": (2, None, None, ("list", 2), None),
169 169 ")": (0, None, None, None, None),
170 170 "symbol": (0, "symbol", None, None, None),
171 171 "string": (0, "string", None, None, None),
172 172 "end": (0, None, None, None, None),
173 173 }
174 174
175 175 keywords = set(['and', 'or', 'not'])
176 176
177 177 # default set of valid characters for the initial letter of symbols
178 178 _syminitletters = set(c for c in [chr(i) for i in xrange(256)]
179 179 if c.isalnum() or c in '._@' or ord(c) > 127)
180 180
181 181 # default set of valid characters for non-initial letters of symbols
182 182 _symletters = set(c for c in [chr(i) for i in xrange(256)]
183 183 if c.isalnum() or c in '-._/@' or ord(c) > 127)
184 184
185 185 def tokenize(program, lookup=None, syminitletters=None, symletters=None):
186 186 '''
187 187 Parse a revset statement into a stream of tokens
188 188
189 189 ``syminitletters`` is the set of valid characters for the initial
190 190 letter of symbols.
191 191
192 192 By default, character ``c`` is recognized as valid for initial
193 193 letter of symbols, if ``c.isalnum() or c in '._@' or ord(c) > 127``.
194 194
195 195 ``symletters`` is the set of valid characters for non-initial
196 196 letters of symbols.
197 197
198 198 By default, character ``c`` is recognized as valid for non-initial
199 199 letters of symbols, if ``c.isalnum() or c in '-._/@' or ord(c) > 127``.
200 200
201 201 Check that @ is a valid unquoted token character (issue3686):
202 202 >>> list(tokenize("@::"))
203 203 [('symbol', '@', 0), ('::', None, 1), ('end', None, 3)]
204 204
205 205 '''
206 206 if syminitletters is None:
207 207 syminitletters = _syminitletters
208 208 if symletters is None:
209 209 symletters = _symletters
210 210
211 211 if program and lookup:
212 212 # attempt to parse old-style ranges first to deal with
213 213 # things like old-tag which contain query metacharacters
214 214 parts = program.split(':', 1)
215 215 if all(lookup(sym) for sym in parts if sym):
216 216 if parts[0]:
217 217 yield ('symbol', parts[0], 0)
218 218 if len(parts) > 1:
219 219 s = len(parts[0])
220 220 yield (':', None, s)
221 221 if parts[1]:
222 222 yield ('symbol', parts[1], s + 1)
223 223 yield ('end', None, len(program))
224 224 return
225 225
226 226 pos, l = 0, len(program)
227 227 while pos < l:
228 228 c = program[pos]
229 229 if c.isspace(): # skip inter-token whitespace
230 230 pass
231 231 elif c == ':' and program[pos:pos + 2] == '::': # look ahead carefully
232 232 yield ('::', None, pos)
233 233 pos += 1 # skip ahead
234 234 elif c == '.' and program[pos:pos + 2] == '..': # look ahead carefully
235 235 yield ('..', None, pos)
236 236 pos += 1 # skip ahead
237 237 elif c == '#' and program[pos:pos + 2] == '##': # look ahead carefully
238 238 yield ('##', None, pos)
239 239 pos += 1 # skip ahead
240 240 elif c in "():=,-|&+!~^%": # handle simple operators
241 241 yield (c, None, pos)
242 242 elif (c in '"\'' or c == 'r' and
243 243 program[pos:pos + 2] in ("r'", 'r"')): # handle quoted strings
244 244 if c == 'r':
245 245 pos += 1
246 246 c = program[pos]
247 247 decode = lambda x: x
248 248 else:
249 249 decode = parser.unescapestr
250 250 pos += 1
251 251 s = pos
252 252 while pos < l: # find closing quote
253 253 d = program[pos]
254 254 if d == '\\': # skip over escaped characters
255 255 pos += 2
256 256 continue
257 257 if d == c:
258 258 yield ('string', decode(program[s:pos]), s)
259 259 break
260 260 pos += 1
261 261 else:
262 262 raise error.ParseError(_("unterminated string"), s)
263 263 # gather up a symbol/keyword
264 264 elif c in syminitletters:
265 265 s = pos
266 266 pos += 1
267 267 while pos < l: # find end of symbol
268 268 d = program[pos]
269 269 if d not in symletters:
270 270 break
271 271 if d == '.' and program[pos - 1] == '.': # special case for ..
272 272 pos -= 1
273 273 break
274 274 pos += 1
275 275 sym = program[s:pos]
276 276 if sym in keywords: # operator keywords
277 277 yield (sym, None, s)
278 278 elif '-' in sym:
279 279 # some jerk gave us foo-bar-baz, try to check if it's a symbol
280 280 if lookup and lookup(sym):
281 281 # looks like a real symbol
282 282 yield ('symbol', sym, s)
283 283 else:
284 284 # looks like an expression
285 285 parts = sym.split('-')
286 286 for p in parts[:-1]:
287 287 if p: # possible consecutive -
288 288 yield ('symbol', p, s)
289 289 s += len(p)
290 290 yield ('-', None, pos)
291 291 s += 1
292 292 if parts[-1]: # possible trailing -
293 293 yield ('symbol', parts[-1], s)
294 294 else:
295 295 yield ('symbol', sym, s)
296 296 pos -= 1
297 297 else:
298 298 raise error.ParseError(_("syntax error in revset '%s'") %
299 299 program, pos)
300 300 pos += 1
301 301 yield ('end', None, pos)
302 302
303 303 # helpers
304 304
305 305 def getstring(x, err):
306 306 if x and (x[0] == 'string' or x[0] == 'symbol'):
307 307 return x[1]
308 308 raise error.ParseError(err)
309 309
310 310 def getlist(x):
311 311 if not x:
312 312 return []
313 313 if x[0] == 'list':
314 314 return list(x[1:])
315 315 return [x]
316 316
317 317 def getargs(x, min, max, err):
318 318 l = getlist(x)
319 319 if len(l) < min or (max >= 0 and len(l) > max):
320 320 raise error.ParseError(err)
321 321 return l
322 322
323 323 def getargsdict(x, funcname, keys):
324 324 return parser.buildargsdict(getlist(x), funcname, keys.split(),
325 325 keyvaluenode='keyvalue', keynode='symbol')
326 326
327 327 def getset(repo, subset, x):
328 328 if not x:
329 329 raise error.ParseError(_("missing argument"))
330 330 s = methods[x[0]](repo, subset, *x[1:])
331 331 if util.safehasattr(s, 'isascending'):
332 332 return s
333 333 if (repo.ui.configbool('devel', 'all-warnings')
334 334 or repo.ui.configbool('devel', 'old-revset')):
335 335 # else case should not happen, because all non-func are internal,
336 336 # ignoring for now.
337 337 if x[0] == 'func' and x[1][0] == 'symbol' and x[1][1] in symbols:
338 338 repo.ui.develwarn('revset "%s" use list instead of smartset, '
339 339 '(upgrade your code)' % x[1][1])
340 340 return baseset(s)
341 341
342 342 def _getrevsource(repo, r):
343 343 extra = repo[r].extra()
344 344 for label in ('source', 'transplant_source', 'rebase_source'):
345 345 if label in extra:
346 346 try:
347 347 return repo[extra[label]].rev()
348 348 except error.RepoLookupError:
349 349 pass
350 350 return None
351 351
352 352 # operator methods
353 353
354 354 def stringset(repo, subset, x):
355 355 x = repo[x].rev()
356 356 if (x in subset
357 357 or x == node.nullrev and isinstance(subset, fullreposet)):
358 358 return baseset([x])
359 359 return baseset()
360 360
361 361 def rangeset(repo, subset, x, y):
362 362 m = getset(repo, fullreposet(repo), x)
363 363 n = getset(repo, fullreposet(repo), y)
364 364
365 365 if not m or not n:
366 366 return baseset()
367 367 m, n = m.first(), n.last()
368 368
369 369 if m == n:
370 370 r = baseset([m])
371 371 elif n == node.wdirrev:
372 372 r = spanset(repo, m, len(repo)) + baseset([n])
373 373 elif m == node.wdirrev:
374 374 r = baseset([m]) + spanset(repo, len(repo) - 1, n - 1)
375 375 elif m < n:
376 376 r = spanset(repo, m, n + 1)
377 377 else:
378 378 r = spanset(repo, m, n - 1)
379 379 # XXX We should combine with subset first: 'subset & baseset(...)'. This is
380 380 # necessary to ensure we preserve the order in subset.
381 381 #
382 382 # This has performance implication, carrying the sorting over when possible
383 383 # would be more efficient.
384 384 return r & subset
385 385
386 386 def dagrange(repo, subset, x, y):
387 387 r = fullreposet(repo)
388 388 xs = reachableroots(repo, getset(repo, r, x), getset(repo, r, y),
389 389 includepath=True)
390 390 # XXX We should combine with subset first: 'subset & baseset(...)'. This is
391 391 # necessary to ensure we preserve the order in subset.
392 392 return xs & subset
393 393
394 394 def andset(repo, subset, x, y):
395 395 return getset(repo, getset(repo, subset, x), y)
396 396
397 397 def differenceset(repo, subset, x, y):
398 398 return getset(repo, subset, x) - getset(repo, subset, y)
399 399
400 400 def orset(repo, subset, *xs):
401 401 assert xs
402 402 if len(xs) == 1:
403 403 return getset(repo, subset, xs[0])
404 404 p = len(xs) // 2
405 405 a = orset(repo, subset, *xs[:p])
406 406 b = orset(repo, subset, *xs[p:])
407 407 return a + b
408 408
409 409 def notset(repo, subset, x):
410 410 return subset - getset(repo, subset, x)
411 411
412 412 def listset(repo, subset, *xs):
413 413 raise error.ParseError(_("can't use a list in this context"),
414 414 hint=_('see hg help "revsets.x or y"'))
415 415
416 416 def keyvaluepair(repo, subset, k, v):
417 417 raise error.ParseError(_("can't use a key-value pair in this context"))
418 418
419 419 def func(repo, subset, a, b):
420 420 if a[0] == 'symbol' and a[1] in symbols:
421 421 return symbols[a[1]](repo, subset, b)
422 422
423 423 keep = lambda fn: getattr(fn, '__doc__', None) is not None
424 424
425 425 syms = [s for (s, fn) in symbols.items() if keep(fn)]
426 426 raise error.UnknownIdentifier(a[1], syms)
427 427
428 428 # functions
429 429
430 430 # symbols are callables like:
431 431 # fn(repo, subset, x)
432 432 # with:
433 433 # repo - current repository instance
434 434 # subset - of revisions to be examined
435 435 # x - argument in tree form
436 436 symbols = {}
437 437
438 438 # symbols which can't be used for a DoS attack for any given input
439 439 # (e.g. those which accept regexes as plain strings shouldn't be included)
440 440 # functions that just return a lot of changesets (like all) don't count here
441 441 safesymbols = set()
442 442
443 443 predicate = registrar.revsetpredicate()
444 444
445 445 @predicate('_destupdate')
446 446 def _destupdate(repo, subset, x):
447 447 # experimental revset for update destination
448 448 args = getargsdict(x, 'limit', 'clean check')
449 449 return subset & baseset([destutil.destupdate(repo, **args)[0]])
450 450
451 451 @predicate('_destmerge')
452 452 def _destmerge(repo, subset, x):
453 453 # experimental revset for merge destination
454 454 sourceset = None
455 455 if x is not None:
456 456 sourceset = getset(repo, fullreposet(repo), x)
457 457 return subset & baseset([destutil.destmerge(repo, sourceset=sourceset)])
458 458
459 459 @predicate('adds(pattern)', safe=True)
460 460 def adds(repo, subset, x):
461 461 """Changesets that add a file matching pattern.
462 462
463 463 The pattern without explicit kind like ``glob:`` is expected to be
464 464 relative to the current directory and match against a file or a
465 465 directory.
466 466 """
467 467 # i18n: "adds" is a keyword
468 468 pat = getstring(x, _("adds requires a pattern"))
469 469 return checkstatus(repo, subset, pat, 1)
470 470
471 471 @predicate('ancestor(*changeset)', safe=True)
472 472 def ancestor(repo, subset, x):
473 473 """A greatest common ancestor of the changesets.
474 474
475 475 Accepts 0 or more changesets.
476 476 Will return empty list when passed no args.
477 477 Greatest common ancestor of a single changeset is that changeset.
478 478 """
479 479 # i18n: "ancestor" is a keyword
480 480 l = getlist(x)
481 481 rl = fullreposet(repo)
482 482 anc = None
483 483
484 484 # (getset(repo, rl, i) for i in l) generates a list of lists
485 485 for revs in (getset(repo, rl, i) for i in l):
486 486 for r in revs:
487 487 if anc is None:
488 488 anc = repo[r]
489 489 else:
490 490 anc = anc.ancestor(repo[r])
491 491
492 492 if anc is not None and anc.rev() in subset:
493 493 return baseset([anc.rev()])
494 494 return baseset()
495 495
496 496 def _ancestors(repo, subset, x, followfirst=False):
497 497 heads = getset(repo, fullreposet(repo), x)
498 498 if not heads:
499 499 return baseset()
500 500 s = _revancestors(repo, heads, followfirst)
501 501 return subset & s
502 502
503 503 @predicate('ancestors(set)', safe=True)
504 504 def ancestors(repo, subset, x):
505 505 """Changesets that are ancestors of a changeset in set.
506 506 """
507 507 return _ancestors(repo, subset, x)
508 508
509 509 @predicate('_firstancestors', safe=True)
510 510 def _firstancestors(repo, subset, x):
511 511 # ``_firstancestors(set)``
512 512 # Like ``ancestors(set)`` but follows only the first parents.
513 513 return _ancestors(repo, subset, x, followfirst=True)
514 514
515 515 def ancestorspec(repo, subset, x, n):
516 516 """``set~n``
517 517 Changesets that are the Nth ancestor (first parents only) of a changeset
518 518 in set.
519 519 """
520 520 try:
521 521 n = int(n[1])
522 522 except (TypeError, ValueError):
523 523 raise error.ParseError(_("~ expects a number"))
524 524 ps = set()
525 525 cl = repo.changelog
526 526 for r in getset(repo, fullreposet(repo), x):
527 527 for i in range(n):
528 528 r = cl.parentrevs(r)[0]
529 529 ps.add(r)
530 530 return subset & ps
531 531
532 532 @predicate('author(string)', safe=True)
533 533 def author(repo, subset, x):
534 534 """Alias for ``user(string)``.
535 535 """
536 536 # i18n: "author" is a keyword
537 537 n = encoding.lower(getstring(x, _("author requires a string")))
538 538 kind, pattern, matcher = _substringmatcher(n)
539 539 return subset.filter(lambda x: matcher(encoding.lower(repo[x].user())),
540 540 condrepr=('<user %r>', n))
541 541
542 542 @predicate('bisect(string)', safe=True)
543 543 def bisect(repo, subset, x):
544 544 """Changesets marked in the specified bisect status:
545 545
546 546 - ``good``, ``bad``, ``skip``: csets explicitly marked as good/bad/skip
547 547 - ``goods``, ``bads`` : csets topologically good/bad
548 548 - ``range`` : csets taking part in the bisection
549 549 - ``pruned`` : csets that are goods, bads or skipped
550 550 - ``untested`` : csets whose fate is yet unknown
551 551 - ``ignored`` : csets ignored due to DAG topology
552 552 - ``current`` : the cset currently being bisected
553 553 """
554 554 # i18n: "bisect" is a keyword
555 555 status = getstring(x, _("bisect requires a string")).lower()
556 556 state = set(hbisect.get(repo, status))
557 557 return subset & state
558 558
559 559 # Backward-compatibility
560 560 # - no help entry so that we do not advertise it any more
561 561 @predicate('bisected', safe=True)
562 562 def bisected(repo, subset, x):
563 563 return bisect(repo, subset, x)
564 564
565 565 @predicate('bookmark([name])', safe=True)
566 566 def bookmark(repo, subset, x):
567 567 """The named bookmark or all bookmarks.
568 568
569 569 If `name` starts with `re:`, the remainder of the name is treated as
570 570 a regular expression. To match a bookmark that actually starts with `re:`,
571 571 use the prefix `literal:`.
572 572 """
573 573 # i18n: "bookmark" is a keyword
574 574 args = getargs(x, 0, 1, _('bookmark takes one or no arguments'))
575 575 if args:
576 576 bm = getstring(args[0],
577 577 # i18n: "bookmark" is a keyword
578 578 _('the argument to bookmark must be a string'))
579 579 kind, pattern, matcher = util.stringmatcher(bm)
580 580 bms = set()
581 581 if kind == 'literal':
582 582 bmrev = repo._bookmarks.get(pattern, None)
583 583 if not bmrev:
584 584 raise error.RepoLookupError(_("bookmark '%s' does not exist")
585 585 % pattern)
586 586 bms.add(repo[bmrev].rev())
587 587 else:
588 588 matchrevs = set()
589 589 for name, bmrev in repo._bookmarks.iteritems():
590 590 if matcher(name):
591 591 matchrevs.add(bmrev)
592 592 if not matchrevs:
593 593 raise error.RepoLookupError(_("no bookmarks exist"
594 594 " that match '%s'") % pattern)
595 595 for bmrev in matchrevs:
596 596 bms.add(repo[bmrev].rev())
597 597 else:
598 598 bms = set([repo[r].rev()
599 599 for r in repo._bookmarks.values()])
600 600 bms -= set([node.nullrev])
601 601 return subset & bms
602 602
603 603 @predicate('branch(string or set)', safe=True)
604 604 def branch(repo, subset, x):
605 605 """
606 606 All changesets belonging to the given branch or the branches of the given
607 607 changesets.
608 608
609 609 If `string` starts with `re:`, the remainder of the name is treated as
610 610 a regular expression. To match a branch that actually starts with `re:`,
611 611 use the prefix `literal:`.
612 612 """
613 613 getbi = repo.revbranchcache().branchinfo
614 614
615 615 try:
616 616 b = getstring(x, '')
617 617 except error.ParseError:
618 618 # not a string, but another revspec, e.g. tip()
619 619 pass
620 620 else:
621 621 kind, pattern, matcher = util.stringmatcher(b)
622 622 if kind == 'literal':
623 623 # note: falls through to the revspec case if no branch with
624 624 # this name exists and pattern kind is not specified explicitly
625 625 if pattern in repo.branchmap():
626 626 return subset.filter(lambda r: matcher(getbi(r)[0]),
627 627 condrepr=('<branch %r>', b))
628 628 if b.startswith('literal:'):
629 629 raise error.RepoLookupError(_("branch '%s' does not exist")
630 630 % pattern)
631 631 else:
632 632 return subset.filter(lambda r: matcher(getbi(r)[0]),
633 633 condrepr=('<branch %r>', b))
634 634
635 635 s = getset(repo, fullreposet(repo), x)
636 636 b = set()
637 637 for r in s:
638 638 b.add(getbi(r)[0])
639 639 c = s.__contains__
640 640 return subset.filter(lambda r: c(r) or getbi(r)[0] in b,
641 641 condrepr=lambda: '<branch %r>' % sorted(b))
642 642
643 643 @predicate('bumped()', safe=True)
644 644 def bumped(repo, subset, x):
645 645 """Mutable changesets marked as successors of public changesets.
646 646
647 647 Only non-public and non-obsolete changesets can be `bumped`.
648 648 """
649 649 # i18n: "bumped" is a keyword
650 650 getargs(x, 0, 0, _("bumped takes no arguments"))
651 651 bumped = obsmod.getrevs(repo, 'bumped')
652 652 return subset & bumped
653 653
654 654 @predicate('bundle()', safe=True)
655 655 def bundle(repo, subset, x):
656 656 """Changesets in the bundle.
657 657
658 658 Bundle must be specified by the -R option."""
659 659
660 660 try:
661 661 bundlerevs = repo.changelog.bundlerevs
662 662 except AttributeError:
663 663 raise error.Abort(_("no bundle provided - specify with -R"))
664 664 return subset & bundlerevs
665 665
666 666 def checkstatus(repo, subset, pat, field):
667 667 hasset = matchmod.patkind(pat) == 'set'
668 668
669 669 mcache = [None]
670 670 def matches(x):
671 671 c = repo[x]
672 672 if not mcache[0] or hasset:
673 673 mcache[0] = matchmod.match(repo.root, repo.getcwd(), [pat], ctx=c)
674 674 m = mcache[0]
675 675 fname = None
676 676 if not m.anypats() and len(m.files()) == 1:
677 677 fname = m.files()[0]
678 678 if fname is not None:
679 679 if fname not in c.files():
680 680 return False
681 681 else:
682 682 for f in c.files():
683 683 if m(f):
684 684 break
685 685 else:
686 686 return False
687 687 files = repo.status(c.p1().node(), c.node())[field]
688 688 if fname is not None:
689 689 if fname in files:
690 690 return True
691 691 else:
692 692 for f in files:
693 693 if m(f):
694 694 return True
695 695
696 696 return subset.filter(matches, condrepr=('<status[%r] %r>', field, pat))
697 697
698 698 def _children(repo, narrow, parentset):
699 699 if not parentset:
700 700 return baseset()
701 701 cs = set()
702 702 pr = repo.changelog.parentrevs
703 703 minrev = parentset.min()
704 704 for r in narrow:
705 705 if r <= minrev:
706 706 continue
707 707 for p in pr(r):
708 708 if p in parentset:
709 709 cs.add(r)
710 710 # XXX using a set to feed the baseset is wrong. Sets are not ordered.
711 711 # This does not break because of other fullreposet misbehavior.
712 712 return baseset(cs)
713 713
714 714 @predicate('children(set)', safe=True)
715 715 def children(repo, subset, x):
716 716 """Child changesets of changesets in set.
717 717 """
718 718 s = getset(repo, fullreposet(repo), x)
719 719 cs = _children(repo, subset, s)
720 720 return subset & cs
721 721
722 722 @predicate('closed()', safe=True)
723 723 def closed(repo, subset, x):
724 724 """Changeset is closed.
725 725 """
726 726 # i18n: "closed" is a keyword
727 727 getargs(x, 0, 0, _("closed takes no arguments"))
728 728 return subset.filter(lambda r: repo[r].closesbranch(),
729 729 condrepr='<branch closed>')
730 730
731 731 @predicate('contains(pattern)')
732 732 def contains(repo, subset, x):
733 733 """The revision's manifest contains a file matching pattern (but might not
734 734 modify it). See :hg:`help patterns` for information about file patterns.
735 735
736 736 The pattern without explicit kind like ``glob:`` is expected to be
737 737 relative to the current directory and match against a file exactly
738 738 for efficiency.
739 739 """
740 740 # i18n: "contains" is a keyword
741 741 pat = getstring(x, _("contains requires a pattern"))
742 742
743 743 def matches(x):
744 744 if not matchmod.patkind(pat):
745 745 pats = pathutil.canonpath(repo.root, repo.getcwd(), pat)
746 746 if pats in repo[x]:
747 747 return True
748 748 else:
749 749 c = repo[x]
750 750 m = matchmod.match(repo.root, repo.getcwd(), [pat], ctx=c)
751 751 for f in c.manifest():
752 752 if m(f):
753 753 return True
754 754 return False
755 755
756 756 return subset.filter(matches, condrepr=('<contains %r>', pat))
757 757
758 758 @predicate('converted([id])', safe=True)
759 759 def converted(repo, subset, x):
760 760 """Changesets converted from the given identifier in the old repository if
761 761 present, or all converted changesets if no identifier is specified.
762 762 """
763 763
764 764 # There is exactly no chance of resolving the revision, so do a simple
765 765 # string compare and hope for the best
766 766
767 767 rev = None
768 768 # i18n: "converted" is a keyword
769 769 l = getargs(x, 0, 1, _('converted takes one or no arguments'))
770 770 if l:
771 771 # i18n: "converted" is a keyword
772 772 rev = getstring(l[0], _('converted requires a revision'))
773 773
774 774 def _matchvalue(r):
775 775 source = repo[r].extra().get('convert_revision', None)
776 776 return source is not None and (rev is None or source.startswith(rev))
777 777
778 778 return subset.filter(lambda r: _matchvalue(r),
779 779 condrepr=('<converted %r>', rev))
780 780
781 781 @predicate('date(interval)', safe=True)
782 782 def date(repo, subset, x):
783 783 """Changesets within the interval, see :hg:`help dates`.
784 784 """
785 785 # i18n: "date" is a keyword
786 786 ds = getstring(x, _("date requires a string"))
787 787 dm = util.matchdate(ds)
788 788 return subset.filter(lambda x: dm(repo[x].date()[0]),
789 789 condrepr=('<date %r>', ds))
790 790
791 791 @predicate('desc(string)', safe=True)
792 792 def desc(repo, subset, x):
793 793 """Search commit message for string. The match is case-insensitive.
794 794 """
795 795 # i18n: "desc" is a keyword
796 796 ds = encoding.lower(getstring(x, _("desc requires a string")))
797 797
798 798 def matches(x):
799 799 c = repo[x]
800 800 return ds in encoding.lower(c.description())
801 801
802 802 return subset.filter(matches, condrepr=('<desc %r>', ds))
803 803
804 804 def _descendants(repo, subset, x, followfirst=False):
805 805 roots = getset(repo, fullreposet(repo), x)
806 806 if not roots:
807 807 return baseset()
808 808 s = _revdescendants(repo, roots, followfirst)
809 809
810 810 # Both sets need to be ascending in order to lazily return the union
811 811 # in the correct order.
812 812 base = subset & roots
813 813 desc = subset & s
814 814 result = base + desc
815 815 if subset.isascending():
816 816 result.sort()
817 817 elif subset.isdescending():
818 818 result.sort(reverse=True)
819 819 else:
820 820 result = subset & result
821 821 return result
822 822
823 823 @predicate('descendants(set)', safe=True)
824 824 def descendants(repo, subset, x):
825 825 """Changesets which are descendants of changesets in set.
826 826 """
827 827 return _descendants(repo, subset, x)
828 828
829 829 @predicate('_firstdescendants', safe=True)
830 830 def _firstdescendants(repo, subset, x):
831 831 # ``_firstdescendants(set)``
832 832 # Like ``descendants(set)`` but follows only the first parents.
833 833 return _descendants(repo, subset, x, followfirst=True)
834 834
835 835 @predicate('destination([set])', safe=True)
836 836 def destination(repo, subset, x):
837 837 """Changesets that were created by a graft, transplant or rebase operation,
838 838 with the given revisions specified as the source. Omitting the optional set
839 839 is the same as passing all().
840 840 """
841 841 if x is not None:
842 842 sources = getset(repo, fullreposet(repo), x)
843 843 else:
844 844 sources = fullreposet(repo)
845 845
846 846 dests = set()
847 847
848 848 # subset contains all of the possible destinations that can be returned, so
849 849 # iterate over them and see if their source(s) were provided in the arg set.
850 850 # Even if the immediate src of r is not in the arg set, src's source (or
851 851 # further back) may be. Scanning back further than the immediate src allows
852 852 # transitive transplants and rebases to yield the same results as transitive
853 853 # grafts.
854 854 for r in subset:
855 855 src = _getrevsource(repo, r)
856 856 lineage = None
857 857
858 858 while src is not None:
859 859 if lineage is None:
860 860 lineage = list()
861 861
862 862 lineage.append(r)
863 863
864 864 # The visited lineage is a match if the current source is in the arg
865 865 # set. Since every candidate dest is visited by way of iterating
866 866 # subset, any dests further back in the lineage will be tested by a
867 867 # different iteration over subset. Likewise, if the src was already
868 868 # selected, the current lineage can be selected without going back
869 869 # further.
870 870 if src in sources or src in dests:
871 871 dests.update(lineage)
872 872 break
873 873
874 874 r = src
875 875 src = _getrevsource(repo, r)
876 876
877 877 return subset.filter(dests.__contains__,
878 878 condrepr=lambda: '<destination %r>' % sorted(dests))
879 879
880 880 @predicate('divergent()', safe=True)
881 881 def divergent(repo, subset, x):
882 882 """
883 883 Final successors of changesets with an alternative set of final successors.
884 884 """
885 885 # i18n: "divergent" is a keyword
886 886 getargs(x, 0, 0, _("divergent takes no arguments"))
887 887 divergent = obsmod.getrevs(repo, 'divergent')
888 888 return subset & divergent
889 889
890 890 @predicate('extinct()', safe=True)
891 891 def extinct(repo, subset, x):
892 892 """Obsolete changesets with obsolete descendants only.
893 893 """
894 894 # i18n: "extinct" is a keyword
895 895 getargs(x, 0, 0, _("extinct takes no arguments"))
896 896 extincts = obsmod.getrevs(repo, 'extinct')
897 897 return subset & extincts
898 898
899 899 @predicate('extra(label, [value])', safe=True)
900 900 def extra(repo, subset, x):
901 901 """Changesets with the given label in the extra metadata, with the given
902 902 optional value.
903 903
904 904 If `value` starts with `re:`, the remainder of the value is treated as
905 905 a regular expression. To match a value that actually starts with `re:`,
906 906 use the prefix `literal:`.
907 907 """
908 908 args = getargsdict(x, 'extra', 'label value')
909 909 if 'label' not in args:
910 910 # i18n: "extra" is a keyword
911 911 raise error.ParseError(_('extra takes at least 1 argument'))
912 912 # i18n: "extra" is a keyword
913 913 label = getstring(args['label'], _('first argument to extra must be '
914 914 'a string'))
915 915 value = None
916 916
917 917 if 'value' in args:
918 918 # i18n: "extra" is a keyword
919 919 value = getstring(args['value'], _('second argument to extra must be '
920 920 'a string'))
921 921 kind, value, matcher = util.stringmatcher(value)
922 922
923 923 def _matchvalue(r):
924 924 extra = repo[r].extra()
925 925 return label in extra and (value is None or matcher(extra[label]))
926 926
927 927 return subset.filter(lambda r: _matchvalue(r),
928 928 condrepr=('<extra[%r] %r>', label, value))
929 929
930 930 @predicate('filelog(pattern)', safe=True)
931 931 def filelog(repo, subset, x):
932 932 """Changesets connected to the specified filelog.
933 933
934 934 For performance reasons, visits only revisions mentioned in the file-level
935 935 filelog, rather than filtering through all changesets (much faster, but
936 936 doesn't include deletes or duplicate changes). For a slower, more accurate
937 937 result, use ``file()``.
938 938
939 939 The pattern without explicit kind like ``glob:`` is expected to be
940 940 relative to the current directory and match against a file exactly
941 941 for efficiency.
942 942
943 943 If some linkrev points to revisions filtered by the current repoview, we'll
944 944 work around it to return a non-filtered value.
945 945 """
946 946
947 947 # i18n: "filelog" is a keyword
948 948 pat = getstring(x, _("filelog requires a pattern"))
949 949 s = set()
950 950 cl = repo.changelog
951 951
952 952 if not matchmod.patkind(pat):
953 953 f = pathutil.canonpath(repo.root, repo.getcwd(), pat)
954 954 files = [f]
955 955 else:
956 956 m = matchmod.match(repo.root, repo.getcwd(), [pat], ctx=repo[None])
957 957 files = (f for f in repo[None] if m(f))
958 958
959 959 for f in files:
960 960 fl = repo.file(f)
961 961 known = {}
962 962 scanpos = 0
963 963 for fr in list(fl):
964 964 fn = fl.node(fr)
965 965 if fn in known:
966 966 s.add(known[fn])
967 967 continue
968 968
969 969 lr = fl.linkrev(fr)
970 970 if lr in cl:
971 971 s.add(lr)
972 972 elif scanpos is not None:
973 973 # lowest matching changeset is filtered, scan further
974 974 # ahead in changelog
975 975 start = max(lr, scanpos) + 1
976 976 scanpos = None
977 977 for r in cl.revs(start):
978 978 # minimize parsing of non-matching entries
979 979 if f in cl.revision(r) and f in cl.readfiles(r):
980 980 try:
981 981 # try to use manifest delta fastpath
982 982 n = repo[r].filenode(f)
983 983 if n not in known:
984 984 if n == fn:
985 985 s.add(r)
986 986 scanpos = r
987 987 break
988 988 else:
989 989 known[n] = r
990 990 except error.ManifestLookupError:
991 991 # deletion in changelog
992 992 continue
993 993
994 994 return subset & s
995 995
996 996 @predicate('first(set, [n])', safe=True)
997 997 def first(repo, subset, x):
998 998 """An alias for limit().
999 999 """
1000 1000 return limit(repo, subset, x)
1001 1001
1002 1002 def _follow(repo, subset, x, name, followfirst=False):
1003 1003 l = getargs(x, 0, 1, _("%s takes no arguments or a pattern") % name)
1004 1004 c = repo['.']
1005 1005 if l:
1006 1006 x = getstring(l[0], _("%s expected a pattern") % name)
1007 1007 matcher = matchmod.match(repo.root, repo.getcwd(), [x],
1008 1008 ctx=repo[None], default='path')
1009 1009
1010 1010 files = c.manifest().walk(matcher)
1011 1011
1012 1012 s = set()
1013 1013 for fname in files:
1014 1014 fctx = c[fname]
1015 1015 s = s.union(set(c.rev() for c in fctx.ancestors(followfirst)))
1016 1016 # include the revision responsible for the most recent version
1017 1017 s.add(fctx.introrev())
1018 1018 else:
1019 1019 s = _revancestors(repo, baseset([c.rev()]), followfirst)
1020 1020
1021 1021 return subset & s
1022 1022
1023 1023 @predicate('follow([pattern])', safe=True)
1024 1024 def follow(repo, subset, x):
1025 1025 """
1026 1026 An alias for ``::.`` (ancestors of the working directory's first parent).
1027 1027 If pattern is specified, the histories of files matching given
1028 1028 pattern is followed, including copies.
1029 1029 """
1030 1030 return _follow(repo, subset, x, 'follow')
1031 1031
1032 1032 @predicate('_followfirst', safe=True)
1033 1033 def _followfirst(repo, subset, x):
1034 1034 # ``followfirst([pattern])``
1035 1035 # Like ``follow([pattern])`` but follows only the first parent of
1036 1036 # every revisions or files revisions.
1037 1037 return _follow(repo, subset, x, '_followfirst', followfirst=True)
1038 1038
1039 1039 @predicate('all()', safe=True)
1040 1040 def getall(repo, subset, x):
1041 1041 """All changesets, the same as ``0:tip``.
1042 1042 """
1043 1043 # i18n: "all" is a keyword
1044 1044 getargs(x, 0, 0, _("all takes no arguments"))
1045 1045 return subset & spanset(repo) # drop "null" if any
1046 1046
1047 1047 @predicate('grep(regex)')
1048 1048 def grep(repo, subset, x):
1049 1049 """Like ``keyword(string)`` but accepts a regex. Use ``grep(r'...')``
1050 1050 to ensure special escape characters are handled correctly. Unlike
1051 1051 ``keyword(string)``, the match is case-sensitive.
1052 1052 """
1053 1053 try:
1054 1054 # i18n: "grep" is a keyword
1055 1055 gr = re.compile(getstring(x, _("grep requires a string")))
1056 1056 except re.error as e:
1057 1057 raise error.ParseError(_('invalid match pattern: %s') % e)
1058 1058
1059 1059 def matches(x):
1060 1060 c = repo[x]
1061 1061 for e in c.files() + [c.user(), c.description()]:
1062 1062 if gr.search(e):
1063 1063 return True
1064 1064 return False
1065 1065
1066 1066 return subset.filter(matches, condrepr=('<grep %r>', gr.pattern))
1067 1067
1068 1068 @predicate('_matchfiles', safe=True)
1069 1069 def _matchfiles(repo, subset, x):
1070 1070 # _matchfiles takes a revset list of prefixed arguments:
1071 1071 #
1072 1072 # [p:foo, i:bar, x:baz]
1073 1073 #
1074 1074 # builds a match object from them and filters subset. Allowed
1075 1075 # prefixes are 'p:' for regular patterns, 'i:' for include
1076 1076 # patterns and 'x:' for exclude patterns. Use 'r:' prefix to pass
1077 1077 # a revision identifier, or the empty string to reference the
1078 1078 # working directory, from which the match object is
1079 1079 # initialized. Use 'd:' to set the default matching mode, default
1080 1080 # to 'glob'. At most one 'r:' and 'd:' argument can be passed.
1081 1081
1082 1082 l = getargs(x, 1, -1, "_matchfiles requires at least one argument")
1083 1083 pats, inc, exc = [], [], []
1084 1084 rev, default = None, None
1085 1085 for arg in l:
1086 1086 s = getstring(arg, "_matchfiles requires string arguments")
1087 1087 prefix, value = s[:2], s[2:]
1088 1088 if prefix == 'p:':
1089 1089 pats.append(value)
1090 1090 elif prefix == 'i:':
1091 1091 inc.append(value)
1092 1092 elif prefix == 'x:':
1093 1093 exc.append(value)
1094 1094 elif prefix == 'r:':
1095 1095 if rev is not None:
1096 1096 raise error.ParseError('_matchfiles expected at most one '
1097 1097 'revision')
1098 1098 if value != '': # empty means working directory; leave rev as None
1099 1099 rev = value
1100 1100 elif prefix == 'd:':
1101 1101 if default is not None:
1102 1102 raise error.ParseError('_matchfiles expected at most one '
1103 1103 'default mode')
1104 1104 default = value
1105 1105 else:
1106 1106 raise error.ParseError('invalid _matchfiles prefix: %s' % prefix)
1107 1107 if not default:
1108 1108 default = 'glob'
1109 1109
1110 1110 m = matchmod.match(repo.root, repo.getcwd(), pats, include=inc,
1111 1111 exclude=exc, ctx=repo[rev], default=default)
1112 1112
1113 1113 # This directly read the changelog data as creating changectx for all
1114 1114 # revisions is quite expensive.
1115 1115 getfiles = repo.changelog.readfiles
1116 1116 wdirrev = node.wdirrev
1117 1117 def matches(x):
1118 1118 if x == wdirrev:
1119 1119 files = repo[x].files()
1120 1120 else:
1121 1121 files = getfiles(x)
1122 1122 for f in files:
1123 1123 if m(f):
1124 1124 return True
1125 1125 return False
1126 1126
1127 1127 return subset.filter(matches,
1128 1128 condrepr=('<matchfiles patterns=%r, include=%r '
1129 1129 'exclude=%r, default=%r, rev=%r>',
1130 1130 pats, inc, exc, default, rev))
1131 1131
1132 1132 @predicate('file(pattern)', safe=True)
1133 1133 def hasfile(repo, subset, x):
1134 1134 """Changesets affecting files matched by pattern.
1135 1135
1136 1136 For a faster but less accurate result, consider using ``filelog()``
1137 1137 instead.
1138 1138
1139 1139 This predicate uses ``glob:`` as the default kind of pattern.
1140 1140 """
1141 1141 # i18n: "file" is a keyword
1142 1142 pat = getstring(x, _("file requires a pattern"))
1143 1143 return _matchfiles(repo, subset, ('string', 'p:' + pat))
1144 1144
1145 1145 @predicate('head()', safe=True)
1146 1146 def head(repo, subset, x):
1147 1147 """Changeset is a named branch head.
1148 1148 """
1149 1149 # i18n: "head" is a keyword
1150 1150 getargs(x, 0, 0, _("head takes no arguments"))
1151 1151 hs = set()
1152 1152 cl = repo.changelog
1153 1153 for b, ls in repo.branchmap().iteritems():
1154 1154 hs.update(cl.rev(h) for h in ls)
1155 1155 # XXX using a set to feed the baseset is wrong. Sets are not ordered.
1156 1156 # This does not break because of other fullreposet misbehavior.
1157 1157 # XXX We should combine with subset first: 'subset & baseset(...)'. This is
1158 1158 # necessary to ensure we preserve the order in subset.
1159 1159 return baseset(hs) & subset
1160 1160
1161 1161 @predicate('heads(set)', safe=True)
1162 1162 def heads(repo, subset, x):
1163 1163 """Members of set with no children in set.
1164 1164 """
1165 1165 s = getset(repo, subset, x)
1166 1166 ps = parents(repo, subset, x)
1167 1167 return s - ps
1168 1168
1169 1169 @predicate('hidden()', safe=True)
1170 1170 def hidden(repo, subset, x):
1171 1171 """Hidden changesets.
1172 1172 """
1173 1173 # i18n: "hidden" is a keyword
1174 1174 getargs(x, 0, 0, _("hidden takes no arguments"))
1175 1175 hiddenrevs = repoview.filterrevs(repo, 'visible')
1176 1176 return subset & hiddenrevs
1177 1177
1178 1178 @predicate('keyword(string)', safe=True)
1179 1179 def keyword(repo, subset, x):
1180 1180 """Search commit message, user name, and names of changed files for
1181 1181 string. The match is case-insensitive.
1182 1182 """
1183 1183 # i18n: "keyword" is a keyword
1184 1184 kw = encoding.lower(getstring(x, _("keyword requires a string")))
1185 1185
1186 1186 def matches(r):
1187 1187 c = repo[r]
1188 1188 return any(kw in encoding.lower(t)
1189 1189 for t in c.files() + [c.user(), c.description()])
1190 1190
1191 1191 return subset.filter(matches, condrepr=('<keyword %r>', kw))
1192 1192
1193 1193 @predicate('limit(set[, n[, offset]])', safe=True)
1194 1194 def limit(repo, subset, x):
1195 1195 """First n members of set, defaulting to 1, starting from offset.
1196 1196 """
1197 1197 args = getargsdict(x, 'limit', 'set n offset')
1198 1198 if 'set' not in args:
1199 1199 # i18n: "limit" is a keyword
1200 1200 raise error.ParseError(_("limit requires one to three arguments"))
1201 1201 try:
1202 1202 lim, ofs = 1, 0
1203 1203 if 'n' in args:
1204 1204 # i18n: "limit" is a keyword
1205 1205 lim = int(getstring(args['n'], _("limit requires a number")))
1206 1206 if 'offset' in args:
1207 1207 # i18n: "limit" is a keyword
1208 1208 ofs = int(getstring(args['offset'], _("limit requires a number")))
1209 1209 if ofs < 0:
1210 1210 raise error.ParseError(_("negative offset"))
1211 1211 except (TypeError, ValueError):
1212 1212 # i18n: "limit" is a keyword
1213 1213 raise error.ParseError(_("limit expects a number"))
1214 1214 os = getset(repo, fullreposet(repo), args['set'])
1215 1215 result = []
1216 1216 it = iter(os)
1217 1217 for x in xrange(ofs):
1218 1218 y = next(it, None)
1219 1219 if y is None:
1220 1220 break
1221 1221 for x in xrange(lim):
1222 1222 y = next(it, None)
1223 1223 if y is None:
1224 1224 break
1225 1225 elif y in subset:
1226 1226 result.append(y)
1227 1227 return baseset(result, datarepr=('<limit n=%d, offset=%d, %r, %r>',
1228 1228 lim, ofs, subset, os))
1229 1229
1230 1230 @predicate('last(set, [n])', safe=True)
1231 1231 def last(repo, subset, x):
1232 1232 """Last n members of set, defaulting to 1.
1233 1233 """
1234 1234 # i18n: "last" is a keyword
1235 1235 l = getargs(x, 1, 2, _("last requires one or two arguments"))
1236 1236 try:
1237 1237 lim = 1
1238 1238 if len(l) == 2:
1239 1239 # i18n: "last" is a keyword
1240 1240 lim = int(getstring(l[1], _("last requires a number")))
1241 1241 except (TypeError, ValueError):
1242 1242 # i18n: "last" is a keyword
1243 1243 raise error.ParseError(_("last expects a number"))
1244 1244 os = getset(repo, fullreposet(repo), l[0])
1245 1245 os.reverse()
1246 1246 result = []
1247 1247 it = iter(os)
1248 1248 for x in xrange(lim):
1249 1249 y = next(it, None)
1250 1250 if y is None:
1251 1251 break
1252 1252 elif y in subset:
1253 1253 result.append(y)
1254 1254 return baseset(result, datarepr=('<last n=%d, %r, %r>', lim, subset, os))
1255 1255
1256 1256 @predicate('max(set)', safe=True)
1257 1257 def maxrev(repo, subset, x):
1258 1258 """Changeset with highest revision number in set.
1259 1259 """
1260 1260 os = getset(repo, fullreposet(repo), x)
1261 1261 try:
1262 1262 m = os.max()
1263 1263 if m in subset:
1264 1264 return baseset([m], datarepr=('<max %r, %r>', subset, os))
1265 1265 except ValueError:
1266 1266 # os.max() throws a ValueError when the collection is empty.
1267 1267 # Same as python's max().
1268 1268 pass
1269 1269 return baseset(datarepr=('<max %r, %r>', subset, os))
1270 1270
1271 1271 @predicate('merge()', safe=True)
1272 1272 def merge(repo, subset, x):
1273 1273 """Changeset is a merge changeset.
1274 1274 """
1275 1275 # i18n: "merge" is a keyword
1276 1276 getargs(x, 0, 0, _("merge takes no arguments"))
1277 1277 cl = repo.changelog
1278 1278 return subset.filter(lambda r: cl.parentrevs(r)[1] != -1,
1279 1279 condrepr='<merge>')
1280 1280
1281 1281 @predicate('branchpoint()', safe=True)
1282 1282 def branchpoint(repo, subset, x):
1283 1283 """Changesets with more than one child.
1284 1284 """
1285 1285 # i18n: "branchpoint" is a keyword
1286 1286 getargs(x, 0, 0, _("branchpoint takes no arguments"))
1287 1287 cl = repo.changelog
1288 1288 if not subset:
1289 1289 return baseset()
1290 1290 # XXX this should be 'parentset.min()' assuming 'parentset' is a smartset
1291 1291 # (and if it is not, it should.)
1292 1292 baserev = min(subset)
1293 1293 parentscount = [0]*(len(repo) - baserev)
1294 1294 for r in cl.revs(start=baserev + 1):
1295 1295 for p in cl.parentrevs(r):
1296 1296 if p >= baserev:
1297 1297 parentscount[p - baserev] += 1
1298 1298 return subset.filter(lambda r: parentscount[r - baserev] > 1,
1299 1299 condrepr='<branchpoint>')
1300 1300
1301 1301 @predicate('min(set)', safe=True)
1302 1302 def minrev(repo, subset, x):
1303 1303 """Changeset with lowest revision number in set.
1304 1304 """
1305 1305 os = getset(repo, fullreposet(repo), x)
1306 1306 try:
1307 1307 m = os.min()
1308 1308 if m in subset:
1309 1309 return baseset([m], datarepr=('<min %r, %r>', subset, os))
1310 1310 except ValueError:
1311 1311 # os.min() throws a ValueError when the collection is empty.
1312 1312 # Same as python's min().
1313 1313 pass
1314 1314 return baseset(datarepr=('<min %r, %r>', subset, os))
1315 1315
1316 1316 @predicate('modifies(pattern)', safe=True)
1317 1317 def modifies(repo, subset, x):
1318 1318 """Changesets modifying files matched by pattern.
1319 1319
1320 1320 The pattern without explicit kind like ``glob:`` is expected to be
1321 1321 relative to the current directory and match against a file or a
1322 1322 directory.
1323 1323 """
1324 1324 # i18n: "modifies" is a keyword
1325 1325 pat = getstring(x, _("modifies requires a pattern"))
1326 1326 return checkstatus(repo, subset, pat, 0)
1327 1327
1328 1328 @predicate('named(namespace)')
1329 1329 def named(repo, subset, x):
1330 1330 """The changesets in a given namespace.
1331 1331
1332 1332 If `namespace` starts with `re:`, the remainder of the string is treated as
1333 1333 a regular expression. To match a namespace that actually starts with `re:`,
1334 1334 use the prefix `literal:`.
1335 1335 """
1336 1336 # i18n: "named" is a keyword
1337 1337 args = getargs(x, 1, 1, _('named requires a namespace argument'))
1338 1338
1339 1339 ns = getstring(args[0],
1340 1340 # i18n: "named" is a keyword
1341 1341 _('the argument to named must be a string'))
1342 1342 kind, pattern, matcher = util.stringmatcher(ns)
1343 1343 namespaces = set()
1344 1344 if kind == 'literal':
1345 1345 if pattern not in repo.names:
1346 1346 raise error.RepoLookupError(_("namespace '%s' does not exist")
1347 1347 % ns)
1348 1348 namespaces.add(repo.names[pattern])
1349 1349 else:
1350 1350 for name, ns in repo.names.iteritems():
1351 1351 if matcher(name):
1352 1352 namespaces.add(ns)
1353 1353 if not namespaces:
1354 1354 raise error.RepoLookupError(_("no namespace exists"
1355 1355 " that match '%s'") % pattern)
1356 1356
1357 1357 names = set()
1358 1358 for ns in namespaces:
1359 1359 for name in ns.listnames(repo):
1360 1360 if name not in ns.deprecated:
1361 1361 names.update(repo[n].rev() for n in ns.nodes(repo, name))
1362 1362
1363 1363 names -= set([node.nullrev])
1364 1364 return subset & names
1365 1365
1366 1366 @predicate('id(string)', safe=True)
1367 1367 def node_(repo, subset, x):
1368 1368 """Revision non-ambiguously specified by the given hex string prefix.
1369 1369 """
1370 1370 # i18n: "id" is a keyword
1371 1371 l = getargs(x, 1, 1, _("id requires one argument"))
1372 1372 # i18n: "id" is a keyword
1373 1373 n = getstring(l[0], _("id requires a string"))
1374 1374 if len(n) == 40:
1375 1375 try:
1376 1376 rn = repo.changelog.rev(node.bin(n))
1377 1377 except (LookupError, TypeError):
1378 1378 rn = None
1379 1379 else:
1380 1380 rn = None
1381 1381 pm = repo.changelog._partialmatch(n)
1382 1382 if pm is not None:
1383 1383 rn = repo.changelog.rev(pm)
1384 1384
1385 1385 if rn is None:
1386 1386 return baseset()
1387 1387 result = baseset([rn])
1388 1388 return result & subset
1389 1389
1390 1390 @predicate('obsolete()', safe=True)
1391 1391 def obsolete(repo, subset, x):
1392 1392 """Mutable changeset with a newer version."""
1393 1393 # i18n: "obsolete" is a keyword
1394 1394 getargs(x, 0, 0, _("obsolete takes no arguments"))
1395 1395 obsoletes = obsmod.getrevs(repo, 'obsolete')
1396 1396 return subset & obsoletes
1397 1397
1398 1398 @predicate('only(set, [set])', safe=True)
1399 1399 def only(repo, subset, x):
1400 1400 """Changesets that are ancestors of the first set that are not ancestors
1401 1401 of any other head in the repo. If a second set is specified, the result
1402 1402 is ancestors of the first set that are not ancestors of the second set
1403 1403 (i.e. ::<set1> - ::<set2>).
1404 1404 """
1405 1405 cl = repo.changelog
1406 1406 # i18n: "only" is a keyword
1407 1407 args = getargs(x, 1, 2, _('only takes one or two arguments'))
1408 1408 include = getset(repo, fullreposet(repo), args[0])
1409 1409 if len(args) == 1:
1410 1410 if not include:
1411 1411 return baseset()
1412 1412
1413 1413 descendants = set(_revdescendants(repo, include, False))
1414 1414 exclude = [rev for rev in cl.headrevs()
1415 1415 if not rev in descendants and not rev in include]
1416 1416 else:
1417 1417 exclude = getset(repo, fullreposet(repo), args[1])
1418 1418
1419 1419 results = set(cl.findmissingrevs(common=exclude, heads=include))
1420 1420 # XXX we should turn this into a baseset instead of a set, smartset may do
1421 1421 # some optimisations from the fact this is a baseset.
1422 1422 return subset & results
1423 1423
1424 1424 @predicate('origin([set])', safe=True)
1425 1425 def origin(repo, subset, x):
1426 1426 """
1427 1427 Changesets that were specified as a source for the grafts, transplants or
1428 1428 rebases that created the given revisions. Omitting the optional set is the
1429 1429 same as passing all(). If a changeset created by these operations is itself
1430 1430 specified as a source for one of these operations, only the source changeset
1431 1431 for the first operation is selected.
1432 1432 """
1433 1433 if x is not None:
1434 1434 dests = getset(repo, fullreposet(repo), x)
1435 1435 else:
1436 1436 dests = fullreposet(repo)
1437 1437
1438 1438 def _firstsrc(rev):
1439 1439 src = _getrevsource(repo, rev)
1440 1440 if src is None:
1441 1441 return None
1442 1442
1443 1443 while True:
1444 1444 prev = _getrevsource(repo, src)
1445 1445
1446 1446 if prev is None:
1447 1447 return src
1448 1448 src = prev
1449 1449
1450 1450 o = set([_firstsrc(r) for r in dests])
1451 1451 o -= set([None])
1452 1452 # XXX we should turn this into a baseset instead of a set, smartset may do
1453 1453 # some optimisations from the fact this is a baseset.
1454 1454 return subset & o
1455 1455
1456 1456 @predicate('outgoing([path])', safe=True)
1457 1457 def outgoing(repo, subset, x):
1458 1458 """Changesets not found in the specified destination repository, or the
1459 1459 default push location.
1460 1460 """
1461 1461 # Avoid cycles.
1462 1462 from . import (
1463 1463 discovery,
1464 1464 hg,
1465 1465 )
1466 1466 # i18n: "outgoing" is a keyword
1467 1467 l = getargs(x, 0, 1, _("outgoing takes one or no arguments"))
1468 1468 # i18n: "outgoing" is a keyword
1469 1469 dest = l and getstring(l[0], _("outgoing requires a repository path")) or ''
1470 1470 dest = repo.ui.expandpath(dest or 'default-push', dest or 'default')
1471 1471 dest, branches = hg.parseurl(dest)
1472 1472 revs, checkout = hg.addbranchrevs(repo, repo, branches, [])
1473 1473 if revs:
1474 1474 revs = [repo.lookup(rev) for rev in revs]
1475 1475 other = hg.peer(repo, {}, dest)
1476 1476 repo.ui.pushbuffer()
1477 1477 outgoing = discovery.findcommonoutgoing(repo, other, onlyheads=revs)
1478 1478 repo.ui.popbuffer()
1479 1479 cl = repo.changelog
1480 1480 o = set([cl.rev(r) for r in outgoing.missing])
1481 1481 return subset & o
1482 1482
1483 1483 @predicate('p1([set])', safe=True)
1484 1484 def p1(repo, subset, x):
1485 1485 """First parent of changesets in set, or the working directory.
1486 1486 """
1487 1487 if x is None:
1488 1488 p = repo[x].p1().rev()
1489 1489 if p >= 0:
1490 1490 return subset & baseset([p])
1491 1491 return baseset()
1492 1492
1493 1493 ps = set()
1494 1494 cl = repo.changelog
1495 1495 for r in getset(repo, fullreposet(repo), x):
1496 1496 ps.add(cl.parentrevs(r)[0])
1497 1497 ps -= set([node.nullrev])
1498 1498 # XXX we should turn this into a baseset instead of a set, smartset may do
1499 1499 # some optimisations from the fact this is a baseset.
1500 1500 return subset & ps
1501 1501
1502 1502 @predicate('p2([set])', safe=True)
1503 1503 def p2(repo, subset, x):
1504 1504 """Second parent of changesets in set, or the working directory.
1505 1505 """
1506 1506 if x is None:
1507 1507 ps = repo[x].parents()
1508 1508 try:
1509 1509 p = ps[1].rev()
1510 1510 if p >= 0:
1511 1511 return subset & baseset([p])
1512 1512 return baseset()
1513 1513 except IndexError:
1514 1514 return baseset()
1515 1515
1516 1516 ps = set()
1517 1517 cl = repo.changelog
1518 1518 for r in getset(repo, fullreposet(repo), x):
1519 1519 ps.add(cl.parentrevs(r)[1])
1520 1520 ps -= set([node.nullrev])
1521 1521 # XXX we should turn this into a baseset instead of a set, smartset may do
1522 1522 # some optimisations from the fact this is a baseset.
1523 1523 return subset & ps
1524 1524
1525 1525 @predicate('parents([set])', safe=True)
1526 1526 def parents(repo, subset, x):
1527 1527 """
1528 1528 The set of all parents for all changesets in set, or the working directory.
1529 1529 """
1530 1530 if x is None:
1531 1531 ps = set(p.rev() for p in repo[x].parents())
1532 1532 else:
1533 1533 ps = set()
1534 1534 cl = repo.changelog
1535 1535 up = ps.update
1536 1536 parentrevs = cl.parentrevs
1537 1537 for r in getset(repo, fullreposet(repo), x):
1538 1538 if r == node.wdirrev:
1539 1539 up(p.rev() for p in repo[r].parents())
1540 1540 else:
1541 1541 up(parentrevs(r))
1542 1542 ps -= set([node.nullrev])
1543 1543 return subset & ps
1544 1544
1545 1545 def _phase(repo, subset, target):
1546 1546 """helper to select all rev in phase <target>"""
1547 1547 repo._phasecache.loadphaserevs(repo) # ensure phase's sets are loaded
1548 1548 if repo._phasecache._phasesets:
1549 1549 s = repo._phasecache._phasesets[target] - repo.changelog.filteredrevs
1550 1550 s = baseset(s)
1551 1551 s.sort() # set are non ordered, so we enforce ascending
1552 1552 return subset & s
1553 1553 else:
1554 1554 phase = repo._phasecache.phase
1555 1555 condition = lambda r: phase(repo, r) == target
1556 1556 return subset.filter(condition, condrepr=('<phase %r>', target),
1557 1557 cache=False)
1558 1558
1559 1559 @predicate('draft()', safe=True)
1560 1560 def draft(repo, subset, x):
1561 1561 """Changeset in draft phase."""
1562 1562 # i18n: "draft" is a keyword
1563 1563 getargs(x, 0, 0, _("draft takes no arguments"))
1564 1564 target = phases.draft
1565 1565 return _phase(repo, subset, target)
1566 1566
1567 1567 @predicate('secret()', safe=True)
1568 1568 def secret(repo, subset, x):
1569 1569 """Changeset in secret phase."""
1570 1570 # i18n: "secret" is a keyword
1571 1571 getargs(x, 0, 0, _("secret takes no arguments"))
1572 1572 target = phases.secret
1573 1573 return _phase(repo, subset, target)
1574 1574
1575 1575 def parentspec(repo, subset, x, n):
1576 1576 """``set^0``
1577 1577 The set.
1578 1578 ``set^1`` (or ``set^``), ``set^2``
1579 1579 First or second parent, respectively, of all changesets in set.
1580 1580 """
1581 1581 try:
1582 1582 n = int(n[1])
1583 1583 if n not in (0, 1, 2):
1584 1584 raise ValueError
1585 1585 except (TypeError, ValueError):
1586 1586 raise error.ParseError(_("^ expects a number 0, 1, or 2"))
1587 1587 ps = set()
1588 1588 cl = repo.changelog
1589 1589 for r in getset(repo, fullreposet(repo), x):
1590 1590 if n == 0:
1591 1591 ps.add(r)
1592 1592 elif n == 1:
1593 1593 ps.add(cl.parentrevs(r)[0])
1594 1594 elif n == 2:
1595 1595 parents = cl.parentrevs(r)
1596 1596 if len(parents) > 1:
1597 1597 ps.add(parents[1])
1598 1598 return subset & ps
1599 1599
1600 1600 @predicate('present(set)', safe=True)
1601 1601 def present(repo, subset, x):
1602 1602 """An empty set, if any revision in set isn't found; otherwise,
1603 1603 all revisions in set.
1604 1604
1605 1605 If any of specified revisions is not present in the local repository,
1606 1606 the query is normally aborted. But this predicate allows the query
1607 1607 to continue even in such cases.
1608 1608 """
1609 1609 try:
1610 1610 return getset(repo, subset, x)
1611 1611 except error.RepoLookupError:
1612 1612 return baseset()
1613 1613
1614 1614 # for internal use
1615 1615 @predicate('_notpublic', safe=True)
1616 1616 def _notpublic(repo, subset, x):
1617 1617 getargs(x, 0, 0, "_notpublic takes no arguments")
1618 1618 repo._phasecache.loadphaserevs(repo) # ensure phase's sets are loaded
1619 1619 if repo._phasecache._phasesets:
1620 1620 s = set()
1621 1621 for u in repo._phasecache._phasesets[1:]:
1622 1622 s.update(u)
1623 1623 s = baseset(s - repo.changelog.filteredrevs)
1624 1624 s.sort()
1625 1625 return subset & s
1626 1626 else:
1627 1627 phase = repo._phasecache.phase
1628 1628 target = phases.public
1629 1629 condition = lambda r: phase(repo, r) != target
1630 1630 return subset.filter(condition, condrepr=('<phase %r>', target),
1631 1631 cache=False)
1632 1632
1633 1633 @predicate('public()', safe=True)
1634 1634 def public(repo, subset, x):
1635 1635 """Changeset in public phase."""
1636 1636 # i18n: "public" is a keyword
1637 1637 getargs(x, 0, 0, _("public takes no arguments"))
1638 1638 phase = repo._phasecache.phase
1639 1639 target = phases.public
1640 1640 condition = lambda r: phase(repo, r) == target
1641 1641 return subset.filter(condition, condrepr=('<phase %r>', target),
1642 1642 cache=False)
1643 1643
1644 1644 @predicate('remote([id [,path]])', safe=True)
1645 1645 def remote(repo, subset, x):
1646 1646 """Local revision that corresponds to the given identifier in a
1647 1647 remote repository, if present. Here, the '.' identifier is a
1648 1648 synonym for the current local branch.
1649 1649 """
1650 1650
1651 1651 from . import hg # avoid start-up nasties
1652 1652 # i18n: "remote" is a keyword
1653 1653 l = getargs(x, 0, 2, _("remote takes zero, one, or two arguments"))
1654 1654
1655 1655 q = '.'
1656 1656 if len(l) > 0:
1657 1657 # i18n: "remote" is a keyword
1658 1658 q = getstring(l[0], _("remote requires a string id"))
1659 1659 if q == '.':
1660 1660 q = repo['.'].branch()
1661 1661
1662 1662 dest = ''
1663 1663 if len(l) > 1:
1664 1664 # i18n: "remote" is a keyword
1665 1665 dest = getstring(l[1], _("remote requires a repository path"))
1666 1666 dest = repo.ui.expandpath(dest or 'default')
1667 1667 dest, branches = hg.parseurl(dest)
1668 1668 revs, checkout = hg.addbranchrevs(repo, repo, branches, [])
1669 1669 if revs:
1670 1670 revs = [repo.lookup(rev) for rev in revs]
1671 1671 other = hg.peer(repo, {}, dest)
1672 1672 n = other.lookup(q)
1673 1673 if n in repo:
1674 1674 r = repo[n].rev()
1675 1675 if r in subset:
1676 1676 return baseset([r])
1677 1677 return baseset()
1678 1678
1679 1679 @predicate('removes(pattern)', safe=True)
1680 1680 def removes(repo, subset, x):
1681 1681 """Changesets which remove files matching pattern.
1682 1682
1683 1683 The pattern without explicit kind like ``glob:`` is expected to be
1684 1684 relative to the current directory and match against a file or a
1685 1685 directory.
1686 1686 """
1687 1687 # i18n: "removes" is a keyword
1688 1688 pat = getstring(x, _("removes requires a pattern"))
1689 1689 return checkstatus(repo, subset, pat, 2)
1690 1690
1691 1691 @predicate('rev(number)', safe=True)
1692 1692 def rev(repo, subset, x):
1693 1693 """Revision with the given numeric identifier.
1694 1694 """
1695 1695 # i18n: "rev" is a keyword
1696 1696 l = getargs(x, 1, 1, _("rev requires one argument"))
1697 1697 try:
1698 1698 # i18n: "rev" is a keyword
1699 1699 l = int(getstring(l[0], _("rev requires a number")))
1700 1700 except (TypeError, ValueError):
1701 1701 # i18n: "rev" is a keyword
1702 1702 raise error.ParseError(_("rev expects a number"))
1703 1703 if l not in repo.changelog and l != node.nullrev:
1704 1704 return baseset()
1705 1705 return subset & baseset([l])
1706 1706
1707 1707 @predicate('matching(revision [, field])', safe=True)
1708 1708 def matching(repo, subset, x):
1709 1709 """Changesets in which a given set of fields match the set of fields in the
1710 1710 selected revision or set.
1711 1711
1712 1712 To match more than one field pass the list of fields to match separated
1713 1713 by spaces (e.g. ``author description``).
1714 1714
1715 1715 Valid fields are most regular revision fields and some special fields.
1716 1716
1717 1717 Regular revision fields are ``description``, ``author``, ``branch``,
1718 1718 ``date``, ``files``, ``phase``, ``parents``, ``substate``, ``user``
1719 1719 and ``diff``.
1720 1720 Note that ``author`` and ``user`` are synonyms. ``diff`` refers to the
1721 1721 contents of the revision. Two revisions matching their ``diff`` will
1722 1722 also match their ``files``.
1723 1723
1724 1724 Special fields are ``summary`` and ``metadata``:
1725 1725 ``summary`` matches the first line of the description.
1726 1726 ``metadata`` is equivalent to matching ``description user date``
1727 1727 (i.e. it matches the main metadata fields).
1728 1728
1729 1729 ``metadata`` is the default field which is used when no fields are
1730 1730 specified. You can match more than one field at a time.
1731 1731 """
1732 1732 # i18n: "matching" is a keyword
1733 1733 l = getargs(x, 1, 2, _("matching takes 1 or 2 arguments"))
1734 1734
1735 1735 revs = getset(repo, fullreposet(repo), l[0])
1736 1736
1737 1737 fieldlist = ['metadata']
1738 1738 if len(l) > 1:
1739 1739 fieldlist = getstring(l[1],
1740 1740 # i18n: "matching" is a keyword
1741 1741 _("matching requires a string "
1742 1742 "as its second argument")).split()
1743 1743
1744 1744 # Make sure that there are no repeated fields,
1745 1745 # expand the 'special' 'metadata' field type
1746 1746 # and check the 'files' whenever we check the 'diff'
1747 1747 fields = []
1748 1748 for field in fieldlist:
1749 1749 if field == 'metadata':
1750 1750 fields += ['user', 'description', 'date']
1751 1751 elif field == 'diff':
1752 1752 # a revision matching the diff must also match the files
1753 1753 # since matching the diff is very costly, make sure to
1754 1754 # also match the files first
1755 1755 fields += ['files', 'diff']
1756 1756 else:
1757 1757 if field == 'author':
1758 1758 field = 'user'
1759 1759 fields.append(field)
1760 1760 fields = set(fields)
1761 1761 if 'summary' in fields and 'description' in fields:
1762 1762 # If a revision matches its description it also matches its summary
1763 1763 fields.discard('summary')
1764 1764
1765 1765 # We may want to match more than one field
1766 1766 # Not all fields take the same amount of time to be matched
1767 1767 # Sort the selected fields in order of increasing matching cost
1768 1768 fieldorder = ['phase', 'parents', 'user', 'date', 'branch', 'summary',
1769 1769 'files', 'description', 'substate', 'diff']
1770 1770 def fieldkeyfunc(f):
1771 1771 try:
1772 1772 return fieldorder.index(f)
1773 1773 except ValueError:
1774 1774 # assume an unknown field is very costly
1775 1775 return len(fieldorder)
1776 1776 fields = list(fields)
1777 1777 fields.sort(key=fieldkeyfunc)
1778 1778
1779 1779 # Each field will be matched with its own "getfield" function
1780 1780 # which will be added to the getfieldfuncs array of functions
1781 1781 getfieldfuncs = []
1782 1782 _funcs = {
1783 1783 'user': lambda r: repo[r].user(),
1784 1784 'branch': lambda r: repo[r].branch(),
1785 1785 'date': lambda r: repo[r].date(),
1786 1786 'description': lambda r: repo[r].description(),
1787 1787 'files': lambda r: repo[r].files(),
1788 1788 'parents': lambda r: repo[r].parents(),
1789 1789 'phase': lambda r: repo[r].phase(),
1790 1790 'substate': lambda r: repo[r].substate,
1791 1791 'summary': lambda r: repo[r].description().splitlines()[0],
1792 1792 'diff': lambda r: list(repo[r].diff(git=True),)
1793 1793 }
1794 1794 for info in fields:
1795 1795 getfield = _funcs.get(info, None)
1796 1796 if getfield is None:
1797 1797 raise error.ParseError(
1798 1798 # i18n: "matching" is a keyword
1799 1799 _("unexpected field name passed to matching: %s") % info)
1800 1800 getfieldfuncs.append(getfield)
1801 1801 # convert the getfield array of functions into a "getinfo" function
1802 1802 # which returns an array of field values (or a single value if there
1803 1803 # is only one field to match)
1804 1804 getinfo = lambda r: [f(r) for f in getfieldfuncs]
1805 1805
1806 1806 def matches(x):
1807 1807 for rev in revs:
1808 1808 target = getinfo(rev)
1809 1809 match = True
1810 1810 for n, f in enumerate(getfieldfuncs):
1811 1811 if target[n] != f(x):
1812 1812 match = False
1813 1813 if match:
1814 1814 return True
1815 1815 return False
1816 1816
1817 1817 return subset.filter(matches, condrepr=('<matching%r %r>', fields, revs))
1818 1818
1819 1819 @predicate('reverse(set)', safe=True)
1820 1820 def reverse(repo, subset, x):
1821 1821 """Reverse order of set.
1822 1822 """
1823 1823 l = getset(repo, subset, x)
1824 1824 l.reverse()
1825 1825 return l
1826 1826
1827 1827 @predicate('roots(set)', safe=True)
1828 1828 def roots(repo, subset, x):
1829 1829 """Changesets in set with no parent changeset in set.
1830 1830 """
1831 1831 s = getset(repo, fullreposet(repo), x)
1832 1832 parents = repo.changelog.parentrevs
1833 1833 def filter(r):
1834 1834 for p in parents(r):
1835 1835 if 0 <= p and p in s:
1836 1836 return False
1837 1837 return True
1838 1838 return subset & s.filter(filter, condrepr='<roots>')
1839 1839
1840 1840 @predicate('sort(set[, [-]key...])', safe=True)
1841 1841 def sort(repo, subset, x):
1842 1842 """Sort set by keys. The default sort order is ascending, specify a key
1843 1843 as ``-key`` to sort in descending order.
1844 1844
1845 1845 The keys can be:
1846 1846
1847 1847 - ``rev`` for the revision number,
1848 1848 - ``branch`` for the branch name,
1849 1849 - ``desc`` for the commit message (description),
1850 1850 - ``user`` for user name (``author`` can be used as an alias),
1851 1851 - ``date`` for the commit date
1852 1852 """
1853 1853 # i18n: "sort" is a keyword
1854 1854 l = getargs(x, 1, 2, _("sort requires one or two arguments"))
1855 1855 keys = "rev"
1856 1856 if len(l) == 2:
1857 1857 # i18n: "sort" is a keyword
1858 1858 keys = getstring(l[1], _("sort spec must be a string"))
1859 1859
1860 1860 s = l[0]
1861 1861 keys = keys.split()
1862 1862 l = []
1863 1863 def invert(s):
1864 1864 return "".join(chr(255 - ord(c)) for c in s)
1865 1865 revs = getset(repo, subset, s)
1866 1866 if keys == ["rev"]:
1867 1867 revs.sort()
1868 1868 return revs
1869 1869 elif keys == ["-rev"]:
1870 1870 revs.sort(reverse=True)
1871 1871 return revs
1872 1872 for r in revs:
1873 1873 c = repo[r]
1874 1874 e = []
1875 1875 for k in keys:
1876 1876 if k == 'rev':
1877 1877 e.append(r)
1878 1878 elif k == '-rev':
1879 1879 e.append(-r)
1880 1880 elif k == 'branch':
1881 1881 e.append(c.branch())
1882 1882 elif k == '-branch':
1883 1883 e.append(invert(c.branch()))
1884 1884 elif k == 'desc':
1885 1885 e.append(c.description())
1886 1886 elif k == '-desc':
1887 1887 e.append(invert(c.description()))
1888 1888 elif k in 'user author':
1889 1889 e.append(c.user())
1890 1890 elif k in '-user -author':
1891 1891 e.append(invert(c.user()))
1892 1892 elif k == 'date':
1893 1893 e.append(c.date()[0])
1894 1894 elif k == '-date':
1895 1895 e.append(-c.date()[0])
1896 1896 else:
1897 1897 raise error.ParseError(_("unknown sort key %r") % k)
1898 1898 e.append(r)
1899 1899 l.append(e)
1900 1900 l.sort()
1901 1901 return baseset([e[-1] for e in l])
1902 1902
1903 1903 @predicate('subrepo([pattern])')
1904 1904 def subrepo(repo, subset, x):
1905 1905 """Changesets that add, modify or remove the given subrepo. If no subrepo
1906 1906 pattern is named, any subrepo changes are returned.
1907 1907 """
1908 1908 # i18n: "subrepo" is a keyword
1909 1909 args = getargs(x, 0, 1, _('subrepo takes at most one argument'))
1910 1910 pat = None
1911 1911 if len(args) != 0:
1912 1912 pat = getstring(args[0], _("subrepo requires a pattern"))
1913 1913
1914 1914 m = matchmod.exact(repo.root, repo.root, ['.hgsubstate'])
1915 1915
1916 1916 def submatches(names):
1917 1917 k, p, m = util.stringmatcher(pat)
1918 1918 for name in names:
1919 1919 if m(name):
1920 1920 yield name
1921 1921
1922 1922 def matches(x):
1923 1923 c = repo[x]
1924 1924 s = repo.status(c.p1().node(), c.node(), match=m)
1925 1925
1926 1926 if pat is None:
1927 1927 return s.added or s.modified or s.removed
1928 1928
1929 1929 if s.added:
1930 1930 return any(submatches(c.substate.keys()))
1931 1931
1932 1932 if s.modified:
1933 1933 subs = set(c.p1().substate.keys())
1934 1934 subs.update(c.substate.keys())
1935 1935
1936 1936 for path in submatches(subs):
1937 1937 if c.p1().substate.get(path) != c.substate.get(path):
1938 1938 return True
1939 1939
1940 1940 if s.removed:
1941 1941 return any(submatches(c.p1().substate.keys()))
1942 1942
1943 1943 return False
1944 1944
1945 1945 return subset.filter(matches, condrepr=('<subrepo %r>', pat))
1946 1946
1947 1947 def _substringmatcher(pattern):
1948 1948 kind, pattern, matcher = util.stringmatcher(pattern)
1949 1949 if kind == 'literal':
1950 1950 matcher = lambda s: pattern in s
1951 1951 return kind, pattern, matcher
1952 1952
1953 1953 @predicate('tag([name])', safe=True)
1954 1954 def tag(repo, subset, x):
1955 1955 """The specified tag by name, or all tagged revisions if no name is given.
1956 1956
1957 1957 If `name` starts with `re:`, the remainder of the name is treated as
1958 1958 a regular expression. To match a tag that actually starts with `re:`,
1959 1959 use the prefix `literal:`.
1960 1960 """
1961 1961 # i18n: "tag" is a keyword
1962 1962 args = getargs(x, 0, 1, _("tag takes one or no arguments"))
1963 1963 cl = repo.changelog
1964 1964 if args:
1965 1965 pattern = getstring(args[0],
1966 1966 # i18n: "tag" is a keyword
1967 1967 _('the argument to tag must be a string'))
1968 1968 kind, pattern, matcher = util.stringmatcher(pattern)
1969 1969 if kind == 'literal':
1970 1970 # avoid resolving all tags
1971 1971 tn = repo._tagscache.tags.get(pattern, None)
1972 1972 if tn is None:
1973 1973 raise error.RepoLookupError(_("tag '%s' does not exist")
1974 1974 % pattern)
1975 1975 s = set([repo[tn].rev()])
1976 1976 else:
1977 1977 s = set([cl.rev(n) for t, n in repo.tagslist() if matcher(t)])
1978 1978 else:
1979 1979 s = set([cl.rev(n) for t, n in repo.tagslist() if t != 'tip'])
1980 1980 return subset & s
1981 1981
1982 1982 @predicate('tagged', safe=True)
1983 1983 def tagged(repo, subset, x):
1984 1984 return tag(repo, subset, x)
1985 1985
1986 1986 @predicate('unstable()', safe=True)
1987 1987 def unstable(repo, subset, x):
1988 1988 """Non-obsolete changesets with obsolete ancestors.
1989 1989 """
1990 1990 # i18n: "unstable" is a keyword
1991 1991 getargs(x, 0, 0, _("unstable takes no arguments"))
1992 1992 unstables = obsmod.getrevs(repo, 'unstable')
1993 1993 return subset & unstables
1994 1994
1995 1995
1996 1996 @predicate('user(string)', safe=True)
1997 1997 def user(repo, subset, x):
1998 1998 """User name contains string. The match is case-insensitive.
1999 1999
2000 2000 If `string` starts with `re:`, the remainder of the string is treated as
2001 2001 a regular expression. To match a user that actually contains `re:`, use
2002 2002 the prefix `literal:`.
2003 2003 """
2004 2004 return author(repo, subset, x)
2005 2005
2006 2006 # experimental
2007 2007 @predicate('wdir', safe=True)
2008 2008 def wdir(repo, subset, x):
2009 2009 # i18n: "wdir" is a keyword
2010 2010 getargs(x, 0, 0, _("wdir takes no arguments"))
2011 2011 if node.wdirrev in subset or isinstance(subset, fullreposet):
2012 2012 return baseset([node.wdirrev])
2013 2013 return baseset()
2014 2014
2015 2015 # for internal use
2016 2016 @predicate('_list', safe=True)
2017 2017 def _list(repo, subset, x):
2018 2018 s = getstring(x, "internal error")
2019 2019 if not s:
2020 2020 return baseset()
2021 2021 # remove duplicates here. it's difficult for caller to deduplicate sets
2022 2022 # because different symbols can point to the same rev.
2023 2023 cl = repo.changelog
2024 2024 ls = []
2025 2025 seen = set()
2026 2026 for t in s.split('\0'):
2027 2027 try:
2028 2028 # fast path for integer revision
2029 2029 r = int(t)
2030 2030 if str(r) != t or r not in cl:
2031 2031 raise ValueError
2032 2032 revs = [r]
2033 2033 except ValueError:
2034 2034 revs = stringset(repo, subset, t)
2035 2035
2036 2036 for r in revs:
2037 2037 if r in seen:
2038 2038 continue
2039 2039 if (r in subset
2040 2040 or r == node.nullrev and isinstance(subset, fullreposet)):
2041 2041 ls.append(r)
2042 2042 seen.add(r)
2043 2043 return baseset(ls)
2044 2044
2045 2045 # for internal use
2046 2046 @predicate('_intlist', safe=True)
2047 2047 def _intlist(repo, subset, x):
2048 2048 s = getstring(x, "internal error")
2049 2049 if not s:
2050 2050 return baseset()
2051 2051 ls = [int(r) for r in s.split('\0')]
2052 2052 s = subset
2053 2053 return baseset([r for r in ls if r in s])
2054 2054
2055 2055 # for internal use
2056 2056 @predicate('_hexlist', safe=True)
2057 2057 def _hexlist(repo, subset, x):
2058 2058 s = getstring(x, "internal error")
2059 2059 if not s:
2060 2060 return baseset()
2061 2061 cl = repo.changelog
2062 2062 ls = [cl.rev(node.bin(r)) for r in s.split('\0')]
2063 2063 s = subset
2064 2064 return baseset([r for r in ls if r in s])
2065 2065
2066 2066 methods = {
2067 2067 "range": rangeset,
2068 2068 "dagrange": dagrange,
2069 2069 "string": stringset,
2070 2070 "symbol": stringset,
2071 2071 "and": andset,
2072 2072 "or": orset,
2073 2073 "not": notset,
2074 2074 "difference": differenceset,
2075 2075 "list": listset,
2076 2076 "keyvalue": keyvaluepair,
2077 2077 "func": func,
2078 2078 "ancestor": ancestorspec,
2079 2079 "parent": parentspec,
2080 2080 "parentpost": p1,
2081 2081 }
2082 2082
2083 2083 def optimize(x, small):
2084 2084 if x is None:
2085 2085 return 0, x
2086 2086
2087 2087 smallbonus = 1
2088 2088 if small:
2089 2089 smallbonus = .5
2090 2090
2091 2091 op = x[0]
2092 2092 if op == 'minus':
2093 2093 return optimize(('and', x[1], ('not', x[2])), small)
2094 2094 elif op == 'only':
2095 2095 return optimize(('func', ('symbol', 'only'),
2096 2096 ('list', x[1], x[2])), small)
2097 2097 elif op == 'onlypost':
2098 2098 return optimize(('func', ('symbol', 'only'), x[1]), small)
2099 2099 elif op == 'dagrangepre':
2100 2100 return optimize(('func', ('symbol', 'ancestors'), x[1]), small)
2101 2101 elif op == 'dagrangepost':
2102 2102 return optimize(('func', ('symbol', 'descendants'), x[1]), small)
2103 2103 elif op == 'rangeall':
2104 2104 return optimize(('range', ('string', '0'), ('string', 'tip')), small)
2105 2105 elif op == 'rangepre':
2106 2106 return optimize(('range', ('string', '0'), x[1]), small)
2107 2107 elif op == 'rangepost':
2108 2108 return optimize(('range', x[1], ('string', 'tip')), small)
2109 2109 elif op == 'negate':
2110 2110 return optimize(('string',
2111 2111 '-' + getstring(x[1], _("can't negate that"))), small)
2112 2112 elif op in 'string symbol negate':
2113 2113 return smallbonus, x # single revisions are small
2114 2114 elif op == 'and':
2115 2115 wa, ta = optimize(x[1], True)
2116 2116 wb, tb = optimize(x[2], True)
2117 2117
2118 2118 # (::x and not ::y)/(not ::y and ::x) have a fast path
2119 2119 def isonly(revs, bases):
2120 2120 return (
2121 2121 revs is not None
2122 2122 and revs[0] == 'func'
2123 2123 and getstring(revs[1], _('not a symbol')) == 'ancestors'
2124 2124 and bases is not None
2125 2125 and bases[0] == 'not'
2126 2126 and bases[1][0] == 'func'
2127 2127 and getstring(bases[1][1], _('not a symbol')) == 'ancestors')
2128 2128
2129 2129 w = min(wa, wb)
2130 2130 if isonly(ta, tb):
2131 2131 return w, ('func', ('symbol', 'only'), ('list', ta[2], tb[1][2]))
2132 2132 if isonly(tb, ta):
2133 2133 return w, ('func', ('symbol', 'only'), ('list', tb[2], ta[1][2]))
2134 2134
2135 2135 if tb is not None and tb[0] == 'not':
2136 2136 return wa, ('difference', ta, tb[1])
2137 2137
2138 2138 if wa > wb:
2139 2139 return w, (op, tb, ta)
2140 2140 return w, (op, ta, tb)
2141 2141 elif op == 'or':
2142 2142 # fast path for machine-generated expression, that is likely to have
2143 2143 # lots of trivial revisions: 'a + b + c()' to '_list(a b) + c()'
2144 2144 ws, ts, ss = [], [], []
2145 2145 def flushss():
2146 2146 if not ss:
2147 2147 return
2148 2148 if len(ss) == 1:
2149 2149 w, t = ss[0]
2150 2150 else:
2151 2151 s = '\0'.join(t[1] for w, t in ss)
2152 2152 y = ('func', ('symbol', '_list'), ('string', s))
2153 2153 w, t = optimize(y, False)
2154 2154 ws.append(w)
2155 2155 ts.append(t)
2156 2156 del ss[:]
2157 2157 for y in x[1:]:
2158 2158 w, t = optimize(y, False)
2159 2159 if t is not None and (t[0] == 'string' or t[0] == 'symbol'):
2160 2160 ss.append((w, t))
2161 2161 continue
2162 2162 flushss()
2163 2163 ws.append(w)
2164 2164 ts.append(t)
2165 2165 flushss()
2166 2166 if len(ts) == 1:
2167 2167 return ws[0], ts[0] # 'or' operation is fully optimized out
2168 2168 # we can't reorder trees by weight because it would change the order.
2169 2169 # ("sort(a + b)" == "sort(b + a)", but "a + b" != "b + a")
2170 2170 # ts = tuple(t for w, t in sorted(zip(ws, ts), key=lambda wt: wt[0]))
2171 2171 return max(ws), (op,) + tuple(ts)
2172 2172 elif op == 'not':
2173 2173 # Optimize not public() to _notpublic() because we have a fast version
2174 2174 if x[1] == ('func', ('symbol', 'public'), None):
2175 2175 newsym = ('func', ('symbol', '_notpublic'), None)
2176 2176 o = optimize(newsym, not small)
2177 2177 return o[0], o[1]
2178 2178 else:
2179 2179 o = optimize(x[1], not small)
2180 2180 return o[0], (op, o[1])
2181 2181 elif op == 'parentpost':
2182 2182 o = optimize(x[1], small)
2183 2183 return o[0], (op, o[1])
2184 2184 elif op == 'group':
2185 2185 return optimize(x[1], small)
2186 2186 elif op in 'dagrange range parent ancestorspec':
2187 2187 if op == 'parent':
2188 2188 # x^:y means (x^) : y, not x ^ (:y)
2189 2189 post = ('parentpost', x[1])
2190 2190 if x[2][0] == 'dagrangepre':
2191 2191 return optimize(('dagrange', post, x[2][1]), small)
2192 2192 elif x[2][0] == 'rangepre':
2193 2193 return optimize(('range', post, x[2][1]), small)
2194 2194
2195 2195 wa, ta = optimize(x[1], small)
2196 2196 wb, tb = optimize(x[2], small)
2197 2197 return wa + wb, (op, ta, tb)
2198 2198 elif op == 'list':
2199 2199 ws, ts = zip(*(optimize(y, small) for y in x[1:]))
2200 2200 return sum(ws), (op,) + ts
2201 2201 elif op == 'func':
2202 2202 f = getstring(x[1], _("not a symbol"))
2203 2203 wa, ta = optimize(x[2], small)
2204 2204 if f in ("author branch closed date desc file grep keyword "
2205 2205 "outgoing user"):
2206 2206 w = 10 # slow
2207 2207 elif f in "modifies adds removes":
2208 2208 w = 30 # slower
2209 2209 elif f == "contains":
2210 2210 w = 100 # very slow
2211 2211 elif f == "ancestor":
2212 2212 w = 1 * smallbonus
2213 2213 elif f in "reverse limit first _intlist":
2214 2214 w = 0
2215 2215 elif f in "sort":
2216 2216 w = 10 # assume most sorts look at changelog
2217 2217 else:
2218 2218 w = 1
2219 2219 return w + wa, (op, x[1], ta)
2220 2220 return 1, x
2221 2221
2222 2222 # the set of valid characters for the initial letter of symbols in
2223 2223 # alias declarations and definitions
2224 2224 _aliassyminitletters = set(c for c in [chr(i) for i in xrange(256)]
2225 2225 if c.isalnum() or c in '._@$' or ord(c) > 127)
2226 2226
2227 2227 def _tokenizealias(program, lookup=None):
2228 2228 """Parse alias declaration/definition into a stream of tokens
2229 2229
2230 2230 This allows symbol names to use also ``$`` as an initial letter
2231 2231 (for backward compatibility), and callers of this function should
2232 2232 examine whether ``$`` is used also for unexpected symbols or not.
2233 2233 """
2234 2234 return tokenize(program, lookup=lookup,
2235 2235 syminitletters=_aliassyminitletters)
2236 2236
2237 2237 def _parsealiasdecl(decl):
2238 2238 """Parse alias declaration ``decl``
2239 2239
2240 2240 This returns ``(name, tree, args, errorstr)`` tuple:
2241 2241
2242 2242 - ``name``: of declared alias (may be ``decl`` itself at error)
2243 2243 - ``tree``: parse result (or ``None`` at error)
2244 2244 - ``args``: list of alias argument names (or None for symbol declaration)
2245 2245 - ``errorstr``: detail about detected error (or None)
2246 2246
2247 2247 >>> _parsealiasdecl('foo')
2248 2248 ('foo', ('symbol', 'foo'), None, None)
2249 2249 >>> _parsealiasdecl('$foo')
2250 2250 ('$foo', None, None, "'$' not for alias arguments")
2251 2251 >>> _parsealiasdecl('foo::bar')
2252 2252 ('foo::bar', None, None, 'invalid format')
2253 2253 >>> _parsealiasdecl('foo bar')
2254 2254 ('foo bar', None, None, 'at 4: invalid token')
2255 2255 >>> _parsealiasdecl('foo()')
2256 2256 ('foo', ('func', ('symbol', 'foo')), [], None)
2257 2257 >>> _parsealiasdecl('$foo()')
2258 2258 ('$foo()', None, None, "'$' not for alias arguments")
2259 2259 >>> _parsealiasdecl('foo($1, $2)')
2260 2260 ('foo', ('func', ('symbol', 'foo')), ['$1', '$2'], None)
2261 2261 >>> _parsealiasdecl('foo(bar_bar, baz.baz)')
2262 2262 ('foo', ('func', ('symbol', 'foo')), ['bar_bar', 'baz.baz'], None)
2263 2263 >>> _parsealiasdecl('foo($1, $2, nested($1, $2))')
2264 2264 ('foo($1, $2, nested($1, $2))', None, None, 'invalid argument list')
2265 2265 >>> _parsealiasdecl('foo(bar($1, $2))')
2266 2266 ('foo(bar($1, $2))', None, None, 'invalid argument list')
2267 2267 >>> _parsealiasdecl('foo("string")')
2268 2268 ('foo("string")', None, None, 'invalid argument list')
2269 2269 >>> _parsealiasdecl('foo($1, $2')
2270 2270 ('foo($1, $2', None, None, 'at 10: unexpected token: end')
2271 2271 >>> _parsealiasdecl('foo("string')
2272 2272 ('foo("string', None, None, 'at 5: unterminated string')
2273 2273 >>> _parsealiasdecl('foo($1, $2, $1)')
2274 2274 ('foo', None, None, 'argument names collide with each other')
2275 2275 """
2276 2276 p = parser.parser(elements)
2277 2277 try:
2278 2278 tree, pos = p.parse(_tokenizealias(decl))
2279 2279 if (pos != len(decl)):
2280 2280 raise error.ParseError(_('invalid token'), pos)
2281 2281 tree = parser.simplifyinfixops(tree, ('list',))
2282 2282
2283 2283 if tree[0] == 'symbol':
2284 2284 # "name = ...." style
2285 2285 name = tree[1]
2286 2286 if name.startswith('$'):
2287 2287 return (decl, None, None, _("'$' not for alias arguments"))
2288 2288 return (name, tree, None, None)
2289 2289
2290 2290 if tree[0] == 'func' and tree[1][0] == 'symbol':
2291 2291 # "name(arg, ....) = ...." style
2292 2292 name = tree[1][1]
2293 2293 if name.startswith('$'):
2294 2294 return (decl, None, None, _("'$' not for alias arguments"))
2295 2295 args = []
2296 2296 for arg in getlist(tree[2]):
2297 2297 if arg[0] != 'symbol':
2298 2298 return (decl, None, None, _("invalid argument list"))
2299 2299 args.append(arg[1])
2300 2300 if len(args) != len(set(args)):
2301 2301 return (name, None, None,
2302 2302 _("argument names collide with each other"))
2303 2303 return (name, tree[:2], args, None)
2304 2304
2305 2305 return (decl, None, None, _("invalid format"))
2306 2306 except error.ParseError as inst:
2307 2307 return (decl, None, None, parser.parseerrordetail(inst))
2308 2308
2309 2309 def _relabelaliasargs(tree, args):
2310 2310 if not isinstance(tree, tuple):
2311 2311 return tree
2312 2312 op = tree[0]
2313 2313 if op != 'symbol':
2314 2314 return (op,) + tuple(_relabelaliasargs(x, args) for x in tree[1:])
2315 2315
2316 2316 assert len(tree) == 2
2317 2317 sym = tree[1]
2318 2318 if sym in args:
2319 2319 op = '_aliasarg'
2320 2320 elif sym.startswith('$'):
2321 2321 raise error.ParseError(_("'$' not for alias arguments"))
2322 2322 return (op, sym)
2323 2323
2324 2324 def _parsealiasdefn(defn, args):
2325 2325 """Parse alias definition ``defn``
2326 2326
2327 2327 This function marks alias argument references as ``_aliasarg``.
2328 2328
2329 2329 ``args`` is a list of alias argument names, or None if the alias
2330 2330 is declared as a symbol.
2331 2331
2332 2332 This returns "tree" as parsing result.
2333 2333
2334 2334 >>> def prettyformat(tree):
2335 2335 ... return parser.prettyformat(tree, ('_aliasarg', 'string', 'symbol'))
2336 2336 >>> args = ['$1', '$2', 'foo']
2337 2337 >>> print prettyformat(_parsealiasdefn('$1 or foo', args))
2338 2338 (or
2339 2339 ('_aliasarg', '$1')
2340 2340 ('_aliasarg', 'foo'))
2341 2341 >>> try:
2342 2342 ... _parsealiasdefn('$1 or $bar', args)
2343 2343 ... except error.ParseError, inst:
2344 2344 ... print parser.parseerrordetail(inst)
2345 2345 '$' not for alias arguments
2346 2346 >>> args = ['$1', '$10', 'foo']
2347 2347 >>> print prettyformat(_parsealiasdefn('$10 or foobar', args))
2348 2348 (or
2349 2349 ('_aliasarg', '$10')
2350 2350 ('symbol', 'foobar'))
2351 2351 >>> print prettyformat(_parsealiasdefn('"$1" or "foo"', args))
2352 2352 (or
2353 2353 ('string', '$1')
2354 2354 ('string', 'foo'))
2355 2355 """
2356 2356 if args:
2357 2357 args = set(args)
2358 2358 else:
2359 2359 args = set()
2360 2360
2361 2361 p = parser.parser(elements)
2362 2362 tree, pos = p.parse(_tokenizealias(defn))
2363 2363 if pos != len(defn):
2364 2364 raise error.ParseError(_('invalid token'), pos)
2365 2365 tree = parser.simplifyinfixops(tree, ('list', 'or'))
2366 2366 return _relabelaliasargs(tree, args)
2367 2367
2368 2368 class revsetalias(object):
2369 2369 # whether own `error` information is already shown or not.
2370 2370 # this avoids showing same warning multiple times at each `findaliases`.
2371 2371 warned = False
2372 2372
2373 2373 def __init__(self, name, value):
2374 2374 '''Aliases like:
2375 2375
2376 2376 h = heads(default)
2377 2377 b($1) = ancestors($1) - ancestors(default)
2378 2378 '''
2379 2379 self.name, self.tree, self.args, self.error = _parsealiasdecl(name)
2380 2380 if self.error:
2381 2381 self.error = _('failed to parse the declaration of revset alias'
2382 2382 ' "%s": %s') % (self.name, self.error)
2383 2383 return
2384 2384
2385 2385 try:
2386 2386 self.replacement = _parsealiasdefn(value, self.args)
2387 2387 except error.ParseError as inst:
2388 2388 self.error = _('failed to parse the definition of revset alias'
2389 2389 ' "%s": %s') % (self.name,
2390 2390 parser.parseerrordetail(inst))
2391 2391
2392 2392 def _getalias(aliases, tree):
2393 2393 """If tree looks like an unexpanded alias, return it. Return None
2394 2394 otherwise.
2395 2395 """
2396 2396 if isinstance(tree, tuple):
2397 2397 if tree[0] == 'symbol':
2398 2398 name = tree[1]
2399 2399 alias = aliases.get(name)
2400 2400 if alias and alias.args is None and alias.tree == tree:
2401 2401 return alias
2402 2402 if tree[0] == 'func':
2403 2403 if tree[1][0] == 'symbol':
2404 2404 name = tree[1][1]
2405 2405 alias = aliases.get(name)
2406 2406 if alias and alias.args is not None and alias.tree == tree[:2]:
2407 2407 return alias
2408 2408 return None
2409 2409
2410 2410 def _expandargs(tree, args):
2411 2411 """Replace _aliasarg instances with the substitution value of the
2412 2412 same name in args, recursively.
2413 2413 """
2414 2414 if not isinstance(tree, tuple):
2415 2415 return tree
2416 2416 if tree[0] == '_aliasarg':
2417 2417 sym = tree[1]
2418 2418 return args[sym]
2419 2419 return tuple(_expandargs(t, args) for t in tree)
2420 2420
2421 2421 def _expandaliases(aliases, tree, expanding, cache):
2422 2422 """Expand aliases in tree, recursively.
2423 2423
2424 2424 'aliases' is a dictionary mapping user defined aliases to
2425 2425 revsetalias objects.
2426 2426 """
2427 2427 if not isinstance(tree, tuple):
2428 2428 # Do not expand raw strings
2429 2429 return tree
2430 2430 alias = _getalias(aliases, tree)
2431 2431 if alias is not None:
2432 2432 if alias.error:
2433 2433 raise error.Abort(alias.error)
2434 2434 if alias in expanding:
2435 2435 raise error.ParseError(_('infinite expansion of revset alias "%s" '
2436 2436 'detected') % alias.name)
2437 2437 expanding.append(alias)
2438 2438 if alias.name not in cache:
2439 2439 cache[alias.name] = _expandaliases(aliases, alias.replacement,
2440 2440 expanding, cache)
2441 2441 result = cache[alias.name]
2442 2442 expanding.pop()
2443 2443 if alias.args is not None:
2444 2444 l = getlist(tree[2])
2445 2445 if len(l) != len(alias.args):
2446 2446 raise error.ParseError(
2447 2447 _('invalid number of arguments: %d') % len(l))
2448 2448 l = [_expandaliases(aliases, a, [], cache) for a in l]
2449 2449 result = _expandargs(result, dict(zip(alias.args, l)))
2450 2450 else:
2451 2451 result = tuple(_expandaliases(aliases, t, expanding, cache)
2452 2452 for t in tree)
2453 2453 return result
2454 2454
2455 2455 def findaliases(ui, tree, showwarning=None):
2456 2456 aliases = {}
2457 2457 for k, v in ui.configitems('revsetalias'):
2458 2458 alias = revsetalias(k, v)
2459 2459 aliases[alias.name] = alias
2460 2460 tree = _expandaliases(aliases, tree, [], {})
2461 2461 if showwarning:
2462 2462 # warn about problematic (but not referred) aliases
2463 2463 for name, alias in sorted(aliases.iteritems()):
2464 2464 if alias.error and not alias.warned:
2465 2465 showwarning(_('warning: %s\n') % (alias.error))
2466 2466 alias.warned = True
2467 2467 return tree
2468 2468
2469 2469 def foldconcat(tree):
2470 2470 """Fold elements to be concatenated by `##`
2471 2471 """
2472 2472 if not isinstance(tree, tuple) or tree[0] in ('string', 'symbol'):
2473 2473 return tree
2474 2474 if tree[0] == '_concat':
2475 2475 pending = [tree]
2476 2476 l = []
2477 2477 while pending:
2478 2478 e = pending.pop()
2479 2479 if e[0] == '_concat':
2480 2480 pending.extend(reversed(e[1:]))
2481 2481 elif e[0] in ('string', 'symbol'):
2482 2482 l.append(e[1])
2483 2483 else:
2484 2484 msg = _("\"##\" can't concatenate \"%s\" element") % (e[0])
2485 2485 raise error.ParseError(msg)
2486 2486 return ('string', ''.join(l))
2487 2487 else:
2488 2488 return tuple(foldconcat(t) for t in tree)
2489 2489
2490 2490 def parse(spec, lookup=None):
2491 2491 p = parser.parser(elements)
2492 2492 tree, pos = p.parse(tokenize(spec, lookup=lookup))
2493 2493 if pos != len(spec):
2494 2494 raise error.ParseError(_("invalid token"), pos)
2495 2495 return parser.simplifyinfixops(tree, ('list', 'or'))
2496 2496
2497 2497 def posttreebuilthook(tree, repo):
2498 2498 # hook for extensions to execute code on the optimized tree
2499 2499 pass
2500 2500
2501 2501 def match(ui, spec, repo=None):
2502 2502 if not spec:
2503 2503 raise error.ParseError(_("empty query"))
2504 2504 lookup = None
2505 2505 if repo:
2506 2506 lookup = repo.__contains__
2507 2507 tree = parse(spec, lookup)
2508 2508 return _makematcher(ui, tree, repo)
2509 2509
2510 2510 def matchany(ui, specs, repo=None):
2511 2511 """Create a matcher that will include any revisions matching one of the
2512 2512 given specs"""
2513 2513 if not specs:
2514 2514 def mfunc(repo, subset=None):
2515 2515 return baseset()
2516 2516 return mfunc
2517 2517 if not all(specs):
2518 2518 raise error.ParseError(_("empty query"))
2519 2519 lookup = None
2520 2520 if repo:
2521 2521 lookup = repo.__contains__
2522 2522 if len(specs) == 1:
2523 2523 tree = parse(specs[0], lookup)
2524 2524 else:
2525 2525 tree = ('or',) + tuple(parse(s, lookup) for s in specs)
2526 2526 return _makematcher(ui, tree, repo)
2527 2527
2528 2528 def _makematcher(ui, tree, repo):
2529 2529 if ui:
2530 2530 tree = findaliases(ui, tree, showwarning=ui.warn)
2531 2531 tree = foldconcat(tree)
2532 2532 weight, tree = optimize(tree, True)
2533 2533 posttreebuilthook(tree, repo)
2534 2534 def mfunc(repo, subset=None):
2535 2535 if subset is None:
2536 2536 subset = fullreposet(repo)
2537 2537 if util.safehasattr(subset, 'isascending'):
2538 2538 result = getset(repo, subset, tree)
2539 2539 else:
2540 2540 result = getset(repo, baseset(subset), tree)
2541 2541 return result
2542 2542 return mfunc
2543 2543
2544 2544 def formatspec(expr, *args):
2545 2545 '''
2546 2546 This is a convenience function for using revsets internally, and
2547 2547 escapes arguments appropriately. Aliases are intentionally ignored
2548 2548 so that intended expression behavior isn't accidentally subverted.
2549 2549
2550 2550 Supported arguments:
2551 2551
2552 2552 %r = revset expression, parenthesized
2553 2553 %d = int(arg), no quoting
2554 2554 %s = string(arg), escaped and single-quoted
2555 2555 %b = arg.branch(), escaped and single-quoted
2556 2556 %n = hex(arg), single-quoted
2557 2557 %% = a literal '%'
2558 2558
2559 2559 Prefixing the type with 'l' specifies a parenthesized list of that type.
2560 2560
2561 2561 >>> formatspec('%r:: and %lr', '10 or 11', ("this()", "that()"))
2562 2562 '(10 or 11):: and ((this()) or (that()))'
2563 2563 >>> formatspec('%d:: and not %d::', 10, 20)
2564 2564 '10:: and not 20::'
2565 2565 >>> formatspec('%ld or %ld', [], [1])
2566 2566 "_list('') or 1"
2567 2567 >>> formatspec('keyword(%s)', 'foo\\xe9')
2568 2568 "keyword('foo\\\\xe9')"
2569 2569 >>> b = lambda: 'default'
2570 2570 >>> b.branch = b
2571 2571 >>> formatspec('branch(%b)', b)
2572 2572 "branch('default')"
2573 2573 >>> formatspec('root(%ls)', ['a', 'b', 'c', 'd'])
2574 2574 "root(_list('a\\x00b\\x00c\\x00d'))"
2575 2575 '''
2576 2576
2577 2577 def quote(s):
2578 2578 return repr(str(s))
2579 2579
2580 2580 def argtype(c, arg):
2581 2581 if c == 'd':
2582 2582 return str(int(arg))
2583 2583 elif c == 's':
2584 2584 return quote(arg)
2585 2585 elif c == 'r':
2586 2586 parse(arg) # make sure syntax errors are confined
2587 2587 return '(%s)' % arg
2588 2588 elif c == 'n':
2589 2589 return quote(node.hex(arg))
2590 2590 elif c == 'b':
2591 2591 return quote(arg.branch())
2592 2592
2593 2593 def listexp(s, t):
2594 2594 l = len(s)
2595 2595 if l == 0:
2596 2596 return "_list('')"
2597 2597 elif l == 1:
2598 2598 return argtype(t, s[0])
2599 2599 elif t == 'd':
2600 2600 return "_intlist('%s')" % "\0".join(str(int(a)) for a in s)
2601 2601 elif t == 's':
2602 2602 return "_list('%s')" % "\0".join(s)
2603 2603 elif t == 'n':
2604 2604 return "_hexlist('%s')" % "\0".join(node.hex(a) for a in s)
2605 2605 elif t == 'b':
2606 2606 return "_list('%s')" % "\0".join(a.branch() for a in s)
2607 2607
2608 2608 m = l // 2
2609 2609 return '(%s or %s)' % (listexp(s[:m], t), listexp(s[m:], t))
2610 2610
2611 2611 ret = ''
2612 2612 pos = 0
2613 2613 arg = 0
2614 2614 while pos < len(expr):
2615 2615 c = expr[pos]
2616 2616 if c == '%':
2617 2617 pos += 1
2618 2618 d = expr[pos]
2619 2619 if d == '%':
2620 2620 ret += d
2621 2621 elif d in 'dsnbr':
2622 2622 ret += argtype(d, args[arg])
2623 2623 arg += 1
2624 2624 elif d == 'l':
2625 2625 # a list of some type
2626 2626 pos += 1
2627 2627 d = expr[pos]
2628 2628 ret += listexp(list(args[arg]), d)
2629 2629 arg += 1
2630 2630 else:
2631 2631 raise error.Abort('unexpected revspec format character %s' % d)
2632 2632 else:
2633 2633 ret += c
2634 2634 pos += 1
2635 2635
2636 2636 return ret
2637 2637
2638 2638 def prettyformat(tree):
2639 2639 return parser.prettyformat(tree, ('string', 'symbol'))
2640 2640
2641 2641 def depth(tree):
2642 2642 if isinstance(tree, tuple):
2643 2643 return max(map(depth, tree)) + 1
2644 2644 else:
2645 2645 return 0
2646 2646
2647 2647 def funcsused(tree):
2648 2648 if not isinstance(tree, tuple) or tree[0] in ('string', 'symbol'):
2649 2649 return set()
2650 2650 else:
2651 2651 funcs = set()
2652 2652 for s in tree[1:]:
2653 2653 funcs |= funcsused(s)
2654 2654 if tree[0] == 'func':
2655 2655 funcs.add(tree[1][1])
2656 2656 return funcs
2657 2657
2658 2658 def _formatsetrepr(r):
2659 2659 """Format an optional printable representation of a set
2660 2660
2661 2661 ======== =================================
2662 2662 type(r) example
2663 2663 ======== =================================
2664 2664 tuple ('<not %r>', other)
2665 2665 str '<branch closed>'
2666 2666 callable lambda: '<branch %r>' % sorted(b)
2667 2667 object other
2668 2668 ======== =================================
2669 2669 """
2670 2670 if r is None:
2671 2671 return ''
2672 2672 elif isinstance(r, tuple):
2673 2673 return r[0] % r[1:]
2674 2674 elif isinstance(r, str):
2675 2675 return r
2676 2676 elif callable(r):
2677 2677 return r()
2678 2678 else:
2679 2679 return repr(r)
2680 2680
2681 2681 class abstractsmartset(object):
2682 2682
2683 2683 def __nonzero__(self):
2684 2684 """True if the smartset is not empty"""
2685 2685 raise NotImplementedError()
2686 2686
2687 2687 def __contains__(self, rev):
2688 2688 """provide fast membership testing"""
2689 2689 raise NotImplementedError()
2690 2690
2691 2691 def __iter__(self):
2692 2692 """iterate the set in the order it is supposed to be iterated"""
2693 2693 raise NotImplementedError()
2694 2694
2695 2695 # Attributes containing a function to perform a fast iteration in a given
2696 2696 # direction. A smartset can have none, one, or both defined.
2697 2697 #
2698 2698 # Default value is None instead of a function returning None to avoid
2699 2699 # initializing an iterator just for testing if a fast method exists.
2700 2700 fastasc = None
2701 2701 fastdesc = None
2702 2702
2703 2703 def isascending(self):
2704 2704 """True if the set will iterate in ascending order"""
2705 2705 raise NotImplementedError()
2706 2706
2707 2707 def isdescending(self):
2708 2708 """True if the set will iterate in descending order"""
2709 2709 raise NotImplementedError()
2710 2710
2711 2711 @util.cachefunc
2712 2712 def min(self):
2713 2713 """return the minimum element in the set"""
2714 2714 if self.fastasc is not None:
2715 2715 for r in self.fastasc():
2716 2716 return r
2717 2717 raise ValueError('arg is an empty sequence')
2718 2718 return min(self)
2719 2719
2720 2720 @util.cachefunc
2721 2721 def max(self):
2722 2722 """return the maximum element in the set"""
2723 2723 if self.fastdesc is not None:
2724 2724 for r in self.fastdesc():
2725 2725 return r
2726 2726 raise ValueError('arg is an empty sequence')
2727 2727 return max(self)
2728 2728
2729 2729 def first(self):
2730 2730 """return the first element in the set (user iteration perspective)
2731 2731
2732 2732 Return None if the set is empty"""
2733 2733 raise NotImplementedError()
2734 2734
2735 2735 def last(self):
2736 2736 """return the last element in the set (user iteration perspective)
2737 2737
2738 2738 Return None if the set is empty"""
2739 2739 raise NotImplementedError()
2740 2740
2741 2741 def __len__(self):
2742 2742 """return the length of the smartsets
2743 2743
2744 2744 This can be expensive on smartset that could be lazy otherwise."""
2745 2745 raise NotImplementedError()
2746 2746
2747 2747 def reverse(self):
2748 2748 """reverse the expected iteration order"""
2749 2749 raise NotImplementedError()
2750 2750
2751 2751 def sort(self, reverse=True):
2752 2752 """get the set to iterate in an ascending or descending order"""
2753 2753 raise NotImplementedError()
2754 2754
2755 2755 def __and__(self, other):
2756 2756 """Returns a new object with the intersection of the two collections.
2757 2757
2758 2758 This is part of the mandatory API for smartset."""
2759 2759 if isinstance(other, fullreposet):
2760 2760 return self
2761 2761 return self.filter(other.__contains__, condrepr=other, cache=False)
2762 2762
2763 2763 def __add__(self, other):
2764 2764 """Returns a new object with the union of the two collections.
2765 2765
2766 2766 This is part of the mandatory API for smartset."""
2767 2767 return addset(self, other)
2768 2768
2769 2769 def __sub__(self, other):
2770 2770 """Returns a new object with the substraction of the two collections.
2771 2771
2772 2772 This is part of the mandatory API for smartset."""
2773 2773 c = other.__contains__
2774 2774 return self.filter(lambda r: not c(r), condrepr=('<not %r>', other),
2775 2775 cache=False)
2776 2776
2777 2777 def filter(self, condition, condrepr=None, cache=True):
2778 2778 """Returns this smartset filtered by condition as a new smartset.
2779 2779
2780 2780 `condition` is a callable which takes a revision number and returns a
2781 2781 boolean. Optional `condrepr` provides a printable representation of
2782 2782 the given `condition`.
2783 2783
2784 2784 This is part of the mandatory API for smartset."""
2785 2785 # builtin cannot be cached. but do not needs to
2786 2786 if cache and util.safehasattr(condition, 'func_code'):
2787 2787 condition = util.cachefunc(condition)
2788 2788 return filteredset(self, condition, condrepr)
2789 2789
2790 2790 class baseset(abstractsmartset):
2791 2791 """Basic data structure that represents a revset and contains the basic
2792 2792 operation that it should be able to perform.
2793 2793
2794 2794 Every method in this class should be implemented by any smartset class.
2795 2795 """
2796 2796 def __init__(self, data=(), datarepr=None):
2797 2797 """
2798 2798 datarepr: a tuple of (format, obj, ...), a function or an object that
2799 2799 provides a printable representation of the given data.
2800 2800 """
2801 2801 if not isinstance(data, list):
2802 2802 if isinstance(data, set):
2803 2803 self._set = data
2804 2804 data = list(data)
2805 2805 self._list = data
2806 2806 self._datarepr = datarepr
2807 2807 self._ascending = None
2808 2808
2809 2809 @util.propertycache
2810 2810 def _set(self):
2811 2811 return set(self._list)
2812 2812
2813 2813 @util.propertycache
2814 2814 def _asclist(self):
2815 2815 asclist = self._list[:]
2816 2816 asclist.sort()
2817 2817 return asclist
2818 2818
2819 2819 def __iter__(self):
2820 2820 if self._ascending is None:
2821 2821 return iter(self._list)
2822 2822 elif self._ascending:
2823 2823 return iter(self._asclist)
2824 2824 else:
2825 2825 return reversed(self._asclist)
2826 2826
2827 2827 def fastasc(self):
2828 2828 return iter(self._asclist)
2829 2829
2830 2830 def fastdesc(self):
2831 2831 return reversed(self._asclist)
2832 2832
2833 2833 @util.propertycache
2834 2834 def __contains__(self):
2835 2835 return self._set.__contains__
2836 2836
2837 2837 def __nonzero__(self):
2838 2838 return bool(self._list)
2839 2839
2840 2840 def sort(self, reverse=False):
2841 2841 self._ascending = not bool(reverse)
2842 2842
2843 2843 def reverse(self):
2844 2844 if self._ascending is None:
2845 2845 self._list.reverse()
2846 2846 else:
2847 2847 self._ascending = not self._ascending
2848 2848
2849 2849 def __len__(self):
2850 2850 return len(self._list)
2851 2851
2852 2852 def isascending(self):
2853 2853 """Returns True if the collection is ascending order, False if not.
2854 2854
2855 2855 This is part of the mandatory API for smartset."""
2856 2856 if len(self) <= 1:
2857 2857 return True
2858 2858 return self._ascending is not None and self._ascending
2859 2859
2860 2860 def isdescending(self):
2861 2861 """Returns True if the collection is descending order, False if not.
2862 2862
2863 2863 This is part of the mandatory API for smartset."""
2864 2864 if len(self) <= 1:
2865 2865 return True
2866 2866 return self._ascending is not None and not self._ascending
2867 2867
2868 2868 def first(self):
2869 2869 if self:
2870 2870 if self._ascending is None:
2871 2871 return self._list[0]
2872 2872 elif self._ascending:
2873 2873 return self._asclist[0]
2874 2874 else:
2875 2875 return self._asclist[-1]
2876 2876 return None
2877 2877
2878 2878 def last(self):
2879 2879 if self:
2880 2880 if self._ascending is None:
2881 2881 return self._list[-1]
2882 2882 elif self._ascending:
2883 2883 return self._asclist[-1]
2884 2884 else:
2885 2885 return self._asclist[0]
2886 2886 return None
2887 2887
2888 2888 def __repr__(self):
2889 2889 d = {None: '', False: '-', True: '+'}[self._ascending]
2890 2890 s = _formatsetrepr(self._datarepr)
2891 2891 if not s:
2892 s = repr(self._list)
2892 l = self._list
2893 # if _list has been built from a set, it might have a different
2894 # order from one python implementation to another.
2895 # We fallback to the sorted version for a stable output.
2896 if self._ascending is not None:
2897 l = self._asclist
2898 s = repr(l)
2893 2899 return '<%s%s %s>' % (type(self).__name__, d, s)
2894 2900
2895 2901 class filteredset(abstractsmartset):
2896 2902 """Duck type for baseset class which iterates lazily over the revisions in
2897 2903 the subset and contains a function which tests for membership in the
2898 2904 revset
2899 2905 """
2900 2906 def __init__(self, subset, condition=lambda x: True, condrepr=None):
2901 2907 """
2902 2908 condition: a function that decide whether a revision in the subset
2903 2909 belongs to the revset or not.
2904 2910 condrepr: a tuple of (format, obj, ...), a function or an object that
2905 2911 provides a printable representation of the given condition.
2906 2912 """
2907 2913 self._subset = subset
2908 2914 self._condition = condition
2909 2915 self._condrepr = condrepr
2910 2916
2911 2917 def __contains__(self, x):
2912 2918 return x in self._subset and self._condition(x)
2913 2919
2914 2920 def __iter__(self):
2915 2921 return self._iterfilter(self._subset)
2916 2922
2917 2923 def _iterfilter(self, it):
2918 2924 cond = self._condition
2919 2925 for x in it:
2920 2926 if cond(x):
2921 2927 yield x
2922 2928
2923 2929 @property
2924 2930 def fastasc(self):
2925 2931 it = self._subset.fastasc
2926 2932 if it is None:
2927 2933 return None
2928 2934 return lambda: self._iterfilter(it())
2929 2935
2930 2936 @property
2931 2937 def fastdesc(self):
2932 2938 it = self._subset.fastdesc
2933 2939 if it is None:
2934 2940 return None
2935 2941 return lambda: self._iterfilter(it())
2936 2942
2937 2943 def __nonzero__(self):
2938 2944 fast = self.fastasc
2939 2945 if fast is None:
2940 2946 fast = self.fastdesc
2941 2947 if fast is not None:
2942 2948 it = fast()
2943 2949 else:
2944 2950 it = self
2945 2951
2946 2952 for r in it:
2947 2953 return True
2948 2954 return False
2949 2955
2950 2956 def __len__(self):
2951 2957 # Basic implementation to be changed in future patches.
2952 2958 # until this gets improved, we use generator expression
2953 2959 # here, since list compr is free to call __len__ again
2954 2960 # causing infinite recursion
2955 2961 l = baseset(r for r in self)
2956 2962 return len(l)
2957 2963
2958 2964 def sort(self, reverse=False):
2959 2965 self._subset.sort(reverse=reverse)
2960 2966
2961 2967 def reverse(self):
2962 2968 self._subset.reverse()
2963 2969
2964 2970 def isascending(self):
2965 2971 return self._subset.isascending()
2966 2972
2967 2973 def isdescending(self):
2968 2974 return self._subset.isdescending()
2969 2975
2970 2976 def first(self):
2971 2977 for x in self:
2972 2978 return x
2973 2979 return None
2974 2980
2975 2981 def last(self):
2976 2982 it = None
2977 2983 if self.isascending():
2978 2984 it = self.fastdesc
2979 2985 elif self.isdescending():
2980 2986 it = self.fastasc
2981 2987 if it is not None:
2982 2988 for x in it():
2983 2989 return x
2984 2990 return None #empty case
2985 2991 else:
2986 2992 x = None
2987 2993 for x in self:
2988 2994 pass
2989 2995 return x
2990 2996
2991 2997 def __repr__(self):
2992 2998 xs = [repr(self._subset)]
2993 2999 s = _formatsetrepr(self._condrepr)
2994 3000 if s:
2995 3001 xs.append(s)
2996 3002 return '<%s %s>' % (type(self).__name__, ', '.join(xs))
2997 3003
2998 3004 def _iterordered(ascending, iter1, iter2):
2999 3005 """produce an ordered iteration from two iterators with the same order
3000 3006
3001 3007 The ascending is used to indicated the iteration direction.
3002 3008 """
3003 3009 choice = max
3004 3010 if ascending:
3005 3011 choice = min
3006 3012
3007 3013 val1 = None
3008 3014 val2 = None
3009 3015 try:
3010 3016 # Consume both iterators in an ordered way until one is empty
3011 3017 while True:
3012 3018 if val1 is None:
3013 3019 val1 = iter1.next()
3014 3020 if val2 is None:
3015 3021 val2 = iter2.next()
3016 3022 next = choice(val1, val2)
3017 3023 yield next
3018 3024 if val1 == next:
3019 3025 val1 = None
3020 3026 if val2 == next:
3021 3027 val2 = None
3022 3028 except StopIteration:
3023 3029 # Flush any remaining values and consume the other one
3024 3030 it = iter2
3025 3031 if val1 is not None:
3026 3032 yield val1
3027 3033 it = iter1
3028 3034 elif val2 is not None:
3029 3035 # might have been equality and both are empty
3030 3036 yield val2
3031 3037 for val in it:
3032 3038 yield val
3033 3039
3034 3040 class addset(abstractsmartset):
3035 3041 """Represent the addition of two sets
3036 3042
3037 3043 Wrapper structure for lazily adding two structures without losing much
3038 3044 performance on the __contains__ method
3039 3045
3040 3046 If the ascending attribute is set, that means the two structures are
3041 3047 ordered in either an ascending or descending way. Therefore, we can add
3042 3048 them maintaining the order by iterating over both at the same time
3043 3049
3044 3050 >>> xs = baseset([0, 3, 2])
3045 3051 >>> ys = baseset([5, 2, 4])
3046 3052
3047 3053 >>> rs = addset(xs, ys)
3048 3054 >>> bool(rs), 0 in rs, 1 in rs, 5 in rs, rs.first(), rs.last()
3049 3055 (True, True, False, True, 0, 4)
3050 3056 >>> rs = addset(xs, baseset([]))
3051 3057 >>> bool(rs), 0 in rs, 1 in rs, rs.first(), rs.last()
3052 3058 (True, True, False, 0, 2)
3053 3059 >>> rs = addset(baseset([]), baseset([]))
3054 3060 >>> bool(rs), 0 in rs, rs.first(), rs.last()
3055 3061 (False, False, None, None)
3056 3062
3057 3063 iterate unsorted:
3058 3064 >>> rs = addset(xs, ys)
3059 3065 >>> # (use generator because pypy could call len())
3060 3066 >>> list(x for x in rs) # without _genlist
3061 3067 [0, 3, 2, 5, 4]
3062 3068 >>> assert not rs._genlist
3063 3069 >>> len(rs)
3064 3070 5
3065 3071 >>> [x for x in rs] # with _genlist
3066 3072 [0, 3, 2, 5, 4]
3067 3073 >>> assert rs._genlist
3068 3074
3069 3075 iterate ascending:
3070 3076 >>> rs = addset(xs, ys, ascending=True)
3071 3077 >>> # (use generator because pypy could call len())
3072 3078 >>> list(x for x in rs), list(x for x in rs.fastasc()) # without _asclist
3073 3079 ([0, 2, 3, 4, 5], [0, 2, 3, 4, 5])
3074 3080 >>> assert not rs._asclist
3075 3081 >>> len(rs)
3076 3082 5
3077 3083 >>> [x for x in rs], [x for x in rs.fastasc()]
3078 3084 ([0, 2, 3, 4, 5], [0, 2, 3, 4, 5])
3079 3085 >>> assert rs._asclist
3080 3086
3081 3087 iterate descending:
3082 3088 >>> rs = addset(xs, ys, ascending=False)
3083 3089 >>> # (use generator because pypy could call len())
3084 3090 >>> list(x for x in rs), list(x for x in rs.fastdesc()) # without _asclist
3085 3091 ([5, 4, 3, 2, 0], [5, 4, 3, 2, 0])
3086 3092 >>> assert not rs._asclist
3087 3093 >>> len(rs)
3088 3094 5
3089 3095 >>> [x for x in rs], [x for x in rs.fastdesc()]
3090 3096 ([5, 4, 3, 2, 0], [5, 4, 3, 2, 0])
3091 3097 >>> assert rs._asclist
3092 3098
3093 3099 iterate ascending without fastasc:
3094 3100 >>> rs = addset(xs, generatorset(ys), ascending=True)
3095 3101 >>> assert rs.fastasc is None
3096 3102 >>> [x for x in rs]
3097 3103 [0, 2, 3, 4, 5]
3098 3104
3099 3105 iterate descending without fastdesc:
3100 3106 >>> rs = addset(generatorset(xs), ys, ascending=False)
3101 3107 >>> assert rs.fastdesc is None
3102 3108 >>> [x for x in rs]
3103 3109 [5, 4, 3, 2, 0]
3104 3110 """
3105 3111 def __init__(self, revs1, revs2, ascending=None):
3106 3112 self._r1 = revs1
3107 3113 self._r2 = revs2
3108 3114 self._iter = None
3109 3115 self._ascending = ascending
3110 3116 self._genlist = None
3111 3117 self._asclist = None
3112 3118
3113 3119 def __len__(self):
3114 3120 return len(self._list)
3115 3121
3116 3122 def __nonzero__(self):
3117 3123 return bool(self._r1) or bool(self._r2)
3118 3124
3119 3125 @util.propertycache
3120 3126 def _list(self):
3121 3127 if not self._genlist:
3122 3128 self._genlist = baseset(iter(self))
3123 3129 return self._genlist
3124 3130
3125 3131 def __iter__(self):
3126 3132 """Iterate over both collections without repeating elements
3127 3133
3128 3134 If the ascending attribute is not set, iterate over the first one and
3129 3135 then over the second one checking for membership on the first one so we
3130 3136 dont yield any duplicates.
3131 3137
3132 3138 If the ascending attribute is set, iterate over both collections at the
3133 3139 same time, yielding only one value at a time in the given order.
3134 3140 """
3135 3141 if self._ascending is None:
3136 3142 if self._genlist:
3137 3143 return iter(self._genlist)
3138 3144 def arbitraryordergen():
3139 3145 for r in self._r1:
3140 3146 yield r
3141 3147 inr1 = self._r1.__contains__
3142 3148 for r in self._r2:
3143 3149 if not inr1(r):
3144 3150 yield r
3145 3151 return arbitraryordergen()
3146 3152 # try to use our own fast iterator if it exists
3147 3153 self._trysetasclist()
3148 3154 if self._ascending:
3149 3155 attr = 'fastasc'
3150 3156 else:
3151 3157 attr = 'fastdesc'
3152 3158 it = getattr(self, attr)
3153 3159 if it is not None:
3154 3160 return it()
3155 3161 # maybe half of the component supports fast
3156 3162 # get iterator for _r1
3157 3163 iter1 = getattr(self._r1, attr)
3158 3164 if iter1 is None:
3159 3165 # let's avoid side effect (not sure it matters)
3160 3166 iter1 = iter(sorted(self._r1, reverse=not self._ascending))
3161 3167 else:
3162 3168 iter1 = iter1()
3163 3169 # get iterator for _r2
3164 3170 iter2 = getattr(self._r2, attr)
3165 3171 if iter2 is None:
3166 3172 # let's avoid side effect (not sure it matters)
3167 3173 iter2 = iter(sorted(self._r2, reverse=not self._ascending))
3168 3174 else:
3169 3175 iter2 = iter2()
3170 3176 return _iterordered(self._ascending, iter1, iter2)
3171 3177
3172 3178 def _trysetasclist(self):
3173 3179 """populate the _asclist attribute if possible and necessary"""
3174 3180 if self._genlist is not None and self._asclist is None:
3175 3181 self._asclist = sorted(self._genlist)
3176 3182
3177 3183 @property
3178 3184 def fastasc(self):
3179 3185 self._trysetasclist()
3180 3186 if self._asclist is not None:
3181 3187 return self._asclist.__iter__
3182 3188 iter1 = self._r1.fastasc
3183 3189 iter2 = self._r2.fastasc
3184 3190 if None in (iter1, iter2):
3185 3191 return None
3186 3192 return lambda: _iterordered(True, iter1(), iter2())
3187 3193
3188 3194 @property
3189 3195 def fastdesc(self):
3190 3196 self._trysetasclist()
3191 3197 if self._asclist is not None:
3192 3198 return self._asclist.__reversed__
3193 3199 iter1 = self._r1.fastdesc
3194 3200 iter2 = self._r2.fastdesc
3195 3201 if None in (iter1, iter2):
3196 3202 return None
3197 3203 return lambda: _iterordered(False, iter1(), iter2())
3198 3204
3199 3205 def __contains__(self, x):
3200 3206 return x in self._r1 or x in self._r2
3201 3207
3202 3208 def sort(self, reverse=False):
3203 3209 """Sort the added set
3204 3210
3205 3211 For this we use the cached list with all the generated values and if we
3206 3212 know they are ascending or descending we can sort them in a smart way.
3207 3213 """
3208 3214 self._ascending = not reverse
3209 3215
3210 3216 def isascending(self):
3211 3217 return self._ascending is not None and self._ascending
3212 3218
3213 3219 def isdescending(self):
3214 3220 return self._ascending is not None and not self._ascending
3215 3221
3216 3222 def reverse(self):
3217 3223 if self._ascending is None:
3218 3224 self._list.reverse()
3219 3225 else:
3220 3226 self._ascending = not self._ascending
3221 3227
3222 3228 def first(self):
3223 3229 for x in self:
3224 3230 return x
3225 3231 return None
3226 3232
3227 3233 def last(self):
3228 3234 self.reverse()
3229 3235 val = self.first()
3230 3236 self.reverse()
3231 3237 return val
3232 3238
3233 3239 def __repr__(self):
3234 3240 d = {None: '', False: '-', True: '+'}[self._ascending]
3235 3241 return '<%s%s %r, %r>' % (type(self).__name__, d, self._r1, self._r2)
3236 3242
3237 3243 class generatorset(abstractsmartset):
3238 3244 """Wrap a generator for lazy iteration
3239 3245
3240 3246 Wrapper structure for generators that provides lazy membership and can
3241 3247 be iterated more than once.
3242 3248 When asked for membership it generates values until either it finds the
3243 3249 requested one or has gone through all the elements in the generator
3244 3250 """
3245 3251 def __init__(self, gen, iterasc=None):
3246 3252 """
3247 3253 gen: a generator producing the values for the generatorset.
3248 3254 """
3249 3255 self._gen = gen
3250 3256 self._asclist = None
3251 3257 self._cache = {}
3252 3258 self._genlist = []
3253 3259 self._finished = False
3254 3260 self._ascending = True
3255 3261 if iterasc is not None:
3256 3262 if iterasc:
3257 3263 self.fastasc = self._iterator
3258 3264 self.__contains__ = self._asccontains
3259 3265 else:
3260 3266 self.fastdesc = self._iterator
3261 3267 self.__contains__ = self._desccontains
3262 3268
3263 3269 def __nonzero__(self):
3264 3270 # Do not use 'for r in self' because it will enforce the iteration
3265 3271 # order (default ascending), possibly unrolling a whole descending
3266 3272 # iterator.
3267 3273 if self._genlist:
3268 3274 return True
3269 3275 for r in self._consumegen():
3270 3276 return True
3271 3277 return False
3272 3278
3273 3279 def __contains__(self, x):
3274 3280 if x in self._cache:
3275 3281 return self._cache[x]
3276 3282
3277 3283 # Use new values only, as existing values would be cached.
3278 3284 for l in self._consumegen():
3279 3285 if l == x:
3280 3286 return True
3281 3287
3282 3288 self._cache[x] = False
3283 3289 return False
3284 3290
3285 3291 def _asccontains(self, x):
3286 3292 """version of contains optimised for ascending generator"""
3287 3293 if x in self._cache:
3288 3294 return self._cache[x]
3289 3295
3290 3296 # Use new values only, as existing values would be cached.
3291 3297 for l in self._consumegen():
3292 3298 if l == x:
3293 3299 return True
3294 3300 if l > x:
3295 3301 break
3296 3302
3297 3303 self._cache[x] = False
3298 3304 return False
3299 3305
3300 3306 def _desccontains(self, x):
3301 3307 """version of contains optimised for descending generator"""
3302 3308 if x in self._cache:
3303 3309 return self._cache[x]
3304 3310
3305 3311 # Use new values only, as existing values would be cached.
3306 3312 for l in self._consumegen():
3307 3313 if l == x:
3308 3314 return True
3309 3315 if l < x:
3310 3316 break
3311 3317
3312 3318 self._cache[x] = False
3313 3319 return False
3314 3320
3315 3321 def __iter__(self):
3316 3322 if self._ascending:
3317 3323 it = self.fastasc
3318 3324 else:
3319 3325 it = self.fastdesc
3320 3326 if it is not None:
3321 3327 return it()
3322 3328 # we need to consume the iterator
3323 3329 for x in self._consumegen():
3324 3330 pass
3325 3331 # recall the same code
3326 3332 return iter(self)
3327 3333
3328 3334 def _iterator(self):
3329 3335 if self._finished:
3330 3336 return iter(self._genlist)
3331 3337
3332 3338 # We have to use this complex iteration strategy to allow multiple
3333 3339 # iterations at the same time. We need to be able to catch revision
3334 3340 # removed from _consumegen and added to genlist in another instance.
3335 3341 #
3336 3342 # Getting rid of it would provide an about 15% speed up on this
3337 3343 # iteration.
3338 3344 genlist = self._genlist
3339 3345 nextrev = self._consumegen().next
3340 3346 _len = len # cache global lookup
3341 3347 def gen():
3342 3348 i = 0
3343 3349 while True:
3344 3350 if i < _len(genlist):
3345 3351 yield genlist[i]
3346 3352 else:
3347 3353 yield nextrev()
3348 3354 i += 1
3349 3355 return gen()
3350 3356
3351 3357 def _consumegen(self):
3352 3358 cache = self._cache
3353 3359 genlist = self._genlist.append
3354 3360 for item in self._gen:
3355 3361 cache[item] = True
3356 3362 genlist(item)
3357 3363 yield item
3358 3364 if not self._finished:
3359 3365 self._finished = True
3360 3366 asc = self._genlist[:]
3361 3367 asc.sort()
3362 3368 self._asclist = asc
3363 3369 self.fastasc = asc.__iter__
3364 3370 self.fastdesc = asc.__reversed__
3365 3371
3366 3372 def __len__(self):
3367 3373 for x in self._consumegen():
3368 3374 pass
3369 3375 return len(self._genlist)
3370 3376
3371 3377 def sort(self, reverse=False):
3372 3378 self._ascending = not reverse
3373 3379
3374 3380 def reverse(self):
3375 3381 self._ascending = not self._ascending
3376 3382
3377 3383 def isascending(self):
3378 3384 return self._ascending
3379 3385
3380 3386 def isdescending(self):
3381 3387 return not self._ascending
3382 3388
3383 3389 def first(self):
3384 3390 if self._ascending:
3385 3391 it = self.fastasc
3386 3392 else:
3387 3393 it = self.fastdesc
3388 3394 if it is None:
3389 3395 # we need to consume all and try again
3390 3396 for x in self._consumegen():
3391 3397 pass
3392 3398 return self.first()
3393 3399 return next(it(), None)
3394 3400
3395 3401 def last(self):
3396 3402 if self._ascending:
3397 3403 it = self.fastdesc
3398 3404 else:
3399 3405 it = self.fastasc
3400 3406 if it is None:
3401 3407 # we need to consume all and try again
3402 3408 for x in self._consumegen():
3403 3409 pass
3404 3410 return self.first()
3405 3411 return next(it(), None)
3406 3412
3407 3413 def __repr__(self):
3408 3414 d = {False: '-', True: '+'}[self._ascending]
3409 3415 return '<%s%s>' % (type(self).__name__, d)
3410 3416
3411 3417 class spanset(abstractsmartset):
3412 3418 """Duck type for baseset class which represents a range of revisions and
3413 3419 can work lazily and without having all the range in memory
3414 3420
3415 3421 Note that spanset(x, y) behave almost like xrange(x, y) except for two
3416 3422 notable points:
3417 3423 - when x < y it will be automatically descending,
3418 3424 - revision filtered with this repoview will be skipped.
3419 3425
3420 3426 """
3421 3427 def __init__(self, repo, start=0, end=None):
3422 3428 """
3423 3429 start: first revision included the set
3424 3430 (default to 0)
3425 3431 end: first revision excluded (last+1)
3426 3432 (default to len(repo)
3427 3433
3428 3434 Spanset will be descending if `end` < `start`.
3429 3435 """
3430 3436 if end is None:
3431 3437 end = len(repo)
3432 3438 self._ascending = start <= end
3433 3439 if not self._ascending:
3434 3440 start, end = end + 1, start +1
3435 3441 self._start = start
3436 3442 self._end = end
3437 3443 self._hiddenrevs = repo.changelog.filteredrevs
3438 3444
3439 3445 def sort(self, reverse=False):
3440 3446 self._ascending = not reverse
3441 3447
3442 3448 def reverse(self):
3443 3449 self._ascending = not self._ascending
3444 3450
3445 3451 def _iterfilter(self, iterrange):
3446 3452 s = self._hiddenrevs
3447 3453 for r in iterrange:
3448 3454 if r not in s:
3449 3455 yield r
3450 3456
3451 3457 def __iter__(self):
3452 3458 if self._ascending:
3453 3459 return self.fastasc()
3454 3460 else:
3455 3461 return self.fastdesc()
3456 3462
3457 3463 def fastasc(self):
3458 3464 iterrange = xrange(self._start, self._end)
3459 3465 if self._hiddenrevs:
3460 3466 return self._iterfilter(iterrange)
3461 3467 return iter(iterrange)
3462 3468
3463 3469 def fastdesc(self):
3464 3470 iterrange = xrange(self._end - 1, self._start - 1, -1)
3465 3471 if self._hiddenrevs:
3466 3472 return self._iterfilter(iterrange)
3467 3473 return iter(iterrange)
3468 3474
3469 3475 def __contains__(self, rev):
3470 3476 hidden = self._hiddenrevs
3471 3477 return ((self._start <= rev < self._end)
3472 3478 and not (hidden and rev in hidden))
3473 3479
3474 3480 def __nonzero__(self):
3475 3481 for r in self:
3476 3482 return True
3477 3483 return False
3478 3484
3479 3485 def __len__(self):
3480 3486 if not self._hiddenrevs:
3481 3487 return abs(self._end - self._start)
3482 3488 else:
3483 3489 count = 0
3484 3490 start = self._start
3485 3491 end = self._end
3486 3492 for rev in self._hiddenrevs:
3487 3493 if (end < rev <= start) or (start <= rev < end):
3488 3494 count += 1
3489 3495 return abs(self._end - self._start) - count
3490 3496
3491 3497 def isascending(self):
3492 3498 return self._ascending
3493 3499
3494 3500 def isdescending(self):
3495 3501 return not self._ascending
3496 3502
3497 3503 def first(self):
3498 3504 if self._ascending:
3499 3505 it = self.fastasc
3500 3506 else:
3501 3507 it = self.fastdesc
3502 3508 for x in it():
3503 3509 return x
3504 3510 return None
3505 3511
3506 3512 def last(self):
3507 3513 if self._ascending:
3508 3514 it = self.fastdesc
3509 3515 else:
3510 3516 it = self.fastasc
3511 3517 for x in it():
3512 3518 return x
3513 3519 return None
3514 3520
3515 3521 def __repr__(self):
3516 3522 d = {False: '-', True: '+'}[self._ascending]
3517 3523 return '<%s%s %d:%d>' % (type(self).__name__, d,
3518 3524 self._start, self._end - 1)
3519 3525
3520 3526 class fullreposet(spanset):
3521 3527 """a set containing all revisions in the repo
3522 3528
3523 3529 This class exists to host special optimization and magic to handle virtual
3524 3530 revisions such as "null".
3525 3531 """
3526 3532
3527 3533 def __init__(self, repo):
3528 3534 super(fullreposet, self).__init__(repo)
3529 3535
3530 3536 def __and__(self, other):
3531 3537 """As self contains the whole repo, all of the other set should also be
3532 3538 in self. Therefore `self & other = other`.
3533 3539
3534 3540 This boldly assumes the other contains valid revs only.
3535 3541 """
3536 3542 # other not a smartset, make is so
3537 3543 if not util.safehasattr(other, 'isascending'):
3538 3544 # filter out hidden revision
3539 3545 # (this boldly assumes all smartset are pure)
3540 3546 #
3541 3547 # `other` was used with "&", let's assume this is a set like
3542 3548 # object.
3543 3549 other = baseset(other - self._hiddenrevs)
3544 3550
3545 3551 # XXX As fullreposet is also used as bootstrap, this is wrong.
3546 3552 #
3547 3553 # With a giveme312() revset returning [3,1,2], this makes
3548 3554 # 'hg log -r "giveme312()"' -> 1, 2, 3 (wrong)
3549 3555 # We cannot just drop it because other usage still need to sort it:
3550 3556 # 'hg log -r "all() and giveme312()"' -> 1, 2, 3 (right)
3551 3557 #
3552 3558 # There is also some faulty revset implementations that rely on it
3553 3559 # (eg: children as of its state in e8075329c5fb)
3554 3560 #
3555 3561 # When we fix the two points above we can move this into the if clause
3556 3562 other.sort(reverse=self.isdescending())
3557 3563 return other
3558 3564
3559 3565 def prettyformatset(revs):
3560 3566 lines = []
3561 3567 rs = repr(revs)
3562 3568 p = 0
3563 3569 while p < len(rs):
3564 3570 q = rs.find('<', p + 1)
3565 3571 if q < 0:
3566 3572 q = len(rs)
3567 3573 l = rs.count('<', 0, p) - rs.count('>', 0, p)
3568 3574 assert l >= 0
3569 3575 lines.append((l, rs[p:q].rstrip()))
3570 3576 p = q
3571 3577 return '\n'.join(' ' * l + s for l, s in lines)
3572 3578
3573 3579 def loadpredicate(ui, extname, registrarobj):
3574 3580 """Load revset predicates from specified registrarobj
3575 3581 """
3576 3582 for name, func in registrarobj._table.iteritems():
3577 3583 symbols[name] = func
3578 3584 if func._safe:
3579 3585 safesymbols.add(name)
3580 3586
3581 3587 # load built-in predicates explicitly to setup safesymbols
3582 3588 loadpredicate(None, None, predicate)
3583 3589
3584 3590 # tell hggettext to extract docstrings from these functions:
3585 3591 i18nfunctions = symbols.values()
@@ -1,2339 +1,2339
1 1 $ HGENCODING=utf-8
2 2 $ export HGENCODING
3 3 $ cat > testrevset.py << EOF
4 4 > import mercurial.revset
5 5 >
6 6 > baseset = mercurial.revset.baseset
7 7 >
8 8 > def r3232(repo, subset, x):
9 9 > """"simple revset that return [3,2,3,2]
10 10 >
11 11 > revisions duplicated on purpose.
12 12 > """
13 13 > if 3 not in subset:
14 14 > if 2 in subset:
15 15 > return baseset([2,2])
16 16 > return baseset()
17 17 > return baseset([3,3,2,2])
18 18 >
19 19 > mercurial.revset.symbols['r3232'] = r3232
20 20 > EOF
21 21 $ cat >> $HGRCPATH << EOF
22 22 > [extensions]
23 23 > testrevset=$TESTTMP/testrevset.py
24 24 > EOF
25 25
26 26 $ try() {
27 27 > hg debugrevspec --debug "$@"
28 28 > }
29 29
30 30 $ log() {
31 31 > hg log --template '{rev}\n' -r "$1"
32 32 > }
33 33
34 34 $ hg init repo
35 35 $ cd repo
36 36
37 37 $ echo a > a
38 38 $ hg branch a
39 39 marked working directory as branch a
40 40 (branches are permanent and global, did you want a bookmark?)
41 41 $ hg ci -Aqm0
42 42
43 43 $ echo b > b
44 44 $ hg branch b
45 45 marked working directory as branch b
46 46 $ hg ci -Aqm1
47 47
48 48 $ rm a
49 49 $ hg branch a-b-c-
50 50 marked working directory as branch a-b-c-
51 51 $ hg ci -Aqm2 -u Bob
52 52
53 53 $ hg log -r "extra('branch', 'a-b-c-')" --template '{rev}\n'
54 54 2
55 55 $ hg log -r "extra('branch')" --template '{rev}\n'
56 56 0
57 57 1
58 58 2
59 59 $ hg log -r "extra('branch', 're:a')" --template '{rev} {branch}\n'
60 60 0 a
61 61 2 a-b-c-
62 62
63 63 $ hg co 1
64 64 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
65 65 $ hg branch +a+b+c+
66 66 marked working directory as branch +a+b+c+
67 67 $ hg ci -Aqm3
68 68
69 69 $ hg co 2 # interleave
70 70 0 files updated, 0 files merged, 1 files removed, 0 files unresolved
71 71 $ echo bb > b
72 72 $ hg branch -- -a-b-c-
73 73 marked working directory as branch -a-b-c-
74 74 $ hg ci -Aqm4 -d "May 12 2005"
75 75
76 76 $ hg co 3
77 77 2 files updated, 0 files merged, 0 files removed, 0 files unresolved
78 78 $ hg branch !a/b/c/
79 79 marked working directory as branch !a/b/c/
80 80 $ hg ci -Aqm"5 bug"
81 81
82 82 $ hg merge 4
83 83 1 files updated, 0 files merged, 1 files removed, 0 files unresolved
84 84 (branch merge, don't forget to commit)
85 85 $ hg branch _a_b_c_
86 86 marked working directory as branch _a_b_c_
87 87 $ hg ci -Aqm"6 issue619"
88 88
89 89 $ hg branch .a.b.c.
90 90 marked working directory as branch .a.b.c.
91 91 $ hg ci -Aqm7
92 92
93 93 $ hg branch all
94 94 marked working directory as branch all
95 95
96 96 $ hg co 4
97 97 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
98 98 $ hg branch Γ©
99 99 marked working directory as branch \xc3\xa9 (esc)
100 100 $ hg ci -Aqm9
101 101
102 102 $ hg tag -r6 1.0
103 103 $ hg bookmark -r6 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
104 104
105 105 $ hg clone --quiet -U -r 7 . ../remote1
106 106 $ hg clone --quiet -U -r 8 . ../remote2
107 107 $ echo "[paths]" >> .hg/hgrc
108 108 $ echo "default = ../remote1" >> .hg/hgrc
109 109
110 110 trivial
111 111
112 112 $ try 0:1
113 113 (range
114 114 ('symbol', '0')
115 115 ('symbol', '1'))
116 116 * set:
117 117 <spanset+ 0:1>
118 118 0
119 119 1
120 120 $ try --optimize :
121 121 (rangeall
122 122 None)
123 123 * optimized:
124 124 (range
125 125 ('string', '0')
126 126 ('string', 'tip'))
127 127 * set:
128 128 <spanset+ 0:9>
129 129 0
130 130 1
131 131 2
132 132 3
133 133 4
134 134 5
135 135 6
136 136 7
137 137 8
138 138 9
139 139 $ try 3::6
140 140 (dagrange
141 141 ('symbol', '3')
142 142 ('symbol', '6'))
143 143 * set:
144 144 <baseset+ [3, 5, 6]>
145 145 3
146 146 5
147 147 6
148 148 $ try '0|1|2'
149 149 (or
150 150 ('symbol', '0')
151 151 ('symbol', '1')
152 152 ('symbol', '2'))
153 153 * set:
154 154 <baseset [0, 1, 2]>
155 155 0
156 156 1
157 157 2
158 158
159 159 names that should work without quoting
160 160
161 161 $ try a
162 162 ('symbol', 'a')
163 163 * set:
164 164 <baseset [0]>
165 165 0
166 166 $ try b-a
167 167 (minus
168 168 ('symbol', 'b')
169 169 ('symbol', 'a'))
170 170 * set:
171 171 <filteredset
172 172 <baseset [1]>,
173 173 <not
174 174 <baseset [0]>>>
175 175 1
176 176 $ try _a_b_c_
177 177 ('symbol', '_a_b_c_')
178 178 * set:
179 179 <baseset [6]>
180 180 6
181 181 $ try _a_b_c_-a
182 182 (minus
183 183 ('symbol', '_a_b_c_')
184 184 ('symbol', 'a'))
185 185 * set:
186 186 <filteredset
187 187 <baseset [6]>,
188 188 <not
189 189 <baseset [0]>>>
190 190 6
191 191 $ try .a.b.c.
192 192 ('symbol', '.a.b.c.')
193 193 * set:
194 194 <baseset [7]>
195 195 7
196 196 $ try .a.b.c.-a
197 197 (minus
198 198 ('symbol', '.a.b.c.')
199 199 ('symbol', 'a'))
200 200 * set:
201 201 <filteredset
202 202 <baseset [7]>,
203 203 <not
204 204 <baseset [0]>>>
205 205 7
206 206
207 207 names that should be caught by fallback mechanism
208 208
209 209 $ try -- '-a-b-c-'
210 210 ('symbol', '-a-b-c-')
211 211 * set:
212 212 <baseset [4]>
213 213 4
214 214 $ log -a-b-c-
215 215 4
216 216 $ try '+a+b+c+'
217 217 ('symbol', '+a+b+c+')
218 218 * set:
219 219 <baseset [3]>
220 220 3
221 221 $ try '+a+b+c+:'
222 222 (rangepost
223 223 ('symbol', '+a+b+c+'))
224 224 * set:
225 225 <spanset+ 3:9>
226 226 3
227 227 4
228 228 5
229 229 6
230 230 7
231 231 8
232 232 9
233 233 $ try ':+a+b+c+'
234 234 (rangepre
235 235 ('symbol', '+a+b+c+'))
236 236 * set:
237 237 <spanset+ 0:3>
238 238 0
239 239 1
240 240 2
241 241 3
242 242 $ try -- '-a-b-c-:+a+b+c+'
243 243 (range
244 244 ('symbol', '-a-b-c-')
245 245 ('symbol', '+a+b+c+'))
246 246 * set:
247 247 <spanset- 3:4>
248 248 4
249 249 3
250 250 $ log '-a-b-c-:+a+b+c+'
251 251 4
252 252 3
253 253
254 254 $ try -- -a-b-c--a # complains
255 255 (minus
256 256 (minus
257 257 (minus
258 258 (negate
259 259 ('symbol', 'a'))
260 260 ('symbol', 'b'))
261 261 ('symbol', 'c'))
262 262 (negate
263 263 ('symbol', 'a')))
264 264 abort: unknown revision '-a'!
265 265 [255]
266 266 $ try Γ©
267 267 ('symbol', '\xc3\xa9')
268 268 * set:
269 269 <baseset [9]>
270 270 9
271 271
272 272 no quoting needed
273 273
274 274 $ log ::a-b-c-
275 275 0
276 276 1
277 277 2
278 278
279 279 quoting needed
280 280
281 281 $ try '"-a-b-c-"-a'
282 282 (minus
283 283 ('string', '-a-b-c-')
284 284 ('symbol', 'a'))
285 285 * set:
286 286 <filteredset
287 287 <baseset [4]>,
288 288 <not
289 289 <baseset [0]>>>
290 290 4
291 291
292 292 $ log '1 or 2'
293 293 1
294 294 2
295 295 $ log '1|2'
296 296 1
297 297 2
298 298 $ log '1 and 2'
299 299 $ log '1&2'
300 300 $ try '1&2|3' # precedence - and is higher
301 301 (or
302 302 (and
303 303 ('symbol', '1')
304 304 ('symbol', '2'))
305 305 ('symbol', '3'))
306 306 * set:
307 307 <addset
308 308 <baseset []>,
309 309 <baseset [3]>>
310 310 3
311 311 $ try '1|2&3'
312 312 (or
313 313 ('symbol', '1')
314 314 (and
315 315 ('symbol', '2')
316 316 ('symbol', '3')))
317 317 * set:
318 318 <addset
319 319 <baseset [1]>,
320 320 <baseset []>>
321 321 1
322 322 $ try '1&2&3' # associativity
323 323 (and
324 324 (and
325 325 ('symbol', '1')
326 326 ('symbol', '2'))
327 327 ('symbol', '3'))
328 328 * set:
329 329 <baseset []>
330 330 $ try '1|(2|3)'
331 331 (or
332 332 ('symbol', '1')
333 333 (group
334 334 (or
335 335 ('symbol', '2')
336 336 ('symbol', '3'))))
337 337 * set:
338 338 <addset
339 339 <baseset [1]>,
340 340 <baseset [2, 3]>>
341 341 1
342 342 2
343 343 3
344 344 $ log '1.0' # tag
345 345 6
346 346 $ log 'a' # branch
347 347 0
348 348 $ log '2785f51ee'
349 349 0
350 350 $ log 'date(2005)'
351 351 4
352 352 $ log 'date(this is a test)'
353 353 hg: parse error at 10: unexpected token: symbol
354 354 [255]
355 355 $ log 'date()'
356 356 hg: parse error: date requires a string
357 357 [255]
358 358 $ log 'date'
359 359 abort: unknown revision 'date'!
360 360 [255]
361 361 $ log 'date('
362 362 hg: parse error at 5: not a prefix: end
363 363 [255]
364 364 $ log 'date("\xy")'
365 365 hg: parse error: invalid \x escape
366 366 [255]
367 367 $ log 'date(tip)'
368 368 abort: invalid date: 'tip'
369 369 [255]
370 370 $ log '0:date'
371 371 abort: unknown revision 'date'!
372 372 [255]
373 373 $ log '::"date"'
374 374 abort: unknown revision 'date'!
375 375 [255]
376 376 $ hg book date -r 4
377 377 $ log '0:date'
378 378 0
379 379 1
380 380 2
381 381 3
382 382 4
383 383 $ log '::date'
384 384 0
385 385 1
386 386 2
387 387 4
388 388 $ log '::"date"'
389 389 0
390 390 1
391 391 2
392 392 4
393 393 $ log 'date(2005) and 1::'
394 394 4
395 395 $ hg book -d date
396 396
397 397 keyword arguments
398 398
399 399 $ log 'extra(branch, value=a)'
400 400 0
401 401
402 402 $ log 'extra(branch, a, b)'
403 403 hg: parse error: extra takes at most 2 arguments
404 404 [255]
405 405 $ log 'extra(a, label=b)'
406 406 hg: parse error: extra got multiple values for keyword argument 'label'
407 407 [255]
408 408 $ log 'extra(label=branch, default)'
409 409 hg: parse error: extra got an invalid argument
410 410 [255]
411 411 $ log 'extra(branch, foo+bar=baz)'
412 412 hg: parse error: extra got an invalid argument
413 413 [255]
414 414 $ log 'extra(unknown=branch)'
415 415 hg: parse error: extra got an unexpected keyword argument 'unknown'
416 416 [255]
417 417
418 418 $ try 'foo=bar|baz'
419 419 (keyvalue
420 420 ('symbol', 'foo')
421 421 (or
422 422 ('symbol', 'bar')
423 423 ('symbol', 'baz')))
424 424 hg: parse error: can't use a key-value pair in this context
425 425 [255]
426 426
427 427 Test that symbols only get parsed as functions if there's an opening
428 428 parenthesis.
429 429
430 430 $ hg book only -r 9
431 431 $ log 'only(only)' # Outer "only" is a function, inner "only" is the bookmark
432 432 8
433 433 9
434 434
435 435 ancestor can accept 0 or more arguments
436 436
437 437 $ log 'ancestor()'
438 438 $ log 'ancestor(1)'
439 439 1
440 440 $ log 'ancestor(4,5)'
441 441 1
442 442 $ log 'ancestor(4,5) and 4'
443 443 $ log 'ancestor(0,0,1,3)'
444 444 0
445 445 $ log 'ancestor(3,1,5,3,5,1)'
446 446 1
447 447 $ log 'ancestor(0,1,3,5)'
448 448 0
449 449 $ log 'ancestor(1,2,3,4,5)'
450 450 1
451 451
452 452 test ancestors
453 453
454 454 $ log 'ancestors(5)'
455 455 0
456 456 1
457 457 3
458 458 5
459 459 $ log 'ancestor(ancestors(5))'
460 460 0
461 461 $ log '::r3232()'
462 462 0
463 463 1
464 464 2
465 465 3
466 466
467 467 $ log 'author(bob)'
468 468 2
469 469 $ log 'author("re:bob|test")'
470 470 0
471 471 1
472 472 2
473 473 3
474 474 4
475 475 5
476 476 6
477 477 7
478 478 8
479 479 9
480 480 $ log 'branch(Γ©)'
481 481 8
482 482 9
483 483 $ log 'branch(a)'
484 484 0
485 485 $ hg log -r 'branch("re:a")' --template '{rev} {branch}\n'
486 486 0 a
487 487 2 a-b-c-
488 488 3 +a+b+c+
489 489 4 -a-b-c-
490 490 5 !a/b/c/
491 491 6 _a_b_c_
492 492 7 .a.b.c.
493 493 $ log 'children(ancestor(4,5))'
494 494 2
495 495 3
496 496 $ log 'closed()'
497 497 $ log 'contains(a)'
498 498 0
499 499 1
500 500 3
501 501 5
502 502 $ log 'contains("../repo/a")'
503 503 0
504 504 1
505 505 3
506 506 5
507 507 $ log 'desc(B)'
508 508 5
509 509 $ log 'descendants(2 or 3)'
510 510 2
511 511 3
512 512 4
513 513 5
514 514 6
515 515 7
516 516 8
517 517 9
518 518 $ log 'file("b*")'
519 519 1
520 520 4
521 521 $ log 'filelog("b")'
522 522 1
523 523 4
524 524 $ log 'filelog("../repo/b")'
525 525 1
526 526 4
527 527 $ log 'follow()'
528 528 0
529 529 1
530 530 2
531 531 4
532 532 8
533 533 9
534 534 $ log 'grep("issue\d+")'
535 535 6
536 536 $ try 'grep("(")' # invalid regular expression
537 537 (func
538 538 ('symbol', 'grep')
539 539 ('string', '('))
540 540 hg: parse error: invalid match pattern: unbalanced parenthesis
541 541 [255]
542 542 $ try 'grep("\bissue\d+")'
543 543 (func
544 544 ('symbol', 'grep')
545 545 ('string', '\x08issue\\d+'))
546 546 * set:
547 547 <filteredset
548 548 <fullreposet+ 0:9>,
549 549 <grep '\x08issue\\d+'>>
550 550 $ try 'grep(r"\bissue\d+")'
551 551 (func
552 552 ('symbol', 'grep')
553 553 ('string', '\\bissue\\d+'))
554 554 * set:
555 555 <filteredset
556 556 <fullreposet+ 0:9>,
557 557 <grep '\\bissue\\d+'>>
558 558 6
559 559 $ try 'grep(r"\")'
560 560 hg: parse error at 7: unterminated string
561 561 [255]
562 562 $ log 'head()'
563 563 0
564 564 1
565 565 2
566 566 3
567 567 4
568 568 5
569 569 6
570 570 7
571 571 9
572 572 $ log 'heads(6::)'
573 573 7
574 574 $ log 'keyword(issue)'
575 575 6
576 576 $ log 'keyword("test a")'
577 577 $ log 'limit(head(), 1)'
578 578 0
579 579 $ log 'limit(author("re:bob|test"), 3, 5)'
580 580 5
581 581 6
582 582 7
583 583 $ log 'limit(author("re:bob|test"), offset=6)'
584 584 6
585 585 $ log 'limit(author("re:bob|test"), offset=10)'
586 586 $ log 'limit(all(), 1, -1)'
587 587 hg: parse error: negative offset
588 588 [255]
589 589 $ log 'matching(6)'
590 590 6
591 591 $ log 'matching(6:7, "phase parents user date branch summary files description substate")'
592 592 6
593 593 7
594 594
595 595 Testing min and max
596 596
597 597 max: simple
598 598
599 599 $ log 'max(contains(a))'
600 600 5
601 601
602 602 max: simple on unordered set)
603 603
604 604 $ log 'max((4+0+2+5+7) and contains(a))'
605 605 5
606 606
607 607 max: no result
608 608
609 609 $ log 'max(contains(stringthatdoesnotappearanywhere))'
610 610
611 611 max: no result on unordered set
612 612
613 613 $ log 'max((4+0+2+5+7) and contains(stringthatdoesnotappearanywhere))'
614 614
615 615 min: simple
616 616
617 617 $ log 'min(contains(a))'
618 618 0
619 619
620 620 min: simple on unordered set
621 621
622 622 $ log 'min((4+0+2+5+7) and contains(a))'
623 623 0
624 624
625 625 min: empty
626 626
627 627 $ log 'min(contains(stringthatdoesnotappearanywhere))'
628 628
629 629 min: empty on unordered set
630 630
631 631 $ log 'min((4+0+2+5+7) and contains(stringthatdoesnotappearanywhere))'
632 632
633 633
634 634 $ log 'merge()'
635 635 6
636 636 $ log 'branchpoint()'
637 637 1
638 638 4
639 639 $ log 'modifies(b)'
640 640 4
641 641 $ log 'modifies("path:b")'
642 642 4
643 643 $ log 'modifies("*")'
644 644 4
645 645 6
646 646 $ log 'modifies("set:modified()")'
647 647 4
648 648 $ log 'id(5)'
649 649 2
650 650 $ log 'only(9)'
651 651 8
652 652 9
653 653 $ log 'only(8)'
654 654 8
655 655 $ log 'only(9, 5)'
656 656 2
657 657 4
658 658 8
659 659 9
660 660 $ log 'only(7 + 9, 5 + 2)'
661 661 4
662 662 6
663 663 7
664 664 8
665 665 9
666 666
667 667 Test empty set input
668 668 $ log 'only(p2())'
669 669 $ log 'only(p1(), p2())'
670 670 0
671 671 1
672 672 2
673 673 4
674 674 8
675 675 9
676 676
677 677 Test '%' operator
678 678
679 679 $ log '9%'
680 680 8
681 681 9
682 682 $ log '9%5'
683 683 2
684 684 4
685 685 8
686 686 9
687 687 $ log '(7 + 9)%(5 + 2)'
688 688 4
689 689 6
690 690 7
691 691 8
692 692 9
693 693
694 694 Test opreand of '%' is optimized recursively (issue4670)
695 695
696 696 $ try --optimize '8:9-8%'
697 697 (onlypost
698 698 (minus
699 699 (range
700 700 ('symbol', '8')
701 701 ('symbol', '9'))
702 702 ('symbol', '8')))
703 703 * optimized:
704 704 (func
705 705 ('symbol', 'only')
706 706 (difference
707 707 (range
708 708 ('symbol', '8')
709 709 ('symbol', '9'))
710 710 ('symbol', '8')))
711 711 * set:
712 712 <baseset+ [8, 9]>
713 713 8
714 714 9
715 715 $ try --optimize '(9)%(5)'
716 716 (only
717 717 (group
718 718 ('symbol', '9'))
719 719 (group
720 720 ('symbol', '5')))
721 721 * optimized:
722 722 (func
723 723 ('symbol', 'only')
724 724 (list
725 725 ('symbol', '9')
726 726 ('symbol', '5')))
727 727 * set:
728 <baseset+ [8, 9, 2, 4]>
728 <baseset+ [2, 4, 8, 9]>
729 729 2
730 730 4
731 731 8
732 732 9
733 733
734 734 Test the order of operations
735 735
736 736 $ log '7 + 9%5 + 2'
737 737 7
738 738 2
739 739 4
740 740 8
741 741 9
742 742
743 743 Test explicit numeric revision
744 744 $ log 'rev(-2)'
745 745 $ log 'rev(-1)'
746 746 -1
747 747 $ log 'rev(0)'
748 748 0
749 749 $ log 'rev(9)'
750 750 9
751 751 $ log 'rev(10)'
752 752 $ log 'rev(tip)'
753 753 hg: parse error: rev expects a number
754 754 [255]
755 755
756 756 Test hexadecimal revision
757 757 $ log 'id(2)'
758 758 abort: 00changelog.i@2: ambiguous identifier!
759 759 [255]
760 760 $ log 'id(23268)'
761 761 4
762 762 $ log 'id(2785f51eece)'
763 763 0
764 764 $ log 'id(d5d0dcbdc4d9ff5dbb2d336f32f0bb561c1a532c)'
765 765 8
766 766 $ log 'id(d5d0dcbdc4a)'
767 767 $ log 'id(d5d0dcbdc4w)'
768 768 $ log 'id(d5d0dcbdc4d9ff5dbb2d336f32f0bb561c1a532d)'
769 769 $ log 'id(d5d0dcbdc4d9ff5dbb2d336f32f0bb561c1a532q)'
770 770 $ log 'id(1.0)'
771 771 $ log 'id(xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx)'
772 772
773 773 Test null revision
774 774 $ log '(null)'
775 775 -1
776 776 $ log '(null:0)'
777 777 -1
778 778 0
779 779 $ log '(0:null)'
780 780 0
781 781 -1
782 782 $ log 'null::0'
783 783 -1
784 784 0
785 785 $ log 'null:tip - 0:'
786 786 -1
787 787 $ log 'null: and null::' | head -1
788 788 -1
789 789 $ log 'null: or 0:' | head -2
790 790 -1
791 791 0
792 792 $ log 'ancestors(null)'
793 793 -1
794 794 $ log 'reverse(null:)' | tail -2
795 795 0
796 796 -1
797 797 BROKEN: should be '-1'
798 798 $ log 'first(null:)'
799 799 BROKEN: should be '-1'
800 800 $ log 'min(null:)'
801 801 $ log 'tip:null and all()' | tail -2
802 802 1
803 803 0
804 804
805 805 Test working-directory revision
806 806 $ hg debugrevspec 'wdir()'
807 807 2147483647
808 808 $ hg debugrevspec 'tip or wdir()'
809 809 9
810 810 2147483647
811 811 $ hg debugrevspec '0:tip and wdir()'
812 812 $ log '0:wdir()' | tail -3
813 813 8
814 814 9
815 815 2147483647
816 816 $ log 'wdir():0' | head -3
817 817 2147483647
818 818 9
819 819 8
820 820 $ log 'wdir():wdir()'
821 821 2147483647
822 822 $ log '(all() + wdir()) & min(. + wdir())'
823 823 9
824 824 $ log '(all() + wdir()) & max(. + wdir())'
825 825 2147483647
826 826 $ log '(all() + wdir()) & first(wdir() + .)'
827 827 2147483647
828 828 $ log '(all() + wdir()) & last(. + wdir())'
829 829 2147483647
830 830
831 831 $ log 'outgoing()'
832 832 8
833 833 9
834 834 $ log 'outgoing("../remote1")'
835 835 8
836 836 9
837 837 $ log 'outgoing("../remote2")'
838 838 3
839 839 5
840 840 6
841 841 7
842 842 9
843 843 $ log 'p1(merge())'
844 844 5
845 845 $ log 'p2(merge())'
846 846 4
847 847 $ log 'parents(merge())'
848 848 4
849 849 5
850 850 $ log 'p1(branchpoint())'
851 851 0
852 852 2
853 853 $ log 'p2(branchpoint())'
854 854 $ log 'parents(branchpoint())'
855 855 0
856 856 2
857 857 $ log 'removes(a)'
858 858 2
859 859 6
860 860 $ log 'roots(all())'
861 861 0
862 862 $ log 'reverse(2 or 3 or 4 or 5)'
863 863 5
864 864 4
865 865 3
866 866 2
867 867 $ log 'reverse(all())'
868 868 9
869 869 8
870 870 7
871 871 6
872 872 5
873 873 4
874 874 3
875 875 2
876 876 1
877 877 0
878 878 $ log 'reverse(all()) & filelog(b)'
879 879 4
880 880 1
881 881 $ log 'rev(5)'
882 882 5
883 883 $ log 'sort(limit(reverse(all()), 3))'
884 884 7
885 885 8
886 886 9
887 887 $ log 'sort(2 or 3 or 4 or 5, date)'
888 888 2
889 889 3
890 890 5
891 891 4
892 892 $ log 'tagged()'
893 893 6
894 894 $ log 'tag()'
895 895 6
896 896 $ log 'tag(1.0)'
897 897 6
898 898 $ log 'tag(tip)'
899 899 9
900 900
901 901 test sort revset
902 902 --------------------------------------------
903 903
904 904 test when adding two unordered revsets
905 905
906 906 $ log 'sort(keyword(issue) or modifies(b))'
907 907 4
908 908 6
909 909
910 910 test when sorting a reversed collection in the same way it is
911 911
912 912 $ log 'sort(reverse(all()), -rev)'
913 913 9
914 914 8
915 915 7
916 916 6
917 917 5
918 918 4
919 919 3
920 920 2
921 921 1
922 922 0
923 923
924 924 test when sorting a reversed collection
925 925
926 926 $ log 'sort(reverse(all()), rev)'
927 927 0
928 928 1
929 929 2
930 930 3
931 931 4
932 932 5
933 933 6
934 934 7
935 935 8
936 936 9
937 937
938 938
939 939 test sorting two sorted collections in different orders
940 940
941 941 $ log 'sort(outgoing() or reverse(removes(a)), rev)'
942 942 2
943 943 6
944 944 8
945 945 9
946 946
947 947 test sorting two sorted collections in different orders backwards
948 948
949 949 $ log 'sort(outgoing() or reverse(removes(a)), -rev)'
950 950 9
951 951 8
952 952 6
953 953 2
954 954
955 955 test subtracting something from an addset
956 956
957 957 $ log '(outgoing() or removes(a)) - removes(a)'
958 958 8
959 959 9
960 960
961 961 test intersecting something with an addset
962 962
963 963 $ log 'parents(outgoing() or removes(a))'
964 964 1
965 965 4
966 966 5
967 967 8
968 968
969 969 test that `or` operation combines elements in the right order:
970 970
971 971 $ log '3:4 or 2:5'
972 972 3
973 973 4
974 974 2
975 975 5
976 976 $ log '3:4 or 5:2'
977 977 3
978 978 4
979 979 5
980 980 2
981 981 $ log 'sort(3:4 or 2:5)'
982 982 2
983 983 3
984 984 4
985 985 5
986 986 $ log 'sort(3:4 or 5:2)'
987 987 2
988 988 3
989 989 4
990 990 5
991 991
992 992 test that more than one `-r`s are combined in the right order and deduplicated:
993 993
994 994 $ hg log -T '{rev}\n' -r 3 -r 3 -r 4 -r 5:2 -r 'ancestors(4)'
995 995 3
996 996 4
997 997 5
998 998 2
999 999 0
1000 1000 1
1001 1001
1002 1002 test that `or` operation skips duplicated revisions from right-hand side
1003 1003
1004 1004 $ try 'reverse(1::5) or ancestors(4)'
1005 1005 (or
1006 1006 (func
1007 1007 ('symbol', 'reverse')
1008 1008 (dagrange
1009 1009 ('symbol', '1')
1010 1010 ('symbol', '5')))
1011 1011 (func
1012 1012 ('symbol', 'ancestors')
1013 1013 ('symbol', '4')))
1014 1014 * set:
1015 1015 <addset
1016 1016 <baseset- [1, 3, 5]>,
1017 1017 <generatorset+>>
1018 1018 5
1019 1019 3
1020 1020 1
1021 1021 0
1022 1022 2
1023 1023 4
1024 1024 $ try 'sort(ancestors(4) or reverse(1::5))'
1025 1025 (func
1026 1026 ('symbol', 'sort')
1027 1027 (or
1028 1028 (func
1029 1029 ('symbol', 'ancestors')
1030 1030 ('symbol', '4'))
1031 1031 (func
1032 1032 ('symbol', 'reverse')
1033 1033 (dagrange
1034 1034 ('symbol', '1')
1035 1035 ('symbol', '5')))))
1036 1036 * set:
1037 1037 <addset+
1038 1038 <generatorset+>,
1039 1039 <baseset- [1, 3, 5]>>
1040 1040 0
1041 1041 1
1042 1042 2
1043 1043 3
1044 1044 4
1045 1045 5
1046 1046
1047 1047 test optimization of trivial `or` operation
1048 1048
1049 1049 $ try --optimize '0|(1)|"2"|-2|tip|null'
1050 1050 (or
1051 1051 ('symbol', '0')
1052 1052 (group
1053 1053 ('symbol', '1'))
1054 1054 ('string', '2')
1055 1055 (negate
1056 1056 ('symbol', '2'))
1057 1057 ('symbol', 'tip')
1058 1058 ('symbol', 'null'))
1059 1059 * optimized:
1060 1060 (func
1061 1061 ('symbol', '_list')
1062 1062 ('string', '0\x001\x002\x00-2\x00tip\x00null'))
1063 1063 * set:
1064 1064 <baseset [0, 1, 2, 8, 9, -1]>
1065 1065 0
1066 1066 1
1067 1067 2
1068 1068 8
1069 1069 9
1070 1070 -1
1071 1071
1072 1072 $ try --optimize '0|1|2:3'
1073 1073 (or
1074 1074 ('symbol', '0')
1075 1075 ('symbol', '1')
1076 1076 (range
1077 1077 ('symbol', '2')
1078 1078 ('symbol', '3')))
1079 1079 * optimized:
1080 1080 (or
1081 1081 (func
1082 1082 ('symbol', '_list')
1083 1083 ('string', '0\x001'))
1084 1084 (range
1085 1085 ('symbol', '2')
1086 1086 ('symbol', '3')))
1087 1087 * set:
1088 1088 <addset
1089 1089 <baseset [0, 1]>,
1090 1090 <spanset+ 2:3>>
1091 1091 0
1092 1092 1
1093 1093 2
1094 1094 3
1095 1095
1096 1096 $ try --optimize '0:1|2|3:4|5|6'
1097 1097 (or
1098 1098 (range
1099 1099 ('symbol', '0')
1100 1100 ('symbol', '1'))
1101 1101 ('symbol', '2')
1102 1102 (range
1103 1103 ('symbol', '3')
1104 1104 ('symbol', '4'))
1105 1105 ('symbol', '5')
1106 1106 ('symbol', '6'))
1107 1107 * optimized:
1108 1108 (or
1109 1109 (range
1110 1110 ('symbol', '0')
1111 1111 ('symbol', '1'))
1112 1112 ('symbol', '2')
1113 1113 (range
1114 1114 ('symbol', '3')
1115 1115 ('symbol', '4'))
1116 1116 (func
1117 1117 ('symbol', '_list')
1118 1118 ('string', '5\x006')))
1119 1119 * set:
1120 1120 <addset
1121 1121 <addset
1122 1122 <spanset+ 0:1>,
1123 1123 <baseset [2]>>,
1124 1124 <addset
1125 1125 <spanset+ 3:4>,
1126 1126 <baseset [5, 6]>>>
1127 1127 0
1128 1128 1
1129 1129 2
1130 1130 3
1131 1131 4
1132 1132 5
1133 1133 6
1134 1134
1135 1135 test that `_list` should be narrowed by provided `subset`
1136 1136
1137 1137 $ log '0:2 and (null|1|2|3)'
1138 1138 1
1139 1139 2
1140 1140
1141 1141 test that `_list` should remove duplicates
1142 1142
1143 1143 $ log '0|1|2|1|2|-1|tip'
1144 1144 0
1145 1145 1
1146 1146 2
1147 1147 9
1148 1148
1149 1149 test unknown revision in `_list`
1150 1150
1151 1151 $ log '0|unknown'
1152 1152 abort: unknown revision 'unknown'!
1153 1153 [255]
1154 1154
1155 1155 test integer range in `_list`
1156 1156
1157 1157 $ log '-1|-10'
1158 1158 9
1159 1159 0
1160 1160
1161 1161 $ log '-10|-11'
1162 1162 abort: unknown revision '-11'!
1163 1163 [255]
1164 1164
1165 1165 $ log '9|10'
1166 1166 abort: unknown revision '10'!
1167 1167 [255]
1168 1168
1169 1169 test '0000' != '0' in `_list`
1170 1170
1171 1171 $ log '0|0000'
1172 1172 0
1173 1173 -1
1174 1174
1175 1175 test ',' in `_list`
1176 1176 $ log '0,1'
1177 1177 hg: parse error: can't use a list in this context
1178 1178 (see hg help "revsets.x or y")
1179 1179 [255]
1180 1180 $ try '0,1,2'
1181 1181 (list
1182 1182 ('symbol', '0')
1183 1183 ('symbol', '1')
1184 1184 ('symbol', '2'))
1185 1185 hg: parse error: can't use a list in this context
1186 1186 (see hg help "revsets.x or y")
1187 1187 [255]
1188 1188
1189 1189 test that chained `or` operations make balanced addsets
1190 1190
1191 1191 $ try '0:1|1:2|2:3|3:4|4:5'
1192 1192 (or
1193 1193 (range
1194 1194 ('symbol', '0')
1195 1195 ('symbol', '1'))
1196 1196 (range
1197 1197 ('symbol', '1')
1198 1198 ('symbol', '2'))
1199 1199 (range
1200 1200 ('symbol', '2')
1201 1201 ('symbol', '3'))
1202 1202 (range
1203 1203 ('symbol', '3')
1204 1204 ('symbol', '4'))
1205 1205 (range
1206 1206 ('symbol', '4')
1207 1207 ('symbol', '5')))
1208 1208 * set:
1209 1209 <addset
1210 1210 <addset
1211 1211 <spanset+ 0:1>,
1212 1212 <spanset+ 1:2>>,
1213 1213 <addset
1214 1214 <spanset+ 2:3>,
1215 1215 <addset
1216 1216 <spanset+ 3:4>,
1217 1217 <spanset+ 4:5>>>>
1218 1218 0
1219 1219 1
1220 1220 2
1221 1221 3
1222 1222 4
1223 1223 5
1224 1224
1225 1225 no crash by empty group "()" while optimizing `or` operations
1226 1226
1227 1227 $ try --optimize '0|()'
1228 1228 (or
1229 1229 ('symbol', '0')
1230 1230 (group
1231 1231 None))
1232 1232 * optimized:
1233 1233 (or
1234 1234 ('symbol', '0')
1235 1235 None)
1236 1236 hg: parse error: missing argument
1237 1237 [255]
1238 1238
1239 1239 test that chained `or` operations never eat up stack (issue4624)
1240 1240 (uses `0:1` instead of `0` to avoid future optimization of trivial revisions)
1241 1241
1242 1242 $ hg log -T '{rev}\n' -r `python -c "print '+'.join(['0:1'] * 500)"`
1243 1243 0
1244 1244 1
1245 1245
1246 1246 test that repeated `-r` options never eat up stack (issue4565)
1247 1247 (uses `-r 0::1` to avoid possible optimization at old-style parser)
1248 1248
1249 1249 $ hg log -T '{rev}\n' `python -c "for i in xrange(500): print '-r 0::1 ',"`
1250 1250 0
1251 1251 1
1252 1252
1253 1253 check that conversion to only works
1254 1254 $ try --optimize '::3 - ::1'
1255 1255 (minus
1256 1256 (dagrangepre
1257 1257 ('symbol', '3'))
1258 1258 (dagrangepre
1259 1259 ('symbol', '1')))
1260 1260 * optimized:
1261 1261 (func
1262 1262 ('symbol', 'only')
1263 1263 (list
1264 1264 ('symbol', '3')
1265 1265 ('symbol', '1')))
1266 1266 * set:
1267 1267 <baseset+ [3]>
1268 1268 3
1269 1269 $ try --optimize 'ancestors(1) - ancestors(3)'
1270 1270 (minus
1271 1271 (func
1272 1272 ('symbol', 'ancestors')
1273 1273 ('symbol', '1'))
1274 1274 (func
1275 1275 ('symbol', 'ancestors')
1276 1276 ('symbol', '3')))
1277 1277 * optimized:
1278 1278 (func
1279 1279 ('symbol', 'only')
1280 1280 (list
1281 1281 ('symbol', '1')
1282 1282 ('symbol', '3')))
1283 1283 * set:
1284 1284 <baseset+ []>
1285 1285 $ try --optimize 'not ::2 and ::6'
1286 1286 (and
1287 1287 (not
1288 1288 (dagrangepre
1289 1289 ('symbol', '2')))
1290 1290 (dagrangepre
1291 1291 ('symbol', '6')))
1292 1292 * optimized:
1293 1293 (func
1294 1294 ('symbol', 'only')
1295 1295 (list
1296 1296 ('symbol', '6')
1297 1297 ('symbol', '2')))
1298 1298 * set:
1299 1299 <baseset+ [3, 4, 5, 6]>
1300 1300 3
1301 1301 4
1302 1302 5
1303 1303 6
1304 1304 $ try --optimize 'ancestors(6) and not ancestors(4)'
1305 1305 (and
1306 1306 (func
1307 1307 ('symbol', 'ancestors')
1308 1308 ('symbol', '6'))
1309 1309 (not
1310 1310 (func
1311 1311 ('symbol', 'ancestors')
1312 1312 ('symbol', '4'))))
1313 1313 * optimized:
1314 1314 (func
1315 1315 ('symbol', 'only')
1316 1316 (list
1317 1317 ('symbol', '6')
1318 1318 ('symbol', '4')))
1319 1319 * set:
1320 1320 <baseset+ [3, 5, 6]>
1321 1321 3
1322 1322 5
1323 1323 6
1324 1324
1325 1325 no crash by empty group "()" while optimizing to "only()"
1326 1326
1327 1327 $ try --optimize '::1 and ()'
1328 1328 (and
1329 1329 (dagrangepre
1330 1330 ('symbol', '1'))
1331 1331 (group
1332 1332 None))
1333 1333 * optimized:
1334 1334 (and
1335 1335 None
1336 1336 (func
1337 1337 ('symbol', 'ancestors')
1338 1338 ('symbol', '1')))
1339 1339 hg: parse error: missing argument
1340 1340 [255]
1341 1341
1342 1342 we can use patterns when searching for tags
1343 1343
1344 1344 $ log 'tag("1..*")'
1345 1345 abort: tag '1..*' does not exist!
1346 1346 [255]
1347 1347 $ log 'tag("re:1..*")'
1348 1348 6
1349 1349 $ log 'tag("re:[0-9].[0-9]")'
1350 1350 6
1351 1351 $ log 'tag("literal:1.0")'
1352 1352 6
1353 1353 $ log 'tag("re:0..*")'
1354 1354
1355 1355 $ log 'tag(unknown)'
1356 1356 abort: tag 'unknown' does not exist!
1357 1357 [255]
1358 1358 $ log 'tag("re:unknown")'
1359 1359 $ log 'present(tag("unknown"))'
1360 1360 $ log 'present(tag("re:unknown"))'
1361 1361 $ log 'branch(unknown)'
1362 1362 abort: unknown revision 'unknown'!
1363 1363 [255]
1364 1364 $ log 'branch("literal:unknown")'
1365 1365 abort: branch 'unknown' does not exist!
1366 1366 [255]
1367 1367 $ log 'branch("re:unknown")'
1368 1368 $ log 'present(branch("unknown"))'
1369 1369 $ log 'present(branch("re:unknown"))'
1370 1370 $ log 'user(bob)'
1371 1371 2
1372 1372
1373 1373 $ log '4::8'
1374 1374 4
1375 1375 8
1376 1376 $ log '4:8'
1377 1377 4
1378 1378 5
1379 1379 6
1380 1380 7
1381 1381 8
1382 1382
1383 1383 $ log 'sort(!merge() & (modifies(b) | user(bob) | keyword(bug) | keyword(issue) & 1::9), "-date")'
1384 1384 4
1385 1385 2
1386 1386 5
1387 1387
1388 1388 $ log 'not 0 and 0:2'
1389 1389 1
1390 1390 2
1391 1391 $ log 'not 1 and 0:2'
1392 1392 0
1393 1393 2
1394 1394 $ log 'not 2 and 0:2'
1395 1395 0
1396 1396 1
1397 1397 $ log '(1 and 2)::'
1398 1398 $ log '(1 and 2):'
1399 1399 $ log '(1 and 2):3'
1400 1400 $ log 'sort(head(), -rev)'
1401 1401 9
1402 1402 7
1403 1403 6
1404 1404 5
1405 1405 4
1406 1406 3
1407 1407 2
1408 1408 1
1409 1409 0
1410 1410 $ log '4::8 - 8'
1411 1411 4
1412 1412 $ log 'matching(1 or 2 or 3) and (2 or 3 or 1)'
1413 1413 2
1414 1414 3
1415 1415 1
1416 1416
1417 1417 $ log 'named("unknown")'
1418 1418 abort: namespace 'unknown' does not exist!
1419 1419 [255]
1420 1420 $ log 'named("re:unknown")'
1421 1421 abort: no namespace exists that match 'unknown'!
1422 1422 [255]
1423 1423 $ log 'present(named("unknown"))'
1424 1424 $ log 'present(named("re:unknown"))'
1425 1425
1426 1426 $ log 'tag()'
1427 1427 6
1428 1428 $ log 'named("tags")'
1429 1429 6
1430 1430
1431 1431 issue2437
1432 1432
1433 1433 $ log '3 and p1(5)'
1434 1434 3
1435 1435 $ log '4 and p2(6)'
1436 1436 4
1437 1437 $ log '1 and parents(:2)'
1438 1438 1
1439 1439 $ log '2 and children(1:)'
1440 1440 2
1441 1441 $ log 'roots(all()) or roots(all())'
1442 1442 0
1443 1443 $ hg debugrevspec 'roots(all()) or roots(all())'
1444 1444 0
1445 1445 $ log 'heads(branch(Γ©)) or heads(branch(Γ©))'
1446 1446 9
1447 1447 $ log 'ancestors(8) and (heads(branch("-a-b-c-")) or heads(branch(Γ©)))'
1448 1448 4
1449 1449
1450 1450 issue2654: report a parse error if the revset was not completely parsed
1451 1451
1452 1452 $ log '1 OR 2'
1453 1453 hg: parse error at 2: invalid token
1454 1454 [255]
1455 1455
1456 1456 or operator should preserve ordering:
1457 1457 $ log 'reverse(2::4) or tip'
1458 1458 4
1459 1459 2
1460 1460 9
1461 1461
1462 1462 parentrevspec
1463 1463
1464 1464 $ log 'merge()^0'
1465 1465 6
1466 1466 $ log 'merge()^'
1467 1467 5
1468 1468 $ log 'merge()^1'
1469 1469 5
1470 1470 $ log 'merge()^2'
1471 1471 4
1472 1472 $ log 'merge()^^'
1473 1473 3
1474 1474 $ log 'merge()^1^'
1475 1475 3
1476 1476 $ log 'merge()^^^'
1477 1477 1
1478 1478
1479 1479 $ log 'merge()~0'
1480 1480 6
1481 1481 $ log 'merge()~1'
1482 1482 5
1483 1483 $ log 'merge()~2'
1484 1484 3
1485 1485 $ log 'merge()~2^1'
1486 1486 1
1487 1487 $ log 'merge()~3'
1488 1488 1
1489 1489
1490 1490 $ log '(-3:tip)^'
1491 1491 4
1492 1492 6
1493 1493 8
1494 1494
1495 1495 $ log 'tip^foo'
1496 1496 hg: parse error: ^ expects a number 0, 1, or 2
1497 1497 [255]
1498 1498
1499 1499 Bogus function gets suggestions
1500 1500 $ log 'add()'
1501 1501 hg: parse error: unknown identifier: add
1502 1502 (did you mean adds?)
1503 1503 [255]
1504 1504 $ log 'added()'
1505 1505 hg: parse error: unknown identifier: added
1506 1506 (did you mean adds?)
1507 1507 [255]
1508 1508 $ log 'remo()'
1509 1509 hg: parse error: unknown identifier: remo
1510 1510 (did you mean one of remote, removes?)
1511 1511 [255]
1512 1512 $ log 'babar()'
1513 1513 hg: parse error: unknown identifier: babar
1514 1514 [255]
1515 1515
1516 1516 Bogus function with a similar internal name doesn't suggest the internal name
1517 1517 $ log 'matches()'
1518 1518 hg: parse error: unknown identifier: matches
1519 1519 (did you mean matching?)
1520 1520 [255]
1521 1521
1522 1522 Undocumented functions aren't suggested as similar either
1523 1523 $ log 'wdir2()'
1524 1524 hg: parse error: unknown identifier: wdir2
1525 1525 [255]
1526 1526
1527 1527 multiple revspecs
1528 1528
1529 1529 $ hg log -r 'tip~1:tip' -r 'tip~2:tip~1' --template '{rev}\n'
1530 1530 8
1531 1531 9
1532 1532 4
1533 1533 5
1534 1534 6
1535 1535 7
1536 1536
1537 1537 test usage in revpair (with "+")
1538 1538
1539 1539 (real pair)
1540 1540
1541 1541 $ hg diff -r 'tip^^' -r 'tip'
1542 1542 diff -r 2326846efdab -r 24286f4ae135 .hgtags
1543 1543 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1544 1544 +++ b/.hgtags Thu Jan 01 00:00:00 1970 +0000
1545 1545 @@ -0,0 +1,1 @@
1546 1546 +e0cc66ef77e8b6f711815af4e001a6594fde3ba5 1.0
1547 1547 $ hg diff -r 'tip^^::tip'
1548 1548 diff -r 2326846efdab -r 24286f4ae135 .hgtags
1549 1549 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1550 1550 +++ b/.hgtags Thu Jan 01 00:00:00 1970 +0000
1551 1551 @@ -0,0 +1,1 @@
1552 1552 +e0cc66ef77e8b6f711815af4e001a6594fde3ba5 1.0
1553 1553
1554 1554 (single rev)
1555 1555
1556 1556 $ hg diff -r 'tip^' -r 'tip^'
1557 1557 $ hg diff -r 'tip^:tip^'
1558 1558
1559 1559 (single rev that does not looks like a range)
1560 1560
1561 1561 $ hg diff -r 'tip^::tip^ or tip^'
1562 1562 diff -r d5d0dcbdc4d9 .hgtags
1563 1563 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1564 1564 +++ b/.hgtags * (glob)
1565 1565 @@ -0,0 +1,1 @@
1566 1566 +e0cc66ef77e8b6f711815af4e001a6594fde3ba5 1.0
1567 1567 $ hg diff -r 'tip^ or tip^'
1568 1568 diff -r d5d0dcbdc4d9 .hgtags
1569 1569 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1570 1570 +++ b/.hgtags * (glob)
1571 1571 @@ -0,0 +1,1 @@
1572 1572 +e0cc66ef77e8b6f711815af4e001a6594fde3ba5 1.0
1573 1573
1574 1574 (no rev)
1575 1575
1576 1576 $ hg diff -r 'author("babar") or author("celeste")'
1577 1577 abort: empty revision range
1578 1578 [255]
1579 1579
1580 1580 aliases:
1581 1581
1582 1582 $ echo '[revsetalias]' >> .hg/hgrc
1583 1583 $ echo 'm = merge()' >> .hg/hgrc
1584 1584 (revset aliases can override builtin revsets)
1585 1585 $ echo 'p2($1) = p1($1)' >> .hg/hgrc
1586 1586 $ echo 'sincem = descendants(m)' >> .hg/hgrc
1587 1587 $ echo 'd($1) = reverse(sort($1, date))' >> .hg/hgrc
1588 1588 $ echo 'rs(ARG1, ARG2) = reverse(sort(ARG1, ARG2))' >> .hg/hgrc
1589 1589 $ echo 'rs4(ARG1, ARGA, ARGB, ARG2) = reverse(sort(ARG1, ARG2))' >> .hg/hgrc
1590 1590
1591 1591 $ try m
1592 1592 ('symbol', 'm')
1593 1593 * expanded:
1594 1594 (func
1595 1595 ('symbol', 'merge')
1596 1596 None)
1597 1597 * set:
1598 1598 <filteredset
1599 1599 <fullreposet+ 0:9>,
1600 1600 <merge>>
1601 1601 6
1602 1602
1603 1603 $ HGPLAIN=1
1604 1604 $ export HGPLAIN
1605 1605 $ try m
1606 1606 ('symbol', 'm')
1607 1607 abort: unknown revision 'm'!
1608 1608 [255]
1609 1609
1610 1610 $ HGPLAINEXCEPT=revsetalias
1611 1611 $ export HGPLAINEXCEPT
1612 1612 $ try m
1613 1613 ('symbol', 'm')
1614 1614 * expanded:
1615 1615 (func
1616 1616 ('symbol', 'merge')
1617 1617 None)
1618 1618 * set:
1619 1619 <filteredset
1620 1620 <fullreposet+ 0:9>,
1621 1621 <merge>>
1622 1622 6
1623 1623
1624 1624 $ unset HGPLAIN
1625 1625 $ unset HGPLAINEXCEPT
1626 1626
1627 1627 $ try 'p2(.)'
1628 1628 (func
1629 1629 ('symbol', 'p2')
1630 1630 ('symbol', '.'))
1631 1631 * expanded:
1632 1632 (func
1633 1633 ('symbol', 'p1')
1634 1634 ('symbol', '.'))
1635 1635 * set:
1636 1636 <baseset+ [8]>
1637 1637 8
1638 1638
1639 1639 $ HGPLAIN=1
1640 1640 $ export HGPLAIN
1641 1641 $ try 'p2(.)'
1642 1642 (func
1643 1643 ('symbol', 'p2')
1644 1644 ('symbol', '.'))
1645 1645 * set:
1646 1646 <baseset+ []>
1647 1647
1648 1648 $ HGPLAINEXCEPT=revsetalias
1649 1649 $ export HGPLAINEXCEPT
1650 1650 $ try 'p2(.)'
1651 1651 (func
1652 1652 ('symbol', 'p2')
1653 1653 ('symbol', '.'))
1654 1654 * expanded:
1655 1655 (func
1656 1656 ('symbol', 'p1')
1657 1657 ('symbol', '.'))
1658 1658 * set:
1659 1659 <baseset+ [8]>
1660 1660 8
1661 1661
1662 1662 $ unset HGPLAIN
1663 1663 $ unset HGPLAINEXCEPT
1664 1664
1665 1665 test alias recursion
1666 1666
1667 1667 $ try sincem
1668 1668 ('symbol', 'sincem')
1669 1669 * expanded:
1670 1670 (func
1671 1671 ('symbol', 'descendants')
1672 1672 (func
1673 1673 ('symbol', 'merge')
1674 1674 None))
1675 1675 * set:
1676 1676 <addset+
1677 1677 <filteredset
1678 1678 <fullreposet+ 0:9>,
1679 1679 <merge>>,
1680 1680 <generatorset+>>
1681 1681 6
1682 1682 7
1683 1683
1684 1684 test infinite recursion
1685 1685
1686 1686 $ echo 'recurse1 = recurse2' >> .hg/hgrc
1687 1687 $ echo 'recurse2 = recurse1' >> .hg/hgrc
1688 1688 $ try recurse1
1689 1689 ('symbol', 'recurse1')
1690 1690 hg: parse error: infinite expansion of revset alias "recurse1" detected
1691 1691 [255]
1692 1692
1693 1693 $ echo 'level1($1, $2) = $1 or $2' >> .hg/hgrc
1694 1694 $ echo 'level2($1, $2) = level1($2, $1)' >> .hg/hgrc
1695 1695 $ try "level2(level1(1, 2), 3)"
1696 1696 (func
1697 1697 ('symbol', 'level2')
1698 1698 (list
1699 1699 (func
1700 1700 ('symbol', 'level1')
1701 1701 (list
1702 1702 ('symbol', '1')
1703 1703 ('symbol', '2')))
1704 1704 ('symbol', '3')))
1705 1705 * expanded:
1706 1706 (or
1707 1707 ('symbol', '3')
1708 1708 (or
1709 1709 ('symbol', '1')
1710 1710 ('symbol', '2')))
1711 1711 * set:
1712 1712 <addset
1713 1713 <baseset [3]>,
1714 1714 <baseset [1, 2]>>
1715 1715 3
1716 1716 1
1717 1717 2
1718 1718
1719 1719 test nesting and variable passing
1720 1720
1721 1721 $ echo 'nested($1) = nested2($1)' >> .hg/hgrc
1722 1722 $ echo 'nested2($1) = nested3($1)' >> .hg/hgrc
1723 1723 $ echo 'nested3($1) = max($1)' >> .hg/hgrc
1724 1724 $ try 'nested(2:5)'
1725 1725 (func
1726 1726 ('symbol', 'nested')
1727 1727 (range
1728 1728 ('symbol', '2')
1729 1729 ('symbol', '5')))
1730 1730 * expanded:
1731 1731 (func
1732 1732 ('symbol', 'max')
1733 1733 (range
1734 1734 ('symbol', '2')
1735 1735 ('symbol', '5')))
1736 1736 * set:
1737 1737 <baseset
1738 1738 <max
1739 1739 <fullreposet+ 0:9>,
1740 1740 <spanset+ 2:5>>>
1741 1741 5
1742 1742
1743 1743 test chained `or` operations are flattened at parsing phase
1744 1744
1745 1745 $ echo 'chainedorops($1, $2, $3) = $1|$2|$3' >> .hg/hgrc
1746 1746 $ try 'chainedorops(0:1, 1:2, 2:3)'
1747 1747 (func
1748 1748 ('symbol', 'chainedorops')
1749 1749 (list
1750 1750 (range
1751 1751 ('symbol', '0')
1752 1752 ('symbol', '1'))
1753 1753 (range
1754 1754 ('symbol', '1')
1755 1755 ('symbol', '2'))
1756 1756 (range
1757 1757 ('symbol', '2')
1758 1758 ('symbol', '3'))))
1759 1759 * expanded:
1760 1760 (or
1761 1761 (range
1762 1762 ('symbol', '0')
1763 1763 ('symbol', '1'))
1764 1764 (range
1765 1765 ('symbol', '1')
1766 1766 ('symbol', '2'))
1767 1767 (range
1768 1768 ('symbol', '2')
1769 1769 ('symbol', '3')))
1770 1770 * set:
1771 1771 <addset
1772 1772 <spanset+ 0:1>,
1773 1773 <addset
1774 1774 <spanset+ 1:2>,
1775 1775 <spanset+ 2:3>>>
1776 1776 0
1777 1777 1
1778 1778 2
1779 1779 3
1780 1780
1781 1781 test variable isolation, variable placeholders are rewritten as string
1782 1782 then parsed and matched again as string. Check they do not leak too
1783 1783 far away.
1784 1784
1785 1785 $ echo 'injectparamasstring = max("$1")' >> .hg/hgrc
1786 1786 $ echo 'callinjection($1) = descendants(injectparamasstring)' >> .hg/hgrc
1787 1787 $ try 'callinjection(2:5)'
1788 1788 (func
1789 1789 ('symbol', 'callinjection')
1790 1790 (range
1791 1791 ('symbol', '2')
1792 1792 ('symbol', '5')))
1793 1793 * expanded:
1794 1794 (func
1795 1795 ('symbol', 'descendants')
1796 1796 (func
1797 1797 ('symbol', 'max')
1798 1798 ('string', '$1')))
1799 1799 abort: unknown revision '$1'!
1800 1800 [255]
1801 1801
1802 1802 test scope of alias expansion: 'universe' is expanded prior to 'shadowall(0)',
1803 1803 but 'all()' should never be substituded to '0()'.
1804 1804
1805 1805 $ echo 'universe = all()' >> .hg/hgrc
1806 1806 $ echo 'shadowall(all) = all and universe' >> .hg/hgrc
1807 1807 $ try 'shadowall(0)'
1808 1808 (func
1809 1809 ('symbol', 'shadowall')
1810 1810 ('symbol', '0'))
1811 1811 * expanded:
1812 1812 (and
1813 1813 ('symbol', '0')
1814 1814 (func
1815 1815 ('symbol', 'all')
1816 1816 None))
1817 1817 * set:
1818 1818 <filteredset
1819 1819 <baseset [0]>,
1820 1820 <spanset+ 0:9>>
1821 1821 0
1822 1822
1823 1823 test unknown reference:
1824 1824
1825 1825 $ try "unknownref(0)" --config 'revsetalias.unknownref($1)=$1:$2'
1826 1826 (func
1827 1827 ('symbol', 'unknownref')
1828 1828 ('symbol', '0'))
1829 1829 abort: failed to parse the definition of revset alias "unknownref": '$' not for alias arguments
1830 1830 [255]
1831 1831
1832 1832 $ hg debugrevspec --debug --config revsetalias.anotherbadone='branch(' "tip"
1833 1833 ('symbol', 'tip')
1834 1834 warning: failed to parse the definition of revset alias "anotherbadone": at 7: not a prefix: end
1835 1835 * set:
1836 1836 <baseset [9]>
1837 1837 9
1838 1838
1839 1839 $ try 'tip'
1840 1840 ('symbol', 'tip')
1841 1841 * set:
1842 1842 <baseset [9]>
1843 1843 9
1844 1844
1845 1845 $ hg debugrevspec --debug --config revsetalias.'bad name'='tip' "tip"
1846 1846 ('symbol', 'tip')
1847 1847 warning: failed to parse the declaration of revset alias "bad name": at 4: invalid token
1848 1848 * set:
1849 1849 <baseset [9]>
1850 1850 9
1851 1851 $ echo 'strictreplacing($1, $10) = $10 or desc("$1")' >> .hg/hgrc
1852 1852 $ try 'strictreplacing("foo", tip)'
1853 1853 (func
1854 1854 ('symbol', 'strictreplacing')
1855 1855 (list
1856 1856 ('string', 'foo')
1857 1857 ('symbol', 'tip')))
1858 1858 * expanded:
1859 1859 (or
1860 1860 ('symbol', 'tip')
1861 1861 (func
1862 1862 ('symbol', 'desc')
1863 1863 ('string', '$1')))
1864 1864 * set:
1865 1865 <addset
1866 1866 <baseset [9]>,
1867 1867 <filteredset
1868 1868 <fullreposet+ 0:9>,
1869 1869 <desc '$1'>>>
1870 1870 9
1871 1871
1872 1872 $ try 'd(2:5)'
1873 1873 (func
1874 1874 ('symbol', 'd')
1875 1875 (range
1876 1876 ('symbol', '2')
1877 1877 ('symbol', '5')))
1878 1878 * expanded:
1879 1879 (func
1880 1880 ('symbol', 'reverse')
1881 1881 (func
1882 1882 ('symbol', 'sort')
1883 1883 (list
1884 1884 (range
1885 1885 ('symbol', '2')
1886 1886 ('symbol', '5'))
1887 1887 ('symbol', 'date'))))
1888 1888 * set:
1889 1889 <baseset [4, 5, 3, 2]>
1890 1890 4
1891 1891 5
1892 1892 3
1893 1893 2
1894 1894 $ try 'rs(2 or 3, date)'
1895 1895 (func
1896 1896 ('symbol', 'rs')
1897 1897 (list
1898 1898 (or
1899 1899 ('symbol', '2')
1900 1900 ('symbol', '3'))
1901 1901 ('symbol', 'date')))
1902 1902 * expanded:
1903 1903 (func
1904 1904 ('symbol', 'reverse')
1905 1905 (func
1906 1906 ('symbol', 'sort')
1907 1907 (list
1908 1908 (or
1909 1909 ('symbol', '2')
1910 1910 ('symbol', '3'))
1911 1911 ('symbol', 'date'))))
1912 1912 * set:
1913 1913 <baseset [3, 2]>
1914 1914 3
1915 1915 2
1916 1916 $ try 'rs()'
1917 1917 (func
1918 1918 ('symbol', 'rs')
1919 1919 None)
1920 1920 hg: parse error: invalid number of arguments: 0
1921 1921 [255]
1922 1922 $ try 'rs(2)'
1923 1923 (func
1924 1924 ('symbol', 'rs')
1925 1925 ('symbol', '2'))
1926 1926 hg: parse error: invalid number of arguments: 1
1927 1927 [255]
1928 1928 $ try 'rs(2, data, 7)'
1929 1929 (func
1930 1930 ('symbol', 'rs')
1931 1931 (list
1932 1932 ('symbol', '2')
1933 1933 ('symbol', 'data')
1934 1934 ('symbol', '7')))
1935 1935 hg: parse error: invalid number of arguments: 3
1936 1936 [255]
1937 1937 $ try 'rs4(2 or 3, x, x, date)'
1938 1938 (func
1939 1939 ('symbol', 'rs4')
1940 1940 (list
1941 1941 (or
1942 1942 ('symbol', '2')
1943 1943 ('symbol', '3'))
1944 1944 ('symbol', 'x')
1945 1945 ('symbol', 'x')
1946 1946 ('symbol', 'date')))
1947 1947 * expanded:
1948 1948 (func
1949 1949 ('symbol', 'reverse')
1950 1950 (func
1951 1951 ('symbol', 'sort')
1952 1952 (list
1953 1953 (or
1954 1954 ('symbol', '2')
1955 1955 ('symbol', '3'))
1956 1956 ('symbol', 'date'))))
1957 1957 * set:
1958 1958 <baseset [3, 2]>
1959 1959 3
1960 1960 2
1961 1961
1962 1962 issue4553: check that revset aliases override existing hash prefix
1963 1963
1964 1964 $ hg log -qr e
1965 1965 6:e0cc66ef77e8
1966 1966
1967 1967 $ hg log -qr e --config revsetalias.e="all()"
1968 1968 0:2785f51eece5
1969 1969 1:d75937da8da0
1970 1970 2:5ed5505e9f1c
1971 1971 3:8528aa5637f2
1972 1972 4:2326846efdab
1973 1973 5:904fa392b941
1974 1974 6:e0cc66ef77e8
1975 1975 7:013af1973af4
1976 1976 8:d5d0dcbdc4d9
1977 1977 9:24286f4ae135
1978 1978
1979 1979 $ hg log -qr e: --config revsetalias.e="0"
1980 1980 0:2785f51eece5
1981 1981 1:d75937da8da0
1982 1982 2:5ed5505e9f1c
1983 1983 3:8528aa5637f2
1984 1984 4:2326846efdab
1985 1985 5:904fa392b941
1986 1986 6:e0cc66ef77e8
1987 1987 7:013af1973af4
1988 1988 8:d5d0dcbdc4d9
1989 1989 9:24286f4ae135
1990 1990
1991 1991 $ hg log -qr :e --config revsetalias.e="9"
1992 1992 0:2785f51eece5
1993 1993 1:d75937da8da0
1994 1994 2:5ed5505e9f1c
1995 1995 3:8528aa5637f2
1996 1996 4:2326846efdab
1997 1997 5:904fa392b941
1998 1998 6:e0cc66ef77e8
1999 1999 7:013af1973af4
2000 2000 8:d5d0dcbdc4d9
2001 2001 9:24286f4ae135
2002 2002
2003 2003 $ hg log -qr e:
2004 2004 6:e0cc66ef77e8
2005 2005 7:013af1973af4
2006 2006 8:d5d0dcbdc4d9
2007 2007 9:24286f4ae135
2008 2008
2009 2009 $ hg log -qr :e
2010 2010 0:2785f51eece5
2011 2011 1:d75937da8da0
2012 2012 2:5ed5505e9f1c
2013 2013 3:8528aa5637f2
2014 2014 4:2326846efdab
2015 2015 5:904fa392b941
2016 2016 6:e0cc66ef77e8
2017 2017
2018 2018 issue2549 - correct optimizations
2019 2019
2020 2020 $ try 'limit(1 or 2 or 3, 2) and not 2'
2021 2021 (and
2022 2022 (func
2023 2023 ('symbol', 'limit')
2024 2024 (list
2025 2025 (or
2026 2026 ('symbol', '1')
2027 2027 ('symbol', '2')
2028 2028 ('symbol', '3'))
2029 2029 ('symbol', '2')))
2030 2030 (not
2031 2031 ('symbol', '2')))
2032 2032 * set:
2033 2033 <filteredset
2034 2034 <baseset
2035 2035 <limit n=2, offset=0,
2036 2036 <fullreposet+ 0:9>,
2037 2037 <baseset [1, 2, 3]>>>,
2038 2038 <not
2039 2039 <baseset [2]>>>
2040 2040 1
2041 2041 $ try 'max(1 or 2) and not 2'
2042 2042 (and
2043 2043 (func
2044 2044 ('symbol', 'max')
2045 2045 (or
2046 2046 ('symbol', '1')
2047 2047 ('symbol', '2')))
2048 2048 (not
2049 2049 ('symbol', '2')))
2050 2050 * set:
2051 2051 <filteredset
2052 2052 <baseset
2053 2053 <max
2054 2054 <fullreposet+ 0:9>,
2055 2055 <baseset [1, 2]>>>,
2056 2056 <not
2057 2057 <baseset [2]>>>
2058 2058 $ try 'min(1 or 2) and not 1'
2059 2059 (and
2060 2060 (func
2061 2061 ('symbol', 'min')
2062 2062 (or
2063 2063 ('symbol', '1')
2064 2064 ('symbol', '2')))
2065 2065 (not
2066 2066 ('symbol', '1')))
2067 2067 * set:
2068 2068 <filteredset
2069 2069 <baseset
2070 2070 <min
2071 2071 <fullreposet+ 0:9>,
2072 2072 <baseset [1, 2]>>>,
2073 2073 <not
2074 2074 <baseset [1]>>>
2075 2075 $ try 'last(1 or 2, 1) and not 2'
2076 2076 (and
2077 2077 (func
2078 2078 ('symbol', 'last')
2079 2079 (list
2080 2080 (or
2081 2081 ('symbol', '1')
2082 2082 ('symbol', '2'))
2083 2083 ('symbol', '1')))
2084 2084 (not
2085 2085 ('symbol', '2')))
2086 2086 * set:
2087 2087 <filteredset
2088 2088 <baseset
2089 2089 <last n=1,
2090 2090 <fullreposet+ 0:9>,
2091 2091 <baseset [2, 1]>>>,
2092 2092 <not
2093 2093 <baseset [2]>>>
2094 2094
2095 2095 issue4289 - ordering of built-ins
2096 2096 $ hg log -M -q -r 3:2
2097 2097 3:8528aa5637f2
2098 2098 2:5ed5505e9f1c
2099 2099
2100 2100 test revsets started with 40-chars hash (issue3669)
2101 2101
2102 2102 $ ISSUE3669_TIP=`hg tip --template '{node}'`
2103 2103 $ hg log -r "${ISSUE3669_TIP}" --template '{rev}\n'
2104 2104 9
2105 2105 $ hg log -r "${ISSUE3669_TIP}^" --template '{rev}\n'
2106 2106 8
2107 2107
2108 2108 test or-ed indirect predicates (issue3775)
2109 2109
2110 2110 $ log '6 or 6^1' | sort
2111 2111 5
2112 2112 6
2113 2113 $ log '6^1 or 6' | sort
2114 2114 5
2115 2115 6
2116 2116 $ log '4 or 4~1' | sort
2117 2117 2
2118 2118 4
2119 2119 $ log '4~1 or 4' | sort
2120 2120 2
2121 2121 4
2122 2122 $ log '(0 or 2):(4 or 6) or 0 or 6' | sort
2123 2123 0
2124 2124 1
2125 2125 2
2126 2126 3
2127 2127 4
2128 2128 5
2129 2129 6
2130 2130 $ log '0 or 6 or (0 or 2):(4 or 6)' | sort
2131 2131 0
2132 2132 1
2133 2133 2
2134 2134 3
2135 2135 4
2136 2136 5
2137 2137 6
2138 2138
2139 2139 tests for 'remote()' predicate:
2140 2140 #. (csets in remote) (id) (remote)
2141 2141 1. less than local current branch "default"
2142 2142 2. same with local specified "default"
2143 2143 3. more than local specified specified
2144 2144
2145 2145 $ hg clone --quiet -U . ../remote3
2146 2146 $ cd ../remote3
2147 2147 $ hg update -q 7
2148 2148 $ echo r > r
2149 2149 $ hg ci -Aqm 10
2150 2150 $ log 'remote()'
2151 2151 7
2152 2152 $ log 'remote("a-b-c-")'
2153 2153 2
2154 2154 $ cd ../repo
2155 2155 $ log 'remote(".a.b.c.", "../remote3")'
2156 2156
2157 2157 tests for concatenation of strings/symbols by "##"
2158 2158
2159 2159 $ try "278 ## '5f5' ## 1ee ## 'ce5'"
2160 2160 (_concat
2161 2161 (_concat
2162 2162 (_concat
2163 2163 ('symbol', '278')
2164 2164 ('string', '5f5'))
2165 2165 ('symbol', '1ee'))
2166 2166 ('string', 'ce5'))
2167 2167 * concatenated:
2168 2168 ('string', '2785f51eece5')
2169 2169 * set:
2170 2170 <baseset [0]>
2171 2171 0
2172 2172
2173 2173 $ echo 'cat4($1, $2, $3, $4) = $1 ## $2 ## $3 ## $4' >> .hg/hgrc
2174 2174 $ try "cat4(278, '5f5', 1ee, 'ce5')"
2175 2175 (func
2176 2176 ('symbol', 'cat4')
2177 2177 (list
2178 2178 ('symbol', '278')
2179 2179 ('string', '5f5')
2180 2180 ('symbol', '1ee')
2181 2181 ('string', 'ce5')))
2182 2182 * expanded:
2183 2183 (_concat
2184 2184 (_concat
2185 2185 (_concat
2186 2186 ('symbol', '278')
2187 2187 ('string', '5f5'))
2188 2188 ('symbol', '1ee'))
2189 2189 ('string', 'ce5'))
2190 2190 * concatenated:
2191 2191 ('string', '2785f51eece5')
2192 2192 * set:
2193 2193 <baseset [0]>
2194 2194 0
2195 2195
2196 2196 (check concatenation in alias nesting)
2197 2197
2198 2198 $ echo 'cat2($1, $2) = $1 ## $2' >> .hg/hgrc
2199 2199 $ echo 'cat2x2($1, $2, $3, $4) = cat2($1 ## $2, $3 ## $4)' >> .hg/hgrc
2200 2200 $ log "cat2x2(278, '5f5', 1ee, 'ce5')"
2201 2201 0
2202 2202
2203 2203 (check operator priority)
2204 2204
2205 2205 $ echo 'cat2n2($1, $2, $3, $4) = $1 ## $2 or $3 ## $4~2' >> .hg/hgrc
2206 2206 $ log "cat2n2(2785f5, 1eece5, 24286f, 4ae135)"
2207 2207 0
2208 2208 4
2209 2209
2210 2210 $ cd ..
2211 2211
2212 2212 prepare repository that has "default" branches of multiple roots
2213 2213
2214 2214 $ hg init namedbranch
2215 2215 $ cd namedbranch
2216 2216
2217 2217 $ echo default0 >> a
2218 2218 $ hg ci -Aqm0
2219 2219 $ echo default1 >> a
2220 2220 $ hg ci -m1
2221 2221
2222 2222 $ hg branch -q stable
2223 2223 $ echo stable2 >> a
2224 2224 $ hg ci -m2
2225 2225 $ echo stable3 >> a
2226 2226 $ hg ci -m3
2227 2227
2228 2228 $ hg update -q null
2229 2229 $ echo default4 >> a
2230 2230 $ hg ci -Aqm4
2231 2231 $ echo default5 >> a
2232 2232 $ hg ci -m5
2233 2233
2234 2234 "null" revision belongs to "default" branch (issue4683)
2235 2235
2236 2236 $ log 'branch(null)'
2237 2237 0
2238 2238 1
2239 2239 4
2240 2240 5
2241 2241
2242 2242 "null" revision belongs to "default" branch, but it shouldn't appear in set
2243 2243 unless explicitly specified (issue4682)
2244 2244
2245 2245 $ log 'children(branch(default))'
2246 2246 1
2247 2247 2
2248 2248 5
2249 2249
2250 2250 $ cd ..
2251 2251
2252 2252 test author/desc/keyword in problematic encoding
2253 2253 # unicode: cp932:
2254 2254 # u30A2 0x83 0x41(= 'A')
2255 2255 # u30C2 0x83 0x61(= 'a')
2256 2256
2257 2257 $ hg init problematicencoding
2258 2258 $ cd problematicencoding
2259 2259
2260 2260 $ python > setup.sh <<EOF
2261 2261 > print u'''
2262 2262 > echo a > text
2263 2263 > hg add text
2264 2264 > hg --encoding utf-8 commit -u '\u30A2' -m none
2265 2265 > echo b > text
2266 2266 > hg --encoding utf-8 commit -u '\u30C2' -m none
2267 2267 > echo c > text
2268 2268 > hg --encoding utf-8 commit -u none -m '\u30A2'
2269 2269 > echo d > text
2270 2270 > hg --encoding utf-8 commit -u none -m '\u30C2'
2271 2271 > '''.encode('utf-8')
2272 2272 > EOF
2273 2273 $ sh < setup.sh
2274 2274
2275 2275 test in problematic encoding
2276 2276 $ python > test.sh <<EOF
2277 2277 > print u'''
2278 2278 > hg --encoding cp932 log --template '{rev}\\n' -r 'author(\u30A2)'
2279 2279 > echo ====
2280 2280 > hg --encoding cp932 log --template '{rev}\\n' -r 'author(\u30C2)'
2281 2281 > echo ====
2282 2282 > hg --encoding cp932 log --template '{rev}\\n' -r 'desc(\u30A2)'
2283 2283 > echo ====
2284 2284 > hg --encoding cp932 log --template '{rev}\\n' -r 'desc(\u30C2)'
2285 2285 > echo ====
2286 2286 > hg --encoding cp932 log --template '{rev}\\n' -r 'keyword(\u30A2)'
2287 2287 > echo ====
2288 2288 > hg --encoding cp932 log --template '{rev}\\n' -r 'keyword(\u30C2)'
2289 2289 > '''.encode('cp932')
2290 2290 > EOF
2291 2291 $ sh < test.sh
2292 2292 0
2293 2293 ====
2294 2294 1
2295 2295 ====
2296 2296 2
2297 2297 ====
2298 2298 3
2299 2299 ====
2300 2300 0
2301 2301 2
2302 2302 ====
2303 2303 1
2304 2304 3
2305 2305
2306 2306 test error message of bad revset
2307 2307 $ hg log -r 'foo\\'
2308 2308 hg: parse error at 3: syntax error in revset 'foo\\'
2309 2309 [255]
2310 2310
2311 2311 $ cd ..
2312 2312
2313 2313 Test that revset predicate of extension isn't loaded at failure of
2314 2314 loading it
2315 2315
2316 2316 $ cd repo
2317 2317
2318 2318 $ cat <<EOF > $TESTTMP/custompredicate.py
2319 2319 > from mercurial import error, registrar, revset
2320 2320 >
2321 2321 > revsetpredicate = registrar.revsetpredicate()
2322 2322 >
2323 2323 > @revsetpredicate('custom1()')
2324 2324 > def custom1(repo, subset, x):
2325 2325 > return revset.baseset([1])
2326 2326 >
2327 2327 > raise error.Abort('intentional failure of loading extension')
2328 2328 > EOF
2329 2329 $ cat <<EOF > .hg/hgrc
2330 2330 > [extensions]
2331 2331 > custompredicate = $TESTTMP/custompredicate.py
2332 2332 > EOF
2333 2333
2334 2334 $ hg debugrevspec "custom1()"
2335 2335 *** failed to import extension custompredicate from $TESTTMP/custompredicate.py: intentional failure of loading extension
2336 2336 hg: parse error: unknown identifier: custom1
2337 2337 [255]
2338 2338
2339 2339 $ cd ..
General Comments 0
You need to be logged in to leave comments. Login now