##// END OF EJS Templates
revset: added lazyset implementation to author revset...
Lucas Moscovicz -
r20448:92f6f2db default
parent child Browse files
Show More
@@ -1,2134 +1,2133 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 match as matchmod
12 12 from i18n import _
13 13 import encoding
14 14 import obsolete as obsmod
15 15 import pathutil
16 16 import repoview
17 17
18 18 def _revancestors(repo, revs, followfirst):
19 19 """Like revlog.ancestors(), but supports followfirst."""
20 20 cut = followfirst and 1 or None
21 21 cl = repo.changelog
22 22 visit = util.deque(revs)
23 23 seen = set([node.nullrev])
24 24 while visit:
25 25 for parent in cl.parentrevs(visit.popleft())[:cut]:
26 26 if parent not in seen:
27 27 visit.append(parent)
28 28 seen.add(parent)
29 29 yield parent
30 30
31 31 def _revdescendants(repo, revs, followfirst):
32 32 """Like revlog.descendants() but supports followfirst."""
33 33 cut = followfirst and 1 or None
34 34 cl = repo.changelog
35 35 first = min(revs)
36 36 nullrev = node.nullrev
37 37 if first == nullrev:
38 38 # Are there nodes with a null first parent and a non-null
39 39 # second one? Maybe. Do we care? Probably not.
40 40 for i in cl:
41 41 yield i
42 42 return
43 43
44 44 seen = set(revs)
45 45 for i in cl.revs(first + 1):
46 46 for x in cl.parentrevs(i)[:cut]:
47 47 if x != nullrev and x in seen:
48 48 seen.add(i)
49 49 yield i
50 50 break
51 51
52 52 def _revsbetween(repo, roots, heads):
53 53 """Return all paths between roots and heads, inclusive of both endpoint
54 54 sets."""
55 55 if not roots:
56 56 return baseset([])
57 57 parentrevs = repo.changelog.parentrevs
58 58 visit = baseset(heads)
59 59 reachable = set()
60 60 seen = {}
61 61 minroot = min(roots)
62 62 roots = set(roots)
63 63 # open-code the post-order traversal due to the tiny size of
64 64 # sys.getrecursionlimit()
65 65 while visit:
66 66 rev = visit.pop()
67 67 if rev in roots:
68 68 reachable.add(rev)
69 69 parents = parentrevs(rev)
70 70 seen[rev] = parents
71 71 for parent in parents:
72 72 if parent >= minroot and parent not in seen:
73 73 visit.append(parent)
74 74 if not reachable:
75 75 return baseset([])
76 76 for rev in sorted(seen):
77 77 for parent in seen[rev]:
78 78 if parent in reachable:
79 79 reachable.add(rev)
80 80 return baseset(sorted(reachable))
81 81
82 82 elements = {
83 83 "(": (20, ("group", 1, ")"), ("func", 1, ")")),
84 84 "~": (18, None, ("ancestor", 18)),
85 85 "^": (18, None, ("parent", 18), ("parentpost", 18)),
86 86 "-": (5, ("negate", 19), ("minus", 5)),
87 87 "::": (17, ("dagrangepre", 17), ("dagrange", 17),
88 88 ("dagrangepost", 17)),
89 89 "..": (17, ("dagrangepre", 17), ("dagrange", 17),
90 90 ("dagrangepost", 17)),
91 91 ":": (15, ("rangepre", 15), ("range", 15), ("rangepost", 15)),
92 92 "not": (10, ("not", 10)),
93 93 "!": (10, ("not", 10)),
94 94 "and": (5, None, ("and", 5)),
95 95 "&": (5, None, ("and", 5)),
96 96 "or": (4, None, ("or", 4)),
97 97 "|": (4, None, ("or", 4)),
98 98 "+": (4, None, ("or", 4)),
99 99 ",": (2, None, ("list", 2)),
100 100 ")": (0, None, None),
101 101 "symbol": (0, ("symbol",), None),
102 102 "string": (0, ("string",), None),
103 103 "end": (0, None, None),
104 104 }
105 105
106 106 keywords = set(['and', 'or', 'not'])
107 107
108 108 def tokenize(program):
109 109 '''
110 110 Parse a revset statement into a stream of tokens
111 111
112 112 Check that @ is a valid unquoted token character (issue3686):
113 113 >>> list(tokenize("@::"))
114 114 [('symbol', '@', 0), ('::', None, 1), ('end', None, 3)]
115 115
116 116 '''
117 117
118 118 pos, l = 0, len(program)
119 119 while pos < l:
120 120 c = program[pos]
121 121 if c.isspace(): # skip inter-token whitespace
122 122 pass
123 123 elif c == ':' and program[pos:pos + 2] == '::': # look ahead carefully
124 124 yield ('::', None, pos)
125 125 pos += 1 # skip ahead
126 126 elif c == '.' and program[pos:pos + 2] == '..': # look ahead carefully
127 127 yield ('..', None, pos)
128 128 pos += 1 # skip ahead
129 129 elif c in "():,-|&+!~^": # handle simple operators
130 130 yield (c, None, pos)
131 131 elif (c in '"\'' or c == 'r' and
132 132 program[pos:pos + 2] in ("r'", 'r"')): # handle quoted strings
133 133 if c == 'r':
134 134 pos += 1
135 135 c = program[pos]
136 136 decode = lambda x: x
137 137 else:
138 138 decode = lambda x: x.decode('string-escape')
139 139 pos += 1
140 140 s = pos
141 141 while pos < l: # find closing quote
142 142 d = program[pos]
143 143 if d == '\\': # skip over escaped characters
144 144 pos += 2
145 145 continue
146 146 if d == c:
147 147 yield ('string', decode(program[s:pos]), s)
148 148 break
149 149 pos += 1
150 150 else:
151 151 raise error.ParseError(_("unterminated string"), s)
152 152 # gather up a symbol/keyword
153 153 elif c.isalnum() or c in '._@' or ord(c) > 127:
154 154 s = pos
155 155 pos += 1
156 156 while pos < l: # find end of symbol
157 157 d = program[pos]
158 158 if not (d.isalnum() or d in "._/@" or ord(d) > 127):
159 159 break
160 160 if d == '.' and program[pos - 1] == '.': # special case for ..
161 161 pos -= 1
162 162 break
163 163 pos += 1
164 164 sym = program[s:pos]
165 165 if sym in keywords: # operator keywords
166 166 yield (sym, None, s)
167 167 else:
168 168 yield ('symbol', sym, s)
169 169 pos -= 1
170 170 else:
171 171 raise error.ParseError(_("syntax error"), pos)
172 172 pos += 1
173 173 yield ('end', None, pos)
174 174
175 175 # helpers
176 176
177 177 def getstring(x, err):
178 178 if x and (x[0] == 'string' or x[0] == 'symbol'):
179 179 return x[1]
180 180 raise error.ParseError(err)
181 181
182 182 def getlist(x):
183 183 if not x:
184 184 return []
185 185 if x[0] == 'list':
186 186 return getlist(x[1]) + [x[2]]
187 187 return [x]
188 188
189 189 def getargs(x, min, max, err):
190 190 l = getlist(x)
191 191 if len(l) < min or (max >= 0 and len(l) > max):
192 192 raise error.ParseError(err)
193 193 return l
194 194
195 195 def getset(repo, subset, x):
196 196 if not x:
197 197 raise error.ParseError(_("missing argument"))
198 198 return methods[x[0]](repo, subset, *x[1:])
199 199
200 200 def _getrevsource(repo, r):
201 201 extra = repo[r].extra()
202 202 for label in ('source', 'transplant_source', 'rebase_source'):
203 203 if label in extra:
204 204 try:
205 205 return repo[extra[label]].rev()
206 206 except error.RepoLookupError:
207 207 pass
208 208 return None
209 209
210 210 # operator methods
211 211
212 212 def stringset(repo, subset, x):
213 213 x = repo[x].rev()
214 214 if x == -1 and len(subset) == len(repo):
215 215 return baseset([-1])
216 216 if len(subset) == len(repo) or x in subset:
217 217 return baseset([x])
218 218 return baseset([])
219 219
220 220 def symbolset(repo, subset, x):
221 221 if x in symbols:
222 222 raise error.ParseError(_("can't use %s here") % x)
223 223 return stringset(repo, subset, x)
224 224
225 225 def rangeset(repo, subset, x, y):
226 226 cl = baseset(repo.changelog)
227 227 m = getset(repo, cl, x)
228 228 n = getset(repo, cl, y)
229 229
230 230 if not m or not n:
231 231 return baseset([])
232 232 m, n = m[0], n[-1]
233 233
234 234 if m < n:
235 235 r = range(m, n + 1)
236 236 else:
237 237 r = range(m, n - 1, -1)
238 238 s = subset.set()
239 239 return baseset([x for x in r if x in s])
240 240
241 241 def dagrange(repo, subset, x, y):
242 242 r = baseset(repo)
243 243 xs = _revsbetween(repo, getset(repo, r, x), getset(repo, r, y))
244 244 s = subset.set()
245 245 return baseset([r for r in xs if r in s])
246 246
247 247 def andset(repo, subset, x, y):
248 248 return getset(repo, getset(repo, subset, x), y)
249 249
250 250 def orset(repo, subset, x, y):
251 251 xl = getset(repo, subset, x)
252 252 yl = getset(repo, subset - xl, y)
253 253 return xl + yl
254 254
255 255 def notset(repo, subset, x):
256 256 return subset - getset(repo, subset, x)
257 257
258 258 def listset(repo, subset, a, b):
259 259 raise error.ParseError(_("can't use a list in this context"))
260 260
261 261 def func(repo, subset, a, b):
262 262 if a[0] == 'symbol' and a[1] in symbols:
263 263 return symbols[a[1]](repo, subset, b)
264 264 raise error.ParseError(_("not a function: %s") % a[1])
265 265
266 266 # functions
267 267
268 268 def adds(repo, subset, x):
269 269 """``adds(pattern)``
270 270 Changesets that add a file matching pattern.
271 271
272 272 The pattern without explicit kind like ``glob:`` is expected to be
273 273 relative to the current directory and match against a file or a
274 274 directory.
275 275 """
276 276 # i18n: "adds" is a keyword
277 277 pat = getstring(x, _("adds requires a pattern"))
278 278 return checkstatus(repo, subset, pat, 1)
279 279
280 280 def ancestor(repo, subset, x):
281 281 """``ancestor(*changeset)``
282 282 Greatest common ancestor of the changesets.
283 283
284 284 Accepts 0 or more changesets.
285 285 Will return empty list when passed no args.
286 286 Greatest common ancestor of a single changeset is that changeset.
287 287 """
288 288 # i18n: "ancestor" is a keyword
289 289 l = getlist(x)
290 290 rl = baseset(repo)
291 291 anc = None
292 292
293 293 # (getset(repo, rl, i) for i in l) generates a list of lists
294 294 rev = repo.changelog.rev
295 295 ancestor = repo.changelog.ancestor
296 296 node = repo.changelog.node
297 297 for revs in (getset(repo, rl, i) for i in l):
298 298 for r in revs:
299 299 if anc is None:
300 300 anc = r
301 301 else:
302 302 anc = rev(ancestor(node(anc), node(r)))
303 303
304 304 if anc is not None and anc in subset:
305 305 return baseset([anc])
306 306 return baseset([])
307 307
308 308 def _ancestors(repo, subset, x, followfirst=False):
309 309 args = getset(repo, baseset(repo), x)
310 310 if not args:
311 311 return baseset([])
312 312 s = set(_revancestors(repo, args, followfirst)) | set(args)
313 313 return baseset([r for r in subset if r in s])
314 314
315 315 def ancestors(repo, subset, x):
316 316 """``ancestors(set)``
317 317 Changesets that are ancestors of a changeset in set.
318 318 """
319 319 return _ancestors(repo, subset, x)
320 320
321 321 def _firstancestors(repo, subset, x):
322 322 # ``_firstancestors(set)``
323 323 # Like ``ancestors(set)`` but follows only the first parents.
324 324 return _ancestors(repo, subset, x, followfirst=True)
325 325
326 326 def ancestorspec(repo, subset, x, n):
327 327 """``set~n``
328 328 Changesets that are the Nth ancestor (first parents only) of a changeset
329 329 in set.
330 330 """
331 331 try:
332 332 n = int(n[1])
333 333 except (TypeError, ValueError):
334 334 raise error.ParseError(_("~ expects a number"))
335 335 ps = set()
336 336 cl = repo.changelog
337 337 for r in getset(repo, baseset(cl), x):
338 338 for i in range(n):
339 339 r = cl.parentrevs(r)[0]
340 340 ps.add(r)
341 341 return baseset([r for r in subset if r in ps])
342 342
343 343 def author(repo, subset, x):
344 344 """``author(string)``
345 345 Alias for ``user(string)``.
346 346 """
347 347 # i18n: "author" is a keyword
348 348 n = encoding.lower(getstring(x, _("author requires a string")))
349 349 kind, pattern, matcher = _substringmatcher(n)
350 return baseset([r for r in subset if
351 matcher(encoding.lower(repo[r].user()))])
350 return lazyset(subset, lambda x: matcher(encoding.lower(repo[x].user())))
352 351
353 352 def bisect(repo, subset, x):
354 353 """``bisect(string)``
355 354 Changesets marked in the specified bisect status:
356 355
357 356 - ``good``, ``bad``, ``skip``: csets explicitly marked as good/bad/skip
358 357 - ``goods``, ``bads`` : csets topologically good/bad
359 358 - ``range`` : csets taking part in the bisection
360 359 - ``pruned`` : csets that are goods, bads or skipped
361 360 - ``untested`` : csets whose fate is yet unknown
362 361 - ``ignored`` : csets ignored due to DAG topology
363 362 - ``current`` : the cset currently being bisected
364 363 """
365 364 # i18n: "bisect" is a keyword
366 365 status = getstring(x, _("bisect requires a string")).lower()
367 366 state = set(hbisect.get(repo, status))
368 367 return baseset([r for r in subset if r in state])
369 368
370 369 # Backward-compatibility
371 370 # - no help entry so that we do not advertise it any more
372 371 def bisected(repo, subset, x):
373 372 return bisect(repo, subset, x)
374 373
375 374 def bookmark(repo, subset, x):
376 375 """``bookmark([name])``
377 376 The named bookmark or all bookmarks.
378 377
379 378 If `name` starts with `re:`, the remainder of the name is treated as
380 379 a regular expression. To match a bookmark that actually starts with `re:`,
381 380 use the prefix `literal:`.
382 381 """
383 382 # i18n: "bookmark" is a keyword
384 383 args = getargs(x, 0, 1, _('bookmark takes one or no arguments'))
385 384 if args:
386 385 bm = getstring(args[0],
387 386 # i18n: "bookmark" is a keyword
388 387 _('the argument to bookmark must be a string'))
389 388 kind, pattern, matcher = _stringmatcher(bm)
390 389 if kind == 'literal':
391 390 bmrev = repo._bookmarks.get(bm, None)
392 391 if not bmrev:
393 392 raise util.Abort(_("bookmark '%s' does not exist") % bm)
394 393 bmrev = repo[bmrev].rev()
395 394 return baseset([r for r in subset if r == bmrev])
396 395 else:
397 396 matchrevs = set()
398 397 for name, bmrev in repo._bookmarks.iteritems():
399 398 if matcher(name):
400 399 matchrevs.add(bmrev)
401 400 if not matchrevs:
402 401 raise util.Abort(_("no bookmarks exist that match '%s'")
403 402 % pattern)
404 403 bmrevs = set()
405 404 for bmrev in matchrevs:
406 405 bmrevs.add(repo[bmrev].rev())
407 406 return subset & bmrevs
408 407
409 408 bms = set([repo[r].rev()
410 409 for r in repo._bookmarks.values()])
411 410 return baseset([r for r in subset if r in bms])
412 411
413 412 def branch(repo, subset, x):
414 413 """``branch(string or set)``
415 414 All changesets belonging to the given branch or the branches of the given
416 415 changesets.
417 416
418 417 If `string` starts with `re:`, the remainder of the name is treated as
419 418 a regular expression. To match a branch that actually starts with `re:`,
420 419 use the prefix `literal:`.
421 420 """
422 421 try:
423 422 b = getstring(x, '')
424 423 except error.ParseError:
425 424 # not a string, but another revspec, e.g. tip()
426 425 pass
427 426 else:
428 427 kind, pattern, matcher = _stringmatcher(b)
429 428 if kind == 'literal':
430 429 # note: falls through to the revspec case if no branch with
431 430 # this name exists
432 431 if pattern in repo.branchmap():
433 432 return lazyset(subset, lambda r: matcher(repo[r].branch()))
434 433 else:
435 434 return lazyset(subset, lambda r: matcher(repo[r].branch()))
436 435
437 436 s = getset(repo, baseset(repo), x)
438 437 b = set()
439 438 for r in s:
440 439 b.add(repo[r].branch())
441 440 s = s.set()
442 441 return lazyset(subset, lambda r: r in s or repo[r].branch() in b)
443 442
444 443 def bumped(repo, subset, x):
445 444 """``bumped()``
446 445 Mutable changesets marked as successors of public changesets.
447 446
448 447 Only non-public and non-obsolete changesets can be `bumped`.
449 448 """
450 449 # i18n: "bumped" is a keyword
451 450 getargs(x, 0, 0, _("bumped takes no arguments"))
452 451 bumped = obsmod.getrevs(repo, 'bumped')
453 452 return subset & bumped
454 453
455 454 def bundle(repo, subset, x):
456 455 """``bundle()``
457 456 Changesets in the bundle.
458 457
459 458 Bundle must be specified by the -R option."""
460 459
461 460 try:
462 461 bundlerevs = repo.changelog.bundlerevs
463 462 except AttributeError:
464 463 raise util.Abort(_("no bundle provided - specify with -R"))
465 464 return subset & bundlerevs
466 465
467 466 def checkstatus(repo, subset, pat, field):
468 467 m = None
469 468 s = []
470 469 hasset = matchmod.patkind(pat) == 'set'
471 470 fname = None
472 471 for r in subset:
473 472 c = repo[r]
474 473 if not m or hasset:
475 474 m = matchmod.match(repo.root, repo.getcwd(), [pat], ctx=c)
476 475 if not m.anypats() and len(m.files()) == 1:
477 476 fname = m.files()[0]
478 477 if fname is not None:
479 478 if fname not in c.files():
480 479 continue
481 480 else:
482 481 for f in c.files():
483 482 if m(f):
484 483 break
485 484 else:
486 485 continue
487 486 files = repo.status(c.p1().node(), c.node())[field]
488 487 if fname is not None:
489 488 if fname in files:
490 489 s.append(r)
491 490 else:
492 491 for f in files:
493 492 if m(f):
494 493 s.append(r)
495 494 break
496 495 return baseset(s)
497 496
498 497 def _children(repo, narrow, parentset):
499 498 cs = set()
500 499 if not parentset:
501 500 return baseset(cs)
502 501 pr = repo.changelog.parentrevs
503 502 minrev = min(parentset)
504 503 for r in narrow:
505 504 if r <= minrev:
506 505 continue
507 506 for p in pr(r):
508 507 if p in parentset:
509 508 cs.add(r)
510 509 return baseset(cs)
511 510
512 511 def children(repo, subset, x):
513 512 """``children(set)``
514 513 Child changesets of changesets in set.
515 514 """
516 515 s = getset(repo, baseset(repo), x).set()
517 516 cs = _children(repo, subset, s)
518 517 return subset & cs
519 518
520 519 def closed(repo, subset, x):
521 520 """``closed()``
522 521 Changeset is closed.
523 522 """
524 523 # i18n: "closed" is a keyword
525 524 getargs(x, 0, 0, _("closed takes no arguments"))
526 525 return baseset([r for r in subset if repo[r].closesbranch()])
527 526
528 527 def contains(repo, subset, x):
529 528 """``contains(pattern)``
530 529 Revision contains a file matching pattern. See :hg:`help patterns`
531 530 for information about file patterns.
532 531
533 532 The pattern without explicit kind like ``glob:`` is expected to be
534 533 relative to the current directory and match against a file exactly
535 534 for efficiency.
536 535 """
537 536 # i18n: "contains" is a keyword
538 537 pat = getstring(x, _("contains requires a pattern"))
539 538 s = []
540 539 if not matchmod.patkind(pat):
541 540 pat = pathutil.canonpath(repo.root, repo.getcwd(), pat)
542 541 for r in subset:
543 542 if pat in repo[r]:
544 543 s.append(r)
545 544 else:
546 545 m = None
547 546 for r in subset:
548 547 c = repo[r]
549 548 if not m or matchmod.patkind(pat) == 'set':
550 549 m = matchmod.match(repo.root, repo.getcwd(), [pat], ctx=c)
551 550 for f in c.manifest():
552 551 if m(f):
553 552 s.append(r)
554 553 break
555 554 return baseset(s)
556 555
557 556 def converted(repo, subset, x):
558 557 """``converted([id])``
559 558 Changesets converted from the given identifier in the old repository if
560 559 present, or all converted changesets if no identifier is specified.
561 560 """
562 561
563 562 # There is exactly no chance of resolving the revision, so do a simple
564 563 # string compare and hope for the best
565 564
566 565 rev = None
567 566 # i18n: "converted" is a keyword
568 567 l = getargs(x, 0, 1, _('converted takes one or no arguments'))
569 568 if l:
570 569 # i18n: "converted" is a keyword
571 570 rev = getstring(l[0], _('converted requires a revision'))
572 571
573 572 def _matchvalue(r):
574 573 source = repo[r].extra().get('convert_revision', None)
575 574 return source is not None and (rev is None or source.startswith(rev))
576 575
577 576 return baseset([r for r in subset if _matchvalue(r)])
578 577
579 578 def date(repo, subset, x):
580 579 """``date(interval)``
581 580 Changesets within the interval, see :hg:`help dates`.
582 581 """
583 582 # i18n: "date" is a keyword
584 583 ds = getstring(x, _("date requires a string"))
585 584 dm = util.matchdate(ds)
586 585 return baseset([r for r in subset if dm(repo[r].date()[0])])
587 586
588 587 def desc(repo, subset, x):
589 588 """``desc(string)``
590 589 Search commit message for string. The match is case-insensitive.
591 590 """
592 591 # i18n: "desc" is a keyword
593 592 ds = encoding.lower(getstring(x, _("desc requires a string")))
594 593 l = []
595 594 for r in subset:
596 595 c = repo[r]
597 596 if ds in encoding.lower(c.description()):
598 597 l.append(r)
599 598 return baseset(l)
600 599
601 600 def _descendants(repo, subset, x, followfirst=False):
602 601 args = getset(repo, baseset(repo), x)
603 602 if not args:
604 603 return baseset([])
605 604 s = set(_revdescendants(repo, args, followfirst)) | set(args)
606 605 return baseset([r for r in subset if r in s])
607 606
608 607 def descendants(repo, subset, x):
609 608 """``descendants(set)``
610 609 Changesets which are descendants of changesets in set.
611 610 """
612 611 return _descendants(repo, subset, x)
613 612
614 613 def _firstdescendants(repo, subset, x):
615 614 # ``_firstdescendants(set)``
616 615 # Like ``descendants(set)`` but follows only the first parents.
617 616 return _descendants(repo, subset, x, followfirst=True)
618 617
619 618 def destination(repo, subset, x):
620 619 """``destination([set])``
621 620 Changesets that were created by a graft, transplant or rebase operation,
622 621 with the given revisions specified as the source. Omitting the optional set
623 622 is the same as passing all().
624 623 """
625 624 if x is not None:
626 625 args = getset(repo, baseset(repo), x).set()
627 626 else:
628 627 args = getall(repo, baseset(repo), x).set()
629 628
630 629 dests = set()
631 630
632 631 # subset contains all of the possible destinations that can be returned, so
633 632 # iterate over them and see if their source(s) were provided in the args.
634 633 # Even if the immediate src of r is not in the args, src's source (or
635 634 # further back) may be. Scanning back further than the immediate src allows
636 635 # transitive transplants and rebases to yield the same results as transitive
637 636 # grafts.
638 637 for r in subset:
639 638 src = _getrevsource(repo, r)
640 639 lineage = None
641 640
642 641 while src is not None:
643 642 if lineage is None:
644 643 lineage = list()
645 644
646 645 lineage.append(r)
647 646
648 647 # The visited lineage is a match if the current source is in the arg
649 648 # set. Since every candidate dest is visited by way of iterating
650 649 # subset, any dests further back in the lineage will be tested by a
651 650 # different iteration over subset. Likewise, if the src was already
652 651 # selected, the current lineage can be selected without going back
653 652 # further.
654 653 if src in args or src in dests:
655 654 dests.update(lineage)
656 655 break
657 656
658 657 r = src
659 658 src = _getrevsource(repo, r)
660 659
661 660 return baseset([r for r in subset if r in dests])
662 661
663 662 def divergent(repo, subset, x):
664 663 """``divergent()``
665 664 Final successors of changesets with an alternative set of final successors.
666 665 """
667 666 # i18n: "divergent" is a keyword
668 667 getargs(x, 0, 0, _("divergent takes no arguments"))
669 668 divergent = obsmod.getrevs(repo, 'divergent')
670 669 return baseset([r for r in subset if r in divergent])
671 670
672 671 def draft(repo, subset, x):
673 672 """``draft()``
674 673 Changeset in draft phase."""
675 674 # i18n: "draft" is a keyword
676 675 getargs(x, 0, 0, _("draft takes no arguments"))
677 676 pc = repo._phasecache
678 677 return baseset([r for r in subset if pc.phase(repo, r) == phases.draft])
679 678
680 679 def extinct(repo, subset, x):
681 680 """``extinct()``
682 681 Obsolete changesets with obsolete descendants only.
683 682 """
684 683 # i18n: "extinct" is a keyword
685 684 getargs(x, 0, 0, _("extinct takes no arguments"))
686 685 extincts = obsmod.getrevs(repo, 'extinct')
687 686 return subset & extincts
688 687
689 688 def extra(repo, subset, x):
690 689 """``extra(label, [value])``
691 690 Changesets with the given label in the extra metadata, with the given
692 691 optional value.
693 692
694 693 If `value` starts with `re:`, the remainder of the value is treated as
695 694 a regular expression. To match a value that actually starts with `re:`,
696 695 use the prefix `literal:`.
697 696 """
698 697
699 698 # i18n: "extra" is a keyword
700 699 l = getargs(x, 1, 2, _('extra takes at least 1 and at most 2 arguments'))
701 700 # i18n: "extra" is a keyword
702 701 label = getstring(l[0], _('first argument to extra must be a string'))
703 702 value = None
704 703
705 704 if len(l) > 1:
706 705 # i18n: "extra" is a keyword
707 706 value = getstring(l[1], _('second argument to extra must be a string'))
708 707 kind, value, matcher = _stringmatcher(value)
709 708
710 709 def _matchvalue(r):
711 710 extra = repo[r].extra()
712 711 return label in extra and (value is None or matcher(extra[label]))
713 712
714 713 return baseset([r for r in subset if _matchvalue(r)])
715 714
716 715 def filelog(repo, subset, x):
717 716 """``filelog(pattern)``
718 717 Changesets connected to the specified filelog.
719 718
720 719 For performance reasons, ``filelog()`` does not show every changeset
721 720 that affects the requested file(s). See :hg:`help log` for details. For
722 721 a slower, more accurate result, use ``file()``.
723 722
724 723 The pattern without explicit kind like ``glob:`` is expected to be
725 724 relative to the current directory and match against a file exactly
726 725 for efficiency.
727 726 """
728 727
729 728 # i18n: "filelog" is a keyword
730 729 pat = getstring(x, _("filelog requires a pattern"))
731 730 s = set()
732 731
733 732 if not matchmod.patkind(pat):
734 733 f = pathutil.canonpath(repo.root, repo.getcwd(), pat)
735 734 fl = repo.file(f)
736 735 for fr in fl:
737 736 s.add(fl.linkrev(fr))
738 737 else:
739 738 m = matchmod.match(repo.root, repo.getcwd(), [pat], ctx=repo[None])
740 739 for f in repo[None]:
741 740 if m(f):
742 741 fl = repo.file(f)
743 742 for fr in fl:
744 743 s.add(fl.linkrev(fr))
745 744
746 745 return baseset([r for r in subset if r in s])
747 746
748 747 def first(repo, subset, x):
749 748 """``first(set, [n])``
750 749 An alias for limit().
751 750 """
752 751 return limit(repo, subset, x)
753 752
754 753 def _follow(repo, subset, x, name, followfirst=False):
755 754 l = getargs(x, 0, 1, _("%s takes no arguments or a filename") % name)
756 755 c = repo['.']
757 756 if l:
758 757 x = getstring(l[0], _("%s expected a filename") % name)
759 758 if x in c:
760 759 cx = c[x]
761 760 s = set(ctx.rev() for ctx in cx.ancestors(followfirst=followfirst))
762 761 # include the revision responsible for the most recent version
763 762 s.add(cx.linkrev())
764 763 else:
765 764 return baseset([])
766 765 else:
767 766 s = set(_revancestors(repo, [c.rev()], followfirst)) | set([c.rev()])
768 767
769 768 return baseset([r for r in subset if r in s])
770 769
771 770 def follow(repo, subset, x):
772 771 """``follow([file])``
773 772 An alias for ``::.`` (ancestors of the working copy's first parent).
774 773 If a filename is specified, the history of the given file is followed,
775 774 including copies.
776 775 """
777 776 return _follow(repo, subset, x, 'follow')
778 777
779 778 def _followfirst(repo, subset, x):
780 779 # ``followfirst([file])``
781 780 # Like ``follow([file])`` but follows only the first parent of
782 781 # every revision or file revision.
783 782 return _follow(repo, subset, x, '_followfirst', followfirst=True)
784 783
785 784 def getall(repo, subset, x):
786 785 """``all()``
787 786 All changesets, the same as ``0:tip``.
788 787 """
789 788 # i18n: "all" is a keyword
790 789 getargs(x, 0, 0, _("all takes no arguments"))
791 790 return subset
792 791
793 792 def grep(repo, subset, x):
794 793 """``grep(regex)``
795 794 Like ``keyword(string)`` but accepts a regex. Use ``grep(r'...')``
796 795 to ensure special escape characters are handled correctly. Unlike
797 796 ``keyword(string)``, the match is case-sensitive.
798 797 """
799 798 try:
800 799 # i18n: "grep" is a keyword
801 800 gr = re.compile(getstring(x, _("grep requires a string")))
802 801 except re.error, e:
803 802 raise error.ParseError(_('invalid match pattern: %s') % e)
804 803 l = []
805 804 for r in subset:
806 805 c = repo[r]
807 806 for e in c.files() + [c.user(), c.description()]:
808 807 if gr.search(e):
809 808 l.append(r)
810 809 break
811 810 return baseset(l)
812 811
813 812 def _matchfiles(repo, subset, x):
814 813 # _matchfiles takes a revset list of prefixed arguments:
815 814 #
816 815 # [p:foo, i:bar, x:baz]
817 816 #
818 817 # builds a match object from them and filters subset. Allowed
819 818 # prefixes are 'p:' for regular patterns, 'i:' for include
820 819 # patterns and 'x:' for exclude patterns. Use 'r:' prefix to pass
821 820 # a revision identifier, or the empty string to reference the
822 821 # working directory, from which the match object is
823 822 # initialized. Use 'd:' to set the default matching mode, default
824 823 # to 'glob'. At most one 'r:' and 'd:' argument can be passed.
825 824
826 825 # i18n: "_matchfiles" is a keyword
827 826 l = getargs(x, 1, -1, _("_matchfiles requires at least one argument"))
828 827 pats, inc, exc = [], [], []
829 828 hasset = False
830 829 rev, default = None, None
831 830 for arg in l:
832 831 # i18n: "_matchfiles" is a keyword
833 832 s = getstring(arg, _("_matchfiles requires string arguments"))
834 833 prefix, value = s[:2], s[2:]
835 834 if prefix == 'p:':
836 835 pats.append(value)
837 836 elif prefix == 'i:':
838 837 inc.append(value)
839 838 elif prefix == 'x:':
840 839 exc.append(value)
841 840 elif prefix == 'r:':
842 841 if rev is not None:
843 842 # i18n: "_matchfiles" is a keyword
844 843 raise error.ParseError(_('_matchfiles expected at most one '
845 844 'revision'))
846 845 rev = value
847 846 elif prefix == 'd:':
848 847 if default is not None:
849 848 # i18n: "_matchfiles" is a keyword
850 849 raise error.ParseError(_('_matchfiles expected at most one '
851 850 'default mode'))
852 851 default = value
853 852 else:
854 853 # i18n: "_matchfiles" is a keyword
855 854 raise error.ParseError(_('invalid _matchfiles prefix: %s') % prefix)
856 855 if not hasset and matchmod.patkind(value) == 'set':
857 856 hasset = True
858 857 if not default:
859 858 default = 'glob'
860 859 m = None
861 860 s = []
862 861 for r in subset:
863 862 c = repo[r]
864 863 if not m or (hasset and rev is None):
865 864 ctx = c
866 865 if rev is not None:
867 866 ctx = repo[rev or None]
868 867 m = matchmod.match(repo.root, repo.getcwd(), pats, include=inc,
869 868 exclude=exc, ctx=ctx, default=default)
870 869 for f in c.files():
871 870 if m(f):
872 871 s.append(r)
873 872 break
874 873 return baseset(s)
875 874
876 875 def hasfile(repo, subset, x):
877 876 """``file(pattern)``
878 877 Changesets affecting files matched by pattern.
879 878
880 879 For a faster but less accurate result, consider using ``filelog()``
881 880 instead.
882 881
883 882 This predicate uses ``glob:`` as the default kind of pattern.
884 883 """
885 884 # i18n: "file" is a keyword
886 885 pat = getstring(x, _("file requires a pattern"))
887 886 return _matchfiles(repo, subset, ('string', 'p:' + pat))
888 887
889 888 def head(repo, subset, x):
890 889 """``head()``
891 890 Changeset is a named branch head.
892 891 """
893 892 # i18n: "head" is a keyword
894 893 getargs(x, 0, 0, _("head takes no arguments"))
895 894 hs = set()
896 895 for b, ls in repo.branchmap().iteritems():
897 896 hs.update(repo[h].rev() for h in ls)
898 897 return baseset([r for r in subset if r in hs])
899 898
900 899 def heads(repo, subset, x):
901 900 """``heads(set)``
902 901 Members of set with no children in set.
903 902 """
904 903 s = getset(repo, subset, x)
905 904 ps = parents(repo, subset, x)
906 905 return s - ps
907 906
908 907 def hidden(repo, subset, x):
909 908 """``hidden()``
910 909 Hidden changesets.
911 910 """
912 911 # i18n: "hidden" is a keyword
913 912 getargs(x, 0, 0, _("hidden takes no arguments"))
914 913 hiddenrevs = repoview.filterrevs(repo, 'visible')
915 914 return subset & hiddenrevs
916 915
917 916 def keyword(repo, subset, x):
918 917 """``keyword(string)``
919 918 Search commit message, user name, and names of changed files for
920 919 string. The match is case-insensitive.
921 920 """
922 921 # i18n: "keyword" is a keyword
923 922 kw = encoding.lower(getstring(x, _("keyword requires a string")))
924 923
925 924 def matches(r):
926 925 c = repo[r]
927 926 return util.any(kw in encoding.lower(t) for t in c.files() + [c.user(),
928 927 c.description()])
929 928
930 929 return lazyset(subset, matches)
931 930
932 931 def limit(repo, subset, x):
933 932 """``limit(set, [n])``
934 933 First n members of set, defaulting to 1.
935 934 """
936 935 # i18n: "limit" is a keyword
937 936 l = getargs(x, 1, 2, _("limit requires one or two arguments"))
938 937 try:
939 938 lim = 1
940 939 if len(l) == 2:
941 940 # i18n: "limit" is a keyword
942 941 lim = int(getstring(l[1], _("limit requires a number")))
943 942 except (TypeError, ValueError):
944 943 # i18n: "limit" is a keyword
945 944 raise error.ParseError(_("limit expects a number"))
946 945 ss = subset.set()
947 946 os = getset(repo, baseset(repo), l[0])
948 947 bs = baseset([])
949 948 it = iter(os)
950 949 for x in xrange(lim):
951 950 try:
952 951 y = it.next()
953 952 if y in ss:
954 953 bs.append(y)
955 954 except (StopIteration):
956 955 break
957 956 return bs
958 957
959 958 def last(repo, subset, x):
960 959 """``last(set, [n])``
961 960 Last n members of set, defaulting to 1.
962 961 """
963 962 # i18n: "last" is a keyword
964 963 l = getargs(x, 1, 2, _("last requires one or two arguments"))
965 964 try:
966 965 lim = 1
967 966 if len(l) == 2:
968 967 # i18n: "last" is a keyword
969 968 lim = int(getstring(l[1], _("last requires a number")))
970 969 except (TypeError, ValueError):
971 970 # i18n: "last" is a keyword
972 971 raise error.ParseError(_("last expects a number"))
973 972 ss = subset.set()
974 973 os = getset(repo, baseset(repo), l[0])[-lim:]
975 974 return baseset([r for r in os if r in ss])
976 975
977 976 def maxrev(repo, subset, x):
978 977 """``max(set)``
979 978 Changeset with highest revision number in set.
980 979 """
981 980 os = getset(repo, baseset(repo), x)
982 981 if os:
983 982 m = max(os)
984 983 if m in subset:
985 984 return baseset([m])
986 985 return baseset([])
987 986
988 987 def merge(repo, subset, x):
989 988 """``merge()``
990 989 Changeset is a merge changeset.
991 990 """
992 991 # i18n: "merge" is a keyword
993 992 getargs(x, 0, 0, _("merge takes no arguments"))
994 993 cl = repo.changelog
995 994 return baseset([r for r in subset if cl.parentrevs(r)[1] != -1])
996 995
997 996 def branchpoint(repo, subset, x):
998 997 """``branchpoint()``
999 998 Changesets with more than one child.
1000 999 """
1001 1000 # i18n: "branchpoint" is a keyword
1002 1001 getargs(x, 0, 0, _("branchpoint takes no arguments"))
1003 1002 cl = repo.changelog
1004 1003 if not subset:
1005 1004 return baseset([])
1006 1005 baserev = min(subset)
1007 1006 parentscount = [0]*(len(repo) - baserev)
1008 1007 for r in cl.revs(start=baserev + 1):
1009 1008 for p in cl.parentrevs(r):
1010 1009 if p >= baserev:
1011 1010 parentscount[p - baserev] += 1
1012 1011 return baseset([r for r in subset if (parentscount[r - baserev] > 1)])
1013 1012
1014 1013 def minrev(repo, subset, x):
1015 1014 """``min(set)``
1016 1015 Changeset with lowest revision number in set.
1017 1016 """
1018 1017 os = getset(repo, baseset(repo), x)
1019 1018 if os:
1020 1019 m = min(os)
1021 1020 if m in subset:
1022 1021 return baseset([m])
1023 1022 return baseset([])
1024 1023
1025 1024 def modifies(repo, subset, x):
1026 1025 """``modifies(pattern)``
1027 1026 Changesets modifying files matched by pattern.
1028 1027
1029 1028 The pattern without explicit kind like ``glob:`` is expected to be
1030 1029 relative to the current directory and match against a file or a
1031 1030 directory.
1032 1031 """
1033 1032 # i18n: "modifies" is a keyword
1034 1033 pat = getstring(x, _("modifies requires a pattern"))
1035 1034 return checkstatus(repo, subset, pat, 0)
1036 1035
1037 1036 def node_(repo, subset, x):
1038 1037 """``id(string)``
1039 1038 Revision non-ambiguously specified by the given hex string prefix.
1040 1039 """
1041 1040 # i18n: "id" is a keyword
1042 1041 l = getargs(x, 1, 1, _("id requires one argument"))
1043 1042 # i18n: "id" is a keyword
1044 1043 n = getstring(l[0], _("id requires a string"))
1045 1044 if len(n) == 40:
1046 1045 rn = repo[n].rev()
1047 1046 else:
1048 1047 rn = None
1049 1048 pm = repo.changelog._partialmatch(n)
1050 1049 if pm is not None:
1051 1050 rn = repo.changelog.rev(pm)
1052 1051
1053 1052 return baseset([r for r in subset if r == rn])
1054 1053
1055 1054 def obsolete(repo, subset, x):
1056 1055 """``obsolete()``
1057 1056 Mutable changeset with a newer version."""
1058 1057 # i18n: "obsolete" is a keyword
1059 1058 getargs(x, 0, 0, _("obsolete takes no arguments"))
1060 1059 obsoletes = obsmod.getrevs(repo, 'obsolete')
1061 1060 return subset & obsoletes
1062 1061
1063 1062 def origin(repo, subset, x):
1064 1063 """``origin([set])``
1065 1064 Changesets that were specified as a source for the grafts, transplants or
1066 1065 rebases that created the given revisions. Omitting the optional set is the
1067 1066 same as passing all(). If a changeset created by these operations is itself
1068 1067 specified as a source for one of these operations, only the source changeset
1069 1068 for the first operation is selected.
1070 1069 """
1071 1070 if x is not None:
1072 1071 args = getset(repo, baseset(repo), x).set()
1073 1072 else:
1074 1073 args = getall(repo, baseset(repo), x).set()
1075 1074
1076 1075 def _firstsrc(rev):
1077 1076 src = _getrevsource(repo, rev)
1078 1077 if src is None:
1079 1078 return None
1080 1079
1081 1080 while True:
1082 1081 prev = _getrevsource(repo, src)
1083 1082
1084 1083 if prev is None:
1085 1084 return src
1086 1085 src = prev
1087 1086
1088 1087 o = set([_firstsrc(r) for r in args])
1089 1088 return baseset([r for r in subset if r in o])
1090 1089
1091 1090 def outgoing(repo, subset, x):
1092 1091 """``outgoing([path])``
1093 1092 Changesets not found in the specified destination repository, or the
1094 1093 default push location.
1095 1094 """
1096 1095 import hg # avoid start-up nasties
1097 1096 # i18n: "outgoing" is a keyword
1098 1097 l = getargs(x, 0, 1, _("outgoing takes one or no arguments"))
1099 1098 # i18n: "outgoing" is a keyword
1100 1099 dest = l and getstring(l[0], _("outgoing requires a repository path")) or ''
1101 1100 dest = repo.ui.expandpath(dest or 'default-push', dest or 'default')
1102 1101 dest, branches = hg.parseurl(dest)
1103 1102 revs, checkout = hg.addbranchrevs(repo, repo, branches, [])
1104 1103 if revs:
1105 1104 revs = [repo.lookup(rev) for rev in revs]
1106 1105 other = hg.peer(repo, {}, dest)
1107 1106 repo.ui.pushbuffer()
1108 1107 outgoing = discovery.findcommonoutgoing(repo, other, onlyheads=revs)
1109 1108 repo.ui.popbuffer()
1110 1109 cl = repo.changelog
1111 1110 o = set([cl.rev(r) for r in outgoing.missing])
1112 1111 return baseset([r for r in subset if r in o])
1113 1112
1114 1113 def p1(repo, subset, x):
1115 1114 """``p1([set])``
1116 1115 First parent of changesets in set, or the working directory.
1117 1116 """
1118 1117 if x is None:
1119 1118 p = repo[x].p1().rev()
1120 1119 return baseset([r for r in subset if r == p])
1121 1120
1122 1121 ps = set()
1123 1122 cl = repo.changelog
1124 1123 for r in getset(repo, baseset(repo), x):
1125 1124 ps.add(cl.parentrevs(r)[0])
1126 1125 return subset & ps
1127 1126
1128 1127 def p2(repo, subset, x):
1129 1128 """``p2([set])``
1130 1129 Second parent of changesets in set, or the working directory.
1131 1130 """
1132 1131 if x is None:
1133 1132 ps = repo[x].parents()
1134 1133 try:
1135 1134 p = ps[1].rev()
1136 1135 return baseset([r for r in subset if r == p])
1137 1136 except IndexError:
1138 1137 return baseset([])
1139 1138
1140 1139 ps = set()
1141 1140 cl = repo.changelog
1142 1141 for r in getset(repo, baseset(repo), x):
1143 1142 ps.add(cl.parentrevs(r)[1])
1144 1143 return subset & ps
1145 1144
1146 1145 def parents(repo, subset, x):
1147 1146 """``parents([set])``
1148 1147 The set of all parents for all changesets in set, or the working directory.
1149 1148 """
1150 1149 if x is None:
1151 1150 ps = tuple(p.rev() for p in repo[x].parents())
1152 1151 return subset & ps
1153 1152
1154 1153 ps = set()
1155 1154 cl = repo.changelog
1156 1155 for r in getset(repo, baseset(repo), x):
1157 1156 ps.update(cl.parentrevs(r))
1158 1157 return subset & ps
1159 1158
1160 1159 def parentspec(repo, subset, x, n):
1161 1160 """``set^0``
1162 1161 The set.
1163 1162 ``set^1`` (or ``set^``), ``set^2``
1164 1163 First or second parent, respectively, of all changesets in set.
1165 1164 """
1166 1165 try:
1167 1166 n = int(n[1])
1168 1167 if n not in (0, 1, 2):
1169 1168 raise ValueError
1170 1169 except (TypeError, ValueError):
1171 1170 raise error.ParseError(_("^ expects a number 0, 1, or 2"))
1172 1171 ps = set()
1173 1172 cl = repo.changelog
1174 1173 for r in getset(repo, baseset(cl), x):
1175 1174 if n == 0:
1176 1175 ps.add(r)
1177 1176 elif n == 1:
1178 1177 ps.add(cl.parentrevs(r)[0])
1179 1178 elif n == 2:
1180 1179 parents = cl.parentrevs(r)
1181 1180 if len(parents) > 1:
1182 1181 ps.add(parents[1])
1183 1182 return subset & ps
1184 1183
1185 1184 def present(repo, subset, x):
1186 1185 """``present(set)``
1187 1186 An empty set, if any revision in set isn't found; otherwise,
1188 1187 all revisions in set.
1189 1188
1190 1189 If any of specified revisions is not present in the local repository,
1191 1190 the query is normally aborted. But this predicate allows the query
1192 1191 to continue even in such cases.
1193 1192 """
1194 1193 try:
1195 1194 return getset(repo, subset, x)
1196 1195 except error.RepoLookupError:
1197 1196 return baseset([])
1198 1197
1199 1198 def public(repo, subset, x):
1200 1199 """``public()``
1201 1200 Changeset in public phase."""
1202 1201 # i18n: "public" is a keyword
1203 1202 getargs(x, 0, 0, _("public takes no arguments"))
1204 1203 pc = repo._phasecache
1205 1204 return baseset([r for r in subset if pc.phase(repo, r) == phases.public])
1206 1205
1207 1206 def remote(repo, subset, x):
1208 1207 """``remote([id [,path]])``
1209 1208 Local revision that corresponds to the given identifier in a
1210 1209 remote repository, if present. Here, the '.' identifier is a
1211 1210 synonym for the current local branch.
1212 1211 """
1213 1212
1214 1213 import hg # avoid start-up nasties
1215 1214 # i18n: "remote" is a keyword
1216 1215 l = getargs(x, 0, 2, _("remote takes one, two or no arguments"))
1217 1216
1218 1217 q = '.'
1219 1218 if len(l) > 0:
1220 1219 # i18n: "remote" is a keyword
1221 1220 q = getstring(l[0], _("remote requires a string id"))
1222 1221 if q == '.':
1223 1222 q = repo['.'].branch()
1224 1223
1225 1224 dest = ''
1226 1225 if len(l) > 1:
1227 1226 # i18n: "remote" is a keyword
1228 1227 dest = getstring(l[1], _("remote requires a repository path"))
1229 1228 dest = repo.ui.expandpath(dest or 'default')
1230 1229 dest, branches = hg.parseurl(dest)
1231 1230 revs, checkout = hg.addbranchrevs(repo, repo, branches, [])
1232 1231 if revs:
1233 1232 revs = [repo.lookup(rev) for rev in revs]
1234 1233 other = hg.peer(repo, {}, dest)
1235 1234 n = other.lookup(q)
1236 1235 if n in repo:
1237 1236 r = repo[n].rev()
1238 1237 if r in subset:
1239 1238 return baseset([r])
1240 1239 return baseset([])
1241 1240
1242 1241 def removes(repo, subset, x):
1243 1242 """``removes(pattern)``
1244 1243 Changesets which remove files matching pattern.
1245 1244
1246 1245 The pattern without explicit kind like ``glob:`` is expected to be
1247 1246 relative to the current directory and match against a file or a
1248 1247 directory.
1249 1248 """
1250 1249 # i18n: "removes" is a keyword
1251 1250 pat = getstring(x, _("removes requires a pattern"))
1252 1251 return checkstatus(repo, subset, pat, 2)
1253 1252
1254 1253 def rev(repo, subset, x):
1255 1254 """``rev(number)``
1256 1255 Revision with the given numeric identifier.
1257 1256 """
1258 1257 # i18n: "rev" is a keyword
1259 1258 l = getargs(x, 1, 1, _("rev requires one argument"))
1260 1259 try:
1261 1260 # i18n: "rev" is a keyword
1262 1261 l = int(getstring(l[0], _("rev requires a number")))
1263 1262 except (TypeError, ValueError):
1264 1263 # i18n: "rev" is a keyword
1265 1264 raise error.ParseError(_("rev expects a number"))
1266 1265 return baseset([r for r in subset if r == l])
1267 1266
1268 1267 def matching(repo, subset, x):
1269 1268 """``matching(revision [, field])``
1270 1269 Changesets in which a given set of fields match the set of fields in the
1271 1270 selected revision or set.
1272 1271
1273 1272 To match more than one field pass the list of fields to match separated
1274 1273 by spaces (e.g. ``author description``).
1275 1274
1276 1275 Valid fields are most regular revision fields and some special fields.
1277 1276
1278 1277 Regular revision fields are ``description``, ``author``, ``branch``,
1279 1278 ``date``, ``files``, ``phase``, ``parents``, ``substate``, ``user``
1280 1279 and ``diff``.
1281 1280 Note that ``author`` and ``user`` are synonyms. ``diff`` refers to the
1282 1281 contents of the revision. Two revisions matching their ``diff`` will
1283 1282 also match their ``files``.
1284 1283
1285 1284 Special fields are ``summary`` and ``metadata``:
1286 1285 ``summary`` matches the first line of the description.
1287 1286 ``metadata`` is equivalent to matching ``description user date``
1288 1287 (i.e. it matches the main metadata fields).
1289 1288
1290 1289 ``metadata`` is the default field which is used when no fields are
1291 1290 specified. You can match more than one field at a time.
1292 1291 """
1293 1292 # i18n: "matching" is a keyword
1294 1293 l = getargs(x, 1, 2, _("matching takes 1 or 2 arguments"))
1295 1294
1296 1295 revs = getset(repo, baseset(repo.changelog), l[0])
1297 1296
1298 1297 fieldlist = ['metadata']
1299 1298 if len(l) > 1:
1300 1299 fieldlist = getstring(l[1],
1301 1300 # i18n: "matching" is a keyword
1302 1301 _("matching requires a string "
1303 1302 "as its second argument")).split()
1304 1303
1305 1304 # Make sure that there are no repeated fields,
1306 1305 # expand the 'special' 'metadata' field type
1307 1306 # and check the 'files' whenever we check the 'diff'
1308 1307 fields = []
1309 1308 for field in fieldlist:
1310 1309 if field == 'metadata':
1311 1310 fields += ['user', 'description', 'date']
1312 1311 elif field == 'diff':
1313 1312 # a revision matching the diff must also match the files
1314 1313 # since matching the diff is very costly, make sure to
1315 1314 # also match the files first
1316 1315 fields += ['files', 'diff']
1317 1316 else:
1318 1317 if field == 'author':
1319 1318 field = 'user'
1320 1319 fields.append(field)
1321 1320 fields = set(fields)
1322 1321 if 'summary' in fields and 'description' in fields:
1323 1322 # If a revision matches its description it also matches its summary
1324 1323 fields.discard('summary')
1325 1324
1326 1325 # We may want to match more than one field
1327 1326 # Not all fields take the same amount of time to be matched
1328 1327 # Sort the selected fields in order of increasing matching cost
1329 1328 fieldorder = ['phase', 'parents', 'user', 'date', 'branch', 'summary',
1330 1329 'files', 'description', 'substate', 'diff']
1331 1330 def fieldkeyfunc(f):
1332 1331 try:
1333 1332 return fieldorder.index(f)
1334 1333 except ValueError:
1335 1334 # assume an unknown field is very costly
1336 1335 return len(fieldorder)
1337 1336 fields = list(fields)
1338 1337 fields.sort(key=fieldkeyfunc)
1339 1338
1340 1339 # Each field will be matched with its own "getfield" function
1341 1340 # which will be added to the getfieldfuncs array of functions
1342 1341 getfieldfuncs = []
1343 1342 _funcs = {
1344 1343 'user': lambda r: repo[r].user(),
1345 1344 'branch': lambda r: repo[r].branch(),
1346 1345 'date': lambda r: repo[r].date(),
1347 1346 'description': lambda r: repo[r].description(),
1348 1347 'files': lambda r: repo[r].files(),
1349 1348 'parents': lambda r: repo[r].parents(),
1350 1349 'phase': lambda r: repo[r].phase(),
1351 1350 'substate': lambda r: repo[r].substate,
1352 1351 'summary': lambda r: repo[r].description().splitlines()[0],
1353 1352 'diff': lambda r: list(repo[r].diff(git=True),)
1354 1353 }
1355 1354 for info in fields:
1356 1355 getfield = _funcs.get(info, None)
1357 1356 if getfield is None:
1358 1357 raise error.ParseError(
1359 1358 # i18n: "matching" is a keyword
1360 1359 _("unexpected field name passed to matching: %s") % info)
1361 1360 getfieldfuncs.append(getfield)
1362 1361 # convert the getfield array of functions into a "getinfo" function
1363 1362 # which returns an array of field values (or a single value if there
1364 1363 # is only one field to match)
1365 1364 getinfo = lambda r: [f(r) for f in getfieldfuncs]
1366 1365
1367 1366 matches = set()
1368 1367 for rev in revs:
1369 1368 target = getinfo(rev)
1370 1369 for r in subset:
1371 1370 match = True
1372 1371 for n, f in enumerate(getfieldfuncs):
1373 1372 if target[n] != f(r):
1374 1373 match = False
1375 1374 break
1376 1375 if match:
1377 1376 matches.add(r)
1378 1377 return baseset([r for r in subset if r in matches])
1379 1378
1380 1379 def reverse(repo, subset, x):
1381 1380 """``reverse(set)``
1382 1381 Reverse order of set.
1383 1382 """
1384 1383 l = getset(repo, subset, x)
1385 1384 l.reverse()
1386 1385 return l
1387 1386
1388 1387 def roots(repo, subset, x):
1389 1388 """``roots(set)``
1390 1389 Changesets in set with no parent changeset in set.
1391 1390 """
1392 1391 s = getset(repo, baseset(repo.changelog), x).set()
1393 1392 subset = baseset([r for r in subset if r in s])
1394 1393 cs = _children(repo, subset, s)
1395 1394 return subset - cs
1396 1395
1397 1396 def secret(repo, subset, x):
1398 1397 """``secret()``
1399 1398 Changeset in secret phase."""
1400 1399 # i18n: "secret" is a keyword
1401 1400 getargs(x, 0, 0, _("secret takes no arguments"))
1402 1401 pc = repo._phasecache
1403 1402 return baseset([r for r in subset if pc.phase(repo, r) == phases.secret])
1404 1403
1405 1404 def sort(repo, subset, x):
1406 1405 """``sort(set[, [-]key...])``
1407 1406 Sort set by keys. The default sort order is ascending, specify a key
1408 1407 as ``-key`` to sort in descending order.
1409 1408
1410 1409 The keys can be:
1411 1410
1412 1411 - ``rev`` for the revision number,
1413 1412 - ``branch`` for the branch name,
1414 1413 - ``desc`` for the commit message (description),
1415 1414 - ``user`` for user name (``author`` can be used as an alias),
1416 1415 - ``date`` for the commit date
1417 1416 """
1418 1417 # i18n: "sort" is a keyword
1419 1418 l = getargs(x, 1, 2, _("sort requires one or two arguments"))
1420 1419 keys = "rev"
1421 1420 if len(l) == 2:
1422 1421 # i18n: "sort" is a keyword
1423 1422 keys = getstring(l[1], _("sort spec must be a string"))
1424 1423
1425 1424 s = l[0]
1426 1425 keys = keys.split()
1427 1426 l = []
1428 1427 def invert(s):
1429 1428 return "".join(chr(255 - ord(c)) for c in s)
1430 1429 for r in getset(repo, subset, s):
1431 1430 c = repo[r]
1432 1431 e = []
1433 1432 for k in keys:
1434 1433 if k == 'rev':
1435 1434 e.append(r)
1436 1435 elif k == '-rev':
1437 1436 e.append(-r)
1438 1437 elif k == 'branch':
1439 1438 e.append(c.branch())
1440 1439 elif k == '-branch':
1441 1440 e.append(invert(c.branch()))
1442 1441 elif k == 'desc':
1443 1442 e.append(c.description())
1444 1443 elif k == '-desc':
1445 1444 e.append(invert(c.description()))
1446 1445 elif k in 'user author':
1447 1446 e.append(c.user())
1448 1447 elif k in '-user -author':
1449 1448 e.append(invert(c.user()))
1450 1449 elif k == 'date':
1451 1450 e.append(c.date()[0])
1452 1451 elif k == '-date':
1453 1452 e.append(-c.date()[0])
1454 1453 else:
1455 1454 raise error.ParseError(_("unknown sort key %r") % k)
1456 1455 e.append(r)
1457 1456 l.append(e)
1458 1457 l.sort()
1459 1458 return baseset([e[-1] for e in l])
1460 1459
1461 1460 def _stringmatcher(pattern):
1462 1461 """
1463 1462 accepts a string, possibly starting with 're:' or 'literal:' prefix.
1464 1463 returns the matcher name, pattern, and matcher function.
1465 1464 missing or unknown prefixes are treated as literal matches.
1466 1465
1467 1466 helper for tests:
1468 1467 >>> def test(pattern, *tests):
1469 1468 ... kind, pattern, matcher = _stringmatcher(pattern)
1470 1469 ... return (kind, pattern, [bool(matcher(t)) for t in tests])
1471 1470
1472 1471 exact matching (no prefix):
1473 1472 >>> test('abcdefg', 'abc', 'def', 'abcdefg')
1474 1473 ('literal', 'abcdefg', [False, False, True])
1475 1474
1476 1475 regex matching ('re:' prefix)
1477 1476 >>> test('re:a.+b', 'nomatch', 'fooadef', 'fooadefbar')
1478 1477 ('re', 'a.+b', [False, False, True])
1479 1478
1480 1479 force exact matches ('literal:' prefix)
1481 1480 >>> test('literal:re:foobar', 'foobar', 're:foobar')
1482 1481 ('literal', 're:foobar', [False, True])
1483 1482
1484 1483 unknown prefixes are ignored and treated as literals
1485 1484 >>> test('foo:bar', 'foo', 'bar', 'foo:bar')
1486 1485 ('literal', 'foo:bar', [False, False, True])
1487 1486 """
1488 1487 if pattern.startswith('re:'):
1489 1488 pattern = pattern[3:]
1490 1489 try:
1491 1490 regex = re.compile(pattern)
1492 1491 except re.error, e:
1493 1492 raise error.ParseError(_('invalid regular expression: %s')
1494 1493 % e)
1495 1494 return 're', pattern, regex.search
1496 1495 elif pattern.startswith('literal:'):
1497 1496 pattern = pattern[8:]
1498 1497 return 'literal', pattern, pattern.__eq__
1499 1498
1500 1499 def _substringmatcher(pattern):
1501 1500 kind, pattern, matcher = _stringmatcher(pattern)
1502 1501 if kind == 'literal':
1503 1502 matcher = lambda s: pattern in s
1504 1503 return kind, pattern, matcher
1505 1504
1506 1505 def tag(repo, subset, x):
1507 1506 """``tag([name])``
1508 1507 The specified tag by name, or all tagged revisions if no name is given.
1509 1508 """
1510 1509 # i18n: "tag" is a keyword
1511 1510 args = getargs(x, 0, 1, _("tag takes one or no arguments"))
1512 1511 cl = repo.changelog
1513 1512 if args:
1514 1513 pattern = getstring(args[0],
1515 1514 # i18n: "tag" is a keyword
1516 1515 _('the argument to tag must be a string'))
1517 1516 kind, pattern, matcher = _stringmatcher(pattern)
1518 1517 if kind == 'literal':
1519 1518 # avoid resolving all tags
1520 1519 tn = repo._tagscache.tags.get(pattern, None)
1521 1520 if tn is None:
1522 1521 raise util.Abort(_("tag '%s' does not exist") % pattern)
1523 1522 s = set([repo[tn].rev()])
1524 1523 else:
1525 1524 s = set([cl.rev(n) for t, n in repo.tagslist() if matcher(t)])
1526 1525 else:
1527 1526 s = set([cl.rev(n) for t, n in repo.tagslist() if t != 'tip'])
1528 1527 return subset & s
1529 1528
1530 1529 def tagged(repo, subset, x):
1531 1530 return tag(repo, subset, x)
1532 1531
1533 1532 def unstable(repo, subset, x):
1534 1533 """``unstable()``
1535 1534 Non-obsolete changesets with obsolete ancestors.
1536 1535 """
1537 1536 # i18n: "unstable" is a keyword
1538 1537 getargs(x, 0, 0, _("unstable takes no arguments"))
1539 1538 unstables = obsmod.getrevs(repo, 'unstable')
1540 1539 return subset & unstables
1541 1540
1542 1541
1543 1542 def user(repo, subset, x):
1544 1543 """``user(string)``
1545 1544 User name contains string. The match is case-insensitive.
1546 1545
1547 1546 If `string` starts with `re:`, the remainder of the string is treated as
1548 1547 a regular expression. To match a user that actually contains `re:`, use
1549 1548 the prefix `literal:`.
1550 1549 """
1551 1550 return author(repo, subset, x)
1552 1551
1553 1552 # for internal use
1554 1553 def _list(repo, subset, x):
1555 1554 s = getstring(x, "internal error")
1556 1555 if not s:
1557 1556 return baseset([])
1558 1557 ls = [repo[r].rev() for r in s.split('\0')]
1559 1558 s = subset.set()
1560 1559 return baseset([r for r in ls if r in s])
1561 1560
1562 1561 symbols = {
1563 1562 "adds": adds,
1564 1563 "all": getall,
1565 1564 "ancestor": ancestor,
1566 1565 "ancestors": ancestors,
1567 1566 "_firstancestors": _firstancestors,
1568 1567 "author": author,
1569 1568 "bisect": bisect,
1570 1569 "bisected": bisected,
1571 1570 "bookmark": bookmark,
1572 1571 "branch": branch,
1573 1572 "branchpoint": branchpoint,
1574 1573 "bumped": bumped,
1575 1574 "bundle": bundle,
1576 1575 "children": children,
1577 1576 "closed": closed,
1578 1577 "contains": contains,
1579 1578 "converted": converted,
1580 1579 "date": date,
1581 1580 "desc": desc,
1582 1581 "descendants": descendants,
1583 1582 "_firstdescendants": _firstdescendants,
1584 1583 "destination": destination,
1585 1584 "divergent": divergent,
1586 1585 "draft": draft,
1587 1586 "extinct": extinct,
1588 1587 "extra": extra,
1589 1588 "file": hasfile,
1590 1589 "filelog": filelog,
1591 1590 "first": first,
1592 1591 "follow": follow,
1593 1592 "_followfirst": _followfirst,
1594 1593 "grep": grep,
1595 1594 "head": head,
1596 1595 "heads": heads,
1597 1596 "hidden": hidden,
1598 1597 "id": node_,
1599 1598 "keyword": keyword,
1600 1599 "last": last,
1601 1600 "limit": limit,
1602 1601 "_matchfiles": _matchfiles,
1603 1602 "max": maxrev,
1604 1603 "merge": merge,
1605 1604 "min": minrev,
1606 1605 "modifies": modifies,
1607 1606 "obsolete": obsolete,
1608 1607 "origin": origin,
1609 1608 "outgoing": outgoing,
1610 1609 "p1": p1,
1611 1610 "p2": p2,
1612 1611 "parents": parents,
1613 1612 "present": present,
1614 1613 "public": public,
1615 1614 "remote": remote,
1616 1615 "removes": removes,
1617 1616 "rev": rev,
1618 1617 "reverse": reverse,
1619 1618 "roots": roots,
1620 1619 "sort": sort,
1621 1620 "secret": secret,
1622 1621 "matching": matching,
1623 1622 "tag": tag,
1624 1623 "tagged": tagged,
1625 1624 "user": user,
1626 1625 "unstable": unstable,
1627 1626 "_list": _list,
1628 1627 }
1629 1628
1630 1629 # symbols which can't be used for a DoS attack for any given input
1631 1630 # (e.g. those which accept regexes as plain strings shouldn't be included)
1632 1631 # functions that just return a lot of changesets (like all) don't count here
1633 1632 safesymbols = set([
1634 1633 "adds",
1635 1634 "all",
1636 1635 "ancestor",
1637 1636 "ancestors",
1638 1637 "_firstancestors",
1639 1638 "author",
1640 1639 "bisect",
1641 1640 "bisected",
1642 1641 "bookmark",
1643 1642 "branch",
1644 1643 "branchpoint",
1645 1644 "bumped",
1646 1645 "bundle",
1647 1646 "children",
1648 1647 "closed",
1649 1648 "converted",
1650 1649 "date",
1651 1650 "desc",
1652 1651 "descendants",
1653 1652 "_firstdescendants",
1654 1653 "destination",
1655 1654 "divergent",
1656 1655 "draft",
1657 1656 "extinct",
1658 1657 "extra",
1659 1658 "file",
1660 1659 "filelog",
1661 1660 "first",
1662 1661 "follow",
1663 1662 "_followfirst",
1664 1663 "head",
1665 1664 "heads",
1666 1665 "hidden",
1667 1666 "id",
1668 1667 "keyword",
1669 1668 "last",
1670 1669 "limit",
1671 1670 "_matchfiles",
1672 1671 "max",
1673 1672 "merge",
1674 1673 "min",
1675 1674 "modifies",
1676 1675 "obsolete",
1677 1676 "origin",
1678 1677 "outgoing",
1679 1678 "p1",
1680 1679 "p2",
1681 1680 "parents",
1682 1681 "present",
1683 1682 "public",
1684 1683 "remote",
1685 1684 "removes",
1686 1685 "rev",
1687 1686 "reverse",
1688 1687 "roots",
1689 1688 "sort",
1690 1689 "secret",
1691 1690 "matching",
1692 1691 "tag",
1693 1692 "tagged",
1694 1693 "user",
1695 1694 "unstable",
1696 1695 "_list",
1697 1696 ])
1698 1697
1699 1698 methods = {
1700 1699 "range": rangeset,
1701 1700 "dagrange": dagrange,
1702 1701 "string": stringset,
1703 1702 "symbol": symbolset,
1704 1703 "and": andset,
1705 1704 "or": orset,
1706 1705 "not": notset,
1707 1706 "list": listset,
1708 1707 "func": func,
1709 1708 "ancestor": ancestorspec,
1710 1709 "parent": parentspec,
1711 1710 "parentpost": p1,
1712 1711 }
1713 1712
1714 1713 def optimize(x, small):
1715 1714 if x is None:
1716 1715 return 0, x
1717 1716
1718 1717 smallbonus = 1
1719 1718 if small:
1720 1719 smallbonus = .5
1721 1720
1722 1721 op = x[0]
1723 1722 if op == 'minus':
1724 1723 return optimize(('and', x[1], ('not', x[2])), small)
1725 1724 elif op == 'dagrangepre':
1726 1725 return optimize(('func', ('symbol', 'ancestors'), x[1]), small)
1727 1726 elif op == 'dagrangepost':
1728 1727 return optimize(('func', ('symbol', 'descendants'), x[1]), small)
1729 1728 elif op == 'rangepre':
1730 1729 return optimize(('range', ('string', '0'), x[1]), small)
1731 1730 elif op == 'rangepost':
1732 1731 return optimize(('range', x[1], ('string', 'tip')), small)
1733 1732 elif op == 'negate':
1734 1733 return optimize(('string',
1735 1734 '-' + getstring(x[1], _("can't negate that"))), small)
1736 1735 elif op in 'string symbol negate':
1737 1736 return smallbonus, x # single revisions are small
1738 1737 elif op == 'and':
1739 1738 wa, ta = optimize(x[1], True)
1740 1739 wb, tb = optimize(x[2], True)
1741 1740 w = min(wa, wb)
1742 1741 if wa > wb:
1743 1742 return w, (op, tb, ta)
1744 1743 return w, (op, ta, tb)
1745 1744 elif op == 'or':
1746 1745 wa, ta = optimize(x[1], False)
1747 1746 wb, tb = optimize(x[2], False)
1748 1747 if wb < wa:
1749 1748 wb, wa = wa, wb
1750 1749 return max(wa, wb), (op, ta, tb)
1751 1750 elif op == 'not':
1752 1751 o = optimize(x[1], not small)
1753 1752 return o[0], (op, o[1])
1754 1753 elif op == 'parentpost':
1755 1754 o = optimize(x[1], small)
1756 1755 return o[0], (op, o[1])
1757 1756 elif op == 'group':
1758 1757 return optimize(x[1], small)
1759 1758 elif op in 'dagrange range list parent ancestorspec':
1760 1759 if op == 'parent':
1761 1760 # x^:y means (x^) : y, not x ^ (:y)
1762 1761 post = ('parentpost', x[1])
1763 1762 if x[2][0] == 'dagrangepre':
1764 1763 return optimize(('dagrange', post, x[2][1]), small)
1765 1764 elif x[2][0] == 'rangepre':
1766 1765 return optimize(('range', post, x[2][1]), small)
1767 1766
1768 1767 wa, ta = optimize(x[1], small)
1769 1768 wb, tb = optimize(x[2], small)
1770 1769 return wa + wb, (op, ta, tb)
1771 1770 elif op == 'func':
1772 1771 f = getstring(x[1], _("not a symbol"))
1773 1772 wa, ta = optimize(x[2], small)
1774 1773 if f in ("author branch closed date desc file grep keyword "
1775 1774 "outgoing user"):
1776 1775 w = 10 # slow
1777 1776 elif f in "modifies adds removes":
1778 1777 w = 30 # slower
1779 1778 elif f == "contains":
1780 1779 w = 100 # very slow
1781 1780 elif f == "ancestor":
1782 1781 w = 1 * smallbonus
1783 1782 elif f in "reverse limit first":
1784 1783 w = 0
1785 1784 elif f in "sort":
1786 1785 w = 10 # assume most sorts look at changelog
1787 1786 else:
1788 1787 w = 1
1789 1788 return w + wa, (op, x[1], ta)
1790 1789 return 1, x
1791 1790
1792 1791 _aliasarg = ('func', ('symbol', '_aliasarg'))
1793 1792 def _getaliasarg(tree):
1794 1793 """If tree matches ('func', ('symbol', '_aliasarg'), ('string', X))
1795 1794 return X, None otherwise.
1796 1795 """
1797 1796 if (len(tree) == 3 and tree[:2] == _aliasarg
1798 1797 and tree[2][0] == 'string'):
1799 1798 return tree[2][1]
1800 1799 return None
1801 1800
1802 1801 def _checkaliasarg(tree, known=None):
1803 1802 """Check tree contains no _aliasarg construct or only ones which
1804 1803 value is in known. Used to avoid alias placeholders injection.
1805 1804 """
1806 1805 if isinstance(tree, tuple):
1807 1806 arg = _getaliasarg(tree)
1808 1807 if arg is not None and (not known or arg not in known):
1809 1808 raise error.ParseError(_("not a function: %s") % '_aliasarg')
1810 1809 for t in tree:
1811 1810 _checkaliasarg(t, known)
1812 1811
1813 1812 class revsetalias(object):
1814 1813 funcre = re.compile('^([^(]+)\(([^)]+)\)$')
1815 1814 args = None
1816 1815
1817 1816 def __init__(self, name, value):
1818 1817 '''Aliases like:
1819 1818
1820 1819 h = heads(default)
1821 1820 b($1) = ancestors($1) - ancestors(default)
1822 1821 '''
1823 1822 m = self.funcre.search(name)
1824 1823 if m:
1825 1824 self.name = m.group(1)
1826 1825 self.tree = ('func', ('symbol', m.group(1)))
1827 1826 self.args = [x.strip() for x in m.group(2).split(',')]
1828 1827 for arg in self.args:
1829 1828 # _aliasarg() is an unknown symbol only used separate
1830 1829 # alias argument placeholders from regular strings.
1831 1830 value = value.replace(arg, '_aliasarg(%r)' % (arg,))
1832 1831 else:
1833 1832 self.name = name
1834 1833 self.tree = ('symbol', name)
1835 1834
1836 1835 self.replacement, pos = parse(value)
1837 1836 if pos != len(value):
1838 1837 raise error.ParseError(_('invalid token'), pos)
1839 1838 # Check for placeholder injection
1840 1839 _checkaliasarg(self.replacement, self.args)
1841 1840
1842 1841 def _getalias(aliases, tree):
1843 1842 """If tree looks like an unexpanded alias, return it. Return None
1844 1843 otherwise.
1845 1844 """
1846 1845 if isinstance(tree, tuple) and tree:
1847 1846 if tree[0] == 'symbol' and len(tree) == 2:
1848 1847 name = tree[1]
1849 1848 alias = aliases.get(name)
1850 1849 if alias and alias.args is None and alias.tree == tree:
1851 1850 return alias
1852 1851 if tree[0] == 'func' and len(tree) > 1:
1853 1852 if tree[1][0] == 'symbol' and len(tree[1]) == 2:
1854 1853 name = tree[1][1]
1855 1854 alias = aliases.get(name)
1856 1855 if alias and alias.args is not None and alias.tree == tree[:2]:
1857 1856 return alias
1858 1857 return None
1859 1858
1860 1859 def _expandargs(tree, args):
1861 1860 """Replace _aliasarg instances with the substitution value of the
1862 1861 same name in args, recursively.
1863 1862 """
1864 1863 if not tree or not isinstance(tree, tuple):
1865 1864 return tree
1866 1865 arg = _getaliasarg(tree)
1867 1866 if arg is not None:
1868 1867 return args[arg]
1869 1868 return tuple(_expandargs(t, args) for t in tree)
1870 1869
1871 1870 def _expandaliases(aliases, tree, expanding, cache):
1872 1871 """Expand aliases in tree, recursively.
1873 1872
1874 1873 'aliases' is a dictionary mapping user defined aliases to
1875 1874 revsetalias objects.
1876 1875 """
1877 1876 if not isinstance(tree, tuple):
1878 1877 # Do not expand raw strings
1879 1878 return tree
1880 1879 alias = _getalias(aliases, tree)
1881 1880 if alias is not None:
1882 1881 if alias in expanding:
1883 1882 raise error.ParseError(_('infinite expansion of revset alias "%s" '
1884 1883 'detected') % alias.name)
1885 1884 expanding.append(alias)
1886 1885 if alias.name not in cache:
1887 1886 cache[alias.name] = _expandaliases(aliases, alias.replacement,
1888 1887 expanding, cache)
1889 1888 result = cache[alias.name]
1890 1889 expanding.pop()
1891 1890 if alias.args is not None:
1892 1891 l = getlist(tree[2])
1893 1892 if len(l) != len(alias.args):
1894 1893 raise error.ParseError(
1895 1894 _('invalid number of arguments: %s') % len(l))
1896 1895 l = [_expandaliases(aliases, a, [], cache) for a in l]
1897 1896 result = _expandargs(result, dict(zip(alias.args, l)))
1898 1897 else:
1899 1898 result = tuple(_expandaliases(aliases, t, expanding, cache)
1900 1899 for t in tree)
1901 1900 return result
1902 1901
1903 1902 def findaliases(ui, tree):
1904 1903 _checkaliasarg(tree)
1905 1904 aliases = {}
1906 1905 for k, v in ui.configitems('revsetalias'):
1907 1906 alias = revsetalias(k, v)
1908 1907 aliases[alias.name] = alias
1909 1908 return _expandaliases(aliases, tree, [], {})
1910 1909
1911 1910 def parse(spec):
1912 1911 p = parser.parser(tokenize, elements)
1913 1912 return p.parse(spec)
1914 1913
1915 1914 def match(ui, spec):
1916 1915 if not spec:
1917 1916 raise error.ParseError(_("empty query"))
1918 1917 tree, pos = parse(spec)
1919 1918 if (pos != len(spec)):
1920 1919 raise error.ParseError(_("invalid token"), pos)
1921 1920 if ui:
1922 1921 tree = findaliases(ui, tree)
1923 1922 weight, tree = optimize(tree, True)
1924 1923 def mfunc(repo, subset):
1925 1924 return getset(repo, subset, tree)
1926 1925 return mfunc
1927 1926
1928 1927 def formatspec(expr, *args):
1929 1928 '''
1930 1929 This is a convenience function for using revsets internally, and
1931 1930 escapes arguments appropriately. Aliases are intentionally ignored
1932 1931 so that intended expression behavior isn't accidentally subverted.
1933 1932
1934 1933 Supported arguments:
1935 1934
1936 1935 %r = revset expression, parenthesized
1937 1936 %d = int(arg), no quoting
1938 1937 %s = string(arg), escaped and single-quoted
1939 1938 %b = arg.branch(), escaped and single-quoted
1940 1939 %n = hex(arg), single-quoted
1941 1940 %% = a literal '%'
1942 1941
1943 1942 Prefixing the type with 'l' specifies a parenthesized list of that type.
1944 1943
1945 1944 >>> formatspec('%r:: and %lr', '10 or 11', ("this()", "that()"))
1946 1945 '(10 or 11):: and ((this()) or (that()))'
1947 1946 >>> formatspec('%d:: and not %d::', 10, 20)
1948 1947 '10:: and not 20::'
1949 1948 >>> formatspec('%ld or %ld', [], [1])
1950 1949 "_list('') or 1"
1951 1950 >>> formatspec('keyword(%s)', 'foo\\xe9')
1952 1951 "keyword('foo\\\\xe9')"
1953 1952 >>> b = lambda: 'default'
1954 1953 >>> b.branch = b
1955 1954 >>> formatspec('branch(%b)', b)
1956 1955 "branch('default')"
1957 1956 >>> formatspec('root(%ls)', ['a', 'b', 'c', 'd'])
1958 1957 "root(_list('a\\x00b\\x00c\\x00d'))"
1959 1958 '''
1960 1959
1961 1960 def quote(s):
1962 1961 return repr(str(s))
1963 1962
1964 1963 def argtype(c, arg):
1965 1964 if c == 'd':
1966 1965 return str(int(arg))
1967 1966 elif c == 's':
1968 1967 return quote(arg)
1969 1968 elif c == 'r':
1970 1969 parse(arg) # make sure syntax errors are confined
1971 1970 return '(%s)' % arg
1972 1971 elif c == 'n':
1973 1972 return quote(node.hex(arg))
1974 1973 elif c == 'b':
1975 1974 return quote(arg.branch())
1976 1975
1977 1976 def listexp(s, t):
1978 1977 l = len(s)
1979 1978 if l == 0:
1980 1979 return "_list('')"
1981 1980 elif l == 1:
1982 1981 return argtype(t, s[0])
1983 1982 elif t == 'd':
1984 1983 return "_list('%s')" % "\0".join(str(int(a)) for a in s)
1985 1984 elif t == 's':
1986 1985 return "_list('%s')" % "\0".join(s)
1987 1986 elif t == 'n':
1988 1987 return "_list('%s')" % "\0".join(node.hex(a) for a in s)
1989 1988 elif t == 'b':
1990 1989 return "_list('%s')" % "\0".join(a.branch() for a in s)
1991 1990
1992 1991 m = l // 2
1993 1992 return '(%s or %s)' % (listexp(s[:m], t), listexp(s[m:], t))
1994 1993
1995 1994 ret = ''
1996 1995 pos = 0
1997 1996 arg = 0
1998 1997 while pos < len(expr):
1999 1998 c = expr[pos]
2000 1999 if c == '%':
2001 2000 pos += 1
2002 2001 d = expr[pos]
2003 2002 if d == '%':
2004 2003 ret += d
2005 2004 elif d in 'dsnbr':
2006 2005 ret += argtype(d, args[arg])
2007 2006 arg += 1
2008 2007 elif d == 'l':
2009 2008 # a list of some type
2010 2009 pos += 1
2011 2010 d = expr[pos]
2012 2011 ret += listexp(list(args[arg]), d)
2013 2012 arg += 1
2014 2013 else:
2015 2014 raise util.Abort('unexpected revspec format character %s' % d)
2016 2015 else:
2017 2016 ret += c
2018 2017 pos += 1
2019 2018
2020 2019 return ret
2021 2020
2022 2021 def prettyformat(tree):
2023 2022 def _prettyformat(tree, level, lines):
2024 2023 if not isinstance(tree, tuple) or tree[0] in ('string', 'symbol'):
2025 2024 lines.append((level, str(tree)))
2026 2025 else:
2027 2026 lines.append((level, '(%s' % tree[0]))
2028 2027 for s in tree[1:]:
2029 2028 _prettyformat(s, level + 1, lines)
2030 2029 lines[-1:] = [(lines[-1][0], lines[-1][1] + ')')]
2031 2030
2032 2031 lines = []
2033 2032 _prettyformat(tree, 0, lines)
2034 2033 output = '\n'.join((' '*l + s) for l, s in lines)
2035 2034 return output
2036 2035
2037 2036 def depth(tree):
2038 2037 if isinstance(tree, tuple):
2039 2038 return max(map(depth, tree)) + 1
2040 2039 else:
2041 2040 return 0
2042 2041
2043 2042 def funcsused(tree):
2044 2043 if not isinstance(tree, tuple) or tree[0] in ('string', 'symbol'):
2045 2044 return set()
2046 2045 else:
2047 2046 funcs = set()
2048 2047 for s in tree[1:]:
2049 2048 funcs |= funcsused(s)
2050 2049 if tree[0] == 'func':
2051 2050 funcs.add(tree[1][1])
2052 2051 return funcs
2053 2052
2054 2053 class baseset(list):
2055 2054 """Basic data structure that represents a revset and contains the basic
2056 2055 operation that it should be able to perform.
2057 2056 """
2058 2057 def __init__(self, data):
2059 2058 super(baseset, self).__init__(data)
2060 2059 self._set = None
2061 2060
2062 2061 def set(self):
2063 2062 if not self._set:
2064 2063 self._set = set(self)
2065 2064 return self._set
2066 2065
2067 2066 def __sub__(self, x):
2068 2067 if isinstance(x, baseset):
2069 2068 s = x.set()
2070 2069 else:
2071 2070 s = set(x)
2072 2071 return baseset(self.set() - s)
2073 2072
2074 2073 def __and__(self, x):
2075 2074 if isinstance(x, baseset):
2076 2075 x = x.set()
2077 2076 return baseset([y for y in self if y in x])
2078 2077
2079 2078 def __add__(self, x):
2080 2079 s = self.set()
2081 2080 l = [r for r in x if r not in s]
2082 2081 return baseset(list(self) + l)
2083 2082
2084 2083 class lazyset(object):
2085 2084 """Duck type for baseset class which iterates lazily over the revisions in
2086 2085 the subset and contains a function which tests for membership in the
2087 2086 revset
2088 2087 """
2089 2088 def __init__(self, subset, condition):
2090 2089 self._subset = subset
2091 2090 self._condition = condition
2092 2091
2093 2092 def __contains__(self, x):
2094 2093 return x in self._subset and self._condition(x)
2095 2094
2096 2095 def __iter__(self):
2097 2096 cond = self._condition
2098 2097 for x in self._subset:
2099 2098 if cond(x):
2100 2099 yield x
2101 2100
2102 2101 def __and__(self, x):
2103 2102 return lazyset(self, lambda r: r in x)
2104 2103
2105 2104 def __sub__(self, x):
2106 2105 return lazyset(self, lambda r: r not in x)
2107 2106
2108 2107 def __add__(self, x):
2109 2108 l = baseset([r for r in self])
2110 2109 return l + baseset(x)
2111 2110
2112 2111 def __len__(self):
2113 2112 # Basic implementation to be changed in future patches.
2114 2113 l = baseset([r for r in self])
2115 2114 return len(l)
2116 2115
2117 2116 def __getitem__(self, x):
2118 2117 # Basic implementation to be changed in future patches.
2119 2118 l = baseset([r for r in self])
2120 2119 return l[x]
2121 2120
2122 2121 def sort(self, reverse=False):
2123 2122 # Basic implementation to be changed in future patches.
2124 2123 self._subset = baseset(self._subset)
2125 2124 self._subset.sort(reverse=reverse)
2126 2125
2127 2126 def reverse(self):
2128 2127 self._subset.reverse()
2129 2128
2130 2129 def set(self):
2131 2130 return set([r for r in self])
2132 2131
2133 2132 # tell hggettext to extract docstrings from these functions:
2134 2133 i18nfunctions = symbols.values()
General Comments 0
You need to be logged in to leave comments. Login now