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