##// END OF EJS Templates
revset: add new topographical sort...
Martijn Pieters -
r29348:2188f170 default
parent child Browse files
Show More
@@ -1,482 +1,472
1 # Revision graph generator for Mercurial
1 # Revision graph generator for Mercurial
2 #
2 #
3 # Copyright 2008 Dirkjan Ochtman <dirkjan@ochtman.nl>
3 # Copyright 2008 Dirkjan Ochtman <dirkjan@ochtman.nl>
4 # Copyright 2007 Joel Rosdahl <joel@rosdahl.net>
4 # Copyright 2007 Joel Rosdahl <joel@rosdahl.net>
5 #
5 #
6 # This software may be used and distributed according to the terms of the
6 # This software may be used and distributed according to the terms of the
7 # GNU General Public License version 2 or any later version.
7 # GNU General Public License version 2 or any later version.
8
8
9 """supports walking the history as DAGs suitable for graphical output
9 """supports walking the history as DAGs suitable for graphical output
10
10
11 The most basic format we use is that of::
11 The most basic format we use is that of::
12
12
13 (id, type, data, [parentids])
13 (id, type, data, [parentids])
14
14
15 The node and parent ids are arbitrary integers which identify a node in the
15 The node and parent ids are arbitrary integers which identify a node in the
16 context of the graph returned. Type is a constant specifying the node type.
16 context of the graph returned. Type is a constant specifying the node type.
17 Data depends on type.
17 Data depends on type.
18 """
18 """
19
19
20 from __future__ import absolute_import
20 from __future__ import absolute_import
21
21
22 from .node import nullrev
22 from .node import nullrev
23 from . import (
23 from . import (
24 revset,
24 revset,
25 util,
25 util,
26 )
26 )
27
27
28 CHANGESET = 'C'
28 CHANGESET = 'C'
29 PARENT = 'P'
29 PARENT = 'P'
30 GRANDPARENT = 'G'
30 GRANDPARENT = 'G'
31 MISSINGPARENT = 'M'
31 MISSINGPARENT = 'M'
32 # Style of line to draw. None signals a line that ends and is removed at this
32 # Style of line to draw. None signals a line that ends and is removed at this
33 # point. A number prefix means only the last N characters of the current block
33 # point. A number prefix means only the last N characters of the current block
34 # will use that style, the rest will use the PARENT style. Add a - sign
34 # will use that style, the rest will use the PARENT style. Add a - sign
35 # (so making N negative) and all but the first N characters use that style.
35 # (so making N negative) and all but the first N characters use that style.
36 EDGES = {PARENT: '|', GRANDPARENT: ':', MISSINGPARENT: None}
36 EDGES = {PARENT: '|', GRANDPARENT: ':', MISSINGPARENT: None}
37
37
38 def dagwalker(repo, revs):
38 def dagwalker(repo, revs):
39 """cset DAG generator yielding (id, CHANGESET, ctx, [parentinfo]) tuples
39 """cset DAG generator yielding (id, CHANGESET, ctx, [parentinfo]) tuples
40
40
41 This generator function walks through revisions (which should be ordered
41 This generator function walks through revisions (which should be ordered
42 from bigger to lower). It returns a tuple for each node.
42 from bigger to lower). It returns a tuple for each node.
43
43
44 Each parentinfo entry is a tuple with (edgetype, parentid), where edgetype
44 Each parentinfo entry is a tuple with (edgetype, parentid), where edgetype
45 is one of PARENT, GRANDPARENT or MISSINGPARENT. The node and parent ids
45 is one of PARENT, GRANDPARENT or MISSINGPARENT. The node and parent ids
46 are arbitrary integers which identify a node in the context of the graph
46 are arbitrary integers which identify a node in the context of the graph
47 returned.
47 returned.
48
48
49 """
49 """
50 if not revs:
50 if not revs:
51 return
51 return
52
52
53 gpcache = {}
53 gpcache = {}
54
54
55 if repo.ui.configbool('experimental', 'graph-group-branches', False):
56 firstbranch = ()
57 firstbranchrevset = repo.ui.config(
58 'experimental', 'graph-group-branches.firstbranch', '')
59 if firstbranchrevset:
60 firstbranch = repo.revs(firstbranchrevset)
61 parentrevs = repo.changelog.parentrevs
62 revs = revset.groupbranchiter(revs, parentrevs, firstbranch)
63 revs = revset.baseset(revs)
64
65 for rev in revs:
55 for rev in revs:
66 ctx = repo[rev]
56 ctx = repo[rev]
67 # partition into parents in the rev set and missing parents, then
57 # partition into parents in the rev set and missing parents, then
68 # augment the lists with markers, to inform graph drawing code about
58 # augment the lists with markers, to inform graph drawing code about
69 # what kind of edge to draw between nodes.
59 # what kind of edge to draw between nodes.
70 pset = set(p.rev() for p in ctx.parents() if p.rev() in revs)
60 pset = set(p.rev() for p in ctx.parents() if p.rev() in revs)
71 mpars = [p.rev() for p in ctx.parents()
61 mpars = [p.rev() for p in ctx.parents()
72 if p.rev() != nullrev and p.rev() not in pset]
62 if p.rev() != nullrev and p.rev() not in pset]
73 parents = [(PARENT, p) for p in sorted(pset)]
63 parents = [(PARENT, p) for p in sorted(pset)]
74
64
75 for mpar in mpars:
65 for mpar in mpars:
76 gp = gpcache.get(mpar)
66 gp = gpcache.get(mpar)
77 if gp is None:
67 if gp is None:
78 # precompute slow query as we know reachableroots() goes
68 # precompute slow query as we know reachableroots() goes
79 # through all revs (issue4782)
69 # through all revs (issue4782)
80 if not isinstance(revs, revset.baseset):
70 if not isinstance(revs, revset.baseset):
81 revs = revset.baseset(revs)
71 revs = revset.baseset(revs)
82 gp = gpcache[mpar] = sorted(set(revset.reachableroots(
72 gp = gpcache[mpar] = sorted(set(revset.reachableroots(
83 repo, revs, [mpar])))
73 repo, revs, [mpar])))
84 if not gp:
74 if not gp:
85 parents.append((MISSINGPARENT, mpar))
75 parents.append((MISSINGPARENT, mpar))
86 pset.add(mpar)
76 pset.add(mpar)
87 else:
77 else:
88 parents.extend((GRANDPARENT, g) for g in gp if g not in pset)
78 parents.extend((GRANDPARENT, g) for g in gp if g not in pset)
89 pset.update(gp)
79 pset.update(gp)
90
80
91 yield (ctx.rev(), CHANGESET, ctx, parents)
81 yield (ctx.rev(), CHANGESET, ctx, parents)
92
82
93 def nodes(repo, nodes):
83 def nodes(repo, nodes):
94 """cset DAG generator yielding (id, CHANGESET, ctx, [parentids]) tuples
84 """cset DAG generator yielding (id, CHANGESET, ctx, [parentids]) tuples
95
85
96 This generator function walks the given nodes. It only returns parents
86 This generator function walks the given nodes. It only returns parents
97 that are in nodes, too.
87 that are in nodes, too.
98 """
88 """
99 include = set(nodes)
89 include = set(nodes)
100 for node in nodes:
90 for node in nodes:
101 ctx = repo[node]
91 ctx = repo[node]
102 parents = set((PARENT, p.rev()) for p in ctx.parents()
92 parents = set((PARENT, p.rev()) for p in ctx.parents()
103 if p.node() in include)
93 if p.node() in include)
104 yield (ctx.rev(), CHANGESET, ctx, sorted(parents))
94 yield (ctx.rev(), CHANGESET, ctx, sorted(parents))
105
95
106 def colored(dag, repo):
96 def colored(dag, repo):
107 """annotates a DAG with colored edge information
97 """annotates a DAG with colored edge information
108
98
109 For each DAG node this function emits tuples::
99 For each DAG node this function emits tuples::
110
100
111 (id, type, data, (col, color), [(col, nextcol, color)])
101 (id, type, data, (col, color), [(col, nextcol, color)])
112
102
113 with the following new elements:
103 with the following new elements:
114
104
115 - Tuple (col, color) with column and color index for the current node
105 - Tuple (col, color) with column and color index for the current node
116 - A list of tuples indicating the edges between the current node and its
106 - A list of tuples indicating the edges between the current node and its
117 parents.
107 parents.
118 """
108 """
119 seen = []
109 seen = []
120 colors = {}
110 colors = {}
121 newcolor = 1
111 newcolor = 1
122 config = {}
112 config = {}
123
113
124 for key, val in repo.ui.configitems('graph'):
114 for key, val in repo.ui.configitems('graph'):
125 if '.' in key:
115 if '.' in key:
126 branch, setting = key.rsplit('.', 1)
116 branch, setting = key.rsplit('.', 1)
127 # Validation
117 # Validation
128 if setting == "width" and val.isdigit():
118 if setting == "width" and val.isdigit():
129 config.setdefault(branch, {})[setting] = int(val)
119 config.setdefault(branch, {})[setting] = int(val)
130 elif setting == "color" and val.isalnum():
120 elif setting == "color" and val.isalnum():
131 config.setdefault(branch, {})[setting] = val
121 config.setdefault(branch, {})[setting] = val
132
122
133 if config:
123 if config:
134 getconf = util.lrucachefunc(
124 getconf = util.lrucachefunc(
135 lambda rev: config.get(repo[rev].branch(), {}))
125 lambda rev: config.get(repo[rev].branch(), {}))
136 else:
126 else:
137 getconf = lambda rev: {}
127 getconf = lambda rev: {}
138
128
139 for (cur, type, data, parents) in dag:
129 for (cur, type, data, parents) in dag:
140
130
141 # Compute seen and next
131 # Compute seen and next
142 if cur not in seen:
132 if cur not in seen:
143 seen.append(cur) # new head
133 seen.append(cur) # new head
144 colors[cur] = newcolor
134 colors[cur] = newcolor
145 newcolor += 1
135 newcolor += 1
146
136
147 col = seen.index(cur)
137 col = seen.index(cur)
148 color = colors.pop(cur)
138 color = colors.pop(cur)
149 next = seen[:]
139 next = seen[:]
150
140
151 # Add parents to next
141 # Add parents to next
152 addparents = [p for pt, p in parents if p not in next]
142 addparents = [p for pt, p in parents if p not in next]
153 next[col:col + 1] = addparents
143 next[col:col + 1] = addparents
154
144
155 # Set colors for the parents
145 # Set colors for the parents
156 for i, p in enumerate(addparents):
146 for i, p in enumerate(addparents):
157 if not i:
147 if not i:
158 colors[p] = color
148 colors[p] = color
159 else:
149 else:
160 colors[p] = newcolor
150 colors[p] = newcolor
161 newcolor += 1
151 newcolor += 1
162
152
163 # Add edges to the graph
153 # Add edges to the graph
164 edges = []
154 edges = []
165 for ecol, eid in enumerate(seen):
155 for ecol, eid in enumerate(seen):
166 if eid in next:
156 if eid in next:
167 bconf = getconf(eid)
157 bconf = getconf(eid)
168 edges.append((
158 edges.append((
169 ecol, next.index(eid), colors[eid],
159 ecol, next.index(eid), colors[eid],
170 bconf.get('width', -1),
160 bconf.get('width', -1),
171 bconf.get('color', '')))
161 bconf.get('color', '')))
172 elif eid == cur:
162 elif eid == cur:
173 for ptype, p in parents:
163 for ptype, p in parents:
174 bconf = getconf(p)
164 bconf = getconf(p)
175 edges.append((
165 edges.append((
176 ecol, next.index(p), color,
166 ecol, next.index(p), color,
177 bconf.get('width', -1),
167 bconf.get('width', -1),
178 bconf.get('color', '')))
168 bconf.get('color', '')))
179
169
180 # Yield and move on
170 # Yield and move on
181 yield (cur, type, data, (col, color), edges)
171 yield (cur, type, data, (col, color), edges)
182 seen = next
172 seen = next
183
173
184 def asciiedges(type, char, lines, state, rev, parents):
174 def asciiedges(type, char, lines, state, rev, parents):
185 """adds edge info to changelog DAG walk suitable for ascii()"""
175 """adds edge info to changelog DAG walk suitable for ascii()"""
186 seen = state['seen']
176 seen = state['seen']
187 if rev not in seen:
177 if rev not in seen:
188 seen.append(rev)
178 seen.append(rev)
189 nodeidx = seen.index(rev)
179 nodeidx = seen.index(rev)
190
180
191 knownparents = []
181 knownparents = []
192 newparents = []
182 newparents = []
193 for ptype, parent in parents:
183 for ptype, parent in parents:
194 if parent in seen:
184 if parent in seen:
195 knownparents.append(parent)
185 knownparents.append(parent)
196 else:
186 else:
197 newparents.append(parent)
187 newparents.append(parent)
198 state['edges'][parent] = state['styles'].get(ptype, '|')
188 state['edges'][parent] = state['styles'].get(ptype, '|')
199
189
200 ncols = len(seen)
190 ncols = len(seen)
201 nextseen = seen[:]
191 nextseen = seen[:]
202 nextseen[nodeidx:nodeidx + 1] = newparents
192 nextseen[nodeidx:nodeidx + 1] = newparents
203 edges = [(nodeidx, nextseen.index(p))
193 edges = [(nodeidx, nextseen.index(p))
204 for p in knownparents if p != nullrev]
194 for p in knownparents if p != nullrev]
205
195
206 seen[:] = nextseen
196 seen[:] = nextseen
207 while len(newparents) > 2:
197 while len(newparents) > 2:
208 # ascii() only knows how to add or remove a single column between two
198 # ascii() only knows how to add or remove a single column between two
209 # calls. Nodes with more than two parents break this constraint so we
199 # calls. Nodes with more than two parents break this constraint so we
210 # introduce intermediate expansion lines to grow the active node list
200 # introduce intermediate expansion lines to grow the active node list
211 # slowly.
201 # slowly.
212 edges.append((nodeidx, nodeidx))
202 edges.append((nodeidx, nodeidx))
213 edges.append((nodeidx, nodeidx + 1))
203 edges.append((nodeidx, nodeidx + 1))
214 nmorecols = 1
204 nmorecols = 1
215 yield (type, char, lines, (nodeidx, edges, ncols, nmorecols))
205 yield (type, char, lines, (nodeidx, edges, ncols, nmorecols))
216 char = '\\'
206 char = '\\'
217 lines = []
207 lines = []
218 nodeidx += 1
208 nodeidx += 1
219 ncols += 1
209 ncols += 1
220 edges = []
210 edges = []
221 del newparents[0]
211 del newparents[0]
222
212
223 if len(newparents) > 0:
213 if len(newparents) > 0:
224 edges.append((nodeidx, nodeidx))
214 edges.append((nodeidx, nodeidx))
225 if len(newparents) > 1:
215 if len(newparents) > 1:
226 edges.append((nodeidx, nodeidx + 1))
216 edges.append((nodeidx, nodeidx + 1))
227 nmorecols = len(nextseen) - ncols
217 nmorecols = len(nextseen) - ncols
228 # remove current node from edge characters, no longer needed
218 # remove current node from edge characters, no longer needed
229 state['edges'].pop(rev, None)
219 state['edges'].pop(rev, None)
230 yield (type, char, lines, (nodeidx, edges, ncols, nmorecols))
220 yield (type, char, lines, (nodeidx, edges, ncols, nmorecols))
231
221
232 def _fixlongrightedges(edges):
222 def _fixlongrightedges(edges):
233 for (i, (start, end)) in enumerate(edges):
223 for (i, (start, end)) in enumerate(edges):
234 if end > start:
224 if end > start:
235 edges[i] = (start, end + 1)
225 edges[i] = (start, end + 1)
236
226
237 def _getnodelineedgestail(
227 def _getnodelineedgestail(
238 echars, idx, pidx, ncols, coldiff, pdiff, fix_tail):
228 echars, idx, pidx, ncols, coldiff, pdiff, fix_tail):
239 if fix_tail and coldiff == pdiff and coldiff != 0:
229 if fix_tail and coldiff == pdiff and coldiff != 0:
240 # Still going in the same non-vertical direction.
230 # Still going in the same non-vertical direction.
241 if coldiff == -1:
231 if coldiff == -1:
242 start = max(idx + 1, pidx)
232 start = max(idx + 1, pidx)
243 tail = echars[idx * 2:(start - 1) * 2]
233 tail = echars[idx * 2:(start - 1) * 2]
244 tail.extend(["/", " "] * (ncols - start))
234 tail.extend(["/", " "] * (ncols - start))
245 return tail
235 return tail
246 else:
236 else:
247 return ["\\", " "] * (ncols - idx - 1)
237 return ["\\", " "] * (ncols - idx - 1)
248 else:
238 else:
249 remainder = (ncols - idx - 1)
239 remainder = (ncols - idx - 1)
250 return echars[-(remainder * 2):] if remainder > 0 else []
240 return echars[-(remainder * 2):] if remainder > 0 else []
251
241
252 def _drawedges(echars, edges, nodeline, interline):
242 def _drawedges(echars, edges, nodeline, interline):
253 for (start, end) in edges:
243 for (start, end) in edges:
254 if start == end + 1:
244 if start == end + 1:
255 interline[2 * end + 1] = "/"
245 interline[2 * end + 1] = "/"
256 elif start == end - 1:
246 elif start == end - 1:
257 interline[2 * start + 1] = "\\"
247 interline[2 * start + 1] = "\\"
258 elif start == end:
248 elif start == end:
259 interline[2 * start] = echars[2 * start]
249 interline[2 * start] = echars[2 * start]
260 else:
250 else:
261 if 2 * end >= len(nodeline):
251 if 2 * end >= len(nodeline):
262 continue
252 continue
263 nodeline[2 * end] = "+"
253 nodeline[2 * end] = "+"
264 if start > end:
254 if start > end:
265 (start, end) = (end, start)
255 (start, end) = (end, start)
266 for i in range(2 * start + 1, 2 * end):
256 for i in range(2 * start + 1, 2 * end):
267 if nodeline[i] != "+":
257 if nodeline[i] != "+":
268 nodeline[i] = "-"
258 nodeline[i] = "-"
269
259
270 def _getpaddingline(echars, idx, ncols, edges):
260 def _getpaddingline(echars, idx, ncols, edges):
271 # all edges up to the current node
261 # all edges up to the current node
272 line = echars[:idx * 2]
262 line = echars[:idx * 2]
273 # an edge for the current node, if there is one
263 # an edge for the current node, if there is one
274 if (idx, idx - 1) in edges or (idx, idx) in edges:
264 if (idx, idx - 1) in edges or (idx, idx) in edges:
275 # (idx, idx - 1) (idx, idx)
265 # (idx, idx - 1) (idx, idx)
276 # | | | | | | | |
266 # | | | | | | | |
277 # +---o | | o---+
267 # +---o | | o---+
278 # | | X | | X | |
268 # | | X | | X | |
279 # | |/ / | |/ /
269 # | |/ / | |/ /
280 # | | | | | |
270 # | | | | | |
281 line.extend(echars[idx * 2:(idx + 1) * 2])
271 line.extend(echars[idx * 2:(idx + 1) * 2])
282 else:
272 else:
283 line.extend(' ')
273 line.extend(' ')
284 # all edges to the right of the current node
274 # all edges to the right of the current node
285 remainder = ncols - idx - 1
275 remainder = ncols - idx - 1
286 if remainder > 0:
276 if remainder > 0:
287 line.extend(echars[-(remainder * 2):])
277 line.extend(echars[-(remainder * 2):])
288 return line
278 return line
289
279
290 def _drawendinglines(lines, extra, edgemap, seen):
280 def _drawendinglines(lines, extra, edgemap, seen):
291 """Draw ending lines for missing parent edges
281 """Draw ending lines for missing parent edges
292
282
293 None indicates an edge that ends at between this node and the next
283 None indicates an edge that ends at between this node and the next
294 Replace with a short line ending in ~ and add / lines to any edges to
284 Replace with a short line ending in ~ and add / lines to any edges to
295 the right.
285 the right.
296
286
297 """
287 """
298 if None not in edgemap.values():
288 if None not in edgemap.values():
299 return
289 return
300
290
301 # Check for more edges to the right of our ending edges.
291 # Check for more edges to the right of our ending edges.
302 # We need enough space to draw adjustment lines for these.
292 # We need enough space to draw adjustment lines for these.
303 edgechars = extra[::2]
293 edgechars = extra[::2]
304 while edgechars and edgechars[-1] is None:
294 while edgechars and edgechars[-1] is None:
305 edgechars.pop()
295 edgechars.pop()
306 shift_size = max((edgechars.count(None) * 2) - 1, 0)
296 shift_size = max((edgechars.count(None) * 2) - 1, 0)
307 while len(lines) < 3 + shift_size:
297 while len(lines) < 3 + shift_size:
308 lines.append(extra[:])
298 lines.append(extra[:])
309
299
310 if shift_size:
300 if shift_size:
311 empties = []
301 empties = []
312 toshift = []
302 toshift = []
313 first_empty = extra.index(None)
303 first_empty = extra.index(None)
314 for i, c in enumerate(extra[first_empty::2], first_empty // 2):
304 for i, c in enumerate(extra[first_empty::2], first_empty // 2):
315 if c is None:
305 if c is None:
316 empties.append(i * 2)
306 empties.append(i * 2)
317 else:
307 else:
318 toshift.append(i * 2)
308 toshift.append(i * 2)
319 targets = list(range(first_empty, first_empty + len(toshift) * 2, 2))
309 targets = list(range(first_empty, first_empty + len(toshift) * 2, 2))
320 positions = toshift[:]
310 positions = toshift[:]
321 for line in lines[-shift_size:]:
311 for line in lines[-shift_size:]:
322 line[first_empty:] = [' '] * (len(line) - first_empty)
312 line[first_empty:] = [' '] * (len(line) - first_empty)
323 for i in range(len(positions)):
313 for i in range(len(positions)):
324 pos = positions[i] - 1
314 pos = positions[i] - 1
325 positions[i] = max(pos, targets[i])
315 positions[i] = max(pos, targets[i])
326 line[pos] = '/' if pos > targets[i] else extra[toshift[i]]
316 line[pos] = '/' if pos > targets[i] else extra[toshift[i]]
327
317
328 map = {1: '|', 2: '~'}
318 map = {1: '|', 2: '~'}
329 for i, line in enumerate(lines):
319 for i, line in enumerate(lines):
330 if None not in line:
320 if None not in line:
331 continue
321 continue
332 line[:] = [c or map.get(i, ' ') for c in line]
322 line[:] = [c or map.get(i, ' ') for c in line]
333
323
334 # remove edges that ended
324 # remove edges that ended
335 remove = [p for p, c in edgemap.items() if c is None]
325 remove = [p for p, c in edgemap.items() if c is None]
336 for parent in remove:
326 for parent in remove:
337 del edgemap[parent]
327 del edgemap[parent]
338 seen.remove(parent)
328 seen.remove(parent)
339
329
340 def asciistate():
330 def asciistate():
341 """returns the initial value for the "state" argument to ascii()"""
331 """returns the initial value for the "state" argument to ascii()"""
342 return {
332 return {
343 'seen': [],
333 'seen': [],
344 'edges': {},
334 'edges': {},
345 'lastcoldiff': 0,
335 'lastcoldiff': 0,
346 'lastindex': 0,
336 'lastindex': 0,
347 'styles': EDGES.copy(),
337 'styles': EDGES.copy(),
348 'graphshorten': False,
338 'graphshorten': False,
349 }
339 }
350
340
351 def ascii(ui, state, type, char, text, coldata):
341 def ascii(ui, state, type, char, text, coldata):
352 """prints an ASCII graph of the DAG
342 """prints an ASCII graph of the DAG
353
343
354 takes the following arguments (one call per node in the graph):
344 takes the following arguments (one call per node in the graph):
355
345
356 - ui to write to
346 - ui to write to
357 - Somewhere to keep the needed state in (init to asciistate())
347 - Somewhere to keep the needed state in (init to asciistate())
358 - Column of the current node in the set of ongoing edges.
348 - Column of the current node in the set of ongoing edges.
359 - Type indicator of node data, usually 'C' for changesets.
349 - Type indicator of node data, usually 'C' for changesets.
360 - Payload: (char, lines):
350 - Payload: (char, lines):
361 - Character to use as node's symbol.
351 - Character to use as node's symbol.
362 - List of lines to display as the node's text.
352 - List of lines to display as the node's text.
363 - Edges; a list of (col, next_col) indicating the edges between
353 - Edges; a list of (col, next_col) indicating the edges between
364 the current node and its parents.
354 the current node and its parents.
365 - Number of columns (ongoing edges) in the current revision.
355 - Number of columns (ongoing edges) in the current revision.
366 - The difference between the number of columns (ongoing edges)
356 - The difference between the number of columns (ongoing edges)
367 in the next revision and the number of columns (ongoing edges)
357 in the next revision and the number of columns (ongoing edges)
368 in the current revision. That is: -1 means one column removed;
358 in the current revision. That is: -1 means one column removed;
369 0 means no columns added or removed; 1 means one column added.
359 0 means no columns added or removed; 1 means one column added.
370 """
360 """
371 idx, edges, ncols, coldiff = coldata
361 idx, edges, ncols, coldiff = coldata
372 assert -2 < coldiff < 2
362 assert -2 < coldiff < 2
373
363
374 edgemap, seen = state['edges'], state['seen']
364 edgemap, seen = state['edges'], state['seen']
375 # Be tolerant of history issues; make sure we have at least ncols + coldiff
365 # Be tolerant of history issues; make sure we have at least ncols + coldiff
376 # elements to work with. See test-glog.t for broken history test cases.
366 # elements to work with. See test-glog.t for broken history test cases.
377 echars = [c for p in seen for c in (edgemap.get(p, '|'), ' ')]
367 echars = [c for p in seen for c in (edgemap.get(p, '|'), ' ')]
378 echars.extend(('|', ' ') * max(ncols + coldiff - len(seen), 0))
368 echars.extend(('|', ' ') * max(ncols + coldiff - len(seen), 0))
379
369
380 if coldiff == -1:
370 if coldiff == -1:
381 # Transform
371 # Transform
382 #
372 #
383 # | | | | | |
373 # | | | | | |
384 # o | | into o---+
374 # o | | into o---+
385 # |X / |/ /
375 # |X / |/ /
386 # | | | |
376 # | | | |
387 _fixlongrightedges(edges)
377 _fixlongrightedges(edges)
388
378
389 # add_padding_line says whether to rewrite
379 # add_padding_line says whether to rewrite
390 #
380 #
391 # | | | | | | | |
381 # | | | | | | | |
392 # | o---+ into | o---+
382 # | o---+ into | o---+
393 # | / / | | | # <--- padding line
383 # | / / | | | # <--- padding line
394 # o | | | / /
384 # o | | | / /
395 # o | |
385 # o | |
396 add_padding_line = (len(text) > 2 and coldiff == -1 and
386 add_padding_line = (len(text) > 2 and coldiff == -1 and
397 [x for (x, y) in edges if x + 1 < y])
387 [x for (x, y) in edges if x + 1 < y])
398
388
399 # fix_nodeline_tail says whether to rewrite
389 # fix_nodeline_tail says whether to rewrite
400 #
390 #
401 # | | o | | | | o | |
391 # | | o | | | | o | |
402 # | | |/ / | | |/ /
392 # | | |/ / | | |/ /
403 # | o | | into | o / / # <--- fixed nodeline tail
393 # | o | | into | o / / # <--- fixed nodeline tail
404 # | |/ / | |/ /
394 # | |/ / | |/ /
405 # o | | o | |
395 # o | | o | |
406 fix_nodeline_tail = len(text) <= 2 and not add_padding_line
396 fix_nodeline_tail = len(text) <= 2 and not add_padding_line
407
397
408 # nodeline is the line containing the node character (typically o)
398 # nodeline is the line containing the node character (typically o)
409 nodeline = echars[:idx * 2]
399 nodeline = echars[:idx * 2]
410 nodeline.extend([char, " "])
400 nodeline.extend([char, " "])
411
401
412 nodeline.extend(
402 nodeline.extend(
413 _getnodelineedgestail(
403 _getnodelineedgestail(
414 echars, idx, state['lastindex'], ncols, coldiff,
404 echars, idx, state['lastindex'], ncols, coldiff,
415 state['lastcoldiff'], fix_nodeline_tail))
405 state['lastcoldiff'], fix_nodeline_tail))
416
406
417 # shift_interline is the line containing the non-vertical
407 # shift_interline is the line containing the non-vertical
418 # edges between this entry and the next
408 # edges between this entry and the next
419 shift_interline = echars[:idx * 2]
409 shift_interline = echars[:idx * 2]
420 shift_interline.extend(' ' * (2 + coldiff))
410 shift_interline.extend(' ' * (2 + coldiff))
421 count = ncols - idx - 1
411 count = ncols - idx - 1
422 if coldiff == -1:
412 if coldiff == -1:
423 shift_interline.extend('/ ' * count)
413 shift_interline.extend('/ ' * count)
424 elif coldiff == 0:
414 elif coldiff == 0:
425 shift_interline.extend(echars[(idx + 1) * 2:ncols * 2])
415 shift_interline.extend(echars[(idx + 1) * 2:ncols * 2])
426 else:
416 else:
427 shift_interline.extend(r'\ ' * count)
417 shift_interline.extend(r'\ ' * count)
428
418
429 # draw edges from the current node to its parents
419 # draw edges from the current node to its parents
430 _drawedges(echars, edges, nodeline, shift_interline)
420 _drawedges(echars, edges, nodeline, shift_interline)
431
421
432 # lines is the list of all graph lines to print
422 # lines is the list of all graph lines to print
433 lines = [nodeline]
423 lines = [nodeline]
434 if add_padding_line:
424 if add_padding_line:
435 lines.append(_getpaddingline(echars, idx, ncols, edges))
425 lines.append(_getpaddingline(echars, idx, ncols, edges))
436
426
437 # If 'graphshorten' config, only draw shift_interline
427 # If 'graphshorten' config, only draw shift_interline
438 # when there is any non vertical flow in graph.
428 # when there is any non vertical flow in graph.
439 if state['graphshorten']:
429 if state['graphshorten']:
440 if any(c in '\/' for c in shift_interline if c):
430 if any(c in '\/' for c in shift_interline if c):
441 lines.append(shift_interline)
431 lines.append(shift_interline)
442 # Else, no 'graphshorten' config so draw shift_interline.
432 # Else, no 'graphshorten' config so draw shift_interline.
443 else:
433 else:
444 lines.append(shift_interline)
434 lines.append(shift_interline)
445
435
446 # make sure that there are as many graph lines as there are
436 # make sure that there are as many graph lines as there are
447 # log strings
437 # log strings
448 extra_interline = echars[:(ncols + coldiff) * 2]
438 extra_interline = echars[:(ncols + coldiff) * 2]
449 if len(lines) < len(text):
439 if len(lines) < len(text):
450 while len(lines) < len(text):
440 while len(lines) < len(text):
451 lines.append(extra_interline[:])
441 lines.append(extra_interline[:])
452
442
453 _drawendinglines(lines, extra_interline, edgemap, seen)
443 _drawendinglines(lines, extra_interline, edgemap, seen)
454
444
455 while len(text) < len(lines):
445 while len(text) < len(lines):
456 text.append("")
446 text.append("")
457
447
458 if any(len(char) > 1 for char in edgemap.values()):
448 if any(len(char) > 1 for char in edgemap.values()):
459 # limit drawing an edge to the first or last N lines of the current
449 # limit drawing an edge to the first or last N lines of the current
460 # section the rest of the edge is drawn like a parent line.
450 # section the rest of the edge is drawn like a parent line.
461 parent = state['styles'][PARENT][-1]
451 parent = state['styles'][PARENT][-1]
462 def _drawgp(char, i):
452 def _drawgp(char, i):
463 # should a grandparent character be drawn for this line?
453 # should a grandparent character be drawn for this line?
464 if len(char) < 2:
454 if len(char) < 2:
465 return True
455 return True
466 num = int(char[:-1])
456 num = int(char[:-1])
467 # either skip first num lines or take last num lines, based on sign
457 # either skip first num lines or take last num lines, based on sign
468 return -num <= i if num < 0 else (len(lines) - i) <= num
458 return -num <= i if num < 0 else (len(lines) - i) <= num
469 for i, line in enumerate(lines):
459 for i, line in enumerate(lines):
470 line[:] = [c[-1] if _drawgp(c, i) else parent for c in line]
460 line[:] = [c[-1] if _drawgp(c, i) else parent for c in line]
471 edgemap.update(
461 edgemap.update(
472 (e, (c if len(c) < 2 else parent)) for e, c in edgemap.items())
462 (e, (c if len(c) < 2 else parent)) for e, c in edgemap.items())
473
463
474 # print lines
464 # print lines
475 indentation_level = max(ncols, ncols + coldiff)
465 indentation_level = max(ncols, ncols + coldiff)
476 for (line, logstr) in zip(lines, text):
466 for (line, logstr) in zip(lines, text):
477 ln = "%-*s %s" % (2 * indentation_level, "".join(line), logstr)
467 ln = "%-*s %s" % (2 * indentation_level, "".join(line), logstr)
478 ui.write(ln.rstrip() + '\n')
468 ui.write(ln.rstrip() + '\n')
479
469
480 # ... and start over
470 # ... and start over
481 state['lastcoldiff'] = coldiff
471 state['lastcoldiff'] = coldiff
482 state['lastindex'] = idx
472 state['lastindex'] = idx
@@ -1,3634 +1,3663
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 from __future__ import absolute_import
8 from __future__ import absolute_import
9
9
10 import heapq
10 import heapq
11 import re
11 import re
12
12
13 from .i18n import _
13 from .i18n import _
14 from . import (
14 from . import (
15 destutil,
15 destutil,
16 encoding,
16 encoding,
17 error,
17 error,
18 hbisect,
18 hbisect,
19 match as matchmod,
19 match as matchmod,
20 node,
20 node,
21 obsolete as obsmod,
21 obsolete as obsmod,
22 parser,
22 parser,
23 pathutil,
23 pathutil,
24 phases,
24 phases,
25 registrar,
25 registrar,
26 repoview,
26 repoview,
27 util,
27 util,
28 )
28 )
29
29
30 def _revancestors(repo, revs, followfirst):
30 def _revancestors(repo, revs, followfirst):
31 """Like revlog.ancestors(), but supports followfirst."""
31 """Like revlog.ancestors(), but supports followfirst."""
32 if followfirst:
32 if followfirst:
33 cut = 1
33 cut = 1
34 else:
34 else:
35 cut = None
35 cut = None
36 cl = repo.changelog
36 cl = repo.changelog
37
37
38 def iterate():
38 def iterate():
39 revs.sort(reverse=True)
39 revs.sort(reverse=True)
40 irevs = iter(revs)
40 irevs = iter(revs)
41 h = []
41 h = []
42
42
43 inputrev = next(irevs, None)
43 inputrev = next(irevs, None)
44 if inputrev is not None:
44 if inputrev is not None:
45 heapq.heappush(h, -inputrev)
45 heapq.heappush(h, -inputrev)
46
46
47 seen = set()
47 seen = set()
48 while h:
48 while h:
49 current = -heapq.heappop(h)
49 current = -heapq.heappop(h)
50 if current == inputrev:
50 if current == inputrev:
51 inputrev = next(irevs, None)
51 inputrev = next(irevs, None)
52 if inputrev is not None:
52 if inputrev is not None:
53 heapq.heappush(h, -inputrev)
53 heapq.heappush(h, -inputrev)
54 if current not in seen:
54 if current not in seen:
55 seen.add(current)
55 seen.add(current)
56 yield current
56 yield current
57 for parent in cl.parentrevs(current)[:cut]:
57 for parent in cl.parentrevs(current)[:cut]:
58 if parent != node.nullrev:
58 if parent != node.nullrev:
59 heapq.heappush(h, -parent)
59 heapq.heappush(h, -parent)
60
60
61 return generatorset(iterate(), iterasc=False)
61 return generatorset(iterate(), iterasc=False)
62
62
63 def _revdescendants(repo, revs, followfirst):
63 def _revdescendants(repo, revs, followfirst):
64 """Like revlog.descendants() but supports followfirst."""
64 """Like revlog.descendants() but supports followfirst."""
65 if followfirst:
65 if followfirst:
66 cut = 1
66 cut = 1
67 else:
67 else:
68 cut = None
68 cut = None
69
69
70 def iterate():
70 def iterate():
71 cl = repo.changelog
71 cl = repo.changelog
72 # XXX this should be 'parentset.min()' assuming 'parentset' is a
72 # XXX this should be 'parentset.min()' assuming 'parentset' is a
73 # smartset (and if it is not, it should.)
73 # smartset (and if it is not, it should.)
74 first = min(revs)
74 first = min(revs)
75 nullrev = node.nullrev
75 nullrev = node.nullrev
76 if first == nullrev:
76 if first == nullrev:
77 # Are there nodes with a null first parent and a non-null
77 # Are there nodes with a null first parent and a non-null
78 # second one? Maybe. Do we care? Probably not.
78 # second one? Maybe. Do we care? Probably not.
79 for i in cl:
79 for i in cl:
80 yield i
80 yield i
81 else:
81 else:
82 seen = set(revs)
82 seen = set(revs)
83 for i in cl.revs(first + 1):
83 for i in cl.revs(first + 1):
84 for x in cl.parentrevs(i)[:cut]:
84 for x in cl.parentrevs(i)[:cut]:
85 if x != nullrev and x in seen:
85 if x != nullrev and x in seen:
86 seen.add(i)
86 seen.add(i)
87 yield i
87 yield i
88 break
88 break
89
89
90 return generatorset(iterate(), iterasc=True)
90 return generatorset(iterate(), iterasc=True)
91
91
92 def _reachablerootspure(repo, minroot, roots, heads, includepath):
92 def _reachablerootspure(repo, minroot, roots, heads, includepath):
93 """return (heads(::<roots> and ::<heads>))
93 """return (heads(::<roots> and ::<heads>))
94
94
95 If includepath is True, return (<roots>::<heads>)."""
95 If includepath is True, return (<roots>::<heads>)."""
96 if not roots:
96 if not roots:
97 return []
97 return []
98 parentrevs = repo.changelog.parentrevs
98 parentrevs = repo.changelog.parentrevs
99 roots = set(roots)
99 roots = set(roots)
100 visit = list(heads)
100 visit = list(heads)
101 reachable = set()
101 reachable = set()
102 seen = {}
102 seen = {}
103 # prefetch all the things! (because python is slow)
103 # prefetch all the things! (because python is slow)
104 reached = reachable.add
104 reached = reachable.add
105 dovisit = visit.append
105 dovisit = visit.append
106 nextvisit = visit.pop
106 nextvisit = visit.pop
107 # open-code the post-order traversal due to the tiny size of
107 # open-code the post-order traversal due to the tiny size of
108 # sys.getrecursionlimit()
108 # sys.getrecursionlimit()
109 while visit:
109 while visit:
110 rev = nextvisit()
110 rev = nextvisit()
111 if rev in roots:
111 if rev in roots:
112 reached(rev)
112 reached(rev)
113 if not includepath:
113 if not includepath:
114 continue
114 continue
115 parents = parentrevs(rev)
115 parents = parentrevs(rev)
116 seen[rev] = parents
116 seen[rev] = parents
117 for parent in parents:
117 for parent in parents:
118 if parent >= minroot and parent not in seen:
118 if parent >= minroot and parent not in seen:
119 dovisit(parent)
119 dovisit(parent)
120 if not reachable:
120 if not reachable:
121 return baseset()
121 return baseset()
122 if not includepath:
122 if not includepath:
123 return reachable
123 return reachable
124 for rev in sorted(seen):
124 for rev in sorted(seen):
125 for parent in seen[rev]:
125 for parent in seen[rev]:
126 if parent in reachable:
126 if parent in reachable:
127 reached(rev)
127 reached(rev)
128 return reachable
128 return reachable
129
129
130 def reachableroots(repo, roots, heads, includepath=False):
130 def reachableroots(repo, roots, heads, includepath=False):
131 """return (heads(::<roots> and ::<heads>))
131 """return (heads(::<roots> and ::<heads>))
132
132
133 If includepath is True, return (<roots>::<heads>)."""
133 If includepath is True, return (<roots>::<heads>)."""
134 if not roots:
134 if not roots:
135 return baseset()
135 return baseset()
136 minroot = roots.min()
136 minroot = roots.min()
137 roots = list(roots)
137 roots = list(roots)
138 heads = list(heads)
138 heads = list(heads)
139 try:
139 try:
140 revs = repo.changelog.reachableroots(minroot, heads, roots, includepath)
140 revs = repo.changelog.reachableroots(minroot, heads, roots, includepath)
141 except AttributeError:
141 except AttributeError:
142 revs = _reachablerootspure(repo, minroot, roots, heads, includepath)
142 revs = _reachablerootspure(repo, minroot, roots, heads, includepath)
143 revs = baseset(revs)
143 revs = baseset(revs)
144 revs.sort()
144 revs.sort()
145 return revs
145 return revs
146
146
147 elements = {
147 elements = {
148 # token-type: binding-strength, primary, prefix, infix, suffix
148 # token-type: binding-strength, primary, prefix, infix, suffix
149 "(": (21, None, ("group", 1, ")"), ("func", 1, ")"), None),
149 "(": (21, None, ("group", 1, ")"), ("func", 1, ")"), None),
150 "##": (20, None, None, ("_concat", 20), None),
150 "##": (20, None, None, ("_concat", 20), None),
151 "~": (18, None, None, ("ancestor", 18), None),
151 "~": (18, None, None, ("ancestor", 18), None),
152 "^": (18, None, None, ("parent", 18), ("parentpost", 18)),
152 "^": (18, None, None, ("parent", 18), ("parentpost", 18)),
153 "-": (5, None, ("negate", 19), ("minus", 5), None),
153 "-": (5, None, ("negate", 19), ("minus", 5), None),
154 "::": (17, None, ("dagrangepre", 17), ("dagrange", 17),
154 "::": (17, None, ("dagrangepre", 17), ("dagrange", 17),
155 ("dagrangepost", 17)),
155 ("dagrangepost", 17)),
156 "..": (17, None, ("dagrangepre", 17), ("dagrange", 17),
156 "..": (17, None, ("dagrangepre", 17), ("dagrange", 17),
157 ("dagrangepost", 17)),
157 ("dagrangepost", 17)),
158 ":": (15, "rangeall", ("rangepre", 15), ("range", 15), ("rangepost", 15)),
158 ":": (15, "rangeall", ("rangepre", 15), ("range", 15), ("rangepost", 15)),
159 "not": (10, None, ("not", 10), None, None),
159 "not": (10, None, ("not", 10), None, None),
160 "!": (10, None, ("not", 10), None, None),
160 "!": (10, None, ("not", 10), None, None),
161 "and": (5, None, None, ("and", 5), None),
161 "and": (5, None, None, ("and", 5), None),
162 "&": (5, None, None, ("and", 5), None),
162 "&": (5, None, None, ("and", 5), None),
163 "%": (5, None, None, ("only", 5), ("onlypost", 5)),
163 "%": (5, None, None, ("only", 5), ("onlypost", 5)),
164 "or": (4, None, None, ("or", 4), None),
164 "or": (4, None, None, ("or", 4), None),
165 "|": (4, None, None, ("or", 4), None),
165 "|": (4, None, None, ("or", 4), None),
166 "+": (4, None, None, ("or", 4), None),
166 "+": (4, None, None, ("or", 4), None),
167 "=": (3, None, None, ("keyvalue", 3), None),
167 "=": (3, None, None, ("keyvalue", 3), None),
168 ",": (2, None, None, ("list", 2), None),
168 ",": (2, None, None, ("list", 2), None),
169 ")": (0, None, None, None, None),
169 ")": (0, None, None, None, None),
170 "symbol": (0, "symbol", None, None, None),
170 "symbol": (0, "symbol", None, None, None),
171 "string": (0, "string", None, None, None),
171 "string": (0, "string", None, None, None),
172 "end": (0, None, None, None, None),
172 "end": (0, None, None, None, None),
173 }
173 }
174
174
175 keywords = set(['and', 'or', 'not'])
175 keywords = set(['and', 'or', 'not'])
176
176
177 # default set of valid characters for the initial letter of symbols
177 # default set of valid characters for the initial letter of symbols
178 _syminitletters = set(c for c in [chr(i) for i in xrange(256)]
178 _syminitletters = set(c for c in [chr(i) for i in xrange(256)]
179 if c.isalnum() or c in '._@' or ord(c) > 127)
179 if c.isalnum() or c in '._@' or ord(c) > 127)
180
180
181 # default set of valid characters for non-initial letters of symbols
181 # default set of valid characters for non-initial letters of symbols
182 _symletters = set(c for c in [chr(i) for i in xrange(256)]
182 _symletters = set(c for c in [chr(i) for i in xrange(256)]
183 if c.isalnum() or c in '-._/@' or ord(c) > 127)
183 if c.isalnum() or c in '-._/@' or ord(c) > 127)
184
184
185 def tokenize(program, lookup=None, syminitletters=None, symletters=None):
185 def tokenize(program, lookup=None, syminitletters=None, symletters=None):
186 '''
186 '''
187 Parse a revset statement into a stream of tokens
187 Parse a revset statement into a stream of tokens
188
188
189 ``syminitletters`` is the set of valid characters for the initial
189 ``syminitletters`` is the set of valid characters for the initial
190 letter of symbols.
190 letter of symbols.
191
191
192 By default, character ``c`` is recognized as valid for initial
192 By default, character ``c`` is recognized as valid for initial
193 letter of symbols, if ``c.isalnum() or c in '._@' or ord(c) > 127``.
193 letter of symbols, if ``c.isalnum() or c in '._@' or ord(c) > 127``.
194
194
195 ``symletters`` is the set of valid characters for non-initial
195 ``symletters`` is the set of valid characters for non-initial
196 letters of symbols.
196 letters of symbols.
197
197
198 By default, character ``c`` is recognized as valid for non-initial
198 By default, character ``c`` is recognized as valid for non-initial
199 letters of symbols, if ``c.isalnum() or c in '-._/@' or ord(c) > 127``.
199 letters of symbols, if ``c.isalnum() or c in '-._/@' or ord(c) > 127``.
200
200
201 Check that @ is a valid unquoted token character (issue3686):
201 Check that @ is a valid unquoted token character (issue3686):
202 >>> list(tokenize("@::"))
202 >>> list(tokenize("@::"))
203 [('symbol', '@', 0), ('::', None, 1), ('end', None, 3)]
203 [('symbol', '@', 0), ('::', None, 1), ('end', None, 3)]
204
204
205 '''
205 '''
206 if syminitletters is None:
206 if syminitletters is None:
207 syminitletters = _syminitletters
207 syminitletters = _syminitletters
208 if symletters is None:
208 if symletters is None:
209 symletters = _symletters
209 symletters = _symletters
210
210
211 if program and lookup:
211 if program and lookup:
212 # attempt to parse old-style ranges first to deal with
212 # attempt to parse old-style ranges first to deal with
213 # things like old-tag which contain query metacharacters
213 # things like old-tag which contain query metacharacters
214 parts = program.split(':', 1)
214 parts = program.split(':', 1)
215 if all(lookup(sym) for sym in parts if sym):
215 if all(lookup(sym) for sym in parts if sym):
216 if parts[0]:
216 if parts[0]:
217 yield ('symbol', parts[0], 0)
217 yield ('symbol', parts[0], 0)
218 if len(parts) > 1:
218 if len(parts) > 1:
219 s = len(parts[0])
219 s = len(parts[0])
220 yield (':', None, s)
220 yield (':', None, s)
221 if parts[1]:
221 if parts[1]:
222 yield ('symbol', parts[1], s + 1)
222 yield ('symbol', parts[1], s + 1)
223 yield ('end', None, len(program))
223 yield ('end', None, len(program))
224 return
224 return
225
225
226 pos, l = 0, len(program)
226 pos, l = 0, len(program)
227 while pos < l:
227 while pos < l:
228 c = program[pos]
228 c = program[pos]
229 if c.isspace(): # skip inter-token whitespace
229 if c.isspace(): # skip inter-token whitespace
230 pass
230 pass
231 elif c == ':' and program[pos:pos + 2] == '::': # look ahead carefully
231 elif c == ':' and program[pos:pos + 2] == '::': # look ahead carefully
232 yield ('::', None, pos)
232 yield ('::', None, pos)
233 pos += 1 # skip ahead
233 pos += 1 # skip ahead
234 elif c == '.' and program[pos:pos + 2] == '..': # look ahead carefully
234 elif c == '.' and program[pos:pos + 2] == '..': # look ahead carefully
235 yield ('..', None, pos)
235 yield ('..', None, pos)
236 pos += 1 # skip ahead
236 pos += 1 # skip ahead
237 elif c == '#' and program[pos:pos + 2] == '##': # look ahead carefully
237 elif c == '#' and program[pos:pos + 2] == '##': # look ahead carefully
238 yield ('##', None, pos)
238 yield ('##', None, pos)
239 pos += 1 # skip ahead
239 pos += 1 # skip ahead
240 elif c in "():=,-|&+!~^%": # handle simple operators
240 elif c in "():=,-|&+!~^%": # handle simple operators
241 yield (c, None, pos)
241 yield (c, None, pos)
242 elif (c in '"\'' or c == 'r' and
242 elif (c in '"\'' or c == 'r' and
243 program[pos:pos + 2] in ("r'", 'r"')): # handle quoted strings
243 program[pos:pos + 2] in ("r'", 'r"')): # handle quoted strings
244 if c == 'r':
244 if c == 'r':
245 pos += 1
245 pos += 1
246 c = program[pos]
246 c = program[pos]
247 decode = lambda x: x
247 decode = lambda x: x
248 else:
248 else:
249 decode = parser.unescapestr
249 decode = parser.unescapestr
250 pos += 1
250 pos += 1
251 s = pos
251 s = pos
252 while pos < l: # find closing quote
252 while pos < l: # find closing quote
253 d = program[pos]
253 d = program[pos]
254 if d == '\\': # skip over escaped characters
254 if d == '\\': # skip over escaped characters
255 pos += 2
255 pos += 2
256 continue
256 continue
257 if d == c:
257 if d == c:
258 yield ('string', decode(program[s:pos]), s)
258 yield ('string', decode(program[s:pos]), s)
259 break
259 break
260 pos += 1
260 pos += 1
261 else:
261 else:
262 raise error.ParseError(_("unterminated string"), s)
262 raise error.ParseError(_("unterminated string"), s)
263 # gather up a symbol/keyword
263 # gather up a symbol/keyword
264 elif c in syminitletters:
264 elif c in syminitletters:
265 s = pos
265 s = pos
266 pos += 1
266 pos += 1
267 while pos < l: # find end of symbol
267 while pos < l: # find end of symbol
268 d = program[pos]
268 d = program[pos]
269 if d not in symletters:
269 if d not in symletters:
270 break
270 break
271 if d == '.' and program[pos - 1] == '.': # special case for ..
271 if d == '.' and program[pos - 1] == '.': # special case for ..
272 pos -= 1
272 pos -= 1
273 break
273 break
274 pos += 1
274 pos += 1
275 sym = program[s:pos]
275 sym = program[s:pos]
276 if sym in keywords: # operator keywords
276 if sym in keywords: # operator keywords
277 yield (sym, None, s)
277 yield (sym, None, s)
278 elif '-' in sym:
278 elif '-' in sym:
279 # some jerk gave us foo-bar-baz, try to check if it's a symbol
279 # some jerk gave us foo-bar-baz, try to check if it's a symbol
280 if lookup and lookup(sym):
280 if lookup and lookup(sym):
281 # looks like a real symbol
281 # looks like a real symbol
282 yield ('symbol', sym, s)
282 yield ('symbol', sym, s)
283 else:
283 else:
284 # looks like an expression
284 # looks like an expression
285 parts = sym.split('-')
285 parts = sym.split('-')
286 for p in parts[:-1]:
286 for p in parts[:-1]:
287 if p: # possible consecutive -
287 if p: # possible consecutive -
288 yield ('symbol', p, s)
288 yield ('symbol', p, s)
289 s += len(p)
289 s += len(p)
290 yield ('-', None, pos)
290 yield ('-', None, pos)
291 s += 1
291 s += 1
292 if parts[-1]: # possible trailing -
292 if parts[-1]: # possible trailing -
293 yield ('symbol', parts[-1], s)
293 yield ('symbol', parts[-1], s)
294 else:
294 else:
295 yield ('symbol', sym, s)
295 yield ('symbol', sym, s)
296 pos -= 1
296 pos -= 1
297 else:
297 else:
298 raise error.ParseError(_("syntax error in revset '%s'") %
298 raise error.ParseError(_("syntax error in revset '%s'") %
299 program, pos)
299 program, pos)
300 pos += 1
300 pos += 1
301 yield ('end', None, pos)
301 yield ('end', None, pos)
302
302
303 # helpers
303 # helpers
304
304
305 def getstring(x, err):
305 def getstring(x, err):
306 if x and (x[0] == 'string' or x[0] == 'symbol'):
306 if x and (x[0] == 'string' or x[0] == 'symbol'):
307 return x[1]
307 return x[1]
308 raise error.ParseError(err)
308 raise error.ParseError(err)
309
309
310 def getlist(x):
310 def getlist(x):
311 if not x:
311 if not x:
312 return []
312 return []
313 if x[0] == 'list':
313 if x[0] == 'list':
314 return list(x[1:])
314 return list(x[1:])
315 return [x]
315 return [x]
316
316
317 def getargs(x, min, max, err):
317 def getargs(x, min, max, err):
318 l = getlist(x)
318 l = getlist(x)
319 if len(l) < min or (max >= 0 and len(l) > max):
319 if len(l) < min or (max >= 0 and len(l) > max):
320 raise error.ParseError(err)
320 raise error.ParseError(err)
321 return l
321 return l
322
322
323 def getargsdict(x, funcname, keys):
323 def getargsdict(x, funcname, keys):
324 return parser.buildargsdict(getlist(x), funcname, keys.split(),
324 return parser.buildargsdict(getlist(x), funcname, keys.split(),
325 keyvaluenode='keyvalue', keynode='symbol')
325 keyvaluenode='keyvalue', keynode='symbol')
326
326
327 def getset(repo, subset, x):
327 def getset(repo, subset, x):
328 if not x:
328 if not x:
329 raise error.ParseError(_("missing argument"))
329 raise error.ParseError(_("missing argument"))
330 s = methods[x[0]](repo, subset, *x[1:])
330 s = methods[x[0]](repo, subset, *x[1:])
331 if util.safehasattr(s, 'isascending'):
331 if util.safehasattr(s, 'isascending'):
332 return s
332 return s
333 # else case should not happen, because all non-func are internal,
333 # else case should not happen, because all non-func are internal,
334 # ignoring for now.
334 # ignoring for now.
335 if x[0] == 'func' and x[1][0] == 'symbol' and x[1][1] in symbols:
335 if x[0] == 'func' and x[1][0] == 'symbol' and x[1][1] in symbols:
336 repo.ui.deprecwarn('revset "%s" uses list instead of smartset'
336 repo.ui.deprecwarn('revset "%s" uses list instead of smartset'
337 % x[1][1],
337 % x[1][1],
338 '3.9')
338 '3.9')
339 return baseset(s)
339 return baseset(s)
340
340
341 def _getrevsource(repo, r):
341 def _getrevsource(repo, r):
342 extra = repo[r].extra()
342 extra = repo[r].extra()
343 for label in ('source', 'transplant_source', 'rebase_source'):
343 for label in ('source', 'transplant_source', 'rebase_source'):
344 if label in extra:
344 if label in extra:
345 try:
345 try:
346 return repo[extra[label]].rev()
346 return repo[extra[label]].rev()
347 except error.RepoLookupError:
347 except error.RepoLookupError:
348 pass
348 pass
349 return None
349 return None
350
350
351 # operator methods
351 # operator methods
352
352
353 def stringset(repo, subset, x):
353 def stringset(repo, subset, x):
354 x = repo[x].rev()
354 x = repo[x].rev()
355 if (x in subset
355 if (x in subset
356 or x == node.nullrev and isinstance(subset, fullreposet)):
356 or x == node.nullrev and isinstance(subset, fullreposet)):
357 return baseset([x])
357 return baseset([x])
358 return baseset()
358 return baseset()
359
359
360 def rangeset(repo, subset, x, y):
360 def rangeset(repo, subset, x, y):
361 m = getset(repo, fullreposet(repo), x)
361 m = getset(repo, fullreposet(repo), x)
362 n = getset(repo, fullreposet(repo), y)
362 n = getset(repo, fullreposet(repo), y)
363
363
364 if not m or not n:
364 if not m or not n:
365 return baseset()
365 return baseset()
366 m, n = m.first(), n.last()
366 m, n = m.first(), n.last()
367
367
368 if m == n:
368 if m == n:
369 r = baseset([m])
369 r = baseset([m])
370 elif n == node.wdirrev:
370 elif n == node.wdirrev:
371 r = spanset(repo, m, len(repo)) + baseset([n])
371 r = spanset(repo, m, len(repo)) + baseset([n])
372 elif m == node.wdirrev:
372 elif m == node.wdirrev:
373 r = baseset([m]) + spanset(repo, len(repo) - 1, n - 1)
373 r = baseset([m]) + spanset(repo, len(repo) - 1, n - 1)
374 elif m < n:
374 elif m < n:
375 r = spanset(repo, m, n + 1)
375 r = spanset(repo, m, n + 1)
376 else:
376 else:
377 r = spanset(repo, m, n - 1)
377 r = spanset(repo, m, n - 1)
378 # XXX We should combine with subset first: 'subset & baseset(...)'. This is
378 # XXX We should combine with subset first: 'subset & baseset(...)'. This is
379 # necessary to ensure we preserve the order in subset.
379 # necessary to ensure we preserve the order in subset.
380 #
380 #
381 # This has performance implication, carrying the sorting over when possible
381 # This has performance implication, carrying the sorting over when possible
382 # would be more efficient.
382 # would be more efficient.
383 return r & subset
383 return r & subset
384
384
385 def dagrange(repo, subset, x, y):
385 def dagrange(repo, subset, x, y):
386 r = fullreposet(repo)
386 r = fullreposet(repo)
387 xs = reachableroots(repo, getset(repo, r, x), getset(repo, r, y),
387 xs = reachableroots(repo, getset(repo, r, x), getset(repo, r, y),
388 includepath=True)
388 includepath=True)
389 return subset & xs
389 return subset & xs
390
390
391 def andset(repo, subset, x, y):
391 def andset(repo, subset, x, y):
392 return getset(repo, getset(repo, subset, x), y)
392 return getset(repo, getset(repo, subset, x), y)
393
393
394 def differenceset(repo, subset, x, y):
394 def differenceset(repo, subset, x, y):
395 return getset(repo, subset, x) - getset(repo, subset, y)
395 return getset(repo, subset, x) - getset(repo, subset, y)
396
396
397 def orset(repo, subset, *xs):
397 def orset(repo, subset, *xs):
398 assert xs
398 assert xs
399 if len(xs) == 1:
399 if len(xs) == 1:
400 return getset(repo, subset, xs[0])
400 return getset(repo, subset, xs[0])
401 p = len(xs) // 2
401 p = len(xs) // 2
402 a = orset(repo, subset, *xs[:p])
402 a = orset(repo, subset, *xs[:p])
403 b = orset(repo, subset, *xs[p:])
403 b = orset(repo, subset, *xs[p:])
404 return a + b
404 return a + b
405
405
406 def notset(repo, subset, x):
406 def notset(repo, subset, x):
407 return subset - getset(repo, subset, x)
407 return subset - getset(repo, subset, x)
408
408
409 def listset(repo, subset, *xs):
409 def listset(repo, subset, *xs):
410 raise error.ParseError(_("can't use a list in this context"),
410 raise error.ParseError(_("can't use a list in this context"),
411 hint=_('see hg help "revsets.x or y"'))
411 hint=_('see hg help "revsets.x or y"'))
412
412
413 def keyvaluepair(repo, subset, k, v):
413 def keyvaluepair(repo, subset, k, v):
414 raise error.ParseError(_("can't use a key-value pair in this context"))
414 raise error.ParseError(_("can't use a key-value pair in this context"))
415
415
416 def func(repo, subset, a, b):
416 def func(repo, subset, a, b):
417 if a[0] == 'symbol' and a[1] in symbols:
417 if a[0] == 'symbol' and a[1] in symbols:
418 return symbols[a[1]](repo, subset, b)
418 return symbols[a[1]](repo, subset, b)
419
419
420 keep = lambda fn: getattr(fn, '__doc__', None) is not None
420 keep = lambda fn: getattr(fn, '__doc__', None) is not None
421
421
422 syms = [s for (s, fn) in symbols.items() if keep(fn)]
422 syms = [s for (s, fn) in symbols.items() if keep(fn)]
423 raise error.UnknownIdentifier(a[1], syms)
423 raise error.UnknownIdentifier(a[1], syms)
424
424
425 # functions
425 # functions
426
426
427 # symbols are callables like:
427 # symbols are callables like:
428 # fn(repo, subset, x)
428 # fn(repo, subset, x)
429 # with:
429 # with:
430 # repo - current repository instance
430 # repo - current repository instance
431 # subset - of revisions to be examined
431 # subset - of revisions to be examined
432 # x - argument in tree form
432 # x - argument in tree form
433 symbols = {}
433 symbols = {}
434
434
435 # symbols which can't be used for a DoS attack for any given input
435 # symbols which can't be used for a DoS attack for any given input
436 # (e.g. those which accept regexes as plain strings shouldn't be included)
436 # (e.g. those which accept regexes as plain strings shouldn't be included)
437 # functions that just return a lot of changesets (like all) don't count here
437 # functions that just return a lot of changesets (like all) don't count here
438 safesymbols = set()
438 safesymbols = set()
439
439
440 predicate = registrar.revsetpredicate()
440 predicate = registrar.revsetpredicate()
441
441
442 @predicate('_destupdate')
442 @predicate('_destupdate')
443 def _destupdate(repo, subset, x):
443 def _destupdate(repo, subset, x):
444 # experimental revset for update destination
444 # experimental revset for update destination
445 args = getargsdict(x, 'limit', 'clean check')
445 args = getargsdict(x, 'limit', 'clean check')
446 return subset & baseset([destutil.destupdate(repo, **args)[0]])
446 return subset & baseset([destutil.destupdate(repo, **args)[0]])
447
447
448 @predicate('_destmerge')
448 @predicate('_destmerge')
449 def _destmerge(repo, subset, x):
449 def _destmerge(repo, subset, x):
450 # experimental revset for merge destination
450 # experimental revset for merge destination
451 sourceset = None
451 sourceset = None
452 if x is not None:
452 if x is not None:
453 sourceset = getset(repo, fullreposet(repo), x)
453 sourceset = getset(repo, fullreposet(repo), x)
454 return subset & baseset([destutil.destmerge(repo, sourceset=sourceset)])
454 return subset & baseset([destutil.destmerge(repo, sourceset=sourceset)])
455
455
456 @predicate('adds(pattern)', safe=True)
456 @predicate('adds(pattern)', safe=True)
457 def adds(repo, subset, x):
457 def adds(repo, subset, x):
458 """Changesets that add a file matching pattern.
458 """Changesets that add a file matching pattern.
459
459
460 The pattern without explicit kind like ``glob:`` is expected to be
460 The pattern without explicit kind like ``glob:`` is expected to be
461 relative to the current directory and match against a file or a
461 relative to the current directory and match against a file or a
462 directory.
462 directory.
463 """
463 """
464 # i18n: "adds" is a keyword
464 # i18n: "adds" is a keyword
465 pat = getstring(x, _("adds requires a pattern"))
465 pat = getstring(x, _("adds requires a pattern"))
466 return checkstatus(repo, subset, pat, 1)
466 return checkstatus(repo, subset, pat, 1)
467
467
468 @predicate('ancestor(*changeset)', safe=True)
468 @predicate('ancestor(*changeset)', safe=True)
469 def ancestor(repo, subset, x):
469 def ancestor(repo, subset, x):
470 """A greatest common ancestor of the changesets.
470 """A greatest common ancestor of the changesets.
471
471
472 Accepts 0 or more changesets.
472 Accepts 0 or more changesets.
473 Will return empty list when passed no args.
473 Will return empty list when passed no args.
474 Greatest common ancestor of a single changeset is that changeset.
474 Greatest common ancestor of a single changeset is that changeset.
475 """
475 """
476 # i18n: "ancestor" is a keyword
476 # i18n: "ancestor" is a keyword
477 l = getlist(x)
477 l = getlist(x)
478 rl = fullreposet(repo)
478 rl = fullreposet(repo)
479 anc = None
479 anc = None
480
480
481 # (getset(repo, rl, i) for i in l) generates a list of lists
481 # (getset(repo, rl, i) for i in l) generates a list of lists
482 for revs in (getset(repo, rl, i) for i in l):
482 for revs in (getset(repo, rl, i) for i in l):
483 for r in revs:
483 for r in revs:
484 if anc is None:
484 if anc is None:
485 anc = repo[r]
485 anc = repo[r]
486 else:
486 else:
487 anc = anc.ancestor(repo[r])
487 anc = anc.ancestor(repo[r])
488
488
489 if anc is not None and anc.rev() in subset:
489 if anc is not None and anc.rev() in subset:
490 return baseset([anc.rev()])
490 return baseset([anc.rev()])
491 return baseset()
491 return baseset()
492
492
493 def _ancestors(repo, subset, x, followfirst=False):
493 def _ancestors(repo, subset, x, followfirst=False):
494 heads = getset(repo, fullreposet(repo), x)
494 heads = getset(repo, fullreposet(repo), x)
495 if not heads:
495 if not heads:
496 return baseset()
496 return baseset()
497 s = _revancestors(repo, heads, followfirst)
497 s = _revancestors(repo, heads, followfirst)
498 return subset & s
498 return subset & s
499
499
500 @predicate('ancestors(set)', safe=True)
500 @predicate('ancestors(set)', safe=True)
501 def ancestors(repo, subset, x):
501 def ancestors(repo, subset, x):
502 """Changesets that are ancestors of a changeset in set.
502 """Changesets that are ancestors of a changeset in set.
503 """
503 """
504 return _ancestors(repo, subset, x)
504 return _ancestors(repo, subset, x)
505
505
506 @predicate('_firstancestors', safe=True)
506 @predicate('_firstancestors', safe=True)
507 def _firstancestors(repo, subset, x):
507 def _firstancestors(repo, subset, x):
508 # ``_firstancestors(set)``
508 # ``_firstancestors(set)``
509 # Like ``ancestors(set)`` but follows only the first parents.
509 # Like ``ancestors(set)`` but follows only the first parents.
510 return _ancestors(repo, subset, x, followfirst=True)
510 return _ancestors(repo, subset, x, followfirst=True)
511
511
512 def ancestorspec(repo, subset, x, n):
512 def ancestorspec(repo, subset, x, n):
513 """``set~n``
513 """``set~n``
514 Changesets that are the Nth ancestor (first parents only) of a changeset
514 Changesets that are the Nth ancestor (first parents only) of a changeset
515 in set.
515 in set.
516 """
516 """
517 try:
517 try:
518 n = int(n[1])
518 n = int(n[1])
519 except (TypeError, ValueError):
519 except (TypeError, ValueError):
520 raise error.ParseError(_("~ expects a number"))
520 raise error.ParseError(_("~ expects a number"))
521 ps = set()
521 ps = set()
522 cl = repo.changelog
522 cl = repo.changelog
523 for r in getset(repo, fullreposet(repo), x):
523 for r in getset(repo, fullreposet(repo), x):
524 for i in range(n):
524 for i in range(n):
525 r = cl.parentrevs(r)[0]
525 r = cl.parentrevs(r)[0]
526 ps.add(r)
526 ps.add(r)
527 return subset & ps
527 return subset & ps
528
528
529 @predicate('author(string)', safe=True)
529 @predicate('author(string)', safe=True)
530 def author(repo, subset, x):
530 def author(repo, subset, x):
531 """Alias for ``user(string)``.
531 """Alias for ``user(string)``.
532 """
532 """
533 # i18n: "author" is a keyword
533 # i18n: "author" is a keyword
534 n = encoding.lower(getstring(x, _("author requires a string")))
534 n = encoding.lower(getstring(x, _("author requires a string")))
535 kind, pattern, matcher = _substringmatcher(n)
535 kind, pattern, matcher = _substringmatcher(n)
536 return subset.filter(lambda x: matcher(encoding.lower(repo[x].user())),
536 return subset.filter(lambda x: matcher(encoding.lower(repo[x].user())),
537 condrepr=('<user %r>', n))
537 condrepr=('<user %r>', n))
538
538
539 @predicate('bisect(string)', safe=True)
539 @predicate('bisect(string)', safe=True)
540 def bisect(repo, subset, x):
540 def bisect(repo, subset, x):
541 """Changesets marked in the specified bisect status:
541 """Changesets marked in the specified bisect status:
542
542
543 - ``good``, ``bad``, ``skip``: csets explicitly marked as good/bad/skip
543 - ``good``, ``bad``, ``skip``: csets explicitly marked as good/bad/skip
544 - ``goods``, ``bads`` : csets topologically good/bad
544 - ``goods``, ``bads`` : csets topologically good/bad
545 - ``range`` : csets taking part in the bisection
545 - ``range`` : csets taking part in the bisection
546 - ``pruned`` : csets that are goods, bads or skipped
546 - ``pruned`` : csets that are goods, bads or skipped
547 - ``untested`` : csets whose fate is yet unknown
547 - ``untested`` : csets whose fate is yet unknown
548 - ``ignored`` : csets ignored due to DAG topology
548 - ``ignored`` : csets ignored due to DAG topology
549 - ``current`` : the cset currently being bisected
549 - ``current`` : the cset currently being bisected
550 """
550 """
551 # i18n: "bisect" is a keyword
551 # i18n: "bisect" is a keyword
552 status = getstring(x, _("bisect requires a string")).lower()
552 status = getstring(x, _("bisect requires a string")).lower()
553 state = set(hbisect.get(repo, status))
553 state = set(hbisect.get(repo, status))
554 return subset & state
554 return subset & state
555
555
556 # Backward-compatibility
556 # Backward-compatibility
557 # - no help entry so that we do not advertise it any more
557 # - no help entry so that we do not advertise it any more
558 @predicate('bisected', safe=True)
558 @predicate('bisected', safe=True)
559 def bisected(repo, subset, x):
559 def bisected(repo, subset, x):
560 return bisect(repo, subset, x)
560 return bisect(repo, subset, x)
561
561
562 @predicate('bookmark([name])', safe=True)
562 @predicate('bookmark([name])', safe=True)
563 def bookmark(repo, subset, x):
563 def bookmark(repo, subset, x):
564 """The named bookmark or all bookmarks.
564 """The named bookmark or all bookmarks.
565
565
566 If `name` starts with `re:`, the remainder of the name is treated as
566 If `name` starts with `re:`, the remainder of the name is treated as
567 a regular expression. To match a bookmark that actually starts with `re:`,
567 a regular expression. To match a bookmark that actually starts with `re:`,
568 use the prefix `literal:`.
568 use the prefix `literal:`.
569 """
569 """
570 # i18n: "bookmark" is a keyword
570 # i18n: "bookmark" is a keyword
571 args = getargs(x, 0, 1, _('bookmark takes one or no arguments'))
571 args = getargs(x, 0, 1, _('bookmark takes one or no arguments'))
572 if args:
572 if args:
573 bm = getstring(args[0],
573 bm = getstring(args[0],
574 # i18n: "bookmark" is a keyword
574 # i18n: "bookmark" is a keyword
575 _('the argument to bookmark must be a string'))
575 _('the argument to bookmark must be a string'))
576 kind, pattern, matcher = util.stringmatcher(bm)
576 kind, pattern, matcher = util.stringmatcher(bm)
577 bms = set()
577 bms = set()
578 if kind == 'literal':
578 if kind == 'literal':
579 bmrev = repo._bookmarks.get(pattern, None)
579 bmrev = repo._bookmarks.get(pattern, None)
580 if not bmrev:
580 if not bmrev:
581 raise error.RepoLookupError(_("bookmark '%s' does not exist")
581 raise error.RepoLookupError(_("bookmark '%s' does not exist")
582 % pattern)
582 % pattern)
583 bms.add(repo[bmrev].rev())
583 bms.add(repo[bmrev].rev())
584 else:
584 else:
585 matchrevs = set()
585 matchrevs = set()
586 for name, bmrev in repo._bookmarks.iteritems():
586 for name, bmrev in repo._bookmarks.iteritems():
587 if matcher(name):
587 if matcher(name):
588 matchrevs.add(bmrev)
588 matchrevs.add(bmrev)
589 if not matchrevs:
589 if not matchrevs:
590 raise error.RepoLookupError(_("no bookmarks exist"
590 raise error.RepoLookupError(_("no bookmarks exist"
591 " that match '%s'") % pattern)
591 " that match '%s'") % pattern)
592 for bmrev in matchrevs:
592 for bmrev in matchrevs:
593 bms.add(repo[bmrev].rev())
593 bms.add(repo[bmrev].rev())
594 else:
594 else:
595 bms = set([repo[r].rev()
595 bms = set([repo[r].rev()
596 for r in repo._bookmarks.values()])
596 for r in repo._bookmarks.values()])
597 bms -= set([node.nullrev])
597 bms -= set([node.nullrev])
598 return subset & bms
598 return subset & bms
599
599
600 @predicate('branch(string or set)', safe=True)
600 @predicate('branch(string or set)', safe=True)
601 def branch(repo, subset, x):
601 def branch(repo, subset, x):
602 """
602 """
603 All changesets belonging to the given branch or the branches of the given
603 All changesets belonging to the given branch or the branches of the given
604 changesets.
604 changesets.
605
605
606 If `string` starts with `re:`, the remainder of the name is treated as
606 If `string` starts with `re:`, the remainder of the name is treated as
607 a regular expression. To match a branch that actually starts with `re:`,
607 a regular expression. To match a branch that actually starts with `re:`,
608 use the prefix `literal:`.
608 use the prefix `literal:`.
609 """
609 """
610 getbi = repo.revbranchcache().branchinfo
610 getbi = repo.revbranchcache().branchinfo
611
611
612 try:
612 try:
613 b = getstring(x, '')
613 b = getstring(x, '')
614 except error.ParseError:
614 except error.ParseError:
615 # not a string, but another revspec, e.g. tip()
615 # not a string, but another revspec, e.g. tip()
616 pass
616 pass
617 else:
617 else:
618 kind, pattern, matcher = util.stringmatcher(b)
618 kind, pattern, matcher = util.stringmatcher(b)
619 if kind == 'literal':
619 if kind == 'literal':
620 # note: falls through to the revspec case if no branch with
620 # note: falls through to the revspec case if no branch with
621 # this name exists and pattern kind is not specified explicitly
621 # this name exists and pattern kind is not specified explicitly
622 if pattern in repo.branchmap():
622 if pattern in repo.branchmap():
623 return subset.filter(lambda r: matcher(getbi(r)[0]),
623 return subset.filter(lambda r: matcher(getbi(r)[0]),
624 condrepr=('<branch %r>', b))
624 condrepr=('<branch %r>', b))
625 if b.startswith('literal:'):
625 if b.startswith('literal:'):
626 raise error.RepoLookupError(_("branch '%s' does not exist")
626 raise error.RepoLookupError(_("branch '%s' does not exist")
627 % pattern)
627 % pattern)
628 else:
628 else:
629 return subset.filter(lambda r: matcher(getbi(r)[0]),
629 return subset.filter(lambda r: matcher(getbi(r)[0]),
630 condrepr=('<branch %r>', b))
630 condrepr=('<branch %r>', b))
631
631
632 s = getset(repo, fullreposet(repo), x)
632 s = getset(repo, fullreposet(repo), x)
633 b = set()
633 b = set()
634 for r in s:
634 for r in s:
635 b.add(getbi(r)[0])
635 b.add(getbi(r)[0])
636 c = s.__contains__
636 c = s.__contains__
637 return subset.filter(lambda r: c(r) or getbi(r)[0] in b,
637 return subset.filter(lambda r: c(r) or getbi(r)[0] in b,
638 condrepr=lambda: '<branch %r>' % sorted(b))
638 condrepr=lambda: '<branch %r>' % sorted(b))
639
639
640 @predicate('bumped()', safe=True)
640 @predicate('bumped()', safe=True)
641 def bumped(repo, subset, x):
641 def bumped(repo, subset, x):
642 """Mutable changesets marked as successors of public changesets.
642 """Mutable changesets marked as successors of public changesets.
643
643
644 Only non-public and non-obsolete changesets can be `bumped`.
644 Only non-public and non-obsolete changesets can be `bumped`.
645 """
645 """
646 # i18n: "bumped" is a keyword
646 # i18n: "bumped" is a keyword
647 getargs(x, 0, 0, _("bumped takes no arguments"))
647 getargs(x, 0, 0, _("bumped takes no arguments"))
648 bumped = obsmod.getrevs(repo, 'bumped')
648 bumped = obsmod.getrevs(repo, 'bumped')
649 return subset & bumped
649 return subset & bumped
650
650
651 @predicate('bundle()', safe=True)
651 @predicate('bundle()', safe=True)
652 def bundle(repo, subset, x):
652 def bundle(repo, subset, x):
653 """Changesets in the bundle.
653 """Changesets in the bundle.
654
654
655 Bundle must be specified by the -R option."""
655 Bundle must be specified by the -R option."""
656
656
657 try:
657 try:
658 bundlerevs = repo.changelog.bundlerevs
658 bundlerevs = repo.changelog.bundlerevs
659 except AttributeError:
659 except AttributeError:
660 raise error.Abort(_("no bundle provided - specify with -R"))
660 raise error.Abort(_("no bundle provided - specify with -R"))
661 return subset & bundlerevs
661 return subset & bundlerevs
662
662
663 def checkstatus(repo, subset, pat, field):
663 def checkstatus(repo, subset, pat, field):
664 hasset = matchmod.patkind(pat) == 'set'
664 hasset = matchmod.patkind(pat) == 'set'
665
665
666 mcache = [None]
666 mcache = [None]
667 def matches(x):
667 def matches(x):
668 c = repo[x]
668 c = repo[x]
669 if not mcache[0] or hasset:
669 if not mcache[0] or hasset:
670 mcache[0] = matchmod.match(repo.root, repo.getcwd(), [pat], ctx=c)
670 mcache[0] = matchmod.match(repo.root, repo.getcwd(), [pat], ctx=c)
671 m = mcache[0]
671 m = mcache[0]
672 fname = None
672 fname = None
673 if not m.anypats() and len(m.files()) == 1:
673 if not m.anypats() and len(m.files()) == 1:
674 fname = m.files()[0]
674 fname = m.files()[0]
675 if fname is not None:
675 if fname is not None:
676 if fname not in c.files():
676 if fname not in c.files():
677 return False
677 return False
678 else:
678 else:
679 for f in c.files():
679 for f in c.files():
680 if m(f):
680 if m(f):
681 break
681 break
682 else:
682 else:
683 return False
683 return False
684 files = repo.status(c.p1().node(), c.node())[field]
684 files = repo.status(c.p1().node(), c.node())[field]
685 if fname is not None:
685 if fname is not None:
686 if fname in files:
686 if fname in files:
687 return True
687 return True
688 else:
688 else:
689 for f in files:
689 for f in files:
690 if m(f):
690 if m(f):
691 return True
691 return True
692
692
693 return subset.filter(matches, condrepr=('<status[%r] %r>', field, pat))
693 return subset.filter(matches, condrepr=('<status[%r] %r>', field, pat))
694
694
695 def _children(repo, narrow, parentset):
695 def _children(repo, narrow, parentset):
696 if not parentset:
696 if not parentset:
697 return baseset()
697 return baseset()
698 cs = set()
698 cs = set()
699 pr = repo.changelog.parentrevs
699 pr = repo.changelog.parentrevs
700 minrev = parentset.min()
700 minrev = parentset.min()
701 for r in narrow:
701 for r in narrow:
702 if r <= minrev:
702 if r <= minrev:
703 continue
703 continue
704 for p in pr(r):
704 for p in pr(r):
705 if p in parentset:
705 if p in parentset:
706 cs.add(r)
706 cs.add(r)
707 # XXX using a set to feed the baseset is wrong. Sets are not ordered.
707 # XXX using a set to feed the baseset is wrong. Sets are not ordered.
708 # This does not break because of other fullreposet misbehavior.
708 # This does not break because of other fullreposet misbehavior.
709 return baseset(cs)
709 return baseset(cs)
710
710
711 @predicate('children(set)', safe=True)
711 @predicate('children(set)', safe=True)
712 def children(repo, subset, x):
712 def children(repo, subset, x):
713 """Child changesets of changesets in set.
713 """Child changesets of changesets in set.
714 """
714 """
715 s = getset(repo, fullreposet(repo), x)
715 s = getset(repo, fullreposet(repo), x)
716 cs = _children(repo, subset, s)
716 cs = _children(repo, subset, s)
717 return subset & cs
717 return subset & cs
718
718
719 @predicate('closed()', safe=True)
719 @predicate('closed()', safe=True)
720 def closed(repo, subset, x):
720 def closed(repo, subset, x):
721 """Changeset is closed.
721 """Changeset is closed.
722 """
722 """
723 # i18n: "closed" is a keyword
723 # i18n: "closed" is a keyword
724 getargs(x, 0, 0, _("closed takes no arguments"))
724 getargs(x, 0, 0, _("closed takes no arguments"))
725 return subset.filter(lambda r: repo[r].closesbranch(),
725 return subset.filter(lambda r: repo[r].closesbranch(),
726 condrepr='<branch closed>')
726 condrepr='<branch closed>')
727
727
728 @predicate('contains(pattern)')
728 @predicate('contains(pattern)')
729 def contains(repo, subset, x):
729 def contains(repo, subset, x):
730 """The revision's manifest contains a file matching pattern (but might not
730 """The revision's manifest contains a file matching pattern (but might not
731 modify it). See :hg:`help patterns` for information about file patterns.
731 modify it). See :hg:`help patterns` for information about file patterns.
732
732
733 The pattern without explicit kind like ``glob:`` is expected to be
733 The pattern without explicit kind like ``glob:`` is expected to be
734 relative to the current directory and match against a file exactly
734 relative to the current directory and match against a file exactly
735 for efficiency.
735 for efficiency.
736 """
736 """
737 # i18n: "contains" is a keyword
737 # i18n: "contains" is a keyword
738 pat = getstring(x, _("contains requires a pattern"))
738 pat = getstring(x, _("contains requires a pattern"))
739
739
740 def matches(x):
740 def matches(x):
741 if not matchmod.patkind(pat):
741 if not matchmod.patkind(pat):
742 pats = pathutil.canonpath(repo.root, repo.getcwd(), pat)
742 pats = pathutil.canonpath(repo.root, repo.getcwd(), pat)
743 if pats in repo[x]:
743 if pats in repo[x]:
744 return True
744 return True
745 else:
745 else:
746 c = repo[x]
746 c = repo[x]
747 m = matchmod.match(repo.root, repo.getcwd(), [pat], ctx=c)
747 m = matchmod.match(repo.root, repo.getcwd(), [pat], ctx=c)
748 for f in c.manifest():
748 for f in c.manifest():
749 if m(f):
749 if m(f):
750 return True
750 return True
751 return False
751 return False
752
752
753 return subset.filter(matches, condrepr=('<contains %r>', pat))
753 return subset.filter(matches, condrepr=('<contains %r>', pat))
754
754
755 @predicate('converted([id])', safe=True)
755 @predicate('converted([id])', safe=True)
756 def converted(repo, subset, x):
756 def converted(repo, subset, x):
757 """Changesets converted from the given identifier in the old repository if
757 """Changesets converted from the given identifier in the old repository if
758 present, or all converted changesets if no identifier is specified.
758 present, or all converted changesets if no identifier is specified.
759 """
759 """
760
760
761 # There is exactly no chance of resolving the revision, so do a simple
761 # There is exactly no chance of resolving the revision, so do a simple
762 # string compare and hope for the best
762 # string compare and hope for the best
763
763
764 rev = None
764 rev = None
765 # i18n: "converted" is a keyword
765 # i18n: "converted" is a keyword
766 l = getargs(x, 0, 1, _('converted takes one or no arguments'))
766 l = getargs(x, 0, 1, _('converted takes one or no arguments'))
767 if l:
767 if l:
768 # i18n: "converted" is a keyword
768 # i18n: "converted" is a keyword
769 rev = getstring(l[0], _('converted requires a revision'))
769 rev = getstring(l[0], _('converted requires a revision'))
770
770
771 def _matchvalue(r):
771 def _matchvalue(r):
772 source = repo[r].extra().get('convert_revision', None)
772 source = repo[r].extra().get('convert_revision', None)
773 return source is not None and (rev is None or source.startswith(rev))
773 return source is not None and (rev is None or source.startswith(rev))
774
774
775 return subset.filter(lambda r: _matchvalue(r),
775 return subset.filter(lambda r: _matchvalue(r),
776 condrepr=('<converted %r>', rev))
776 condrepr=('<converted %r>', rev))
777
777
778 @predicate('date(interval)', safe=True)
778 @predicate('date(interval)', safe=True)
779 def date(repo, subset, x):
779 def date(repo, subset, x):
780 """Changesets within the interval, see :hg:`help dates`.
780 """Changesets within the interval, see :hg:`help dates`.
781 """
781 """
782 # i18n: "date" is a keyword
782 # i18n: "date" is a keyword
783 ds = getstring(x, _("date requires a string"))
783 ds = getstring(x, _("date requires a string"))
784 dm = util.matchdate(ds)
784 dm = util.matchdate(ds)
785 return subset.filter(lambda x: dm(repo[x].date()[0]),
785 return subset.filter(lambda x: dm(repo[x].date()[0]),
786 condrepr=('<date %r>', ds))
786 condrepr=('<date %r>', ds))
787
787
788 @predicate('desc(string)', safe=True)
788 @predicate('desc(string)', safe=True)
789 def desc(repo, subset, x):
789 def desc(repo, subset, x):
790 """Search commit message for string. The match is case-insensitive.
790 """Search commit message for string. The match is case-insensitive.
791 """
791 """
792 # i18n: "desc" is a keyword
792 # i18n: "desc" is a keyword
793 ds = encoding.lower(getstring(x, _("desc requires a string")))
793 ds = encoding.lower(getstring(x, _("desc requires a string")))
794
794
795 def matches(x):
795 def matches(x):
796 c = repo[x]
796 c = repo[x]
797 return ds in encoding.lower(c.description())
797 return ds in encoding.lower(c.description())
798
798
799 return subset.filter(matches, condrepr=('<desc %r>', ds))
799 return subset.filter(matches, condrepr=('<desc %r>', ds))
800
800
801 def _descendants(repo, subset, x, followfirst=False):
801 def _descendants(repo, subset, x, followfirst=False):
802 roots = getset(repo, fullreposet(repo), x)
802 roots = getset(repo, fullreposet(repo), x)
803 if not roots:
803 if not roots:
804 return baseset()
804 return baseset()
805 s = _revdescendants(repo, roots, followfirst)
805 s = _revdescendants(repo, roots, followfirst)
806
806
807 # Both sets need to be ascending in order to lazily return the union
807 # Both sets need to be ascending in order to lazily return the union
808 # in the correct order.
808 # in the correct order.
809 base = subset & roots
809 base = subset & roots
810 desc = subset & s
810 desc = subset & s
811 result = base + desc
811 result = base + desc
812 if subset.isascending():
812 if subset.isascending():
813 result.sort()
813 result.sort()
814 elif subset.isdescending():
814 elif subset.isdescending():
815 result.sort(reverse=True)
815 result.sort(reverse=True)
816 else:
816 else:
817 result = subset & result
817 result = subset & result
818 return result
818 return result
819
819
820 @predicate('descendants(set)', safe=True)
820 @predicate('descendants(set)', safe=True)
821 def descendants(repo, subset, x):
821 def descendants(repo, subset, x):
822 """Changesets which are descendants of changesets in set.
822 """Changesets which are descendants of changesets in set.
823 """
823 """
824 return _descendants(repo, subset, x)
824 return _descendants(repo, subset, x)
825
825
826 @predicate('_firstdescendants', safe=True)
826 @predicate('_firstdescendants', safe=True)
827 def _firstdescendants(repo, subset, x):
827 def _firstdescendants(repo, subset, x):
828 # ``_firstdescendants(set)``
828 # ``_firstdescendants(set)``
829 # Like ``descendants(set)`` but follows only the first parents.
829 # Like ``descendants(set)`` but follows only the first parents.
830 return _descendants(repo, subset, x, followfirst=True)
830 return _descendants(repo, subset, x, followfirst=True)
831
831
832 @predicate('destination([set])', safe=True)
832 @predicate('destination([set])', safe=True)
833 def destination(repo, subset, x):
833 def destination(repo, subset, x):
834 """Changesets that were created by a graft, transplant or rebase operation,
834 """Changesets that were created by a graft, transplant or rebase operation,
835 with the given revisions specified as the source. Omitting the optional set
835 with the given revisions specified as the source. Omitting the optional set
836 is the same as passing all().
836 is the same as passing all().
837 """
837 """
838 if x is not None:
838 if x is not None:
839 sources = getset(repo, fullreposet(repo), x)
839 sources = getset(repo, fullreposet(repo), x)
840 else:
840 else:
841 sources = fullreposet(repo)
841 sources = fullreposet(repo)
842
842
843 dests = set()
843 dests = set()
844
844
845 # subset contains all of the possible destinations that can be returned, so
845 # subset contains all of the possible destinations that can be returned, so
846 # iterate over them and see if their source(s) were provided in the arg set.
846 # iterate over them and see if their source(s) were provided in the arg set.
847 # Even if the immediate src of r is not in the arg set, src's source (or
847 # Even if the immediate src of r is not in the arg set, src's source (or
848 # further back) may be. Scanning back further than the immediate src allows
848 # further back) may be. Scanning back further than the immediate src allows
849 # transitive transplants and rebases to yield the same results as transitive
849 # transitive transplants and rebases to yield the same results as transitive
850 # grafts.
850 # grafts.
851 for r in subset:
851 for r in subset:
852 src = _getrevsource(repo, r)
852 src = _getrevsource(repo, r)
853 lineage = None
853 lineage = None
854
854
855 while src is not None:
855 while src is not None:
856 if lineage is None:
856 if lineage is None:
857 lineage = list()
857 lineage = list()
858
858
859 lineage.append(r)
859 lineage.append(r)
860
860
861 # The visited lineage is a match if the current source is in the arg
861 # The visited lineage is a match if the current source is in the arg
862 # set. Since every candidate dest is visited by way of iterating
862 # set. Since every candidate dest is visited by way of iterating
863 # subset, any dests further back in the lineage will be tested by a
863 # subset, any dests further back in the lineage will be tested by a
864 # different iteration over subset. Likewise, if the src was already
864 # different iteration over subset. Likewise, if the src was already
865 # selected, the current lineage can be selected without going back
865 # selected, the current lineage can be selected without going back
866 # further.
866 # further.
867 if src in sources or src in dests:
867 if src in sources or src in dests:
868 dests.update(lineage)
868 dests.update(lineage)
869 break
869 break
870
870
871 r = src
871 r = src
872 src = _getrevsource(repo, r)
872 src = _getrevsource(repo, r)
873
873
874 return subset.filter(dests.__contains__,
874 return subset.filter(dests.__contains__,
875 condrepr=lambda: '<destination %r>' % sorted(dests))
875 condrepr=lambda: '<destination %r>' % sorted(dests))
876
876
877 @predicate('divergent()', safe=True)
877 @predicate('divergent()', safe=True)
878 def divergent(repo, subset, x):
878 def divergent(repo, subset, x):
879 """
879 """
880 Final successors of changesets with an alternative set of final successors.
880 Final successors of changesets with an alternative set of final successors.
881 """
881 """
882 # i18n: "divergent" is a keyword
882 # i18n: "divergent" is a keyword
883 getargs(x, 0, 0, _("divergent takes no arguments"))
883 getargs(x, 0, 0, _("divergent takes no arguments"))
884 divergent = obsmod.getrevs(repo, 'divergent')
884 divergent = obsmod.getrevs(repo, 'divergent')
885 return subset & divergent
885 return subset & divergent
886
886
887 @predicate('extinct()', safe=True)
887 @predicate('extinct()', safe=True)
888 def extinct(repo, subset, x):
888 def extinct(repo, subset, x):
889 """Obsolete changesets with obsolete descendants only.
889 """Obsolete changesets with obsolete descendants only.
890 """
890 """
891 # i18n: "extinct" is a keyword
891 # i18n: "extinct" is a keyword
892 getargs(x, 0, 0, _("extinct takes no arguments"))
892 getargs(x, 0, 0, _("extinct takes no arguments"))
893 extincts = obsmod.getrevs(repo, 'extinct')
893 extincts = obsmod.getrevs(repo, 'extinct')
894 return subset & extincts
894 return subset & extincts
895
895
896 @predicate('extra(label, [value])', safe=True)
896 @predicate('extra(label, [value])', safe=True)
897 def extra(repo, subset, x):
897 def extra(repo, subset, x):
898 """Changesets with the given label in the extra metadata, with the given
898 """Changesets with the given label in the extra metadata, with the given
899 optional value.
899 optional value.
900
900
901 If `value` starts with `re:`, the remainder of the value is treated as
901 If `value` starts with `re:`, the remainder of the value is treated as
902 a regular expression. To match a value that actually starts with `re:`,
902 a regular expression. To match a value that actually starts with `re:`,
903 use the prefix `literal:`.
903 use the prefix `literal:`.
904 """
904 """
905 args = getargsdict(x, 'extra', 'label value')
905 args = getargsdict(x, 'extra', 'label value')
906 if 'label' not in args:
906 if 'label' not in args:
907 # i18n: "extra" is a keyword
907 # i18n: "extra" is a keyword
908 raise error.ParseError(_('extra takes at least 1 argument'))
908 raise error.ParseError(_('extra takes at least 1 argument'))
909 # i18n: "extra" is a keyword
909 # i18n: "extra" is a keyword
910 label = getstring(args['label'], _('first argument to extra must be '
910 label = getstring(args['label'], _('first argument to extra must be '
911 'a string'))
911 'a string'))
912 value = None
912 value = None
913
913
914 if 'value' in args:
914 if 'value' in args:
915 # i18n: "extra" is a keyword
915 # i18n: "extra" is a keyword
916 value = getstring(args['value'], _('second argument to extra must be '
916 value = getstring(args['value'], _('second argument to extra must be '
917 'a string'))
917 'a string'))
918 kind, value, matcher = util.stringmatcher(value)
918 kind, value, matcher = util.stringmatcher(value)
919
919
920 def _matchvalue(r):
920 def _matchvalue(r):
921 extra = repo[r].extra()
921 extra = repo[r].extra()
922 return label in extra and (value is None or matcher(extra[label]))
922 return label in extra and (value is None or matcher(extra[label]))
923
923
924 return subset.filter(lambda r: _matchvalue(r),
924 return subset.filter(lambda r: _matchvalue(r),
925 condrepr=('<extra[%r] %r>', label, value))
925 condrepr=('<extra[%r] %r>', label, value))
926
926
927 @predicate('filelog(pattern)', safe=True)
927 @predicate('filelog(pattern)', safe=True)
928 def filelog(repo, subset, x):
928 def filelog(repo, subset, x):
929 """Changesets connected to the specified filelog.
929 """Changesets connected to the specified filelog.
930
930
931 For performance reasons, visits only revisions mentioned in the file-level
931 For performance reasons, visits only revisions mentioned in the file-level
932 filelog, rather than filtering through all changesets (much faster, but
932 filelog, rather than filtering through all changesets (much faster, but
933 doesn't include deletes or duplicate changes). For a slower, more accurate
933 doesn't include deletes or duplicate changes). For a slower, more accurate
934 result, use ``file()``.
934 result, use ``file()``.
935
935
936 The pattern without explicit kind like ``glob:`` is expected to be
936 The pattern without explicit kind like ``glob:`` is expected to be
937 relative to the current directory and match against a file exactly
937 relative to the current directory and match against a file exactly
938 for efficiency.
938 for efficiency.
939
939
940 If some linkrev points to revisions filtered by the current repoview, we'll
940 If some linkrev points to revisions filtered by the current repoview, we'll
941 work around it to return a non-filtered value.
941 work around it to return a non-filtered value.
942 """
942 """
943
943
944 # i18n: "filelog" is a keyword
944 # i18n: "filelog" is a keyword
945 pat = getstring(x, _("filelog requires a pattern"))
945 pat = getstring(x, _("filelog requires a pattern"))
946 s = set()
946 s = set()
947 cl = repo.changelog
947 cl = repo.changelog
948
948
949 if not matchmod.patkind(pat):
949 if not matchmod.patkind(pat):
950 f = pathutil.canonpath(repo.root, repo.getcwd(), pat)
950 f = pathutil.canonpath(repo.root, repo.getcwd(), pat)
951 files = [f]
951 files = [f]
952 else:
952 else:
953 m = matchmod.match(repo.root, repo.getcwd(), [pat], ctx=repo[None])
953 m = matchmod.match(repo.root, repo.getcwd(), [pat], ctx=repo[None])
954 files = (f for f in repo[None] if m(f))
954 files = (f for f in repo[None] if m(f))
955
955
956 for f in files:
956 for f in files:
957 fl = repo.file(f)
957 fl = repo.file(f)
958 known = {}
958 known = {}
959 scanpos = 0
959 scanpos = 0
960 for fr in list(fl):
960 for fr in list(fl):
961 fn = fl.node(fr)
961 fn = fl.node(fr)
962 if fn in known:
962 if fn in known:
963 s.add(known[fn])
963 s.add(known[fn])
964 continue
964 continue
965
965
966 lr = fl.linkrev(fr)
966 lr = fl.linkrev(fr)
967 if lr in cl:
967 if lr in cl:
968 s.add(lr)
968 s.add(lr)
969 elif scanpos is not None:
969 elif scanpos is not None:
970 # lowest matching changeset is filtered, scan further
970 # lowest matching changeset is filtered, scan further
971 # ahead in changelog
971 # ahead in changelog
972 start = max(lr, scanpos) + 1
972 start = max(lr, scanpos) + 1
973 scanpos = None
973 scanpos = None
974 for r in cl.revs(start):
974 for r in cl.revs(start):
975 # minimize parsing of non-matching entries
975 # minimize parsing of non-matching entries
976 if f in cl.revision(r) and f in cl.readfiles(r):
976 if f in cl.revision(r) and f in cl.readfiles(r):
977 try:
977 try:
978 # try to use manifest delta fastpath
978 # try to use manifest delta fastpath
979 n = repo[r].filenode(f)
979 n = repo[r].filenode(f)
980 if n not in known:
980 if n not in known:
981 if n == fn:
981 if n == fn:
982 s.add(r)
982 s.add(r)
983 scanpos = r
983 scanpos = r
984 break
984 break
985 else:
985 else:
986 known[n] = r
986 known[n] = r
987 except error.ManifestLookupError:
987 except error.ManifestLookupError:
988 # deletion in changelog
988 # deletion in changelog
989 continue
989 continue
990
990
991 return subset & s
991 return subset & s
992
992
993 @predicate('first(set, [n])', safe=True)
993 @predicate('first(set, [n])', safe=True)
994 def first(repo, subset, x):
994 def first(repo, subset, x):
995 """An alias for limit().
995 """An alias for limit().
996 """
996 """
997 return limit(repo, subset, x)
997 return limit(repo, subset, x)
998
998
999 def _follow(repo, subset, x, name, followfirst=False):
999 def _follow(repo, subset, x, name, followfirst=False):
1000 l = getargs(x, 0, 1, _("%s takes no arguments or a pattern") % name)
1000 l = getargs(x, 0, 1, _("%s takes no arguments or a pattern") % name)
1001 c = repo['.']
1001 c = repo['.']
1002 if l:
1002 if l:
1003 x = getstring(l[0], _("%s expected a pattern") % name)
1003 x = getstring(l[0], _("%s expected a pattern") % name)
1004 matcher = matchmod.match(repo.root, repo.getcwd(), [x],
1004 matcher = matchmod.match(repo.root, repo.getcwd(), [x],
1005 ctx=repo[None], default='path')
1005 ctx=repo[None], default='path')
1006
1006
1007 files = c.manifest().walk(matcher)
1007 files = c.manifest().walk(matcher)
1008
1008
1009 s = set()
1009 s = set()
1010 for fname in files:
1010 for fname in files:
1011 fctx = c[fname]
1011 fctx = c[fname]
1012 s = s.union(set(c.rev() for c in fctx.ancestors(followfirst)))
1012 s = s.union(set(c.rev() for c in fctx.ancestors(followfirst)))
1013 # include the revision responsible for the most recent version
1013 # include the revision responsible for the most recent version
1014 s.add(fctx.introrev())
1014 s.add(fctx.introrev())
1015 else:
1015 else:
1016 s = _revancestors(repo, baseset([c.rev()]), followfirst)
1016 s = _revancestors(repo, baseset([c.rev()]), followfirst)
1017
1017
1018 return subset & s
1018 return subset & s
1019
1019
1020 @predicate('follow([pattern])', safe=True)
1020 @predicate('follow([pattern])', safe=True)
1021 def follow(repo, subset, x):
1021 def follow(repo, subset, x):
1022 """
1022 """
1023 An alias for ``::.`` (ancestors of the working directory's first parent).
1023 An alias for ``::.`` (ancestors of the working directory's first parent).
1024 If pattern is specified, the histories of files matching given
1024 If pattern is specified, the histories of files matching given
1025 pattern is followed, including copies.
1025 pattern is followed, including copies.
1026 """
1026 """
1027 return _follow(repo, subset, x, 'follow')
1027 return _follow(repo, subset, x, 'follow')
1028
1028
1029 @predicate('_followfirst', safe=True)
1029 @predicate('_followfirst', safe=True)
1030 def _followfirst(repo, subset, x):
1030 def _followfirst(repo, subset, x):
1031 # ``followfirst([pattern])``
1031 # ``followfirst([pattern])``
1032 # Like ``follow([pattern])`` but follows only the first parent of
1032 # Like ``follow([pattern])`` but follows only the first parent of
1033 # every revisions or files revisions.
1033 # every revisions or files revisions.
1034 return _follow(repo, subset, x, '_followfirst', followfirst=True)
1034 return _follow(repo, subset, x, '_followfirst', followfirst=True)
1035
1035
1036 @predicate('all()', safe=True)
1036 @predicate('all()', safe=True)
1037 def getall(repo, subset, x):
1037 def getall(repo, subset, x):
1038 """All changesets, the same as ``0:tip``.
1038 """All changesets, the same as ``0:tip``.
1039 """
1039 """
1040 # i18n: "all" is a keyword
1040 # i18n: "all" is a keyword
1041 getargs(x, 0, 0, _("all takes no arguments"))
1041 getargs(x, 0, 0, _("all takes no arguments"))
1042 return subset & spanset(repo) # drop "null" if any
1042 return subset & spanset(repo) # drop "null" if any
1043
1043
1044 @predicate('grep(regex)')
1044 @predicate('grep(regex)')
1045 def grep(repo, subset, x):
1045 def grep(repo, subset, x):
1046 """Like ``keyword(string)`` but accepts a regex. Use ``grep(r'...')``
1046 """Like ``keyword(string)`` but accepts a regex. Use ``grep(r'...')``
1047 to ensure special escape characters are handled correctly. Unlike
1047 to ensure special escape characters are handled correctly. Unlike
1048 ``keyword(string)``, the match is case-sensitive.
1048 ``keyword(string)``, the match is case-sensitive.
1049 """
1049 """
1050 try:
1050 try:
1051 # i18n: "grep" is a keyword
1051 # i18n: "grep" is a keyword
1052 gr = re.compile(getstring(x, _("grep requires a string")))
1052 gr = re.compile(getstring(x, _("grep requires a string")))
1053 except re.error as e:
1053 except re.error as e:
1054 raise error.ParseError(_('invalid match pattern: %s') % e)
1054 raise error.ParseError(_('invalid match pattern: %s') % e)
1055
1055
1056 def matches(x):
1056 def matches(x):
1057 c = repo[x]
1057 c = repo[x]
1058 for e in c.files() + [c.user(), c.description()]:
1058 for e in c.files() + [c.user(), c.description()]:
1059 if gr.search(e):
1059 if gr.search(e):
1060 return True
1060 return True
1061 return False
1061 return False
1062
1062
1063 return subset.filter(matches, condrepr=('<grep %r>', gr.pattern))
1063 return subset.filter(matches, condrepr=('<grep %r>', gr.pattern))
1064
1064
1065 @predicate('_matchfiles', safe=True)
1065 @predicate('_matchfiles', safe=True)
1066 def _matchfiles(repo, subset, x):
1066 def _matchfiles(repo, subset, x):
1067 # _matchfiles takes a revset list of prefixed arguments:
1067 # _matchfiles takes a revset list of prefixed arguments:
1068 #
1068 #
1069 # [p:foo, i:bar, x:baz]
1069 # [p:foo, i:bar, x:baz]
1070 #
1070 #
1071 # builds a match object from them and filters subset. Allowed
1071 # builds a match object from them and filters subset. Allowed
1072 # prefixes are 'p:' for regular patterns, 'i:' for include
1072 # prefixes are 'p:' for regular patterns, 'i:' for include
1073 # patterns and 'x:' for exclude patterns. Use 'r:' prefix to pass
1073 # patterns and 'x:' for exclude patterns. Use 'r:' prefix to pass
1074 # a revision identifier, or the empty string to reference the
1074 # a revision identifier, or the empty string to reference the
1075 # working directory, from which the match object is
1075 # working directory, from which the match object is
1076 # initialized. Use 'd:' to set the default matching mode, default
1076 # initialized. Use 'd:' to set the default matching mode, default
1077 # to 'glob'. At most one 'r:' and 'd:' argument can be passed.
1077 # to 'glob'. At most one 'r:' and 'd:' argument can be passed.
1078
1078
1079 l = getargs(x, 1, -1, "_matchfiles requires at least one argument")
1079 l = getargs(x, 1, -1, "_matchfiles requires at least one argument")
1080 pats, inc, exc = [], [], []
1080 pats, inc, exc = [], [], []
1081 rev, default = None, None
1081 rev, default = None, None
1082 for arg in l:
1082 for arg in l:
1083 s = getstring(arg, "_matchfiles requires string arguments")
1083 s = getstring(arg, "_matchfiles requires string arguments")
1084 prefix, value = s[:2], s[2:]
1084 prefix, value = s[:2], s[2:]
1085 if prefix == 'p:':
1085 if prefix == 'p:':
1086 pats.append(value)
1086 pats.append(value)
1087 elif prefix == 'i:':
1087 elif prefix == 'i:':
1088 inc.append(value)
1088 inc.append(value)
1089 elif prefix == 'x:':
1089 elif prefix == 'x:':
1090 exc.append(value)
1090 exc.append(value)
1091 elif prefix == 'r:':
1091 elif prefix == 'r:':
1092 if rev is not None:
1092 if rev is not None:
1093 raise error.ParseError('_matchfiles expected at most one '
1093 raise error.ParseError('_matchfiles expected at most one '
1094 'revision')
1094 'revision')
1095 if value != '': # empty means working directory; leave rev as None
1095 if value != '': # empty means working directory; leave rev as None
1096 rev = value
1096 rev = value
1097 elif prefix == 'd:':
1097 elif prefix == 'd:':
1098 if default is not None:
1098 if default is not None:
1099 raise error.ParseError('_matchfiles expected at most one '
1099 raise error.ParseError('_matchfiles expected at most one '
1100 'default mode')
1100 'default mode')
1101 default = value
1101 default = value
1102 else:
1102 else:
1103 raise error.ParseError('invalid _matchfiles prefix: %s' % prefix)
1103 raise error.ParseError('invalid _matchfiles prefix: %s' % prefix)
1104 if not default:
1104 if not default:
1105 default = 'glob'
1105 default = 'glob'
1106
1106
1107 m = matchmod.match(repo.root, repo.getcwd(), pats, include=inc,
1107 m = matchmod.match(repo.root, repo.getcwd(), pats, include=inc,
1108 exclude=exc, ctx=repo[rev], default=default)
1108 exclude=exc, ctx=repo[rev], default=default)
1109
1109
1110 # This directly read the changelog data as creating changectx for all
1110 # This directly read the changelog data as creating changectx for all
1111 # revisions is quite expensive.
1111 # revisions is quite expensive.
1112 getfiles = repo.changelog.readfiles
1112 getfiles = repo.changelog.readfiles
1113 wdirrev = node.wdirrev
1113 wdirrev = node.wdirrev
1114 def matches(x):
1114 def matches(x):
1115 if x == wdirrev:
1115 if x == wdirrev:
1116 files = repo[x].files()
1116 files = repo[x].files()
1117 else:
1117 else:
1118 files = getfiles(x)
1118 files = getfiles(x)
1119 for f in files:
1119 for f in files:
1120 if m(f):
1120 if m(f):
1121 return True
1121 return True
1122 return False
1122 return False
1123
1123
1124 return subset.filter(matches,
1124 return subset.filter(matches,
1125 condrepr=('<matchfiles patterns=%r, include=%r '
1125 condrepr=('<matchfiles patterns=%r, include=%r '
1126 'exclude=%r, default=%r, rev=%r>',
1126 'exclude=%r, default=%r, rev=%r>',
1127 pats, inc, exc, default, rev))
1127 pats, inc, exc, default, rev))
1128
1128
1129 @predicate('file(pattern)', safe=True)
1129 @predicate('file(pattern)', safe=True)
1130 def hasfile(repo, subset, x):
1130 def hasfile(repo, subset, x):
1131 """Changesets affecting files matched by pattern.
1131 """Changesets affecting files matched by pattern.
1132
1132
1133 For a faster but less accurate result, consider using ``filelog()``
1133 For a faster but less accurate result, consider using ``filelog()``
1134 instead.
1134 instead.
1135
1135
1136 This predicate uses ``glob:`` as the default kind of pattern.
1136 This predicate uses ``glob:`` as the default kind of pattern.
1137 """
1137 """
1138 # i18n: "file" is a keyword
1138 # i18n: "file" is a keyword
1139 pat = getstring(x, _("file requires a pattern"))
1139 pat = getstring(x, _("file requires a pattern"))
1140 return _matchfiles(repo, subset, ('string', 'p:' + pat))
1140 return _matchfiles(repo, subset, ('string', 'p:' + pat))
1141
1141
1142 @predicate('head()', safe=True)
1142 @predicate('head()', safe=True)
1143 def head(repo, subset, x):
1143 def head(repo, subset, x):
1144 """Changeset is a named branch head.
1144 """Changeset is a named branch head.
1145 """
1145 """
1146 # i18n: "head" is a keyword
1146 # i18n: "head" is a keyword
1147 getargs(x, 0, 0, _("head takes no arguments"))
1147 getargs(x, 0, 0, _("head takes no arguments"))
1148 hs = set()
1148 hs = set()
1149 cl = repo.changelog
1149 cl = repo.changelog
1150 for b, ls in repo.branchmap().iteritems():
1150 for b, ls in repo.branchmap().iteritems():
1151 hs.update(cl.rev(h) for h in ls)
1151 hs.update(cl.rev(h) for h in ls)
1152 # XXX using a set to feed the baseset is wrong. Sets are not ordered.
1152 # XXX using a set to feed the baseset is wrong. Sets are not ordered.
1153 # This does not break because of other fullreposet misbehavior.
1153 # This does not break because of other fullreposet misbehavior.
1154 # XXX We should combine with subset first: 'subset & baseset(...)'. This is
1154 # XXX We should combine with subset first: 'subset & baseset(...)'. This is
1155 # necessary to ensure we preserve the order in subset.
1155 # necessary to ensure we preserve the order in subset.
1156 return baseset(hs) & subset
1156 return baseset(hs) & subset
1157
1157
1158 @predicate('heads(set)', safe=True)
1158 @predicate('heads(set)', safe=True)
1159 def heads(repo, subset, x):
1159 def heads(repo, subset, x):
1160 """Members of set with no children in set.
1160 """Members of set with no children in set.
1161 """
1161 """
1162 s = getset(repo, subset, x)
1162 s = getset(repo, subset, x)
1163 ps = parents(repo, subset, x)
1163 ps = parents(repo, subset, x)
1164 return s - ps
1164 return s - ps
1165
1165
1166 @predicate('hidden()', safe=True)
1166 @predicate('hidden()', safe=True)
1167 def hidden(repo, subset, x):
1167 def hidden(repo, subset, x):
1168 """Hidden changesets.
1168 """Hidden changesets.
1169 """
1169 """
1170 # i18n: "hidden" is a keyword
1170 # i18n: "hidden" is a keyword
1171 getargs(x, 0, 0, _("hidden takes no arguments"))
1171 getargs(x, 0, 0, _("hidden takes no arguments"))
1172 hiddenrevs = repoview.filterrevs(repo, 'visible')
1172 hiddenrevs = repoview.filterrevs(repo, 'visible')
1173 return subset & hiddenrevs
1173 return subset & hiddenrevs
1174
1174
1175 @predicate('keyword(string)', safe=True)
1175 @predicate('keyword(string)', safe=True)
1176 def keyword(repo, subset, x):
1176 def keyword(repo, subset, x):
1177 """Search commit message, user name, and names of changed files for
1177 """Search commit message, user name, and names of changed files for
1178 string. The match is case-insensitive.
1178 string. The match is case-insensitive.
1179 """
1179 """
1180 # i18n: "keyword" is a keyword
1180 # i18n: "keyword" is a keyword
1181 kw = encoding.lower(getstring(x, _("keyword requires a string")))
1181 kw = encoding.lower(getstring(x, _("keyword requires a string")))
1182
1182
1183 def matches(r):
1183 def matches(r):
1184 c = repo[r]
1184 c = repo[r]
1185 return any(kw in encoding.lower(t)
1185 return any(kw in encoding.lower(t)
1186 for t in c.files() + [c.user(), c.description()])
1186 for t in c.files() + [c.user(), c.description()])
1187
1187
1188 return subset.filter(matches, condrepr=('<keyword %r>', kw))
1188 return subset.filter(matches, condrepr=('<keyword %r>', kw))
1189
1189
1190 @predicate('limit(set[, n[, offset]])', safe=True)
1190 @predicate('limit(set[, n[, offset]])', safe=True)
1191 def limit(repo, subset, x):
1191 def limit(repo, subset, x):
1192 """First n members of set, defaulting to 1, starting from offset.
1192 """First n members of set, defaulting to 1, starting from offset.
1193 """
1193 """
1194 args = getargsdict(x, 'limit', 'set n offset')
1194 args = getargsdict(x, 'limit', 'set n offset')
1195 if 'set' not in args:
1195 if 'set' not in args:
1196 # i18n: "limit" is a keyword
1196 # i18n: "limit" is a keyword
1197 raise error.ParseError(_("limit requires one to three arguments"))
1197 raise error.ParseError(_("limit requires one to three arguments"))
1198 try:
1198 try:
1199 lim, ofs = 1, 0
1199 lim, ofs = 1, 0
1200 if 'n' in args:
1200 if 'n' in args:
1201 # i18n: "limit" is a keyword
1201 # i18n: "limit" is a keyword
1202 lim = int(getstring(args['n'], _("limit requires a number")))
1202 lim = int(getstring(args['n'], _("limit requires a number")))
1203 if 'offset' in args:
1203 if 'offset' in args:
1204 # i18n: "limit" is a keyword
1204 # i18n: "limit" is a keyword
1205 ofs = int(getstring(args['offset'], _("limit requires a number")))
1205 ofs = int(getstring(args['offset'], _("limit requires a number")))
1206 if ofs < 0:
1206 if ofs < 0:
1207 raise error.ParseError(_("negative offset"))
1207 raise error.ParseError(_("negative offset"))
1208 except (TypeError, ValueError):
1208 except (TypeError, ValueError):
1209 # i18n: "limit" is a keyword
1209 # i18n: "limit" is a keyword
1210 raise error.ParseError(_("limit expects a number"))
1210 raise error.ParseError(_("limit expects a number"))
1211 os = getset(repo, fullreposet(repo), args['set'])
1211 os = getset(repo, fullreposet(repo), args['set'])
1212 result = []
1212 result = []
1213 it = iter(os)
1213 it = iter(os)
1214 for x in xrange(ofs):
1214 for x in xrange(ofs):
1215 y = next(it, None)
1215 y = next(it, None)
1216 if y is None:
1216 if y is None:
1217 break
1217 break
1218 for x in xrange(lim):
1218 for x in xrange(lim):
1219 y = next(it, None)
1219 y = next(it, None)
1220 if y is None:
1220 if y is None:
1221 break
1221 break
1222 elif y in subset:
1222 elif y in subset:
1223 result.append(y)
1223 result.append(y)
1224 return baseset(result, datarepr=('<limit n=%d, offset=%d, %r, %r>',
1224 return baseset(result, datarepr=('<limit n=%d, offset=%d, %r, %r>',
1225 lim, ofs, subset, os))
1225 lim, ofs, subset, os))
1226
1226
1227 @predicate('last(set, [n])', safe=True)
1227 @predicate('last(set, [n])', safe=True)
1228 def last(repo, subset, x):
1228 def last(repo, subset, x):
1229 """Last n members of set, defaulting to 1.
1229 """Last n members of set, defaulting to 1.
1230 """
1230 """
1231 # i18n: "last" is a keyword
1231 # i18n: "last" is a keyword
1232 l = getargs(x, 1, 2, _("last requires one or two arguments"))
1232 l = getargs(x, 1, 2, _("last requires one or two arguments"))
1233 try:
1233 try:
1234 lim = 1
1234 lim = 1
1235 if len(l) == 2:
1235 if len(l) == 2:
1236 # i18n: "last" is a keyword
1236 # i18n: "last" is a keyword
1237 lim = int(getstring(l[1], _("last requires a number")))
1237 lim = int(getstring(l[1], _("last requires a number")))
1238 except (TypeError, ValueError):
1238 except (TypeError, ValueError):
1239 # i18n: "last" is a keyword
1239 # i18n: "last" is a keyword
1240 raise error.ParseError(_("last expects a number"))
1240 raise error.ParseError(_("last expects a number"))
1241 os = getset(repo, fullreposet(repo), l[0])
1241 os = getset(repo, fullreposet(repo), l[0])
1242 os.reverse()
1242 os.reverse()
1243 result = []
1243 result = []
1244 it = iter(os)
1244 it = iter(os)
1245 for x in xrange(lim):
1245 for x in xrange(lim):
1246 y = next(it, None)
1246 y = next(it, None)
1247 if y is None:
1247 if y is None:
1248 break
1248 break
1249 elif y in subset:
1249 elif y in subset:
1250 result.append(y)
1250 result.append(y)
1251 return baseset(result, datarepr=('<last n=%d, %r, %r>', lim, subset, os))
1251 return baseset(result, datarepr=('<last n=%d, %r, %r>', lim, subset, os))
1252
1252
1253 @predicate('max(set)', safe=True)
1253 @predicate('max(set)', safe=True)
1254 def maxrev(repo, subset, x):
1254 def maxrev(repo, subset, x):
1255 """Changeset with highest revision number in set.
1255 """Changeset with highest revision number in set.
1256 """
1256 """
1257 os = getset(repo, fullreposet(repo), x)
1257 os = getset(repo, fullreposet(repo), x)
1258 try:
1258 try:
1259 m = os.max()
1259 m = os.max()
1260 if m in subset:
1260 if m in subset:
1261 return baseset([m], datarepr=('<max %r, %r>', subset, os))
1261 return baseset([m], datarepr=('<max %r, %r>', subset, os))
1262 except ValueError:
1262 except ValueError:
1263 # os.max() throws a ValueError when the collection is empty.
1263 # os.max() throws a ValueError when the collection is empty.
1264 # Same as python's max().
1264 # Same as python's max().
1265 pass
1265 pass
1266 return baseset(datarepr=('<max %r, %r>', subset, os))
1266 return baseset(datarepr=('<max %r, %r>', subset, os))
1267
1267
1268 @predicate('merge()', safe=True)
1268 @predicate('merge()', safe=True)
1269 def merge(repo, subset, x):
1269 def merge(repo, subset, x):
1270 """Changeset is a merge changeset.
1270 """Changeset is a merge changeset.
1271 """
1271 """
1272 # i18n: "merge" is a keyword
1272 # i18n: "merge" is a keyword
1273 getargs(x, 0, 0, _("merge takes no arguments"))
1273 getargs(x, 0, 0, _("merge takes no arguments"))
1274 cl = repo.changelog
1274 cl = repo.changelog
1275 return subset.filter(lambda r: cl.parentrevs(r)[1] != -1,
1275 return subset.filter(lambda r: cl.parentrevs(r)[1] != -1,
1276 condrepr='<merge>')
1276 condrepr='<merge>')
1277
1277
1278 @predicate('branchpoint()', safe=True)
1278 @predicate('branchpoint()', safe=True)
1279 def branchpoint(repo, subset, x):
1279 def branchpoint(repo, subset, x):
1280 """Changesets with more than one child.
1280 """Changesets with more than one child.
1281 """
1281 """
1282 # i18n: "branchpoint" is a keyword
1282 # i18n: "branchpoint" is a keyword
1283 getargs(x, 0, 0, _("branchpoint takes no arguments"))
1283 getargs(x, 0, 0, _("branchpoint takes no arguments"))
1284 cl = repo.changelog
1284 cl = repo.changelog
1285 if not subset:
1285 if not subset:
1286 return baseset()
1286 return baseset()
1287 # XXX this should be 'parentset.min()' assuming 'parentset' is a smartset
1287 # XXX this should be 'parentset.min()' assuming 'parentset' is a smartset
1288 # (and if it is not, it should.)
1288 # (and if it is not, it should.)
1289 baserev = min(subset)
1289 baserev = min(subset)
1290 parentscount = [0]*(len(repo) - baserev)
1290 parentscount = [0]*(len(repo) - baserev)
1291 for r in cl.revs(start=baserev + 1):
1291 for r in cl.revs(start=baserev + 1):
1292 for p in cl.parentrevs(r):
1292 for p in cl.parentrevs(r):
1293 if p >= baserev:
1293 if p >= baserev:
1294 parentscount[p - baserev] += 1
1294 parentscount[p - baserev] += 1
1295 return subset.filter(lambda r: parentscount[r - baserev] > 1,
1295 return subset.filter(lambda r: parentscount[r - baserev] > 1,
1296 condrepr='<branchpoint>')
1296 condrepr='<branchpoint>')
1297
1297
1298 @predicate('min(set)', safe=True)
1298 @predicate('min(set)', safe=True)
1299 def minrev(repo, subset, x):
1299 def minrev(repo, subset, x):
1300 """Changeset with lowest revision number in set.
1300 """Changeset with lowest revision number in set.
1301 """
1301 """
1302 os = getset(repo, fullreposet(repo), x)
1302 os = getset(repo, fullreposet(repo), x)
1303 try:
1303 try:
1304 m = os.min()
1304 m = os.min()
1305 if m in subset:
1305 if m in subset:
1306 return baseset([m], datarepr=('<min %r, %r>', subset, os))
1306 return baseset([m], datarepr=('<min %r, %r>', subset, os))
1307 except ValueError:
1307 except ValueError:
1308 # os.min() throws a ValueError when the collection is empty.
1308 # os.min() throws a ValueError when the collection is empty.
1309 # Same as python's min().
1309 # Same as python's min().
1310 pass
1310 pass
1311 return baseset(datarepr=('<min %r, %r>', subset, os))
1311 return baseset(datarepr=('<min %r, %r>', subset, os))
1312
1312
1313 @predicate('modifies(pattern)', safe=True)
1313 @predicate('modifies(pattern)', safe=True)
1314 def modifies(repo, subset, x):
1314 def modifies(repo, subset, x):
1315 """Changesets modifying files matched by pattern.
1315 """Changesets modifying files matched by pattern.
1316
1316
1317 The pattern without explicit kind like ``glob:`` is expected to be
1317 The pattern without explicit kind like ``glob:`` is expected to be
1318 relative to the current directory and match against a file or a
1318 relative to the current directory and match against a file or a
1319 directory.
1319 directory.
1320 """
1320 """
1321 # i18n: "modifies" is a keyword
1321 # i18n: "modifies" is a keyword
1322 pat = getstring(x, _("modifies requires a pattern"))
1322 pat = getstring(x, _("modifies requires a pattern"))
1323 return checkstatus(repo, subset, pat, 0)
1323 return checkstatus(repo, subset, pat, 0)
1324
1324
1325 @predicate('named(namespace)')
1325 @predicate('named(namespace)')
1326 def named(repo, subset, x):
1326 def named(repo, subset, x):
1327 """The changesets in a given namespace.
1327 """The changesets in a given namespace.
1328
1328
1329 If `namespace` starts with `re:`, the remainder of the string is treated as
1329 If `namespace` starts with `re:`, the remainder of the string is treated as
1330 a regular expression. To match a namespace that actually starts with `re:`,
1330 a regular expression. To match a namespace that actually starts with `re:`,
1331 use the prefix `literal:`.
1331 use the prefix `literal:`.
1332 """
1332 """
1333 # i18n: "named" is a keyword
1333 # i18n: "named" is a keyword
1334 args = getargs(x, 1, 1, _('named requires a namespace argument'))
1334 args = getargs(x, 1, 1, _('named requires a namespace argument'))
1335
1335
1336 ns = getstring(args[0],
1336 ns = getstring(args[0],
1337 # i18n: "named" is a keyword
1337 # i18n: "named" is a keyword
1338 _('the argument to named must be a string'))
1338 _('the argument to named must be a string'))
1339 kind, pattern, matcher = util.stringmatcher(ns)
1339 kind, pattern, matcher = util.stringmatcher(ns)
1340 namespaces = set()
1340 namespaces = set()
1341 if kind == 'literal':
1341 if kind == 'literal':
1342 if pattern not in repo.names:
1342 if pattern not in repo.names:
1343 raise error.RepoLookupError(_("namespace '%s' does not exist")
1343 raise error.RepoLookupError(_("namespace '%s' does not exist")
1344 % ns)
1344 % ns)
1345 namespaces.add(repo.names[pattern])
1345 namespaces.add(repo.names[pattern])
1346 else:
1346 else:
1347 for name, ns in repo.names.iteritems():
1347 for name, ns in repo.names.iteritems():
1348 if matcher(name):
1348 if matcher(name):
1349 namespaces.add(ns)
1349 namespaces.add(ns)
1350 if not namespaces:
1350 if not namespaces:
1351 raise error.RepoLookupError(_("no namespace exists"
1351 raise error.RepoLookupError(_("no namespace exists"
1352 " that match '%s'") % pattern)
1352 " that match '%s'") % pattern)
1353
1353
1354 names = set()
1354 names = set()
1355 for ns in namespaces:
1355 for ns in namespaces:
1356 for name in ns.listnames(repo):
1356 for name in ns.listnames(repo):
1357 if name not in ns.deprecated:
1357 if name not in ns.deprecated:
1358 names.update(repo[n].rev() for n in ns.nodes(repo, name))
1358 names.update(repo[n].rev() for n in ns.nodes(repo, name))
1359
1359
1360 names -= set([node.nullrev])
1360 names -= set([node.nullrev])
1361 return subset & names
1361 return subset & names
1362
1362
1363 @predicate('id(string)', safe=True)
1363 @predicate('id(string)', safe=True)
1364 def node_(repo, subset, x):
1364 def node_(repo, subset, x):
1365 """Revision non-ambiguously specified by the given hex string prefix.
1365 """Revision non-ambiguously specified by the given hex string prefix.
1366 """
1366 """
1367 # i18n: "id" is a keyword
1367 # i18n: "id" is a keyword
1368 l = getargs(x, 1, 1, _("id requires one argument"))
1368 l = getargs(x, 1, 1, _("id requires one argument"))
1369 # i18n: "id" is a keyword
1369 # i18n: "id" is a keyword
1370 n = getstring(l[0], _("id requires a string"))
1370 n = getstring(l[0], _("id requires a string"))
1371 if len(n) == 40:
1371 if len(n) == 40:
1372 try:
1372 try:
1373 rn = repo.changelog.rev(node.bin(n))
1373 rn = repo.changelog.rev(node.bin(n))
1374 except (LookupError, TypeError):
1374 except (LookupError, TypeError):
1375 rn = None
1375 rn = None
1376 else:
1376 else:
1377 rn = None
1377 rn = None
1378 pm = repo.changelog._partialmatch(n)
1378 pm = repo.changelog._partialmatch(n)
1379 if pm is not None:
1379 if pm is not None:
1380 rn = repo.changelog.rev(pm)
1380 rn = repo.changelog.rev(pm)
1381
1381
1382 if rn is None:
1382 if rn is None:
1383 return baseset()
1383 return baseset()
1384 result = baseset([rn])
1384 result = baseset([rn])
1385 return result & subset
1385 return result & subset
1386
1386
1387 @predicate('obsolete()', safe=True)
1387 @predicate('obsolete()', safe=True)
1388 def obsolete(repo, subset, x):
1388 def obsolete(repo, subset, x):
1389 """Mutable changeset with a newer version."""
1389 """Mutable changeset with a newer version."""
1390 # i18n: "obsolete" is a keyword
1390 # i18n: "obsolete" is a keyword
1391 getargs(x, 0, 0, _("obsolete takes no arguments"))
1391 getargs(x, 0, 0, _("obsolete takes no arguments"))
1392 obsoletes = obsmod.getrevs(repo, 'obsolete')
1392 obsoletes = obsmod.getrevs(repo, 'obsolete')
1393 return subset & obsoletes
1393 return subset & obsoletes
1394
1394
1395 @predicate('only(set, [set])', safe=True)
1395 @predicate('only(set, [set])', safe=True)
1396 def only(repo, subset, x):
1396 def only(repo, subset, x):
1397 """Changesets that are ancestors of the first set that are not ancestors
1397 """Changesets that are ancestors of the first set that are not ancestors
1398 of any other head in the repo. If a second set is specified, the result
1398 of any other head in the repo. If a second set is specified, the result
1399 is ancestors of the first set that are not ancestors of the second set
1399 is ancestors of the first set that are not ancestors of the second set
1400 (i.e. ::<set1> - ::<set2>).
1400 (i.e. ::<set1> - ::<set2>).
1401 """
1401 """
1402 cl = repo.changelog
1402 cl = repo.changelog
1403 # i18n: "only" is a keyword
1403 # i18n: "only" is a keyword
1404 args = getargs(x, 1, 2, _('only takes one or two arguments'))
1404 args = getargs(x, 1, 2, _('only takes one or two arguments'))
1405 include = getset(repo, fullreposet(repo), args[0])
1405 include = getset(repo, fullreposet(repo), args[0])
1406 if len(args) == 1:
1406 if len(args) == 1:
1407 if not include:
1407 if not include:
1408 return baseset()
1408 return baseset()
1409
1409
1410 descendants = set(_revdescendants(repo, include, False))
1410 descendants = set(_revdescendants(repo, include, False))
1411 exclude = [rev for rev in cl.headrevs()
1411 exclude = [rev for rev in cl.headrevs()
1412 if not rev in descendants and not rev in include]
1412 if not rev in descendants and not rev in include]
1413 else:
1413 else:
1414 exclude = getset(repo, fullreposet(repo), args[1])
1414 exclude = getset(repo, fullreposet(repo), args[1])
1415
1415
1416 results = set(cl.findmissingrevs(common=exclude, heads=include))
1416 results = set(cl.findmissingrevs(common=exclude, heads=include))
1417 # XXX we should turn this into a baseset instead of a set, smartset may do
1417 # XXX we should turn this into a baseset instead of a set, smartset may do
1418 # some optimisations from the fact this is a baseset.
1418 # some optimisations from the fact this is a baseset.
1419 return subset & results
1419 return subset & results
1420
1420
1421 @predicate('origin([set])', safe=True)
1421 @predicate('origin([set])', safe=True)
1422 def origin(repo, subset, x):
1422 def origin(repo, subset, x):
1423 """
1423 """
1424 Changesets that were specified as a source for the grafts, transplants or
1424 Changesets that were specified as a source for the grafts, transplants or
1425 rebases that created the given revisions. Omitting the optional set is the
1425 rebases that created the given revisions. Omitting the optional set is the
1426 same as passing all(). If a changeset created by these operations is itself
1426 same as passing all(). If a changeset created by these operations is itself
1427 specified as a source for one of these operations, only the source changeset
1427 specified as a source for one of these operations, only the source changeset
1428 for the first operation is selected.
1428 for the first operation is selected.
1429 """
1429 """
1430 if x is not None:
1430 if x is not None:
1431 dests = getset(repo, fullreposet(repo), x)
1431 dests = getset(repo, fullreposet(repo), x)
1432 else:
1432 else:
1433 dests = fullreposet(repo)
1433 dests = fullreposet(repo)
1434
1434
1435 def _firstsrc(rev):
1435 def _firstsrc(rev):
1436 src = _getrevsource(repo, rev)
1436 src = _getrevsource(repo, rev)
1437 if src is None:
1437 if src is None:
1438 return None
1438 return None
1439
1439
1440 while True:
1440 while True:
1441 prev = _getrevsource(repo, src)
1441 prev = _getrevsource(repo, src)
1442
1442
1443 if prev is None:
1443 if prev is None:
1444 return src
1444 return src
1445 src = prev
1445 src = prev
1446
1446
1447 o = set([_firstsrc(r) for r in dests])
1447 o = set([_firstsrc(r) for r in dests])
1448 o -= set([None])
1448 o -= set([None])
1449 # XXX we should turn this into a baseset instead of a set, smartset may do
1449 # XXX we should turn this into a baseset instead of a set, smartset may do
1450 # some optimisations from the fact this is a baseset.
1450 # some optimisations from the fact this is a baseset.
1451 return subset & o
1451 return subset & o
1452
1452
1453 @predicate('outgoing([path])', safe=True)
1453 @predicate('outgoing([path])', safe=True)
1454 def outgoing(repo, subset, x):
1454 def outgoing(repo, subset, x):
1455 """Changesets not found in the specified destination repository, or the
1455 """Changesets not found in the specified destination repository, or the
1456 default push location.
1456 default push location.
1457 """
1457 """
1458 # Avoid cycles.
1458 # Avoid cycles.
1459 from . import (
1459 from . import (
1460 discovery,
1460 discovery,
1461 hg,
1461 hg,
1462 )
1462 )
1463 # i18n: "outgoing" is a keyword
1463 # i18n: "outgoing" is a keyword
1464 l = getargs(x, 0, 1, _("outgoing takes one or no arguments"))
1464 l = getargs(x, 0, 1, _("outgoing takes one or no arguments"))
1465 # i18n: "outgoing" is a keyword
1465 # i18n: "outgoing" is a keyword
1466 dest = l and getstring(l[0], _("outgoing requires a repository path")) or ''
1466 dest = l and getstring(l[0], _("outgoing requires a repository path")) or ''
1467 dest = repo.ui.expandpath(dest or 'default-push', dest or 'default')
1467 dest = repo.ui.expandpath(dest or 'default-push', dest or 'default')
1468 dest, branches = hg.parseurl(dest)
1468 dest, branches = hg.parseurl(dest)
1469 revs, checkout = hg.addbranchrevs(repo, repo, branches, [])
1469 revs, checkout = hg.addbranchrevs(repo, repo, branches, [])
1470 if revs:
1470 if revs:
1471 revs = [repo.lookup(rev) for rev in revs]
1471 revs = [repo.lookup(rev) for rev in revs]
1472 other = hg.peer(repo, {}, dest)
1472 other = hg.peer(repo, {}, dest)
1473 repo.ui.pushbuffer()
1473 repo.ui.pushbuffer()
1474 outgoing = discovery.findcommonoutgoing(repo, other, onlyheads=revs)
1474 outgoing = discovery.findcommonoutgoing(repo, other, onlyheads=revs)
1475 repo.ui.popbuffer()
1475 repo.ui.popbuffer()
1476 cl = repo.changelog
1476 cl = repo.changelog
1477 o = set([cl.rev(r) for r in outgoing.missing])
1477 o = set([cl.rev(r) for r in outgoing.missing])
1478 return subset & o
1478 return subset & o
1479
1479
1480 @predicate('p1([set])', safe=True)
1480 @predicate('p1([set])', safe=True)
1481 def p1(repo, subset, x):
1481 def p1(repo, subset, x):
1482 """First parent of changesets in set, or the working directory.
1482 """First parent of changesets in set, or the working directory.
1483 """
1483 """
1484 if x is None:
1484 if x is None:
1485 p = repo[x].p1().rev()
1485 p = repo[x].p1().rev()
1486 if p >= 0:
1486 if p >= 0:
1487 return subset & baseset([p])
1487 return subset & baseset([p])
1488 return baseset()
1488 return baseset()
1489
1489
1490 ps = set()
1490 ps = set()
1491 cl = repo.changelog
1491 cl = repo.changelog
1492 for r in getset(repo, fullreposet(repo), x):
1492 for r in getset(repo, fullreposet(repo), x):
1493 ps.add(cl.parentrevs(r)[0])
1493 ps.add(cl.parentrevs(r)[0])
1494 ps -= set([node.nullrev])
1494 ps -= set([node.nullrev])
1495 # XXX we should turn this into a baseset instead of a set, smartset may do
1495 # XXX we should turn this into a baseset instead of a set, smartset may do
1496 # some optimisations from the fact this is a baseset.
1496 # some optimisations from the fact this is a baseset.
1497 return subset & ps
1497 return subset & ps
1498
1498
1499 @predicate('p2([set])', safe=True)
1499 @predicate('p2([set])', safe=True)
1500 def p2(repo, subset, x):
1500 def p2(repo, subset, x):
1501 """Second parent of changesets in set, or the working directory.
1501 """Second parent of changesets in set, or the working directory.
1502 """
1502 """
1503 if x is None:
1503 if x is None:
1504 ps = repo[x].parents()
1504 ps = repo[x].parents()
1505 try:
1505 try:
1506 p = ps[1].rev()
1506 p = ps[1].rev()
1507 if p >= 0:
1507 if p >= 0:
1508 return subset & baseset([p])
1508 return subset & baseset([p])
1509 return baseset()
1509 return baseset()
1510 except IndexError:
1510 except IndexError:
1511 return baseset()
1511 return baseset()
1512
1512
1513 ps = set()
1513 ps = set()
1514 cl = repo.changelog
1514 cl = repo.changelog
1515 for r in getset(repo, fullreposet(repo), x):
1515 for r in getset(repo, fullreposet(repo), x):
1516 ps.add(cl.parentrevs(r)[1])
1516 ps.add(cl.parentrevs(r)[1])
1517 ps -= set([node.nullrev])
1517 ps -= set([node.nullrev])
1518 # XXX we should turn this into a baseset instead of a set, smartset may do
1518 # XXX we should turn this into a baseset instead of a set, smartset may do
1519 # some optimisations from the fact this is a baseset.
1519 # some optimisations from the fact this is a baseset.
1520 return subset & ps
1520 return subset & ps
1521
1521
1522 @predicate('parents([set])', safe=True)
1522 @predicate('parents([set])', safe=True)
1523 def parents(repo, subset, x):
1523 def parents(repo, subset, x):
1524 """
1524 """
1525 The set of all parents for all changesets in set, or the working directory.
1525 The set of all parents for all changesets in set, or the working directory.
1526 """
1526 """
1527 if x is None:
1527 if x is None:
1528 ps = set(p.rev() for p in repo[x].parents())
1528 ps = set(p.rev() for p in repo[x].parents())
1529 else:
1529 else:
1530 ps = set()
1530 ps = set()
1531 cl = repo.changelog
1531 cl = repo.changelog
1532 up = ps.update
1532 up = ps.update
1533 parentrevs = cl.parentrevs
1533 parentrevs = cl.parentrevs
1534 for r in getset(repo, fullreposet(repo), x):
1534 for r in getset(repo, fullreposet(repo), x):
1535 if r == node.wdirrev:
1535 if r == node.wdirrev:
1536 up(p.rev() for p in repo[r].parents())
1536 up(p.rev() for p in repo[r].parents())
1537 else:
1537 else:
1538 up(parentrevs(r))
1538 up(parentrevs(r))
1539 ps -= set([node.nullrev])
1539 ps -= set([node.nullrev])
1540 return subset & ps
1540 return subset & ps
1541
1541
1542 def _phase(repo, subset, target):
1542 def _phase(repo, subset, target):
1543 """helper to select all rev in phase <target>"""
1543 """helper to select all rev in phase <target>"""
1544 repo._phasecache.loadphaserevs(repo) # ensure phase's sets are loaded
1544 repo._phasecache.loadphaserevs(repo) # ensure phase's sets are loaded
1545 if repo._phasecache._phasesets:
1545 if repo._phasecache._phasesets:
1546 s = repo._phasecache._phasesets[target] - repo.changelog.filteredrevs
1546 s = repo._phasecache._phasesets[target] - repo.changelog.filteredrevs
1547 s = baseset(s)
1547 s = baseset(s)
1548 s.sort() # set are non ordered, so we enforce ascending
1548 s.sort() # set are non ordered, so we enforce ascending
1549 return subset & s
1549 return subset & s
1550 else:
1550 else:
1551 phase = repo._phasecache.phase
1551 phase = repo._phasecache.phase
1552 condition = lambda r: phase(repo, r) == target
1552 condition = lambda r: phase(repo, r) == target
1553 return subset.filter(condition, condrepr=('<phase %r>', target),
1553 return subset.filter(condition, condrepr=('<phase %r>', target),
1554 cache=False)
1554 cache=False)
1555
1555
1556 @predicate('draft()', safe=True)
1556 @predicate('draft()', safe=True)
1557 def draft(repo, subset, x):
1557 def draft(repo, subset, x):
1558 """Changeset in draft phase."""
1558 """Changeset in draft phase."""
1559 # i18n: "draft" is a keyword
1559 # i18n: "draft" is a keyword
1560 getargs(x, 0, 0, _("draft takes no arguments"))
1560 getargs(x, 0, 0, _("draft takes no arguments"))
1561 target = phases.draft
1561 target = phases.draft
1562 return _phase(repo, subset, target)
1562 return _phase(repo, subset, target)
1563
1563
1564 @predicate('secret()', safe=True)
1564 @predicate('secret()', safe=True)
1565 def secret(repo, subset, x):
1565 def secret(repo, subset, x):
1566 """Changeset in secret phase."""
1566 """Changeset in secret phase."""
1567 # i18n: "secret" is a keyword
1567 # i18n: "secret" is a keyword
1568 getargs(x, 0, 0, _("secret takes no arguments"))
1568 getargs(x, 0, 0, _("secret takes no arguments"))
1569 target = phases.secret
1569 target = phases.secret
1570 return _phase(repo, subset, target)
1570 return _phase(repo, subset, target)
1571
1571
1572 def parentspec(repo, subset, x, n):
1572 def parentspec(repo, subset, x, n):
1573 """``set^0``
1573 """``set^0``
1574 The set.
1574 The set.
1575 ``set^1`` (or ``set^``), ``set^2``
1575 ``set^1`` (or ``set^``), ``set^2``
1576 First or second parent, respectively, of all changesets in set.
1576 First or second parent, respectively, of all changesets in set.
1577 """
1577 """
1578 try:
1578 try:
1579 n = int(n[1])
1579 n = int(n[1])
1580 if n not in (0, 1, 2):
1580 if n not in (0, 1, 2):
1581 raise ValueError
1581 raise ValueError
1582 except (TypeError, ValueError):
1582 except (TypeError, ValueError):
1583 raise error.ParseError(_("^ expects a number 0, 1, or 2"))
1583 raise error.ParseError(_("^ expects a number 0, 1, or 2"))
1584 ps = set()
1584 ps = set()
1585 cl = repo.changelog
1585 cl = repo.changelog
1586 for r in getset(repo, fullreposet(repo), x):
1586 for r in getset(repo, fullreposet(repo), x):
1587 if n == 0:
1587 if n == 0:
1588 ps.add(r)
1588 ps.add(r)
1589 elif n == 1:
1589 elif n == 1:
1590 ps.add(cl.parentrevs(r)[0])
1590 ps.add(cl.parentrevs(r)[0])
1591 elif n == 2:
1591 elif n == 2:
1592 parents = cl.parentrevs(r)
1592 parents = cl.parentrevs(r)
1593 if len(parents) > 1:
1593 if len(parents) > 1:
1594 ps.add(parents[1])
1594 ps.add(parents[1])
1595 return subset & ps
1595 return subset & ps
1596
1596
1597 @predicate('present(set)', safe=True)
1597 @predicate('present(set)', safe=True)
1598 def present(repo, subset, x):
1598 def present(repo, subset, x):
1599 """An empty set, if any revision in set isn't found; otherwise,
1599 """An empty set, if any revision in set isn't found; otherwise,
1600 all revisions in set.
1600 all revisions in set.
1601
1601
1602 If any of specified revisions is not present in the local repository,
1602 If any of specified revisions is not present in the local repository,
1603 the query is normally aborted. But this predicate allows the query
1603 the query is normally aborted. But this predicate allows the query
1604 to continue even in such cases.
1604 to continue even in such cases.
1605 """
1605 """
1606 try:
1606 try:
1607 return getset(repo, subset, x)
1607 return getset(repo, subset, x)
1608 except error.RepoLookupError:
1608 except error.RepoLookupError:
1609 return baseset()
1609 return baseset()
1610
1610
1611 # for internal use
1611 # for internal use
1612 @predicate('_notpublic', safe=True)
1612 @predicate('_notpublic', safe=True)
1613 def _notpublic(repo, subset, x):
1613 def _notpublic(repo, subset, x):
1614 getargs(x, 0, 0, "_notpublic takes no arguments")
1614 getargs(x, 0, 0, "_notpublic takes no arguments")
1615 repo._phasecache.loadphaserevs(repo) # ensure phase's sets are loaded
1615 repo._phasecache.loadphaserevs(repo) # ensure phase's sets are loaded
1616 if repo._phasecache._phasesets:
1616 if repo._phasecache._phasesets:
1617 s = set()
1617 s = set()
1618 for u in repo._phasecache._phasesets[1:]:
1618 for u in repo._phasecache._phasesets[1:]:
1619 s.update(u)
1619 s.update(u)
1620 s = baseset(s - repo.changelog.filteredrevs)
1620 s = baseset(s - repo.changelog.filteredrevs)
1621 s.sort()
1621 s.sort()
1622 return subset & s
1622 return subset & s
1623 else:
1623 else:
1624 phase = repo._phasecache.phase
1624 phase = repo._phasecache.phase
1625 target = phases.public
1625 target = phases.public
1626 condition = lambda r: phase(repo, r) != target
1626 condition = lambda r: phase(repo, r) != target
1627 return subset.filter(condition, condrepr=('<phase %r>', target),
1627 return subset.filter(condition, condrepr=('<phase %r>', target),
1628 cache=False)
1628 cache=False)
1629
1629
1630 @predicate('public()', safe=True)
1630 @predicate('public()', safe=True)
1631 def public(repo, subset, x):
1631 def public(repo, subset, x):
1632 """Changeset in public phase."""
1632 """Changeset in public phase."""
1633 # i18n: "public" is a keyword
1633 # i18n: "public" is a keyword
1634 getargs(x, 0, 0, _("public takes no arguments"))
1634 getargs(x, 0, 0, _("public takes no arguments"))
1635 phase = repo._phasecache.phase
1635 phase = repo._phasecache.phase
1636 target = phases.public
1636 target = phases.public
1637 condition = lambda r: phase(repo, r) == target
1637 condition = lambda r: phase(repo, r) == target
1638 return subset.filter(condition, condrepr=('<phase %r>', target),
1638 return subset.filter(condition, condrepr=('<phase %r>', target),
1639 cache=False)
1639 cache=False)
1640
1640
1641 @predicate('remote([id [,path]])', safe=True)
1641 @predicate('remote([id [,path]])', safe=True)
1642 def remote(repo, subset, x):
1642 def remote(repo, subset, x):
1643 """Local revision that corresponds to the given identifier in a
1643 """Local revision that corresponds to the given identifier in a
1644 remote repository, if present. Here, the '.' identifier is a
1644 remote repository, if present. Here, the '.' identifier is a
1645 synonym for the current local branch.
1645 synonym for the current local branch.
1646 """
1646 """
1647
1647
1648 from . import hg # avoid start-up nasties
1648 from . import hg # avoid start-up nasties
1649 # i18n: "remote" is a keyword
1649 # i18n: "remote" is a keyword
1650 l = getargs(x, 0, 2, _("remote takes zero, one, or two arguments"))
1650 l = getargs(x, 0, 2, _("remote takes zero, one, or two arguments"))
1651
1651
1652 q = '.'
1652 q = '.'
1653 if len(l) > 0:
1653 if len(l) > 0:
1654 # i18n: "remote" is a keyword
1654 # i18n: "remote" is a keyword
1655 q = getstring(l[0], _("remote requires a string id"))
1655 q = getstring(l[0], _("remote requires a string id"))
1656 if q == '.':
1656 if q == '.':
1657 q = repo['.'].branch()
1657 q = repo['.'].branch()
1658
1658
1659 dest = ''
1659 dest = ''
1660 if len(l) > 1:
1660 if len(l) > 1:
1661 # i18n: "remote" is a keyword
1661 # i18n: "remote" is a keyword
1662 dest = getstring(l[1], _("remote requires a repository path"))
1662 dest = getstring(l[1], _("remote requires a repository path"))
1663 dest = repo.ui.expandpath(dest or 'default')
1663 dest = repo.ui.expandpath(dest or 'default')
1664 dest, branches = hg.parseurl(dest)
1664 dest, branches = hg.parseurl(dest)
1665 revs, checkout = hg.addbranchrevs(repo, repo, branches, [])
1665 revs, checkout = hg.addbranchrevs(repo, repo, branches, [])
1666 if revs:
1666 if revs:
1667 revs = [repo.lookup(rev) for rev in revs]
1667 revs = [repo.lookup(rev) for rev in revs]
1668 other = hg.peer(repo, {}, dest)
1668 other = hg.peer(repo, {}, dest)
1669 n = other.lookup(q)
1669 n = other.lookup(q)
1670 if n in repo:
1670 if n in repo:
1671 r = repo[n].rev()
1671 r = repo[n].rev()
1672 if r in subset:
1672 if r in subset:
1673 return baseset([r])
1673 return baseset([r])
1674 return baseset()
1674 return baseset()
1675
1675
1676 @predicate('removes(pattern)', safe=True)
1676 @predicate('removes(pattern)', safe=True)
1677 def removes(repo, subset, x):
1677 def removes(repo, subset, x):
1678 """Changesets which remove files matching pattern.
1678 """Changesets which remove files matching pattern.
1679
1679
1680 The pattern without explicit kind like ``glob:`` is expected to be
1680 The pattern without explicit kind like ``glob:`` is expected to be
1681 relative to the current directory and match against a file or a
1681 relative to the current directory and match against a file or a
1682 directory.
1682 directory.
1683 """
1683 """
1684 # i18n: "removes" is a keyword
1684 # i18n: "removes" is a keyword
1685 pat = getstring(x, _("removes requires a pattern"))
1685 pat = getstring(x, _("removes requires a pattern"))
1686 return checkstatus(repo, subset, pat, 2)
1686 return checkstatus(repo, subset, pat, 2)
1687
1687
1688 @predicate('rev(number)', safe=True)
1688 @predicate('rev(number)', safe=True)
1689 def rev(repo, subset, x):
1689 def rev(repo, subset, x):
1690 """Revision with the given numeric identifier.
1690 """Revision with the given numeric identifier.
1691 """
1691 """
1692 # i18n: "rev" is a keyword
1692 # i18n: "rev" is a keyword
1693 l = getargs(x, 1, 1, _("rev requires one argument"))
1693 l = getargs(x, 1, 1, _("rev requires one argument"))
1694 try:
1694 try:
1695 # i18n: "rev" is a keyword
1695 # i18n: "rev" is a keyword
1696 l = int(getstring(l[0], _("rev requires a number")))
1696 l = int(getstring(l[0], _("rev requires a number")))
1697 except (TypeError, ValueError):
1697 except (TypeError, ValueError):
1698 # i18n: "rev" is a keyword
1698 # i18n: "rev" is a keyword
1699 raise error.ParseError(_("rev expects a number"))
1699 raise error.ParseError(_("rev expects a number"))
1700 if l not in repo.changelog and l != node.nullrev:
1700 if l not in repo.changelog and l != node.nullrev:
1701 return baseset()
1701 return baseset()
1702 return subset & baseset([l])
1702 return subset & baseset([l])
1703
1703
1704 @predicate('matching(revision [, field])', safe=True)
1704 @predicate('matching(revision [, field])', safe=True)
1705 def matching(repo, subset, x):
1705 def matching(repo, subset, x):
1706 """Changesets in which a given set of fields match the set of fields in the
1706 """Changesets in which a given set of fields match the set of fields in the
1707 selected revision or set.
1707 selected revision or set.
1708
1708
1709 To match more than one field pass the list of fields to match separated
1709 To match more than one field pass the list of fields to match separated
1710 by spaces (e.g. ``author description``).
1710 by spaces (e.g. ``author description``).
1711
1711
1712 Valid fields are most regular revision fields and some special fields.
1712 Valid fields are most regular revision fields and some special fields.
1713
1713
1714 Regular revision fields are ``description``, ``author``, ``branch``,
1714 Regular revision fields are ``description``, ``author``, ``branch``,
1715 ``date``, ``files``, ``phase``, ``parents``, ``substate``, ``user``
1715 ``date``, ``files``, ``phase``, ``parents``, ``substate``, ``user``
1716 and ``diff``.
1716 and ``diff``.
1717 Note that ``author`` and ``user`` are synonyms. ``diff`` refers to the
1717 Note that ``author`` and ``user`` are synonyms. ``diff`` refers to the
1718 contents of the revision. Two revisions matching their ``diff`` will
1718 contents of the revision. Two revisions matching their ``diff`` will
1719 also match their ``files``.
1719 also match their ``files``.
1720
1720
1721 Special fields are ``summary`` and ``metadata``:
1721 Special fields are ``summary`` and ``metadata``:
1722 ``summary`` matches the first line of the description.
1722 ``summary`` matches the first line of the description.
1723 ``metadata`` is equivalent to matching ``description user date``
1723 ``metadata`` is equivalent to matching ``description user date``
1724 (i.e. it matches the main metadata fields).
1724 (i.e. it matches the main metadata fields).
1725
1725
1726 ``metadata`` is the default field which is used when no fields are
1726 ``metadata`` is the default field which is used when no fields are
1727 specified. You can match more than one field at a time.
1727 specified. You can match more than one field at a time.
1728 """
1728 """
1729 # i18n: "matching" is a keyword
1729 # i18n: "matching" is a keyword
1730 l = getargs(x, 1, 2, _("matching takes 1 or 2 arguments"))
1730 l = getargs(x, 1, 2, _("matching takes 1 or 2 arguments"))
1731
1731
1732 revs = getset(repo, fullreposet(repo), l[0])
1732 revs = getset(repo, fullreposet(repo), l[0])
1733
1733
1734 fieldlist = ['metadata']
1734 fieldlist = ['metadata']
1735 if len(l) > 1:
1735 if len(l) > 1:
1736 fieldlist = getstring(l[1],
1736 fieldlist = getstring(l[1],
1737 # i18n: "matching" is a keyword
1737 # i18n: "matching" is a keyword
1738 _("matching requires a string "
1738 _("matching requires a string "
1739 "as its second argument")).split()
1739 "as its second argument")).split()
1740
1740
1741 # Make sure that there are no repeated fields,
1741 # Make sure that there are no repeated fields,
1742 # expand the 'special' 'metadata' field type
1742 # expand the 'special' 'metadata' field type
1743 # and check the 'files' whenever we check the 'diff'
1743 # and check the 'files' whenever we check the 'diff'
1744 fields = []
1744 fields = []
1745 for field in fieldlist:
1745 for field in fieldlist:
1746 if field == 'metadata':
1746 if field == 'metadata':
1747 fields += ['user', 'description', 'date']
1747 fields += ['user', 'description', 'date']
1748 elif field == 'diff':
1748 elif field == 'diff':
1749 # a revision matching the diff must also match the files
1749 # a revision matching the diff must also match the files
1750 # since matching the diff is very costly, make sure to
1750 # since matching the diff is very costly, make sure to
1751 # also match the files first
1751 # also match the files first
1752 fields += ['files', 'diff']
1752 fields += ['files', 'diff']
1753 else:
1753 else:
1754 if field == 'author':
1754 if field == 'author':
1755 field = 'user'
1755 field = 'user'
1756 fields.append(field)
1756 fields.append(field)
1757 fields = set(fields)
1757 fields = set(fields)
1758 if 'summary' in fields and 'description' in fields:
1758 if 'summary' in fields and 'description' in fields:
1759 # If a revision matches its description it also matches its summary
1759 # If a revision matches its description it also matches its summary
1760 fields.discard('summary')
1760 fields.discard('summary')
1761
1761
1762 # We may want to match more than one field
1762 # We may want to match more than one field
1763 # Not all fields take the same amount of time to be matched
1763 # Not all fields take the same amount of time to be matched
1764 # Sort the selected fields in order of increasing matching cost
1764 # Sort the selected fields in order of increasing matching cost
1765 fieldorder = ['phase', 'parents', 'user', 'date', 'branch', 'summary',
1765 fieldorder = ['phase', 'parents', 'user', 'date', 'branch', 'summary',
1766 'files', 'description', 'substate', 'diff']
1766 'files', 'description', 'substate', 'diff']
1767 def fieldkeyfunc(f):
1767 def fieldkeyfunc(f):
1768 try:
1768 try:
1769 return fieldorder.index(f)
1769 return fieldorder.index(f)
1770 except ValueError:
1770 except ValueError:
1771 # assume an unknown field is very costly
1771 # assume an unknown field is very costly
1772 return len(fieldorder)
1772 return len(fieldorder)
1773 fields = list(fields)
1773 fields = list(fields)
1774 fields.sort(key=fieldkeyfunc)
1774 fields.sort(key=fieldkeyfunc)
1775
1775
1776 # Each field will be matched with its own "getfield" function
1776 # Each field will be matched with its own "getfield" function
1777 # which will be added to the getfieldfuncs array of functions
1777 # which will be added to the getfieldfuncs array of functions
1778 getfieldfuncs = []
1778 getfieldfuncs = []
1779 _funcs = {
1779 _funcs = {
1780 'user': lambda r: repo[r].user(),
1780 'user': lambda r: repo[r].user(),
1781 'branch': lambda r: repo[r].branch(),
1781 'branch': lambda r: repo[r].branch(),
1782 'date': lambda r: repo[r].date(),
1782 'date': lambda r: repo[r].date(),
1783 'description': lambda r: repo[r].description(),
1783 'description': lambda r: repo[r].description(),
1784 'files': lambda r: repo[r].files(),
1784 'files': lambda r: repo[r].files(),
1785 'parents': lambda r: repo[r].parents(),
1785 'parents': lambda r: repo[r].parents(),
1786 'phase': lambda r: repo[r].phase(),
1786 'phase': lambda r: repo[r].phase(),
1787 'substate': lambda r: repo[r].substate,
1787 'substate': lambda r: repo[r].substate,
1788 'summary': lambda r: repo[r].description().splitlines()[0],
1788 'summary': lambda r: repo[r].description().splitlines()[0],
1789 'diff': lambda r: list(repo[r].diff(git=True),)
1789 'diff': lambda r: list(repo[r].diff(git=True),)
1790 }
1790 }
1791 for info in fields:
1791 for info in fields:
1792 getfield = _funcs.get(info, None)
1792 getfield = _funcs.get(info, None)
1793 if getfield is None:
1793 if getfield is None:
1794 raise error.ParseError(
1794 raise error.ParseError(
1795 # i18n: "matching" is a keyword
1795 # i18n: "matching" is a keyword
1796 _("unexpected field name passed to matching: %s") % info)
1796 _("unexpected field name passed to matching: %s") % info)
1797 getfieldfuncs.append(getfield)
1797 getfieldfuncs.append(getfield)
1798 # convert the getfield array of functions into a "getinfo" function
1798 # convert the getfield array of functions into a "getinfo" function
1799 # which returns an array of field values (or a single value if there
1799 # which returns an array of field values (or a single value if there
1800 # is only one field to match)
1800 # is only one field to match)
1801 getinfo = lambda r: [f(r) for f in getfieldfuncs]
1801 getinfo = lambda r: [f(r) for f in getfieldfuncs]
1802
1802
1803 def matches(x):
1803 def matches(x):
1804 for rev in revs:
1804 for rev in revs:
1805 target = getinfo(rev)
1805 target = getinfo(rev)
1806 match = True
1806 match = True
1807 for n, f in enumerate(getfieldfuncs):
1807 for n, f in enumerate(getfieldfuncs):
1808 if target[n] != f(x):
1808 if target[n] != f(x):
1809 match = False
1809 match = False
1810 if match:
1810 if match:
1811 return True
1811 return True
1812 return False
1812 return False
1813
1813
1814 return subset.filter(matches, condrepr=('<matching%r %r>', fields, revs))
1814 return subset.filter(matches, condrepr=('<matching%r %r>', fields, revs))
1815
1815
1816 @predicate('reverse(set)', safe=True)
1816 @predicate('reverse(set)', safe=True)
1817 def reverse(repo, subset, x):
1817 def reverse(repo, subset, x):
1818 """Reverse order of set.
1818 """Reverse order of set.
1819 """
1819 """
1820 l = getset(repo, subset, x)
1820 l = getset(repo, subset, x)
1821 l.reverse()
1821 l.reverse()
1822 return l
1822 return l
1823
1823
1824 @predicate('roots(set)', safe=True)
1824 @predicate('roots(set)', safe=True)
1825 def roots(repo, subset, x):
1825 def roots(repo, subset, x):
1826 """Changesets in set with no parent changeset in set.
1826 """Changesets in set with no parent changeset in set.
1827 """
1827 """
1828 s = getset(repo, fullreposet(repo), x)
1828 s = getset(repo, fullreposet(repo), x)
1829 parents = repo.changelog.parentrevs
1829 parents = repo.changelog.parentrevs
1830 def filter(r):
1830 def filter(r):
1831 for p in parents(r):
1831 for p in parents(r):
1832 if 0 <= p and p in s:
1832 if 0 <= p and p in s:
1833 return False
1833 return False
1834 return True
1834 return True
1835 return subset & s.filter(filter, condrepr='<roots>')
1835 return subset & s.filter(filter, condrepr='<roots>')
1836
1836
1837 _sortkeyfuncs = {
1837 _sortkeyfuncs = {
1838 'rev': lambda c: c.rev(),
1838 'rev': lambda c: c.rev(),
1839 'branch': lambda c: c.branch(),
1839 'branch': lambda c: c.branch(),
1840 'desc': lambda c: c.description(),
1840 'desc': lambda c: c.description(),
1841 'user': lambda c: c.user(),
1841 'user': lambda c: c.user(),
1842 'author': lambda c: c.user(),
1842 'author': lambda c: c.user(),
1843 'date': lambda c: c.date()[0],
1843 'date': lambda c: c.date()[0],
1844 }
1844 }
1845
1845
1846 @predicate('sort(set[, [-]key...])', safe=True)
1846 @predicate('sort(set[, [-]key... [, ...]])', safe=True)
1847 def sort(repo, subset, x):
1847 def sort(repo, subset, x):
1848 """Sort set by keys. The default sort order is ascending, specify a key
1848 """Sort set by keys. The default sort order is ascending, specify a key
1849 as ``-key`` to sort in descending order.
1849 as ``-key`` to sort in descending order.
1850
1850
1851 The keys can be:
1851 The keys can be:
1852
1852
1853 - ``rev`` for the revision number,
1853 - ``rev`` for the revision number,
1854 - ``branch`` for the branch name,
1854 - ``branch`` for the branch name,
1855 - ``desc`` for the commit message (description),
1855 - ``desc`` for the commit message (description),
1856 - ``user`` for user name (``author`` can be used as an alias),
1856 - ``user`` for user name (``author`` can be used as an alias),
1857 - ``date`` for the commit date
1857 - ``date`` for the commit date
1858 - ``topo`` for a reverse topographical sort
1859
1860 The ``topo`` sort order cannot be combined with other sort keys. This sort
1861 takes one optional argument, ``topo.firstbranch``, which takes a revset that
1862 specifies what topographical branches to prioritize in the sort.
1863
1858 """
1864 """
1859 args = getargsdict(x, 'sort', 'set keys')
1865 args = getargsdict(x, 'sort', 'set keys topo.firstbranch')
1860 if 'set' not in args:
1866 if 'set' not in args:
1861 # i18n: "sort" is a keyword
1867 # i18n: "sort" is a keyword
1862 raise error.ParseError(_('sort requires one or two arguments'))
1868 raise error.ParseError(_('sort requires one or two arguments'))
1863 keys = "rev"
1869 keys = "rev"
1864 if 'keys' in args:
1870 if 'keys' in args:
1865 # i18n: "sort" is a keyword
1871 # i18n: "sort" is a keyword
1866 keys = getstring(args['keys'], _("sort spec must be a string"))
1872 keys = getstring(args['keys'], _("sort spec must be a string"))
1867
1873
1868 s = args['set']
1874 s = args['set']
1869 keys = keys.split()
1875 keys = keys.split()
1870 revs = getset(repo, subset, s)
1876 revs = getset(repo, subset, s)
1877
1878 if len(keys) > 1 and any(k.lstrip('-') == 'topo' for k in keys):
1879 # i18n: "topo" is a keyword
1880 raise error.ParseError(_(
1881 'topo sort order cannot be combined with other sort keys'))
1882
1883 firstbranch = ()
1884 if 'topo.firstbranch' in args:
1885 if any(k.lstrip('-') == 'topo' for k in keys):
1886 firstbranch = getset(repo, subset, args['topo.firstbranch'])
1887 else:
1888 # i18n: "topo" and "topo.firstbranch" are keywords
1889 raise error.ParseError(_(
1890 'topo.firstbranch can only be used when using the topo sort '
1891 'key'))
1892
1871 if keys == ["rev"]:
1893 if keys == ["rev"]:
1872 revs.sort()
1894 revs.sort()
1873 return revs
1895 return revs
1874 elif keys == ["-rev"]:
1896 elif keys == ["-rev"]:
1875 revs.sort(reverse=True)
1897 revs.sort(reverse=True)
1876 return revs
1898 return revs
1899 elif keys[0] in ("topo", "-topo"):
1900 revs = baseset(_toposort(revs, repo.changelog.parentrevs, firstbranch),
1901 istopo=True)
1902 if keys[0][0] == '-':
1903 revs.reverse()
1904 return revs
1905
1877 # sort() is guaranteed to be stable
1906 # sort() is guaranteed to be stable
1878 ctxs = [repo[r] for r in revs]
1907 ctxs = [repo[r] for r in revs]
1879 for k in reversed(keys):
1908 for k in reversed(keys):
1880 fk = k
1909 fk = k
1881 reverse = (k[0] == '-')
1910 reverse = (k[0] == '-')
1882 if reverse:
1911 if reverse:
1883 k = k[1:]
1912 k = k[1:]
1884 try:
1913 try:
1885 ctxs.sort(key=_sortkeyfuncs[k], reverse=reverse)
1914 ctxs.sort(key=_sortkeyfuncs[k], reverse=reverse)
1886 except KeyError:
1915 except KeyError:
1887 raise error.ParseError(_("unknown sort key %r") % fk)
1916 raise error.ParseError(_("unknown sort key %r") % fk)
1888 return baseset([c.rev() for c in ctxs])
1917 return baseset([c.rev() for c in ctxs])
1889
1918
1890 def groupbranchiter(revs, parentsfunc, firstbranch=()):
1919 def _toposort(revs, parentsfunc, firstbranch=()):
1891 """Yield revisions from heads to roots one (topo) branch at a time.
1920 """Yield revisions from heads to roots one (topo) branch at a time.
1892
1921
1893 This function aims to be used by a graph generator that wishes to minimize
1922 This function aims to be used by a graph generator that wishes to minimize
1894 the number of parallel branches and their interleaving.
1923 the number of parallel branches and their interleaving.
1895
1924
1896 Example iteration order (numbers show the "true" order in a changelog):
1925 Example iteration order (numbers show the "true" order in a changelog):
1897
1926
1898 o 4
1927 o 4
1899 |
1928 |
1900 o 1
1929 o 1
1901 |
1930 |
1902 | o 3
1931 | o 3
1903 | |
1932 | |
1904 | o 2
1933 | o 2
1905 |/
1934 |/
1906 o 0
1935 o 0
1907
1936
1908 Note that the ancestors of merges are understood by the current
1937 Note that the ancestors of merges are understood by the current
1909 algorithm to be on the same branch. This means no reordering will
1938 algorithm to be on the same branch. This means no reordering will
1910 occur behind a merge.
1939 occur behind a merge.
1911 """
1940 """
1912
1941
1913 ### Quick summary of the algorithm
1942 ### Quick summary of the algorithm
1914 #
1943 #
1915 # This function is based around a "retention" principle. We keep revisions
1944 # This function is based around a "retention" principle. We keep revisions
1916 # in memory until we are ready to emit a whole branch that immediately
1945 # in memory until we are ready to emit a whole branch that immediately
1917 # "merges" into an existing one. This reduces the number of parallel
1946 # "merges" into an existing one. This reduces the number of parallel
1918 # branches with interleaved revisions.
1947 # branches with interleaved revisions.
1919 #
1948 #
1920 # During iteration revs are split into two groups:
1949 # During iteration revs are split into two groups:
1921 # A) revision already emitted
1950 # A) revision already emitted
1922 # B) revision in "retention". They are stored as different subgroups.
1951 # B) revision in "retention". They are stored as different subgroups.
1923 #
1952 #
1924 # for each REV, we do the following logic:
1953 # for each REV, we do the following logic:
1925 #
1954 #
1926 # 1) if REV is a parent of (A), we will emit it. If there is a
1955 # 1) if REV is a parent of (A), we will emit it. If there is a
1927 # retention group ((B) above) that is blocked on REV being
1956 # retention group ((B) above) that is blocked on REV being
1928 # available, we emit all the revisions out of that retention
1957 # available, we emit all the revisions out of that retention
1929 # group first.
1958 # group first.
1930 #
1959 #
1931 # 2) else, we'll search for a subgroup in (B) awaiting for REV to be
1960 # 2) else, we'll search for a subgroup in (B) awaiting for REV to be
1932 # available, if such subgroup exist, we add REV to it and the subgroup is
1961 # available, if such subgroup exist, we add REV to it and the subgroup is
1933 # now awaiting for REV.parents() to be available.
1962 # now awaiting for REV.parents() to be available.
1934 #
1963 #
1935 # 3) finally if no such group existed in (B), we create a new subgroup.
1964 # 3) finally if no such group existed in (B), we create a new subgroup.
1936 #
1965 #
1937 #
1966 #
1938 # To bootstrap the algorithm, we emit the tipmost revision (which
1967 # To bootstrap the algorithm, we emit the tipmost revision (which
1939 # puts it in group (A) from above).
1968 # puts it in group (A) from above).
1940
1969
1941 revs.sort(reverse=True)
1970 revs.sort(reverse=True)
1942
1971
1943 # Set of parents of revision that have been emitted. They can be considered
1972 # Set of parents of revision that have been emitted. They can be considered
1944 # unblocked as the graph generator is already aware of them so there is no
1973 # unblocked as the graph generator is already aware of them so there is no
1945 # need to delay the revisions that reference them.
1974 # need to delay the revisions that reference them.
1946 #
1975 #
1947 # If someone wants to prioritize a branch over the others, pre-filling this
1976 # If someone wants to prioritize a branch over the others, pre-filling this
1948 # set will force all other branches to wait until this branch is ready to be
1977 # set will force all other branches to wait until this branch is ready to be
1949 # emitted.
1978 # emitted.
1950 unblocked = set(firstbranch)
1979 unblocked = set(firstbranch)
1951
1980
1952 # list of groups waiting to be displayed, each group is defined by:
1981 # list of groups waiting to be displayed, each group is defined by:
1953 #
1982 #
1954 # (revs: lists of revs waiting to be displayed,
1983 # (revs: lists of revs waiting to be displayed,
1955 # blocked: set of that cannot be displayed before those in 'revs')
1984 # blocked: set of that cannot be displayed before those in 'revs')
1956 #
1985 #
1957 # The second value ('blocked') correspond to parents of any revision in the
1986 # The second value ('blocked') correspond to parents of any revision in the
1958 # group ('revs') that is not itself contained in the group. The main idea
1987 # group ('revs') that is not itself contained in the group. The main idea
1959 # of this algorithm is to delay as much as possible the emission of any
1988 # of this algorithm is to delay as much as possible the emission of any
1960 # revision. This means waiting for the moment we are about to display
1989 # revision. This means waiting for the moment we are about to display
1961 # these parents to display the revs in a group.
1990 # these parents to display the revs in a group.
1962 #
1991 #
1963 # This first implementation is smart until it encounters a merge: it will
1992 # This first implementation is smart until it encounters a merge: it will
1964 # emit revs as soon as any parent is about to be emitted and can grow an
1993 # emit revs as soon as any parent is about to be emitted and can grow an
1965 # arbitrary number of revs in 'blocked'. In practice this mean we properly
1994 # arbitrary number of revs in 'blocked'. In practice this mean we properly
1966 # retains new branches but gives up on any special ordering for ancestors
1995 # retains new branches but gives up on any special ordering for ancestors
1967 # of merges. The implementation can be improved to handle this better.
1996 # of merges. The implementation can be improved to handle this better.
1968 #
1997 #
1969 # The first subgroup is special. It corresponds to all the revision that
1998 # The first subgroup is special. It corresponds to all the revision that
1970 # were already emitted. The 'revs' lists is expected to be empty and the
1999 # were already emitted. The 'revs' lists is expected to be empty and the
1971 # 'blocked' set contains the parents revisions of already emitted revision.
2000 # 'blocked' set contains the parents revisions of already emitted revision.
1972 #
2001 #
1973 # You could pre-seed the <parents> set of groups[0] to a specific
2002 # You could pre-seed the <parents> set of groups[0] to a specific
1974 # changesets to select what the first emitted branch should be.
2003 # changesets to select what the first emitted branch should be.
1975 groups = [([], unblocked)]
2004 groups = [([], unblocked)]
1976 pendingheap = []
2005 pendingheap = []
1977 pendingset = set()
2006 pendingset = set()
1978
2007
1979 heapq.heapify(pendingheap)
2008 heapq.heapify(pendingheap)
1980 heappop = heapq.heappop
2009 heappop = heapq.heappop
1981 heappush = heapq.heappush
2010 heappush = heapq.heappush
1982 for currentrev in revs:
2011 for currentrev in revs:
1983 # Heap works with smallest element, we want highest so we invert
2012 # Heap works with smallest element, we want highest so we invert
1984 if currentrev not in pendingset:
2013 if currentrev not in pendingset:
1985 heappush(pendingheap, -currentrev)
2014 heappush(pendingheap, -currentrev)
1986 pendingset.add(currentrev)
2015 pendingset.add(currentrev)
1987 # iterates on pending rev until after the current rev have been
2016 # iterates on pending rev until after the current rev have been
1988 # processed.
2017 # processed.
1989 rev = None
2018 rev = None
1990 while rev != currentrev:
2019 while rev != currentrev:
1991 rev = -heappop(pendingheap)
2020 rev = -heappop(pendingheap)
1992 pendingset.remove(rev)
2021 pendingset.remove(rev)
1993
2022
1994 # Seek for a subgroup blocked, waiting for the current revision.
2023 # Seek for a subgroup blocked, waiting for the current revision.
1995 matching = [i for i, g in enumerate(groups) if rev in g[1]]
2024 matching = [i for i, g in enumerate(groups) if rev in g[1]]
1996
2025
1997 if matching:
2026 if matching:
1998 # The main idea is to gather together all sets that are blocked
2027 # The main idea is to gather together all sets that are blocked
1999 # on the same revision.
2028 # on the same revision.
2000 #
2029 #
2001 # Groups are merged when a common blocking ancestor is
2030 # Groups are merged when a common blocking ancestor is
2002 # observed. For example, given two groups:
2031 # observed. For example, given two groups:
2003 #
2032 #
2004 # revs [5, 4] waiting for 1
2033 # revs [5, 4] waiting for 1
2005 # revs [3, 2] waiting for 1
2034 # revs [3, 2] waiting for 1
2006 #
2035 #
2007 # These two groups will be merged when we process
2036 # These two groups will be merged when we process
2008 # 1. In theory, we could have merged the groups when
2037 # 1. In theory, we could have merged the groups when
2009 # we added 2 to the group it is now in (we could have
2038 # we added 2 to the group it is now in (we could have
2010 # noticed the groups were both blocked on 1 then), but
2039 # noticed the groups were both blocked on 1 then), but
2011 # the way it works now makes the algorithm simpler.
2040 # the way it works now makes the algorithm simpler.
2012 #
2041 #
2013 # We also always keep the oldest subgroup first. We can
2042 # We also always keep the oldest subgroup first. We can
2014 # probably improve the behavior by having the longest set
2043 # probably improve the behavior by having the longest set
2015 # first. That way, graph algorithms could minimise the length
2044 # first. That way, graph algorithms could minimise the length
2016 # of parallel lines their drawing. This is currently not done.
2045 # of parallel lines their drawing. This is currently not done.
2017 targetidx = matching.pop(0)
2046 targetidx = matching.pop(0)
2018 trevs, tparents = groups[targetidx]
2047 trevs, tparents = groups[targetidx]
2019 for i in matching:
2048 for i in matching:
2020 gr = groups[i]
2049 gr = groups[i]
2021 trevs.extend(gr[0])
2050 trevs.extend(gr[0])
2022 tparents |= gr[1]
2051 tparents |= gr[1]
2023 # delete all merged subgroups (except the one we kept)
2052 # delete all merged subgroups (except the one we kept)
2024 # (starting from the last subgroup for performance and
2053 # (starting from the last subgroup for performance and
2025 # sanity reasons)
2054 # sanity reasons)
2026 for i in reversed(matching):
2055 for i in reversed(matching):
2027 del groups[i]
2056 del groups[i]
2028 else:
2057 else:
2029 # This is a new head. We create a new subgroup for it.
2058 # This is a new head. We create a new subgroup for it.
2030 targetidx = len(groups)
2059 targetidx = len(groups)
2031 groups.append(([], set([rev])))
2060 groups.append(([], set([rev])))
2032
2061
2033 gr = groups[targetidx]
2062 gr = groups[targetidx]
2034
2063
2035 # We now add the current nodes to this subgroups. This is done
2064 # We now add the current nodes to this subgroups. This is done
2036 # after the subgroup merging because all elements from a subgroup
2065 # after the subgroup merging because all elements from a subgroup
2037 # that relied on this rev must precede it.
2066 # that relied on this rev must precede it.
2038 #
2067 #
2039 # we also update the <parents> set to include the parents of the
2068 # we also update the <parents> set to include the parents of the
2040 # new nodes.
2069 # new nodes.
2041 if rev == currentrev: # only display stuff in rev
2070 if rev == currentrev: # only display stuff in rev
2042 gr[0].append(rev)
2071 gr[0].append(rev)
2043 gr[1].remove(rev)
2072 gr[1].remove(rev)
2044 parents = [p for p in parentsfunc(rev) if p > node.nullrev]
2073 parents = [p for p in parentsfunc(rev) if p > node.nullrev]
2045 gr[1].update(parents)
2074 gr[1].update(parents)
2046 for p in parents:
2075 for p in parents:
2047 if p not in pendingset:
2076 if p not in pendingset:
2048 pendingset.add(p)
2077 pendingset.add(p)
2049 heappush(pendingheap, -p)
2078 heappush(pendingheap, -p)
2050
2079
2051 # Look for a subgroup to display
2080 # Look for a subgroup to display
2052 #
2081 #
2053 # When unblocked is empty (if clause), we were not waiting for any
2082 # When unblocked is empty (if clause), we were not waiting for any
2054 # revisions during the first iteration (if no priority was given) or
2083 # revisions during the first iteration (if no priority was given) or
2055 # if we emitted a whole disconnected set of the graph (reached a
2084 # if we emitted a whole disconnected set of the graph (reached a
2056 # root). In that case we arbitrarily take the oldest known
2085 # root). In that case we arbitrarily take the oldest known
2057 # subgroup. The heuristic could probably be better.
2086 # subgroup. The heuristic could probably be better.
2058 #
2087 #
2059 # Otherwise (elif clause) if the subgroup is blocked on
2088 # Otherwise (elif clause) if the subgroup is blocked on
2060 # a revision we just emitted, we can safely emit it as
2089 # a revision we just emitted, we can safely emit it as
2061 # well.
2090 # well.
2062 if not unblocked:
2091 if not unblocked:
2063 if len(groups) > 1: # display other subset
2092 if len(groups) > 1: # display other subset
2064 targetidx = 1
2093 targetidx = 1
2065 gr = groups[1]
2094 gr = groups[1]
2066 elif not gr[1] & unblocked:
2095 elif not gr[1] & unblocked:
2067 gr = None
2096 gr = None
2068
2097
2069 if gr is not None:
2098 if gr is not None:
2070 # update the set of awaited revisions with the one from the
2099 # update the set of awaited revisions with the one from the
2071 # subgroup
2100 # subgroup
2072 unblocked |= gr[1]
2101 unblocked |= gr[1]
2073 # output all revisions in the subgroup
2102 # output all revisions in the subgroup
2074 for r in gr[0]:
2103 for r in gr[0]:
2075 yield r
2104 yield r
2076 # delete the subgroup that you just output
2105 # delete the subgroup that you just output
2077 # unless it is groups[0] in which case you just empty it.
2106 # unless it is groups[0] in which case you just empty it.
2078 if targetidx:
2107 if targetidx:
2079 del groups[targetidx]
2108 del groups[targetidx]
2080 else:
2109 else:
2081 gr[0][:] = []
2110 gr[0][:] = []
2082 # Check if we have some subgroup waiting for revisions we are not going to
2111 # Check if we have some subgroup waiting for revisions we are not going to
2083 # iterate over
2112 # iterate over
2084 for g in groups:
2113 for g in groups:
2085 for r in g[0]:
2114 for r in g[0]:
2086 yield r
2115 yield r
2087
2116
2088 @predicate('subrepo([pattern])')
2117 @predicate('subrepo([pattern])')
2089 def subrepo(repo, subset, x):
2118 def subrepo(repo, subset, x):
2090 """Changesets that add, modify or remove the given subrepo. If no subrepo
2119 """Changesets that add, modify or remove the given subrepo. If no subrepo
2091 pattern is named, any subrepo changes are returned.
2120 pattern is named, any subrepo changes are returned.
2092 """
2121 """
2093 # i18n: "subrepo" is a keyword
2122 # i18n: "subrepo" is a keyword
2094 args = getargs(x, 0, 1, _('subrepo takes at most one argument'))
2123 args = getargs(x, 0, 1, _('subrepo takes at most one argument'))
2095 pat = None
2124 pat = None
2096 if len(args) != 0:
2125 if len(args) != 0:
2097 pat = getstring(args[0], _("subrepo requires a pattern"))
2126 pat = getstring(args[0], _("subrepo requires a pattern"))
2098
2127
2099 m = matchmod.exact(repo.root, repo.root, ['.hgsubstate'])
2128 m = matchmod.exact(repo.root, repo.root, ['.hgsubstate'])
2100
2129
2101 def submatches(names):
2130 def submatches(names):
2102 k, p, m = util.stringmatcher(pat)
2131 k, p, m = util.stringmatcher(pat)
2103 for name in names:
2132 for name in names:
2104 if m(name):
2133 if m(name):
2105 yield name
2134 yield name
2106
2135
2107 def matches(x):
2136 def matches(x):
2108 c = repo[x]
2137 c = repo[x]
2109 s = repo.status(c.p1().node(), c.node(), match=m)
2138 s = repo.status(c.p1().node(), c.node(), match=m)
2110
2139
2111 if pat is None:
2140 if pat is None:
2112 return s.added or s.modified or s.removed
2141 return s.added or s.modified or s.removed
2113
2142
2114 if s.added:
2143 if s.added:
2115 return any(submatches(c.substate.keys()))
2144 return any(submatches(c.substate.keys()))
2116
2145
2117 if s.modified:
2146 if s.modified:
2118 subs = set(c.p1().substate.keys())
2147 subs = set(c.p1().substate.keys())
2119 subs.update(c.substate.keys())
2148 subs.update(c.substate.keys())
2120
2149
2121 for path in submatches(subs):
2150 for path in submatches(subs):
2122 if c.p1().substate.get(path) != c.substate.get(path):
2151 if c.p1().substate.get(path) != c.substate.get(path):
2123 return True
2152 return True
2124
2153
2125 if s.removed:
2154 if s.removed:
2126 return any(submatches(c.p1().substate.keys()))
2155 return any(submatches(c.p1().substate.keys()))
2127
2156
2128 return False
2157 return False
2129
2158
2130 return subset.filter(matches, condrepr=('<subrepo %r>', pat))
2159 return subset.filter(matches, condrepr=('<subrepo %r>', pat))
2131
2160
2132 def _substringmatcher(pattern):
2161 def _substringmatcher(pattern):
2133 kind, pattern, matcher = util.stringmatcher(pattern)
2162 kind, pattern, matcher = util.stringmatcher(pattern)
2134 if kind == 'literal':
2163 if kind == 'literal':
2135 matcher = lambda s: pattern in s
2164 matcher = lambda s: pattern in s
2136 return kind, pattern, matcher
2165 return kind, pattern, matcher
2137
2166
2138 @predicate('tag([name])', safe=True)
2167 @predicate('tag([name])', safe=True)
2139 def tag(repo, subset, x):
2168 def tag(repo, subset, x):
2140 """The specified tag by name, or all tagged revisions if no name is given.
2169 """The specified tag by name, or all tagged revisions if no name is given.
2141
2170
2142 If `name` starts with `re:`, the remainder of the name is treated as
2171 If `name` starts with `re:`, the remainder of the name is treated as
2143 a regular expression. To match a tag that actually starts with `re:`,
2172 a regular expression. To match a tag that actually starts with `re:`,
2144 use the prefix `literal:`.
2173 use the prefix `literal:`.
2145 """
2174 """
2146 # i18n: "tag" is a keyword
2175 # i18n: "tag" is a keyword
2147 args = getargs(x, 0, 1, _("tag takes one or no arguments"))
2176 args = getargs(x, 0, 1, _("tag takes one or no arguments"))
2148 cl = repo.changelog
2177 cl = repo.changelog
2149 if args:
2178 if args:
2150 pattern = getstring(args[0],
2179 pattern = getstring(args[0],
2151 # i18n: "tag" is a keyword
2180 # i18n: "tag" is a keyword
2152 _('the argument to tag must be a string'))
2181 _('the argument to tag must be a string'))
2153 kind, pattern, matcher = util.stringmatcher(pattern)
2182 kind, pattern, matcher = util.stringmatcher(pattern)
2154 if kind == 'literal':
2183 if kind == 'literal':
2155 # avoid resolving all tags
2184 # avoid resolving all tags
2156 tn = repo._tagscache.tags.get(pattern, None)
2185 tn = repo._tagscache.tags.get(pattern, None)
2157 if tn is None:
2186 if tn is None:
2158 raise error.RepoLookupError(_("tag '%s' does not exist")
2187 raise error.RepoLookupError(_("tag '%s' does not exist")
2159 % pattern)
2188 % pattern)
2160 s = set([repo[tn].rev()])
2189 s = set([repo[tn].rev()])
2161 else:
2190 else:
2162 s = set([cl.rev(n) for t, n in repo.tagslist() if matcher(t)])
2191 s = set([cl.rev(n) for t, n in repo.tagslist() if matcher(t)])
2163 else:
2192 else:
2164 s = set([cl.rev(n) for t, n in repo.tagslist() if t != 'tip'])
2193 s = set([cl.rev(n) for t, n in repo.tagslist() if t != 'tip'])
2165 return subset & s
2194 return subset & s
2166
2195
2167 @predicate('tagged', safe=True)
2196 @predicate('tagged', safe=True)
2168 def tagged(repo, subset, x):
2197 def tagged(repo, subset, x):
2169 return tag(repo, subset, x)
2198 return tag(repo, subset, x)
2170
2199
2171 @predicate('unstable()', safe=True)
2200 @predicate('unstable()', safe=True)
2172 def unstable(repo, subset, x):
2201 def unstable(repo, subset, x):
2173 """Non-obsolete changesets with obsolete ancestors.
2202 """Non-obsolete changesets with obsolete ancestors.
2174 """
2203 """
2175 # i18n: "unstable" is a keyword
2204 # i18n: "unstable" is a keyword
2176 getargs(x, 0, 0, _("unstable takes no arguments"))
2205 getargs(x, 0, 0, _("unstable takes no arguments"))
2177 unstables = obsmod.getrevs(repo, 'unstable')
2206 unstables = obsmod.getrevs(repo, 'unstable')
2178 return subset & unstables
2207 return subset & unstables
2179
2208
2180
2209
2181 @predicate('user(string)', safe=True)
2210 @predicate('user(string)', safe=True)
2182 def user(repo, subset, x):
2211 def user(repo, subset, x):
2183 """User name contains string. The match is case-insensitive.
2212 """User name contains string. The match is case-insensitive.
2184
2213
2185 If `string` starts with `re:`, the remainder of the string is treated as
2214 If `string` starts with `re:`, the remainder of the string is treated as
2186 a regular expression. To match a user that actually contains `re:`, use
2215 a regular expression. To match a user that actually contains `re:`, use
2187 the prefix `literal:`.
2216 the prefix `literal:`.
2188 """
2217 """
2189 return author(repo, subset, x)
2218 return author(repo, subset, x)
2190
2219
2191 # experimental
2220 # experimental
2192 @predicate('wdir', safe=True)
2221 @predicate('wdir', safe=True)
2193 def wdir(repo, subset, x):
2222 def wdir(repo, subset, x):
2194 # i18n: "wdir" is a keyword
2223 # i18n: "wdir" is a keyword
2195 getargs(x, 0, 0, _("wdir takes no arguments"))
2224 getargs(x, 0, 0, _("wdir takes no arguments"))
2196 if node.wdirrev in subset or isinstance(subset, fullreposet):
2225 if node.wdirrev in subset or isinstance(subset, fullreposet):
2197 return baseset([node.wdirrev])
2226 return baseset([node.wdirrev])
2198 return baseset()
2227 return baseset()
2199
2228
2200 # for internal use
2229 # for internal use
2201 @predicate('_list', safe=True)
2230 @predicate('_list', safe=True)
2202 def _list(repo, subset, x):
2231 def _list(repo, subset, x):
2203 s = getstring(x, "internal error")
2232 s = getstring(x, "internal error")
2204 if not s:
2233 if not s:
2205 return baseset()
2234 return baseset()
2206 # remove duplicates here. it's difficult for caller to deduplicate sets
2235 # remove duplicates here. it's difficult for caller to deduplicate sets
2207 # because different symbols can point to the same rev.
2236 # because different symbols can point to the same rev.
2208 cl = repo.changelog
2237 cl = repo.changelog
2209 ls = []
2238 ls = []
2210 seen = set()
2239 seen = set()
2211 for t in s.split('\0'):
2240 for t in s.split('\0'):
2212 try:
2241 try:
2213 # fast path for integer revision
2242 # fast path for integer revision
2214 r = int(t)
2243 r = int(t)
2215 if str(r) != t or r not in cl:
2244 if str(r) != t or r not in cl:
2216 raise ValueError
2245 raise ValueError
2217 revs = [r]
2246 revs = [r]
2218 except ValueError:
2247 except ValueError:
2219 revs = stringset(repo, subset, t)
2248 revs = stringset(repo, subset, t)
2220
2249
2221 for r in revs:
2250 for r in revs:
2222 if r in seen:
2251 if r in seen:
2223 continue
2252 continue
2224 if (r in subset
2253 if (r in subset
2225 or r == node.nullrev and isinstance(subset, fullreposet)):
2254 or r == node.nullrev and isinstance(subset, fullreposet)):
2226 ls.append(r)
2255 ls.append(r)
2227 seen.add(r)
2256 seen.add(r)
2228 return baseset(ls)
2257 return baseset(ls)
2229
2258
2230 # for internal use
2259 # for internal use
2231 @predicate('_intlist', safe=True)
2260 @predicate('_intlist', safe=True)
2232 def _intlist(repo, subset, x):
2261 def _intlist(repo, subset, x):
2233 s = getstring(x, "internal error")
2262 s = getstring(x, "internal error")
2234 if not s:
2263 if not s:
2235 return baseset()
2264 return baseset()
2236 ls = [int(r) for r in s.split('\0')]
2265 ls = [int(r) for r in s.split('\0')]
2237 s = subset
2266 s = subset
2238 return baseset([r for r in ls if r in s])
2267 return baseset([r for r in ls if r in s])
2239
2268
2240 # for internal use
2269 # for internal use
2241 @predicate('_hexlist', safe=True)
2270 @predicate('_hexlist', safe=True)
2242 def _hexlist(repo, subset, x):
2271 def _hexlist(repo, subset, x):
2243 s = getstring(x, "internal error")
2272 s = getstring(x, "internal error")
2244 if not s:
2273 if not s:
2245 return baseset()
2274 return baseset()
2246 cl = repo.changelog
2275 cl = repo.changelog
2247 ls = [cl.rev(node.bin(r)) for r in s.split('\0')]
2276 ls = [cl.rev(node.bin(r)) for r in s.split('\0')]
2248 s = subset
2277 s = subset
2249 return baseset([r for r in ls if r in s])
2278 return baseset([r for r in ls if r in s])
2250
2279
2251 methods = {
2280 methods = {
2252 "range": rangeset,
2281 "range": rangeset,
2253 "dagrange": dagrange,
2282 "dagrange": dagrange,
2254 "string": stringset,
2283 "string": stringset,
2255 "symbol": stringset,
2284 "symbol": stringset,
2256 "and": andset,
2285 "and": andset,
2257 "or": orset,
2286 "or": orset,
2258 "not": notset,
2287 "not": notset,
2259 "difference": differenceset,
2288 "difference": differenceset,
2260 "list": listset,
2289 "list": listset,
2261 "keyvalue": keyvaluepair,
2290 "keyvalue": keyvaluepair,
2262 "func": func,
2291 "func": func,
2263 "ancestor": ancestorspec,
2292 "ancestor": ancestorspec,
2264 "parent": parentspec,
2293 "parent": parentspec,
2265 "parentpost": p1,
2294 "parentpost": p1,
2266 }
2295 }
2267
2296
2268 def _matchonly(revs, bases):
2297 def _matchonly(revs, bases):
2269 """
2298 """
2270 >>> f = lambda *args: _matchonly(*map(parse, args))
2299 >>> f = lambda *args: _matchonly(*map(parse, args))
2271 >>> f('ancestors(A)', 'not ancestors(B)')
2300 >>> f('ancestors(A)', 'not ancestors(B)')
2272 ('list', ('symbol', 'A'), ('symbol', 'B'))
2301 ('list', ('symbol', 'A'), ('symbol', 'B'))
2273 """
2302 """
2274 if (revs is not None
2303 if (revs is not None
2275 and revs[0] == 'func'
2304 and revs[0] == 'func'
2276 and getstring(revs[1], _('not a symbol')) == 'ancestors'
2305 and getstring(revs[1], _('not a symbol')) == 'ancestors'
2277 and bases is not None
2306 and bases is not None
2278 and bases[0] == 'not'
2307 and bases[0] == 'not'
2279 and bases[1][0] == 'func'
2308 and bases[1][0] == 'func'
2280 and getstring(bases[1][1], _('not a symbol')) == 'ancestors'):
2309 and getstring(bases[1][1], _('not a symbol')) == 'ancestors'):
2281 return ('list', revs[2], bases[1][2])
2310 return ('list', revs[2], bases[1][2])
2282
2311
2283 def _optimize(x, small):
2312 def _optimize(x, small):
2284 if x is None:
2313 if x is None:
2285 return 0, x
2314 return 0, x
2286
2315
2287 smallbonus = 1
2316 smallbonus = 1
2288 if small:
2317 if small:
2289 smallbonus = .5
2318 smallbonus = .5
2290
2319
2291 op = x[0]
2320 op = x[0]
2292 if op == 'minus':
2321 if op == 'minus':
2293 return _optimize(('and', x[1], ('not', x[2])), small)
2322 return _optimize(('and', x[1], ('not', x[2])), small)
2294 elif op == 'only':
2323 elif op == 'only':
2295 t = ('func', ('symbol', 'only'), ('list', x[1], x[2]))
2324 t = ('func', ('symbol', 'only'), ('list', x[1], x[2]))
2296 return _optimize(t, small)
2325 return _optimize(t, small)
2297 elif op == 'onlypost':
2326 elif op == 'onlypost':
2298 return _optimize(('func', ('symbol', 'only'), x[1]), small)
2327 return _optimize(('func', ('symbol', 'only'), x[1]), small)
2299 elif op == 'dagrangepre':
2328 elif op == 'dagrangepre':
2300 return _optimize(('func', ('symbol', 'ancestors'), x[1]), small)
2329 return _optimize(('func', ('symbol', 'ancestors'), x[1]), small)
2301 elif op == 'dagrangepost':
2330 elif op == 'dagrangepost':
2302 return _optimize(('func', ('symbol', 'descendants'), x[1]), small)
2331 return _optimize(('func', ('symbol', 'descendants'), x[1]), small)
2303 elif op == 'rangeall':
2332 elif op == 'rangeall':
2304 return _optimize(('range', ('string', '0'), ('string', 'tip')), small)
2333 return _optimize(('range', ('string', '0'), ('string', 'tip')), small)
2305 elif op == 'rangepre':
2334 elif op == 'rangepre':
2306 return _optimize(('range', ('string', '0'), x[1]), small)
2335 return _optimize(('range', ('string', '0'), x[1]), small)
2307 elif op == 'rangepost':
2336 elif op == 'rangepost':
2308 return _optimize(('range', x[1], ('string', 'tip')), small)
2337 return _optimize(('range', x[1], ('string', 'tip')), small)
2309 elif op == 'negate':
2338 elif op == 'negate':
2310 s = getstring(x[1], _("can't negate that"))
2339 s = getstring(x[1], _("can't negate that"))
2311 return _optimize(('string', '-' + s), small)
2340 return _optimize(('string', '-' + s), small)
2312 elif op in 'string symbol negate':
2341 elif op in 'string symbol negate':
2313 return smallbonus, x # single revisions are small
2342 return smallbonus, x # single revisions are small
2314 elif op == 'and':
2343 elif op == 'and':
2315 wa, ta = _optimize(x[1], True)
2344 wa, ta = _optimize(x[1], True)
2316 wb, tb = _optimize(x[2], True)
2345 wb, tb = _optimize(x[2], True)
2317 w = min(wa, wb)
2346 w = min(wa, wb)
2318
2347
2319 # (::x and not ::y)/(not ::y and ::x) have a fast path
2348 # (::x and not ::y)/(not ::y and ::x) have a fast path
2320 tm = _matchonly(ta, tb) or _matchonly(tb, ta)
2349 tm = _matchonly(ta, tb) or _matchonly(tb, ta)
2321 if tm:
2350 if tm:
2322 return w, ('func', ('symbol', 'only'), tm)
2351 return w, ('func', ('symbol', 'only'), tm)
2323
2352
2324 if tb is not None and tb[0] == 'not':
2353 if tb is not None and tb[0] == 'not':
2325 return wa, ('difference', ta, tb[1])
2354 return wa, ('difference', ta, tb[1])
2326
2355
2327 if wa > wb:
2356 if wa > wb:
2328 return w, (op, tb, ta)
2357 return w, (op, tb, ta)
2329 return w, (op, ta, tb)
2358 return w, (op, ta, tb)
2330 elif op == 'or':
2359 elif op == 'or':
2331 # fast path for machine-generated expression, that is likely to have
2360 # fast path for machine-generated expression, that is likely to have
2332 # lots of trivial revisions: 'a + b + c()' to '_list(a b) + c()'
2361 # lots of trivial revisions: 'a + b + c()' to '_list(a b) + c()'
2333 ws, ts, ss = [], [], []
2362 ws, ts, ss = [], [], []
2334 def flushss():
2363 def flushss():
2335 if not ss:
2364 if not ss:
2336 return
2365 return
2337 if len(ss) == 1:
2366 if len(ss) == 1:
2338 w, t = ss[0]
2367 w, t = ss[0]
2339 else:
2368 else:
2340 s = '\0'.join(t[1] for w, t in ss)
2369 s = '\0'.join(t[1] for w, t in ss)
2341 y = ('func', ('symbol', '_list'), ('string', s))
2370 y = ('func', ('symbol', '_list'), ('string', s))
2342 w, t = _optimize(y, False)
2371 w, t = _optimize(y, False)
2343 ws.append(w)
2372 ws.append(w)
2344 ts.append(t)
2373 ts.append(t)
2345 del ss[:]
2374 del ss[:]
2346 for y in x[1:]:
2375 for y in x[1:]:
2347 w, t = _optimize(y, False)
2376 w, t = _optimize(y, False)
2348 if t is not None and (t[0] == 'string' or t[0] == 'symbol'):
2377 if t is not None and (t[0] == 'string' or t[0] == 'symbol'):
2349 ss.append((w, t))
2378 ss.append((w, t))
2350 continue
2379 continue
2351 flushss()
2380 flushss()
2352 ws.append(w)
2381 ws.append(w)
2353 ts.append(t)
2382 ts.append(t)
2354 flushss()
2383 flushss()
2355 if len(ts) == 1:
2384 if len(ts) == 1:
2356 return ws[0], ts[0] # 'or' operation is fully optimized out
2385 return ws[0], ts[0] # 'or' operation is fully optimized out
2357 # we can't reorder trees by weight because it would change the order.
2386 # we can't reorder trees by weight because it would change the order.
2358 # ("sort(a + b)" == "sort(b + a)", but "a + b" != "b + a")
2387 # ("sort(a + b)" == "sort(b + a)", but "a + b" != "b + a")
2359 # ts = tuple(t for w, t in sorted(zip(ws, ts), key=lambda wt: wt[0]))
2388 # ts = tuple(t for w, t in sorted(zip(ws, ts), key=lambda wt: wt[0]))
2360 return max(ws), (op,) + tuple(ts)
2389 return max(ws), (op,) + tuple(ts)
2361 elif op == 'not':
2390 elif op == 'not':
2362 # Optimize not public() to _notpublic() because we have a fast version
2391 # Optimize not public() to _notpublic() because we have a fast version
2363 if x[1] == ('func', ('symbol', 'public'), None):
2392 if x[1] == ('func', ('symbol', 'public'), None):
2364 newsym = ('func', ('symbol', '_notpublic'), None)
2393 newsym = ('func', ('symbol', '_notpublic'), None)
2365 o = _optimize(newsym, not small)
2394 o = _optimize(newsym, not small)
2366 return o[0], o[1]
2395 return o[0], o[1]
2367 else:
2396 else:
2368 o = _optimize(x[1], not small)
2397 o = _optimize(x[1], not small)
2369 return o[0], (op, o[1])
2398 return o[0], (op, o[1])
2370 elif op == 'parentpost':
2399 elif op == 'parentpost':
2371 o = _optimize(x[1], small)
2400 o = _optimize(x[1], small)
2372 return o[0], (op, o[1])
2401 return o[0], (op, o[1])
2373 elif op == 'group':
2402 elif op == 'group':
2374 return _optimize(x[1], small)
2403 return _optimize(x[1], small)
2375 elif op in 'dagrange range parent ancestorspec':
2404 elif op in 'dagrange range parent ancestorspec':
2376 if op == 'parent':
2405 if op == 'parent':
2377 # x^:y means (x^) : y, not x ^ (:y)
2406 # x^:y means (x^) : y, not x ^ (:y)
2378 post = ('parentpost', x[1])
2407 post = ('parentpost', x[1])
2379 if x[2][0] == 'dagrangepre':
2408 if x[2][0] == 'dagrangepre':
2380 return _optimize(('dagrange', post, x[2][1]), small)
2409 return _optimize(('dagrange', post, x[2][1]), small)
2381 elif x[2][0] == 'rangepre':
2410 elif x[2][0] == 'rangepre':
2382 return _optimize(('range', post, x[2][1]), small)
2411 return _optimize(('range', post, x[2][1]), small)
2383
2412
2384 wa, ta = _optimize(x[1], small)
2413 wa, ta = _optimize(x[1], small)
2385 wb, tb = _optimize(x[2], small)
2414 wb, tb = _optimize(x[2], small)
2386 return wa + wb, (op, ta, tb)
2415 return wa + wb, (op, ta, tb)
2387 elif op == 'list':
2416 elif op == 'list':
2388 ws, ts = zip(*(_optimize(y, small) for y in x[1:]))
2417 ws, ts = zip(*(_optimize(y, small) for y in x[1:]))
2389 return sum(ws), (op,) + ts
2418 return sum(ws), (op,) + ts
2390 elif op == 'func':
2419 elif op == 'func':
2391 f = getstring(x[1], _("not a symbol"))
2420 f = getstring(x[1], _("not a symbol"))
2392 wa, ta = _optimize(x[2], small)
2421 wa, ta = _optimize(x[2], small)
2393 if f in ("author branch closed date desc file grep keyword "
2422 if f in ("author branch closed date desc file grep keyword "
2394 "outgoing user"):
2423 "outgoing user"):
2395 w = 10 # slow
2424 w = 10 # slow
2396 elif f in "modifies adds removes":
2425 elif f in "modifies adds removes":
2397 w = 30 # slower
2426 w = 30 # slower
2398 elif f == "contains":
2427 elif f == "contains":
2399 w = 100 # very slow
2428 w = 100 # very slow
2400 elif f == "ancestor":
2429 elif f == "ancestor":
2401 w = 1 * smallbonus
2430 w = 1 * smallbonus
2402 elif f in "reverse limit first _intlist":
2431 elif f in "reverse limit first _intlist":
2403 w = 0
2432 w = 0
2404 elif f in "sort":
2433 elif f in "sort":
2405 w = 10 # assume most sorts look at changelog
2434 w = 10 # assume most sorts look at changelog
2406 else:
2435 else:
2407 w = 1
2436 w = 1
2408 return w + wa, (op, x[1], ta)
2437 return w + wa, (op, x[1], ta)
2409 return 1, x
2438 return 1, x
2410
2439
2411 def optimize(tree):
2440 def optimize(tree):
2412 _weight, newtree = _optimize(tree, small=True)
2441 _weight, newtree = _optimize(tree, small=True)
2413 return newtree
2442 return newtree
2414
2443
2415 # the set of valid characters for the initial letter of symbols in
2444 # the set of valid characters for the initial letter of symbols in
2416 # alias declarations and definitions
2445 # alias declarations and definitions
2417 _aliassyminitletters = set(c for c in [chr(i) for i in xrange(256)]
2446 _aliassyminitletters = set(c for c in [chr(i) for i in xrange(256)]
2418 if c.isalnum() or c in '._@$' or ord(c) > 127)
2447 if c.isalnum() or c in '._@$' or ord(c) > 127)
2419
2448
2420 def _parsewith(spec, lookup=None, syminitletters=None):
2449 def _parsewith(spec, lookup=None, syminitletters=None):
2421 """Generate a parse tree of given spec with given tokenizing options
2450 """Generate a parse tree of given spec with given tokenizing options
2422
2451
2423 >>> _parsewith('foo($1)', syminitletters=_aliassyminitletters)
2452 >>> _parsewith('foo($1)', syminitletters=_aliassyminitletters)
2424 ('func', ('symbol', 'foo'), ('symbol', '$1'))
2453 ('func', ('symbol', 'foo'), ('symbol', '$1'))
2425 >>> _parsewith('$1')
2454 >>> _parsewith('$1')
2426 Traceback (most recent call last):
2455 Traceback (most recent call last):
2427 ...
2456 ...
2428 ParseError: ("syntax error in revset '$1'", 0)
2457 ParseError: ("syntax error in revset '$1'", 0)
2429 >>> _parsewith('foo bar')
2458 >>> _parsewith('foo bar')
2430 Traceback (most recent call last):
2459 Traceback (most recent call last):
2431 ...
2460 ...
2432 ParseError: ('invalid token', 4)
2461 ParseError: ('invalid token', 4)
2433 """
2462 """
2434 p = parser.parser(elements)
2463 p = parser.parser(elements)
2435 tree, pos = p.parse(tokenize(spec, lookup=lookup,
2464 tree, pos = p.parse(tokenize(spec, lookup=lookup,
2436 syminitletters=syminitletters))
2465 syminitletters=syminitletters))
2437 if pos != len(spec):
2466 if pos != len(spec):
2438 raise error.ParseError(_('invalid token'), pos)
2467 raise error.ParseError(_('invalid token'), pos)
2439 return parser.simplifyinfixops(tree, ('list', 'or'))
2468 return parser.simplifyinfixops(tree, ('list', 'or'))
2440
2469
2441 class _aliasrules(parser.basealiasrules):
2470 class _aliasrules(parser.basealiasrules):
2442 """Parsing and expansion rule set of revset aliases"""
2471 """Parsing and expansion rule set of revset aliases"""
2443 _section = _('revset alias')
2472 _section = _('revset alias')
2444
2473
2445 @staticmethod
2474 @staticmethod
2446 def _parse(spec):
2475 def _parse(spec):
2447 """Parse alias declaration/definition ``spec``
2476 """Parse alias declaration/definition ``spec``
2448
2477
2449 This allows symbol names to use also ``$`` as an initial letter
2478 This allows symbol names to use also ``$`` as an initial letter
2450 (for backward compatibility), and callers of this function should
2479 (for backward compatibility), and callers of this function should
2451 examine whether ``$`` is used also for unexpected symbols or not.
2480 examine whether ``$`` is used also for unexpected symbols or not.
2452 """
2481 """
2453 return _parsewith(spec, syminitletters=_aliassyminitletters)
2482 return _parsewith(spec, syminitletters=_aliassyminitletters)
2454
2483
2455 @staticmethod
2484 @staticmethod
2456 def _trygetfunc(tree):
2485 def _trygetfunc(tree):
2457 if tree[0] == 'func' and tree[1][0] == 'symbol':
2486 if tree[0] == 'func' and tree[1][0] == 'symbol':
2458 return tree[1][1], getlist(tree[2])
2487 return tree[1][1], getlist(tree[2])
2459
2488
2460 def expandaliases(ui, tree, showwarning=None):
2489 def expandaliases(ui, tree, showwarning=None):
2461 aliases = _aliasrules.buildmap(ui.configitems('revsetalias'))
2490 aliases = _aliasrules.buildmap(ui.configitems('revsetalias'))
2462 tree = _aliasrules.expand(aliases, tree)
2491 tree = _aliasrules.expand(aliases, tree)
2463 if showwarning:
2492 if showwarning:
2464 # warn about problematic (but not referred) aliases
2493 # warn about problematic (but not referred) aliases
2465 for name, alias in sorted(aliases.iteritems()):
2494 for name, alias in sorted(aliases.iteritems()):
2466 if alias.error and not alias.warned:
2495 if alias.error and not alias.warned:
2467 showwarning(_('warning: %s\n') % (alias.error))
2496 showwarning(_('warning: %s\n') % (alias.error))
2468 alias.warned = True
2497 alias.warned = True
2469 return tree
2498 return tree
2470
2499
2471 def foldconcat(tree):
2500 def foldconcat(tree):
2472 """Fold elements to be concatenated by `##`
2501 """Fold elements to be concatenated by `##`
2473 """
2502 """
2474 if not isinstance(tree, tuple) or tree[0] in ('string', 'symbol'):
2503 if not isinstance(tree, tuple) or tree[0] in ('string', 'symbol'):
2475 return tree
2504 return tree
2476 if tree[0] == '_concat':
2505 if tree[0] == '_concat':
2477 pending = [tree]
2506 pending = [tree]
2478 l = []
2507 l = []
2479 while pending:
2508 while pending:
2480 e = pending.pop()
2509 e = pending.pop()
2481 if e[0] == '_concat':
2510 if e[0] == '_concat':
2482 pending.extend(reversed(e[1:]))
2511 pending.extend(reversed(e[1:]))
2483 elif e[0] in ('string', 'symbol'):
2512 elif e[0] in ('string', 'symbol'):
2484 l.append(e[1])
2513 l.append(e[1])
2485 else:
2514 else:
2486 msg = _("\"##\" can't concatenate \"%s\" element") % (e[0])
2515 msg = _("\"##\" can't concatenate \"%s\" element") % (e[0])
2487 raise error.ParseError(msg)
2516 raise error.ParseError(msg)
2488 return ('string', ''.join(l))
2517 return ('string', ''.join(l))
2489 else:
2518 else:
2490 return tuple(foldconcat(t) for t in tree)
2519 return tuple(foldconcat(t) for t in tree)
2491
2520
2492 def parse(spec, lookup=None):
2521 def parse(spec, lookup=None):
2493 return _parsewith(spec, lookup=lookup)
2522 return _parsewith(spec, lookup=lookup)
2494
2523
2495 def posttreebuilthook(tree, repo):
2524 def posttreebuilthook(tree, repo):
2496 # hook for extensions to execute code on the optimized tree
2525 # hook for extensions to execute code on the optimized tree
2497 pass
2526 pass
2498
2527
2499 def match(ui, spec, repo=None):
2528 def match(ui, spec, repo=None):
2500 if not spec:
2529 if not spec:
2501 raise error.ParseError(_("empty query"))
2530 raise error.ParseError(_("empty query"))
2502 lookup = None
2531 lookup = None
2503 if repo:
2532 if repo:
2504 lookup = repo.__contains__
2533 lookup = repo.__contains__
2505 tree = parse(spec, lookup)
2534 tree = parse(spec, lookup)
2506 return _makematcher(ui, tree, repo)
2535 return _makematcher(ui, tree, repo)
2507
2536
2508 def matchany(ui, specs, repo=None):
2537 def matchany(ui, specs, repo=None):
2509 """Create a matcher that will include any revisions matching one of the
2538 """Create a matcher that will include any revisions matching one of the
2510 given specs"""
2539 given specs"""
2511 if not specs:
2540 if not specs:
2512 def mfunc(repo, subset=None):
2541 def mfunc(repo, subset=None):
2513 return baseset()
2542 return baseset()
2514 return mfunc
2543 return mfunc
2515 if not all(specs):
2544 if not all(specs):
2516 raise error.ParseError(_("empty query"))
2545 raise error.ParseError(_("empty query"))
2517 lookup = None
2546 lookup = None
2518 if repo:
2547 if repo:
2519 lookup = repo.__contains__
2548 lookup = repo.__contains__
2520 if len(specs) == 1:
2549 if len(specs) == 1:
2521 tree = parse(specs[0], lookup)
2550 tree = parse(specs[0], lookup)
2522 else:
2551 else:
2523 tree = ('or',) + tuple(parse(s, lookup) for s in specs)
2552 tree = ('or',) + tuple(parse(s, lookup) for s in specs)
2524 return _makematcher(ui, tree, repo)
2553 return _makematcher(ui, tree, repo)
2525
2554
2526 def _makematcher(ui, tree, repo):
2555 def _makematcher(ui, tree, repo):
2527 if ui:
2556 if ui:
2528 tree = expandaliases(ui, tree, showwarning=ui.warn)
2557 tree = expandaliases(ui, tree, showwarning=ui.warn)
2529 tree = foldconcat(tree)
2558 tree = foldconcat(tree)
2530 tree = optimize(tree)
2559 tree = optimize(tree)
2531 posttreebuilthook(tree, repo)
2560 posttreebuilthook(tree, repo)
2532 def mfunc(repo, subset=None):
2561 def mfunc(repo, subset=None):
2533 if subset is None:
2562 if subset is None:
2534 subset = fullreposet(repo)
2563 subset = fullreposet(repo)
2535 if util.safehasattr(subset, 'isascending'):
2564 if util.safehasattr(subset, 'isascending'):
2536 result = getset(repo, subset, tree)
2565 result = getset(repo, subset, tree)
2537 else:
2566 else:
2538 result = getset(repo, baseset(subset), tree)
2567 result = getset(repo, baseset(subset), tree)
2539 return result
2568 return result
2540 return mfunc
2569 return mfunc
2541
2570
2542 def formatspec(expr, *args):
2571 def formatspec(expr, *args):
2543 '''
2572 '''
2544 This is a convenience function for using revsets internally, and
2573 This is a convenience function for using revsets internally, and
2545 escapes arguments appropriately. Aliases are intentionally ignored
2574 escapes arguments appropriately. Aliases are intentionally ignored
2546 so that intended expression behavior isn't accidentally subverted.
2575 so that intended expression behavior isn't accidentally subverted.
2547
2576
2548 Supported arguments:
2577 Supported arguments:
2549
2578
2550 %r = revset expression, parenthesized
2579 %r = revset expression, parenthesized
2551 %d = int(arg), no quoting
2580 %d = int(arg), no quoting
2552 %s = string(arg), escaped and single-quoted
2581 %s = string(arg), escaped and single-quoted
2553 %b = arg.branch(), escaped and single-quoted
2582 %b = arg.branch(), escaped and single-quoted
2554 %n = hex(arg), single-quoted
2583 %n = hex(arg), single-quoted
2555 %% = a literal '%'
2584 %% = a literal '%'
2556
2585
2557 Prefixing the type with 'l' specifies a parenthesized list of that type.
2586 Prefixing the type with 'l' specifies a parenthesized list of that type.
2558
2587
2559 >>> formatspec('%r:: and %lr', '10 or 11', ("this()", "that()"))
2588 >>> formatspec('%r:: and %lr', '10 or 11', ("this()", "that()"))
2560 '(10 or 11):: and ((this()) or (that()))'
2589 '(10 or 11):: and ((this()) or (that()))'
2561 >>> formatspec('%d:: and not %d::', 10, 20)
2590 >>> formatspec('%d:: and not %d::', 10, 20)
2562 '10:: and not 20::'
2591 '10:: and not 20::'
2563 >>> formatspec('%ld or %ld', [], [1])
2592 >>> formatspec('%ld or %ld', [], [1])
2564 "_list('') or 1"
2593 "_list('') or 1"
2565 >>> formatspec('keyword(%s)', 'foo\\xe9')
2594 >>> formatspec('keyword(%s)', 'foo\\xe9')
2566 "keyword('foo\\\\xe9')"
2595 "keyword('foo\\\\xe9')"
2567 >>> b = lambda: 'default'
2596 >>> b = lambda: 'default'
2568 >>> b.branch = b
2597 >>> b.branch = b
2569 >>> formatspec('branch(%b)', b)
2598 >>> formatspec('branch(%b)', b)
2570 "branch('default')"
2599 "branch('default')"
2571 >>> formatspec('root(%ls)', ['a', 'b', 'c', 'd'])
2600 >>> formatspec('root(%ls)', ['a', 'b', 'c', 'd'])
2572 "root(_list('a\\x00b\\x00c\\x00d'))"
2601 "root(_list('a\\x00b\\x00c\\x00d'))"
2573 '''
2602 '''
2574
2603
2575 def quote(s):
2604 def quote(s):
2576 return repr(str(s))
2605 return repr(str(s))
2577
2606
2578 def argtype(c, arg):
2607 def argtype(c, arg):
2579 if c == 'd':
2608 if c == 'd':
2580 return str(int(arg))
2609 return str(int(arg))
2581 elif c == 's':
2610 elif c == 's':
2582 return quote(arg)
2611 return quote(arg)
2583 elif c == 'r':
2612 elif c == 'r':
2584 parse(arg) # make sure syntax errors are confined
2613 parse(arg) # make sure syntax errors are confined
2585 return '(%s)' % arg
2614 return '(%s)' % arg
2586 elif c == 'n':
2615 elif c == 'n':
2587 return quote(node.hex(arg))
2616 return quote(node.hex(arg))
2588 elif c == 'b':
2617 elif c == 'b':
2589 return quote(arg.branch())
2618 return quote(arg.branch())
2590
2619
2591 def listexp(s, t):
2620 def listexp(s, t):
2592 l = len(s)
2621 l = len(s)
2593 if l == 0:
2622 if l == 0:
2594 return "_list('')"
2623 return "_list('')"
2595 elif l == 1:
2624 elif l == 1:
2596 return argtype(t, s[0])
2625 return argtype(t, s[0])
2597 elif t == 'd':
2626 elif t == 'd':
2598 return "_intlist('%s')" % "\0".join(str(int(a)) for a in s)
2627 return "_intlist('%s')" % "\0".join(str(int(a)) for a in s)
2599 elif t == 's':
2628 elif t == 's':
2600 return "_list('%s')" % "\0".join(s)
2629 return "_list('%s')" % "\0".join(s)
2601 elif t == 'n':
2630 elif t == 'n':
2602 return "_hexlist('%s')" % "\0".join(node.hex(a) for a in s)
2631 return "_hexlist('%s')" % "\0".join(node.hex(a) for a in s)
2603 elif t == 'b':
2632 elif t == 'b':
2604 return "_list('%s')" % "\0".join(a.branch() for a in s)
2633 return "_list('%s')" % "\0".join(a.branch() for a in s)
2605
2634
2606 m = l // 2
2635 m = l // 2
2607 return '(%s or %s)' % (listexp(s[:m], t), listexp(s[m:], t))
2636 return '(%s or %s)' % (listexp(s[:m], t), listexp(s[m:], t))
2608
2637
2609 ret = ''
2638 ret = ''
2610 pos = 0
2639 pos = 0
2611 arg = 0
2640 arg = 0
2612 while pos < len(expr):
2641 while pos < len(expr):
2613 c = expr[pos]
2642 c = expr[pos]
2614 if c == '%':
2643 if c == '%':
2615 pos += 1
2644 pos += 1
2616 d = expr[pos]
2645 d = expr[pos]
2617 if d == '%':
2646 if d == '%':
2618 ret += d
2647 ret += d
2619 elif d in 'dsnbr':
2648 elif d in 'dsnbr':
2620 ret += argtype(d, args[arg])
2649 ret += argtype(d, args[arg])
2621 arg += 1
2650 arg += 1
2622 elif d == 'l':
2651 elif d == 'l':
2623 # a list of some type
2652 # a list of some type
2624 pos += 1
2653 pos += 1
2625 d = expr[pos]
2654 d = expr[pos]
2626 ret += listexp(list(args[arg]), d)
2655 ret += listexp(list(args[arg]), d)
2627 arg += 1
2656 arg += 1
2628 else:
2657 else:
2629 raise error.Abort('unexpected revspec format character %s' % d)
2658 raise error.Abort('unexpected revspec format character %s' % d)
2630 else:
2659 else:
2631 ret += c
2660 ret += c
2632 pos += 1
2661 pos += 1
2633
2662
2634 return ret
2663 return ret
2635
2664
2636 def prettyformat(tree):
2665 def prettyformat(tree):
2637 return parser.prettyformat(tree, ('string', 'symbol'))
2666 return parser.prettyformat(tree, ('string', 'symbol'))
2638
2667
2639 def depth(tree):
2668 def depth(tree):
2640 if isinstance(tree, tuple):
2669 if isinstance(tree, tuple):
2641 return max(map(depth, tree)) + 1
2670 return max(map(depth, tree)) + 1
2642 else:
2671 else:
2643 return 0
2672 return 0
2644
2673
2645 def funcsused(tree):
2674 def funcsused(tree):
2646 if not isinstance(tree, tuple) or tree[0] in ('string', 'symbol'):
2675 if not isinstance(tree, tuple) or tree[0] in ('string', 'symbol'):
2647 return set()
2676 return set()
2648 else:
2677 else:
2649 funcs = set()
2678 funcs = set()
2650 for s in tree[1:]:
2679 for s in tree[1:]:
2651 funcs |= funcsused(s)
2680 funcs |= funcsused(s)
2652 if tree[0] == 'func':
2681 if tree[0] == 'func':
2653 funcs.add(tree[1][1])
2682 funcs.add(tree[1][1])
2654 return funcs
2683 return funcs
2655
2684
2656 def _formatsetrepr(r):
2685 def _formatsetrepr(r):
2657 """Format an optional printable representation of a set
2686 """Format an optional printable representation of a set
2658
2687
2659 ======== =================================
2688 ======== =================================
2660 type(r) example
2689 type(r) example
2661 ======== =================================
2690 ======== =================================
2662 tuple ('<not %r>', other)
2691 tuple ('<not %r>', other)
2663 str '<branch closed>'
2692 str '<branch closed>'
2664 callable lambda: '<branch %r>' % sorted(b)
2693 callable lambda: '<branch %r>' % sorted(b)
2665 object other
2694 object other
2666 ======== =================================
2695 ======== =================================
2667 """
2696 """
2668 if r is None:
2697 if r is None:
2669 return ''
2698 return ''
2670 elif isinstance(r, tuple):
2699 elif isinstance(r, tuple):
2671 return r[0] % r[1:]
2700 return r[0] % r[1:]
2672 elif isinstance(r, str):
2701 elif isinstance(r, str):
2673 return r
2702 return r
2674 elif callable(r):
2703 elif callable(r):
2675 return r()
2704 return r()
2676 else:
2705 else:
2677 return repr(r)
2706 return repr(r)
2678
2707
2679 class abstractsmartset(object):
2708 class abstractsmartset(object):
2680
2709
2681 def __nonzero__(self):
2710 def __nonzero__(self):
2682 """True if the smartset is not empty"""
2711 """True if the smartset is not empty"""
2683 raise NotImplementedError()
2712 raise NotImplementedError()
2684
2713
2685 def __contains__(self, rev):
2714 def __contains__(self, rev):
2686 """provide fast membership testing"""
2715 """provide fast membership testing"""
2687 raise NotImplementedError()
2716 raise NotImplementedError()
2688
2717
2689 def __iter__(self):
2718 def __iter__(self):
2690 """iterate the set in the order it is supposed to be iterated"""
2719 """iterate the set in the order it is supposed to be iterated"""
2691 raise NotImplementedError()
2720 raise NotImplementedError()
2692
2721
2693 # Attributes containing a function to perform a fast iteration in a given
2722 # Attributes containing a function to perform a fast iteration in a given
2694 # direction. A smartset can have none, one, or both defined.
2723 # direction. A smartset can have none, one, or both defined.
2695 #
2724 #
2696 # Default value is None instead of a function returning None to avoid
2725 # Default value is None instead of a function returning None to avoid
2697 # initializing an iterator just for testing if a fast method exists.
2726 # initializing an iterator just for testing if a fast method exists.
2698 fastasc = None
2727 fastasc = None
2699 fastdesc = None
2728 fastdesc = None
2700
2729
2701 def isascending(self):
2730 def isascending(self):
2702 """True if the set will iterate in ascending order"""
2731 """True if the set will iterate in ascending order"""
2703 raise NotImplementedError()
2732 raise NotImplementedError()
2704
2733
2705 def isdescending(self):
2734 def isdescending(self):
2706 """True if the set will iterate in descending order"""
2735 """True if the set will iterate in descending order"""
2707 raise NotImplementedError()
2736 raise NotImplementedError()
2708
2737
2709 def istopo(self):
2738 def istopo(self):
2710 """True if the set will iterate in topographical order"""
2739 """True if the set will iterate in topographical order"""
2711 raise NotImplementedError()
2740 raise NotImplementedError()
2712
2741
2713 @util.cachefunc
2742 @util.cachefunc
2714 def min(self):
2743 def min(self):
2715 """return the minimum element in the set"""
2744 """return the minimum element in the set"""
2716 if self.fastasc is not None:
2745 if self.fastasc is not None:
2717 for r in self.fastasc():
2746 for r in self.fastasc():
2718 return r
2747 return r
2719 raise ValueError('arg is an empty sequence')
2748 raise ValueError('arg is an empty sequence')
2720 return min(self)
2749 return min(self)
2721
2750
2722 @util.cachefunc
2751 @util.cachefunc
2723 def max(self):
2752 def max(self):
2724 """return the maximum element in the set"""
2753 """return the maximum element in the set"""
2725 if self.fastdesc is not None:
2754 if self.fastdesc is not None:
2726 for r in self.fastdesc():
2755 for r in self.fastdesc():
2727 return r
2756 return r
2728 raise ValueError('arg is an empty sequence')
2757 raise ValueError('arg is an empty sequence')
2729 return max(self)
2758 return max(self)
2730
2759
2731 def first(self):
2760 def first(self):
2732 """return the first element in the set (user iteration perspective)
2761 """return the first element in the set (user iteration perspective)
2733
2762
2734 Return None if the set is empty"""
2763 Return None if the set is empty"""
2735 raise NotImplementedError()
2764 raise NotImplementedError()
2736
2765
2737 def last(self):
2766 def last(self):
2738 """return the last element in the set (user iteration perspective)
2767 """return the last element in the set (user iteration perspective)
2739
2768
2740 Return None if the set is empty"""
2769 Return None if the set is empty"""
2741 raise NotImplementedError()
2770 raise NotImplementedError()
2742
2771
2743 def __len__(self):
2772 def __len__(self):
2744 """return the length of the smartsets
2773 """return the length of the smartsets
2745
2774
2746 This can be expensive on smartset that could be lazy otherwise."""
2775 This can be expensive on smartset that could be lazy otherwise."""
2747 raise NotImplementedError()
2776 raise NotImplementedError()
2748
2777
2749 def reverse(self):
2778 def reverse(self):
2750 """reverse the expected iteration order"""
2779 """reverse the expected iteration order"""
2751 raise NotImplementedError()
2780 raise NotImplementedError()
2752
2781
2753 def sort(self, reverse=True):
2782 def sort(self, reverse=True):
2754 """get the set to iterate in an ascending or descending order"""
2783 """get the set to iterate in an ascending or descending order"""
2755 raise NotImplementedError()
2784 raise NotImplementedError()
2756
2785
2757 def __and__(self, other):
2786 def __and__(self, other):
2758 """Returns a new object with the intersection of the two collections.
2787 """Returns a new object with the intersection of the two collections.
2759
2788
2760 This is part of the mandatory API for smartset."""
2789 This is part of the mandatory API for smartset."""
2761 if isinstance(other, fullreposet):
2790 if isinstance(other, fullreposet):
2762 return self
2791 return self
2763 return self.filter(other.__contains__, condrepr=other, cache=False)
2792 return self.filter(other.__contains__, condrepr=other, cache=False)
2764
2793
2765 def __add__(self, other):
2794 def __add__(self, other):
2766 """Returns a new object with the union of the two collections.
2795 """Returns a new object with the union of the two collections.
2767
2796
2768 This is part of the mandatory API for smartset."""
2797 This is part of the mandatory API for smartset."""
2769 return addset(self, other)
2798 return addset(self, other)
2770
2799
2771 def __sub__(self, other):
2800 def __sub__(self, other):
2772 """Returns a new object with the substraction of the two collections.
2801 """Returns a new object with the substraction of the two collections.
2773
2802
2774 This is part of the mandatory API for smartset."""
2803 This is part of the mandatory API for smartset."""
2775 c = other.__contains__
2804 c = other.__contains__
2776 return self.filter(lambda r: not c(r), condrepr=('<not %r>', other),
2805 return self.filter(lambda r: not c(r), condrepr=('<not %r>', other),
2777 cache=False)
2806 cache=False)
2778
2807
2779 def filter(self, condition, condrepr=None, cache=True):
2808 def filter(self, condition, condrepr=None, cache=True):
2780 """Returns this smartset filtered by condition as a new smartset.
2809 """Returns this smartset filtered by condition as a new smartset.
2781
2810
2782 `condition` is a callable which takes a revision number and returns a
2811 `condition` is a callable which takes a revision number and returns a
2783 boolean. Optional `condrepr` provides a printable representation of
2812 boolean. Optional `condrepr` provides a printable representation of
2784 the given `condition`.
2813 the given `condition`.
2785
2814
2786 This is part of the mandatory API for smartset."""
2815 This is part of the mandatory API for smartset."""
2787 # builtin cannot be cached. but do not needs to
2816 # builtin cannot be cached. but do not needs to
2788 if cache and util.safehasattr(condition, 'func_code'):
2817 if cache and util.safehasattr(condition, 'func_code'):
2789 condition = util.cachefunc(condition)
2818 condition = util.cachefunc(condition)
2790 return filteredset(self, condition, condrepr)
2819 return filteredset(self, condition, condrepr)
2791
2820
2792 class baseset(abstractsmartset):
2821 class baseset(abstractsmartset):
2793 """Basic data structure that represents a revset and contains the basic
2822 """Basic data structure that represents a revset and contains the basic
2794 operation that it should be able to perform.
2823 operation that it should be able to perform.
2795
2824
2796 Every method in this class should be implemented by any smartset class.
2825 Every method in this class should be implemented by any smartset class.
2797 """
2826 """
2798 def __init__(self, data=(), datarepr=None, istopo=False):
2827 def __init__(self, data=(), datarepr=None, istopo=False):
2799 """
2828 """
2800 datarepr: a tuple of (format, obj, ...), a function or an object that
2829 datarepr: a tuple of (format, obj, ...), a function or an object that
2801 provides a printable representation of the given data.
2830 provides a printable representation of the given data.
2802 """
2831 """
2803 self._ascending = None
2832 self._ascending = None
2804 self._istopo = istopo
2833 self._istopo = istopo
2805 if not isinstance(data, list):
2834 if not isinstance(data, list):
2806 if isinstance(data, set):
2835 if isinstance(data, set):
2807 self._set = data
2836 self._set = data
2808 # set has no order we pick one for stability purpose
2837 # set has no order we pick one for stability purpose
2809 self._ascending = True
2838 self._ascending = True
2810 data = list(data)
2839 data = list(data)
2811 self._list = data
2840 self._list = data
2812 self._datarepr = datarepr
2841 self._datarepr = datarepr
2813
2842
2814 @util.propertycache
2843 @util.propertycache
2815 def _set(self):
2844 def _set(self):
2816 return set(self._list)
2845 return set(self._list)
2817
2846
2818 @util.propertycache
2847 @util.propertycache
2819 def _asclist(self):
2848 def _asclist(self):
2820 asclist = self._list[:]
2849 asclist = self._list[:]
2821 asclist.sort()
2850 asclist.sort()
2822 return asclist
2851 return asclist
2823
2852
2824 def __iter__(self):
2853 def __iter__(self):
2825 if self._ascending is None:
2854 if self._ascending is None:
2826 return iter(self._list)
2855 return iter(self._list)
2827 elif self._ascending:
2856 elif self._ascending:
2828 return iter(self._asclist)
2857 return iter(self._asclist)
2829 else:
2858 else:
2830 return reversed(self._asclist)
2859 return reversed(self._asclist)
2831
2860
2832 def fastasc(self):
2861 def fastasc(self):
2833 return iter(self._asclist)
2862 return iter(self._asclist)
2834
2863
2835 def fastdesc(self):
2864 def fastdesc(self):
2836 return reversed(self._asclist)
2865 return reversed(self._asclist)
2837
2866
2838 @util.propertycache
2867 @util.propertycache
2839 def __contains__(self):
2868 def __contains__(self):
2840 return self._set.__contains__
2869 return self._set.__contains__
2841
2870
2842 def __nonzero__(self):
2871 def __nonzero__(self):
2843 return bool(self._list)
2872 return bool(self._list)
2844
2873
2845 def sort(self, reverse=False):
2874 def sort(self, reverse=False):
2846 self._ascending = not bool(reverse)
2875 self._ascending = not bool(reverse)
2847 self._istopo = False
2876 self._istopo = False
2848
2877
2849 def reverse(self):
2878 def reverse(self):
2850 if self._ascending is None:
2879 if self._ascending is None:
2851 self._list.reverse()
2880 self._list.reverse()
2852 else:
2881 else:
2853 self._ascending = not self._ascending
2882 self._ascending = not self._ascending
2854 self._istopo = False
2883 self._istopo = False
2855
2884
2856 def __len__(self):
2885 def __len__(self):
2857 return len(self._list)
2886 return len(self._list)
2858
2887
2859 def isascending(self):
2888 def isascending(self):
2860 """Returns True if the collection is ascending order, False if not.
2889 """Returns True if the collection is ascending order, False if not.
2861
2890
2862 This is part of the mandatory API for smartset."""
2891 This is part of the mandatory API for smartset."""
2863 if len(self) <= 1:
2892 if len(self) <= 1:
2864 return True
2893 return True
2865 return self._ascending is not None and self._ascending
2894 return self._ascending is not None and self._ascending
2866
2895
2867 def isdescending(self):
2896 def isdescending(self):
2868 """Returns True if the collection is descending order, False if not.
2897 """Returns True if the collection is descending order, False if not.
2869
2898
2870 This is part of the mandatory API for smartset."""
2899 This is part of the mandatory API for smartset."""
2871 if len(self) <= 1:
2900 if len(self) <= 1:
2872 return True
2901 return True
2873 return self._ascending is not None and not self._ascending
2902 return self._ascending is not None and not self._ascending
2874
2903
2875 def istopo(self):
2904 def istopo(self):
2876 """Is the collection is in topographical order or not.
2905 """Is the collection is in topographical order or not.
2877
2906
2878 This is part of the mandatory API for smartset."""
2907 This is part of the mandatory API for smartset."""
2879 if len(self) <= 1:
2908 if len(self) <= 1:
2880 return True
2909 return True
2881 return self._istopo
2910 return self._istopo
2882
2911
2883 def first(self):
2912 def first(self):
2884 if self:
2913 if self:
2885 if self._ascending is None:
2914 if self._ascending is None:
2886 return self._list[0]
2915 return self._list[0]
2887 elif self._ascending:
2916 elif self._ascending:
2888 return self._asclist[0]
2917 return self._asclist[0]
2889 else:
2918 else:
2890 return self._asclist[-1]
2919 return self._asclist[-1]
2891 return None
2920 return None
2892
2921
2893 def last(self):
2922 def last(self):
2894 if self:
2923 if self:
2895 if self._ascending is None:
2924 if self._ascending is None:
2896 return self._list[-1]
2925 return self._list[-1]
2897 elif self._ascending:
2926 elif self._ascending:
2898 return self._asclist[-1]
2927 return self._asclist[-1]
2899 else:
2928 else:
2900 return self._asclist[0]
2929 return self._asclist[0]
2901 return None
2930 return None
2902
2931
2903 def __repr__(self):
2932 def __repr__(self):
2904 d = {None: '', False: '-', True: '+'}[self._ascending]
2933 d = {None: '', False: '-', True: '+'}[self._ascending]
2905 s = _formatsetrepr(self._datarepr)
2934 s = _formatsetrepr(self._datarepr)
2906 if not s:
2935 if not s:
2907 l = self._list
2936 l = self._list
2908 # if _list has been built from a set, it might have a different
2937 # if _list has been built from a set, it might have a different
2909 # order from one python implementation to another.
2938 # order from one python implementation to another.
2910 # We fallback to the sorted version for a stable output.
2939 # We fallback to the sorted version for a stable output.
2911 if self._ascending is not None:
2940 if self._ascending is not None:
2912 l = self._asclist
2941 l = self._asclist
2913 s = repr(l)
2942 s = repr(l)
2914 return '<%s%s %s>' % (type(self).__name__, d, s)
2943 return '<%s%s %s>' % (type(self).__name__, d, s)
2915
2944
2916 class filteredset(abstractsmartset):
2945 class filteredset(abstractsmartset):
2917 """Duck type for baseset class which iterates lazily over the revisions in
2946 """Duck type for baseset class which iterates lazily over the revisions in
2918 the subset and contains a function which tests for membership in the
2947 the subset and contains a function which tests for membership in the
2919 revset
2948 revset
2920 """
2949 """
2921 def __init__(self, subset, condition=lambda x: True, condrepr=None):
2950 def __init__(self, subset, condition=lambda x: True, condrepr=None):
2922 """
2951 """
2923 condition: a function that decide whether a revision in the subset
2952 condition: a function that decide whether a revision in the subset
2924 belongs to the revset or not.
2953 belongs to the revset or not.
2925 condrepr: a tuple of (format, obj, ...), a function or an object that
2954 condrepr: a tuple of (format, obj, ...), a function or an object that
2926 provides a printable representation of the given condition.
2955 provides a printable representation of the given condition.
2927 """
2956 """
2928 self._subset = subset
2957 self._subset = subset
2929 self._condition = condition
2958 self._condition = condition
2930 self._condrepr = condrepr
2959 self._condrepr = condrepr
2931
2960
2932 def __contains__(self, x):
2961 def __contains__(self, x):
2933 return x in self._subset and self._condition(x)
2962 return x in self._subset and self._condition(x)
2934
2963
2935 def __iter__(self):
2964 def __iter__(self):
2936 return self._iterfilter(self._subset)
2965 return self._iterfilter(self._subset)
2937
2966
2938 def _iterfilter(self, it):
2967 def _iterfilter(self, it):
2939 cond = self._condition
2968 cond = self._condition
2940 for x in it:
2969 for x in it:
2941 if cond(x):
2970 if cond(x):
2942 yield x
2971 yield x
2943
2972
2944 @property
2973 @property
2945 def fastasc(self):
2974 def fastasc(self):
2946 it = self._subset.fastasc
2975 it = self._subset.fastasc
2947 if it is None:
2976 if it is None:
2948 return None
2977 return None
2949 return lambda: self._iterfilter(it())
2978 return lambda: self._iterfilter(it())
2950
2979
2951 @property
2980 @property
2952 def fastdesc(self):
2981 def fastdesc(self):
2953 it = self._subset.fastdesc
2982 it = self._subset.fastdesc
2954 if it is None:
2983 if it is None:
2955 return None
2984 return None
2956 return lambda: self._iterfilter(it())
2985 return lambda: self._iterfilter(it())
2957
2986
2958 def __nonzero__(self):
2987 def __nonzero__(self):
2959 fast = None
2988 fast = None
2960 candidates = [self.fastasc if self.isascending() else None,
2989 candidates = [self.fastasc if self.isascending() else None,
2961 self.fastdesc if self.isdescending() else None,
2990 self.fastdesc if self.isdescending() else None,
2962 self.fastasc,
2991 self.fastasc,
2963 self.fastdesc]
2992 self.fastdesc]
2964 for candidate in candidates:
2993 for candidate in candidates:
2965 if candidate is not None:
2994 if candidate is not None:
2966 fast = candidate
2995 fast = candidate
2967 break
2996 break
2968
2997
2969 if fast is not None:
2998 if fast is not None:
2970 it = fast()
2999 it = fast()
2971 else:
3000 else:
2972 it = self
3001 it = self
2973
3002
2974 for r in it:
3003 for r in it:
2975 return True
3004 return True
2976 return False
3005 return False
2977
3006
2978 def __len__(self):
3007 def __len__(self):
2979 # Basic implementation to be changed in future patches.
3008 # Basic implementation to be changed in future patches.
2980 # until this gets improved, we use generator expression
3009 # until this gets improved, we use generator expression
2981 # here, since list compr is free to call __len__ again
3010 # here, since list compr is free to call __len__ again
2982 # causing infinite recursion
3011 # causing infinite recursion
2983 l = baseset(r for r in self)
3012 l = baseset(r for r in self)
2984 return len(l)
3013 return len(l)
2985
3014
2986 def sort(self, reverse=False):
3015 def sort(self, reverse=False):
2987 self._subset.sort(reverse=reverse)
3016 self._subset.sort(reverse=reverse)
2988
3017
2989 def reverse(self):
3018 def reverse(self):
2990 self._subset.reverse()
3019 self._subset.reverse()
2991
3020
2992 def isascending(self):
3021 def isascending(self):
2993 return self._subset.isascending()
3022 return self._subset.isascending()
2994
3023
2995 def isdescending(self):
3024 def isdescending(self):
2996 return self._subset.isdescending()
3025 return self._subset.isdescending()
2997
3026
2998 def istopo(self):
3027 def istopo(self):
2999 return self._subset.istopo()
3028 return self._subset.istopo()
3000
3029
3001 def first(self):
3030 def first(self):
3002 for x in self:
3031 for x in self:
3003 return x
3032 return x
3004 return None
3033 return None
3005
3034
3006 def last(self):
3035 def last(self):
3007 it = None
3036 it = None
3008 if self.isascending():
3037 if self.isascending():
3009 it = self.fastdesc
3038 it = self.fastdesc
3010 elif self.isdescending():
3039 elif self.isdescending():
3011 it = self.fastasc
3040 it = self.fastasc
3012 if it is not None:
3041 if it is not None:
3013 for x in it():
3042 for x in it():
3014 return x
3043 return x
3015 return None #empty case
3044 return None #empty case
3016 else:
3045 else:
3017 x = None
3046 x = None
3018 for x in self:
3047 for x in self:
3019 pass
3048 pass
3020 return x
3049 return x
3021
3050
3022 def __repr__(self):
3051 def __repr__(self):
3023 xs = [repr(self._subset)]
3052 xs = [repr(self._subset)]
3024 s = _formatsetrepr(self._condrepr)
3053 s = _formatsetrepr(self._condrepr)
3025 if s:
3054 if s:
3026 xs.append(s)
3055 xs.append(s)
3027 return '<%s %s>' % (type(self).__name__, ', '.join(xs))
3056 return '<%s %s>' % (type(self).__name__, ', '.join(xs))
3028
3057
3029 def _iterordered(ascending, iter1, iter2):
3058 def _iterordered(ascending, iter1, iter2):
3030 """produce an ordered iteration from two iterators with the same order
3059 """produce an ordered iteration from two iterators with the same order
3031
3060
3032 The ascending is used to indicated the iteration direction.
3061 The ascending is used to indicated the iteration direction.
3033 """
3062 """
3034 choice = max
3063 choice = max
3035 if ascending:
3064 if ascending:
3036 choice = min
3065 choice = min
3037
3066
3038 val1 = None
3067 val1 = None
3039 val2 = None
3068 val2 = None
3040 try:
3069 try:
3041 # Consume both iterators in an ordered way until one is empty
3070 # Consume both iterators in an ordered way until one is empty
3042 while True:
3071 while True:
3043 if val1 is None:
3072 if val1 is None:
3044 val1 = next(iter1)
3073 val1 = next(iter1)
3045 if val2 is None:
3074 if val2 is None:
3046 val2 = next(iter2)
3075 val2 = next(iter2)
3047 n = choice(val1, val2)
3076 n = choice(val1, val2)
3048 yield n
3077 yield n
3049 if val1 == n:
3078 if val1 == n:
3050 val1 = None
3079 val1 = None
3051 if val2 == n:
3080 if val2 == n:
3052 val2 = None
3081 val2 = None
3053 except StopIteration:
3082 except StopIteration:
3054 # Flush any remaining values and consume the other one
3083 # Flush any remaining values and consume the other one
3055 it = iter2
3084 it = iter2
3056 if val1 is not None:
3085 if val1 is not None:
3057 yield val1
3086 yield val1
3058 it = iter1
3087 it = iter1
3059 elif val2 is not None:
3088 elif val2 is not None:
3060 # might have been equality and both are empty
3089 # might have been equality and both are empty
3061 yield val2
3090 yield val2
3062 for val in it:
3091 for val in it:
3063 yield val
3092 yield val
3064
3093
3065 class addset(abstractsmartset):
3094 class addset(abstractsmartset):
3066 """Represent the addition of two sets
3095 """Represent the addition of two sets
3067
3096
3068 Wrapper structure for lazily adding two structures without losing much
3097 Wrapper structure for lazily adding two structures without losing much
3069 performance on the __contains__ method
3098 performance on the __contains__ method
3070
3099
3071 If the ascending attribute is set, that means the two structures are
3100 If the ascending attribute is set, that means the two structures are
3072 ordered in either an ascending or descending way. Therefore, we can add
3101 ordered in either an ascending or descending way. Therefore, we can add
3073 them maintaining the order by iterating over both at the same time
3102 them maintaining the order by iterating over both at the same time
3074
3103
3075 >>> xs = baseset([0, 3, 2])
3104 >>> xs = baseset([0, 3, 2])
3076 >>> ys = baseset([5, 2, 4])
3105 >>> ys = baseset([5, 2, 4])
3077
3106
3078 >>> rs = addset(xs, ys)
3107 >>> rs = addset(xs, ys)
3079 >>> bool(rs), 0 in rs, 1 in rs, 5 in rs, rs.first(), rs.last()
3108 >>> bool(rs), 0 in rs, 1 in rs, 5 in rs, rs.first(), rs.last()
3080 (True, True, False, True, 0, 4)
3109 (True, True, False, True, 0, 4)
3081 >>> rs = addset(xs, baseset([]))
3110 >>> rs = addset(xs, baseset([]))
3082 >>> bool(rs), 0 in rs, 1 in rs, rs.first(), rs.last()
3111 >>> bool(rs), 0 in rs, 1 in rs, rs.first(), rs.last()
3083 (True, True, False, 0, 2)
3112 (True, True, False, 0, 2)
3084 >>> rs = addset(baseset([]), baseset([]))
3113 >>> rs = addset(baseset([]), baseset([]))
3085 >>> bool(rs), 0 in rs, rs.first(), rs.last()
3114 >>> bool(rs), 0 in rs, rs.first(), rs.last()
3086 (False, False, None, None)
3115 (False, False, None, None)
3087
3116
3088 iterate unsorted:
3117 iterate unsorted:
3089 >>> rs = addset(xs, ys)
3118 >>> rs = addset(xs, ys)
3090 >>> # (use generator because pypy could call len())
3119 >>> # (use generator because pypy could call len())
3091 >>> list(x for x in rs) # without _genlist
3120 >>> list(x for x in rs) # without _genlist
3092 [0, 3, 2, 5, 4]
3121 [0, 3, 2, 5, 4]
3093 >>> assert not rs._genlist
3122 >>> assert not rs._genlist
3094 >>> len(rs)
3123 >>> len(rs)
3095 5
3124 5
3096 >>> [x for x in rs] # with _genlist
3125 >>> [x for x in rs] # with _genlist
3097 [0, 3, 2, 5, 4]
3126 [0, 3, 2, 5, 4]
3098 >>> assert rs._genlist
3127 >>> assert rs._genlist
3099
3128
3100 iterate ascending:
3129 iterate ascending:
3101 >>> rs = addset(xs, ys, ascending=True)
3130 >>> rs = addset(xs, ys, ascending=True)
3102 >>> # (use generator because pypy could call len())
3131 >>> # (use generator because pypy could call len())
3103 >>> list(x for x in rs), list(x for x in rs.fastasc()) # without _asclist
3132 >>> list(x for x in rs), list(x for x in rs.fastasc()) # without _asclist
3104 ([0, 2, 3, 4, 5], [0, 2, 3, 4, 5])
3133 ([0, 2, 3, 4, 5], [0, 2, 3, 4, 5])
3105 >>> assert not rs._asclist
3134 >>> assert not rs._asclist
3106 >>> len(rs)
3135 >>> len(rs)
3107 5
3136 5
3108 >>> [x for x in rs], [x for x in rs.fastasc()]
3137 >>> [x for x in rs], [x for x in rs.fastasc()]
3109 ([0, 2, 3, 4, 5], [0, 2, 3, 4, 5])
3138 ([0, 2, 3, 4, 5], [0, 2, 3, 4, 5])
3110 >>> assert rs._asclist
3139 >>> assert rs._asclist
3111
3140
3112 iterate descending:
3141 iterate descending:
3113 >>> rs = addset(xs, ys, ascending=False)
3142 >>> rs = addset(xs, ys, ascending=False)
3114 >>> # (use generator because pypy could call len())
3143 >>> # (use generator because pypy could call len())
3115 >>> list(x for x in rs), list(x for x in rs.fastdesc()) # without _asclist
3144 >>> list(x for x in rs), list(x for x in rs.fastdesc()) # without _asclist
3116 ([5, 4, 3, 2, 0], [5, 4, 3, 2, 0])
3145 ([5, 4, 3, 2, 0], [5, 4, 3, 2, 0])
3117 >>> assert not rs._asclist
3146 >>> assert not rs._asclist
3118 >>> len(rs)
3147 >>> len(rs)
3119 5
3148 5
3120 >>> [x for x in rs], [x for x in rs.fastdesc()]
3149 >>> [x for x in rs], [x for x in rs.fastdesc()]
3121 ([5, 4, 3, 2, 0], [5, 4, 3, 2, 0])
3150 ([5, 4, 3, 2, 0], [5, 4, 3, 2, 0])
3122 >>> assert rs._asclist
3151 >>> assert rs._asclist
3123
3152
3124 iterate ascending without fastasc:
3153 iterate ascending without fastasc:
3125 >>> rs = addset(xs, generatorset(ys), ascending=True)
3154 >>> rs = addset(xs, generatorset(ys), ascending=True)
3126 >>> assert rs.fastasc is None
3155 >>> assert rs.fastasc is None
3127 >>> [x for x in rs]
3156 >>> [x for x in rs]
3128 [0, 2, 3, 4, 5]
3157 [0, 2, 3, 4, 5]
3129
3158
3130 iterate descending without fastdesc:
3159 iterate descending without fastdesc:
3131 >>> rs = addset(generatorset(xs), ys, ascending=False)
3160 >>> rs = addset(generatorset(xs), ys, ascending=False)
3132 >>> assert rs.fastdesc is None
3161 >>> assert rs.fastdesc is None
3133 >>> [x for x in rs]
3162 >>> [x for x in rs]
3134 [5, 4, 3, 2, 0]
3163 [5, 4, 3, 2, 0]
3135 """
3164 """
3136 def __init__(self, revs1, revs2, ascending=None):
3165 def __init__(self, revs1, revs2, ascending=None):
3137 self._r1 = revs1
3166 self._r1 = revs1
3138 self._r2 = revs2
3167 self._r2 = revs2
3139 self._iter = None
3168 self._iter = None
3140 self._ascending = ascending
3169 self._ascending = ascending
3141 self._genlist = None
3170 self._genlist = None
3142 self._asclist = None
3171 self._asclist = None
3143
3172
3144 def __len__(self):
3173 def __len__(self):
3145 return len(self._list)
3174 return len(self._list)
3146
3175
3147 def __nonzero__(self):
3176 def __nonzero__(self):
3148 return bool(self._r1) or bool(self._r2)
3177 return bool(self._r1) or bool(self._r2)
3149
3178
3150 @util.propertycache
3179 @util.propertycache
3151 def _list(self):
3180 def _list(self):
3152 if not self._genlist:
3181 if not self._genlist:
3153 self._genlist = baseset(iter(self))
3182 self._genlist = baseset(iter(self))
3154 return self._genlist
3183 return self._genlist
3155
3184
3156 def __iter__(self):
3185 def __iter__(self):
3157 """Iterate over both collections without repeating elements
3186 """Iterate over both collections without repeating elements
3158
3187
3159 If the ascending attribute is not set, iterate over the first one and
3188 If the ascending attribute is not set, iterate over the first one and
3160 then over the second one checking for membership on the first one so we
3189 then over the second one checking for membership on the first one so we
3161 dont yield any duplicates.
3190 dont yield any duplicates.
3162
3191
3163 If the ascending attribute is set, iterate over both collections at the
3192 If the ascending attribute is set, iterate over both collections at the
3164 same time, yielding only one value at a time in the given order.
3193 same time, yielding only one value at a time in the given order.
3165 """
3194 """
3166 if self._ascending is None:
3195 if self._ascending is None:
3167 if self._genlist:
3196 if self._genlist:
3168 return iter(self._genlist)
3197 return iter(self._genlist)
3169 def arbitraryordergen():
3198 def arbitraryordergen():
3170 for r in self._r1:
3199 for r in self._r1:
3171 yield r
3200 yield r
3172 inr1 = self._r1.__contains__
3201 inr1 = self._r1.__contains__
3173 for r in self._r2:
3202 for r in self._r2:
3174 if not inr1(r):
3203 if not inr1(r):
3175 yield r
3204 yield r
3176 return arbitraryordergen()
3205 return arbitraryordergen()
3177 # try to use our own fast iterator if it exists
3206 # try to use our own fast iterator if it exists
3178 self._trysetasclist()
3207 self._trysetasclist()
3179 if self._ascending:
3208 if self._ascending:
3180 attr = 'fastasc'
3209 attr = 'fastasc'
3181 else:
3210 else:
3182 attr = 'fastdesc'
3211 attr = 'fastdesc'
3183 it = getattr(self, attr)
3212 it = getattr(self, attr)
3184 if it is not None:
3213 if it is not None:
3185 return it()
3214 return it()
3186 # maybe half of the component supports fast
3215 # maybe half of the component supports fast
3187 # get iterator for _r1
3216 # get iterator for _r1
3188 iter1 = getattr(self._r1, attr)
3217 iter1 = getattr(self._r1, attr)
3189 if iter1 is None:
3218 if iter1 is None:
3190 # let's avoid side effect (not sure it matters)
3219 # let's avoid side effect (not sure it matters)
3191 iter1 = iter(sorted(self._r1, reverse=not self._ascending))
3220 iter1 = iter(sorted(self._r1, reverse=not self._ascending))
3192 else:
3221 else:
3193 iter1 = iter1()
3222 iter1 = iter1()
3194 # get iterator for _r2
3223 # get iterator for _r2
3195 iter2 = getattr(self._r2, attr)
3224 iter2 = getattr(self._r2, attr)
3196 if iter2 is None:
3225 if iter2 is None:
3197 # let's avoid side effect (not sure it matters)
3226 # let's avoid side effect (not sure it matters)
3198 iter2 = iter(sorted(self._r2, reverse=not self._ascending))
3227 iter2 = iter(sorted(self._r2, reverse=not self._ascending))
3199 else:
3228 else:
3200 iter2 = iter2()
3229 iter2 = iter2()
3201 return _iterordered(self._ascending, iter1, iter2)
3230 return _iterordered(self._ascending, iter1, iter2)
3202
3231
3203 def _trysetasclist(self):
3232 def _trysetasclist(self):
3204 """populate the _asclist attribute if possible and necessary"""
3233 """populate the _asclist attribute if possible and necessary"""
3205 if self._genlist is not None and self._asclist is None:
3234 if self._genlist is not None and self._asclist is None:
3206 self._asclist = sorted(self._genlist)
3235 self._asclist = sorted(self._genlist)
3207
3236
3208 @property
3237 @property
3209 def fastasc(self):
3238 def fastasc(self):
3210 self._trysetasclist()
3239 self._trysetasclist()
3211 if self._asclist is not None:
3240 if self._asclist is not None:
3212 return self._asclist.__iter__
3241 return self._asclist.__iter__
3213 iter1 = self._r1.fastasc
3242 iter1 = self._r1.fastasc
3214 iter2 = self._r2.fastasc
3243 iter2 = self._r2.fastasc
3215 if None in (iter1, iter2):
3244 if None in (iter1, iter2):
3216 return None
3245 return None
3217 return lambda: _iterordered(True, iter1(), iter2())
3246 return lambda: _iterordered(True, iter1(), iter2())
3218
3247
3219 @property
3248 @property
3220 def fastdesc(self):
3249 def fastdesc(self):
3221 self._trysetasclist()
3250 self._trysetasclist()
3222 if self._asclist is not None:
3251 if self._asclist is not None:
3223 return self._asclist.__reversed__
3252 return self._asclist.__reversed__
3224 iter1 = self._r1.fastdesc
3253 iter1 = self._r1.fastdesc
3225 iter2 = self._r2.fastdesc
3254 iter2 = self._r2.fastdesc
3226 if None in (iter1, iter2):
3255 if None in (iter1, iter2):
3227 return None
3256 return None
3228 return lambda: _iterordered(False, iter1(), iter2())
3257 return lambda: _iterordered(False, iter1(), iter2())
3229
3258
3230 def __contains__(self, x):
3259 def __contains__(self, x):
3231 return x in self._r1 or x in self._r2
3260 return x in self._r1 or x in self._r2
3232
3261
3233 def sort(self, reverse=False):
3262 def sort(self, reverse=False):
3234 """Sort the added set
3263 """Sort the added set
3235
3264
3236 For this we use the cached list with all the generated values and if we
3265 For this we use the cached list with all the generated values and if we
3237 know they are ascending or descending we can sort them in a smart way.
3266 know they are ascending or descending we can sort them in a smart way.
3238 """
3267 """
3239 self._ascending = not reverse
3268 self._ascending = not reverse
3240
3269
3241 def isascending(self):
3270 def isascending(self):
3242 return self._ascending is not None and self._ascending
3271 return self._ascending is not None and self._ascending
3243
3272
3244 def isdescending(self):
3273 def isdescending(self):
3245 return self._ascending is not None and not self._ascending
3274 return self._ascending is not None and not self._ascending
3246
3275
3247 def istopo(self):
3276 def istopo(self):
3248 # not worth the trouble asserting if the two sets combined are still
3277 # not worth the trouble asserting if the two sets combined are still
3249 # in topographical order. Use the sort() predicate to explicitly sort
3278 # in topographical order. Use the sort() predicate to explicitly sort
3250 # again instead.
3279 # again instead.
3251 return False
3280 return False
3252
3281
3253 def reverse(self):
3282 def reverse(self):
3254 if self._ascending is None:
3283 if self._ascending is None:
3255 self._list.reverse()
3284 self._list.reverse()
3256 else:
3285 else:
3257 self._ascending = not self._ascending
3286 self._ascending = not self._ascending
3258
3287
3259 def first(self):
3288 def first(self):
3260 for x in self:
3289 for x in self:
3261 return x
3290 return x
3262 return None
3291 return None
3263
3292
3264 def last(self):
3293 def last(self):
3265 self.reverse()
3294 self.reverse()
3266 val = self.first()
3295 val = self.first()
3267 self.reverse()
3296 self.reverse()
3268 return val
3297 return val
3269
3298
3270 def __repr__(self):
3299 def __repr__(self):
3271 d = {None: '', False: '-', True: '+'}[self._ascending]
3300 d = {None: '', False: '-', True: '+'}[self._ascending]
3272 return '<%s%s %r, %r>' % (type(self).__name__, d, self._r1, self._r2)
3301 return '<%s%s %r, %r>' % (type(self).__name__, d, self._r1, self._r2)
3273
3302
3274 class generatorset(abstractsmartset):
3303 class generatorset(abstractsmartset):
3275 """Wrap a generator for lazy iteration
3304 """Wrap a generator for lazy iteration
3276
3305
3277 Wrapper structure for generators that provides lazy membership and can
3306 Wrapper structure for generators that provides lazy membership and can
3278 be iterated more than once.
3307 be iterated more than once.
3279 When asked for membership it generates values until either it finds the
3308 When asked for membership it generates values until either it finds the
3280 requested one or has gone through all the elements in the generator
3309 requested one or has gone through all the elements in the generator
3281 """
3310 """
3282 def __init__(self, gen, iterasc=None):
3311 def __init__(self, gen, iterasc=None):
3283 """
3312 """
3284 gen: a generator producing the values for the generatorset.
3313 gen: a generator producing the values for the generatorset.
3285 """
3314 """
3286 self._gen = gen
3315 self._gen = gen
3287 self._asclist = None
3316 self._asclist = None
3288 self._cache = {}
3317 self._cache = {}
3289 self._genlist = []
3318 self._genlist = []
3290 self._finished = False
3319 self._finished = False
3291 self._ascending = True
3320 self._ascending = True
3292 if iterasc is not None:
3321 if iterasc is not None:
3293 if iterasc:
3322 if iterasc:
3294 self.fastasc = self._iterator
3323 self.fastasc = self._iterator
3295 self.__contains__ = self._asccontains
3324 self.__contains__ = self._asccontains
3296 else:
3325 else:
3297 self.fastdesc = self._iterator
3326 self.fastdesc = self._iterator
3298 self.__contains__ = self._desccontains
3327 self.__contains__ = self._desccontains
3299
3328
3300 def __nonzero__(self):
3329 def __nonzero__(self):
3301 # Do not use 'for r in self' because it will enforce the iteration
3330 # Do not use 'for r in self' because it will enforce the iteration
3302 # order (default ascending), possibly unrolling a whole descending
3331 # order (default ascending), possibly unrolling a whole descending
3303 # iterator.
3332 # iterator.
3304 if self._genlist:
3333 if self._genlist:
3305 return True
3334 return True
3306 for r in self._consumegen():
3335 for r in self._consumegen():
3307 return True
3336 return True
3308 return False
3337 return False
3309
3338
3310 def __contains__(self, x):
3339 def __contains__(self, x):
3311 if x in self._cache:
3340 if x in self._cache:
3312 return self._cache[x]
3341 return self._cache[x]
3313
3342
3314 # Use new values only, as existing values would be cached.
3343 # Use new values only, as existing values would be cached.
3315 for l in self._consumegen():
3344 for l in self._consumegen():
3316 if l == x:
3345 if l == x:
3317 return True
3346 return True
3318
3347
3319 self._cache[x] = False
3348 self._cache[x] = False
3320 return False
3349 return False
3321
3350
3322 def _asccontains(self, x):
3351 def _asccontains(self, x):
3323 """version of contains optimised for ascending generator"""
3352 """version of contains optimised for ascending generator"""
3324 if x in self._cache:
3353 if x in self._cache:
3325 return self._cache[x]
3354 return self._cache[x]
3326
3355
3327 # Use new values only, as existing values would be cached.
3356 # Use new values only, as existing values would be cached.
3328 for l in self._consumegen():
3357 for l in self._consumegen():
3329 if l == x:
3358 if l == x:
3330 return True
3359 return True
3331 if l > x:
3360 if l > x:
3332 break
3361 break
3333
3362
3334 self._cache[x] = False
3363 self._cache[x] = False
3335 return False
3364 return False
3336
3365
3337 def _desccontains(self, x):
3366 def _desccontains(self, x):
3338 """version of contains optimised for descending generator"""
3367 """version of contains optimised for descending generator"""
3339 if x in self._cache:
3368 if x in self._cache:
3340 return self._cache[x]
3369 return self._cache[x]
3341
3370
3342 # Use new values only, as existing values would be cached.
3371 # Use new values only, as existing values would be cached.
3343 for l in self._consumegen():
3372 for l in self._consumegen():
3344 if l == x:
3373 if l == x:
3345 return True
3374 return True
3346 if l < x:
3375 if l < x:
3347 break
3376 break
3348
3377
3349 self._cache[x] = False
3378 self._cache[x] = False
3350 return False
3379 return False
3351
3380
3352 def __iter__(self):
3381 def __iter__(self):
3353 if self._ascending:
3382 if self._ascending:
3354 it = self.fastasc
3383 it = self.fastasc
3355 else:
3384 else:
3356 it = self.fastdesc
3385 it = self.fastdesc
3357 if it is not None:
3386 if it is not None:
3358 return it()
3387 return it()
3359 # we need to consume the iterator
3388 # we need to consume the iterator
3360 for x in self._consumegen():
3389 for x in self._consumegen():
3361 pass
3390 pass
3362 # recall the same code
3391 # recall the same code
3363 return iter(self)
3392 return iter(self)
3364
3393
3365 def _iterator(self):
3394 def _iterator(self):
3366 if self._finished:
3395 if self._finished:
3367 return iter(self._genlist)
3396 return iter(self._genlist)
3368
3397
3369 # We have to use this complex iteration strategy to allow multiple
3398 # We have to use this complex iteration strategy to allow multiple
3370 # iterations at the same time. We need to be able to catch revision
3399 # iterations at the same time. We need to be able to catch revision
3371 # removed from _consumegen and added to genlist in another instance.
3400 # removed from _consumegen and added to genlist in another instance.
3372 #
3401 #
3373 # Getting rid of it would provide an about 15% speed up on this
3402 # Getting rid of it would provide an about 15% speed up on this
3374 # iteration.
3403 # iteration.
3375 genlist = self._genlist
3404 genlist = self._genlist
3376 nextrev = self._consumegen().next
3405 nextrev = self._consumegen().next
3377 _len = len # cache global lookup
3406 _len = len # cache global lookup
3378 def gen():
3407 def gen():
3379 i = 0
3408 i = 0
3380 while True:
3409 while True:
3381 if i < _len(genlist):
3410 if i < _len(genlist):
3382 yield genlist[i]
3411 yield genlist[i]
3383 else:
3412 else:
3384 yield nextrev()
3413 yield nextrev()
3385 i += 1
3414 i += 1
3386 return gen()
3415 return gen()
3387
3416
3388 def _consumegen(self):
3417 def _consumegen(self):
3389 cache = self._cache
3418 cache = self._cache
3390 genlist = self._genlist.append
3419 genlist = self._genlist.append
3391 for item in self._gen:
3420 for item in self._gen:
3392 cache[item] = True
3421 cache[item] = True
3393 genlist(item)
3422 genlist(item)
3394 yield item
3423 yield item
3395 if not self._finished:
3424 if not self._finished:
3396 self._finished = True
3425 self._finished = True
3397 asc = self._genlist[:]
3426 asc = self._genlist[:]
3398 asc.sort()
3427 asc.sort()
3399 self._asclist = asc
3428 self._asclist = asc
3400 self.fastasc = asc.__iter__
3429 self.fastasc = asc.__iter__
3401 self.fastdesc = asc.__reversed__
3430 self.fastdesc = asc.__reversed__
3402
3431
3403 def __len__(self):
3432 def __len__(self):
3404 for x in self._consumegen():
3433 for x in self._consumegen():
3405 pass
3434 pass
3406 return len(self._genlist)
3435 return len(self._genlist)
3407
3436
3408 def sort(self, reverse=False):
3437 def sort(self, reverse=False):
3409 self._ascending = not reverse
3438 self._ascending = not reverse
3410
3439
3411 def reverse(self):
3440 def reverse(self):
3412 self._ascending = not self._ascending
3441 self._ascending = not self._ascending
3413
3442
3414 def isascending(self):
3443 def isascending(self):
3415 return self._ascending
3444 return self._ascending
3416
3445
3417 def isdescending(self):
3446 def isdescending(self):
3418 return not self._ascending
3447 return not self._ascending
3419
3448
3420 def istopo(self):
3449 def istopo(self):
3421 # not worth the trouble asserting if the two sets combined are still
3450 # not worth the trouble asserting if the two sets combined are still
3422 # in topographical order. Use the sort() predicate to explicitly sort
3451 # in topographical order. Use the sort() predicate to explicitly sort
3423 # again instead.
3452 # again instead.
3424 return False
3453 return False
3425
3454
3426 def first(self):
3455 def first(self):
3427 if self._ascending:
3456 if self._ascending:
3428 it = self.fastasc
3457 it = self.fastasc
3429 else:
3458 else:
3430 it = self.fastdesc
3459 it = self.fastdesc
3431 if it is None:
3460 if it is None:
3432 # we need to consume all and try again
3461 # we need to consume all and try again
3433 for x in self._consumegen():
3462 for x in self._consumegen():
3434 pass
3463 pass
3435 return self.first()
3464 return self.first()
3436 return next(it(), None)
3465 return next(it(), None)
3437
3466
3438 def last(self):
3467 def last(self):
3439 if self._ascending:
3468 if self._ascending:
3440 it = self.fastdesc
3469 it = self.fastdesc
3441 else:
3470 else:
3442 it = self.fastasc
3471 it = self.fastasc
3443 if it is None:
3472 if it is None:
3444 # we need to consume all and try again
3473 # we need to consume all and try again
3445 for x in self._consumegen():
3474 for x in self._consumegen():
3446 pass
3475 pass
3447 return self.first()
3476 return self.first()
3448 return next(it(), None)
3477 return next(it(), None)
3449
3478
3450 def __repr__(self):
3479 def __repr__(self):
3451 d = {False: '-', True: '+'}[self._ascending]
3480 d = {False: '-', True: '+'}[self._ascending]
3452 return '<%s%s>' % (type(self).__name__, d)
3481 return '<%s%s>' % (type(self).__name__, d)
3453
3482
3454 class spanset(abstractsmartset):
3483 class spanset(abstractsmartset):
3455 """Duck type for baseset class which represents a range of revisions and
3484 """Duck type for baseset class which represents a range of revisions and
3456 can work lazily and without having all the range in memory
3485 can work lazily and without having all the range in memory
3457
3486
3458 Note that spanset(x, y) behave almost like xrange(x, y) except for two
3487 Note that spanset(x, y) behave almost like xrange(x, y) except for two
3459 notable points:
3488 notable points:
3460 - when x < y it will be automatically descending,
3489 - when x < y it will be automatically descending,
3461 - revision filtered with this repoview will be skipped.
3490 - revision filtered with this repoview will be skipped.
3462
3491
3463 """
3492 """
3464 def __init__(self, repo, start=0, end=None):
3493 def __init__(self, repo, start=0, end=None):
3465 """
3494 """
3466 start: first revision included the set
3495 start: first revision included the set
3467 (default to 0)
3496 (default to 0)
3468 end: first revision excluded (last+1)
3497 end: first revision excluded (last+1)
3469 (default to len(repo)
3498 (default to len(repo)
3470
3499
3471 Spanset will be descending if `end` < `start`.
3500 Spanset will be descending if `end` < `start`.
3472 """
3501 """
3473 if end is None:
3502 if end is None:
3474 end = len(repo)
3503 end = len(repo)
3475 self._ascending = start <= end
3504 self._ascending = start <= end
3476 if not self._ascending:
3505 if not self._ascending:
3477 start, end = end + 1, start +1
3506 start, end = end + 1, start +1
3478 self._start = start
3507 self._start = start
3479 self._end = end
3508 self._end = end
3480 self._hiddenrevs = repo.changelog.filteredrevs
3509 self._hiddenrevs = repo.changelog.filteredrevs
3481
3510
3482 def sort(self, reverse=False):
3511 def sort(self, reverse=False):
3483 self._ascending = not reverse
3512 self._ascending = not reverse
3484
3513
3485 def reverse(self):
3514 def reverse(self):
3486 self._ascending = not self._ascending
3515 self._ascending = not self._ascending
3487
3516
3488 def istopo(self):
3517 def istopo(self):
3489 # not worth the trouble asserting if the two sets combined are still
3518 # not worth the trouble asserting if the two sets combined are still
3490 # in topographical order. Use the sort() predicate to explicitly sort
3519 # in topographical order. Use the sort() predicate to explicitly sort
3491 # again instead.
3520 # again instead.
3492 return False
3521 return False
3493
3522
3494 def _iterfilter(self, iterrange):
3523 def _iterfilter(self, iterrange):
3495 s = self._hiddenrevs
3524 s = self._hiddenrevs
3496 for r in iterrange:
3525 for r in iterrange:
3497 if r not in s:
3526 if r not in s:
3498 yield r
3527 yield r
3499
3528
3500 def __iter__(self):
3529 def __iter__(self):
3501 if self._ascending:
3530 if self._ascending:
3502 return self.fastasc()
3531 return self.fastasc()
3503 else:
3532 else:
3504 return self.fastdesc()
3533 return self.fastdesc()
3505
3534
3506 def fastasc(self):
3535 def fastasc(self):
3507 iterrange = xrange(self._start, self._end)
3536 iterrange = xrange(self._start, self._end)
3508 if self._hiddenrevs:
3537 if self._hiddenrevs:
3509 return self._iterfilter(iterrange)
3538 return self._iterfilter(iterrange)
3510 return iter(iterrange)
3539 return iter(iterrange)
3511
3540
3512 def fastdesc(self):
3541 def fastdesc(self):
3513 iterrange = xrange(self._end - 1, self._start - 1, -1)
3542 iterrange = xrange(self._end - 1, self._start - 1, -1)
3514 if self._hiddenrevs:
3543 if self._hiddenrevs:
3515 return self._iterfilter(iterrange)
3544 return self._iterfilter(iterrange)
3516 return iter(iterrange)
3545 return iter(iterrange)
3517
3546
3518 def __contains__(self, rev):
3547 def __contains__(self, rev):
3519 hidden = self._hiddenrevs
3548 hidden = self._hiddenrevs
3520 return ((self._start <= rev < self._end)
3549 return ((self._start <= rev < self._end)
3521 and not (hidden and rev in hidden))
3550 and not (hidden and rev in hidden))
3522
3551
3523 def __nonzero__(self):
3552 def __nonzero__(self):
3524 for r in self:
3553 for r in self:
3525 return True
3554 return True
3526 return False
3555 return False
3527
3556
3528 def __len__(self):
3557 def __len__(self):
3529 if not self._hiddenrevs:
3558 if not self._hiddenrevs:
3530 return abs(self._end - self._start)
3559 return abs(self._end - self._start)
3531 else:
3560 else:
3532 count = 0
3561 count = 0
3533 start = self._start
3562 start = self._start
3534 end = self._end
3563 end = self._end
3535 for rev in self._hiddenrevs:
3564 for rev in self._hiddenrevs:
3536 if (end < rev <= start) or (start <= rev < end):
3565 if (end < rev <= start) or (start <= rev < end):
3537 count += 1
3566 count += 1
3538 return abs(self._end - self._start) - count
3567 return abs(self._end - self._start) - count
3539
3568
3540 def isascending(self):
3569 def isascending(self):
3541 return self._ascending
3570 return self._ascending
3542
3571
3543 def isdescending(self):
3572 def isdescending(self):
3544 return not self._ascending
3573 return not self._ascending
3545
3574
3546 def first(self):
3575 def first(self):
3547 if self._ascending:
3576 if self._ascending:
3548 it = self.fastasc
3577 it = self.fastasc
3549 else:
3578 else:
3550 it = self.fastdesc
3579 it = self.fastdesc
3551 for x in it():
3580 for x in it():
3552 return x
3581 return x
3553 return None
3582 return None
3554
3583
3555 def last(self):
3584 def last(self):
3556 if self._ascending:
3585 if self._ascending:
3557 it = self.fastdesc
3586 it = self.fastdesc
3558 else:
3587 else:
3559 it = self.fastasc
3588 it = self.fastasc
3560 for x in it():
3589 for x in it():
3561 return x
3590 return x
3562 return None
3591 return None
3563
3592
3564 def __repr__(self):
3593 def __repr__(self):
3565 d = {False: '-', True: '+'}[self._ascending]
3594 d = {False: '-', True: '+'}[self._ascending]
3566 return '<%s%s %d:%d>' % (type(self).__name__, d,
3595 return '<%s%s %d:%d>' % (type(self).__name__, d,
3567 self._start, self._end - 1)
3596 self._start, self._end - 1)
3568
3597
3569 class fullreposet(spanset):
3598 class fullreposet(spanset):
3570 """a set containing all revisions in the repo
3599 """a set containing all revisions in the repo
3571
3600
3572 This class exists to host special optimization and magic to handle virtual
3601 This class exists to host special optimization and magic to handle virtual
3573 revisions such as "null".
3602 revisions such as "null".
3574 """
3603 """
3575
3604
3576 def __init__(self, repo):
3605 def __init__(self, repo):
3577 super(fullreposet, self).__init__(repo)
3606 super(fullreposet, self).__init__(repo)
3578
3607
3579 def __and__(self, other):
3608 def __and__(self, other):
3580 """As self contains the whole repo, all of the other set should also be
3609 """As self contains the whole repo, all of the other set should also be
3581 in self. Therefore `self & other = other`.
3610 in self. Therefore `self & other = other`.
3582
3611
3583 This boldly assumes the other contains valid revs only.
3612 This boldly assumes the other contains valid revs only.
3584 """
3613 """
3585 # other not a smartset, make is so
3614 # other not a smartset, make is so
3586 if not util.safehasattr(other, 'isascending'):
3615 if not util.safehasattr(other, 'isascending'):
3587 # filter out hidden revision
3616 # filter out hidden revision
3588 # (this boldly assumes all smartset are pure)
3617 # (this boldly assumes all smartset are pure)
3589 #
3618 #
3590 # `other` was used with "&", let's assume this is a set like
3619 # `other` was used with "&", let's assume this is a set like
3591 # object.
3620 # object.
3592 other = baseset(other - self._hiddenrevs)
3621 other = baseset(other - self._hiddenrevs)
3593
3622
3594 # XXX As fullreposet is also used as bootstrap, this is wrong.
3623 # XXX As fullreposet is also used as bootstrap, this is wrong.
3595 #
3624 #
3596 # With a giveme312() revset returning [3,1,2], this makes
3625 # With a giveme312() revset returning [3,1,2], this makes
3597 # 'hg log -r "giveme312()"' -> 1, 2, 3 (wrong)
3626 # 'hg log -r "giveme312()"' -> 1, 2, 3 (wrong)
3598 # We cannot just drop it because other usage still need to sort it:
3627 # We cannot just drop it because other usage still need to sort it:
3599 # 'hg log -r "all() and giveme312()"' -> 1, 2, 3 (right)
3628 # 'hg log -r "all() and giveme312()"' -> 1, 2, 3 (right)
3600 #
3629 #
3601 # There is also some faulty revset implementations that rely on it
3630 # There is also some faulty revset implementations that rely on it
3602 # (eg: children as of its state in e8075329c5fb)
3631 # (eg: children as of its state in e8075329c5fb)
3603 #
3632 #
3604 # When we fix the two points above we can move this into the if clause
3633 # When we fix the two points above we can move this into the if clause
3605 other.sort(reverse=self.isdescending())
3634 other.sort(reverse=self.isdescending())
3606 return other
3635 return other
3607
3636
3608 def prettyformatset(revs):
3637 def prettyformatset(revs):
3609 lines = []
3638 lines = []
3610 rs = repr(revs)
3639 rs = repr(revs)
3611 p = 0
3640 p = 0
3612 while p < len(rs):
3641 while p < len(rs):
3613 q = rs.find('<', p + 1)
3642 q = rs.find('<', p + 1)
3614 if q < 0:
3643 if q < 0:
3615 q = len(rs)
3644 q = len(rs)
3616 l = rs.count('<', 0, p) - rs.count('>', 0, p)
3645 l = rs.count('<', 0, p) - rs.count('>', 0, p)
3617 assert l >= 0
3646 assert l >= 0
3618 lines.append((l, rs[p:q].rstrip()))
3647 lines.append((l, rs[p:q].rstrip()))
3619 p = q
3648 p = q
3620 return '\n'.join(' ' * l + s for l, s in lines)
3649 return '\n'.join(' ' * l + s for l, s in lines)
3621
3650
3622 def loadpredicate(ui, extname, registrarobj):
3651 def loadpredicate(ui, extname, registrarobj):
3623 """Load revset predicates from specified registrarobj
3652 """Load revset predicates from specified registrarobj
3624 """
3653 """
3625 for name, func in registrarobj._table.iteritems():
3654 for name, func in registrarobj._table.iteritems():
3626 symbols[name] = func
3655 symbols[name] = func
3627 if func._safe:
3656 if func._safe:
3628 safesymbols.add(name)
3657 safesymbols.add(name)
3629
3658
3630 # load built-in predicates explicitly to setup safesymbols
3659 # load built-in predicates explicitly to setup safesymbols
3631 loadpredicate(None, None, predicate)
3660 loadpredicate(None, None, predicate)
3632
3661
3633 # tell hggettext to extract docstrings from these functions:
3662 # tell hggettext to extract docstrings from these functions:
3634 i18nfunctions = symbols.values()
3663 i18nfunctions = symbols.values()
@@ -1,101 +1,101
1 This test file aims at test topological iteration and the various configuration it can has.
1 This test file aims at test topological iteration and the various configuration it can has.
2
2
3 $ cat >> $HGRCPATH << EOF
3 $ cat >> $HGRCPATH << EOF
4 > [ui]
4 > [ui]
5 > logtemplate={rev}\n
5 > logtemplate={rev}\n
6 > EOF
6 > EOF
7
7
8 On this simple example, all topological branch are displayed in turn until we
8 On this simple example, all topological branch are displayed in turn until we
9 can finally display 0. this implies skipping from 8 to 3 and coming back to 7
9 can finally display 0. this implies skipping from 8 to 3 and coming back to 7
10 later.
10 later.
11
11
12 $ hg init test01
12 $ hg init test01
13 $ cd test01
13 $ cd test01
14 $ hg unbundle $TESTDIR/bundles/remote.hg
14 $ hg unbundle $TESTDIR/bundles/remote.hg
15 adding changesets
15 adding changesets
16 adding manifests
16 adding manifests
17 adding file changes
17 adding file changes
18 added 9 changesets with 7 changes to 4 files (+1 heads)
18 added 9 changesets with 7 changes to 4 files (+1 heads)
19 (run 'hg heads' to see heads, 'hg merge' to merge)
19 (run 'hg heads' to see heads, 'hg merge' to merge)
20
20
21 $ hg log -G
21 $ hg log -G
22 o 8
22 o 8
23 |
23 |
24 | o 7
24 | o 7
25 | |
25 | |
26 | o 6
26 | o 6
27 | |
27 | |
28 | o 5
28 | o 5
29 | |
29 | |
30 | o 4
30 | o 4
31 | |
31 | |
32 o | 3
32 o | 3
33 | |
33 | |
34 o | 2
34 o | 2
35 | |
35 | |
36 o | 1
36 o | 1
37 |/
37 |/
38 o 0
38 o 0
39
39
40
40
41 (display all nodes)
41 (display all nodes)
42
42
43 $ hg --config experimental.graph-group-branches=1 log -G
43 $ hg log -G -r 'sort(all(), topo)'
44 o 8
44 o 8
45 |
45 |
46 o 3
46 o 3
47 |
47 |
48 o 2
48 o 2
49 |
49 |
50 o 1
50 o 1
51 |
51 |
52 | o 7
52 | o 7
53 | |
53 | |
54 | o 6
54 | o 6
55 | |
55 | |
56 | o 5
56 | o 5
57 | |
57 | |
58 | o 4
58 | o 4
59 |/
59 |/
60 o 0
60 o 0
61
61
62
62
63 (revset skipping nodes)
63 (revset skipping nodes)
64
64
65 $ hg --config experimental.graph-group-branches=1 log -G --rev 'not (2+6)'
65 $ hg log -G --rev 'sort(not (2+6), topo)'
66 o 8
66 o 8
67 |
67 |
68 o 3
68 o 3
69 :
69 :
70 o 1
70 o 1
71 |
71 |
72 | o 7
72 | o 7
73 | :
73 | :
74 | o 5
74 | o 5
75 | |
75 | |
76 | o 4
76 | o 4
77 |/
77 |/
78 o 0
78 o 0
79
79
80
80
81 (begin) from the other branch
81 (begin) from the other branch
82
82
83 $ hg --config experimental.graph-group-branches=1 --config experimental.graph-group-branches.firstbranch=5 log -G
83 $ hg log -G -r 'sort(all(), topo, topo.firstbranch=5)'
84 o 7
84 o 7
85 |
85 |
86 o 6
86 o 6
87 |
87 |
88 o 5
88 o 5
89 |
89 |
90 o 4
90 o 4
91 |
91 |
92 | o 8
92 | o 8
93 | |
93 | |
94 | o 3
94 | o 3
95 | |
95 | |
96 | o 2
96 | o 2
97 | |
97 | |
98 | o 1
98 | o 1
99 |/
99 |/
100 o 0
100 o 0
101
101
@@ -1,2499 +1,2560
1 $ HGENCODING=utf-8
1 $ HGENCODING=utf-8
2 $ export HGENCODING
2 $ export HGENCODING
3 $ cat > testrevset.py << EOF
3 $ cat > testrevset.py << EOF
4 > import mercurial.revset
4 > import mercurial.revset
5 >
5 >
6 > baseset = mercurial.revset.baseset
6 > baseset = mercurial.revset.baseset
7 >
7 >
8 > def r3232(repo, subset, x):
8 > def r3232(repo, subset, x):
9 > """"simple revset that return [3,2,3,2]
9 > """"simple revset that return [3,2,3,2]
10 >
10 >
11 > revisions duplicated on purpose.
11 > revisions duplicated on purpose.
12 > """
12 > """
13 > if 3 not in subset:
13 > if 3 not in subset:
14 > if 2 in subset:
14 > if 2 in subset:
15 > return baseset([2,2])
15 > return baseset([2,2])
16 > return baseset()
16 > return baseset()
17 > return baseset([3,3,2,2])
17 > return baseset([3,3,2,2])
18 >
18 >
19 > mercurial.revset.symbols['r3232'] = r3232
19 > mercurial.revset.symbols['r3232'] = r3232
20 > EOF
20 > EOF
21 $ cat >> $HGRCPATH << EOF
21 $ cat >> $HGRCPATH << EOF
22 > [extensions]
22 > [extensions]
23 > testrevset=$TESTTMP/testrevset.py
23 > testrevset=$TESTTMP/testrevset.py
24 > EOF
24 > EOF
25
25
26 $ try() {
26 $ try() {
27 > hg debugrevspec --debug "$@"
27 > hg debugrevspec --debug "$@"
28 > }
28 > }
29
29
30 $ log() {
30 $ log() {
31 > hg log --template '{rev}\n' -r "$1"
31 > hg log --template '{rev}\n' -r "$1"
32 > }
32 > }
33
33
34 $ hg init repo
34 $ hg init repo
35 $ cd repo
35 $ cd repo
36
36
37 $ echo a > a
37 $ echo a > a
38 $ hg branch a
38 $ hg branch a
39 marked working directory as branch a
39 marked working directory as branch a
40 (branches are permanent and global, did you want a bookmark?)
40 (branches are permanent and global, did you want a bookmark?)
41 $ hg ci -Aqm0
41 $ hg ci -Aqm0
42
42
43 $ echo b > b
43 $ echo b > b
44 $ hg branch b
44 $ hg branch b
45 marked working directory as branch b
45 marked working directory as branch b
46 $ hg ci -Aqm1
46 $ hg ci -Aqm1
47
47
48 $ rm a
48 $ rm a
49 $ hg branch a-b-c-
49 $ hg branch a-b-c-
50 marked working directory as branch a-b-c-
50 marked working directory as branch a-b-c-
51 $ hg ci -Aqm2 -u Bob
51 $ hg ci -Aqm2 -u Bob
52
52
53 $ hg log -r "extra('branch', 'a-b-c-')" --template '{rev}\n'
53 $ hg log -r "extra('branch', 'a-b-c-')" --template '{rev}\n'
54 2
54 2
55 $ hg log -r "extra('branch')" --template '{rev}\n'
55 $ hg log -r "extra('branch')" --template '{rev}\n'
56 0
56 0
57 1
57 1
58 2
58 2
59 $ hg log -r "extra('branch', 're:a')" --template '{rev} {branch}\n'
59 $ hg log -r "extra('branch', 're:a')" --template '{rev} {branch}\n'
60 0 a
60 0 a
61 2 a-b-c-
61 2 a-b-c-
62
62
63 $ hg co 1
63 $ hg co 1
64 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
64 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
65 $ hg branch +a+b+c+
65 $ hg branch +a+b+c+
66 marked working directory as branch +a+b+c+
66 marked working directory as branch +a+b+c+
67 $ hg ci -Aqm3
67 $ hg ci -Aqm3
68
68
69 $ hg co 2 # interleave
69 $ hg co 2 # interleave
70 0 files updated, 0 files merged, 1 files removed, 0 files unresolved
70 0 files updated, 0 files merged, 1 files removed, 0 files unresolved
71 $ echo bb > b
71 $ echo bb > b
72 $ hg branch -- -a-b-c-
72 $ hg branch -- -a-b-c-
73 marked working directory as branch -a-b-c-
73 marked working directory as branch -a-b-c-
74 $ hg ci -Aqm4 -d "May 12 2005"
74 $ hg ci -Aqm4 -d "May 12 2005"
75
75
76 $ hg co 3
76 $ hg co 3
77 2 files updated, 0 files merged, 0 files removed, 0 files unresolved
77 2 files updated, 0 files merged, 0 files removed, 0 files unresolved
78 $ hg branch !a/b/c/
78 $ hg branch !a/b/c/
79 marked working directory as branch !a/b/c/
79 marked working directory as branch !a/b/c/
80 $ hg ci -Aqm"5 bug"
80 $ hg ci -Aqm"5 bug"
81
81
82 $ hg merge 4
82 $ hg merge 4
83 1 files updated, 0 files merged, 1 files removed, 0 files unresolved
83 1 files updated, 0 files merged, 1 files removed, 0 files unresolved
84 (branch merge, don't forget to commit)
84 (branch merge, don't forget to commit)
85 $ hg branch _a_b_c_
85 $ hg branch _a_b_c_
86 marked working directory as branch _a_b_c_
86 marked working directory as branch _a_b_c_
87 $ hg ci -Aqm"6 issue619"
87 $ hg ci -Aqm"6 issue619"
88
88
89 $ hg branch .a.b.c.
89 $ hg branch .a.b.c.
90 marked working directory as branch .a.b.c.
90 marked working directory as branch .a.b.c.
91 $ hg ci -Aqm7
91 $ hg ci -Aqm7
92
92
93 $ hg branch all
93 $ hg branch all
94 marked working directory as branch all
94 marked working directory as branch all
95
95
96 $ hg co 4
96 $ hg co 4
97 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
97 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
98 $ hg branch Γ©
98 $ hg branch Γ©
99 marked working directory as branch \xc3\xa9 (esc)
99 marked working directory as branch \xc3\xa9 (esc)
100 $ hg ci -Aqm9
100 $ hg ci -Aqm9
101
101
102 $ hg tag -r6 1.0
102 $ hg tag -r6 1.0
103 $ hg bookmark -r6 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
103 $ hg bookmark -r6 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
104
104
105 $ hg clone --quiet -U -r 7 . ../remote1
105 $ hg clone --quiet -U -r 7 . ../remote1
106 $ hg clone --quiet -U -r 8 . ../remote2
106 $ hg clone --quiet -U -r 8 . ../remote2
107 $ echo "[paths]" >> .hg/hgrc
107 $ echo "[paths]" >> .hg/hgrc
108 $ echo "default = ../remote1" >> .hg/hgrc
108 $ echo "default = ../remote1" >> .hg/hgrc
109
109
110 trivial
110 trivial
111
111
112 $ try 0:1
112 $ try 0:1
113 (range
113 (range
114 ('symbol', '0')
114 ('symbol', '0')
115 ('symbol', '1'))
115 ('symbol', '1'))
116 * set:
116 * set:
117 <spanset+ 0:1>
117 <spanset+ 0:1>
118 0
118 0
119 1
119 1
120 $ try --optimize :
120 $ try --optimize :
121 (rangeall
121 (rangeall
122 None)
122 None)
123 * optimized:
123 * optimized:
124 (range
124 (range
125 ('string', '0')
125 ('string', '0')
126 ('string', 'tip'))
126 ('string', 'tip'))
127 * set:
127 * set:
128 <spanset+ 0:9>
128 <spanset+ 0:9>
129 0
129 0
130 1
130 1
131 2
131 2
132 3
132 3
133 4
133 4
134 5
134 5
135 6
135 6
136 7
136 7
137 8
137 8
138 9
138 9
139 $ try 3::6
139 $ try 3::6
140 (dagrange
140 (dagrange
141 ('symbol', '3')
141 ('symbol', '3')
142 ('symbol', '6'))
142 ('symbol', '6'))
143 * set:
143 * set:
144 <baseset+ [3, 5, 6]>
144 <baseset+ [3, 5, 6]>
145 3
145 3
146 5
146 5
147 6
147 6
148 $ try '0|1|2'
148 $ try '0|1|2'
149 (or
149 (or
150 ('symbol', '0')
150 ('symbol', '0')
151 ('symbol', '1')
151 ('symbol', '1')
152 ('symbol', '2'))
152 ('symbol', '2'))
153 * set:
153 * set:
154 <baseset [0, 1, 2]>
154 <baseset [0, 1, 2]>
155 0
155 0
156 1
156 1
157 2
157 2
158
158
159 names that should work without quoting
159 names that should work without quoting
160
160
161 $ try a
161 $ try a
162 ('symbol', 'a')
162 ('symbol', 'a')
163 * set:
163 * set:
164 <baseset [0]>
164 <baseset [0]>
165 0
165 0
166 $ try b-a
166 $ try b-a
167 (minus
167 (minus
168 ('symbol', 'b')
168 ('symbol', 'b')
169 ('symbol', 'a'))
169 ('symbol', 'a'))
170 * set:
170 * set:
171 <filteredset
171 <filteredset
172 <baseset [1]>,
172 <baseset [1]>,
173 <not
173 <not
174 <baseset [0]>>>
174 <baseset [0]>>>
175 1
175 1
176 $ try _a_b_c_
176 $ try _a_b_c_
177 ('symbol', '_a_b_c_')
177 ('symbol', '_a_b_c_')
178 * set:
178 * set:
179 <baseset [6]>
179 <baseset [6]>
180 6
180 6
181 $ try _a_b_c_-a
181 $ try _a_b_c_-a
182 (minus
182 (minus
183 ('symbol', '_a_b_c_')
183 ('symbol', '_a_b_c_')
184 ('symbol', 'a'))
184 ('symbol', 'a'))
185 * set:
185 * set:
186 <filteredset
186 <filteredset
187 <baseset [6]>,
187 <baseset [6]>,
188 <not
188 <not
189 <baseset [0]>>>
189 <baseset [0]>>>
190 6
190 6
191 $ try .a.b.c.
191 $ try .a.b.c.
192 ('symbol', '.a.b.c.')
192 ('symbol', '.a.b.c.')
193 * set:
193 * set:
194 <baseset [7]>
194 <baseset [7]>
195 7
195 7
196 $ try .a.b.c.-a
196 $ try .a.b.c.-a
197 (minus
197 (minus
198 ('symbol', '.a.b.c.')
198 ('symbol', '.a.b.c.')
199 ('symbol', 'a'))
199 ('symbol', 'a'))
200 * set:
200 * set:
201 <filteredset
201 <filteredset
202 <baseset [7]>,
202 <baseset [7]>,
203 <not
203 <not
204 <baseset [0]>>>
204 <baseset [0]>>>
205 7
205 7
206
206
207 names that should be caught by fallback mechanism
207 names that should be caught by fallback mechanism
208
208
209 $ try -- '-a-b-c-'
209 $ try -- '-a-b-c-'
210 ('symbol', '-a-b-c-')
210 ('symbol', '-a-b-c-')
211 * set:
211 * set:
212 <baseset [4]>
212 <baseset [4]>
213 4
213 4
214 $ log -a-b-c-
214 $ log -a-b-c-
215 4
215 4
216 $ try '+a+b+c+'
216 $ try '+a+b+c+'
217 ('symbol', '+a+b+c+')
217 ('symbol', '+a+b+c+')
218 * set:
218 * set:
219 <baseset [3]>
219 <baseset [3]>
220 3
220 3
221 $ try '+a+b+c+:'
221 $ try '+a+b+c+:'
222 (rangepost
222 (rangepost
223 ('symbol', '+a+b+c+'))
223 ('symbol', '+a+b+c+'))
224 * set:
224 * set:
225 <spanset+ 3:9>
225 <spanset+ 3:9>
226 3
226 3
227 4
227 4
228 5
228 5
229 6
229 6
230 7
230 7
231 8
231 8
232 9
232 9
233 $ try ':+a+b+c+'
233 $ try ':+a+b+c+'
234 (rangepre
234 (rangepre
235 ('symbol', '+a+b+c+'))
235 ('symbol', '+a+b+c+'))
236 * set:
236 * set:
237 <spanset+ 0:3>
237 <spanset+ 0:3>
238 0
238 0
239 1
239 1
240 2
240 2
241 3
241 3
242 $ try -- '-a-b-c-:+a+b+c+'
242 $ try -- '-a-b-c-:+a+b+c+'
243 (range
243 (range
244 ('symbol', '-a-b-c-')
244 ('symbol', '-a-b-c-')
245 ('symbol', '+a+b+c+'))
245 ('symbol', '+a+b+c+'))
246 * set:
246 * set:
247 <spanset- 3:4>
247 <spanset- 3:4>
248 4
248 4
249 3
249 3
250 $ log '-a-b-c-:+a+b+c+'
250 $ log '-a-b-c-:+a+b+c+'
251 4
251 4
252 3
252 3
253
253
254 $ try -- -a-b-c--a # complains
254 $ try -- -a-b-c--a # complains
255 (minus
255 (minus
256 (minus
256 (minus
257 (minus
257 (minus
258 (negate
258 (negate
259 ('symbol', 'a'))
259 ('symbol', 'a'))
260 ('symbol', 'b'))
260 ('symbol', 'b'))
261 ('symbol', 'c'))
261 ('symbol', 'c'))
262 (negate
262 (negate
263 ('symbol', 'a')))
263 ('symbol', 'a')))
264 abort: unknown revision '-a'!
264 abort: unknown revision '-a'!
265 [255]
265 [255]
266 $ try Γ©
266 $ try Γ©
267 ('symbol', '\xc3\xa9')
267 ('symbol', '\xc3\xa9')
268 * set:
268 * set:
269 <baseset [9]>
269 <baseset [9]>
270 9
270 9
271
271
272 no quoting needed
272 no quoting needed
273
273
274 $ log ::a-b-c-
274 $ log ::a-b-c-
275 0
275 0
276 1
276 1
277 2
277 2
278
278
279 quoting needed
279 quoting needed
280
280
281 $ try '"-a-b-c-"-a'
281 $ try '"-a-b-c-"-a'
282 (minus
282 (minus
283 ('string', '-a-b-c-')
283 ('string', '-a-b-c-')
284 ('symbol', 'a'))
284 ('symbol', 'a'))
285 * set:
285 * set:
286 <filteredset
286 <filteredset
287 <baseset [4]>,
287 <baseset [4]>,
288 <not
288 <not
289 <baseset [0]>>>
289 <baseset [0]>>>
290 4
290 4
291
291
292 $ log '1 or 2'
292 $ log '1 or 2'
293 1
293 1
294 2
294 2
295 $ log '1|2'
295 $ log '1|2'
296 1
296 1
297 2
297 2
298 $ log '1 and 2'
298 $ log '1 and 2'
299 $ log '1&2'
299 $ log '1&2'
300 $ try '1&2|3' # precedence - and is higher
300 $ try '1&2|3' # precedence - and is higher
301 (or
301 (or
302 (and
302 (and
303 ('symbol', '1')
303 ('symbol', '1')
304 ('symbol', '2'))
304 ('symbol', '2'))
305 ('symbol', '3'))
305 ('symbol', '3'))
306 * set:
306 * set:
307 <addset
307 <addset
308 <baseset []>,
308 <baseset []>,
309 <baseset [3]>>
309 <baseset [3]>>
310 3
310 3
311 $ try '1|2&3'
311 $ try '1|2&3'
312 (or
312 (or
313 ('symbol', '1')
313 ('symbol', '1')
314 (and
314 (and
315 ('symbol', '2')
315 ('symbol', '2')
316 ('symbol', '3')))
316 ('symbol', '3')))
317 * set:
317 * set:
318 <addset
318 <addset
319 <baseset [1]>,
319 <baseset [1]>,
320 <baseset []>>
320 <baseset []>>
321 1
321 1
322 $ try '1&2&3' # associativity
322 $ try '1&2&3' # associativity
323 (and
323 (and
324 (and
324 (and
325 ('symbol', '1')
325 ('symbol', '1')
326 ('symbol', '2'))
326 ('symbol', '2'))
327 ('symbol', '3'))
327 ('symbol', '3'))
328 * set:
328 * set:
329 <baseset []>
329 <baseset []>
330 $ try '1|(2|3)'
330 $ try '1|(2|3)'
331 (or
331 (or
332 ('symbol', '1')
332 ('symbol', '1')
333 (group
333 (group
334 (or
334 (or
335 ('symbol', '2')
335 ('symbol', '2')
336 ('symbol', '3'))))
336 ('symbol', '3'))))
337 * set:
337 * set:
338 <addset
338 <addset
339 <baseset [1]>,
339 <baseset [1]>,
340 <baseset [2, 3]>>
340 <baseset [2, 3]>>
341 1
341 1
342 2
342 2
343 3
343 3
344 $ log '1.0' # tag
344 $ log '1.0' # tag
345 6
345 6
346 $ log 'a' # branch
346 $ log 'a' # branch
347 0
347 0
348 $ log '2785f51ee'
348 $ log '2785f51ee'
349 0
349 0
350 $ log 'date(2005)'
350 $ log 'date(2005)'
351 4
351 4
352 $ log 'date(this is a test)'
352 $ log 'date(this is a test)'
353 hg: parse error at 10: unexpected token: symbol
353 hg: parse error at 10: unexpected token: symbol
354 [255]
354 [255]
355 $ log 'date()'
355 $ log 'date()'
356 hg: parse error: date requires a string
356 hg: parse error: date requires a string
357 [255]
357 [255]
358 $ log 'date'
358 $ log 'date'
359 abort: unknown revision 'date'!
359 abort: unknown revision 'date'!
360 [255]
360 [255]
361 $ log 'date('
361 $ log 'date('
362 hg: parse error at 5: not a prefix: end
362 hg: parse error at 5: not a prefix: end
363 [255]
363 [255]
364 $ log 'date("\xy")'
364 $ log 'date("\xy")'
365 hg: parse error: invalid \x escape
365 hg: parse error: invalid \x escape
366 [255]
366 [255]
367 $ log 'date(tip)'
367 $ log 'date(tip)'
368 abort: invalid date: 'tip'
368 abort: invalid date: 'tip'
369 [255]
369 [255]
370 $ log '0:date'
370 $ log '0:date'
371 abort: unknown revision 'date'!
371 abort: unknown revision 'date'!
372 [255]
372 [255]
373 $ log '::"date"'
373 $ log '::"date"'
374 abort: unknown revision 'date'!
374 abort: unknown revision 'date'!
375 [255]
375 [255]
376 $ hg book date -r 4
376 $ hg book date -r 4
377 $ log '0:date'
377 $ log '0:date'
378 0
378 0
379 1
379 1
380 2
380 2
381 3
381 3
382 4
382 4
383 $ log '::date'
383 $ log '::date'
384 0
384 0
385 1
385 1
386 2
386 2
387 4
387 4
388 $ log '::"date"'
388 $ log '::"date"'
389 0
389 0
390 1
390 1
391 2
391 2
392 4
392 4
393 $ log 'date(2005) and 1::'
393 $ log 'date(2005) and 1::'
394 4
394 4
395 $ hg book -d date
395 $ hg book -d date
396
396
397 keyword arguments
397 keyword arguments
398
398
399 $ log 'extra(branch, value=a)'
399 $ log 'extra(branch, value=a)'
400 0
400 0
401
401
402 $ log 'extra(branch, a, b)'
402 $ log 'extra(branch, a, b)'
403 hg: parse error: extra takes at most 2 arguments
403 hg: parse error: extra takes at most 2 arguments
404 [255]
404 [255]
405 $ log 'extra(a, label=b)'
405 $ log 'extra(a, label=b)'
406 hg: parse error: extra got multiple values for keyword argument 'label'
406 hg: parse error: extra got multiple values for keyword argument 'label'
407 [255]
407 [255]
408 $ log 'extra(label=branch, default)'
408 $ log 'extra(label=branch, default)'
409 hg: parse error: extra got an invalid argument
409 hg: parse error: extra got an invalid argument
410 [255]
410 [255]
411 $ log 'extra(branch, foo+bar=baz)'
411 $ log 'extra(branch, foo+bar=baz)'
412 hg: parse error: extra got an invalid argument
412 hg: parse error: extra got an invalid argument
413 [255]
413 [255]
414 $ log 'extra(unknown=branch)'
414 $ log 'extra(unknown=branch)'
415 hg: parse error: extra got an unexpected keyword argument 'unknown'
415 hg: parse error: extra got an unexpected keyword argument 'unknown'
416 [255]
416 [255]
417
417
418 $ try 'foo=bar|baz'
418 $ try 'foo=bar|baz'
419 (keyvalue
419 (keyvalue
420 ('symbol', 'foo')
420 ('symbol', 'foo')
421 (or
421 (or
422 ('symbol', 'bar')
422 ('symbol', 'bar')
423 ('symbol', 'baz')))
423 ('symbol', 'baz')))
424 hg: parse error: can't use a key-value pair in this context
424 hg: parse error: can't use a key-value pair in this context
425 [255]
425 [255]
426
426
427 Test that symbols only get parsed as functions if there's an opening
427 Test that symbols only get parsed as functions if there's an opening
428 parenthesis.
428 parenthesis.
429
429
430 $ hg book only -r 9
430 $ hg book only -r 9
431 $ log 'only(only)' # Outer "only" is a function, inner "only" is the bookmark
431 $ log 'only(only)' # Outer "only" is a function, inner "only" is the bookmark
432 8
432 8
433 9
433 9
434
434
435 ancestor can accept 0 or more arguments
435 ancestor can accept 0 or more arguments
436
436
437 $ log 'ancestor()'
437 $ log 'ancestor()'
438 $ log 'ancestor(1)'
438 $ log 'ancestor(1)'
439 1
439 1
440 $ log 'ancestor(4,5)'
440 $ log 'ancestor(4,5)'
441 1
441 1
442 $ log 'ancestor(4,5) and 4'
442 $ log 'ancestor(4,5) and 4'
443 $ log 'ancestor(0,0,1,3)'
443 $ log 'ancestor(0,0,1,3)'
444 0
444 0
445 $ log 'ancestor(3,1,5,3,5,1)'
445 $ log 'ancestor(3,1,5,3,5,1)'
446 1
446 1
447 $ log 'ancestor(0,1,3,5)'
447 $ log 'ancestor(0,1,3,5)'
448 0
448 0
449 $ log 'ancestor(1,2,3,4,5)'
449 $ log 'ancestor(1,2,3,4,5)'
450 1
450 1
451
451
452 test ancestors
452 test ancestors
453
453
454 $ log 'ancestors(5)'
454 $ log 'ancestors(5)'
455 0
455 0
456 1
456 1
457 3
457 3
458 5
458 5
459 $ log 'ancestor(ancestors(5))'
459 $ log 'ancestor(ancestors(5))'
460 0
460 0
461 $ log '::r3232()'
461 $ log '::r3232()'
462 0
462 0
463 1
463 1
464 2
464 2
465 3
465 3
466
466
467 $ log 'author(bob)'
467 $ log 'author(bob)'
468 2
468 2
469 $ log 'author("re:bob|test")'
469 $ log 'author("re:bob|test")'
470 0
470 0
471 1
471 1
472 2
472 2
473 3
473 3
474 4
474 4
475 5
475 5
476 6
476 6
477 7
477 7
478 8
478 8
479 9
479 9
480 $ log 'branch(Γ©)'
480 $ log 'branch(Γ©)'
481 8
481 8
482 9
482 9
483 $ log 'branch(a)'
483 $ log 'branch(a)'
484 0
484 0
485 $ hg log -r 'branch("re:a")' --template '{rev} {branch}\n'
485 $ hg log -r 'branch("re:a")' --template '{rev} {branch}\n'
486 0 a
486 0 a
487 2 a-b-c-
487 2 a-b-c-
488 3 +a+b+c+
488 3 +a+b+c+
489 4 -a-b-c-
489 4 -a-b-c-
490 5 !a/b/c/
490 5 !a/b/c/
491 6 _a_b_c_
491 6 _a_b_c_
492 7 .a.b.c.
492 7 .a.b.c.
493 $ log 'children(ancestor(4,5))'
493 $ log 'children(ancestor(4,5))'
494 2
494 2
495 3
495 3
496 $ log 'closed()'
496 $ log 'closed()'
497 $ log 'contains(a)'
497 $ log 'contains(a)'
498 0
498 0
499 1
499 1
500 3
500 3
501 5
501 5
502 $ log 'contains("../repo/a")'
502 $ log 'contains("../repo/a")'
503 0
503 0
504 1
504 1
505 3
505 3
506 5
506 5
507 $ log 'desc(B)'
507 $ log 'desc(B)'
508 5
508 5
509 $ log 'descendants(2 or 3)'
509 $ log 'descendants(2 or 3)'
510 2
510 2
511 3
511 3
512 4
512 4
513 5
513 5
514 6
514 6
515 7
515 7
516 8
516 8
517 9
517 9
518 $ log 'file("b*")'
518 $ log 'file("b*")'
519 1
519 1
520 4
520 4
521 $ log 'filelog("b")'
521 $ log 'filelog("b")'
522 1
522 1
523 4
523 4
524 $ log 'filelog("../repo/b")'
524 $ log 'filelog("../repo/b")'
525 1
525 1
526 4
526 4
527 $ log 'follow()'
527 $ log 'follow()'
528 0
528 0
529 1
529 1
530 2
530 2
531 4
531 4
532 8
532 8
533 9
533 9
534 $ log 'grep("issue\d+")'
534 $ log 'grep("issue\d+")'
535 6
535 6
536 $ try 'grep("(")' # invalid regular expression
536 $ try 'grep("(")' # invalid regular expression
537 (func
537 (func
538 ('symbol', 'grep')
538 ('symbol', 'grep')
539 ('string', '('))
539 ('string', '('))
540 hg: parse error: invalid match pattern: unbalanced parenthesis
540 hg: parse error: invalid match pattern: unbalanced parenthesis
541 [255]
541 [255]
542 $ try 'grep("\bissue\d+")'
542 $ try 'grep("\bissue\d+")'
543 (func
543 (func
544 ('symbol', 'grep')
544 ('symbol', 'grep')
545 ('string', '\x08issue\\d+'))
545 ('string', '\x08issue\\d+'))
546 * set:
546 * set:
547 <filteredset
547 <filteredset
548 <fullreposet+ 0:9>,
548 <fullreposet+ 0:9>,
549 <grep '\x08issue\\d+'>>
549 <grep '\x08issue\\d+'>>
550 $ try 'grep(r"\bissue\d+")'
550 $ try 'grep(r"\bissue\d+")'
551 (func
551 (func
552 ('symbol', 'grep')
552 ('symbol', 'grep')
553 ('string', '\\bissue\\d+'))
553 ('string', '\\bissue\\d+'))
554 * set:
554 * set:
555 <filteredset
555 <filteredset
556 <fullreposet+ 0:9>,
556 <fullreposet+ 0:9>,
557 <grep '\\bissue\\d+'>>
557 <grep '\\bissue\\d+'>>
558 6
558 6
559 $ try 'grep(r"\")'
559 $ try 'grep(r"\")'
560 hg: parse error at 7: unterminated string
560 hg: parse error at 7: unterminated string
561 [255]
561 [255]
562 $ log 'head()'
562 $ log 'head()'
563 0
563 0
564 1
564 1
565 2
565 2
566 3
566 3
567 4
567 4
568 5
568 5
569 6
569 6
570 7
570 7
571 9
571 9
572 $ log 'heads(6::)'
572 $ log 'heads(6::)'
573 7
573 7
574 $ log 'keyword(issue)'
574 $ log 'keyword(issue)'
575 6
575 6
576 $ log 'keyword("test a")'
576 $ log 'keyword("test a")'
577 $ log 'limit(head(), 1)'
577 $ log 'limit(head(), 1)'
578 0
578 0
579 $ log 'limit(author("re:bob|test"), 3, 5)'
579 $ log 'limit(author("re:bob|test"), 3, 5)'
580 5
580 5
581 6
581 6
582 7
582 7
583 $ log 'limit(author("re:bob|test"), offset=6)'
583 $ log 'limit(author("re:bob|test"), offset=6)'
584 6
584 6
585 $ log 'limit(author("re:bob|test"), offset=10)'
585 $ log 'limit(author("re:bob|test"), offset=10)'
586 $ log 'limit(all(), 1, -1)'
586 $ log 'limit(all(), 1, -1)'
587 hg: parse error: negative offset
587 hg: parse error: negative offset
588 [255]
588 [255]
589 $ log 'matching(6)'
589 $ log 'matching(6)'
590 6
590 6
591 $ log 'matching(6:7, "phase parents user date branch summary files description substate")'
591 $ log 'matching(6:7, "phase parents user date branch summary files description substate")'
592 6
592 6
593 7
593 7
594
594
595 Testing min and max
595 Testing min and max
596
596
597 max: simple
597 max: simple
598
598
599 $ log 'max(contains(a))'
599 $ log 'max(contains(a))'
600 5
600 5
601
601
602 max: simple on unordered set)
602 max: simple on unordered set)
603
603
604 $ log 'max((4+0+2+5+7) and contains(a))'
604 $ log 'max((4+0+2+5+7) and contains(a))'
605 5
605 5
606
606
607 max: no result
607 max: no result
608
608
609 $ log 'max(contains(stringthatdoesnotappearanywhere))'
609 $ log 'max(contains(stringthatdoesnotappearanywhere))'
610
610
611 max: no result on unordered set
611 max: no result on unordered set
612
612
613 $ log 'max((4+0+2+5+7) and contains(stringthatdoesnotappearanywhere))'
613 $ log 'max((4+0+2+5+7) and contains(stringthatdoesnotappearanywhere))'
614
614
615 min: simple
615 min: simple
616
616
617 $ log 'min(contains(a))'
617 $ log 'min(contains(a))'
618 0
618 0
619
619
620 min: simple on unordered set
620 min: simple on unordered set
621
621
622 $ log 'min((4+0+2+5+7) and contains(a))'
622 $ log 'min((4+0+2+5+7) and contains(a))'
623 0
623 0
624
624
625 min: empty
625 min: empty
626
626
627 $ log 'min(contains(stringthatdoesnotappearanywhere))'
627 $ log 'min(contains(stringthatdoesnotappearanywhere))'
628
628
629 min: empty on unordered set
629 min: empty on unordered set
630
630
631 $ log 'min((4+0+2+5+7) and contains(stringthatdoesnotappearanywhere))'
631 $ log 'min((4+0+2+5+7) and contains(stringthatdoesnotappearanywhere))'
632
632
633
633
634 $ log 'merge()'
634 $ log 'merge()'
635 6
635 6
636 $ log 'branchpoint()'
636 $ log 'branchpoint()'
637 1
637 1
638 4
638 4
639 $ log 'modifies(b)'
639 $ log 'modifies(b)'
640 4
640 4
641 $ log 'modifies("path:b")'
641 $ log 'modifies("path:b")'
642 4
642 4
643 $ log 'modifies("*")'
643 $ log 'modifies("*")'
644 4
644 4
645 6
645 6
646 $ log 'modifies("set:modified()")'
646 $ log 'modifies("set:modified()")'
647 4
647 4
648 $ log 'id(5)'
648 $ log 'id(5)'
649 2
649 2
650 $ log 'only(9)'
650 $ log 'only(9)'
651 8
651 8
652 9
652 9
653 $ log 'only(8)'
653 $ log 'only(8)'
654 8
654 8
655 $ log 'only(9, 5)'
655 $ log 'only(9, 5)'
656 2
656 2
657 4
657 4
658 8
658 8
659 9
659 9
660 $ log 'only(7 + 9, 5 + 2)'
660 $ log 'only(7 + 9, 5 + 2)'
661 4
661 4
662 6
662 6
663 7
663 7
664 8
664 8
665 9
665 9
666
666
667 Test empty set input
667 Test empty set input
668 $ log 'only(p2())'
668 $ log 'only(p2())'
669 $ log 'only(p1(), p2())'
669 $ log 'only(p1(), p2())'
670 0
670 0
671 1
671 1
672 2
672 2
673 4
673 4
674 8
674 8
675 9
675 9
676
676
677 Test '%' operator
677 Test '%' operator
678
678
679 $ log '9%'
679 $ log '9%'
680 8
680 8
681 9
681 9
682 $ log '9%5'
682 $ log '9%5'
683 2
683 2
684 4
684 4
685 8
685 8
686 9
686 9
687 $ log '(7 + 9)%(5 + 2)'
687 $ log '(7 + 9)%(5 + 2)'
688 4
688 4
689 6
689 6
690 7
690 7
691 8
691 8
692 9
692 9
693
693
694 Test opreand of '%' is optimized recursively (issue4670)
694 Test opreand of '%' is optimized recursively (issue4670)
695
695
696 $ try --optimize '8:9-8%'
696 $ try --optimize '8:9-8%'
697 (onlypost
697 (onlypost
698 (minus
698 (minus
699 (range
699 (range
700 ('symbol', '8')
700 ('symbol', '8')
701 ('symbol', '9'))
701 ('symbol', '9'))
702 ('symbol', '8')))
702 ('symbol', '8')))
703 * optimized:
703 * optimized:
704 (func
704 (func
705 ('symbol', 'only')
705 ('symbol', 'only')
706 (difference
706 (difference
707 (range
707 (range
708 ('symbol', '8')
708 ('symbol', '8')
709 ('symbol', '9'))
709 ('symbol', '9'))
710 ('symbol', '8')))
710 ('symbol', '8')))
711 * set:
711 * set:
712 <baseset+ [8, 9]>
712 <baseset+ [8, 9]>
713 8
713 8
714 9
714 9
715 $ try --optimize '(9)%(5)'
715 $ try --optimize '(9)%(5)'
716 (only
716 (only
717 (group
717 (group
718 ('symbol', '9'))
718 ('symbol', '9'))
719 (group
719 (group
720 ('symbol', '5')))
720 ('symbol', '5')))
721 * optimized:
721 * optimized:
722 (func
722 (func
723 ('symbol', 'only')
723 ('symbol', 'only')
724 (list
724 (list
725 ('symbol', '9')
725 ('symbol', '9')
726 ('symbol', '5')))
726 ('symbol', '5')))
727 * set:
727 * set:
728 <baseset+ [2, 4, 8, 9]>
728 <baseset+ [2, 4, 8, 9]>
729 2
729 2
730 4
730 4
731 8
731 8
732 9
732 9
733
733
734 Test the order of operations
734 Test the order of operations
735
735
736 $ log '7 + 9%5 + 2'
736 $ log '7 + 9%5 + 2'
737 7
737 7
738 2
738 2
739 4
739 4
740 8
740 8
741 9
741 9
742
742
743 Test explicit numeric revision
743 Test explicit numeric revision
744 $ log 'rev(-2)'
744 $ log 'rev(-2)'
745 $ log 'rev(-1)'
745 $ log 'rev(-1)'
746 -1
746 -1
747 $ log 'rev(0)'
747 $ log 'rev(0)'
748 0
748 0
749 $ log 'rev(9)'
749 $ log 'rev(9)'
750 9
750 9
751 $ log 'rev(10)'
751 $ log 'rev(10)'
752 $ log 'rev(tip)'
752 $ log 'rev(tip)'
753 hg: parse error: rev expects a number
753 hg: parse error: rev expects a number
754 [255]
754 [255]
755
755
756 Test hexadecimal revision
756 Test hexadecimal revision
757 $ log 'id(2)'
757 $ log 'id(2)'
758 abort: 00changelog.i@2: ambiguous identifier!
758 abort: 00changelog.i@2: ambiguous identifier!
759 [255]
759 [255]
760 $ log 'id(23268)'
760 $ log 'id(23268)'
761 4
761 4
762 $ log 'id(2785f51eece)'
762 $ log 'id(2785f51eece)'
763 0
763 0
764 $ log 'id(d5d0dcbdc4d9ff5dbb2d336f32f0bb561c1a532c)'
764 $ log 'id(d5d0dcbdc4d9ff5dbb2d336f32f0bb561c1a532c)'
765 8
765 8
766 $ log 'id(d5d0dcbdc4a)'
766 $ log 'id(d5d0dcbdc4a)'
767 $ log 'id(d5d0dcbdc4w)'
767 $ log 'id(d5d0dcbdc4w)'
768 $ log 'id(d5d0dcbdc4d9ff5dbb2d336f32f0bb561c1a532d)'
768 $ log 'id(d5d0dcbdc4d9ff5dbb2d336f32f0bb561c1a532d)'
769 $ log 'id(d5d0dcbdc4d9ff5dbb2d336f32f0bb561c1a532q)'
769 $ log 'id(d5d0dcbdc4d9ff5dbb2d336f32f0bb561c1a532q)'
770 $ log 'id(1.0)'
770 $ log 'id(1.0)'
771 $ log 'id(xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx)'
771 $ log 'id(xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx)'
772
772
773 Test null revision
773 Test null revision
774 $ log '(null)'
774 $ log '(null)'
775 -1
775 -1
776 $ log '(null:0)'
776 $ log '(null:0)'
777 -1
777 -1
778 0
778 0
779 $ log '(0:null)'
779 $ log '(0:null)'
780 0
780 0
781 -1
781 -1
782 $ log 'null::0'
782 $ log 'null::0'
783 -1
783 -1
784 0
784 0
785 $ log 'null:tip - 0:'
785 $ log 'null:tip - 0:'
786 -1
786 -1
787 $ log 'null: and null::' | head -1
787 $ log 'null: and null::' | head -1
788 -1
788 -1
789 $ log 'null: or 0:' | head -2
789 $ log 'null: or 0:' | head -2
790 -1
790 -1
791 0
791 0
792 $ log 'ancestors(null)'
792 $ log 'ancestors(null)'
793 -1
793 -1
794 $ log 'reverse(null:)' | tail -2
794 $ log 'reverse(null:)' | tail -2
795 0
795 0
796 -1
796 -1
797 BROKEN: should be '-1'
797 BROKEN: should be '-1'
798 $ log 'first(null:)'
798 $ log 'first(null:)'
799 BROKEN: should be '-1'
799 BROKEN: should be '-1'
800 $ log 'min(null:)'
800 $ log 'min(null:)'
801 $ log 'tip:null and all()' | tail -2
801 $ log 'tip:null and all()' | tail -2
802 1
802 1
803 0
803 0
804
804
805 Test working-directory revision
805 Test working-directory revision
806 $ hg debugrevspec 'wdir()'
806 $ hg debugrevspec 'wdir()'
807 2147483647
807 2147483647
808 $ hg debugrevspec 'tip or wdir()'
808 $ hg debugrevspec 'tip or wdir()'
809 9
809 9
810 2147483647
810 2147483647
811 $ hg debugrevspec '0:tip and wdir()'
811 $ hg debugrevspec '0:tip and wdir()'
812 $ log '0:wdir()' | tail -3
812 $ log '0:wdir()' | tail -3
813 8
813 8
814 9
814 9
815 2147483647
815 2147483647
816 $ log 'wdir():0' | head -3
816 $ log 'wdir():0' | head -3
817 2147483647
817 2147483647
818 9
818 9
819 8
819 8
820 $ log 'wdir():wdir()'
820 $ log 'wdir():wdir()'
821 2147483647
821 2147483647
822 $ log '(all() + wdir()) & min(. + wdir())'
822 $ log '(all() + wdir()) & min(. + wdir())'
823 9
823 9
824 $ log '(all() + wdir()) & max(. + wdir())'
824 $ log '(all() + wdir()) & max(. + wdir())'
825 2147483647
825 2147483647
826 $ log '(all() + wdir()) & first(wdir() + .)'
826 $ log '(all() + wdir()) & first(wdir() + .)'
827 2147483647
827 2147483647
828 $ log '(all() + wdir()) & last(. + wdir())'
828 $ log '(all() + wdir()) & last(. + wdir())'
829 2147483647
829 2147483647
830
830
831 $ log 'outgoing()'
831 $ log 'outgoing()'
832 8
832 8
833 9
833 9
834 $ log 'outgoing("../remote1")'
834 $ log 'outgoing("../remote1")'
835 8
835 8
836 9
836 9
837 $ log 'outgoing("../remote2")'
837 $ log 'outgoing("../remote2")'
838 3
838 3
839 5
839 5
840 6
840 6
841 7
841 7
842 9
842 9
843 $ log 'p1(merge())'
843 $ log 'p1(merge())'
844 5
844 5
845 $ log 'p2(merge())'
845 $ log 'p2(merge())'
846 4
846 4
847 $ log 'parents(merge())'
847 $ log 'parents(merge())'
848 4
848 4
849 5
849 5
850 $ log 'p1(branchpoint())'
850 $ log 'p1(branchpoint())'
851 0
851 0
852 2
852 2
853 $ log 'p2(branchpoint())'
853 $ log 'p2(branchpoint())'
854 $ log 'parents(branchpoint())'
854 $ log 'parents(branchpoint())'
855 0
855 0
856 2
856 2
857 $ log 'removes(a)'
857 $ log 'removes(a)'
858 2
858 2
859 6
859 6
860 $ log 'roots(all())'
860 $ log 'roots(all())'
861 0
861 0
862 $ log 'reverse(2 or 3 or 4 or 5)'
862 $ log 'reverse(2 or 3 or 4 or 5)'
863 5
863 5
864 4
864 4
865 3
865 3
866 2
866 2
867 $ log 'reverse(all())'
867 $ log 'reverse(all())'
868 9
868 9
869 8
869 8
870 7
870 7
871 6
871 6
872 5
872 5
873 4
873 4
874 3
874 3
875 2
875 2
876 1
876 1
877 0
877 0
878 $ log 'reverse(all()) & filelog(b)'
878 $ log 'reverse(all()) & filelog(b)'
879 4
879 4
880 1
880 1
881 $ log 'rev(5)'
881 $ log 'rev(5)'
882 5
882 5
883 $ log 'sort(limit(reverse(all()), 3))'
883 $ log 'sort(limit(reverse(all()), 3))'
884 7
884 7
885 8
885 8
886 9
886 9
887 $ log 'sort(2 or 3 or 4 or 5, date)'
887 $ log 'sort(2 or 3 or 4 or 5, date)'
888 2
888 2
889 3
889 3
890 5
890 5
891 4
891 4
892 $ log 'tagged()'
892 $ log 'tagged()'
893 6
893 6
894 $ log 'tag()'
894 $ log 'tag()'
895 6
895 6
896 $ log 'tag(1.0)'
896 $ log 'tag(1.0)'
897 6
897 6
898 $ log 'tag(tip)'
898 $ log 'tag(tip)'
899 9
899 9
900
900
901 Test order of revisions in compound expression
901 Test order of revisions in compound expression
902 ----------------------------------------------
902 ----------------------------------------------
903
903
904 'A & B' should follow the order of 'A':
904 'A & B' should follow the order of 'A':
905
905
906 $ log '2:0 & 0::2'
906 $ log '2:0 & 0::2'
907 2
907 2
908 1
908 1
909 0
909 0
910
910
911 test sort revset
911 test sort revset
912 --------------------------------------------
912 --------------------------------------------
913
913
914 test when adding two unordered revsets
914 test when adding two unordered revsets
915
915
916 $ log 'sort(keyword(issue) or modifies(b))'
916 $ log 'sort(keyword(issue) or modifies(b))'
917 4
917 4
918 6
918 6
919
919
920 test when sorting a reversed collection in the same way it is
920 test when sorting a reversed collection in the same way it is
921
921
922 $ log 'sort(reverse(all()), -rev)'
922 $ log 'sort(reverse(all()), -rev)'
923 9
923 9
924 8
924 8
925 7
925 7
926 6
926 6
927 5
927 5
928 4
928 4
929 3
929 3
930 2
930 2
931 1
931 1
932 0
932 0
933
933
934 test when sorting a reversed collection
934 test when sorting a reversed collection
935
935
936 $ log 'sort(reverse(all()), rev)'
936 $ log 'sort(reverse(all()), rev)'
937 0
937 0
938 1
938 1
939 2
939 2
940 3
940 3
941 4
941 4
942 5
942 5
943 6
943 6
944 7
944 7
945 8
945 8
946 9
946 9
947
947
948
948
949 test sorting two sorted collections in different orders
949 test sorting two sorted collections in different orders
950
950
951 $ log 'sort(outgoing() or reverse(removes(a)), rev)'
951 $ log 'sort(outgoing() or reverse(removes(a)), rev)'
952 2
952 2
953 6
953 6
954 8
954 8
955 9
955 9
956
956
957 test sorting two sorted collections in different orders backwards
957 test sorting two sorted collections in different orders backwards
958
958
959 $ log 'sort(outgoing() or reverse(removes(a)), -rev)'
959 $ log 'sort(outgoing() or reverse(removes(a)), -rev)'
960 9
960 9
961 8
961 8
962 6
962 6
963 2
963 2
964
964
965 test invalid sort keys
965 test invalid sort keys
966
966
967 $ log 'sort(all(), -invalid)'
967 $ log 'sort(all(), -invalid)'
968 hg: parse error: unknown sort key '-invalid'
968 hg: parse error: unknown sort key '-invalid'
969 [255]
969 [255]
970
970
971 $ cd ..
971 $ cd ..
972
972
973 test sorting by multiple keys including variable-length strings
973 test sorting by multiple keys including variable-length strings
974
974
975 $ hg init sorting
975 $ hg init sorting
976 $ cd sorting
976 $ cd sorting
977 $ cat <<EOF >> .hg/hgrc
977 $ cat <<EOF >> .hg/hgrc
978 > [ui]
978 > [ui]
979 > logtemplate = '{rev} {branch|p5}{desc|p5}{author|p5}{date|hgdate}\n'
979 > logtemplate = '{rev} {branch|p5}{desc|p5}{author|p5}{date|hgdate}\n'
980 > [templatealias]
980 > [templatealias]
981 > p5(s) = pad(s, 5)
981 > p5(s) = pad(s, 5)
982 > EOF
982 > EOF
983 $ hg branch -qf b12
983 $ hg branch -qf b12
984 $ hg ci -m m111 -u u112 -d '111 10800'
984 $ hg ci -m m111 -u u112 -d '111 10800'
985 $ hg branch -qf b11
985 $ hg branch -qf b11
986 $ hg ci -m m12 -u u111 -d '112 7200'
986 $ hg ci -m m12 -u u111 -d '112 7200'
987 $ hg branch -qf b111
987 $ hg branch -qf b111
988 $ hg ci -m m11 -u u12 -d '111 3600'
988 $ hg ci -m m11 -u u12 -d '111 3600'
989 $ hg branch -qf b112
989 $ hg branch -qf b112
990 $ hg ci -m m111 -u u11 -d '120 0'
990 $ hg ci -m m111 -u u11 -d '120 0'
991 $ hg branch -qf b111
991 $ hg branch -qf b111
992 $ hg ci -m m112 -u u111 -d '110 14400'
992 $ hg ci -m m112 -u u111 -d '110 14400'
993 created new head
993 created new head
994
994
995 compare revisions (has fast path):
995 compare revisions (has fast path):
996
996
997 $ hg log -r 'sort(all(), rev)'
997 $ hg log -r 'sort(all(), rev)'
998 0 b12 m111 u112 111 10800
998 0 b12 m111 u112 111 10800
999 1 b11 m12 u111 112 7200
999 1 b11 m12 u111 112 7200
1000 2 b111 m11 u12 111 3600
1000 2 b111 m11 u12 111 3600
1001 3 b112 m111 u11 120 0
1001 3 b112 m111 u11 120 0
1002 4 b111 m112 u111 110 14400
1002 4 b111 m112 u111 110 14400
1003
1003
1004 $ hg log -r 'sort(all(), -rev)'
1004 $ hg log -r 'sort(all(), -rev)'
1005 4 b111 m112 u111 110 14400
1005 4 b111 m112 u111 110 14400
1006 3 b112 m111 u11 120 0
1006 3 b112 m111 u11 120 0
1007 2 b111 m11 u12 111 3600
1007 2 b111 m11 u12 111 3600
1008 1 b11 m12 u111 112 7200
1008 1 b11 m12 u111 112 7200
1009 0 b12 m111 u112 111 10800
1009 0 b12 m111 u112 111 10800
1010
1010
1011 compare variable-length strings (issue5218):
1011 compare variable-length strings (issue5218):
1012
1012
1013 $ hg log -r 'sort(all(), branch)'
1013 $ hg log -r 'sort(all(), branch)'
1014 1 b11 m12 u111 112 7200
1014 1 b11 m12 u111 112 7200
1015 2 b111 m11 u12 111 3600
1015 2 b111 m11 u12 111 3600
1016 4 b111 m112 u111 110 14400
1016 4 b111 m112 u111 110 14400
1017 3 b112 m111 u11 120 0
1017 3 b112 m111 u11 120 0
1018 0 b12 m111 u112 111 10800
1018 0 b12 m111 u112 111 10800
1019
1019
1020 $ hg log -r 'sort(all(), -branch)'
1020 $ hg log -r 'sort(all(), -branch)'
1021 0 b12 m111 u112 111 10800
1021 0 b12 m111 u112 111 10800
1022 3 b112 m111 u11 120 0
1022 3 b112 m111 u11 120 0
1023 2 b111 m11 u12 111 3600
1023 2 b111 m11 u12 111 3600
1024 4 b111 m112 u111 110 14400
1024 4 b111 m112 u111 110 14400
1025 1 b11 m12 u111 112 7200
1025 1 b11 m12 u111 112 7200
1026
1026
1027 $ hg log -r 'sort(all(), desc)'
1027 $ hg log -r 'sort(all(), desc)'
1028 2 b111 m11 u12 111 3600
1028 2 b111 m11 u12 111 3600
1029 0 b12 m111 u112 111 10800
1029 0 b12 m111 u112 111 10800
1030 3 b112 m111 u11 120 0
1030 3 b112 m111 u11 120 0
1031 4 b111 m112 u111 110 14400
1031 4 b111 m112 u111 110 14400
1032 1 b11 m12 u111 112 7200
1032 1 b11 m12 u111 112 7200
1033
1033
1034 $ hg log -r 'sort(all(), -desc)'
1034 $ hg log -r 'sort(all(), -desc)'
1035 1 b11 m12 u111 112 7200
1035 1 b11 m12 u111 112 7200
1036 4 b111 m112 u111 110 14400
1036 4 b111 m112 u111 110 14400
1037 0 b12 m111 u112 111 10800
1037 0 b12 m111 u112 111 10800
1038 3 b112 m111 u11 120 0
1038 3 b112 m111 u11 120 0
1039 2 b111 m11 u12 111 3600
1039 2 b111 m11 u12 111 3600
1040
1040
1041 $ hg log -r 'sort(all(), user)'
1041 $ hg log -r 'sort(all(), user)'
1042 3 b112 m111 u11 120 0
1042 3 b112 m111 u11 120 0
1043 1 b11 m12 u111 112 7200
1043 1 b11 m12 u111 112 7200
1044 4 b111 m112 u111 110 14400
1044 4 b111 m112 u111 110 14400
1045 0 b12 m111 u112 111 10800
1045 0 b12 m111 u112 111 10800
1046 2 b111 m11 u12 111 3600
1046 2 b111 m11 u12 111 3600
1047
1047
1048 $ hg log -r 'sort(all(), -user)'
1048 $ hg log -r 'sort(all(), -user)'
1049 2 b111 m11 u12 111 3600
1049 2 b111 m11 u12 111 3600
1050 0 b12 m111 u112 111 10800
1050 0 b12 m111 u112 111 10800
1051 1 b11 m12 u111 112 7200
1051 1 b11 m12 u111 112 7200
1052 4 b111 m112 u111 110 14400
1052 4 b111 m112 u111 110 14400
1053 3 b112 m111 u11 120 0
1053 3 b112 m111 u11 120 0
1054
1054
1055 compare dates (tz offset should have no effect):
1055 compare dates (tz offset should have no effect):
1056
1056
1057 $ hg log -r 'sort(all(), date)'
1057 $ hg log -r 'sort(all(), date)'
1058 4 b111 m112 u111 110 14400
1058 4 b111 m112 u111 110 14400
1059 0 b12 m111 u112 111 10800
1059 0 b12 m111 u112 111 10800
1060 2 b111 m11 u12 111 3600
1060 2 b111 m11 u12 111 3600
1061 1 b11 m12 u111 112 7200
1061 1 b11 m12 u111 112 7200
1062 3 b112 m111 u11 120 0
1062 3 b112 m111 u11 120 0
1063
1063
1064 $ hg log -r 'sort(all(), -date)'
1064 $ hg log -r 'sort(all(), -date)'
1065 3 b112 m111 u11 120 0
1065 3 b112 m111 u11 120 0
1066 1 b11 m12 u111 112 7200
1066 1 b11 m12 u111 112 7200
1067 0 b12 m111 u112 111 10800
1067 0 b12 m111 u112 111 10800
1068 2 b111 m11 u12 111 3600
1068 2 b111 m11 u12 111 3600
1069 4 b111 m112 u111 110 14400
1069 4 b111 m112 u111 110 14400
1070
1070
1071 be aware that 'sort(x, -k)' is not exactly the same as 'reverse(sort(x, k))'
1071 be aware that 'sort(x, -k)' is not exactly the same as 'reverse(sort(x, k))'
1072 because '-k' reverses the comparison, not the list itself:
1072 because '-k' reverses the comparison, not the list itself:
1073
1073
1074 $ hg log -r 'sort(0 + 2, date)'
1074 $ hg log -r 'sort(0 + 2, date)'
1075 0 b12 m111 u112 111 10800
1075 0 b12 m111 u112 111 10800
1076 2 b111 m11 u12 111 3600
1076 2 b111 m11 u12 111 3600
1077
1077
1078 $ hg log -r 'sort(0 + 2, -date)'
1078 $ hg log -r 'sort(0 + 2, -date)'
1079 0 b12 m111 u112 111 10800
1079 0 b12 m111 u112 111 10800
1080 2 b111 m11 u12 111 3600
1080 2 b111 m11 u12 111 3600
1081
1081
1082 $ hg log -r 'reverse(sort(0 + 2, date))'
1082 $ hg log -r 'reverse(sort(0 + 2, date))'
1083 2 b111 m11 u12 111 3600
1083 2 b111 m11 u12 111 3600
1084 0 b12 m111 u112 111 10800
1084 0 b12 m111 u112 111 10800
1085
1085
1086 sort by multiple keys:
1086 sort by multiple keys:
1087
1087
1088 $ hg log -r 'sort(all(), "branch -rev")'
1088 $ hg log -r 'sort(all(), "branch -rev")'
1089 1 b11 m12 u111 112 7200
1089 1 b11 m12 u111 112 7200
1090 4 b111 m112 u111 110 14400
1090 4 b111 m112 u111 110 14400
1091 2 b111 m11 u12 111 3600
1091 2 b111 m11 u12 111 3600
1092 3 b112 m111 u11 120 0
1092 3 b112 m111 u11 120 0
1093 0 b12 m111 u112 111 10800
1093 0 b12 m111 u112 111 10800
1094
1094
1095 $ hg log -r 'sort(all(), "-desc -date")'
1095 $ hg log -r 'sort(all(), "-desc -date")'
1096 1 b11 m12 u111 112 7200
1096 1 b11 m12 u111 112 7200
1097 4 b111 m112 u111 110 14400
1097 4 b111 m112 u111 110 14400
1098 3 b112 m111 u11 120 0
1098 3 b112 m111 u11 120 0
1099 0 b12 m111 u112 111 10800
1099 0 b12 m111 u112 111 10800
1100 2 b111 m11 u12 111 3600
1100 2 b111 m11 u12 111 3600
1101
1101
1102 $ hg log -r 'sort(all(), "user -branch date rev")'
1102 $ hg log -r 'sort(all(), "user -branch date rev")'
1103 3 b112 m111 u11 120 0
1103 3 b112 m111 u11 120 0
1104 4 b111 m112 u111 110 14400
1104 4 b111 m112 u111 110 14400
1105 1 b11 m12 u111 112 7200
1105 1 b11 m12 u111 112 7200
1106 0 b12 m111 u112 111 10800
1106 0 b12 m111 u112 111 10800
1107 2 b111 m11 u12 111 3600
1107 2 b111 m11 u12 111 3600
1108
1108
1109 toposort prioritises graph branches
1110
1111 $ hg up 2
1112 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
1113 $ touch a
1114 $ hg addremove
1115 adding a
1116 $ hg ci -m 't1' -u 'tu' -d '130 0'
1117 created new head
1118 $ echo 'a' >> a
1119 $ hg ci -m 't2' -u 'tu' -d '130 0'
1120 $ hg book book1
1121 $ hg up 4
1122 0 files updated, 0 files merged, 1 files removed, 0 files unresolved
1123 (leaving bookmark book1)
1124 $ touch a
1125 $ hg addremove
1126 adding a
1127 $ hg ci -m 't3' -u 'tu' -d '130 0'
1128
1129 $ hg log -r 'sort(all(), topo)'
1130 7 b111 t3 tu 130 0
1131 4 b111 m112 u111 110 14400
1132 3 b112 m111 u11 120 0
1133 6 b111 t2 tu 130 0
1134 5 b111 t1 tu 130 0
1135 2 b111 m11 u12 111 3600
1136 1 b11 m12 u111 112 7200
1137 0 b12 m111 u112 111 10800
1138
1139 $ hg log -r 'sort(all(), -topo)'
1140 0 b12 m111 u112 111 10800
1141 1 b11 m12 u111 112 7200
1142 2 b111 m11 u12 111 3600
1143 5 b111 t1 tu 130 0
1144 6 b111 t2 tu 130 0
1145 3 b112 m111 u11 120 0
1146 4 b111 m112 u111 110 14400
1147 7 b111 t3 tu 130 0
1148
1149 $ hg log -r 'sort(all(), topo, topo.firstbranch=book1)'
1150 6 b111 t2 tu 130 0
1151 5 b111 t1 tu 130 0
1152 7 b111 t3 tu 130 0
1153 4 b111 m112 u111 110 14400
1154 3 b112 m111 u11 120 0
1155 2 b111 m11 u12 111 3600
1156 1 b11 m12 u111 112 7200
1157 0 b12 m111 u112 111 10800
1158
1159 topographical sorting can't be combined with other sort keys, and you can't
1160 use the topo.firstbranch option when topo sort is not active:
1161
1162 $ hg log -r 'sort(all(), "topo user")'
1163 hg: parse error: topo sort order cannot be combined with other sort keys
1164 [255]
1165
1166 $ hg log -r 'sort(all(), user, topo.firstbranch=book1)'
1167 hg: parse error: topo.firstbranch can only be used when using the topo sort key
1168 [255]
1169
1109 $ cd ..
1170 $ cd ..
1110 $ cd repo
1171 $ cd repo
1111
1172
1112 test subtracting something from an addset
1173 test subtracting something from an addset
1113
1174
1114 $ log '(outgoing() or removes(a)) - removes(a)'
1175 $ log '(outgoing() or removes(a)) - removes(a)'
1115 8
1176 8
1116 9
1177 9
1117
1178
1118 test intersecting something with an addset
1179 test intersecting something with an addset
1119
1180
1120 $ log 'parents(outgoing() or removes(a))'
1181 $ log 'parents(outgoing() or removes(a))'
1121 1
1182 1
1122 4
1183 4
1123 5
1184 5
1124 8
1185 8
1125
1186
1126 test that `or` operation combines elements in the right order:
1187 test that `or` operation combines elements in the right order:
1127
1188
1128 $ log '3:4 or 2:5'
1189 $ log '3:4 or 2:5'
1129 3
1190 3
1130 4
1191 4
1131 2
1192 2
1132 5
1193 5
1133 $ log '3:4 or 5:2'
1194 $ log '3:4 or 5:2'
1134 3
1195 3
1135 4
1196 4
1136 5
1197 5
1137 2
1198 2
1138 $ log 'sort(3:4 or 2:5)'
1199 $ log 'sort(3:4 or 2:5)'
1139 2
1200 2
1140 3
1201 3
1141 4
1202 4
1142 5
1203 5
1143 $ log 'sort(3:4 or 5:2)'
1204 $ log 'sort(3:4 or 5:2)'
1144 2
1205 2
1145 3
1206 3
1146 4
1207 4
1147 5
1208 5
1148
1209
1149 test that more than one `-r`s are combined in the right order and deduplicated:
1210 test that more than one `-r`s are combined in the right order and deduplicated:
1150
1211
1151 $ hg log -T '{rev}\n' -r 3 -r 3 -r 4 -r 5:2 -r 'ancestors(4)'
1212 $ hg log -T '{rev}\n' -r 3 -r 3 -r 4 -r 5:2 -r 'ancestors(4)'
1152 3
1213 3
1153 4
1214 4
1154 5
1215 5
1155 2
1216 2
1156 0
1217 0
1157 1
1218 1
1158
1219
1159 test that `or` operation skips duplicated revisions from right-hand side
1220 test that `or` operation skips duplicated revisions from right-hand side
1160
1221
1161 $ try 'reverse(1::5) or ancestors(4)'
1222 $ try 'reverse(1::5) or ancestors(4)'
1162 (or
1223 (or
1163 (func
1224 (func
1164 ('symbol', 'reverse')
1225 ('symbol', 'reverse')
1165 (dagrange
1226 (dagrange
1166 ('symbol', '1')
1227 ('symbol', '1')
1167 ('symbol', '5')))
1228 ('symbol', '5')))
1168 (func
1229 (func
1169 ('symbol', 'ancestors')
1230 ('symbol', 'ancestors')
1170 ('symbol', '4')))
1231 ('symbol', '4')))
1171 * set:
1232 * set:
1172 <addset
1233 <addset
1173 <baseset- [1, 3, 5]>,
1234 <baseset- [1, 3, 5]>,
1174 <generatorset+>>
1235 <generatorset+>>
1175 5
1236 5
1176 3
1237 3
1177 1
1238 1
1178 0
1239 0
1179 2
1240 2
1180 4
1241 4
1181 $ try 'sort(ancestors(4) or reverse(1::5))'
1242 $ try 'sort(ancestors(4) or reverse(1::5))'
1182 (func
1243 (func
1183 ('symbol', 'sort')
1244 ('symbol', 'sort')
1184 (or
1245 (or
1185 (func
1246 (func
1186 ('symbol', 'ancestors')
1247 ('symbol', 'ancestors')
1187 ('symbol', '4'))
1248 ('symbol', '4'))
1188 (func
1249 (func
1189 ('symbol', 'reverse')
1250 ('symbol', 'reverse')
1190 (dagrange
1251 (dagrange
1191 ('symbol', '1')
1252 ('symbol', '1')
1192 ('symbol', '5')))))
1253 ('symbol', '5')))))
1193 * set:
1254 * set:
1194 <addset+
1255 <addset+
1195 <generatorset+>,
1256 <generatorset+>,
1196 <baseset- [1, 3, 5]>>
1257 <baseset- [1, 3, 5]>>
1197 0
1258 0
1198 1
1259 1
1199 2
1260 2
1200 3
1261 3
1201 4
1262 4
1202 5
1263 5
1203
1264
1204 test optimization of trivial `or` operation
1265 test optimization of trivial `or` operation
1205
1266
1206 $ try --optimize '0|(1)|"2"|-2|tip|null'
1267 $ try --optimize '0|(1)|"2"|-2|tip|null'
1207 (or
1268 (or
1208 ('symbol', '0')
1269 ('symbol', '0')
1209 (group
1270 (group
1210 ('symbol', '1'))
1271 ('symbol', '1'))
1211 ('string', '2')
1272 ('string', '2')
1212 (negate
1273 (negate
1213 ('symbol', '2'))
1274 ('symbol', '2'))
1214 ('symbol', 'tip')
1275 ('symbol', 'tip')
1215 ('symbol', 'null'))
1276 ('symbol', 'null'))
1216 * optimized:
1277 * optimized:
1217 (func
1278 (func
1218 ('symbol', '_list')
1279 ('symbol', '_list')
1219 ('string', '0\x001\x002\x00-2\x00tip\x00null'))
1280 ('string', '0\x001\x002\x00-2\x00tip\x00null'))
1220 * set:
1281 * set:
1221 <baseset [0, 1, 2, 8, 9, -1]>
1282 <baseset [0, 1, 2, 8, 9, -1]>
1222 0
1283 0
1223 1
1284 1
1224 2
1285 2
1225 8
1286 8
1226 9
1287 9
1227 -1
1288 -1
1228
1289
1229 $ try --optimize '0|1|2:3'
1290 $ try --optimize '0|1|2:3'
1230 (or
1291 (or
1231 ('symbol', '0')
1292 ('symbol', '0')
1232 ('symbol', '1')
1293 ('symbol', '1')
1233 (range
1294 (range
1234 ('symbol', '2')
1295 ('symbol', '2')
1235 ('symbol', '3')))
1296 ('symbol', '3')))
1236 * optimized:
1297 * optimized:
1237 (or
1298 (or
1238 (func
1299 (func
1239 ('symbol', '_list')
1300 ('symbol', '_list')
1240 ('string', '0\x001'))
1301 ('string', '0\x001'))
1241 (range
1302 (range
1242 ('symbol', '2')
1303 ('symbol', '2')
1243 ('symbol', '3')))
1304 ('symbol', '3')))
1244 * set:
1305 * set:
1245 <addset
1306 <addset
1246 <baseset [0, 1]>,
1307 <baseset [0, 1]>,
1247 <spanset+ 2:3>>
1308 <spanset+ 2:3>>
1248 0
1309 0
1249 1
1310 1
1250 2
1311 2
1251 3
1312 3
1252
1313
1253 $ try --optimize '0:1|2|3:4|5|6'
1314 $ try --optimize '0:1|2|3:4|5|6'
1254 (or
1315 (or
1255 (range
1316 (range
1256 ('symbol', '0')
1317 ('symbol', '0')
1257 ('symbol', '1'))
1318 ('symbol', '1'))
1258 ('symbol', '2')
1319 ('symbol', '2')
1259 (range
1320 (range
1260 ('symbol', '3')
1321 ('symbol', '3')
1261 ('symbol', '4'))
1322 ('symbol', '4'))
1262 ('symbol', '5')
1323 ('symbol', '5')
1263 ('symbol', '6'))
1324 ('symbol', '6'))
1264 * optimized:
1325 * optimized:
1265 (or
1326 (or
1266 (range
1327 (range
1267 ('symbol', '0')
1328 ('symbol', '0')
1268 ('symbol', '1'))
1329 ('symbol', '1'))
1269 ('symbol', '2')
1330 ('symbol', '2')
1270 (range
1331 (range
1271 ('symbol', '3')
1332 ('symbol', '3')
1272 ('symbol', '4'))
1333 ('symbol', '4'))
1273 (func
1334 (func
1274 ('symbol', '_list')
1335 ('symbol', '_list')
1275 ('string', '5\x006')))
1336 ('string', '5\x006')))
1276 * set:
1337 * set:
1277 <addset
1338 <addset
1278 <addset
1339 <addset
1279 <spanset+ 0:1>,
1340 <spanset+ 0:1>,
1280 <baseset [2]>>,
1341 <baseset [2]>>,
1281 <addset
1342 <addset
1282 <spanset+ 3:4>,
1343 <spanset+ 3:4>,
1283 <baseset [5, 6]>>>
1344 <baseset [5, 6]>>>
1284 0
1345 0
1285 1
1346 1
1286 2
1347 2
1287 3
1348 3
1288 4
1349 4
1289 5
1350 5
1290 6
1351 6
1291
1352
1292 test that `_list` should be narrowed by provided `subset`
1353 test that `_list` should be narrowed by provided `subset`
1293
1354
1294 $ log '0:2 and (null|1|2|3)'
1355 $ log '0:2 and (null|1|2|3)'
1295 1
1356 1
1296 2
1357 2
1297
1358
1298 test that `_list` should remove duplicates
1359 test that `_list` should remove duplicates
1299
1360
1300 $ log '0|1|2|1|2|-1|tip'
1361 $ log '0|1|2|1|2|-1|tip'
1301 0
1362 0
1302 1
1363 1
1303 2
1364 2
1304 9
1365 9
1305
1366
1306 test unknown revision in `_list`
1367 test unknown revision in `_list`
1307
1368
1308 $ log '0|unknown'
1369 $ log '0|unknown'
1309 abort: unknown revision 'unknown'!
1370 abort: unknown revision 'unknown'!
1310 [255]
1371 [255]
1311
1372
1312 test integer range in `_list`
1373 test integer range in `_list`
1313
1374
1314 $ log '-1|-10'
1375 $ log '-1|-10'
1315 9
1376 9
1316 0
1377 0
1317
1378
1318 $ log '-10|-11'
1379 $ log '-10|-11'
1319 abort: unknown revision '-11'!
1380 abort: unknown revision '-11'!
1320 [255]
1381 [255]
1321
1382
1322 $ log '9|10'
1383 $ log '9|10'
1323 abort: unknown revision '10'!
1384 abort: unknown revision '10'!
1324 [255]
1385 [255]
1325
1386
1326 test '0000' != '0' in `_list`
1387 test '0000' != '0' in `_list`
1327
1388
1328 $ log '0|0000'
1389 $ log '0|0000'
1329 0
1390 0
1330 -1
1391 -1
1331
1392
1332 test ',' in `_list`
1393 test ',' in `_list`
1333 $ log '0,1'
1394 $ log '0,1'
1334 hg: parse error: can't use a list in this context
1395 hg: parse error: can't use a list in this context
1335 (see hg help "revsets.x or y")
1396 (see hg help "revsets.x or y")
1336 [255]
1397 [255]
1337 $ try '0,1,2'
1398 $ try '0,1,2'
1338 (list
1399 (list
1339 ('symbol', '0')
1400 ('symbol', '0')
1340 ('symbol', '1')
1401 ('symbol', '1')
1341 ('symbol', '2'))
1402 ('symbol', '2'))
1342 hg: parse error: can't use a list in this context
1403 hg: parse error: can't use a list in this context
1343 (see hg help "revsets.x or y")
1404 (see hg help "revsets.x or y")
1344 [255]
1405 [255]
1345
1406
1346 test that chained `or` operations make balanced addsets
1407 test that chained `or` operations make balanced addsets
1347
1408
1348 $ try '0:1|1:2|2:3|3:4|4:5'
1409 $ try '0:1|1:2|2:3|3:4|4:5'
1349 (or
1410 (or
1350 (range
1411 (range
1351 ('symbol', '0')
1412 ('symbol', '0')
1352 ('symbol', '1'))
1413 ('symbol', '1'))
1353 (range
1414 (range
1354 ('symbol', '1')
1415 ('symbol', '1')
1355 ('symbol', '2'))
1416 ('symbol', '2'))
1356 (range
1417 (range
1357 ('symbol', '2')
1418 ('symbol', '2')
1358 ('symbol', '3'))
1419 ('symbol', '3'))
1359 (range
1420 (range
1360 ('symbol', '3')
1421 ('symbol', '3')
1361 ('symbol', '4'))
1422 ('symbol', '4'))
1362 (range
1423 (range
1363 ('symbol', '4')
1424 ('symbol', '4')
1364 ('symbol', '5')))
1425 ('symbol', '5')))
1365 * set:
1426 * set:
1366 <addset
1427 <addset
1367 <addset
1428 <addset
1368 <spanset+ 0:1>,
1429 <spanset+ 0:1>,
1369 <spanset+ 1:2>>,
1430 <spanset+ 1:2>>,
1370 <addset
1431 <addset
1371 <spanset+ 2:3>,
1432 <spanset+ 2:3>,
1372 <addset
1433 <addset
1373 <spanset+ 3:4>,
1434 <spanset+ 3:4>,
1374 <spanset+ 4:5>>>>
1435 <spanset+ 4:5>>>>
1375 0
1436 0
1376 1
1437 1
1377 2
1438 2
1378 3
1439 3
1379 4
1440 4
1380 5
1441 5
1381
1442
1382 no crash by empty group "()" while optimizing `or` operations
1443 no crash by empty group "()" while optimizing `or` operations
1383
1444
1384 $ try --optimize '0|()'
1445 $ try --optimize '0|()'
1385 (or
1446 (or
1386 ('symbol', '0')
1447 ('symbol', '0')
1387 (group
1448 (group
1388 None))
1449 None))
1389 * optimized:
1450 * optimized:
1390 (or
1451 (or
1391 ('symbol', '0')
1452 ('symbol', '0')
1392 None)
1453 None)
1393 hg: parse error: missing argument
1454 hg: parse error: missing argument
1394 [255]
1455 [255]
1395
1456
1396 test that chained `or` operations never eat up stack (issue4624)
1457 test that chained `or` operations never eat up stack (issue4624)
1397 (uses `0:1` instead of `0` to avoid future optimization of trivial revisions)
1458 (uses `0:1` instead of `0` to avoid future optimization of trivial revisions)
1398
1459
1399 $ hg log -T '{rev}\n' -r `python -c "print '+'.join(['0:1'] * 500)"`
1460 $ hg log -T '{rev}\n' -r `python -c "print '+'.join(['0:1'] * 500)"`
1400 0
1461 0
1401 1
1462 1
1402
1463
1403 test that repeated `-r` options never eat up stack (issue4565)
1464 test that repeated `-r` options never eat up stack (issue4565)
1404 (uses `-r 0::1` to avoid possible optimization at old-style parser)
1465 (uses `-r 0::1` to avoid possible optimization at old-style parser)
1405
1466
1406 $ hg log -T '{rev}\n' `python -c "for i in xrange(500): print '-r 0::1 ',"`
1467 $ hg log -T '{rev}\n' `python -c "for i in xrange(500): print '-r 0::1 ',"`
1407 0
1468 0
1408 1
1469 1
1409
1470
1410 check that conversion to only works
1471 check that conversion to only works
1411 $ try --optimize '::3 - ::1'
1472 $ try --optimize '::3 - ::1'
1412 (minus
1473 (minus
1413 (dagrangepre
1474 (dagrangepre
1414 ('symbol', '3'))
1475 ('symbol', '3'))
1415 (dagrangepre
1476 (dagrangepre
1416 ('symbol', '1')))
1477 ('symbol', '1')))
1417 * optimized:
1478 * optimized:
1418 (func
1479 (func
1419 ('symbol', 'only')
1480 ('symbol', 'only')
1420 (list
1481 (list
1421 ('symbol', '3')
1482 ('symbol', '3')
1422 ('symbol', '1')))
1483 ('symbol', '1')))
1423 * set:
1484 * set:
1424 <baseset+ [3]>
1485 <baseset+ [3]>
1425 3
1486 3
1426 $ try --optimize 'ancestors(1) - ancestors(3)'
1487 $ try --optimize 'ancestors(1) - ancestors(3)'
1427 (minus
1488 (minus
1428 (func
1489 (func
1429 ('symbol', 'ancestors')
1490 ('symbol', 'ancestors')
1430 ('symbol', '1'))
1491 ('symbol', '1'))
1431 (func
1492 (func
1432 ('symbol', 'ancestors')
1493 ('symbol', 'ancestors')
1433 ('symbol', '3')))
1494 ('symbol', '3')))
1434 * optimized:
1495 * optimized:
1435 (func
1496 (func
1436 ('symbol', 'only')
1497 ('symbol', 'only')
1437 (list
1498 (list
1438 ('symbol', '1')
1499 ('symbol', '1')
1439 ('symbol', '3')))
1500 ('symbol', '3')))
1440 * set:
1501 * set:
1441 <baseset+ []>
1502 <baseset+ []>
1442 $ try --optimize 'not ::2 and ::6'
1503 $ try --optimize 'not ::2 and ::6'
1443 (and
1504 (and
1444 (not
1505 (not
1445 (dagrangepre
1506 (dagrangepre
1446 ('symbol', '2')))
1507 ('symbol', '2')))
1447 (dagrangepre
1508 (dagrangepre
1448 ('symbol', '6')))
1509 ('symbol', '6')))
1449 * optimized:
1510 * optimized:
1450 (func
1511 (func
1451 ('symbol', 'only')
1512 ('symbol', 'only')
1452 (list
1513 (list
1453 ('symbol', '6')
1514 ('symbol', '6')
1454 ('symbol', '2')))
1515 ('symbol', '2')))
1455 * set:
1516 * set:
1456 <baseset+ [3, 4, 5, 6]>
1517 <baseset+ [3, 4, 5, 6]>
1457 3
1518 3
1458 4
1519 4
1459 5
1520 5
1460 6
1521 6
1461 $ try --optimize 'ancestors(6) and not ancestors(4)'
1522 $ try --optimize 'ancestors(6) and not ancestors(4)'
1462 (and
1523 (and
1463 (func
1524 (func
1464 ('symbol', 'ancestors')
1525 ('symbol', 'ancestors')
1465 ('symbol', '6'))
1526 ('symbol', '6'))
1466 (not
1527 (not
1467 (func
1528 (func
1468 ('symbol', 'ancestors')
1529 ('symbol', 'ancestors')
1469 ('symbol', '4'))))
1530 ('symbol', '4'))))
1470 * optimized:
1531 * optimized:
1471 (func
1532 (func
1472 ('symbol', 'only')
1533 ('symbol', 'only')
1473 (list
1534 (list
1474 ('symbol', '6')
1535 ('symbol', '6')
1475 ('symbol', '4')))
1536 ('symbol', '4')))
1476 * set:
1537 * set:
1477 <baseset+ [3, 5, 6]>
1538 <baseset+ [3, 5, 6]>
1478 3
1539 3
1479 5
1540 5
1480 6
1541 6
1481
1542
1482 no crash by empty group "()" while optimizing to "only()"
1543 no crash by empty group "()" while optimizing to "only()"
1483
1544
1484 $ try --optimize '::1 and ()'
1545 $ try --optimize '::1 and ()'
1485 (and
1546 (and
1486 (dagrangepre
1547 (dagrangepre
1487 ('symbol', '1'))
1548 ('symbol', '1'))
1488 (group
1549 (group
1489 None))
1550 None))
1490 * optimized:
1551 * optimized:
1491 (and
1552 (and
1492 None
1553 None
1493 (func
1554 (func
1494 ('symbol', 'ancestors')
1555 ('symbol', 'ancestors')
1495 ('symbol', '1')))
1556 ('symbol', '1')))
1496 hg: parse error: missing argument
1557 hg: parse error: missing argument
1497 [255]
1558 [255]
1498
1559
1499 we can use patterns when searching for tags
1560 we can use patterns when searching for tags
1500
1561
1501 $ log 'tag("1..*")'
1562 $ log 'tag("1..*")'
1502 abort: tag '1..*' does not exist!
1563 abort: tag '1..*' does not exist!
1503 [255]
1564 [255]
1504 $ log 'tag("re:1..*")'
1565 $ log 'tag("re:1..*")'
1505 6
1566 6
1506 $ log 'tag("re:[0-9].[0-9]")'
1567 $ log 'tag("re:[0-9].[0-9]")'
1507 6
1568 6
1508 $ log 'tag("literal:1.0")'
1569 $ log 'tag("literal:1.0")'
1509 6
1570 6
1510 $ log 'tag("re:0..*")'
1571 $ log 'tag("re:0..*")'
1511
1572
1512 $ log 'tag(unknown)'
1573 $ log 'tag(unknown)'
1513 abort: tag 'unknown' does not exist!
1574 abort: tag 'unknown' does not exist!
1514 [255]
1575 [255]
1515 $ log 'tag("re:unknown")'
1576 $ log 'tag("re:unknown")'
1516 $ log 'present(tag("unknown"))'
1577 $ log 'present(tag("unknown"))'
1517 $ log 'present(tag("re:unknown"))'
1578 $ log 'present(tag("re:unknown"))'
1518 $ log 'branch(unknown)'
1579 $ log 'branch(unknown)'
1519 abort: unknown revision 'unknown'!
1580 abort: unknown revision 'unknown'!
1520 [255]
1581 [255]
1521 $ log 'branch("literal:unknown")'
1582 $ log 'branch("literal:unknown")'
1522 abort: branch 'unknown' does not exist!
1583 abort: branch 'unknown' does not exist!
1523 [255]
1584 [255]
1524 $ log 'branch("re:unknown")'
1585 $ log 'branch("re:unknown")'
1525 $ log 'present(branch("unknown"))'
1586 $ log 'present(branch("unknown"))'
1526 $ log 'present(branch("re:unknown"))'
1587 $ log 'present(branch("re:unknown"))'
1527 $ log 'user(bob)'
1588 $ log 'user(bob)'
1528 2
1589 2
1529
1590
1530 $ log '4::8'
1591 $ log '4::8'
1531 4
1592 4
1532 8
1593 8
1533 $ log '4:8'
1594 $ log '4:8'
1534 4
1595 4
1535 5
1596 5
1536 6
1597 6
1537 7
1598 7
1538 8
1599 8
1539
1600
1540 $ log 'sort(!merge() & (modifies(b) | user(bob) | keyword(bug) | keyword(issue) & 1::9), "-date")'
1601 $ log 'sort(!merge() & (modifies(b) | user(bob) | keyword(bug) | keyword(issue) & 1::9), "-date")'
1541 4
1602 4
1542 2
1603 2
1543 5
1604 5
1544
1605
1545 $ log 'not 0 and 0:2'
1606 $ log 'not 0 and 0:2'
1546 1
1607 1
1547 2
1608 2
1548 $ log 'not 1 and 0:2'
1609 $ log 'not 1 and 0:2'
1549 0
1610 0
1550 2
1611 2
1551 $ log 'not 2 and 0:2'
1612 $ log 'not 2 and 0:2'
1552 0
1613 0
1553 1
1614 1
1554 $ log '(1 and 2)::'
1615 $ log '(1 and 2)::'
1555 $ log '(1 and 2):'
1616 $ log '(1 and 2):'
1556 $ log '(1 and 2):3'
1617 $ log '(1 and 2):3'
1557 $ log 'sort(head(), -rev)'
1618 $ log 'sort(head(), -rev)'
1558 9
1619 9
1559 7
1620 7
1560 6
1621 6
1561 5
1622 5
1562 4
1623 4
1563 3
1624 3
1564 2
1625 2
1565 1
1626 1
1566 0
1627 0
1567 $ log '4::8 - 8'
1628 $ log '4::8 - 8'
1568 4
1629 4
1569
1630
1570 matching() should preserve the order of the input set:
1631 matching() should preserve the order of the input set:
1571
1632
1572 $ log '(2 or 3 or 1) and matching(1 or 2 or 3)'
1633 $ log '(2 or 3 or 1) and matching(1 or 2 or 3)'
1573 2
1634 2
1574 3
1635 3
1575 1
1636 1
1576
1637
1577 $ log 'named("unknown")'
1638 $ log 'named("unknown")'
1578 abort: namespace 'unknown' does not exist!
1639 abort: namespace 'unknown' does not exist!
1579 [255]
1640 [255]
1580 $ log 'named("re:unknown")'
1641 $ log 'named("re:unknown")'
1581 abort: no namespace exists that match 'unknown'!
1642 abort: no namespace exists that match 'unknown'!
1582 [255]
1643 [255]
1583 $ log 'present(named("unknown"))'
1644 $ log 'present(named("unknown"))'
1584 $ log 'present(named("re:unknown"))'
1645 $ log 'present(named("re:unknown"))'
1585
1646
1586 $ log 'tag()'
1647 $ log 'tag()'
1587 6
1648 6
1588 $ log 'named("tags")'
1649 $ log 'named("tags")'
1589 6
1650 6
1590
1651
1591 issue2437
1652 issue2437
1592
1653
1593 $ log '3 and p1(5)'
1654 $ log '3 and p1(5)'
1594 3
1655 3
1595 $ log '4 and p2(6)'
1656 $ log '4 and p2(6)'
1596 4
1657 4
1597 $ log '1 and parents(:2)'
1658 $ log '1 and parents(:2)'
1598 1
1659 1
1599 $ log '2 and children(1:)'
1660 $ log '2 and children(1:)'
1600 2
1661 2
1601 $ log 'roots(all()) or roots(all())'
1662 $ log 'roots(all()) or roots(all())'
1602 0
1663 0
1603 $ hg debugrevspec 'roots(all()) or roots(all())'
1664 $ hg debugrevspec 'roots(all()) or roots(all())'
1604 0
1665 0
1605 $ log 'heads(branch(Γ©)) or heads(branch(Γ©))'
1666 $ log 'heads(branch(Γ©)) or heads(branch(Γ©))'
1606 9
1667 9
1607 $ log 'ancestors(8) and (heads(branch("-a-b-c-")) or heads(branch(Γ©)))'
1668 $ log 'ancestors(8) and (heads(branch("-a-b-c-")) or heads(branch(Γ©)))'
1608 4
1669 4
1609
1670
1610 issue2654: report a parse error if the revset was not completely parsed
1671 issue2654: report a parse error if the revset was not completely parsed
1611
1672
1612 $ log '1 OR 2'
1673 $ log '1 OR 2'
1613 hg: parse error at 2: invalid token
1674 hg: parse error at 2: invalid token
1614 [255]
1675 [255]
1615
1676
1616 or operator should preserve ordering:
1677 or operator should preserve ordering:
1617 $ log 'reverse(2::4) or tip'
1678 $ log 'reverse(2::4) or tip'
1618 4
1679 4
1619 2
1680 2
1620 9
1681 9
1621
1682
1622 parentrevspec
1683 parentrevspec
1623
1684
1624 $ log 'merge()^0'
1685 $ log 'merge()^0'
1625 6
1686 6
1626 $ log 'merge()^'
1687 $ log 'merge()^'
1627 5
1688 5
1628 $ log 'merge()^1'
1689 $ log 'merge()^1'
1629 5
1690 5
1630 $ log 'merge()^2'
1691 $ log 'merge()^2'
1631 4
1692 4
1632 $ log 'merge()^^'
1693 $ log 'merge()^^'
1633 3
1694 3
1634 $ log 'merge()^1^'
1695 $ log 'merge()^1^'
1635 3
1696 3
1636 $ log 'merge()^^^'
1697 $ log 'merge()^^^'
1637 1
1698 1
1638
1699
1639 $ log 'merge()~0'
1700 $ log 'merge()~0'
1640 6
1701 6
1641 $ log 'merge()~1'
1702 $ log 'merge()~1'
1642 5
1703 5
1643 $ log 'merge()~2'
1704 $ log 'merge()~2'
1644 3
1705 3
1645 $ log 'merge()~2^1'
1706 $ log 'merge()~2^1'
1646 1
1707 1
1647 $ log 'merge()~3'
1708 $ log 'merge()~3'
1648 1
1709 1
1649
1710
1650 $ log '(-3:tip)^'
1711 $ log '(-3:tip)^'
1651 4
1712 4
1652 6
1713 6
1653 8
1714 8
1654
1715
1655 $ log 'tip^foo'
1716 $ log 'tip^foo'
1656 hg: parse error: ^ expects a number 0, 1, or 2
1717 hg: parse error: ^ expects a number 0, 1, or 2
1657 [255]
1718 [255]
1658
1719
1659 Bogus function gets suggestions
1720 Bogus function gets suggestions
1660 $ log 'add()'
1721 $ log 'add()'
1661 hg: parse error: unknown identifier: add
1722 hg: parse error: unknown identifier: add
1662 (did you mean adds?)
1723 (did you mean adds?)
1663 [255]
1724 [255]
1664 $ log 'added()'
1725 $ log 'added()'
1665 hg: parse error: unknown identifier: added
1726 hg: parse error: unknown identifier: added
1666 (did you mean adds?)
1727 (did you mean adds?)
1667 [255]
1728 [255]
1668 $ log 'remo()'
1729 $ log 'remo()'
1669 hg: parse error: unknown identifier: remo
1730 hg: parse error: unknown identifier: remo
1670 (did you mean one of remote, removes?)
1731 (did you mean one of remote, removes?)
1671 [255]
1732 [255]
1672 $ log 'babar()'
1733 $ log 'babar()'
1673 hg: parse error: unknown identifier: babar
1734 hg: parse error: unknown identifier: babar
1674 [255]
1735 [255]
1675
1736
1676 Bogus function with a similar internal name doesn't suggest the internal name
1737 Bogus function with a similar internal name doesn't suggest the internal name
1677 $ log 'matches()'
1738 $ log 'matches()'
1678 hg: parse error: unknown identifier: matches
1739 hg: parse error: unknown identifier: matches
1679 (did you mean matching?)
1740 (did you mean matching?)
1680 [255]
1741 [255]
1681
1742
1682 Undocumented functions aren't suggested as similar either
1743 Undocumented functions aren't suggested as similar either
1683 $ log 'wdir2()'
1744 $ log 'wdir2()'
1684 hg: parse error: unknown identifier: wdir2
1745 hg: parse error: unknown identifier: wdir2
1685 [255]
1746 [255]
1686
1747
1687 multiple revspecs
1748 multiple revspecs
1688
1749
1689 $ hg log -r 'tip~1:tip' -r 'tip~2:tip~1' --template '{rev}\n'
1750 $ hg log -r 'tip~1:tip' -r 'tip~2:tip~1' --template '{rev}\n'
1690 8
1751 8
1691 9
1752 9
1692 4
1753 4
1693 5
1754 5
1694 6
1755 6
1695 7
1756 7
1696
1757
1697 test usage in revpair (with "+")
1758 test usage in revpair (with "+")
1698
1759
1699 (real pair)
1760 (real pair)
1700
1761
1701 $ hg diff -r 'tip^^' -r 'tip'
1762 $ hg diff -r 'tip^^' -r 'tip'
1702 diff -r 2326846efdab -r 24286f4ae135 .hgtags
1763 diff -r 2326846efdab -r 24286f4ae135 .hgtags
1703 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1764 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1704 +++ b/.hgtags Thu Jan 01 00:00:00 1970 +0000
1765 +++ b/.hgtags Thu Jan 01 00:00:00 1970 +0000
1705 @@ -0,0 +1,1 @@
1766 @@ -0,0 +1,1 @@
1706 +e0cc66ef77e8b6f711815af4e001a6594fde3ba5 1.0
1767 +e0cc66ef77e8b6f711815af4e001a6594fde3ba5 1.0
1707 $ hg diff -r 'tip^^::tip'
1768 $ hg diff -r 'tip^^::tip'
1708 diff -r 2326846efdab -r 24286f4ae135 .hgtags
1769 diff -r 2326846efdab -r 24286f4ae135 .hgtags
1709 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1770 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1710 +++ b/.hgtags Thu Jan 01 00:00:00 1970 +0000
1771 +++ b/.hgtags Thu Jan 01 00:00:00 1970 +0000
1711 @@ -0,0 +1,1 @@
1772 @@ -0,0 +1,1 @@
1712 +e0cc66ef77e8b6f711815af4e001a6594fde3ba5 1.0
1773 +e0cc66ef77e8b6f711815af4e001a6594fde3ba5 1.0
1713
1774
1714 (single rev)
1775 (single rev)
1715
1776
1716 $ hg diff -r 'tip^' -r 'tip^'
1777 $ hg diff -r 'tip^' -r 'tip^'
1717 $ hg diff -r 'tip^:tip^'
1778 $ hg diff -r 'tip^:tip^'
1718
1779
1719 (single rev that does not looks like a range)
1780 (single rev that does not looks like a range)
1720
1781
1721 $ hg diff -r 'tip^::tip^ or tip^'
1782 $ hg diff -r 'tip^::tip^ or tip^'
1722 diff -r d5d0dcbdc4d9 .hgtags
1783 diff -r d5d0dcbdc4d9 .hgtags
1723 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1784 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1724 +++ b/.hgtags * (glob)
1785 +++ b/.hgtags * (glob)
1725 @@ -0,0 +1,1 @@
1786 @@ -0,0 +1,1 @@
1726 +e0cc66ef77e8b6f711815af4e001a6594fde3ba5 1.0
1787 +e0cc66ef77e8b6f711815af4e001a6594fde3ba5 1.0
1727 $ hg diff -r 'tip^ or tip^'
1788 $ hg diff -r 'tip^ or tip^'
1728 diff -r d5d0dcbdc4d9 .hgtags
1789 diff -r d5d0dcbdc4d9 .hgtags
1729 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1790 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1730 +++ b/.hgtags * (glob)
1791 +++ b/.hgtags * (glob)
1731 @@ -0,0 +1,1 @@
1792 @@ -0,0 +1,1 @@
1732 +e0cc66ef77e8b6f711815af4e001a6594fde3ba5 1.0
1793 +e0cc66ef77e8b6f711815af4e001a6594fde3ba5 1.0
1733
1794
1734 (no rev)
1795 (no rev)
1735
1796
1736 $ hg diff -r 'author("babar") or author("celeste")'
1797 $ hg diff -r 'author("babar") or author("celeste")'
1737 abort: empty revision range
1798 abort: empty revision range
1738 [255]
1799 [255]
1739
1800
1740 aliases:
1801 aliases:
1741
1802
1742 $ echo '[revsetalias]' >> .hg/hgrc
1803 $ echo '[revsetalias]' >> .hg/hgrc
1743 $ echo 'm = merge()' >> .hg/hgrc
1804 $ echo 'm = merge()' >> .hg/hgrc
1744 (revset aliases can override builtin revsets)
1805 (revset aliases can override builtin revsets)
1745 $ echo 'p2($1) = p1($1)' >> .hg/hgrc
1806 $ echo 'p2($1) = p1($1)' >> .hg/hgrc
1746 $ echo 'sincem = descendants(m)' >> .hg/hgrc
1807 $ echo 'sincem = descendants(m)' >> .hg/hgrc
1747 $ echo 'd($1) = reverse(sort($1, date))' >> .hg/hgrc
1808 $ echo 'd($1) = reverse(sort($1, date))' >> .hg/hgrc
1748 $ echo 'rs(ARG1, ARG2) = reverse(sort(ARG1, ARG2))' >> .hg/hgrc
1809 $ echo 'rs(ARG1, ARG2) = reverse(sort(ARG1, ARG2))' >> .hg/hgrc
1749 $ echo 'rs4(ARG1, ARGA, ARGB, ARG2) = reverse(sort(ARG1, ARG2))' >> .hg/hgrc
1810 $ echo 'rs4(ARG1, ARGA, ARGB, ARG2) = reverse(sort(ARG1, ARG2))' >> .hg/hgrc
1750
1811
1751 $ try m
1812 $ try m
1752 ('symbol', 'm')
1813 ('symbol', 'm')
1753 * expanded:
1814 * expanded:
1754 (func
1815 (func
1755 ('symbol', 'merge')
1816 ('symbol', 'merge')
1756 None)
1817 None)
1757 * set:
1818 * set:
1758 <filteredset
1819 <filteredset
1759 <fullreposet+ 0:9>,
1820 <fullreposet+ 0:9>,
1760 <merge>>
1821 <merge>>
1761 6
1822 6
1762
1823
1763 $ HGPLAIN=1
1824 $ HGPLAIN=1
1764 $ export HGPLAIN
1825 $ export HGPLAIN
1765 $ try m
1826 $ try m
1766 ('symbol', 'm')
1827 ('symbol', 'm')
1767 abort: unknown revision 'm'!
1828 abort: unknown revision 'm'!
1768 [255]
1829 [255]
1769
1830
1770 $ HGPLAINEXCEPT=revsetalias
1831 $ HGPLAINEXCEPT=revsetalias
1771 $ export HGPLAINEXCEPT
1832 $ export HGPLAINEXCEPT
1772 $ try m
1833 $ try m
1773 ('symbol', 'm')
1834 ('symbol', 'm')
1774 * expanded:
1835 * expanded:
1775 (func
1836 (func
1776 ('symbol', 'merge')
1837 ('symbol', 'merge')
1777 None)
1838 None)
1778 * set:
1839 * set:
1779 <filteredset
1840 <filteredset
1780 <fullreposet+ 0:9>,
1841 <fullreposet+ 0:9>,
1781 <merge>>
1842 <merge>>
1782 6
1843 6
1783
1844
1784 $ unset HGPLAIN
1845 $ unset HGPLAIN
1785 $ unset HGPLAINEXCEPT
1846 $ unset HGPLAINEXCEPT
1786
1847
1787 $ try 'p2(.)'
1848 $ try 'p2(.)'
1788 (func
1849 (func
1789 ('symbol', 'p2')
1850 ('symbol', 'p2')
1790 ('symbol', '.'))
1851 ('symbol', '.'))
1791 * expanded:
1852 * expanded:
1792 (func
1853 (func
1793 ('symbol', 'p1')
1854 ('symbol', 'p1')
1794 ('symbol', '.'))
1855 ('symbol', '.'))
1795 * set:
1856 * set:
1796 <baseset+ [8]>
1857 <baseset+ [8]>
1797 8
1858 8
1798
1859
1799 $ HGPLAIN=1
1860 $ HGPLAIN=1
1800 $ export HGPLAIN
1861 $ export HGPLAIN
1801 $ try 'p2(.)'
1862 $ try 'p2(.)'
1802 (func
1863 (func
1803 ('symbol', 'p2')
1864 ('symbol', 'p2')
1804 ('symbol', '.'))
1865 ('symbol', '.'))
1805 * set:
1866 * set:
1806 <baseset+ []>
1867 <baseset+ []>
1807
1868
1808 $ HGPLAINEXCEPT=revsetalias
1869 $ HGPLAINEXCEPT=revsetalias
1809 $ export HGPLAINEXCEPT
1870 $ export HGPLAINEXCEPT
1810 $ try 'p2(.)'
1871 $ try 'p2(.)'
1811 (func
1872 (func
1812 ('symbol', 'p2')
1873 ('symbol', 'p2')
1813 ('symbol', '.'))
1874 ('symbol', '.'))
1814 * expanded:
1875 * expanded:
1815 (func
1876 (func
1816 ('symbol', 'p1')
1877 ('symbol', 'p1')
1817 ('symbol', '.'))
1878 ('symbol', '.'))
1818 * set:
1879 * set:
1819 <baseset+ [8]>
1880 <baseset+ [8]>
1820 8
1881 8
1821
1882
1822 $ unset HGPLAIN
1883 $ unset HGPLAIN
1823 $ unset HGPLAINEXCEPT
1884 $ unset HGPLAINEXCEPT
1824
1885
1825 test alias recursion
1886 test alias recursion
1826
1887
1827 $ try sincem
1888 $ try sincem
1828 ('symbol', 'sincem')
1889 ('symbol', 'sincem')
1829 * expanded:
1890 * expanded:
1830 (func
1891 (func
1831 ('symbol', 'descendants')
1892 ('symbol', 'descendants')
1832 (func
1893 (func
1833 ('symbol', 'merge')
1894 ('symbol', 'merge')
1834 None))
1895 None))
1835 * set:
1896 * set:
1836 <addset+
1897 <addset+
1837 <filteredset
1898 <filteredset
1838 <fullreposet+ 0:9>,
1899 <fullreposet+ 0:9>,
1839 <merge>>,
1900 <merge>>,
1840 <generatorset+>>
1901 <generatorset+>>
1841 6
1902 6
1842 7
1903 7
1843
1904
1844 test infinite recursion
1905 test infinite recursion
1845
1906
1846 $ echo 'recurse1 = recurse2' >> .hg/hgrc
1907 $ echo 'recurse1 = recurse2' >> .hg/hgrc
1847 $ echo 'recurse2 = recurse1' >> .hg/hgrc
1908 $ echo 'recurse2 = recurse1' >> .hg/hgrc
1848 $ try recurse1
1909 $ try recurse1
1849 ('symbol', 'recurse1')
1910 ('symbol', 'recurse1')
1850 hg: parse error: infinite expansion of revset alias "recurse1" detected
1911 hg: parse error: infinite expansion of revset alias "recurse1" detected
1851 [255]
1912 [255]
1852
1913
1853 $ echo 'level1($1, $2) = $1 or $2' >> .hg/hgrc
1914 $ echo 'level1($1, $2) = $1 or $2' >> .hg/hgrc
1854 $ echo 'level2($1, $2) = level1($2, $1)' >> .hg/hgrc
1915 $ echo 'level2($1, $2) = level1($2, $1)' >> .hg/hgrc
1855 $ try "level2(level1(1, 2), 3)"
1916 $ try "level2(level1(1, 2), 3)"
1856 (func
1917 (func
1857 ('symbol', 'level2')
1918 ('symbol', 'level2')
1858 (list
1919 (list
1859 (func
1920 (func
1860 ('symbol', 'level1')
1921 ('symbol', 'level1')
1861 (list
1922 (list
1862 ('symbol', '1')
1923 ('symbol', '1')
1863 ('symbol', '2')))
1924 ('symbol', '2')))
1864 ('symbol', '3')))
1925 ('symbol', '3')))
1865 * expanded:
1926 * expanded:
1866 (or
1927 (or
1867 ('symbol', '3')
1928 ('symbol', '3')
1868 (or
1929 (or
1869 ('symbol', '1')
1930 ('symbol', '1')
1870 ('symbol', '2')))
1931 ('symbol', '2')))
1871 * set:
1932 * set:
1872 <addset
1933 <addset
1873 <baseset [3]>,
1934 <baseset [3]>,
1874 <baseset [1, 2]>>
1935 <baseset [1, 2]>>
1875 3
1936 3
1876 1
1937 1
1877 2
1938 2
1878
1939
1879 test nesting and variable passing
1940 test nesting and variable passing
1880
1941
1881 $ echo 'nested($1) = nested2($1)' >> .hg/hgrc
1942 $ echo 'nested($1) = nested2($1)' >> .hg/hgrc
1882 $ echo 'nested2($1) = nested3($1)' >> .hg/hgrc
1943 $ echo 'nested2($1) = nested3($1)' >> .hg/hgrc
1883 $ echo 'nested3($1) = max($1)' >> .hg/hgrc
1944 $ echo 'nested3($1) = max($1)' >> .hg/hgrc
1884 $ try 'nested(2:5)'
1945 $ try 'nested(2:5)'
1885 (func
1946 (func
1886 ('symbol', 'nested')
1947 ('symbol', 'nested')
1887 (range
1948 (range
1888 ('symbol', '2')
1949 ('symbol', '2')
1889 ('symbol', '5')))
1950 ('symbol', '5')))
1890 * expanded:
1951 * expanded:
1891 (func
1952 (func
1892 ('symbol', 'max')
1953 ('symbol', 'max')
1893 (range
1954 (range
1894 ('symbol', '2')
1955 ('symbol', '2')
1895 ('symbol', '5')))
1956 ('symbol', '5')))
1896 * set:
1957 * set:
1897 <baseset
1958 <baseset
1898 <max
1959 <max
1899 <fullreposet+ 0:9>,
1960 <fullreposet+ 0:9>,
1900 <spanset+ 2:5>>>
1961 <spanset+ 2:5>>>
1901 5
1962 5
1902
1963
1903 test chained `or` operations are flattened at parsing phase
1964 test chained `or` operations are flattened at parsing phase
1904
1965
1905 $ echo 'chainedorops($1, $2, $3) = $1|$2|$3' >> .hg/hgrc
1966 $ echo 'chainedorops($1, $2, $3) = $1|$2|$3' >> .hg/hgrc
1906 $ try 'chainedorops(0:1, 1:2, 2:3)'
1967 $ try 'chainedorops(0:1, 1:2, 2:3)'
1907 (func
1968 (func
1908 ('symbol', 'chainedorops')
1969 ('symbol', 'chainedorops')
1909 (list
1970 (list
1910 (range
1971 (range
1911 ('symbol', '0')
1972 ('symbol', '0')
1912 ('symbol', '1'))
1973 ('symbol', '1'))
1913 (range
1974 (range
1914 ('symbol', '1')
1975 ('symbol', '1')
1915 ('symbol', '2'))
1976 ('symbol', '2'))
1916 (range
1977 (range
1917 ('symbol', '2')
1978 ('symbol', '2')
1918 ('symbol', '3'))))
1979 ('symbol', '3'))))
1919 * expanded:
1980 * expanded:
1920 (or
1981 (or
1921 (range
1982 (range
1922 ('symbol', '0')
1983 ('symbol', '0')
1923 ('symbol', '1'))
1984 ('symbol', '1'))
1924 (range
1985 (range
1925 ('symbol', '1')
1986 ('symbol', '1')
1926 ('symbol', '2'))
1987 ('symbol', '2'))
1927 (range
1988 (range
1928 ('symbol', '2')
1989 ('symbol', '2')
1929 ('symbol', '3')))
1990 ('symbol', '3')))
1930 * set:
1991 * set:
1931 <addset
1992 <addset
1932 <spanset+ 0:1>,
1993 <spanset+ 0:1>,
1933 <addset
1994 <addset
1934 <spanset+ 1:2>,
1995 <spanset+ 1:2>,
1935 <spanset+ 2:3>>>
1996 <spanset+ 2:3>>>
1936 0
1997 0
1937 1
1998 1
1938 2
1999 2
1939 3
2000 3
1940
2001
1941 test variable isolation, variable placeholders are rewritten as string
2002 test variable isolation, variable placeholders are rewritten as string
1942 then parsed and matched again as string. Check they do not leak too
2003 then parsed and matched again as string. Check they do not leak too
1943 far away.
2004 far away.
1944
2005
1945 $ echo 'injectparamasstring = max("$1")' >> .hg/hgrc
2006 $ echo 'injectparamasstring = max("$1")' >> .hg/hgrc
1946 $ echo 'callinjection($1) = descendants(injectparamasstring)' >> .hg/hgrc
2007 $ echo 'callinjection($1) = descendants(injectparamasstring)' >> .hg/hgrc
1947 $ try 'callinjection(2:5)'
2008 $ try 'callinjection(2:5)'
1948 (func
2009 (func
1949 ('symbol', 'callinjection')
2010 ('symbol', 'callinjection')
1950 (range
2011 (range
1951 ('symbol', '2')
2012 ('symbol', '2')
1952 ('symbol', '5')))
2013 ('symbol', '5')))
1953 * expanded:
2014 * expanded:
1954 (func
2015 (func
1955 ('symbol', 'descendants')
2016 ('symbol', 'descendants')
1956 (func
2017 (func
1957 ('symbol', 'max')
2018 ('symbol', 'max')
1958 ('string', '$1')))
2019 ('string', '$1')))
1959 abort: unknown revision '$1'!
2020 abort: unknown revision '$1'!
1960 [255]
2021 [255]
1961
2022
1962 test scope of alias expansion: 'universe' is expanded prior to 'shadowall(0)',
2023 test scope of alias expansion: 'universe' is expanded prior to 'shadowall(0)',
1963 but 'all()' should never be substituded to '0()'.
2024 but 'all()' should never be substituded to '0()'.
1964
2025
1965 $ echo 'universe = all()' >> .hg/hgrc
2026 $ echo 'universe = all()' >> .hg/hgrc
1966 $ echo 'shadowall(all) = all and universe' >> .hg/hgrc
2027 $ echo 'shadowall(all) = all and universe' >> .hg/hgrc
1967 $ try 'shadowall(0)'
2028 $ try 'shadowall(0)'
1968 (func
2029 (func
1969 ('symbol', 'shadowall')
2030 ('symbol', 'shadowall')
1970 ('symbol', '0'))
2031 ('symbol', '0'))
1971 * expanded:
2032 * expanded:
1972 (and
2033 (and
1973 ('symbol', '0')
2034 ('symbol', '0')
1974 (func
2035 (func
1975 ('symbol', 'all')
2036 ('symbol', 'all')
1976 None))
2037 None))
1977 * set:
2038 * set:
1978 <filteredset
2039 <filteredset
1979 <baseset [0]>,
2040 <baseset [0]>,
1980 <spanset+ 0:9>>
2041 <spanset+ 0:9>>
1981 0
2042 0
1982
2043
1983 test unknown reference:
2044 test unknown reference:
1984
2045
1985 $ try "unknownref(0)" --config 'revsetalias.unknownref($1)=$1:$2'
2046 $ try "unknownref(0)" --config 'revsetalias.unknownref($1)=$1:$2'
1986 (func
2047 (func
1987 ('symbol', 'unknownref')
2048 ('symbol', 'unknownref')
1988 ('symbol', '0'))
2049 ('symbol', '0'))
1989 abort: bad definition of revset alias "unknownref": invalid symbol '$2'
2050 abort: bad definition of revset alias "unknownref": invalid symbol '$2'
1990 [255]
2051 [255]
1991
2052
1992 $ hg debugrevspec --debug --config revsetalias.anotherbadone='branch(' "tip"
2053 $ hg debugrevspec --debug --config revsetalias.anotherbadone='branch(' "tip"
1993 ('symbol', 'tip')
2054 ('symbol', 'tip')
1994 warning: bad definition of revset alias "anotherbadone": at 7: not a prefix: end
2055 warning: bad definition of revset alias "anotherbadone": at 7: not a prefix: end
1995 * set:
2056 * set:
1996 <baseset [9]>
2057 <baseset [9]>
1997 9
2058 9
1998
2059
1999 $ try 'tip'
2060 $ try 'tip'
2000 ('symbol', 'tip')
2061 ('symbol', 'tip')
2001 * set:
2062 * set:
2002 <baseset [9]>
2063 <baseset [9]>
2003 9
2064 9
2004
2065
2005 $ hg debugrevspec --debug --config revsetalias.'bad name'='tip' "tip"
2066 $ hg debugrevspec --debug --config revsetalias.'bad name'='tip' "tip"
2006 ('symbol', 'tip')
2067 ('symbol', 'tip')
2007 warning: bad declaration of revset alias "bad name": at 4: invalid token
2068 warning: bad declaration of revset alias "bad name": at 4: invalid token
2008 * set:
2069 * set:
2009 <baseset [9]>
2070 <baseset [9]>
2010 9
2071 9
2011 $ echo 'strictreplacing($1, $10) = $10 or desc("$1")' >> .hg/hgrc
2072 $ echo 'strictreplacing($1, $10) = $10 or desc("$1")' >> .hg/hgrc
2012 $ try 'strictreplacing("foo", tip)'
2073 $ try 'strictreplacing("foo", tip)'
2013 (func
2074 (func
2014 ('symbol', 'strictreplacing')
2075 ('symbol', 'strictreplacing')
2015 (list
2076 (list
2016 ('string', 'foo')
2077 ('string', 'foo')
2017 ('symbol', 'tip')))
2078 ('symbol', 'tip')))
2018 * expanded:
2079 * expanded:
2019 (or
2080 (or
2020 ('symbol', 'tip')
2081 ('symbol', 'tip')
2021 (func
2082 (func
2022 ('symbol', 'desc')
2083 ('symbol', 'desc')
2023 ('string', '$1')))
2084 ('string', '$1')))
2024 * set:
2085 * set:
2025 <addset
2086 <addset
2026 <baseset [9]>,
2087 <baseset [9]>,
2027 <filteredset
2088 <filteredset
2028 <fullreposet+ 0:9>,
2089 <fullreposet+ 0:9>,
2029 <desc '$1'>>>
2090 <desc '$1'>>>
2030 9
2091 9
2031
2092
2032 $ try 'd(2:5)'
2093 $ try 'd(2:5)'
2033 (func
2094 (func
2034 ('symbol', 'd')
2095 ('symbol', 'd')
2035 (range
2096 (range
2036 ('symbol', '2')
2097 ('symbol', '2')
2037 ('symbol', '5')))
2098 ('symbol', '5')))
2038 * expanded:
2099 * expanded:
2039 (func
2100 (func
2040 ('symbol', 'reverse')
2101 ('symbol', 'reverse')
2041 (func
2102 (func
2042 ('symbol', 'sort')
2103 ('symbol', 'sort')
2043 (list
2104 (list
2044 (range
2105 (range
2045 ('symbol', '2')
2106 ('symbol', '2')
2046 ('symbol', '5'))
2107 ('symbol', '5'))
2047 ('symbol', 'date'))))
2108 ('symbol', 'date'))))
2048 * set:
2109 * set:
2049 <baseset [4, 5, 3, 2]>
2110 <baseset [4, 5, 3, 2]>
2050 4
2111 4
2051 5
2112 5
2052 3
2113 3
2053 2
2114 2
2054 $ try 'rs(2 or 3, date)'
2115 $ try 'rs(2 or 3, date)'
2055 (func
2116 (func
2056 ('symbol', 'rs')
2117 ('symbol', 'rs')
2057 (list
2118 (list
2058 (or
2119 (or
2059 ('symbol', '2')
2120 ('symbol', '2')
2060 ('symbol', '3'))
2121 ('symbol', '3'))
2061 ('symbol', 'date')))
2122 ('symbol', 'date')))
2062 * expanded:
2123 * expanded:
2063 (func
2124 (func
2064 ('symbol', 'reverse')
2125 ('symbol', 'reverse')
2065 (func
2126 (func
2066 ('symbol', 'sort')
2127 ('symbol', 'sort')
2067 (list
2128 (list
2068 (or
2129 (or
2069 ('symbol', '2')
2130 ('symbol', '2')
2070 ('symbol', '3'))
2131 ('symbol', '3'))
2071 ('symbol', 'date'))))
2132 ('symbol', 'date'))))
2072 * set:
2133 * set:
2073 <baseset [3, 2]>
2134 <baseset [3, 2]>
2074 3
2135 3
2075 2
2136 2
2076 $ try 'rs()'
2137 $ try 'rs()'
2077 (func
2138 (func
2078 ('symbol', 'rs')
2139 ('symbol', 'rs')
2079 None)
2140 None)
2080 hg: parse error: invalid number of arguments: 0
2141 hg: parse error: invalid number of arguments: 0
2081 [255]
2142 [255]
2082 $ try 'rs(2)'
2143 $ try 'rs(2)'
2083 (func
2144 (func
2084 ('symbol', 'rs')
2145 ('symbol', 'rs')
2085 ('symbol', '2'))
2146 ('symbol', '2'))
2086 hg: parse error: invalid number of arguments: 1
2147 hg: parse error: invalid number of arguments: 1
2087 [255]
2148 [255]
2088 $ try 'rs(2, data, 7)'
2149 $ try 'rs(2, data, 7)'
2089 (func
2150 (func
2090 ('symbol', 'rs')
2151 ('symbol', 'rs')
2091 (list
2152 (list
2092 ('symbol', '2')
2153 ('symbol', '2')
2093 ('symbol', 'data')
2154 ('symbol', 'data')
2094 ('symbol', '7')))
2155 ('symbol', '7')))
2095 hg: parse error: invalid number of arguments: 3
2156 hg: parse error: invalid number of arguments: 3
2096 [255]
2157 [255]
2097 $ try 'rs4(2 or 3, x, x, date)'
2158 $ try 'rs4(2 or 3, x, x, date)'
2098 (func
2159 (func
2099 ('symbol', 'rs4')
2160 ('symbol', 'rs4')
2100 (list
2161 (list
2101 (or
2162 (or
2102 ('symbol', '2')
2163 ('symbol', '2')
2103 ('symbol', '3'))
2164 ('symbol', '3'))
2104 ('symbol', 'x')
2165 ('symbol', 'x')
2105 ('symbol', 'x')
2166 ('symbol', 'x')
2106 ('symbol', 'date')))
2167 ('symbol', 'date')))
2107 * expanded:
2168 * expanded:
2108 (func
2169 (func
2109 ('symbol', 'reverse')
2170 ('symbol', 'reverse')
2110 (func
2171 (func
2111 ('symbol', 'sort')
2172 ('symbol', 'sort')
2112 (list
2173 (list
2113 (or
2174 (or
2114 ('symbol', '2')
2175 ('symbol', '2')
2115 ('symbol', '3'))
2176 ('symbol', '3'))
2116 ('symbol', 'date'))))
2177 ('symbol', 'date'))))
2117 * set:
2178 * set:
2118 <baseset [3, 2]>
2179 <baseset [3, 2]>
2119 3
2180 3
2120 2
2181 2
2121
2182
2122 issue4553: check that revset aliases override existing hash prefix
2183 issue4553: check that revset aliases override existing hash prefix
2123
2184
2124 $ hg log -qr e
2185 $ hg log -qr e
2125 6:e0cc66ef77e8
2186 6:e0cc66ef77e8
2126
2187
2127 $ hg log -qr e --config revsetalias.e="all()"
2188 $ hg log -qr e --config revsetalias.e="all()"
2128 0:2785f51eece5
2189 0:2785f51eece5
2129 1:d75937da8da0
2190 1:d75937da8da0
2130 2:5ed5505e9f1c
2191 2:5ed5505e9f1c
2131 3:8528aa5637f2
2192 3:8528aa5637f2
2132 4:2326846efdab
2193 4:2326846efdab
2133 5:904fa392b941
2194 5:904fa392b941
2134 6:e0cc66ef77e8
2195 6:e0cc66ef77e8
2135 7:013af1973af4
2196 7:013af1973af4
2136 8:d5d0dcbdc4d9
2197 8:d5d0dcbdc4d9
2137 9:24286f4ae135
2198 9:24286f4ae135
2138
2199
2139 $ hg log -qr e: --config revsetalias.e="0"
2200 $ hg log -qr e: --config revsetalias.e="0"
2140 0:2785f51eece5
2201 0:2785f51eece5
2141 1:d75937da8da0
2202 1:d75937da8da0
2142 2:5ed5505e9f1c
2203 2:5ed5505e9f1c
2143 3:8528aa5637f2
2204 3:8528aa5637f2
2144 4:2326846efdab
2205 4:2326846efdab
2145 5:904fa392b941
2206 5:904fa392b941
2146 6:e0cc66ef77e8
2207 6:e0cc66ef77e8
2147 7:013af1973af4
2208 7:013af1973af4
2148 8:d5d0dcbdc4d9
2209 8:d5d0dcbdc4d9
2149 9:24286f4ae135
2210 9:24286f4ae135
2150
2211
2151 $ hg log -qr :e --config revsetalias.e="9"
2212 $ hg log -qr :e --config revsetalias.e="9"
2152 0:2785f51eece5
2213 0:2785f51eece5
2153 1:d75937da8da0
2214 1:d75937da8da0
2154 2:5ed5505e9f1c
2215 2:5ed5505e9f1c
2155 3:8528aa5637f2
2216 3:8528aa5637f2
2156 4:2326846efdab
2217 4:2326846efdab
2157 5:904fa392b941
2218 5:904fa392b941
2158 6:e0cc66ef77e8
2219 6:e0cc66ef77e8
2159 7:013af1973af4
2220 7:013af1973af4
2160 8:d5d0dcbdc4d9
2221 8:d5d0dcbdc4d9
2161 9:24286f4ae135
2222 9:24286f4ae135
2162
2223
2163 $ hg log -qr e:
2224 $ hg log -qr e:
2164 6:e0cc66ef77e8
2225 6:e0cc66ef77e8
2165 7:013af1973af4
2226 7:013af1973af4
2166 8:d5d0dcbdc4d9
2227 8:d5d0dcbdc4d9
2167 9:24286f4ae135
2228 9:24286f4ae135
2168
2229
2169 $ hg log -qr :e
2230 $ hg log -qr :e
2170 0:2785f51eece5
2231 0:2785f51eece5
2171 1:d75937da8da0
2232 1:d75937da8da0
2172 2:5ed5505e9f1c
2233 2:5ed5505e9f1c
2173 3:8528aa5637f2
2234 3:8528aa5637f2
2174 4:2326846efdab
2235 4:2326846efdab
2175 5:904fa392b941
2236 5:904fa392b941
2176 6:e0cc66ef77e8
2237 6:e0cc66ef77e8
2177
2238
2178 issue2549 - correct optimizations
2239 issue2549 - correct optimizations
2179
2240
2180 $ try 'limit(1 or 2 or 3, 2) and not 2'
2241 $ try 'limit(1 or 2 or 3, 2) and not 2'
2181 (and
2242 (and
2182 (func
2243 (func
2183 ('symbol', 'limit')
2244 ('symbol', 'limit')
2184 (list
2245 (list
2185 (or
2246 (or
2186 ('symbol', '1')
2247 ('symbol', '1')
2187 ('symbol', '2')
2248 ('symbol', '2')
2188 ('symbol', '3'))
2249 ('symbol', '3'))
2189 ('symbol', '2')))
2250 ('symbol', '2')))
2190 (not
2251 (not
2191 ('symbol', '2')))
2252 ('symbol', '2')))
2192 * set:
2253 * set:
2193 <filteredset
2254 <filteredset
2194 <baseset
2255 <baseset
2195 <limit n=2, offset=0,
2256 <limit n=2, offset=0,
2196 <fullreposet+ 0:9>,
2257 <fullreposet+ 0:9>,
2197 <baseset [1, 2, 3]>>>,
2258 <baseset [1, 2, 3]>>>,
2198 <not
2259 <not
2199 <baseset [2]>>>
2260 <baseset [2]>>>
2200 1
2261 1
2201 $ try 'max(1 or 2) and not 2'
2262 $ try 'max(1 or 2) and not 2'
2202 (and
2263 (and
2203 (func
2264 (func
2204 ('symbol', 'max')
2265 ('symbol', 'max')
2205 (or
2266 (or
2206 ('symbol', '1')
2267 ('symbol', '1')
2207 ('symbol', '2')))
2268 ('symbol', '2')))
2208 (not
2269 (not
2209 ('symbol', '2')))
2270 ('symbol', '2')))
2210 * set:
2271 * set:
2211 <filteredset
2272 <filteredset
2212 <baseset
2273 <baseset
2213 <max
2274 <max
2214 <fullreposet+ 0:9>,
2275 <fullreposet+ 0:9>,
2215 <baseset [1, 2]>>>,
2276 <baseset [1, 2]>>>,
2216 <not
2277 <not
2217 <baseset [2]>>>
2278 <baseset [2]>>>
2218 $ try 'min(1 or 2) and not 1'
2279 $ try 'min(1 or 2) and not 1'
2219 (and
2280 (and
2220 (func
2281 (func
2221 ('symbol', 'min')
2282 ('symbol', 'min')
2222 (or
2283 (or
2223 ('symbol', '1')
2284 ('symbol', '1')
2224 ('symbol', '2')))
2285 ('symbol', '2')))
2225 (not
2286 (not
2226 ('symbol', '1')))
2287 ('symbol', '1')))
2227 * set:
2288 * set:
2228 <filteredset
2289 <filteredset
2229 <baseset
2290 <baseset
2230 <min
2291 <min
2231 <fullreposet+ 0:9>,
2292 <fullreposet+ 0:9>,
2232 <baseset [1, 2]>>>,
2293 <baseset [1, 2]>>>,
2233 <not
2294 <not
2234 <baseset [1]>>>
2295 <baseset [1]>>>
2235 $ try 'last(1 or 2, 1) and not 2'
2296 $ try 'last(1 or 2, 1) and not 2'
2236 (and
2297 (and
2237 (func
2298 (func
2238 ('symbol', 'last')
2299 ('symbol', 'last')
2239 (list
2300 (list
2240 (or
2301 (or
2241 ('symbol', '1')
2302 ('symbol', '1')
2242 ('symbol', '2'))
2303 ('symbol', '2'))
2243 ('symbol', '1')))
2304 ('symbol', '1')))
2244 (not
2305 (not
2245 ('symbol', '2')))
2306 ('symbol', '2')))
2246 * set:
2307 * set:
2247 <filteredset
2308 <filteredset
2248 <baseset
2309 <baseset
2249 <last n=1,
2310 <last n=1,
2250 <fullreposet+ 0:9>,
2311 <fullreposet+ 0:9>,
2251 <baseset [2, 1]>>>,
2312 <baseset [2, 1]>>>,
2252 <not
2313 <not
2253 <baseset [2]>>>
2314 <baseset [2]>>>
2254
2315
2255 issue4289 - ordering of built-ins
2316 issue4289 - ordering of built-ins
2256 $ hg log -M -q -r 3:2
2317 $ hg log -M -q -r 3:2
2257 3:8528aa5637f2
2318 3:8528aa5637f2
2258 2:5ed5505e9f1c
2319 2:5ed5505e9f1c
2259
2320
2260 test revsets started with 40-chars hash (issue3669)
2321 test revsets started with 40-chars hash (issue3669)
2261
2322
2262 $ ISSUE3669_TIP=`hg tip --template '{node}'`
2323 $ ISSUE3669_TIP=`hg tip --template '{node}'`
2263 $ hg log -r "${ISSUE3669_TIP}" --template '{rev}\n'
2324 $ hg log -r "${ISSUE3669_TIP}" --template '{rev}\n'
2264 9
2325 9
2265 $ hg log -r "${ISSUE3669_TIP}^" --template '{rev}\n'
2326 $ hg log -r "${ISSUE3669_TIP}^" --template '{rev}\n'
2266 8
2327 8
2267
2328
2268 test or-ed indirect predicates (issue3775)
2329 test or-ed indirect predicates (issue3775)
2269
2330
2270 $ log '6 or 6^1' | sort
2331 $ log '6 or 6^1' | sort
2271 5
2332 5
2272 6
2333 6
2273 $ log '6^1 or 6' | sort
2334 $ log '6^1 or 6' | sort
2274 5
2335 5
2275 6
2336 6
2276 $ log '4 or 4~1' | sort
2337 $ log '4 or 4~1' | sort
2277 2
2338 2
2278 4
2339 4
2279 $ log '4~1 or 4' | sort
2340 $ log '4~1 or 4' | sort
2280 2
2341 2
2281 4
2342 4
2282 $ log '(0 or 2):(4 or 6) or 0 or 6' | sort
2343 $ log '(0 or 2):(4 or 6) or 0 or 6' | sort
2283 0
2344 0
2284 1
2345 1
2285 2
2346 2
2286 3
2347 3
2287 4
2348 4
2288 5
2349 5
2289 6
2350 6
2290 $ log '0 or 6 or (0 or 2):(4 or 6)' | sort
2351 $ log '0 or 6 or (0 or 2):(4 or 6)' | sort
2291 0
2352 0
2292 1
2353 1
2293 2
2354 2
2294 3
2355 3
2295 4
2356 4
2296 5
2357 5
2297 6
2358 6
2298
2359
2299 tests for 'remote()' predicate:
2360 tests for 'remote()' predicate:
2300 #. (csets in remote) (id) (remote)
2361 #. (csets in remote) (id) (remote)
2301 1. less than local current branch "default"
2362 1. less than local current branch "default"
2302 2. same with local specified "default"
2363 2. same with local specified "default"
2303 3. more than local specified specified
2364 3. more than local specified specified
2304
2365
2305 $ hg clone --quiet -U . ../remote3
2366 $ hg clone --quiet -U . ../remote3
2306 $ cd ../remote3
2367 $ cd ../remote3
2307 $ hg update -q 7
2368 $ hg update -q 7
2308 $ echo r > r
2369 $ echo r > r
2309 $ hg ci -Aqm 10
2370 $ hg ci -Aqm 10
2310 $ log 'remote()'
2371 $ log 'remote()'
2311 7
2372 7
2312 $ log 'remote("a-b-c-")'
2373 $ log 'remote("a-b-c-")'
2313 2
2374 2
2314 $ cd ../repo
2375 $ cd ../repo
2315 $ log 'remote(".a.b.c.", "../remote3")'
2376 $ log 'remote(".a.b.c.", "../remote3")'
2316
2377
2317 tests for concatenation of strings/symbols by "##"
2378 tests for concatenation of strings/symbols by "##"
2318
2379
2319 $ try "278 ## '5f5' ## 1ee ## 'ce5'"
2380 $ try "278 ## '5f5' ## 1ee ## 'ce5'"
2320 (_concat
2381 (_concat
2321 (_concat
2382 (_concat
2322 (_concat
2383 (_concat
2323 ('symbol', '278')
2384 ('symbol', '278')
2324 ('string', '5f5'))
2385 ('string', '5f5'))
2325 ('symbol', '1ee'))
2386 ('symbol', '1ee'))
2326 ('string', 'ce5'))
2387 ('string', 'ce5'))
2327 * concatenated:
2388 * concatenated:
2328 ('string', '2785f51eece5')
2389 ('string', '2785f51eece5')
2329 * set:
2390 * set:
2330 <baseset [0]>
2391 <baseset [0]>
2331 0
2392 0
2332
2393
2333 $ echo 'cat4($1, $2, $3, $4) = $1 ## $2 ## $3 ## $4' >> .hg/hgrc
2394 $ echo 'cat4($1, $2, $3, $4) = $1 ## $2 ## $3 ## $4' >> .hg/hgrc
2334 $ try "cat4(278, '5f5', 1ee, 'ce5')"
2395 $ try "cat4(278, '5f5', 1ee, 'ce5')"
2335 (func
2396 (func
2336 ('symbol', 'cat4')
2397 ('symbol', 'cat4')
2337 (list
2398 (list
2338 ('symbol', '278')
2399 ('symbol', '278')
2339 ('string', '5f5')
2400 ('string', '5f5')
2340 ('symbol', '1ee')
2401 ('symbol', '1ee')
2341 ('string', 'ce5')))
2402 ('string', 'ce5')))
2342 * expanded:
2403 * expanded:
2343 (_concat
2404 (_concat
2344 (_concat
2405 (_concat
2345 (_concat
2406 (_concat
2346 ('symbol', '278')
2407 ('symbol', '278')
2347 ('string', '5f5'))
2408 ('string', '5f5'))
2348 ('symbol', '1ee'))
2409 ('symbol', '1ee'))
2349 ('string', 'ce5'))
2410 ('string', 'ce5'))
2350 * concatenated:
2411 * concatenated:
2351 ('string', '2785f51eece5')
2412 ('string', '2785f51eece5')
2352 * set:
2413 * set:
2353 <baseset [0]>
2414 <baseset [0]>
2354 0
2415 0
2355
2416
2356 (check concatenation in alias nesting)
2417 (check concatenation in alias nesting)
2357
2418
2358 $ echo 'cat2($1, $2) = $1 ## $2' >> .hg/hgrc
2419 $ echo 'cat2($1, $2) = $1 ## $2' >> .hg/hgrc
2359 $ echo 'cat2x2($1, $2, $3, $4) = cat2($1 ## $2, $3 ## $4)' >> .hg/hgrc
2420 $ echo 'cat2x2($1, $2, $3, $4) = cat2($1 ## $2, $3 ## $4)' >> .hg/hgrc
2360 $ log "cat2x2(278, '5f5', 1ee, 'ce5')"
2421 $ log "cat2x2(278, '5f5', 1ee, 'ce5')"
2361 0
2422 0
2362
2423
2363 (check operator priority)
2424 (check operator priority)
2364
2425
2365 $ echo 'cat2n2($1, $2, $3, $4) = $1 ## $2 or $3 ## $4~2' >> .hg/hgrc
2426 $ echo 'cat2n2($1, $2, $3, $4) = $1 ## $2 or $3 ## $4~2' >> .hg/hgrc
2366 $ log "cat2n2(2785f5, 1eece5, 24286f, 4ae135)"
2427 $ log "cat2n2(2785f5, 1eece5, 24286f, 4ae135)"
2367 0
2428 0
2368 4
2429 4
2369
2430
2370 $ cd ..
2431 $ cd ..
2371
2432
2372 prepare repository that has "default" branches of multiple roots
2433 prepare repository that has "default" branches of multiple roots
2373
2434
2374 $ hg init namedbranch
2435 $ hg init namedbranch
2375 $ cd namedbranch
2436 $ cd namedbranch
2376
2437
2377 $ echo default0 >> a
2438 $ echo default0 >> a
2378 $ hg ci -Aqm0
2439 $ hg ci -Aqm0
2379 $ echo default1 >> a
2440 $ echo default1 >> a
2380 $ hg ci -m1
2441 $ hg ci -m1
2381
2442
2382 $ hg branch -q stable
2443 $ hg branch -q stable
2383 $ echo stable2 >> a
2444 $ echo stable2 >> a
2384 $ hg ci -m2
2445 $ hg ci -m2
2385 $ echo stable3 >> a
2446 $ echo stable3 >> a
2386 $ hg ci -m3
2447 $ hg ci -m3
2387
2448
2388 $ hg update -q null
2449 $ hg update -q null
2389 $ echo default4 >> a
2450 $ echo default4 >> a
2390 $ hg ci -Aqm4
2451 $ hg ci -Aqm4
2391 $ echo default5 >> a
2452 $ echo default5 >> a
2392 $ hg ci -m5
2453 $ hg ci -m5
2393
2454
2394 "null" revision belongs to "default" branch (issue4683)
2455 "null" revision belongs to "default" branch (issue4683)
2395
2456
2396 $ log 'branch(null)'
2457 $ log 'branch(null)'
2397 0
2458 0
2398 1
2459 1
2399 4
2460 4
2400 5
2461 5
2401
2462
2402 "null" revision belongs to "default" branch, but it shouldn't appear in set
2463 "null" revision belongs to "default" branch, but it shouldn't appear in set
2403 unless explicitly specified (issue4682)
2464 unless explicitly specified (issue4682)
2404
2465
2405 $ log 'children(branch(default))'
2466 $ log 'children(branch(default))'
2406 1
2467 1
2407 2
2468 2
2408 5
2469 5
2409
2470
2410 $ cd ..
2471 $ cd ..
2411
2472
2412 test author/desc/keyword in problematic encoding
2473 test author/desc/keyword in problematic encoding
2413 # unicode: cp932:
2474 # unicode: cp932:
2414 # u30A2 0x83 0x41(= 'A')
2475 # u30A2 0x83 0x41(= 'A')
2415 # u30C2 0x83 0x61(= 'a')
2476 # u30C2 0x83 0x61(= 'a')
2416
2477
2417 $ hg init problematicencoding
2478 $ hg init problematicencoding
2418 $ cd problematicencoding
2479 $ cd problematicencoding
2419
2480
2420 $ python > setup.sh <<EOF
2481 $ python > setup.sh <<EOF
2421 > print u'''
2482 > print u'''
2422 > echo a > text
2483 > echo a > text
2423 > hg add text
2484 > hg add text
2424 > hg --encoding utf-8 commit -u '\u30A2' -m none
2485 > hg --encoding utf-8 commit -u '\u30A2' -m none
2425 > echo b > text
2486 > echo b > text
2426 > hg --encoding utf-8 commit -u '\u30C2' -m none
2487 > hg --encoding utf-8 commit -u '\u30C2' -m none
2427 > echo c > text
2488 > echo c > text
2428 > hg --encoding utf-8 commit -u none -m '\u30A2'
2489 > hg --encoding utf-8 commit -u none -m '\u30A2'
2429 > echo d > text
2490 > echo d > text
2430 > hg --encoding utf-8 commit -u none -m '\u30C2'
2491 > hg --encoding utf-8 commit -u none -m '\u30C2'
2431 > '''.encode('utf-8')
2492 > '''.encode('utf-8')
2432 > EOF
2493 > EOF
2433 $ sh < setup.sh
2494 $ sh < setup.sh
2434
2495
2435 test in problematic encoding
2496 test in problematic encoding
2436 $ python > test.sh <<EOF
2497 $ python > test.sh <<EOF
2437 > print u'''
2498 > print u'''
2438 > hg --encoding cp932 log --template '{rev}\\n' -r 'author(\u30A2)'
2499 > hg --encoding cp932 log --template '{rev}\\n' -r 'author(\u30A2)'
2439 > echo ====
2500 > echo ====
2440 > hg --encoding cp932 log --template '{rev}\\n' -r 'author(\u30C2)'
2501 > hg --encoding cp932 log --template '{rev}\\n' -r 'author(\u30C2)'
2441 > echo ====
2502 > echo ====
2442 > hg --encoding cp932 log --template '{rev}\\n' -r 'desc(\u30A2)'
2503 > hg --encoding cp932 log --template '{rev}\\n' -r 'desc(\u30A2)'
2443 > echo ====
2504 > echo ====
2444 > hg --encoding cp932 log --template '{rev}\\n' -r 'desc(\u30C2)'
2505 > hg --encoding cp932 log --template '{rev}\\n' -r 'desc(\u30C2)'
2445 > echo ====
2506 > echo ====
2446 > hg --encoding cp932 log --template '{rev}\\n' -r 'keyword(\u30A2)'
2507 > hg --encoding cp932 log --template '{rev}\\n' -r 'keyword(\u30A2)'
2447 > echo ====
2508 > echo ====
2448 > hg --encoding cp932 log --template '{rev}\\n' -r 'keyword(\u30C2)'
2509 > hg --encoding cp932 log --template '{rev}\\n' -r 'keyword(\u30C2)'
2449 > '''.encode('cp932')
2510 > '''.encode('cp932')
2450 > EOF
2511 > EOF
2451 $ sh < test.sh
2512 $ sh < test.sh
2452 0
2513 0
2453 ====
2514 ====
2454 1
2515 1
2455 ====
2516 ====
2456 2
2517 2
2457 ====
2518 ====
2458 3
2519 3
2459 ====
2520 ====
2460 0
2521 0
2461 2
2522 2
2462 ====
2523 ====
2463 1
2524 1
2464 3
2525 3
2465
2526
2466 test error message of bad revset
2527 test error message of bad revset
2467 $ hg log -r 'foo\\'
2528 $ hg log -r 'foo\\'
2468 hg: parse error at 3: syntax error in revset 'foo\\'
2529 hg: parse error at 3: syntax error in revset 'foo\\'
2469 [255]
2530 [255]
2470
2531
2471 $ cd ..
2532 $ cd ..
2472
2533
2473 Test that revset predicate of extension isn't loaded at failure of
2534 Test that revset predicate of extension isn't loaded at failure of
2474 loading it
2535 loading it
2475
2536
2476 $ cd repo
2537 $ cd repo
2477
2538
2478 $ cat <<EOF > $TESTTMP/custompredicate.py
2539 $ cat <<EOF > $TESTTMP/custompredicate.py
2479 > from mercurial import error, registrar, revset
2540 > from mercurial import error, registrar, revset
2480 >
2541 >
2481 > revsetpredicate = registrar.revsetpredicate()
2542 > revsetpredicate = registrar.revsetpredicate()
2482 >
2543 >
2483 > @revsetpredicate('custom1()')
2544 > @revsetpredicate('custom1()')
2484 > def custom1(repo, subset, x):
2545 > def custom1(repo, subset, x):
2485 > return revset.baseset([1])
2546 > return revset.baseset([1])
2486 >
2547 >
2487 > raise error.Abort('intentional failure of loading extension')
2548 > raise error.Abort('intentional failure of loading extension')
2488 > EOF
2549 > EOF
2489 $ cat <<EOF > .hg/hgrc
2550 $ cat <<EOF > .hg/hgrc
2490 > [extensions]
2551 > [extensions]
2491 > custompredicate = $TESTTMP/custompredicate.py
2552 > custompredicate = $TESTTMP/custompredicate.py
2492 > EOF
2553 > EOF
2493
2554
2494 $ hg debugrevspec "custom1()"
2555 $ hg debugrevspec "custom1()"
2495 *** failed to import extension custompredicate from $TESTTMP/custompredicate.py: intentional failure of loading extension
2556 *** failed to import extension custompredicate from $TESTTMP/custompredicate.py: intentional failure of loading extension
2496 hg: parse error: unknown identifier: custom1
2557 hg: parse error: unknown identifier: custom1
2497 [255]
2558 [255]
2498
2559
2499 $ cd ..
2560 $ cd ..
General Comments 0
You need to be logged in to leave comments. Login now