##// END OF EJS Templates
revset: fix traceback for bogus revisions in id(rev)...
Matt Harbison -
r16735:47b8ec0e stable
parent child Browse files
Show More
@@ -1,1493 +1,1497
1 # revset.py - revision set queries for mercurial
1 # revset.py - revision set queries for mercurial
2 #
2 #
3 # Copyright 2010 Matt Mackall <mpm@selenic.com>
3 # Copyright 2010 Matt Mackall <mpm@selenic.com>
4 #
4 #
5 # This software may be used and distributed according to the terms of the
5 # This software may be used and distributed according to the terms of the
6 # GNU General Public License version 2 or any later version.
6 # GNU General Public License version 2 or any later version.
7
7
8 import re
8 import re
9 import parser, util, error, discovery, hbisect, phases
9 import parser, util, error, discovery, hbisect, phases
10 import node
10 import node
11 import bookmarks as bookmarksmod
11 import bookmarks as bookmarksmod
12 import match as matchmod
12 import match as matchmod
13 from i18n import _
13 from i18n import _
14 import encoding
14 import encoding
15
15
16 def _revancestors(repo, revs, followfirst):
16 def _revancestors(repo, revs, followfirst):
17 """Like revlog.ancestors(), but supports followfirst."""
17 """Like revlog.ancestors(), but supports followfirst."""
18 cut = followfirst and 1 or None
18 cut = followfirst and 1 or None
19 cl = repo.changelog
19 cl = repo.changelog
20 visit = list(revs)
20 visit = list(revs)
21 seen = set([node.nullrev])
21 seen = set([node.nullrev])
22 while visit:
22 while visit:
23 for parent in cl.parentrevs(visit.pop(0))[:cut]:
23 for parent in cl.parentrevs(visit.pop(0))[:cut]:
24 if parent not in seen:
24 if parent not in seen:
25 visit.append(parent)
25 visit.append(parent)
26 seen.add(parent)
26 seen.add(parent)
27 yield parent
27 yield parent
28
28
29 def _revdescendants(repo, revs, followfirst):
29 def _revdescendants(repo, revs, followfirst):
30 """Like revlog.descendants() but supports followfirst."""
30 """Like revlog.descendants() but supports followfirst."""
31 cut = followfirst and 1 or None
31 cut = followfirst and 1 or None
32 cl = repo.changelog
32 cl = repo.changelog
33 first = min(revs)
33 first = min(revs)
34 nullrev = node.nullrev
34 nullrev = node.nullrev
35 if first == nullrev:
35 if first == nullrev:
36 # Are there nodes with a null first parent and a non-null
36 # Are there nodes with a null first parent and a non-null
37 # second one? Maybe. Do we care? Probably not.
37 # second one? Maybe. Do we care? Probably not.
38 for i in cl:
38 for i in cl:
39 yield i
39 yield i
40 return
40 return
41
41
42 seen = set(revs)
42 seen = set(revs)
43 for i in xrange(first + 1, len(cl)):
43 for i in xrange(first + 1, len(cl)):
44 for x in cl.parentrevs(i)[:cut]:
44 for x in cl.parentrevs(i)[:cut]:
45 if x != nullrev and x in seen:
45 if x != nullrev and x in seen:
46 seen.add(i)
46 seen.add(i)
47 yield i
47 yield i
48 break
48 break
49
49
50 elements = {
50 elements = {
51 "(": (20, ("group", 1, ")"), ("func", 1, ")")),
51 "(": (20, ("group", 1, ")"), ("func", 1, ")")),
52 "~": (18, None, ("ancestor", 18)),
52 "~": (18, None, ("ancestor", 18)),
53 "^": (18, None, ("parent", 18), ("parentpost", 18)),
53 "^": (18, None, ("parent", 18), ("parentpost", 18)),
54 "-": (5, ("negate", 19), ("minus", 5)),
54 "-": (5, ("negate", 19), ("minus", 5)),
55 "::": (17, ("dagrangepre", 17), ("dagrange", 17),
55 "::": (17, ("dagrangepre", 17), ("dagrange", 17),
56 ("dagrangepost", 17)),
56 ("dagrangepost", 17)),
57 "..": (17, ("dagrangepre", 17), ("dagrange", 17),
57 "..": (17, ("dagrangepre", 17), ("dagrange", 17),
58 ("dagrangepost", 17)),
58 ("dagrangepost", 17)),
59 ":": (15, ("rangepre", 15), ("range", 15), ("rangepost", 15)),
59 ":": (15, ("rangepre", 15), ("range", 15), ("rangepost", 15)),
60 "not": (10, ("not", 10)),
60 "not": (10, ("not", 10)),
61 "!": (10, ("not", 10)),
61 "!": (10, ("not", 10)),
62 "and": (5, None, ("and", 5)),
62 "and": (5, None, ("and", 5)),
63 "&": (5, None, ("and", 5)),
63 "&": (5, None, ("and", 5)),
64 "or": (4, None, ("or", 4)),
64 "or": (4, None, ("or", 4)),
65 "|": (4, None, ("or", 4)),
65 "|": (4, None, ("or", 4)),
66 "+": (4, None, ("or", 4)),
66 "+": (4, None, ("or", 4)),
67 ",": (2, None, ("list", 2)),
67 ",": (2, None, ("list", 2)),
68 ")": (0, None, None),
68 ")": (0, None, None),
69 "symbol": (0, ("symbol",), None),
69 "symbol": (0, ("symbol",), None),
70 "string": (0, ("string",), None),
70 "string": (0, ("string",), None),
71 "end": (0, None, None),
71 "end": (0, None, None),
72 }
72 }
73
73
74 keywords = set(['and', 'or', 'not'])
74 keywords = set(['and', 'or', 'not'])
75
75
76 def tokenize(program):
76 def tokenize(program):
77 pos, l = 0, len(program)
77 pos, l = 0, len(program)
78 while pos < l:
78 while pos < l:
79 c = program[pos]
79 c = program[pos]
80 if c.isspace(): # skip inter-token whitespace
80 if c.isspace(): # skip inter-token whitespace
81 pass
81 pass
82 elif c == ':' and program[pos:pos + 2] == '::': # look ahead carefully
82 elif c == ':' and program[pos:pos + 2] == '::': # look ahead carefully
83 yield ('::', None, pos)
83 yield ('::', None, pos)
84 pos += 1 # skip ahead
84 pos += 1 # skip ahead
85 elif c == '.' and program[pos:pos + 2] == '..': # look ahead carefully
85 elif c == '.' and program[pos:pos + 2] == '..': # look ahead carefully
86 yield ('..', None, pos)
86 yield ('..', None, pos)
87 pos += 1 # skip ahead
87 pos += 1 # skip ahead
88 elif c in "():,-|&+!~^": # handle simple operators
88 elif c in "():,-|&+!~^": # handle simple operators
89 yield (c, None, pos)
89 yield (c, None, pos)
90 elif (c in '"\'' or c == 'r' and
90 elif (c in '"\'' or c == 'r' and
91 program[pos:pos + 2] in ("r'", 'r"')): # handle quoted strings
91 program[pos:pos + 2] in ("r'", 'r"')): # handle quoted strings
92 if c == 'r':
92 if c == 'r':
93 pos += 1
93 pos += 1
94 c = program[pos]
94 c = program[pos]
95 decode = lambda x: x
95 decode = lambda x: x
96 else:
96 else:
97 decode = lambda x: x.decode('string-escape')
97 decode = lambda x: x.decode('string-escape')
98 pos += 1
98 pos += 1
99 s = pos
99 s = pos
100 while pos < l: # find closing quote
100 while pos < l: # find closing quote
101 d = program[pos]
101 d = program[pos]
102 if d == '\\': # skip over escaped characters
102 if d == '\\': # skip over escaped characters
103 pos += 2
103 pos += 2
104 continue
104 continue
105 if d == c:
105 if d == c:
106 yield ('string', decode(program[s:pos]), s)
106 yield ('string', decode(program[s:pos]), s)
107 break
107 break
108 pos += 1
108 pos += 1
109 else:
109 else:
110 raise error.ParseError(_("unterminated string"), s)
110 raise error.ParseError(_("unterminated string"), s)
111 elif c.isalnum() or c in '._' or ord(c) > 127: # gather up a symbol/keyword
111 elif c.isalnum() or c in '._' or ord(c) > 127: # gather up a symbol/keyword
112 s = pos
112 s = pos
113 pos += 1
113 pos += 1
114 while pos < l: # find end of symbol
114 while pos < l: # find end of symbol
115 d = program[pos]
115 d = program[pos]
116 if not (d.isalnum() or d in "._/" or ord(d) > 127):
116 if not (d.isalnum() or d in "._/" or ord(d) > 127):
117 break
117 break
118 if d == '.' and program[pos - 1] == '.': # special case for ..
118 if d == '.' and program[pos - 1] == '.': # special case for ..
119 pos -= 1
119 pos -= 1
120 break
120 break
121 pos += 1
121 pos += 1
122 sym = program[s:pos]
122 sym = program[s:pos]
123 if sym in keywords: # operator keywords
123 if sym in keywords: # operator keywords
124 yield (sym, None, s)
124 yield (sym, None, s)
125 else:
125 else:
126 yield ('symbol', sym, s)
126 yield ('symbol', sym, s)
127 pos -= 1
127 pos -= 1
128 else:
128 else:
129 raise error.ParseError(_("syntax error"), pos)
129 raise error.ParseError(_("syntax error"), pos)
130 pos += 1
130 pos += 1
131 yield ('end', None, pos)
131 yield ('end', None, pos)
132
132
133 # helpers
133 # helpers
134
134
135 def getstring(x, err):
135 def getstring(x, err):
136 if x and (x[0] == 'string' or x[0] == 'symbol'):
136 if x and (x[0] == 'string' or x[0] == 'symbol'):
137 return x[1]
137 return x[1]
138 raise error.ParseError(err)
138 raise error.ParseError(err)
139
139
140 def getlist(x):
140 def getlist(x):
141 if not x:
141 if not x:
142 return []
142 return []
143 if x[0] == 'list':
143 if x[0] == 'list':
144 return getlist(x[1]) + [x[2]]
144 return getlist(x[1]) + [x[2]]
145 return [x]
145 return [x]
146
146
147 def getargs(x, min, max, err):
147 def getargs(x, min, max, err):
148 l = getlist(x)
148 l = getlist(x)
149 if len(l) < min or (max >= 0 and len(l) > max):
149 if len(l) < min or (max >= 0 and len(l) > max):
150 raise error.ParseError(err)
150 raise error.ParseError(err)
151 return l
151 return l
152
152
153 def getset(repo, subset, x):
153 def getset(repo, subset, x):
154 if not x:
154 if not x:
155 raise error.ParseError(_("missing argument"))
155 raise error.ParseError(_("missing argument"))
156 return methods[x[0]](repo, subset, *x[1:])
156 return methods[x[0]](repo, subset, *x[1:])
157
157
158 # operator methods
158 # operator methods
159
159
160 def stringset(repo, subset, x):
160 def stringset(repo, subset, x):
161 x = repo[x].rev()
161 x = repo[x].rev()
162 if x == -1 and len(subset) == len(repo):
162 if x == -1 and len(subset) == len(repo):
163 return [-1]
163 return [-1]
164 if len(subset) == len(repo) or x in subset:
164 if len(subset) == len(repo) or x in subset:
165 return [x]
165 return [x]
166 return []
166 return []
167
167
168 def symbolset(repo, subset, x):
168 def symbolset(repo, subset, x):
169 if x in symbols:
169 if x in symbols:
170 raise error.ParseError(_("can't use %s here") % x)
170 raise error.ParseError(_("can't use %s here") % x)
171 return stringset(repo, subset, x)
171 return stringset(repo, subset, x)
172
172
173 def rangeset(repo, subset, x, y):
173 def rangeset(repo, subset, x, y):
174 m = getset(repo, subset, x)
174 m = getset(repo, subset, x)
175 if not m:
175 if not m:
176 m = getset(repo, range(len(repo)), x)
176 m = getset(repo, range(len(repo)), x)
177
177
178 n = getset(repo, subset, y)
178 n = getset(repo, subset, y)
179 if not n:
179 if not n:
180 n = getset(repo, range(len(repo)), y)
180 n = getset(repo, range(len(repo)), y)
181
181
182 if not m or not n:
182 if not m or not n:
183 return []
183 return []
184 m, n = m[0], n[-1]
184 m, n = m[0], n[-1]
185
185
186 if m < n:
186 if m < n:
187 r = range(m, n + 1)
187 r = range(m, n + 1)
188 else:
188 else:
189 r = range(m, n - 1, -1)
189 r = range(m, n - 1, -1)
190 s = set(subset)
190 s = set(subset)
191 return [x for x in r if x in s]
191 return [x for x in r if x in s]
192
192
193 def andset(repo, subset, x, y):
193 def andset(repo, subset, x, y):
194 return getset(repo, getset(repo, subset, x), y)
194 return getset(repo, getset(repo, subset, x), y)
195
195
196 def orset(repo, subset, x, y):
196 def orset(repo, subset, x, y):
197 xl = getset(repo, subset, x)
197 xl = getset(repo, subset, x)
198 s = set(xl)
198 s = set(xl)
199 yl = getset(repo, [r for r in subset if r not in s], y)
199 yl = getset(repo, [r for r in subset if r not in s], y)
200 return xl + yl
200 return xl + yl
201
201
202 def notset(repo, subset, x):
202 def notset(repo, subset, x):
203 s = set(getset(repo, subset, x))
203 s = set(getset(repo, subset, x))
204 return [r for r in subset if r not in s]
204 return [r for r in subset if r not in s]
205
205
206 def listset(repo, subset, a, b):
206 def listset(repo, subset, a, b):
207 raise error.ParseError(_("can't use a list in this context"))
207 raise error.ParseError(_("can't use a list in this context"))
208
208
209 def func(repo, subset, a, b):
209 def func(repo, subset, a, b):
210 if a[0] == 'symbol' and a[1] in symbols:
210 if a[0] == 'symbol' and a[1] in symbols:
211 return symbols[a[1]](repo, subset, b)
211 return symbols[a[1]](repo, subset, b)
212 raise error.ParseError(_("not a function: %s") % a[1])
212 raise error.ParseError(_("not a function: %s") % a[1])
213
213
214 # functions
214 # functions
215
215
216 def adds(repo, subset, x):
216 def adds(repo, subset, x):
217 """``adds(pattern)``
217 """``adds(pattern)``
218 Changesets that add a file matching pattern.
218 Changesets that add a file matching pattern.
219 """
219 """
220 # i18n: "adds" is a keyword
220 # i18n: "adds" is a keyword
221 pat = getstring(x, _("adds requires a pattern"))
221 pat = getstring(x, _("adds requires a pattern"))
222 return checkstatus(repo, subset, pat, 1)
222 return checkstatus(repo, subset, pat, 1)
223
223
224 def ancestor(repo, subset, x):
224 def ancestor(repo, subset, x):
225 """``ancestor(single, single)``
225 """``ancestor(single, single)``
226 Greatest common ancestor of the two changesets.
226 Greatest common ancestor of the two changesets.
227 """
227 """
228 # i18n: "ancestor" is a keyword
228 # i18n: "ancestor" is a keyword
229 l = getargs(x, 2, 2, _("ancestor requires two arguments"))
229 l = getargs(x, 2, 2, _("ancestor requires two arguments"))
230 r = range(len(repo))
230 r = range(len(repo))
231 a = getset(repo, r, l[0])
231 a = getset(repo, r, l[0])
232 b = getset(repo, r, l[1])
232 b = getset(repo, r, l[1])
233 if len(a) != 1 or len(b) != 1:
233 if len(a) != 1 or len(b) != 1:
234 # i18n: "ancestor" is a keyword
234 # i18n: "ancestor" is a keyword
235 raise error.ParseError(_("ancestor arguments must be single revisions"))
235 raise error.ParseError(_("ancestor arguments must be single revisions"))
236 an = [repo[a[0]].ancestor(repo[b[0]]).rev()]
236 an = [repo[a[0]].ancestor(repo[b[0]]).rev()]
237
237
238 return [r for r in an if r in subset]
238 return [r for r in an if r in subset]
239
239
240 def _ancestors(repo, subset, x, followfirst=False):
240 def _ancestors(repo, subset, x, followfirst=False):
241 args = getset(repo, range(len(repo)), x)
241 args = getset(repo, range(len(repo)), x)
242 if not args:
242 if not args:
243 return []
243 return []
244 s = set(_revancestors(repo, args, followfirst)) | set(args)
244 s = set(_revancestors(repo, args, followfirst)) | set(args)
245 return [r for r in subset if r in s]
245 return [r for r in subset if r in s]
246
246
247 def ancestors(repo, subset, x):
247 def ancestors(repo, subset, x):
248 """``ancestors(set)``
248 """``ancestors(set)``
249 Changesets that are ancestors of a changeset in set.
249 Changesets that are ancestors of a changeset in set.
250 """
250 """
251 return _ancestors(repo, subset, x)
251 return _ancestors(repo, subset, x)
252
252
253 def _firstancestors(repo, subset, x):
253 def _firstancestors(repo, subset, x):
254 # ``_firstancestors(set)``
254 # ``_firstancestors(set)``
255 # Like ``ancestors(set)`` but follows only the first parents.
255 # Like ``ancestors(set)`` but follows only the first parents.
256 return _ancestors(repo, subset, x, followfirst=True)
256 return _ancestors(repo, subset, x, followfirst=True)
257
257
258 def ancestorspec(repo, subset, x, n):
258 def ancestorspec(repo, subset, x, n):
259 """``set~n``
259 """``set~n``
260 Changesets that are the Nth ancestor (first parents only) of a changeset in set.
260 Changesets that are the Nth ancestor (first parents only) of a changeset in set.
261 """
261 """
262 try:
262 try:
263 n = int(n[1])
263 n = int(n[1])
264 except (TypeError, ValueError):
264 except (TypeError, ValueError):
265 raise error.ParseError(_("~ expects a number"))
265 raise error.ParseError(_("~ expects a number"))
266 ps = set()
266 ps = set()
267 cl = repo.changelog
267 cl = repo.changelog
268 for r in getset(repo, subset, x):
268 for r in getset(repo, subset, x):
269 for i in range(n):
269 for i in range(n):
270 r = cl.parentrevs(r)[0]
270 r = cl.parentrevs(r)[0]
271 ps.add(r)
271 ps.add(r)
272 return [r for r in subset if r in ps]
272 return [r for r in subset if r in ps]
273
273
274 def author(repo, subset, x):
274 def author(repo, subset, x):
275 """``author(string)``
275 """``author(string)``
276 Alias for ``user(string)``.
276 Alias for ``user(string)``.
277 """
277 """
278 # i18n: "author" is a keyword
278 # i18n: "author" is a keyword
279 n = encoding.lower(getstring(x, _("author requires a string")))
279 n = encoding.lower(getstring(x, _("author requires a string")))
280 return [r for r in subset if n in encoding.lower(repo[r].user())]
280 return [r for r in subset if n in encoding.lower(repo[r].user())]
281
281
282 def bisect(repo, subset, x):
282 def bisect(repo, subset, x):
283 """``bisect(string)``
283 """``bisect(string)``
284 Changesets marked in the specified bisect status:
284 Changesets marked in the specified bisect status:
285
285
286 - ``good``, ``bad``, ``skip``: csets explicitly marked as good/bad/skip
286 - ``good``, ``bad``, ``skip``: csets explicitly marked as good/bad/skip
287 - ``goods``, ``bads`` : csets topologicaly good/bad
287 - ``goods``, ``bads`` : csets topologicaly good/bad
288 - ``range`` : csets taking part in the bisection
288 - ``range`` : csets taking part in the bisection
289 - ``pruned`` : csets that are goods, bads or skipped
289 - ``pruned`` : csets that are goods, bads or skipped
290 - ``untested`` : csets whose fate is yet unknown
290 - ``untested`` : csets whose fate is yet unknown
291 - ``ignored`` : csets ignored due to DAG topology
291 - ``ignored`` : csets ignored due to DAG topology
292 """
292 """
293 status = getstring(x, _("bisect requires a string")).lower()
293 status = getstring(x, _("bisect requires a string")).lower()
294 state = set(hbisect.get(repo, status))
294 state = set(hbisect.get(repo, status))
295 return [r for r in subset if r in state]
295 return [r for r in subset if r in state]
296
296
297 # Backward-compatibility
297 # Backward-compatibility
298 # - no help entry so that we do not advertise it any more
298 # - no help entry so that we do not advertise it any more
299 def bisected(repo, subset, x):
299 def bisected(repo, subset, x):
300 return bisect(repo, subset, x)
300 return bisect(repo, subset, x)
301
301
302 def bookmark(repo, subset, x):
302 def bookmark(repo, subset, x):
303 """``bookmark([name])``
303 """``bookmark([name])``
304 The named bookmark or all bookmarks.
304 The named bookmark or all bookmarks.
305 """
305 """
306 # i18n: "bookmark" is a keyword
306 # i18n: "bookmark" is a keyword
307 args = getargs(x, 0, 1, _('bookmark takes one or no arguments'))
307 args = getargs(x, 0, 1, _('bookmark takes one or no arguments'))
308 if args:
308 if args:
309 bm = getstring(args[0],
309 bm = getstring(args[0],
310 # i18n: "bookmark" is a keyword
310 # i18n: "bookmark" is a keyword
311 _('the argument to bookmark must be a string'))
311 _('the argument to bookmark must be a string'))
312 bmrev = bookmarksmod.listbookmarks(repo).get(bm, None)
312 bmrev = bookmarksmod.listbookmarks(repo).get(bm, None)
313 if not bmrev:
313 if not bmrev:
314 raise util.Abort(_("bookmark '%s' does not exist") % bm)
314 raise util.Abort(_("bookmark '%s' does not exist") % bm)
315 bmrev = repo[bmrev].rev()
315 bmrev = repo[bmrev].rev()
316 return [r for r in subset if r == bmrev]
316 return [r for r in subset if r == bmrev]
317 bms = set([repo[r].rev()
317 bms = set([repo[r].rev()
318 for r in bookmarksmod.listbookmarks(repo).values()])
318 for r in bookmarksmod.listbookmarks(repo).values()])
319 return [r for r in subset if r in bms]
319 return [r for r in subset if r in bms]
320
320
321 def branch(repo, subset, x):
321 def branch(repo, subset, x):
322 """``branch(string or set)``
322 """``branch(string or set)``
323 All changesets belonging to the given branch or the branches of the given
323 All changesets belonging to the given branch or the branches of the given
324 changesets.
324 changesets.
325 """
325 """
326 try:
326 try:
327 b = getstring(x, '')
327 b = getstring(x, '')
328 if b in repo.branchmap():
328 if b in repo.branchmap():
329 return [r for r in subset if repo[r].branch() == b]
329 return [r for r in subset if repo[r].branch() == b]
330 except error.ParseError:
330 except error.ParseError:
331 # not a string, but another revspec, e.g. tip()
331 # not a string, but another revspec, e.g. tip()
332 pass
332 pass
333
333
334 s = getset(repo, range(len(repo)), x)
334 s = getset(repo, range(len(repo)), x)
335 b = set()
335 b = set()
336 for r in s:
336 for r in s:
337 b.add(repo[r].branch())
337 b.add(repo[r].branch())
338 s = set(s)
338 s = set(s)
339 return [r for r in subset if r in s or repo[r].branch() in b]
339 return [r for r in subset if r in s or repo[r].branch() in b]
340
340
341 def checkstatus(repo, subset, pat, field):
341 def checkstatus(repo, subset, pat, field):
342 m = None
342 m = None
343 s = []
343 s = []
344 hasset = matchmod.patkind(pat) == 'set'
344 hasset = matchmod.patkind(pat) == 'set'
345 fname = None
345 fname = None
346 for r in subset:
346 for r in subset:
347 c = repo[r]
347 c = repo[r]
348 if not m or hasset:
348 if not m or hasset:
349 m = matchmod.match(repo.root, repo.getcwd(), [pat], ctx=c)
349 m = matchmod.match(repo.root, repo.getcwd(), [pat], ctx=c)
350 if not m.anypats() and len(m.files()) == 1:
350 if not m.anypats() and len(m.files()) == 1:
351 fname = m.files()[0]
351 fname = m.files()[0]
352 if fname is not None:
352 if fname is not None:
353 if fname not in c.files():
353 if fname not in c.files():
354 continue
354 continue
355 else:
355 else:
356 for f in c.files():
356 for f in c.files():
357 if m(f):
357 if m(f):
358 break
358 break
359 else:
359 else:
360 continue
360 continue
361 files = repo.status(c.p1().node(), c.node())[field]
361 files = repo.status(c.p1().node(), c.node())[field]
362 if fname is not None:
362 if fname is not None:
363 if fname in files:
363 if fname in files:
364 s.append(r)
364 s.append(r)
365 else:
365 else:
366 for f in files:
366 for f in files:
367 if m(f):
367 if m(f):
368 s.append(r)
368 s.append(r)
369 break
369 break
370 return s
370 return s
371
371
372 def _children(repo, narrow, parentset):
372 def _children(repo, narrow, parentset):
373 cs = set()
373 cs = set()
374 pr = repo.changelog.parentrevs
374 pr = repo.changelog.parentrevs
375 for r in narrow:
375 for r in narrow:
376 for p in pr(r):
376 for p in pr(r):
377 if p in parentset:
377 if p in parentset:
378 cs.add(r)
378 cs.add(r)
379 return cs
379 return cs
380
380
381 def children(repo, subset, x):
381 def children(repo, subset, x):
382 """``children(set)``
382 """``children(set)``
383 Child changesets of changesets in set.
383 Child changesets of changesets in set.
384 """
384 """
385 s = set(getset(repo, range(len(repo)), x))
385 s = set(getset(repo, range(len(repo)), x))
386 cs = _children(repo, subset, s)
386 cs = _children(repo, subset, s)
387 return [r for r in subset if r in cs]
387 return [r for r in subset if r in cs]
388
388
389 def closed(repo, subset, x):
389 def closed(repo, subset, x):
390 """``closed()``
390 """``closed()``
391 Changeset is closed.
391 Changeset is closed.
392 """
392 """
393 # i18n: "closed" is a keyword
393 # i18n: "closed" is a keyword
394 getargs(x, 0, 0, _("closed takes no arguments"))
394 getargs(x, 0, 0, _("closed takes no arguments"))
395 return [r for r in subset if repo[r].extra().get('close')]
395 return [r for r in subset if repo[r].extra().get('close')]
396
396
397 def contains(repo, subset, x):
397 def contains(repo, subset, x):
398 """``contains(pattern)``
398 """``contains(pattern)``
399 Revision contains a file matching pattern. See :hg:`help patterns`
399 Revision contains a file matching pattern. See :hg:`help patterns`
400 for information about file patterns.
400 for information about file patterns.
401 """
401 """
402 # i18n: "contains" is a keyword
402 # i18n: "contains" is a keyword
403 pat = getstring(x, _("contains requires a pattern"))
403 pat = getstring(x, _("contains requires a pattern"))
404 m = None
404 m = None
405 s = []
405 s = []
406 if not matchmod.patkind(pat):
406 if not matchmod.patkind(pat):
407 for r in subset:
407 for r in subset:
408 if pat in repo[r]:
408 if pat in repo[r]:
409 s.append(r)
409 s.append(r)
410 else:
410 else:
411 for r in subset:
411 for r in subset:
412 c = repo[r]
412 c = repo[r]
413 if not m or matchmod.patkind(pat) == 'set':
413 if not m or matchmod.patkind(pat) == 'set':
414 m = matchmod.match(repo.root, repo.getcwd(), [pat], ctx=c)
414 m = matchmod.match(repo.root, repo.getcwd(), [pat], ctx=c)
415 for f in c.manifest():
415 for f in c.manifest():
416 if m(f):
416 if m(f):
417 s.append(r)
417 s.append(r)
418 break
418 break
419 return s
419 return s
420
420
421 def date(repo, subset, x):
421 def date(repo, subset, x):
422 """``date(interval)``
422 """``date(interval)``
423 Changesets within the interval, see :hg:`help dates`.
423 Changesets within the interval, see :hg:`help dates`.
424 """
424 """
425 # i18n: "date" is a keyword
425 # i18n: "date" is a keyword
426 ds = getstring(x, _("date requires a string"))
426 ds = getstring(x, _("date requires a string"))
427 dm = util.matchdate(ds)
427 dm = util.matchdate(ds)
428 return [r for r in subset if dm(repo[r].date()[0])]
428 return [r for r in subset if dm(repo[r].date()[0])]
429
429
430 def desc(repo, subset, x):
430 def desc(repo, subset, x):
431 """``desc(string)``
431 """``desc(string)``
432 Search commit message for string. The match is case-insensitive.
432 Search commit message for string. The match is case-insensitive.
433 """
433 """
434 # i18n: "desc" is a keyword
434 # i18n: "desc" is a keyword
435 ds = encoding.lower(getstring(x, _("desc requires a string")))
435 ds = encoding.lower(getstring(x, _("desc requires a string")))
436 l = []
436 l = []
437 for r in subset:
437 for r in subset:
438 c = repo[r]
438 c = repo[r]
439 if ds in encoding.lower(c.description()):
439 if ds in encoding.lower(c.description()):
440 l.append(r)
440 l.append(r)
441 return l
441 return l
442
442
443 def _descendants(repo, subset, x, followfirst=False):
443 def _descendants(repo, subset, x, followfirst=False):
444 args = getset(repo, range(len(repo)), x)
444 args = getset(repo, range(len(repo)), x)
445 if not args:
445 if not args:
446 return []
446 return []
447 s = set(_revdescendants(repo, args, followfirst)) | set(args)
447 s = set(_revdescendants(repo, args, followfirst)) | set(args)
448 return [r for r in subset if r in s]
448 return [r for r in subset if r in s]
449
449
450 def descendants(repo, subset, x):
450 def descendants(repo, subset, x):
451 """``descendants(set)``
451 """``descendants(set)``
452 Changesets which are descendants of changesets in set.
452 Changesets which are descendants of changesets in set.
453 """
453 """
454 return _descendants(repo, subset, x)
454 return _descendants(repo, subset, x)
455
455
456 def _firstdescendants(repo, subset, x):
456 def _firstdescendants(repo, subset, x):
457 # ``_firstdescendants(set)``
457 # ``_firstdescendants(set)``
458 # Like ``descendants(set)`` but follows only the first parents.
458 # Like ``descendants(set)`` but follows only the first parents.
459 return _descendants(repo, subset, x, followfirst=True)
459 return _descendants(repo, subset, x, followfirst=True)
460
460
461 def draft(repo, subset, x):
461 def draft(repo, subset, x):
462 """``draft()``
462 """``draft()``
463 Changeset in draft phase."""
463 Changeset in draft phase."""
464 getargs(x, 0, 0, _("draft takes no arguments"))
464 getargs(x, 0, 0, _("draft takes no arguments"))
465 return [r for r in subset if repo._phaserev[r] == phases.draft]
465 return [r for r in subset if repo._phaserev[r] == phases.draft]
466
466
467 def filelog(repo, subset, x):
467 def filelog(repo, subset, x):
468 """``filelog(pattern)``
468 """``filelog(pattern)``
469 Changesets connected to the specified filelog.
469 Changesets connected to the specified filelog.
470 """
470 """
471
471
472 pat = getstring(x, _("filelog requires a pattern"))
472 pat = getstring(x, _("filelog requires a pattern"))
473 m = matchmod.match(repo.root, repo.getcwd(), [pat], default='relpath',
473 m = matchmod.match(repo.root, repo.getcwd(), [pat], default='relpath',
474 ctx=repo[None])
474 ctx=repo[None])
475 s = set()
475 s = set()
476
476
477 if not matchmod.patkind(pat):
477 if not matchmod.patkind(pat):
478 for f in m.files():
478 for f in m.files():
479 fl = repo.file(f)
479 fl = repo.file(f)
480 for fr in fl:
480 for fr in fl:
481 s.add(fl.linkrev(fr))
481 s.add(fl.linkrev(fr))
482 else:
482 else:
483 for f in repo[None]:
483 for f in repo[None]:
484 if m(f):
484 if m(f):
485 fl = repo.file(f)
485 fl = repo.file(f)
486 for fr in fl:
486 for fr in fl:
487 s.add(fl.linkrev(fr))
487 s.add(fl.linkrev(fr))
488
488
489 return [r for r in subset if r in s]
489 return [r for r in subset if r in s]
490
490
491 def first(repo, subset, x):
491 def first(repo, subset, x):
492 """``first(set, [n])``
492 """``first(set, [n])``
493 An alias for limit().
493 An alias for limit().
494 """
494 """
495 return limit(repo, subset, x)
495 return limit(repo, subset, x)
496
496
497 def _follow(repo, subset, x, name, followfirst=False):
497 def _follow(repo, subset, x, name, followfirst=False):
498 l = getargs(x, 0, 1, _("%s takes no arguments or a filename") % name)
498 l = getargs(x, 0, 1, _("%s takes no arguments or a filename") % name)
499 c = repo['.']
499 c = repo['.']
500 if l:
500 if l:
501 x = getstring(l[0], _("%s expected a filename") % name)
501 x = getstring(l[0], _("%s expected a filename") % name)
502 if x in c:
502 if x in c:
503 cx = c[x]
503 cx = c[x]
504 s = set(ctx.rev() for ctx in cx.ancestors(followfirst=followfirst))
504 s = set(ctx.rev() for ctx in cx.ancestors(followfirst=followfirst))
505 # include the revision responsible for the most recent version
505 # include the revision responsible for the most recent version
506 s.add(cx.linkrev())
506 s.add(cx.linkrev())
507 else:
507 else:
508 return []
508 return []
509 else:
509 else:
510 s = set(_revancestors(repo, [c.rev()], followfirst)) | set([c.rev()])
510 s = set(_revancestors(repo, [c.rev()], followfirst)) | set([c.rev()])
511
511
512 return [r for r in subset if r in s]
512 return [r for r in subset if r in s]
513
513
514 def follow(repo, subset, x):
514 def follow(repo, subset, x):
515 """``follow([file])``
515 """``follow([file])``
516 An alias for ``::.`` (ancestors of the working copy's first parent).
516 An alias for ``::.`` (ancestors of the working copy's first parent).
517 If a filename is specified, the history of the given file is followed,
517 If a filename is specified, the history of the given file is followed,
518 including copies.
518 including copies.
519 """
519 """
520 return _follow(repo, subset, x, 'follow')
520 return _follow(repo, subset, x, 'follow')
521
521
522 def _followfirst(repo, subset, x):
522 def _followfirst(repo, subset, x):
523 # ``followfirst([file])``
523 # ``followfirst([file])``
524 # Like ``follow([file])`` but follows only the first parent of
524 # Like ``follow([file])`` but follows only the first parent of
525 # every revision or file revision.
525 # every revision or file revision.
526 return _follow(repo, subset, x, '_followfirst', followfirst=True)
526 return _follow(repo, subset, x, '_followfirst', followfirst=True)
527
527
528 def getall(repo, subset, x):
528 def getall(repo, subset, x):
529 """``all()``
529 """``all()``
530 All changesets, the same as ``0:tip``.
530 All changesets, the same as ``0:tip``.
531 """
531 """
532 # i18n: "all" is a keyword
532 # i18n: "all" is a keyword
533 getargs(x, 0, 0, _("all takes no arguments"))
533 getargs(x, 0, 0, _("all takes no arguments"))
534 return subset
534 return subset
535
535
536 def grep(repo, subset, x):
536 def grep(repo, subset, x):
537 """``grep(regex)``
537 """``grep(regex)``
538 Like ``keyword(string)`` but accepts a regex. Use ``grep(r'...')``
538 Like ``keyword(string)`` but accepts a regex. Use ``grep(r'...')``
539 to ensure special escape characters are handled correctly. Unlike
539 to ensure special escape characters are handled correctly. Unlike
540 ``keyword(string)``, the match is case-sensitive.
540 ``keyword(string)``, the match is case-sensitive.
541 """
541 """
542 try:
542 try:
543 # i18n: "grep" is a keyword
543 # i18n: "grep" is a keyword
544 gr = re.compile(getstring(x, _("grep requires a string")))
544 gr = re.compile(getstring(x, _("grep requires a string")))
545 except re.error, e:
545 except re.error, e:
546 raise error.ParseError(_('invalid match pattern: %s') % e)
546 raise error.ParseError(_('invalid match pattern: %s') % e)
547 l = []
547 l = []
548 for r in subset:
548 for r in subset:
549 c = repo[r]
549 c = repo[r]
550 for e in c.files() + [c.user(), c.description()]:
550 for e in c.files() + [c.user(), c.description()]:
551 if gr.search(e):
551 if gr.search(e):
552 l.append(r)
552 l.append(r)
553 break
553 break
554 return l
554 return l
555
555
556 def _matchfiles(repo, subset, x):
556 def _matchfiles(repo, subset, x):
557 # _matchfiles takes a revset list of prefixed arguments:
557 # _matchfiles takes a revset list of prefixed arguments:
558 #
558 #
559 # [p:foo, i:bar, x:baz]
559 # [p:foo, i:bar, x:baz]
560 #
560 #
561 # builds a match object from them and filters subset. Allowed
561 # builds a match object from them and filters subset. Allowed
562 # prefixes are 'p:' for regular patterns, 'i:' for include
562 # prefixes are 'p:' for regular patterns, 'i:' for include
563 # patterns and 'x:' for exclude patterns. Use 'r:' prefix to pass
563 # patterns and 'x:' for exclude patterns. Use 'r:' prefix to pass
564 # a revision identifier, or the empty string to reference the
564 # a revision identifier, or the empty string to reference the
565 # working directory, from which the match object is
565 # working directory, from which the match object is
566 # initialized. Use 'd:' to set the default matching mode, default
566 # initialized. Use 'd:' to set the default matching mode, default
567 # to 'glob'. At most one 'r:' and 'd:' argument can be passed.
567 # to 'glob'. At most one 'r:' and 'd:' argument can be passed.
568
568
569 # i18n: "_matchfiles" is a keyword
569 # i18n: "_matchfiles" is a keyword
570 l = getargs(x, 1, -1, _("_matchfiles requires at least one argument"))
570 l = getargs(x, 1, -1, _("_matchfiles requires at least one argument"))
571 pats, inc, exc = [], [], []
571 pats, inc, exc = [], [], []
572 hasset = False
572 hasset = False
573 rev, default = None, None
573 rev, default = None, None
574 for arg in l:
574 for arg in l:
575 s = getstring(arg, _("_matchfiles requires string arguments"))
575 s = getstring(arg, _("_matchfiles requires string arguments"))
576 prefix, value = s[:2], s[2:]
576 prefix, value = s[:2], s[2:]
577 if prefix == 'p:':
577 if prefix == 'p:':
578 pats.append(value)
578 pats.append(value)
579 elif prefix == 'i:':
579 elif prefix == 'i:':
580 inc.append(value)
580 inc.append(value)
581 elif prefix == 'x:':
581 elif prefix == 'x:':
582 exc.append(value)
582 exc.append(value)
583 elif prefix == 'r:':
583 elif prefix == 'r:':
584 if rev is not None:
584 if rev is not None:
585 raise error.ParseError(_('_matchfiles expected at most one '
585 raise error.ParseError(_('_matchfiles expected at most one '
586 'revision'))
586 'revision'))
587 rev = value
587 rev = value
588 elif prefix == 'd:':
588 elif prefix == 'd:':
589 if default is not None:
589 if default is not None:
590 raise error.ParseError(_('_matchfiles expected at most one '
590 raise error.ParseError(_('_matchfiles expected at most one '
591 'default mode'))
591 'default mode'))
592 default = value
592 default = value
593 else:
593 else:
594 raise error.ParseError(_('invalid _matchfiles prefix: %s') % prefix)
594 raise error.ParseError(_('invalid _matchfiles prefix: %s') % prefix)
595 if not hasset and matchmod.patkind(value) == 'set':
595 if not hasset and matchmod.patkind(value) == 'set':
596 hasset = True
596 hasset = True
597 if not default:
597 if not default:
598 default = 'glob'
598 default = 'glob'
599 m = None
599 m = None
600 s = []
600 s = []
601 for r in subset:
601 for r in subset:
602 c = repo[r]
602 c = repo[r]
603 if not m or (hasset and rev is None):
603 if not m or (hasset and rev is None):
604 ctx = c
604 ctx = c
605 if rev is not None:
605 if rev is not None:
606 ctx = repo[rev or None]
606 ctx = repo[rev or None]
607 m = matchmod.match(repo.root, repo.getcwd(), pats, include=inc,
607 m = matchmod.match(repo.root, repo.getcwd(), pats, include=inc,
608 exclude=exc, ctx=ctx, default=default)
608 exclude=exc, ctx=ctx, default=default)
609 for f in c.files():
609 for f in c.files():
610 if m(f):
610 if m(f):
611 s.append(r)
611 s.append(r)
612 break
612 break
613 return s
613 return s
614
614
615 def hasfile(repo, subset, x):
615 def hasfile(repo, subset, x):
616 """``file(pattern)``
616 """``file(pattern)``
617 Changesets affecting files matched by pattern.
617 Changesets affecting files matched by pattern.
618 """
618 """
619 # i18n: "file" is a keyword
619 # i18n: "file" is a keyword
620 pat = getstring(x, _("file requires a pattern"))
620 pat = getstring(x, _("file requires a pattern"))
621 return _matchfiles(repo, subset, ('string', 'p:' + pat))
621 return _matchfiles(repo, subset, ('string', 'p:' + pat))
622
622
623 def head(repo, subset, x):
623 def head(repo, subset, x):
624 """``head()``
624 """``head()``
625 Changeset is a named branch head.
625 Changeset is a named branch head.
626 """
626 """
627 # i18n: "head" is a keyword
627 # i18n: "head" is a keyword
628 getargs(x, 0, 0, _("head takes no arguments"))
628 getargs(x, 0, 0, _("head takes no arguments"))
629 hs = set()
629 hs = set()
630 for b, ls in repo.branchmap().iteritems():
630 for b, ls in repo.branchmap().iteritems():
631 hs.update(repo[h].rev() for h in ls)
631 hs.update(repo[h].rev() for h in ls)
632 return [r for r in subset if r in hs]
632 return [r for r in subset if r in hs]
633
633
634 def heads(repo, subset, x):
634 def heads(repo, subset, x):
635 """``heads(set)``
635 """``heads(set)``
636 Members of set with no children in set.
636 Members of set with no children in set.
637 """
637 """
638 s = getset(repo, subset, x)
638 s = getset(repo, subset, x)
639 ps = set(parents(repo, subset, x))
639 ps = set(parents(repo, subset, x))
640 return [r for r in s if r not in ps]
640 return [r for r in s if r not in ps]
641
641
642 def keyword(repo, subset, x):
642 def keyword(repo, subset, x):
643 """``keyword(string)``
643 """``keyword(string)``
644 Search commit message, user name, and names of changed files for
644 Search commit message, user name, and names of changed files for
645 string. The match is case-insensitive.
645 string. The match is case-insensitive.
646 """
646 """
647 # i18n: "keyword" is a keyword
647 # i18n: "keyword" is a keyword
648 kw = encoding.lower(getstring(x, _("keyword requires a string")))
648 kw = encoding.lower(getstring(x, _("keyword requires a string")))
649 l = []
649 l = []
650 for r in subset:
650 for r in subset:
651 c = repo[r]
651 c = repo[r]
652 t = " ".join(c.files() + [c.user(), c.description()])
652 t = " ".join(c.files() + [c.user(), c.description()])
653 if kw in encoding.lower(t):
653 if kw in encoding.lower(t):
654 l.append(r)
654 l.append(r)
655 return l
655 return l
656
656
657 def limit(repo, subset, x):
657 def limit(repo, subset, x):
658 """``limit(set, [n])``
658 """``limit(set, [n])``
659 First n members of set, defaulting to 1.
659 First n members of set, defaulting to 1.
660 """
660 """
661 # i18n: "limit" is a keyword
661 # i18n: "limit" is a keyword
662 l = getargs(x, 1, 2, _("limit requires one or two arguments"))
662 l = getargs(x, 1, 2, _("limit requires one or two arguments"))
663 try:
663 try:
664 lim = 1
664 lim = 1
665 if len(l) == 2:
665 if len(l) == 2:
666 # i18n: "limit" is a keyword
666 # i18n: "limit" is a keyword
667 lim = int(getstring(l[1], _("limit requires a number")))
667 lim = int(getstring(l[1], _("limit requires a number")))
668 except (TypeError, ValueError):
668 except (TypeError, ValueError):
669 # i18n: "limit" is a keyword
669 # i18n: "limit" is a keyword
670 raise error.ParseError(_("limit expects a number"))
670 raise error.ParseError(_("limit expects a number"))
671 ss = set(subset)
671 ss = set(subset)
672 os = getset(repo, range(len(repo)), l[0])[:lim]
672 os = getset(repo, range(len(repo)), l[0])[:lim]
673 return [r for r in os if r in ss]
673 return [r for r in os if r in ss]
674
674
675 def last(repo, subset, x):
675 def last(repo, subset, x):
676 """``last(set, [n])``
676 """``last(set, [n])``
677 Last n members of set, defaulting to 1.
677 Last n members of set, defaulting to 1.
678 """
678 """
679 # i18n: "last" is a keyword
679 # i18n: "last" is a keyword
680 l = getargs(x, 1, 2, _("last requires one or two arguments"))
680 l = getargs(x, 1, 2, _("last requires one or two arguments"))
681 try:
681 try:
682 lim = 1
682 lim = 1
683 if len(l) == 2:
683 if len(l) == 2:
684 # i18n: "last" is a keyword
684 # i18n: "last" is a keyword
685 lim = int(getstring(l[1], _("last requires a number")))
685 lim = int(getstring(l[1], _("last requires a number")))
686 except (TypeError, ValueError):
686 except (TypeError, ValueError):
687 # i18n: "last" is a keyword
687 # i18n: "last" is a keyword
688 raise error.ParseError(_("last expects a number"))
688 raise error.ParseError(_("last expects a number"))
689 ss = set(subset)
689 ss = set(subset)
690 os = getset(repo, range(len(repo)), l[0])[-lim:]
690 os = getset(repo, range(len(repo)), l[0])[-lim:]
691 return [r for r in os if r in ss]
691 return [r for r in os if r in ss]
692
692
693 def maxrev(repo, subset, x):
693 def maxrev(repo, subset, x):
694 """``max(set)``
694 """``max(set)``
695 Changeset with highest revision number in set.
695 Changeset with highest revision number in set.
696 """
696 """
697 os = getset(repo, range(len(repo)), x)
697 os = getset(repo, range(len(repo)), x)
698 if os:
698 if os:
699 m = max(os)
699 m = max(os)
700 if m in subset:
700 if m in subset:
701 return [m]
701 return [m]
702 return []
702 return []
703
703
704 def merge(repo, subset, x):
704 def merge(repo, subset, x):
705 """``merge()``
705 """``merge()``
706 Changeset is a merge changeset.
706 Changeset is a merge changeset.
707 """
707 """
708 # i18n: "merge" is a keyword
708 # i18n: "merge" is a keyword
709 getargs(x, 0, 0, _("merge takes no arguments"))
709 getargs(x, 0, 0, _("merge takes no arguments"))
710 cl = repo.changelog
710 cl = repo.changelog
711 return [r for r in subset if cl.parentrevs(r)[1] != -1]
711 return [r for r in subset if cl.parentrevs(r)[1] != -1]
712
712
713 def minrev(repo, subset, x):
713 def minrev(repo, subset, x):
714 """``min(set)``
714 """``min(set)``
715 Changeset with lowest revision number in set.
715 Changeset with lowest revision number in set.
716 """
716 """
717 os = getset(repo, range(len(repo)), x)
717 os = getset(repo, range(len(repo)), x)
718 if os:
718 if os:
719 m = min(os)
719 m = min(os)
720 if m in subset:
720 if m in subset:
721 return [m]
721 return [m]
722 return []
722 return []
723
723
724 def modifies(repo, subset, x):
724 def modifies(repo, subset, x):
725 """``modifies(pattern)``
725 """``modifies(pattern)``
726 Changesets modifying files matched by pattern.
726 Changesets modifying files matched by pattern.
727 """
727 """
728 # i18n: "modifies" is a keyword
728 # i18n: "modifies" is a keyword
729 pat = getstring(x, _("modifies requires a pattern"))
729 pat = getstring(x, _("modifies requires a pattern"))
730 return checkstatus(repo, subset, pat, 0)
730 return checkstatus(repo, subset, pat, 0)
731
731
732 def node_(repo, subset, x):
732 def node_(repo, subset, x):
733 """``id(string)``
733 """``id(string)``
734 Revision non-ambiguously specified by the given hex string prefix.
734 Revision non-ambiguously specified by the given hex string prefix.
735 """
735 """
736 # i18n: "id" is a keyword
736 # i18n: "id" is a keyword
737 l = getargs(x, 1, 1, _("id requires one argument"))
737 l = getargs(x, 1, 1, _("id requires one argument"))
738 # i18n: "id" is a keyword
738 # i18n: "id" is a keyword
739 n = getstring(l[0], _("id requires a string"))
739 n = getstring(l[0], _("id requires a string"))
740 if len(n) == 40:
740 if len(n) == 40:
741 rn = repo[n].rev()
741 rn = repo[n].rev()
742 else:
742 else:
743 rn = repo.changelog.rev(repo.changelog._partialmatch(n))
743 rn = None
744 pm = repo.changelog._partialmatch(n)
745 if pm is not None:
746 rn = repo.changelog.rev(pm)
747
744 return [r for r in subset if r == rn]
748 return [r for r in subset if r == rn]
745
749
746 def outgoing(repo, subset, x):
750 def outgoing(repo, subset, x):
747 """``outgoing([path])``
751 """``outgoing([path])``
748 Changesets not found in the specified destination repository, or the
752 Changesets not found in the specified destination repository, or the
749 default push location.
753 default push location.
750 """
754 """
751 import hg # avoid start-up nasties
755 import hg # avoid start-up nasties
752 # i18n: "outgoing" is a keyword
756 # i18n: "outgoing" is a keyword
753 l = getargs(x, 0, 1, _("outgoing takes one or no arguments"))
757 l = getargs(x, 0, 1, _("outgoing takes one or no arguments"))
754 # i18n: "outgoing" is a keyword
758 # i18n: "outgoing" is a keyword
755 dest = l and getstring(l[0], _("outgoing requires a repository path")) or ''
759 dest = l and getstring(l[0], _("outgoing requires a repository path")) or ''
756 dest = repo.ui.expandpath(dest or 'default-push', dest or 'default')
760 dest = repo.ui.expandpath(dest or 'default-push', dest or 'default')
757 dest, branches = hg.parseurl(dest)
761 dest, branches = hg.parseurl(dest)
758 revs, checkout = hg.addbranchrevs(repo, repo, branches, [])
762 revs, checkout = hg.addbranchrevs(repo, repo, branches, [])
759 if revs:
763 if revs:
760 revs = [repo.lookup(rev) for rev in revs]
764 revs = [repo.lookup(rev) for rev in revs]
761 other = hg.peer(repo, {}, dest)
765 other = hg.peer(repo, {}, dest)
762 repo.ui.pushbuffer()
766 repo.ui.pushbuffer()
763 outgoing = discovery.findcommonoutgoing(repo, other, onlyheads=revs)
767 outgoing = discovery.findcommonoutgoing(repo, other, onlyheads=revs)
764 repo.ui.popbuffer()
768 repo.ui.popbuffer()
765 cl = repo.changelog
769 cl = repo.changelog
766 o = set([cl.rev(r) for r in outgoing.missing])
770 o = set([cl.rev(r) for r in outgoing.missing])
767 return [r for r in subset if r in o]
771 return [r for r in subset if r in o]
768
772
769 def p1(repo, subset, x):
773 def p1(repo, subset, x):
770 """``p1([set])``
774 """``p1([set])``
771 First parent of changesets in set, or the working directory.
775 First parent of changesets in set, or the working directory.
772 """
776 """
773 if x is None:
777 if x is None:
774 p = repo[x].p1().rev()
778 p = repo[x].p1().rev()
775 return [r for r in subset if r == p]
779 return [r for r in subset if r == p]
776
780
777 ps = set()
781 ps = set()
778 cl = repo.changelog
782 cl = repo.changelog
779 for r in getset(repo, range(len(repo)), x):
783 for r in getset(repo, range(len(repo)), x):
780 ps.add(cl.parentrevs(r)[0])
784 ps.add(cl.parentrevs(r)[0])
781 return [r for r in subset if r in ps]
785 return [r for r in subset if r in ps]
782
786
783 def p2(repo, subset, x):
787 def p2(repo, subset, x):
784 """``p2([set])``
788 """``p2([set])``
785 Second parent of changesets in set, or the working directory.
789 Second parent of changesets in set, or the working directory.
786 """
790 """
787 if x is None:
791 if x is None:
788 ps = repo[x].parents()
792 ps = repo[x].parents()
789 try:
793 try:
790 p = ps[1].rev()
794 p = ps[1].rev()
791 return [r for r in subset if r == p]
795 return [r for r in subset if r == p]
792 except IndexError:
796 except IndexError:
793 return []
797 return []
794
798
795 ps = set()
799 ps = set()
796 cl = repo.changelog
800 cl = repo.changelog
797 for r in getset(repo, range(len(repo)), x):
801 for r in getset(repo, range(len(repo)), x):
798 ps.add(cl.parentrevs(r)[1])
802 ps.add(cl.parentrevs(r)[1])
799 return [r for r in subset if r in ps]
803 return [r for r in subset if r in ps]
800
804
801 def parents(repo, subset, x):
805 def parents(repo, subset, x):
802 """``parents([set])``
806 """``parents([set])``
803 The set of all parents for all changesets in set, or the working directory.
807 The set of all parents for all changesets in set, or the working directory.
804 """
808 """
805 if x is None:
809 if x is None:
806 ps = tuple(p.rev() for p in repo[x].parents())
810 ps = tuple(p.rev() for p in repo[x].parents())
807 return [r for r in subset if r in ps]
811 return [r for r in subset if r in ps]
808
812
809 ps = set()
813 ps = set()
810 cl = repo.changelog
814 cl = repo.changelog
811 for r in getset(repo, range(len(repo)), x):
815 for r in getset(repo, range(len(repo)), x):
812 ps.update(cl.parentrevs(r))
816 ps.update(cl.parentrevs(r))
813 return [r for r in subset if r in ps]
817 return [r for r in subset if r in ps]
814
818
815 def parentspec(repo, subset, x, n):
819 def parentspec(repo, subset, x, n):
816 """``set^0``
820 """``set^0``
817 The set.
821 The set.
818 ``set^1`` (or ``set^``), ``set^2``
822 ``set^1`` (or ``set^``), ``set^2``
819 First or second parent, respectively, of all changesets in set.
823 First or second parent, respectively, of all changesets in set.
820 """
824 """
821 try:
825 try:
822 n = int(n[1])
826 n = int(n[1])
823 if n not in (0, 1, 2):
827 if n not in (0, 1, 2):
824 raise ValueError
828 raise ValueError
825 except (TypeError, ValueError):
829 except (TypeError, ValueError):
826 raise error.ParseError(_("^ expects a number 0, 1, or 2"))
830 raise error.ParseError(_("^ expects a number 0, 1, or 2"))
827 ps = set()
831 ps = set()
828 cl = repo.changelog
832 cl = repo.changelog
829 for r in getset(repo, subset, x):
833 for r in getset(repo, subset, x):
830 if n == 0:
834 if n == 0:
831 ps.add(r)
835 ps.add(r)
832 elif n == 1:
836 elif n == 1:
833 ps.add(cl.parentrevs(r)[0])
837 ps.add(cl.parentrevs(r)[0])
834 elif n == 2:
838 elif n == 2:
835 parents = cl.parentrevs(r)
839 parents = cl.parentrevs(r)
836 if len(parents) > 1:
840 if len(parents) > 1:
837 ps.add(parents[1])
841 ps.add(parents[1])
838 return [r for r in subset if r in ps]
842 return [r for r in subset if r in ps]
839
843
840 def present(repo, subset, x):
844 def present(repo, subset, x):
841 """``present(set)``
845 """``present(set)``
842 An empty set, if any revision in set isn't found; otherwise,
846 An empty set, if any revision in set isn't found; otherwise,
843 all revisions in set.
847 all revisions in set.
844 """
848 """
845 try:
849 try:
846 return getset(repo, subset, x)
850 return getset(repo, subset, x)
847 except error.RepoLookupError:
851 except error.RepoLookupError:
848 return []
852 return []
849
853
850 def public(repo, subset, x):
854 def public(repo, subset, x):
851 """``public()``
855 """``public()``
852 Changeset in public phase."""
856 Changeset in public phase."""
853 getargs(x, 0, 0, _("public takes no arguments"))
857 getargs(x, 0, 0, _("public takes no arguments"))
854 return [r for r in subset if repo._phaserev[r] == phases.public]
858 return [r for r in subset if repo._phaserev[r] == phases.public]
855
859
856 def remote(repo, subset, x):
860 def remote(repo, subset, x):
857 """``remote([id [,path]])``
861 """``remote([id [,path]])``
858 Local revision that corresponds to the given identifier in a
862 Local revision that corresponds to the given identifier in a
859 remote repository, if present. Here, the '.' identifier is a
863 remote repository, if present. Here, the '.' identifier is a
860 synonym for the current local branch.
864 synonym for the current local branch.
861 """
865 """
862
866
863 import hg # avoid start-up nasties
867 import hg # avoid start-up nasties
864 # i18n: "remote" is a keyword
868 # i18n: "remote" is a keyword
865 l = getargs(x, 0, 2, _("remote takes one, two or no arguments"))
869 l = getargs(x, 0, 2, _("remote takes one, two or no arguments"))
866
870
867 q = '.'
871 q = '.'
868 if len(l) > 0:
872 if len(l) > 0:
869 # i18n: "remote" is a keyword
873 # i18n: "remote" is a keyword
870 q = getstring(l[0], _("remote requires a string id"))
874 q = getstring(l[0], _("remote requires a string id"))
871 if q == '.':
875 if q == '.':
872 q = repo['.'].branch()
876 q = repo['.'].branch()
873
877
874 dest = ''
878 dest = ''
875 if len(l) > 1:
879 if len(l) > 1:
876 # i18n: "remote" is a keyword
880 # i18n: "remote" is a keyword
877 dest = getstring(l[1], _("remote requires a repository path"))
881 dest = getstring(l[1], _("remote requires a repository path"))
878 dest = repo.ui.expandpath(dest or 'default')
882 dest = repo.ui.expandpath(dest or 'default')
879 dest, branches = hg.parseurl(dest)
883 dest, branches = hg.parseurl(dest)
880 revs, checkout = hg.addbranchrevs(repo, repo, branches, [])
884 revs, checkout = hg.addbranchrevs(repo, repo, branches, [])
881 if revs:
885 if revs:
882 revs = [repo.lookup(rev) for rev in revs]
886 revs = [repo.lookup(rev) for rev in revs]
883 other = hg.peer(repo, {}, dest)
887 other = hg.peer(repo, {}, dest)
884 n = other.lookup(q)
888 n = other.lookup(q)
885 if n in repo:
889 if n in repo:
886 r = repo[n].rev()
890 r = repo[n].rev()
887 if r in subset:
891 if r in subset:
888 return [r]
892 return [r]
889 return []
893 return []
890
894
891 def removes(repo, subset, x):
895 def removes(repo, subset, x):
892 """``removes(pattern)``
896 """``removes(pattern)``
893 Changesets which remove files matching pattern.
897 Changesets which remove files matching pattern.
894 """
898 """
895 # i18n: "removes" is a keyword
899 # i18n: "removes" is a keyword
896 pat = getstring(x, _("removes requires a pattern"))
900 pat = getstring(x, _("removes requires a pattern"))
897 return checkstatus(repo, subset, pat, 2)
901 return checkstatus(repo, subset, pat, 2)
898
902
899 def rev(repo, subset, x):
903 def rev(repo, subset, x):
900 """``rev(number)``
904 """``rev(number)``
901 Revision with the given numeric identifier.
905 Revision with the given numeric identifier.
902 """
906 """
903 # i18n: "rev" is a keyword
907 # i18n: "rev" is a keyword
904 l = getargs(x, 1, 1, _("rev requires one argument"))
908 l = getargs(x, 1, 1, _("rev requires one argument"))
905 try:
909 try:
906 # i18n: "rev" is a keyword
910 # i18n: "rev" is a keyword
907 l = int(getstring(l[0], _("rev requires a number")))
911 l = int(getstring(l[0], _("rev requires a number")))
908 except (TypeError, ValueError):
912 except (TypeError, ValueError):
909 # i18n: "rev" is a keyword
913 # i18n: "rev" is a keyword
910 raise error.ParseError(_("rev expects a number"))
914 raise error.ParseError(_("rev expects a number"))
911 return [r for r in subset if r == l]
915 return [r for r in subset if r == l]
912
916
913 def matching(repo, subset, x):
917 def matching(repo, subset, x):
914 """``matching(revision [, field])``
918 """``matching(revision [, field])``
915 Changesets in which a given set of fields match the set of fields in the
919 Changesets in which a given set of fields match the set of fields in the
916 selected revision or set.
920 selected revision or set.
917
921
918 To match more than one field pass the list of fields to match separated
922 To match more than one field pass the list of fields to match separated
919 by spaces (e.g. ``author description``).
923 by spaces (e.g. ``author description``).
920
924
921 Valid fields are most regular revision fields and some special fields.
925 Valid fields are most regular revision fields and some special fields.
922
926
923 Regular revision fields are ``description``, ``author``, ``branch``,
927 Regular revision fields are ``description``, ``author``, ``branch``,
924 ``date``, ``files``, ``phase``, ``parents``, ``substate`` and ``user``.
928 ``date``, ``files``, ``phase``, ``parents``, ``substate`` and ``user``.
925 Note that ``author`` and ``user`` are synonyms.
929 Note that ``author`` and ``user`` are synonyms.
926
930
927 Special fields are ``summary`` and ``metadata``:
931 Special fields are ``summary`` and ``metadata``:
928 ``summary`` matches the first line of the description.
932 ``summary`` matches the first line of the description.
929 ``metadata`` is equivalent to matching ``description user date``
933 ``metadata`` is equivalent to matching ``description user date``
930 (i.e. it matches the main metadata fields).
934 (i.e. it matches the main metadata fields).
931
935
932 ``metadata`` is the default field which is used when no fields are
936 ``metadata`` is the default field which is used when no fields are
933 specified. You can match more than one field at a time.
937 specified. You can match more than one field at a time.
934 """
938 """
935 l = getargs(x, 1, 2, _("matching takes 1 or 2 arguments"))
939 l = getargs(x, 1, 2, _("matching takes 1 or 2 arguments"))
936
940
937 revs = getset(repo, xrange(len(repo)), l[0])
941 revs = getset(repo, xrange(len(repo)), l[0])
938
942
939 fieldlist = ['metadata']
943 fieldlist = ['metadata']
940 if len(l) > 1:
944 if len(l) > 1:
941 fieldlist = getstring(l[1],
945 fieldlist = getstring(l[1],
942 _("matching requires a string "
946 _("matching requires a string "
943 "as its second argument")).split()
947 "as its second argument")).split()
944
948
945 # Make sure that there are no repeated fields, and expand the
949 # Make sure that there are no repeated fields, and expand the
946 # 'special' 'metadata' field type
950 # 'special' 'metadata' field type
947 fields = []
951 fields = []
948 for field in fieldlist:
952 for field in fieldlist:
949 if field == 'metadata':
953 if field == 'metadata':
950 fields += ['user', 'description', 'date']
954 fields += ['user', 'description', 'date']
951 else:
955 else:
952 if field == 'author':
956 if field == 'author':
953 field = 'user'
957 field = 'user'
954 fields.append(field)
958 fields.append(field)
955 fields = set(fields)
959 fields = set(fields)
956 if 'summary' in fields and 'description' in fields:
960 if 'summary' in fields and 'description' in fields:
957 # If a revision matches its description it also matches its summary
961 # If a revision matches its description it also matches its summary
958 fields.discard('summary')
962 fields.discard('summary')
959
963
960 # We may want to match more than one field
964 # We may want to match more than one field
961 # Not all fields take the same amount of time to be matched
965 # Not all fields take the same amount of time to be matched
962 # Sort the selected fields in order of increasing matching cost
966 # Sort the selected fields in order of increasing matching cost
963 fieldorder = ['phase', 'parents', 'user', 'date', 'branch', 'summary',
967 fieldorder = ['phase', 'parents', 'user', 'date', 'branch', 'summary',
964 'files', 'description', 'substate']
968 'files', 'description', 'substate']
965 def fieldkeyfunc(f):
969 def fieldkeyfunc(f):
966 try:
970 try:
967 return fieldorder.index(f)
971 return fieldorder.index(f)
968 except ValueError:
972 except ValueError:
969 # assume an unknown field is very costly
973 # assume an unknown field is very costly
970 return len(fieldorder)
974 return len(fieldorder)
971 fields = list(fields)
975 fields = list(fields)
972 fields.sort(key=fieldkeyfunc)
976 fields.sort(key=fieldkeyfunc)
973
977
974 # Each field will be matched with its own "getfield" function
978 # Each field will be matched with its own "getfield" function
975 # which will be added to the getfieldfuncs array of functions
979 # which will be added to the getfieldfuncs array of functions
976 getfieldfuncs = []
980 getfieldfuncs = []
977 _funcs = {
981 _funcs = {
978 'user': lambda r: repo[r].user(),
982 'user': lambda r: repo[r].user(),
979 'branch': lambda r: repo[r].branch(),
983 'branch': lambda r: repo[r].branch(),
980 'date': lambda r: repo[r].date(),
984 'date': lambda r: repo[r].date(),
981 'description': lambda r: repo[r].description(),
985 'description': lambda r: repo[r].description(),
982 'files': lambda r: repo[r].files(),
986 'files': lambda r: repo[r].files(),
983 'parents': lambda r: repo[r].parents(),
987 'parents': lambda r: repo[r].parents(),
984 'phase': lambda r: repo[r].phase(),
988 'phase': lambda r: repo[r].phase(),
985 'substate': lambda r: repo[r].substate,
989 'substate': lambda r: repo[r].substate,
986 'summary': lambda r: repo[r].description().splitlines()[0],
990 'summary': lambda r: repo[r].description().splitlines()[0],
987 }
991 }
988 for info in fields:
992 for info in fields:
989 getfield = _funcs.get(info, None)
993 getfield = _funcs.get(info, None)
990 if getfield is None:
994 if getfield is None:
991 raise error.ParseError(
995 raise error.ParseError(
992 _("unexpected field name passed to matching: %s") % info)
996 _("unexpected field name passed to matching: %s") % info)
993 getfieldfuncs.append(getfield)
997 getfieldfuncs.append(getfield)
994 # convert the getfield array of functions into a "getinfo" function
998 # convert the getfield array of functions into a "getinfo" function
995 # which returns an array of field values (or a single value if there
999 # which returns an array of field values (or a single value if there
996 # is only one field to match)
1000 # is only one field to match)
997 getinfo = lambda r: [f(r) for f in getfieldfuncs]
1001 getinfo = lambda r: [f(r) for f in getfieldfuncs]
998
1002
999 matches = set()
1003 matches = set()
1000 for rev in revs:
1004 for rev in revs:
1001 target = getinfo(rev)
1005 target = getinfo(rev)
1002 for r in subset:
1006 for r in subset:
1003 match = True
1007 match = True
1004 for n, f in enumerate(getfieldfuncs):
1008 for n, f in enumerate(getfieldfuncs):
1005 if target[n] != f(r):
1009 if target[n] != f(r):
1006 match = False
1010 match = False
1007 break
1011 break
1008 if match:
1012 if match:
1009 matches.add(r)
1013 matches.add(r)
1010 return [r for r in subset if r in matches]
1014 return [r for r in subset if r in matches]
1011
1015
1012 def reverse(repo, subset, x):
1016 def reverse(repo, subset, x):
1013 """``reverse(set)``
1017 """``reverse(set)``
1014 Reverse order of set.
1018 Reverse order of set.
1015 """
1019 """
1016 l = getset(repo, subset, x)
1020 l = getset(repo, subset, x)
1017 l.reverse()
1021 l.reverse()
1018 return l
1022 return l
1019
1023
1020 def roots(repo, subset, x):
1024 def roots(repo, subset, x):
1021 """``roots(set)``
1025 """``roots(set)``
1022 Changesets in set with no parent changeset in set.
1026 Changesets in set with no parent changeset in set.
1023 """
1027 """
1024 s = set(getset(repo, xrange(len(repo)), x))
1028 s = set(getset(repo, xrange(len(repo)), x))
1025 subset = [r for r in subset if r in s]
1029 subset = [r for r in subset if r in s]
1026 cs = _children(repo, subset, s)
1030 cs = _children(repo, subset, s)
1027 return [r for r in subset if r not in cs]
1031 return [r for r in subset if r not in cs]
1028
1032
1029 def secret(repo, subset, x):
1033 def secret(repo, subset, x):
1030 """``secret()``
1034 """``secret()``
1031 Changeset in secret phase."""
1035 Changeset in secret phase."""
1032 getargs(x, 0, 0, _("secret takes no arguments"))
1036 getargs(x, 0, 0, _("secret takes no arguments"))
1033 return [r for r in subset if repo._phaserev[r] == phases.secret]
1037 return [r for r in subset if repo._phaserev[r] == phases.secret]
1034
1038
1035 def sort(repo, subset, x):
1039 def sort(repo, subset, x):
1036 """``sort(set[, [-]key...])``
1040 """``sort(set[, [-]key...])``
1037 Sort set by keys. The default sort order is ascending, specify a key
1041 Sort set by keys. The default sort order is ascending, specify a key
1038 as ``-key`` to sort in descending order.
1042 as ``-key`` to sort in descending order.
1039
1043
1040 The keys can be:
1044 The keys can be:
1041
1045
1042 - ``rev`` for the revision number,
1046 - ``rev`` for the revision number,
1043 - ``branch`` for the branch name,
1047 - ``branch`` for the branch name,
1044 - ``desc`` for the commit message (description),
1048 - ``desc`` for the commit message (description),
1045 - ``user`` for user name (``author`` can be used as an alias),
1049 - ``user`` for user name (``author`` can be used as an alias),
1046 - ``date`` for the commit date
1050 - ``date`` for the commit date
1047 """
1051 """
1048 # i18n: "sort" is a keyword
1052 # i18n: "sort" is a keyword
1049 l = getargs(x, 1, 2, _("sort requires one or two arguments"))
1053 l = getargs(x, 1, 2, _("sort requires one or two arguments"))
1050 keys = "rev"
1054 keys = "rev"
1051 if len(l) == 2:
1055 if len(l) == 2:
1052 keys = getstring(l[1], _("sort spec must be a string"))
1056 keys = getstring(l[1], _("sort spec must be a string"))
1053
1057
1054 s = l[0]
1058 s = l[0]
1055 keys = keys.split()
1059 keys = keys.split()
1056 l = []
1060 l = []
1057 def invert(s):
1061 def invert(s):
1058 return "".join(chr(255 - ord(c)) for c in s)
1062 return "".join(chr(255 - ord(c)) for c in s)
1059 for r in getset(repo, subset, s):
1063 for r in getset(repo, subset, s):
1060 c = repo[r]
1064 c = repo[r]
1061 e = []
1065 e = []
1062 for k in keys:
1066 for k in keys:
1063 if k == 'rev':
1067 if k == 'rev':
1064 e.append(r)
1068 e.append(r)
1065 elif k == '-rev':
1069 elif k == '-rev':
1066 e.append(-r)
1070 e.append(-r)
1067 elif k == 'branch':
1071 elif k == 'branch':
1068 e.append(c.branch())
1072 e.append(c.branch())
1069 elif k == '-branch':
1073 elif k == '-branch':
1070 e.append(invert(c.branch()))
1074 e.append(invert(c.branch()))
1071 elif k == 'desc':
1075 elif k == 'desc':
1072 e.append(c.description())
1076 e.append(c.description())
1073 elif k == '-desc':
1077 elif k == '-desc':
1074 e.append(invert(c.description()))
1078 e.append(invert(c.description()))
1075 elif k in 'user author':
1079 elif k in 'user author':
1076 e.append(c.user())
1080 e.append(c.user())
1077 elif k in '-user -author':
1081 elif k in '-user -author':
1078 e.append(invert(c.user()))
1082 e.append(invert(c.user()))
1079 elif k == 'date':
1083 elif k == 'date':
1080 e.append(c.date()[0])
1084 e.append(c.date()[0])
1081 elif k == '-date':
1085 elif k == '-date':
1082 e.append(-c.date()[0])
1086 e.append(-c.date()[0])
1083 else:
1087 else:
1084 raise error.ParseError(_("unknown sort key %r") % k)
1088 raise error.ParseError(_("unknown sort key %r") % k)
1085 e.append(r)
1089 e.append(r)
1086 l.append(e)
1090 l.append(e)
1087 l.sort()
1091 l.sort()
1088 return [e[-1] for e in l]
1092 return [e[-1] for e in l]
1089
1093
1090 def tag(repo, subset, x):
1094 def tag(repo, subset, x):
1091 """``tag([name])``
1095 """``tag([name])``
1092 The specified tag by name, or all tagged revisions if no name is given.
1096 The specified tag by name, or all tagged revisions if no name is given.
1093 """
1097 """
1094 # i18n: "tag" is a keyword
1098 # i18n: "tag" is a keyword
1095 args = getargs(x, 0, 1, _("tag takes one or no arguments"))
1099 args = getargs(x, 0, 1, _("tag takes one or no arguments"))
1096 cl = repo.changelog
1100 cl = repo.changelog
1097 if args:
1101 if args:
1098 tn = getstring(args[0],
1102 tn = getstring(args[0],
1099 # i18n: "tag" is a keyword
1103 # i18n: "tag" is a keyword
1100 _('the argument to tag must be a string'))
1104 _('the argument to tag must be a string'))
1101 if not repo.tags().get(tn, None):
1105 if not repo.tags().get(tn, None):
1102 raise util.Abort(_("tag '%s' does not exist") % tn)
1106 raise util.Abort(_("tag '%s' does not exist") % tn)
1103 s = set([cl.rev(n) for t, n in repo.tagslist() if t == tn])
1107 s = set([cl.rev(n) for t, n in repo.tagslist() if t == tn])
1104 else:
1108 else:
1105 s = set([cl.rev(n) for t, n in repo.tagslist() if t != 'tip'])
1109 s = set([cl.rev(n) for t, n in repo.tagslist() if t != 'tip'])
1106 return [r for r in subset if r in s]
1110 return [r for r in subset if r in s]
1107
1111
1108 def tagged(repo, subset, x):
1112 def tagged(repo, subset, x):
1109 return tag(repo, subset, x)
1113 return tag(repo, subset, x)
1110
1114
1111 def user(repo, subset, x):
1115 def user(repo, subset, x):
1112 """``user(string)``
1116 """``user(string)``
1113 User name contains string. The match is case-insensitive.
1117 User name contains string. The match is case-insensitive.
1114 """
1118 """
1115 return author(repo, subset, x)
1119 return author(repo, subset, x)
1116
1120
1117 # for internal use
1121 # for internal use
1118 def _list(repo, subset, x):
1122 def _list(repo, subset, x):
1119 s = getstring(x, "internal error")
1123 s = getstring(x, "internal error")
1120 if not s:
1124 if not s:
1121 return []
1125 return []
1122 if not isinstance(subset, set):
1126 if not isinstance(subset, set):
1123 subset = set(subset)
1127 subset = set(subset)
1124 ls = [repo[r].rev() for r in s.split('\0')]
1128 ls = [repo[r].rev() for r in s.split('\0')]
1125 return [r for r in ls if r in subset]
1129 return [r for r in ls if r in subset]
1126
1130
1127 symbols = {
1131 symbols = {
1128 "adds": adds,
1132 "adds": adds,
1129 "all": getall,
1133 "all": getall,
1130 "ancestor": ancestor,
1134 "ancestor": ancestor,
1131 "ancestors": ancestors,
1135 "ancestors": ancestors,
1132 "_firstancestors": _firstancestors,
1136 "_firstancestors": _firstancestors,
1133 "author": author,
1137 "author": author,
1134 "bisect": bisect,
1138 "bisect": bisect,
1135 "bisected": bisected,
1139 "bisected": bisected,
1136 "bookmark": bookmark,
1140 "bookmark": bookmark,
1137 "branch": branch,
1141 "branch": branch,
1138 "children": children,
1142 "children": children,
1139 "closed": closed,
1143 "closed": closed,
1140 "contains": contains,
1144 "contains": contains,
1141 "date": date,
1145 "date": date,
1142 "desc": desc,
1146 "desc": desc,
1143 "descendants": descendants,
1147 "descendants": descendants,
1144 "_firstdescendants": _firstdescendants,
1148 "_firstdescendants": _firstdescendants,
1145 "draft": draft,
1149 "draft": draft,
1146 "file": hasfile,
1150 "file": hasfile,
1147 "filelog": filelog,
1151 "filelog": filelog,
1148 "first": first,
1152 "first": first,
1149 "follow": follow,
1153 "follow": follow,
1150 "_followfirst": _followfirst,
1154 "_followfirst": _followfirst,
1151 "grep": grep,
1155 "grep": grep,
1152 "head": head,
1156 "head": head,
1153 "heads": heads,
1157 "heads": heads,
1154 "id": node_,
1158 "id": node_,
1155 "keyword": keyword,
1159 "keyword": keyword,
1156 "last": last,
1160 "last": last,
1157 "limit": limit,
1161 "limit": limit,
1158 "_matchfiles": _matchfiles,
1162 "_matchfiles": _matchfiles,
1159 "max": maxrev,
1163 "max": maxrev,
1160 "merge": merge,
1164 "merge": merge,
1161 "min": minrev,
1165 "min": minrev,
1162 "modifies": modifies,
1166 "modifies": modifies,
1163 "outgoing": outgoing,
1167 "outgoing": outgoing,
1164 "p1": p1,
1168 "p1": p1,
1165 "p2": p2,
1169 "p2": p2,
1166 "parents": parents,
1170 "parents": parents,
1167 "present": present,
1171 "present": present,
1168 "public": public,
1172 "public": public,
1169 "remote": remote,
1173 "remote": remote,
1170 "removes": removes,
1174 "removes": removes,
1171 "rev": rev,
1175 "rev": rev,
1172 "reverse": reverse,
1176 "reverse": reverse,
1173 "roots": roots,
1177 "roots": roots,
1174 "sort": sort,
1178 "sort": sort,
1175 "secret": secret,
1179 "secret": secret,
1176 "matching": matching,
1180 "matching": matching,
1177 "tag": tag,
1181 "tag": tag,
1178 "tagged": tagged,
1182 "tagged": tagged,
1179 "user": user,
1183 "user": user,
1180 "_list": _list,
1184 "_list": _list,
1181 }
1185 }
1182
1186
1183 methods = {
1187 methods = {
1184 "range": rangeset,
1188 "range": rangeset,
1185 "string": stringset,
1189 "string": stringset,
1186 "symbol": symbolset,
1190 "symbol": symbolset,
1187 "and": andset,
1191 "and": andset,
1188 "or": orset,
1192 "or": orset,
1189 "not": notset,
1193 "not": notset,
1190 "list": listset,
1194 "list": listset,
1191 "func": func,
1195 "func": func,
1192 "ancestor": ancestorspec,
1196 "ancestor": ancestorspec,
1193 "parent": parentspec,
1197 "parent": parentspec,
1194 "parentpost": p1,
1198 "parentpost": p1,
1195 }
1199 }
1196
1200
1197 def optimize(x, small):
1201 def optimize(x, small):
1198 if x is None:
1202 if x is None:
1199 return 0, x
1203 return 0, x
1200
1204
1201 smallbonus = 1
1205 smallbonus = 1
1202 if small:
1206 if small:
1203 smallbonus = .5
1207 smallbonus = .5
1204
1208
1205 op = x[0]
1209 op = x[0]
1206 if op == 'minus':
1210 if op == 'minus':
1207 return optimize(('and', x[1], ('not', x[2])), small)
1211 return optimize(('and', x[1], ('not', x[2])), small)
1208 elif op == 'dagrange':
1212 elif op == 'dagrange':
1209 return optimize(('and', ('func', ('symbol', 'descendants'), x[1]),
1213 return optimize(('and', ('func', ('symbol', 'descendants'), x[1]),
1210 ('func', ('symbol', 'ancestors'), x[2])), small)
1214 ('func', ('symbol', 'ancestors'), x[2])), small)
1211 elif op == 'dagrangepre':
1215 elif op == 'dagrangepre':
1212 return optimize(('func', ('symbol', 'ancestors'), x[1]), small)
1216 return optimize(('func', ('symbol', 'ancestors'), x[1]), small)
1213 elif op == 'dagrangepost':
1217 elif op == 'dagrangepost':
1214 return optimize(('func', ('symbol', 'descendants'), x[1]), small)
1218 return optimize(('func', ('symbol', 'descendants'), x[1]), small)
1215 elif op == 'rangepre':
1219 elif op == 'rangepre':
1216 return optimize(('range', ('string', '0'), x[1]), small)
1220 return optimize(('range', ('string', '0'), x[1]), small)
1217 elif op == 'rangepost':
1221 elif op == 'rangepost':
1218 return optimize(('range', x[1], ('string', 'tip')), small)
1222 return optimize(('range', x[1], ('string', 'tip')), small)
1219 elif op == 'negate':
1223 elif op == 'negate':
1220 return optimize(('string',
1224 return optimize(('string',
1221 '-' + getstring(x[1], _("can't negate that"))), small)
1225 '-' + getstring(x[1], _("can't negate that"))), small)
1222 elif op in 'string symbol negate':
1226 elif op in 'string symbol negate':
1223 return smallbonus, x # single revisions are small
1227 return smallbonus, x # single revisions are small
1224 elif op == 'and' or op == 'dagrange':
1228 elif op == 'and' or op == 'dagrange':
1225 wa, ta = optimize(x[1], True)
1229 wa, ta = optimize(x[1], True)
1226 wb, tb = optimize(x[2], True)
1230 wb, tb = optimize(x[2], True)
1227 w = min(wa, wb)
1231 w = min(wa, wb)
1228 if wa > wb:
1232 if wa > wb:
1229 return w, (op, tb, ta)
1233 return w, (op, tb, ta)
1230 return w, (op, ta, tb)
1234 return w, (op, ta, tb)
1231 elif op == 'or':
1235 elif op == 'or':
1232 wa, ta = optimize(x[1], False)
1236 wa, ta = optimize(x[1], False)
1233 wb, tb = optimize(x[2], False)
1237 wb, tb = optimize(x[2], False)
1234 if wb < wa:
1238 if wb < wa:
1235 wb, wa = wa, wb
1239 wb, wa = wa, wb
1236 return max(wa, wb), (op, ta, tb)
1240 return max(wa, wb), (op, ta, tb)
1237 elif op == 'not':
1241 elif op == 'not':
1238 o = optimize(x[1], not small)
1242 o = optimize(x[1], not small)
1239 return o[0], (op, o[1])
1243 return o[0], (op, o[1])
1240 elif op == 'parentpost':
1244 elif op == 'parentpost':
1241 o = optimize(x[1], small)
1245 o = optimize(x[1], small)
1242 return o[0], (op, o[1])
1246 return o[0], (op, o[1])
1243 elif op == 'group':
1247 elif op == 'group':
1244 return optimize(x[1], small)
1248 return optimize(x[1], small)
1245 elif op in 'range list parent ancestorspec':
1249 elif op in 'range list parent ancestorspec':
1246 if op == 'parent':
1250 if op == 'parent':
1247 # x^:y means (x^) : y, not x ^ (:y)
1251 # x^:y means (x^) : y, not x ^ (:y)
1248 post = ('parentpost', x[1])
1252 post = ('parentpost', x[1])
1249 if x[2][0] == 'dagrangepre':
1253 if x[2][0] == 'dagrangepre':
1250 return optimize(('dagrange', post, x[2][1]), small)
1254 return optimize(('dagrange', post, x[2][1]), small)
1251 elif x[2][0] == 'rangepre':
1255 elif x[2][0] == 'rangepre':
1252 return optimize(('range', post, x[2][1]), small)
1256 return optimize(('range', post, x[2][1]), small)
1253
1257
1254 wa, ta = optimize(x[1], small)
1258 wa, ta = optimize(x[1], small)
1255 wb, tb = optimize(x[2], small)
1259 wb, tb = optimize(x[2], small)
1256 return wa + wb, (op, ta, tb)
1260 return wa + wb, (op, ta, tb)
1257 elif op == 'func':
1261 elif op == 'func':
1258 f = getstring(x[1], _("not a symbol"))
1262 f = getstring(x[1], _("not a symbol"))
1259 wa, ta = optimize(x[2], small)
1263 wa, ta = optimize(x[2], small)
1260 if f in ("author branch closed date desc file grep keyword "
1264 if f in ("author branch closed date desc file grep keyword "
1261 "outgoing user"):
1265 "outgoing user"):
1262 w = 10 # slow
1266 w = 10 # slow
1263 elif f in "modifies adds removes":
1267 elif f in "modifies adds removes":
1264 w = 30 # slower
1268 w = 30 # slower
1265 elif f == "contains":
1269 elif f == "contains":
1266 w = 100 # very slow
1270 w = 100 # very slow
1267 elif f == "ancestor":
1271 elif f == "ancestor":
1268 w = 1 * smallbonus
1272 w = 1 * smallbonus
1269 elif f in "reverse limit first":
1273 elif f in "reverse limit first":
1270 w = 0
1274 w = 0
1271 elif f in "sort":
1275 elif f in "sort":
1272 w = 10 # assume most sorts look at changelog
1276 w = 10 # assume most sorts look at changelog
1273 else:
1277 else:
1274 w = 1
1278 w = 1
1275 return w + wa, (op, x[1], ta)
1279 return w + wa, (op, x[1], ta)
1276 return 1, x
1280 return 1, x
1277
1281
1278 class revsetalias(object):
1282 class revsetalias(object):
1279 funcre = re.compile('^([^(]+)\(([^)]+)\)$')
1283 funcre = re.compile('^([^(]+)\(([^)]+)\)$')
1280 args = None
1284 args = None
1281
1285
1282 def __init__(self, name, value):
1286 def __init__(self, name, value):
1283 '''Aliases like:
1287 '''Aliases like:
1284
1288
1285 h = heads(default)
1289 h = heads(default)
1286 b($1) = ancestors($1) - ancestors(default)
1290 b($1) = ancestors($1) - ancestors(default)
1287 '''
1291 '''
1288 m = self.funcre.search(name)
1292 m = self.funcre.search(name)
1289 if m:
1293 if m:
1290 self.name = m.group(1)
1294 self.name = m.group(1)
1291 self.tree = ('func', ('symbol', m.group(1)))
1295 self.tree = ('func', ('symbol', m.group(1)))
1292 self.args = [x.strip() for x in m.group(2).split(',')]
1296 self.args = [x.strip() for x in m.group(2).split(',')]
1293 for arg in self.args:
1297 for arg in self.args:
1294 value = value.replace(arg, repr(arg))
1298 value = value.replace(arg, repr(arg))
1295 else:
1299 else:
1296 self.name = name
1300 self.name = name
1297 self.tree = ('symbol', name)
1301 self.tree = ('symbol', name)
1298
1302
1299 self.replacement, pos = parse(value)
1303 self.replacement, pos = parse(value)
1300 if pos != len(value):
1304 if pos != len(value):
1301 raise error.ParseError(_('invalid token'), pos)
1305 raise error.ParseError(_('invalid token'), pos)
1302
1306
1303 def _getalias(aliases, tree):
1307 def _getalias(aliases, tree):
1304 """If tree looks like an unexpanded alias, return it. Return None
1308 """If tree looks like an unexpanded alias, return it. Return None
1305 otherwise.
1309 otherwise.
1306 """
1310 """
1307 if isinstance(tree, tuple) and tree:
1311 if isinstance(tree, tuple) and tree:
1308 if tree[0] == 'symbol' and len(tree) == 2:
1312 if tree[0] == 'symbol' and len(tree) == 2:
1309 name = tree[1]
1313 name = tree[1]
1310 alias = aliases.get(name)
1314 alias = aliases.get(name)
1311 if alias and alias.args is None and alias.tree == tree:
1315 if alias and alias.args is None and alias.tree == tree:
1312 return alias
1316 return alias
1313 if tree[0] == 'func' and len(tree) > 1:
1317 if tree[0] == 'func' and len(tree) > 1:
1314 if tree[1][0] == 'symbol' and len(tree[1]) == 2:
1318 if tree[1][0] == 'symbol' and len(tree[1]) == 2:
1315 name = tree[1][1]
1319 name = tree[1][1]
1316 alias = aliases.get(name)
1320 alias = aliases.get(name)
1317 if alias and alias.args is not None and alias.tree == tree[:2]:
1321 if alias and alias.args is not None and alias.tree == tree[:2]:
1318 return alias
1322 return alias
1319 return None
1323 return None
1320
1324
1321 def _expandargs(tree, args):
1325 def _expandargs(tree, args):
1322 """Replace all occurences of ('string', name) with the
1326 """Replace all occurences of ('string', name) with the
1323 substitution value of the same name in args, recursively.
1327 substitution value of the same name in args, recursively.
1324 """
1328 """
1325 if not isinstance(tree, tuple):
1329 if not isinstance(tree, tuple):
1326 return tree
1330 return tree
1327 if len(tree) == 2 and tree[0] == 'string':
1331 if len(tree) == 2 and tree[0] == 'string':
1328 return args.get(tree[1], tree)
1332 return args.get(tree[1], tree)
1329 return tuple(_expandargs(t, args) for t in tree)
1333 return tuple(_expandargs(t, args) for t in tree)
1330
1334
1331 def _expandaliases(aliases, tree, expanding):
1335 def _expandaliases(aliases, tree, expanding):
1332 """Expand aliases in tree, recursively.
1336 """Expand aliases in tree, recursively.
1333
1337
1334 'aliases' is a dictionary mapping user defined aliases to
1338 'aliases' is a dictionary mapping user defined aliases to
1335 revsetalias objects.
1339 revsetalias objects.
1336 """
1340 """
1337 if not isinstance(tree, tuple):
1341 if not isinstance(tree, tuple):
1338 # Do not expand raw strings
1342 # Do not expand raw strings
1339 return tree
1343 return tree
1340 alias = _getalias(aliases, tree)
1344 alias = _getalias(aliases, tree)
1341 if alias is not None:
1345 if alias is not None:
1342 if alias in expanding:
1346 if alias in expanding:
1343 raise error.ParseError(_('infinite expansion of revset alias "%s" '
1347 raise error.ParseError(_('infinite expansion of revset alias "%s" '
1344 'detected') % alias.name)
1348 'detected') % alias.name)
1345 expanding.append(alias)
1349 expanding.append(alias)
1346 result = alias.replacement
1350 result = alias.replacement
1347 if alias.args is not None:
1351 if alias.args is not None:
1348 l = getlist(tree[2])
1352 l = getlist(tree[2])
1349 if len(l) != len(alias.args):
1353 if len(l) != len(alias.args):
1350 raise error.ParseError(
1354 raise error.ParseError(
1351 _('invalid number of arguments: %s') % len(l))
1355 _('invalid number of arguments: %s') % len(l))
1352 result = _expandargs(result, dict(zip(alias.args, l)))
1356 result = _expandargs(result, dict(zip(alias.args, l)))
1353 # Recurse in place, the base expression may have been rewritten
1357 # Recurse in place, the base expression may have been rewritten
1354 result = _expandaliases(aliases, result, expanding)
1358 result = _expandaliases(aliases, result, expanding)
1355 expanding.pop()
1359 expanding.pop()
1356 else:
1360 else:
1357 result = tuple(_expandaliases(aliases, t, expanding)
1361 result = tuple(_expandaliases(aliases, t, expanding)
1358 for t in tree)
1362 for t in tree)
1359 return result
1363 return result
1360
1364
1361 def findaliases(ui, tree):
1365 def findaliases(ui, tree):
1362 aliases = {}
1366 aliases = {}
1363 for k, v in ui.configitems('revsetalias'):
1367 for k, v in ui.configitems('revsetalias'):
1364 alias = revsetalias(k, v)
1368 alias = revsetalias(k, v)
1365 aliases[alias.name] = alias
1369 aliases[alias.name] = alias
1366 return _expandaliases(aliases, tree, [])
1370 return _expandaliases(aliases, tree, [])
1367
1371
1368 parse = parser.parser(tokenize, elements).parse
1372 parse = parser.parser(tokenize, elements).parse
1369
1373
1370 def match(ui, spec):
1374 def match(ui, spec):
1371 if not spec:
1375 if not spec:
1372 raise error.ParseError(_("empty query"))
1376 raise error.ParseError(_("empty query"))
1373 tree, pos = parse(spec)
1377 tree, pos = parse(spec)
1374 if (pos != len(spec)):
1378 if (pos != len(spec)):
1375 raise error.ParseError(_("invalid token"), pos)
1379 raise error.ParseError(_("invalid token"), pos)
1376 if ui:
1380 if ui:
1377 tree = findaliases(ui, tree)
1381 tree = findaliases(ui, tree)
1378 weight, tree = optimize(tree, True)
1382 weight, tree = optimize(tree, True)
1379 def mfunc(repo, subset):
1383 def mfunc(repo, subset):
1380 return getset(repo, subset, tree)
1384 return getset(repo, subset, tree)
1381 return mfunc
1385 return mfunc
1382
1386
1383 def formatspec(expr, *args):
1387 def formatspec(expr, *args):
1384 '''
1388 '''
1385 This is a convenience function for using revsets internally, and
1389 This is a convenience function for using revsets internally, and
1386 escapes arguments appropriately. Aliases are intentionally ignored
1390 escapes arguments appropriately. Aliases are intentionally ignored
1387 so that intended expression behavior isn't accidentally subverted.
1391 so that intended expression behavior isn't accidentally subverted.
1388
1392
1389 Supported arguments:
1393 Supported arguments:
1390
1394
1391 %r = revset expression, parenthesized
1395 %r = revset expression, parenthesized
1392 %d = int(arg), no quoting
1396 %d = int(arg), no quoting
1393 %s = string(arg), escaped and single-quoted
1397 %s = string(arg), escaped and single-quoted
1394 %b = arg.branch(), escaped and single-quoted
1398 %b = arg.branch(), escaped and single-quoted
1395 %n = hex(arg), single-quoted
1399 %n = hex(arg), single-quoted
1396 %% = a literal '%'
1400 %% = a literal '%'
1397
1401
1398 Prefixing the type with 'l' specifies a parenthesized list of that type.
1402 Prefixing the type with 'l' specifies a parenthesized list of that type.
1399
1403
1400 >>> formatspec('%r:: and %lr', '10 or 11', ("this()", "that()"))
1404 >>> formatspec('%r:: and %lr', '10 or 11', ("this()", "that()"))
1401 '(10 or 11):: and ((this()) or (that()))'
1405 '(10 or 11):: and ((this()) or (that()))'
1402 >>> formatspec('%d:: and not %d::', 10, 20)
1406 >>> formatspec('%d:: and not %d::', 10, 20)
1403 '10:: and not 20::'
1407 '10:: and not 20::'
1404 >>> formatspec('%ld or %ld', [], [1])
1408 >>> formatspec('%ld or %ld', [], [1])
1405 "_list('') or 1"
1409 "_list('') or 1"
1406 >>> formatspec('keyword(%s)', 'foo\\xe9')
1410 >>> formatspec('keyword(%s)', 'foo\\xe9')
1407 "keyword('foo\\\\xe9')"
1411 "keyword('foo\\\\xe9')"
1408 >>> b = lambda: 'default'
1412 >>> b = lambda: 'default'
1409 >>> b.branch = b
1413 >>> b.branch = b
1410 >>> formatspec('branch(%b)', b)
1414 >>> formatspec('branch(%b)', b)
1411 "branch('default')"
1415 "branch('default')"
1412 >>> formatspec('root(%ls)', ['a', 'b', 'c', 'd'])
1416 >>> formatspec('root(%ls)', ['a', 'b', 'c', 'd'])
1413 "root(_list('a\\x00b\\x00c\\x00d'))"
1417 "root(_list('a\\x00b\\x00c\\x00d'))"
1414 '''
1418 '''
1415
1419
1416 def quote(s):
1420 def quote(s):
1417 return repr(str(s))
1421 return repr(str(s))
1418
1422
1419 def argtype(c, arg):
1423 def argtype(c, arg):
1420 if c == 'd':
1424 if c == 'd':
1421 return str(int(arg))
1425 return str(int(arg))
1422 elif c == 's':
1426 elif c == 's':
1423 return quote(arg)
1427 return quote(arg)
1424 elif c == 'r':
1428 elif c == 'r':
1425 parse(arg) # make sure syntax errors are confined
1429 parse(arg) # make sure syntax errors are confined
1426 return '(%s)' % arg
1430 return '(%s)' % arg
1427 elif c == 'n':
1431 elif c == 'n':
1428 return quote(node.hex(arg))
1432 return quote(node.hex(arg))
1429 elif c == 'b':
1433 elif c == 'b':
1430 return quote(arg.branch())
1434 return quote(arg.branch())
1431
1435
1432 def listexp(s, t):
1436 def listexp(s, t):
1433 l = len(s)
1437 l = len(s)
1434 if l == 0:
1438 if l == 0:
1435 return "_list('')"
1439 return "_list('')"
1436 elif l == 1:
1440 elif l == 1:
1437 return argtype(t, s[0])
1441 return argtype(t, s[0])
1438 elif t == 'd':
1442 elif t == 'd':
1439 return "_list('%s')" % "\0".join(str(int(a)) for a in s)
1443 return "_list('%s')" % "\0".join(str(int(a)) for a in s)
1440 elif t == 's':
1444 elif t == 's':
1441 return "_list('%s')" % "\0".join(s)
1445 return "_list('%s')" % "\0".join(s)
1442 elif t == 'n':
1446 elif t == 'n':
1443 return "_list('%s')" % "\0".join(node.hex(a) for a in s)
1447 return "_list('%s')" % "\0".join(node.hex(a) for a in s)
1444 elif t == 'b':
1448 elif t == 'b':
1445 return "_list('%s')" % "\0".join(a.branch() for a in s)
1449 return "_list('%s')" % "\0".join(a.branch() for a in s)
1446
1450
1447 m = l // 2
1451 m = l // 2
1448 return '(%s or %s)' % (listexp(s[:m], t), listexp(s[m:], t))
1452 return '(%s or %s)' % (listexp(s[:m], t), listexp(s[m:], t))
1449
1453
1450 ret = ''
1454 ret = ''
1451 pos = 0
1455 pos = 0
1452 arg = 0
1456 arg = 0
1453 while pos < len(expr):
1457 while pos < len(expr):
1454 c = expr[pos]
1458 c = expr[pos]
1455 if c == '%':
1459 if c == '%':
1456 pos += 1
1460 pos += 1
1457 d = expr[pos]
1461 d = expr[pos]
1458 if d == '%':
1462 if d == '%':
1459 ret += d
1463 ret += d
1460 elif d in 'dsnbr':
1464 elif d in 'dsnbr':
1461 ret += argtype(d, args[arg])
1465 ret += argtype(d, args[arg])
1462 arg += 1
1466 arg += 1
1463 elif d == 'l':
1467 elif d == 'l':
1464 # a list of some type
1468 # a list of some type
1465 pos += 1
1469 pos += 1
1466 d = expr[pos]
1470 d = expr[pos]
1467 ret += listexp(list(args[arg]), d)
1471 ret += listexp(list(args[arg]), d)
1468 arg += 1
1472 arg += 1
1469 else:
1473 else:
1470 raise util.Abort('unexpected revspec format character %s' % d)
1474 raise util.Abort('unexpected revspec format character %s' % d)
1471 else:
1475 else:
1472 ret += c
1476 ret += c
1473 pos += 1
1477 pos += 1
1474
1478
1475 return ret
1479 return ret
1476
1480
1477 def prettyformat(tree):
1481 def prettyformat(tree):
1478 def _prettyformat(tree, level, lines):
1482 def _prettyformat(tree, level, lines):
1479 if not isinstance(tree, tuple) or tree[0] in ('string', 'symbol'):
1483 if not isinstance(tree, tuple) or tree[0] in ('string', 'symbol'):
1480 lines.append((level, str(tree)))
1484 lines.append((level, str(tree)))
1481 else:
1485 else:
1482 lines.append((level, '(%s' % tree[0]))
1486 lines.append((level, '(%s' % tree[0]))
1483 for s in tree[1:]:
1487 for s in tree[1:]:
1484 _prettyformat(s, level + 1, lines)
1488 _prettyformat(s, level + 1, lines)
1485 lines[-1:] = [(lines[-1][0], lines[-1][1] + ')')]
1489 lines[-1:] = [(lines[-1][0], lines[-1][1] + ')')]
1486
1490
1487 lines = []
1491 lines = []
1488 _prettyformat(tree, 0, lines)
1492 _prettyformat(tree, 0, lines)
1489 output = '\n'.join((' '*l + s) for l, s in lines)
1493 output = '\n'.join((' '*l + s) for l, s in lines)
1490 return output
1494 return output
1491
1495
1492 # tell hggettext to extract docstrings from these functions:
1496 # tell hggettext to extract docstrings from these functions:
1493 i18nfunctions = symbols.values()
1497 i18nfunctions = symbols.values()
General Comments 0
You need to be logged in to leave comments. Login now