##// END OF EJS Templates
remove: support remove with explicit paths in subrepos
Matt Harbison -
r23326:f6b8d234 default
parent child Browse files
Show More
@@ -1,2958 +1,2966 b''
1 # cmdutil.py - help for command processing in mercurial
1 # cmdutil.py - help for command processing in mercurial
2 #
2 #
3 # Copyright 2005-2007 Matt Mackall <mpm@selenic.com>
3 # Copyright 2005-2007 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 node import hex, nullid, nullrev, short
8 from node import hex, nullid, nullrev, short
9 from i18n import _
9 from i18n import _
10 import os, sys, errno, re, tempfile
10 import os, sys, errno, re, tempfile
11 import util, scmutil, templater, patch, error, templatekw, revlog, copies
11 import util, scmutil, templater, patch, error, templatekw, revlog, copies
12 import match as matchmod
12 import match as matchmod
13 import context, repair, graphmod, revset, phases, obsolete, pathutil
13 import context, repair, graphmod, revset, phases, obsolete, pathutil
14 import changelog
14 import changelog
15 import bookmarks
15 import bookmarks
16 import encoding
16 import encoding
17 import lock as lockmod
17 import lock as lockmod
18
18
19 def parsealiases(cmd):
19 def parsealiases(cmd):
20 return cmd.lstrip("^").split("|")
20 return cmd.lstrip("^").split("|")
21
21
22 def findpossible(cmd, table, strict=False):
22 def findpossible(cmd, table, strict=False):
23 """
23 """
24 Return cmd -> (aliases, command table entry)
24 Return cmd -> (aliases, command table entry)
25 for each matching command.
25 for each matching command.
26 Return debug commands (or their aliases) only if no normal command matches.
26 Return debug commands (or their aliases) only if no normal command matches.
27 """
27 """
28 choice = {}
28 choice = {}
29 debugchoice = {}
29 debugchoice = {}
30
30
31 if cmd in table:
31 if cmd in table:
32 # short-circuit exact matches, "log" alias beats "^log|history"
32 # short-circuit exact matches, "log" alias beats "^log|history"
33 keys = [cmd]
33 keys = [cmd]
34 else:
34 else:
35 keys = table.keys()
35 keys = table.keys()
36
36
37 for e in keys:
37 for e in keys:
38 aliases = parsealiases(e)
38 aliases = parsealiases(e)
39 found = None
39 found = None
40 if cmd in aliases:
40 if cmd in aliases:
41 found = cmd
41 found = cmd
42 elif not strict:
42 elif not strict:
43 for a in aliases:
43 for a in aliases:
44 if a.startswith(cmd):
44 if a.startswith(cmd):
45 found = a
45 found = a
46 break
46 break
47 if found is not None:
47 if found is not None:
48 if aliases[0].startswith("debug") or found.startswith("debug"):
48 if aliases[0].startswith("debug") or found.startswith("debug"):
49 debugchoice[found] = (aliases, table[e])
49 debugchoice[found] = (aliases, table[e])
50 else:
50 else:
51 choice[found] = (aliases, table[e])
51 choice[found] = (aliases, table[e])
52
52
53 if not choice and debugchoice:
53 if not choice and debugchoice:
54 choice = debugchoice
54 choice = debugchoice
55
55
56 return choice
56 return choice
57
57
58 def findcmd(cmd, table, strict=True):
58 def findcmd(cmd, table, strict=True):
59 """Return (aliases, command table entry) for command string."""
59 """Return (aliases, command table entry) for command string."""
60 choice = findpossible(cmd, table, strict)
60 choice = findpossible(cmd, table, strict)
61
61
62 if cmd in choice:
62 if cmd in choice:
63 return choice[cmd]
63 return choice[cmd]
64
64
65 if len(choice) > 1:
65 if len(choice) > 1:
66 clist = choice.keys()
66 clist = choice.keys()
67 clist.sort()
67 clist.sort()
68 raise error.AmbiguousCommand(cmd, clist)
68 raise error.AmbiguousCommand(cmd, clist)
69
69
70 if choice:
70 if choice:
71 return choice.values()[0]
71 return choice.values()[0]
72
72
73 raise error.UnknownCommand(cmd)
73 raise error.UnknownCommand(cmd)
74
74
75 def findrepo(p):
75 def findrepo(p):
76 while not os.path.isdir(os.path.join(p, ".hg")):
76 while not os.path.isdir(os.path.join(p, ".hg")):
77 oldp, p = p, os.path.dirname(p)
77 oldp, p = p, os.path.dirname(p)
78 if p == oldp:
78 if p == oldp:
79 return None
79 return None
80
80
81 return p
81 return p
82
82
83 def bailifchanged(repo):
83 def bailifchanged(repo):
84 if repo.dirstate.p2() != nullid:
84 if repo.dirstate.p2() != nullid:
85 raise util.Abort(_('outstanding uncommitted merge'))
85 raise util.Abort(_('outstanding uncommitted merge'))
86 modified, added, removed, deleted = repo.status()[:4]
86 modified, added, removed, deleted = repo.status()[:4]
87 if modified or added or removed or deleted:
87 if modified or added or removed or deleted:
88 raise util.Abort(_('uncommitted changes'))
88 raise util.Abort(_('uncommitted changes'))
89 ctx = repo[None]
89 ctx = repo[None]
90 for s in sorted(ctx.substate):
90 for s in sorted(ctx.substate):
91 if ctx.sub(s).dirty():
91 if ctx.sub(s).dirty():
92 raise util.Abort(_("uncommitted changes in subrepo %s") % s)
92 raise util.Abort(_("uncommitted changes in subrepo %s") % s)
93
93
94 def logmessage(ui, opts):
94 def logmessage(ui, opts):
95 """ get the log message according to -m and -l option """
95 """ get the log message according to -m and -l option """
96 message = opts.get('message')
96 message = opts.get('message')
97 logfile = opts.get('logfile')
97 logfile = opts.get('logfile')
98
98
99 if message and logfile:
99 if message and logfile:
100 raise util.Abort(_('options --message and --logfile are mutually '
100 raise util.Abort(_('options --message and --logfile are mutually '
101 'exclusive'))
101 'exclusive'))
102 if not message and logfile:
102 if not message and logfile:
103 try:
103 try:
104 if logfile == '-':
104 if logfile == '-':
105 message = ui.fin.read()
105 message = ui.fin.read()
106 else:
106 else:
107 message = '\n'.join(util.readfile(logfile).splitlines())
107 message = '\n'.join(util.readfile(logfile).splitlines())
108 except IOError, inst:
108 except IOError, inst:
109 raise util.Abort(_("can't read commit message '%s': %s") %
109 raise util.Abort(_("can't read commit message '%s': %s") %
110 (logfile, inst.strerror))
110 (logfile, inst.strerror))
111 return message
111 return message
112
112
113 def mergeeditform(ctxorbool, baseform):
113 def mergeeditform(ctxorbool, baseform):
114 """build appropriate editform from ctxorbool and baseform
114 """build appropriate editform from ctxorbool and baseform
115
115
116 'ctxorbool' is one of a ctx to be committed, or a bool whether
116 'ctxorbool' is one of a ctx to be committed, or a bool whether
117 merging is committed.
117 merging is committed.
118
118
119 This returns editform 'baseform' with '.merge' if merging is
119 This returns editform 'baseform' with '.merge' if merging is
120 committed, or one with '.normal' suffix otherwise.
120 committed, or one with '.normal' suffix otherwise.
121 """
121 """
122 if isinstance(ctxorbool, bool):
122 if isinstance(ctxorbool, bool):
123 if ctxorbool:
123 if ctxorbool:
124 return baseform + ".merge"
124 return baseform + ".merge"
125 elif 1 < len(ctxorbool.parents()):
125 elif 1 < len(ctxorbool.parents()):
126 return baseform + ".merge"
126 return baseform + ".merge"
127
127
128 return baseform + ".normal"
128 return baseform + ".normal"
129
129
130 def getcommiteditor(edit=False, finishdesc=None, extramsg=None,
130 def getcommiteditor(edit=False, finishdesc=None, extramsg=None,
131 editform='', **opts):
131 editform='', **opts):
132 """get appropriate commit message editor according to '--edit' option
132 """get appropriate commit message editor according to '--edit' option
133
133
134 'finishdesc' is a function to be called with edited commit message
134 'finishdesc' is a function to be called with edited commit message
135 (= 'description' of the new changeset) just after editing, but
135 (= 'description' of the new changeset) just after editing, but
136 before checking empty-ness. It should return actual text to be
136 before checking empty-ness. It should return actual text to be
137 stored into history. This allows to change description before
137 stored into history. This allows to change description before
138 storing.
138 storing.
139
139
140 'extramsg' is a extra message to be shown in the editor instead of
140 'extramsg' is a extra message to be shown in the editor instead of
141 'Leave message empty to abort commit' line. 'HG: ' prefix and EOL
141 'Leave message empty to abort commit' line. 'HG: ' prefix and EOL
142 is automatically added.
142 is automatically added.
143
143
144 'editform' is a dot-separated list of names, to distinguish
144 'editform' is a dot-separated list of names, to distinguish
145 the purpose of commit text editing.
145 the purpose of commit text editing.
146
146
147 'getcommiteditor' returns 'commitforceeditor' regardless of
147 'getcommiteditor' returns 'commitforceeditor' regardless of
148 'edit', if one of 'finishdesc' or 'extramsg' is specified, because
148 'edit', if one of 'finishdesc' or 'extramsg' is specified, because
149 they are specific for usage in MQ.
149 they are specific for usage in MQ.
150 """
150 """
151 if edit or finishdesc or extramsg:
151 if edit or finishdesc or extramsg:
152 return lambda r, c, s: commitforceeditor(r, c, s,
152 return lambda r, c, s: commitforceeditor(r, c, s,
153 finishdesc=finishdesc,
153 finishdesc=finishdesc,
154 extramsg=extramsg,
154 extramsg=extramsg,
155 editform=editform)
155 editform=editform)
156 elif editform:
156 elif editform:
157 return lambda r, c, s: commiteditor(r, c, s, editform=editform)
157 return lambda r, c, s: commiteditor(r, c, s, editform=editform)
158 else:
158 else:
159 return commiteditor
159 return commiteditor
160
160
161 def loglimit(opts):
161 def loglimit(opts):
162 """get the log limit according to option -l/--limit"""
162 """get the log limit according to option -l/--limit"""
163 limit = opts.get('limit')
163 limit = opts.get('limit')
164 if limit:
164 if limit:
165 try:
165 try:
166 limit = int(limit)
166 limit = int(limit)
167 except ValueError:
167 except ValueError:
168 raise util.Abort(_('limit must be a positive integer'))
168 raise util.Abort(_('limit must be a positive integer'))
169 if limit <= 0:
169 if limit <= 0:
170 raise util.Abort(_('limit must be positive'))
170 raise util.Abort(_('limit must be positive'))
171 else:
171 else:
172 limit = None
172 limit = None
173 return limit
173 return limit
174
174
175 def makefilename(repo, pat, node, desc=None,
175 def makefilename(repo, pat, node, desc=None,
176 total=None, seqno=None, revwidth=None, pathname=None):
176 total=None, seqno=None, revwidth=None, pathname=None):
177 node_expander = {
177 node_expander = {
178 'H': lambda: hex(node),
178 'H': lambda: hex(node),
179 'R': lambda: str(repo.changelog.rev(node)),
179 'R': lambda: str(repo.changelog.rev(node)),
180 'h': lambda: short(node),
180 'h': lambda: short(node),
181 'm': lambda: re.sub('[^\w]', '_', str(desc))
181 'm': lambda: re.sub('[^\w]', '_', str(desc))
182 }
182 }
183 expander = {
183 expander = {
184 '%': lambda: '%',
184 '%': lambda: '%',
185 'b': lambda: os.path.basename(repo.root),
185 'b': lambda: os.path.basename(repo.root),
186 }
186 }
187
187
188 try:
188 try:
189 if node:
189 if node:
190 expander.update(node_expander)
190 expander.update(node_expander)
191 if node:
191 if node:
192 expander['r'] = (lambda:
192 expander['r'] = (lambda:
193 str(repo.changelog.rev(node)).zfill(revwidth or 0))
193 str(repo.changelog.rev(node)).zfill(revwidth or 0))
194 if total is not None:
194 if total is not None:
195 expander['N'] = lambda: str(total)
195 expander['N'] = lambda: str(total)
196 if seqno is not None:
196 if seqno is not None:
197 expander['n'] = lambda: str(seqno)
197 expander['n'] = lambda: str(seqno)
198 if total is not None and seqno is not None:
198 if total is not None and seqno is not None:
199 expander['n'] = lambda: str(seqno).zfill(len(str(total)))
199 expander['n'] = lambda: str(seqno).zfill(len(str(total)))
200 if pathname is not None:
200 if pathname is not None:
201 expander['s'] = lambda: os.path.basename(pathname)
201 expander['s'] = lambda: os.path.basename(pathname)
202 expander['d'] = lambda: os.path.dirname(pathname) or '.'
202 expander['d'] = lambda: os.path.dirname(pathname) or '.'
203 expander['p'] = lambda: pathname
203 expander['p'] = lambda: pathname
204
204
205 newname = []
205 newname = []
206 patlen = len(pat)
206 patlen = len(pat)
207 i = 0
207 i = 0
208 while i < patlen:
208 while i < patlen:
209 c = pat[i]
209 c = pat[i]
210 if c == '%':
210 if c == '%':
211 i += 1
211 i += 1
212 c = pat[i]
212 c = pat[i]
213 c = expander[c]()
213 c = expander[c]()
214 newname.append(c)
214 newname.append(c)
215 i += 1
215 i += 1
216 return ''.join(newname)
216 return ''.join(newname)
217 except KeyError, inst:
217 except KeyError, inst:
218 raise util.Abort(_("invalid format spec '%%%s' in output filename") %
218 raise util.Abort(_("invalid format spec '%%%s' in output filename") %
219 inst.args[0])
219 inst.args[0])
220
220
221 def makefileobj(repo, pat, node=None, desc=None, total=None,
221 def makefileobj(repo, pat, node=None, desc=None, total=None,
222 seqno=None, revwidth=None, mode='wb', modemap=None,
222 seqno=None, revwidth=None, mode='wb', modemap=None,
223 pathname=None):
223 pathname=None):
224
224
225 writable = mode not in ('r', 'rb')
225 writable = mode not in ('r', 'rb')
226
226
227 if not pat or pat == '-':
227 if not pat or pat == '-':
228 fp = writable and repo.ui.fout or repo.ui.fin
228 fp = writable and repo.ui.fout or repo.ui.fin
229 if util.safehasattr(fp, 'fileno'):
229 if util.safehasattr(fp, 'fileno'):
230 return os.fdopen(os.dup(fp.fileno()), mode)
230 return os.fdopen(os.dup(fp.fileno()), mode)
231 else:
231 else:
232 # if this fp can't be duped properly, return
232 # if this fp can't be duped properly, return
233 # a dummy object that can be closed
233 # a dummy object that can be closed
234 class wrappedfileobj(object):
234 class wrappedfileobj(object):
235 noop = lambda x: None
235 noop = lambda x: None
236 def __init__(self, f):
236 def __init__(self, f):
237 self.f = f
237 self.f = f
238 def __getattr__(self, attr):
238 def __getattr__(self, attr):
239 if attr == 'close':
239 if attr == 'close':
240 return self.noop
240 return self.noop
241 else:
241 else:
242 return getattr(self.f, attr)
242 return getattr(self.f, attr)
243
243
244 return wrappedfileobj(fp)
244 return wrappedfileobj(fp)
245 if util.safehasattr(pat, 'write') and writable:
245 if util.safehasattr(pat, 'write') and writable:
246 return pat
246 return pat
247 if util.safehasattr(pat, 'read') and 'r' in mode:
247 if util.safehasattr(pat, 'read') and 'r' in mode:
248 return pat
248 return pat
249 fn = makefilename(repo, pat, node, desc, total, seqno, revwidth, pathname)
249 fn = makefilename(repo, pat, node, desc, total, seqno, revwidth, pathname)
250 if modemap is not None:
250 if modemap is not None:
251 mode = modemap.get(fn, mode)
251 mode = modemap.get(fn, mode)
252 if mode == 'wb':
252 if mode == 'wb':
253 modemap[fn] = 'ab'
253 modemap[fn] = 'ab'
254 return open(fn, mode)
254 return open(fn, mode)
255
255
256 def openrevlog(repo, cmd, file_, opts):
256 def openrevlog(repo, cmd, file_, opts):
257 """opens the changelog, manifest, a filelog or a given revlog"""
257 """opens the changelog, manifest, a filelog or a given revlog"""
258 cl = opts['changelog']
258 cl = opts['changelog']
259 mf = opts['manifest']
259 mf = opts['manifest']
260 msg = None
260 msg = None
261 if cl and mf:
261 if cl and mf:
262 msg = _('cannot specify --changelog and --manifest at the same time')
262 msg = _('cannot specify --changelog and --manifest at the same time')
263 elif cl or mf:
263 elif cl or mf:
264 if file_:
264 if file_:
265 msg = _('cannot specify filename with --changelog or --manifest')
265 msg = _('cannot specify filename with --changelog or --manifest')
266 elif not repo:
266 elif not repo:
267 msg = _('cannot specify --changelog or --manifest '
267 msg = _('cannot specify --changelog or --manifest '
268 'without a repository')
268 'without a repository')
269 if msg:
269 if msg:
270 raise util.Abort(msg)
270 raise util.Abort(msg)
271
271
272 r = None
272 r = None
273 if repo:
273 if repo:
274 if cl:
274 if cl:
275 r = repo.unfiltered().changelog
275 r = repo.unfiltered().changelog
276 elif mf:
276 elif mf:
277 r = repo.manifest
277 r = repo.manifest
278 elif file_:
278 elif file_:
279 filelog = repo.file(file_)
279 filelog = repo.file(file_)
280 if len(filelog):
280 if len(filelog):
281 r = filelog
281 r = filelog
282 if not r:
282 if not r:
283 if not file_:
283 if not file_:
284 raise error.CommandError(cmd, _('invalid arguments'))
284 raise error.CommandError(cmd, _('invalid arguments'))
285 if not os.path.isfile(file_):
285 if not os.path.isfile(file_):
286 raise util.Abort(_("revlog '%s' not found") % file_)
286 raise util.Abort(_("revlog '%s' not found") % file_)
287 r = revlog.revlog(scmutil.opener(os.getcwd(), audit=False),
287 r = revlog.revlog(scmutil.opener(os.getcwd(), audit=False),
288 file_[:-2] + ".i")
288 file_[:-2] + ".i")
289 return r
289 return r
290
290
291 def copy(ui, repo, pats, opts, rename=False):
291 def copy(ui, repo, pats, opts, rename=False):
292 # called with the repo lock held
292 # called with the repo lock held
293 #
293 #
294 # hgsep => pathname that uses "/" to separate directories
294 # hgsep => pathname that uses "/" to separate directories
295 # ossep => pathname that uses os.sep to separate directories
295 # ossep => pathname that uses os.sep to separate directories
296 cwd = repo.getcwd()
296 cwd = repo.getcwd()
297 targets = {}
297 targets = {}
298 after = opts.get("after")
298 after = opts.get("after")
299 dryrun = opts.get("dry_run")
299 dryrun = opts.get("dry_run")
300 wctx = repo[None]
300 wctx = repo[None]
301
301
302 def walkpat(pat):
302 def walkpat(pat):
303 srcs = []
303 srcs = []
304 badstates = after and '?' or '?r'
304 badstates = after and '?' or '?r'
305 m = scmutil.match(repo[None], [pat], opts, globbed=True)
305 m = scmutil.match(repo[None], [pat], opts, globbed=True)
306 for abs in repo.walk(m):
306 for abs in repo.walk(m):
307 state = repo.dirstate[abs]
307 state = repo.dirstate[abs]
308 rel = m.rel(abs)
308 rel = m.rel(abs)
309 exact = m.exact(abs)
309 exact = m.exact(abs)
310 if state in badstates:
310 if state in badstates:
311 if exact and state == '?':
311 if exact and state == '?':
312 ui.warn(_('%s: not copying - file is not managed\n') % rel)
312 ui.warn(_('%s: not copying - file is not managed\n') % rel)
313 if exact and state == 'r':
313 if exact and state == 'r':
314 ui.warn(_('%s: not copying - file has been marked for'
314 ui.warn(_('%s: not copying - file has been marked for'
315 ' remove\n') % rel)
315 ' remove\n') % rel)
316 continue
316 continue
317 # abs: hgsep
317 # abs: hgsep
318 # rel: ossep
318 # rel: ossep
319 srcs.append((abs, rel, exact))
319 srcs.append((abs, rel, exact))
320 return srcs
320 return srcs
321
321
322 # abssrc: hgsep
322 # abssrc: hgsep
323 # relsrc: ossep
323 # relsrc: ossep
324 # otarget: ossep
324 # otarget: ossep
325 def copyfile(abssrc, relsrc, otarget, exact):
325 def copyfile(abssrc, relsrc, otarget, exact):
326 abstarget = pathutil.canonpath(repo.root, cwd, otarget)
326 abstarget = pathutil.canonpath(repo.root, cwd, otarget)
327 if '/' in abstarget:
327 if '/' in abstarget:
328 # We cannot normalize abstarget itself, this would prevent
328 # We cannot normalize abstarget itself, this would prevent
329 # case only renames, like a => A.
329 # case only renames, like a => A.
330 abspath, absname = abstarget.rsplit('/', 1)
330 abspath, absname = abstarget.rsplit('/', 1)
331 abstarget = repo.dirstate.normalize(abspath) + '/' + absname
331 abstarget = repo.dirstate.normalize(abspath) + '/' + absname
332 reltarget = repo.pathto(abstarget, cwd)
332 reltarget = repo.pathto(abstarget, cwd)
333 target = repo.wjoin(abstarget)
333 target = repo.wjoin(abstarget)
334 src = repo.wjoin(abssrc)
334 src = repo.wjoin(abssrc)
335 state = repo.dirstate[abstarget]
335 state = repo.dirstate[abstarget]
336
336
337 scmutil.checkportable(ui, abstarget)
337 scmutil.checkportable(ui, abstarget)
338
338
339 # check for collisions
339 # check for collisions
340 prevsrc = targets.get(abstarget)
340 prevsrc = targets.get(abstarget)
341 if prevsrc is not None:
341 if prevsrc is not None:
342 ui.warn(_('%s: not overwriting - %s collides with %s\n') %
342 ui.warn(_('%s: not overwriting - %s collides with %s\n') %
343 (reltarget, repo.pathto(abssrc, cwd),
343 (reltarget, repo.pathto(abssrc, cwd),
344 repo.pathto(prevsrc, cwd)))
344 repo.pathto(prevsrc, cwd)))
345 return
345 return
346
346
347 # check for overwrites
347 # check for overwrites
348 exists = os.path.lexists(target)
348 exists = os.path.lexists(target)
349 samefile = False
349 samefile = False
350 if exists and abssrc != abstarget:
350 if exists and abssrc != abstarget:
351 if (repo.dirstate.normalize(abssrc) ==
351 if (repo.dirstate.normalize(abssrc) ==
352 repo.dirstate.normalize(abstarget)):
352 repo.dirstate.normalize(abstarget)):
353 if not rename:
353 if not rename:
354 ui.warn(_("%s: can't copy - same file\n") % reltarget)
354 ui.warn(_("%s: can't copy - same file\n") % reltarget)
355 return
355 return
356 exists = False
356 exists = False
357 samefile = True
357 samefile = True
358
358
359 if not after and exists or after and state in 'mn':
359 if not after and exists or after and state in 'mn':
360 if not opts['force']:
360 if not opts['force']:
361 ui.warn(_('%s: not overwriting - file exists\n') %
361 ui.warn(_('%s: not overwriting - file exists\n') %
362 reltarget)
362 reltarget)
363 return
363 return
364
364
365 if after:
365 if after:
366 if not exists:
366 if not exists:
367 if rename:
367 if rename:
368 ui.warn(_('%s: not recording move - %s does not exist\n') %
368 ui.warn(_('%s: not recording move - %s does not exist\n') %
369 (relsrc, reltarget))
369 (relsrc, reltarget))
370 else:
370 else:
371 ui.warn(_('%s: not recording copy - %s does not exist\n') %
371 ui.warn(_('%s: not recording copy - %s does not exist\n') %
372 (relsrc, reltarget))
372 (relsrc, reltarget))
373 return
373 return
374 elif not dryrun:
374 elif not dryrun:
375 try:
375 try:
376 if exists:
376 if exists:
377 os.unlink(target)
377 os.unlink(target)
378 targetdir = os.path.dirname(target) or '.'
378 targetdir = os.path.dirname(target) or '.'
379 if not os.path.isdir(targetdir):
379 if not os.path.isdir(targetdir):
380 os.makedirs(targetdir)
380 os.makedirs(targetdir)
381 if samefile:
381 if samefile:
382 tmp = target + "~hgrename"
382 tmp = target + "~hgrename"
383 os.rename(src, tmp)
383 os.rename(src, tmp)
384 os.rename(tmp, target)
384 os.rename(tmp, target)
385 else:
385 else:
386 util.copyfile(src, target)
386 util.copyfile(src, target)
387 srcexists = True
387 srcexists = True
388 except IOError, inst:
388 except IOError, inst:
389 if inst.errno == errno.ENOENT:
389 if inst.errno == errno.ENOENT:
390 ui.warn(_('%s: deleted in working copy\n') % relsrc)
390 ui.warn(_('%s: deleted in working copy\n') % relsrc)
391 srcexists = False
391 srcexists = False
392 else:
392 else:
393 ui.warn(_('%s: cannot copy - %s\n') %
393 ui.warn(_('%s: cannot copy - %s\n') %
394 (relsrc, inst.strerror))
394 (relsrc, inst.strerror))
395 return True # report a failure
395 return True # report a failure
396
396
397 if ui.verbose or not exact:
397 if ui.verbose or not exact:
398 if rename:
398 if rename:
399 ui.status(_('moving %s to %s\n') % (relsrc, reltarget))
399 ui.status(_('moving %s to %s\n') % (relsrc, reltarget))
400 else:
400 else:
401 ui.status(_('copying %s to %s\n') % (relsrc, reltarget))
401 ui.status(_('copying %s to %s\n') % (relsrc, reltarget))
402
402
403 targets[abstarget] = abssrc
403 targets[abstarget] = abssrc
404
404
405 # fix up dirstate
405 # fix up dirstate
406 scmutil.dirstatecopy(ui, repo, wctx, abssrc, abstarget,
406 scmutil.dirstatecopy(ui, repo, wctx, abssrc, abstarget,
407 dryrun=dryrun, cwd=cwd)
407 dryrun=dryrun, cwd=cwd)
408 if rename and not dryrun:
408 if rename and not dryrun:
409 if not after and srcexists and not samefile:
409 if not after and srcexists and not samefile:
410 util.unlinkpath(repo.wjoin(abssrc))
410 util.unlinkpath(repo.wjoin(abssrc))
411 wctx.forget([abssrc])
411 wctx.forget([abssrc])
412
412
413 # pat: ossep
413 # pat: ossep
414 # dest ossep
414 # dest ossep
415 # srcs: list of (hgsep, hgsep, ossep, bool)
415 # srcs: list of (hgsep, hgsep, ossep, bool)
416 # return: function that takes hgsep and returns ossep
416 # return: function that takes hgsep and returns ossep
417 def targetpathfn(pat, dest, srcs):
417 def targetpathfn(pat, dest, srcs):
418 if os.path.isdir(pat):
418 if os.path.isdir(pat):
419 abspfx = pathutil.canonpath(repo.root, cwd, pat)
419 abspfx = pathutil.canonpath(repo.root, cwd, pat)
420 abspfx = util.localpath(abspfx)
420 abspfx = util.localpath(abspfx)
421 if destdirexists:
421 if destdirexists:
422 striplen = len(os.path.split(abspfx)[0])
422 striplen = len(os.path.split(abspfx)[0])
423 else:
423 else:
424 striplen = len(abspfx)
424 striplen = len(abspfx)
425 if striplen:
425 if striplen:
426 striplen += len(os.sep)
426 striplen += len(os.sep)
427 res = lambda p: os.path.join(dest, util.localpath(p)[striplen:])
427 res = lambda p: os.path.join(dest, util.localpath(p)[striplen:])
428 elif destdirexists:
428 elif destdirexists:
429 res = lambda p: os.path.join(dest,
429 res = lambda p: os.path.join(dest,
430 os.path.basename(util.localpath(p)))
430 os.path.basename(util.localpath(p)))
431 else:
431 else:
432 res = lambda p: dest
432 res = lambda p: dest
433 return res
433 return res
434
434
435 # pat: ossep
435 # pat: ossep
436 # dest ossep
436 # dest ossep
437 # srcs: list of (hgsep, hgsep, ossep, bool)
437 # srcs: list of (hgsep, hgsep, ossep, bool)
438 # return: function that takes hgsep and returns ossep
438 # return: function that takes hgsep and returns ossep
439 def targetpathafterfn(pat, dest, srcs):
439 def targetpathafterfn(pat, dest, srcs):
440 if matchmod.patkind(pat):
440 if matchmod.patkind(pat):
441 # a mercurial pattern
441 # a mercurial pattern
442 res = lambda p: os.path.join(dest,
442 res = lambda p: os.path.join(dest,
443 os.path.basename(util.localpath(p)))
443 os.path.basename(util.localpath(p)))
444 else:
444 else:
445 abspfx = pathutil.canonpath(repo.root, cwd, pat)
445 abspfx = pathutil.canonpath(repo.root, cwd, pat)
446 if len(abspfx) < len(srcs[0][0]):
446 if len(abspfx) < len(srcs[0][0]):
447 # A directory. Either the target path contains the last
447 # A directory. Either the target path contains the last
448 # component of the source path or it does not.
448 # component of the source path or it does not.
449 def evalpath(striplen):
449 def evalpath(striplen):
450 score = 0
450 score = 0
451 for s in srcs:
451 for s in srcs:
452 t = os.path.join(dest, util.localpath(s[0])[striplen:])
452 t = os.path.join(dest, util.localpath(s[0])[striplen:])
453 if os.path.lexists(t):
453 if os.path.lexists(t):
454 score += 1
454 score += 1
455 return score
455 return score
456
456
457 abspfx = util.localpath(abspfx)
457 abspfx = util.localpath(abspfx)
458 striplen = len(abspfx)
458 striplen = len(abspfx)
459 if striplen:
459 if striplen:
460 striplen += len(os.sep)
460 striplen += len(os.sep)
461 if os.path.isdir(os.path.join(dest, os.path.split(abspfx)[1])):
461 if os.path.isdir(os.path.join(dest, os.path.split(abspfx)[1])):
462 score = evalpath(striplen)
462 score = evalpath(striplen)
463 striplen1 = len(os.path.split(abspfx)[0])
463 striplen1 = len(os.path.split(abspfx)[0])
464 if striplen1:
464 if striplen1:
465 striplen1 += len(os.sep)
465 striplen1 += len(os.sep)
466 if evalpath(striplen1) > score:
466 if evalpath(striplen1) > score:
467 striplen = striplen1
467 striplen = striplen1
468 res = lambda p: os.path.join(dest,
468 res = lambda p: os.path.join(dest,
469 util.localpath(p)[striplen:])
469 util.localpath(p)[striplen:])
470 else:
470 else:
471 # a file
471 # a file
472 if destdirexists:
472 if destdirexists:
473 res = lambda p: os.path.join(dest,
473 res = lambda p: os.path.join(dest,
474 os.path.basename(util.localpath(p)))
474 os.path.basename(util.localpath(p)))
475 else:
475 else:
476 res = lambda p: dest
476 res = lambda p: dest
477 return res
477 return res
478
478
479
479
480 pats = scmutil.expandpats(pats)
480 pats = scmutil.expandpats(pats)
481 if not pats:
481 if not pats:
482 raise util.Abort(_('no source or destination specified'))
482 raise util.Abort(_('no source or destination specified'))
483 if len(pats) == 1:
483 if len(pats) == 1:
484 raise util.Abort(_('no destination specified'))
484 raise util.Abort(_('no destination specified'))
485 dest = pats.pop()
485 dest = pats.pop()
486 destdirexists = os.path.isdir(dest) and not os.path.islink(dest)
486 destdirexists = os.path.isdir(dest) and not os.path.islink(dest)
487 if not destdirexists:
487 if not destdirexists:
488 if len(pats) > 1 or matchmod.patkind(pats[0]):
488 if len(pats) > 1 or matchmod.patkind(pats[0]):
489 raise util.Abort(_('with multiple sources, destination must be an '
489 raise util.Abort(_('with multiple sources, destination must be an '
490 'existing directory'))
490 'existing directory'))
491 if util.endswithsep(dest):
491 if util.endswithsep(dest):
492 raise util.Abort(_('destination %s is not a directory') % dest)
492 raise util.Abort(_('destination %s is not a directory') % dest)
493
493
494 tfn = targetpathfn
494 tfn = targetpathfn
495 if after:
495 if after:
496 tfn = targetpathafterfn
496 tfn = targetpathafterfn
497 copylist = []
497 copylist = []
498 for pat in pats:
498 for pat in pats:
499 srcs = walkpat(pat)
499 srcs = walkpat(pat)
500 if not srcs:
500 if not srcs:
501 continue
501 continue
502 copylist.append((tfn(pat, dest, srcs), srcs))
502 copylist.append((tfn(pat, dest, srcs), srcs))
503 if not copylist:
503 if not copylist:
504 raise util.Abort(_('no files to copy'))
504 raise util.Abort(_('no files to copy'))
505
505
506 errors = 0
506 errors = 0
507 for targetpath, srcs in copylist:
507 for targetpath, srcs in copylist:
508 for abssrc, relsrc, exact in srcs:
508 for abssrc, relsrc, exact in srcs:
509 if copyfile(abssrc, relsrc, targetpath(abssrc), exact):
509 if copyfile(abssrc, relsrc, targetpath(abssrc), exact):
510 errors += 1
510 errors += 1
511
511
512 if errors:
512 if errors:
513 ui.warn(_('(consider using --after)\n'))
513 ui.warn(_('(consider using --after)\n'))
514
514
515 return errors != 0
515 return errors != 0
516
516
517 def service(opts, parentfn=None, initfn=None, runfn=None, logfile=None,
517 def service(opts, parentfn=None, initfn=None, runfn=None, logfile=None,
518 runargs=None, appendpid=False):
518 runargs=None, appendpid=False):
519 '''Run a command as a service.'''
519 '''Run a command as a service.'''
520
520
521 def writepid(pid):
521 def writepid(pid):
522 if opts['pid_file']:
522 if opts['pid_file']:
523 mode = appendpid and 'a' or 'w'
523 mode = appendpid and 'a' or 'w'
524 fp = open(opts['pid_file'], mode)
524 fp = open(opts['pid_file'], mode)
525 fp.write(str(pid) + '\n')
525 fp.write(str(pid) + '\n')
526 fp.close()
526 fp.close()
527
527
528 if opts['daemon'] and not opts['daemon_pipefds']:
528 if opts['daemon'] and not opts['daemon_pipefds']:
529 # Signal child process startup with file removal
529 # Signal child process startup with file removal
530 lockfd, lockpath = tempfile.mkstemp(prefix='hg-service-')
530 lockfd, lockpath = tempfile.mkstemp(prefix='hg-service-')
531 os.close(lockfd)
531 os.close(lockfd)
532 try:
532 try:
533 if not runargs:
533 if not runargs:
534 runargs = util.hgcmd() + sys.argv[1:]
534 runargs = util.hgcmd() + sys.argv[1:]
535 runargs.append('--daemon-pipefds=%s' % lockpath)
535 runargs.append('--daemon-pipefds=%s' % lockpath)
536 # Don't pass --cwd to the child process, because we've already
536 # Don't pass --cwd to the child process, because we've already
537 # changed directory.
537 # changed directory.
538 for i in xrange(1, len(runargs)):
538 for i in xrange(1, len(runargs)):
539 if runargs[i].startswith('--cwd='):
539 if runargs[i].startswith('--cwd='):
540 del runargs[i]
540 del runargs[i]
541 break
541 break
542 elif runargs[i].startswith('--cwd'):
542 elif runargs[i].startswith('--cwd'):
543 del runargs[i:i + 2]
543 del runargs[i:i + 2]
544 break
544 break
545 def condfn():
545 def condfn():
546 return not os.path.exists(lockpath)
546 return not os.path.exists(lockpath)
547 pid = util.rundetached(runargs, condfn)
547 pid = util.rundetached(runargs, condfn)
548 if pid < 0:
548 if pid < 0:
549 raise util.Abort(_('child process failed to start'))
549 raise util.Abort(_('child process failed to start'))
550 writepid(pid)
550 writepid(pid)
551 finally:
551 finally:
552 try:
552 try:
553 os.unlink(lockpath)
553 os.unlink(lockpath)
554 except OSError, e:
554 except OSError, e:
555 if e.errno != errno.ENOENT:
555 if e.errno != errno.ENOENT:
556 raise
556 raise
557 if parentfn:
557 if parentfn:
558 return parentfn(pid)
558 return parentfn(pid)
559 else:
559 else:
560 return
560 return
561
561
562 if initfn:
562 if initfn:
563 initfn()
563 initfn()
564
564
565 if not opts['daemon']:
565 if not opts['daemon']:
566 writepid(os.getpid())
566 writepid(os.getpid())
567
567
568 if opts['daemon_pipefds']:
568 if opts['daemon_pipefds']:
569 lockpath = opts['daemon_pipefds']
569 lockpath = opts['daemon_pipefds']
570 try:
570 try:
571 os.setsid()
571 os.setsid()
572 except AttributeError:
572 except AttributeError:
573 pass
573 pass
574 os.unlink(lockpath)
574 os.unlink(lockpath)
575 util.hidewindow()
575 util.hidewindow()
576 sys.stdout.flush()
576 sys.stdout.flush()
577 sys.stderr.flush()
577 sys.stderr.flush()
578
578
579 nullfd = os.open(os.devnull, os.O_RDWR)
579 nullfd = os.open(os.devnull, os.O_RDWR)
580 logfilefd = nullfd
580 logfilefd = nullfd
581 if logfile:
581 if logfile:
582 logfilefd = os.open(logfile, os.O_RDWR | os.O_CREAT | os.O_APPEND)
582 logfilefd = os.open(logfile, os.O_RDWR | os.O_CREAT | os.O_APPEND)
583 os.dup2(nullfd, 0)
583 os.dup2(nullfd, 0)
584 os.dup2(logfilefd, 1)
584 os.dup2(logfilefd, 1)
585 os.dup2(logfilefd, 2)
585 os.dup2(logfilefd, 2)
586 if nullfd not in (0, 1, 2):
586 if nullfd not in (0, 1, 2):
587 os.close(nullfd)
587 os.close(nullfd)
588 if logfile and logfilefd not in (0, 1, 2):
588 if logfile and logfilefd not in (0, 1, 2):
589 os.close(logfilefd)
589 os.close(logfilefd)
590
590
591 if runfn:
591 if runfn:
592 return runfn()
592 return runfn()
593
593
594 def tryimportone(ui, repo, hunk, parents, opts, msgs, updatefunc):
594 def tryimportone(ui, repo, hunk, parents, opts, msgs, updatefunc):
595 """Utility function used by commands.import to import a single patch
595 """Utility function used by commands.import to import a single patch
596
596
597 This function is explicitly defined here to help the evolve extension to
597 This function is explicitly defined here to help the evolve extension to
598 wrap this part of the import logic.
598 wrap this part of the import logic.
599
599
600 The API is currently a bit ugly because it a simple code translation from
600 The API is currently a bit ugly because it a simple code translation from
601 the import command. Feel free to make it better.
601 the import command. Feel free to make it better.
602
602
603 :hunk: a patch (as a binary string)
603 :hunk: a patch (as a binary string)
604 :parents: nodes that will be parent of the created commit
604 :parents: nodes that will be parent of the created commit
605 :opts: the full dict of option passed to the import command
605 :opts: the full dict of option passed to the import command
606 :msgs: list to save commit message to.
606 :msgs: list to save commit message to.
607 (used in case we need to save it when failing)
607 (used in case we need to save it when failing)
608 :updatefunc: a function that update a repo to a given node
608 :updatefunc: a function that update a repo to a given node
609 updatefunc(<repo>, <node>)
609 updatefunc(<repo>, <node>)
610 """
610 """
611 tmpname, message, user, date, branch, nodeid, p1, p2 = \
611 tmpname, message, user, date, branch, nodeid, p1, p2 = \
612 patch.extract(ui, hunk)
612 patch.extract(ui, hunk)
613
613
614 update = not opts.get('bypass')
614 update = not opts.get('bypass')
615 strip = opts["strip"]
615 strip = opts["strip"]
616 sim = float(opts.get('similarity') or 0)
616 sim = float(opts.get('similarity') or 0)
617 if not tmpname:
617 if not tmpname:
618 return (None, None, False)
618 return (None, None, False)
619 msg = _('applied to working directory')
619 msg = _('applied to working directory')
620
620
621 rejects = False
621 rejects = False
622
622
623 try:
623 try:
624 cmdline_message = logmessage(ui, opts)
624 cmdline_message = logmessage(ui, opts)
625 if cmdline_message:
625 if cmdline_message:
626 # pickup the cmdline msg
626 # pickup the cmdline msg
627 message = cmdline_message
627 message = cmdline_message
628 elif message:
628 elif message:
629 # pickup the patch msg
629 # pickup the patch msg
630 message = message.strip()
630 message = message.strip()
631 else:
631 else:
632 # launch the editor
632 # launch the editor
633 message = None
633 message = None
634 ui.debug('message:\n%s\n' % message)
634 ui.debug('message:\n%s\n' % message)
635
635
636 if len(parents) == 1:
636 if len(parents) == 1:
637 parents.append(repo[nullid])
637 parents.append(repo[nullid])
638 if opts.get('exact'):
638 if opts.get('exact'):
639 if not nodeid or not p1:
639 if not nodeid or not p1:
640 raise util.Abort(_('not a Mercurial patch'))
640 raise util.Abort(_('not a Mercurial patch'))
641 p1 = repo[p1]
641 p1 = repo[p1]
642 p2 = repo[p2 or nullid]
642 p2 = repo[p2 or nullid]
643 elif p2:
643 elif p2:
644 try:
644 try:
645 p1 = repo[p1]
645 p1 = repo[p1]
646 p2 = repo[p2]
646 p2 = repo[p2]
647 # Without any options, consider p2 only if the
647 # Without any options, consider p2 only if the
648 # patch is being applied on top of the recorded
648 # patch is being applied on top of the recorded
649 # first parent.
649 # first parent.
650 if p1 != parents[0]:
650 if p1 != parents[0]:
651 p1 = parents[0]
651 p1 = parents[0]
652 p2 = repo[nullid]
652 p2 = repo[nullid]
653 except error.RepoError:
653 except error.RepoError:
654 p1, p2 = parents
654 p1, p2 = parents
655 if p2.node() == nullid:
655 if p2.node() == nullid:
656 ui.warn(_("warning: import the patch as a normal revision\n"
656 ui.warn(_("warning: import the patch as a normal revision\n"
657 "(use --exact to import the patch as a merge)\n"))
657 "(use --exact to import the patch as a merge)\n"))
658 else:
658 else:
659 p1, p2 = parents
659 p1, p2 = parents
660
660
661 n = None
661 n = None
662 if update:
662 if update:
663 repo.dirstate.beginparentchange()
663 repo.dirstate.beginparentchange()
664 if p1 != parents[0]:
664 if p1 != parents[0]:
665 updatefunc(repo, p1.node())
665 updatefunc(repo, p1.node())
666 if p2 != parents[1]:
666 if p2 != parents[1]:
667 repo.setparents(p1.node(), p2.node())
667 repo.setparents(p1.node(), p2.node())
668
668
669 if opts.get('exact') or opts.get('import_branch'):
669 if opts.get('exact') or opts.get('import_branch'):
670 repo.dirstate.setbranch(branch or 'default')
670 repo.dirstate.setbranch(branch or 'default')
671
671
672 partial = opts.get('partial', False)
672 partial = opts.get('partial', False)
673 files = set()
673 files = set()
674 try:
674 try:
675 patch.patch(ui, repo, tmpname, strip=strip, files=files,
675 patch.patch(ui, repo, tmpname, strip=strip, files=files,
676 eolmode=None, similarity=sim / 100.0)
676 eolmode=None, similarity=sim / 100.0)
677 except patch.PatchError, e:
677 except patch.PatchError, e:
678 if not partial:
678 if not partial:
679 raise util.Abort(str(e))
679 raise util.Abort(str(e))
680 if partial:
680 if partial:
681 rejects = True
681 rejects = True
682
682
683 files = list(files)
683 files = list(files)
684 if opts.get('no_commit'):
684 if opts.get('no_commit'):
685 if message:
685 if message:
686 msgs.append(message)
686 msgs.append(message)
687 else:
687 else:
688 if opts.get('exact') or p2:
688 if opts.get('exact') or p2:
689 # If you got here, you either use --force and know what
689 # If you got here, you either use --force and know what
690 # you are doing or used --exact or a merge patch while
690 # you are doing or used --exact or a merge patch while
691 # being updated to its first parent.
691 # being updated to its first parent.
692 m = None
692 m = None
693 else:
693 else:
694 m = scmutil.matchfiles(repo, files or [])
694 m = scmutil.matchfiles(repo, files or [])
695 editform = mergeeditform(repo[None], 'import.normal')
695 editform = mergeeditform(repo[None], 'import.normal')
696 if opts.get('exact'):
696 if opts.get('exact'):
697 editor = None
697 editor = None
698 else:
698 else:
699 editor = getcommiteditor(editform=editform, **opts)
699 editor = getcommiteditor(editform=editform, **opts)
700 n = repo.commit(message, opts.get('user') or user,
700 n = repo.commit(message, opts.get('user') or user,
701 opts.get('date') or date, match=m,
701 opts.get('date') or date, match=m,
702 editor=editor, force=partial)
702 editor=editor, force=partial)
703 repo.dirstate.endparentchange()
703 repo.dirstate.endparentchange()
704 else:
704 else:
705 if opts.get('exact') or opts.get('import_branch'):
705 if opts.get('exact') or opts.get('import_branch'):
706 branch = branch or 'default'
706 branch = branch or 'default'
707 else:
707 else:
708 branch = p1.branch()
708 branch = p1.branch()
709 store = patch.filestore()
709 store = patch.filestore()
710 try:
710 try:
711 files = set()
711 files = set()
712 try:
712 try:
713 patch.patchrepo(ui, repo, p1, store, tmpname, strip,
713 patch.patchrepo(ui, repo, p1, store, tmpname, strip,
714 files, eolmode=None)
714 files, eolmode=None)
715 except patch.PatchError, e:
715 except patch.PatchError, e:
716 raise util.Abort(str(e))
716 raise util.Abort(str(e))
717 if opts.get('exact'):
717 if opts.get('exact'):
718 editor = None
718 editor = None
719 else:
719 else:
720 editor = getcommiteditor(editform='import.bypass')
720 editor = getcommiteditor(editform='import.bypass')
721 memctx = context.makememctx(repo, (p1.node(), p2.node()),
721 memctx = context.makememctx(repo, (p1.node(), p2.node()),
722 message,
722 message,
723 opts.get('user') or user,
723 opts.get('user') or user,
724 opts.get('date') or date,
724 opts.get('date') or date,
725 branch, files, store,
725 branch, files, store,
726 editor=editor)
726 editor=editor)
727 n = memctx.commit()
727 n = memctx.commit()
728 finally:
728 finally:
729 store.close()
729 store.close()
730 if opts.get('exact') and opts.get('no_commit'):
730 if opts.get('exact') and opts.get('no_commit'):
731 # --exact with --no-commit is still useful in that it does merge
731 # --exact with --no-commit is still useful in that it does merge
732 # and branch bits
732 # and branch bits
733 ui.warn(_("warning: can't check exact import with --no-commit\n"))
733 ui.warn(_("warning: can't check exact import with --no-commit\n"))
734 elif opts.get('exact') and hex(n) != nodeid:
734 elif opts.get('exact') and hex(n) != nodeid:
735 raise util.Abort(_('patch is damaged or loses information'))
735 raise util.Abort(_('patch is damaged or loses information'))
736 if n:
736 if n:
737 # i18n: refers to a short changeset id
737 # i18n: refers to a short changeset id
738 msg = _('created %s') % short(n)
738 msg = _('created %s') % short(n)
739 return (msg, n, rejects)
739 return (msg, n, rejects)
740 finally:
740 finally:
741 os.unlink(tmpname)
741 os.unlink(tmpname)
742
742
743 def export(repo, revs, template='hg-%h.patch', fp=None, switch_parent=False,
743 def export(repo, revs, template='hg-%h.patch', fp=None, switch_parent=False,
744 opts=None):
744 opts=None):
745 '''export changesets as hg patches.'''
745 '''export changesets as hg patches.'''
746
746
747 total = len(revs)
747 total = len(revs)
748 revwidth = max([len(str(rev)) for rev in revs])
748 revwidth = max([len(str(rev)) for rev in revs])
749 filemode = {}
749 filemode = {}
750
750
751 def single(rev, seqno, fp):
751 def single(rev, seqno, fp):
752 ctx = repo[rev]
752 ctx = repo[rev]
753 node = ctx.node()
753 node = ctx.node()
754 parents = [p.node() for p in ctx.parents() if p]
754 parents = [p.node() for p in ctx.parents() if p]
755 branch = ctx.branch()
755 branch = ctx.branch()
756 if switch_parent:
756 if switch_parent:
757 parents.reverse()
757 parents.reverse()
758 prev = (parents and parents[0]) or nullid
758 prev = (parents and parents[0]) or nullid
759
759
760 shouldclose = False
760 shouldclose = False
761 if not fp and len(template) > 0:
761 if not fp and len(template) > 0:
762 desc_lines = ctx.description().rstrip().split('\n')
762 desc_lines = ctx.description().rstrip().split('\n')
763 desc = desc_lines[0] #Commit always has a first line.
763 desc = desc_lines[0] #Commit always has a first line.
764 fp = makefileobj(repo, template, node, desc=desc, total=total,
764 fp = makefileobj(repo, template, node, desc=desc, total=total,
765 seqno=seqno, revwidth=revwidth, mode='wb',
765 seqno=seqno, revwidth=revwidth, mode='wb',
766 modemap=filemode)
766 modemap=filemode)
767 if fp != template:
767 if fp != template:
768 shouldclose = True
768 shouldclose = True
769 if fp and fp != sys.stdout and util.safehasattr(fp, 'name'):
769 if fp and fp != sys.stdout and util.safehasattr(fp, 'name'):
770 repo.ui.note("%s\n" % fp.name)
770 repo.ui.note("%s\n" % fp.name)
771
771
772 if not fp:
772 if not fp:
773 write = repo.ui.write
773 write = repo.ui.write
774 else:
774 else:
775 def write(s, **kw):
775 def write(s, **kw):
776 fp.write(s)
776 fp.write(s)
777
777
778
778
779 write("# HG changeset patch\n")
779 write("# HG changeset patch\n")
780 write("# User %s\n" % ctx.user())
780 write("# User %s\n" % ctx.user())
781 write("# Date %d %d\n" % ctx.date())
781 write("# Date %d %d\n" % ctx.date())
782 write("# %s\n" % util.datestr(ctx.date()))
782 write("# %s\n" % util.datestr(ctx.date()))
783 if branch and branch != 'default':
783 if branch and branch != 'default':
784 write("# Branch %s\n" % branch)
784 write("# Branch %s\n" % branch)
785 write("# Node ID %s\n" % hex(node))
785 write("# Node ID %s\n" % hex(node))
786 write("# Parent %s\n" % hex(prev))
786 write("# Parent %s\n" % hex(prev))
787 if len(parents) > 1:
787 if len(parents) > 1:
788 write("# Parent %s\n" % hex(parents[1]))
788 write("# Parent %s\n" % hex(parents[1]))
789 write(ctx.description().rstrip())
789 write(ctx.description().rstrip())
790 write("\n\n")
790 write("\n\n")
791
791
792 for chunk, label in patch.diffui(repo, prev, node, opts=opts):
792 for chunk, label in patch.diffui(repo, prev, node, opts=opts):
793 write(chunk, label=label)
793 write(chunk, label=label)
794
794
795 if shouldclose:
795 if shouldclose:
796 fp.close()
796 fp.close()
797
797
798 for seqno, rev in enumerate(revs):
798 for seqno, rev in enumerate(revs):
799 single(rev, seqno + 1, fp)
799 single(rev, seqno + 1, fp)
800
800
801 def diffordiffstat(ui, repo, diffopts, node1, node2, match,
801 def diffordiffstat(ui, repo, diffopts, node1, node2, match,
802 changes=None, stat=False, fp=None, prefix='',
802 changes=None, stat=False, fp=None, prefix='',
803 listsubrepos=False):
803 listsubrepos=False):
804 '''show diff or diffstat.'''
804 '''show diff or diffstat.'''
805 if fp is None:
805 if fp is None:
806 write = ui.write
806 write = ui.write
807 else:
807 else:
808 def write(s, **kw):
808 def write(s, **kw):
809 fp.write(s)
809 fp.write(s)
810
810
811 if stat:
811 if stat:
812 diffopts = diffopts.copy(context=0)
812 diffopts = diffopts.copy(context=0)
813 width = 80
813 width = 80
814 if not ui.plain():
814 if not ui.plain():
815 width = ui.termwidth()
815 width = ui.termwidth()
816 chunks = patch.diff(repo, node1, node2, match, changes, diffopts,
816 chunks = patch.diff(repo, node1, node2, match, changes, diffopts,
817 prefix=prefix)
817 prefix=prefix)
818 for chunk, label in patch.diffstatui(util.iterlines(chunks),
818 for chunk, label in patch.diffstatui(util.iterlines(chunks),
819 width=width,
819 width=width,
820 git=diffopts.git):
820 git=diffopts.git):
821 write(chunk, label=label)
821 write(chunk, label=label)
822 else:
822 else:
823 for chunk, label in patch.diffui(repo, node1, node2, match,
823 for chunk, label in patch.diffui(repo, node1, node2, match,
824 changes, diffopts, prefix=prefix):
824 changes, diffopts, prefix=prefix):
825 write(chunk, label=label)
825 write(chunk, label=label)
826
826
827 if listsubrepos:
827 if listsubrepos:
828 ctx1 = repo[node1]
828 ctx1 = repo[node1]
829 ctx2 = repo[node2]
829 ctx2 = repo[node2]
830 for subpath, sub in scmutil.itersubrepos(ctx1, ctx2):
830 for subpath, sub in scmutil.itersubrepos(ctx1, ctx2):
831 tempnode2 = node2
831 tempnode2 = node2
832 try:
832 try:
833 if node2 is not None:
833 if node2 is not None:
834 tempnode2 = ctx2.substate[subpath][1]
834 tempnode2 = ctx2.substate[subpath][1]
835 except KeyError:
835 except KeyError:
836 # A subrepo that existed in node1 was deleted between node1 and
836 # A subrepo that existed in node1 was deleted between node1 and
837 # node2 (inclusive). Thus, ctx2's substate won't contain that
837 # node2 (inclusive). Thus, ctx2's substate won't contain that
838 # subpath. The best we can do is to ignore it.
838 # subpath. The best we can do is to ignore it.
839 tempnode2 = None
839 tempnode2 = None
840 submatch = matchmod.narrowmatcher(subpath, match)
840 submatch = matchmod.narrowmatcher(subpath, match)
841 sub.diff(ui, diffopts, tempnode2, submatch, changes=changes,
841 sub.diff(ui, diffopts, tempnode2, submatch, changes=changes,
842 stat=stat, fp=fp, prefix=prefix)
842 stat=stat, fp=fp, prefix=prefix)
843
843
844 class changeset_printer(object):
844 class changeset_printer(object):
845 '''show changeset information when templating not requested.'''
845 '''show changeset information when templating not requested.'''
846
846
847 def __init__(self, ui, repo, matchfn, diffopts, buffered):
847 def __init__(self, ui, repo, matchfn, diffopts, buffered):
848 self.ui = ui
848 self.ui = ui
849 self.repo = repo
849 self.repo = repo
850 self.buffered = buffered
850 self.buffered = buffered
851 self.matchfn = matchfn
851 self.matchfn = matchfn
852 self.diffopts = diffopts
852 self.diffopts = diffopts
853 self.header = {}
853 self.header = {}
854 self.hunk = {}
854 self.hunk = {}
855 self.lastheader = None
855 self.lastheader = None
856 self.footer = None
856 self.footer = None
857
857
858 def flush(self, rev):
858 def flush(self, rev):
859 if rev in self.header:
859 if rev in self.header:
860 h = self.header[rev]
860 h = self.header[rev]
861 if h != self.lastheader:
861 if h != self.lastheader:
862 self.lastheader = h
862 self.lastheader = h
863 self.ui.write(h)
863 self.ui.write(h)
864 del self.header[rev]
864 del self.header[rev]
865 if rev in self.hunk:
865 if rev in self.hunk:
866 self.ui.write(self.hunk[rev])
866 self.ui.write(self.hunk[rev])
867 del self.hunk[rev]
867 del self.hunk[rev]
868 return 1
868 return 1
869 return 0
869 return 0
870
870
871 def close(self):
871 def close(self):
872 if self.footer:
872 if self.footer:
873 self.ui.write(self.footer)
873 self.ui.write(self.footer)
874
874
875 def show(self, ctx, copies=None, matchfn=None, **props):
875 def show(self, ctx, copies=None, matchfn=None, **props):
876 if self.buffered:
876 if self.buffered:
877 self.ui.pushbuffer()
877 self.ui.pushbuffer()
878 self._show(ctx, copies, matchfn, props)
878 self._show(ctx, copies, matchfn, props)
879 self.hunk[ctx.rev()] = self.ui.popbuffer(labeled=True)
879 self.hunk[ctx.rev()] = self.ui.popbuffer(labeled=True)
880 else:
880 else:
881 self._show(ctx, copies, matchfn, props)
881 self._show(ctx, copies, matchfn, props)
882
882
883 def _show(self, ctx, copies, matchfn, props):
883 def _show(self, ctx, copies, matchfn, props):
884 '''show a single changeset or file revision'''
884 '''show a single changeset or file revision'''
885 changenode = ctx.node()
885 changenode = ctx.node()
886 rev = ctx.rev()
886 rev = ctx.rev()
887
887
888 if self.ui.quiet:
888 if self.ui.quiet:
889 self.ui.write("%d:%s\n" % (rev, short(changenode)),
889 self.ui.write("%d:%s\n" % (rev, short(changenode)),
890 label='log.node')
890 label='log.node')
891 return
891 return
892
892
893 log = self.repo.changelog
893 log = self.repo.changelog
894 date = util.datestr(ctx.date())
894 date = util.datestr(ctx.date())
895
895
896 hexfunc = self.ui.debugflag and hex or short
896 hexfunc = self.ui.debugflag and hex or short
897
897
898 parents = [(p, hexfunc(log.node(p)))
898 parents = [(p, hexfunc(log.node(p)))
899 for p in self._meaningful_parentrevs(log, rev)]
899 for p in self._meaningful_parentrevs(log, rev)]
900
900
901 # i18n: column positioning for "hg log"
901 # i18n: column positioning for "hg log"
902 self.ui.write(_("changeset: %d:%s\n") % (rev, hexfunc(changenode)),
902 self.ui.write(_("changeset: %d:%s\n") % (rev, hexfunc(changenode)),
903 label='log.changeset changeset.%s' % ctx.phasestr())
903 label='log.changeset changeset.%s' % ctx.phasestr())
904
904
905 branch = ctx.branch()
905 branch = ctx.branch()
906 # don't show the default branch name
906 # don't show the default branch name
907 if branch != 'default':
907 if branch != 'default':
908 # i18n: column positioning for "hg log"
908 # i18n: column positioning for "hg log"
909 self.ui.write(_("branch: %s\n") % branch,
909 self.ui.write(_("branch: %s\n") % branch,
910 label='log.branch')
910 label='log.branch')
911 for bookmark in self.repo.nodebookmarks(changenode):
911 for bookmark in self.repo.nodebookmarks(changenode):
912 # i18n: column positioning for "hg log"
912 # i18n: column positioning for "hg log"
913 self.ui.write(_("bookmark: %s\n") % bookmark,
913 self.ui.write(_("bookmark: %s\n") % bookmark,
914 label='log.bookmark')
914 label='log.bookmark')
915 for tag in self.repo.nodetags(changenode):
915 for tag in self.repo.nodetags(changenode):
916 # i18n: column positioning for "hg log"
916 # i18n: column positioning for "hg log"
917 self.ui.write(_("tag: %s\n") % tag,
917 self.ui.write(_("tag: %s\n") % tag,
918 label='log.tag')
918 label='log.tag')
919 if self.ui.debugflag:
919 if self.ui.debugflag:
920 # i18n: column positioning for "hg log"
920 # i18n: column positioning for "hg log"
921 self.ui.write(_("phase: %s\n") % _(ctx.phasestr()),
921 self.ui.write(_("phase: %s\n") % _(ctx.phasestr()),
922 label='log.phase')
922 label='log.phase')
923 for parent in parents:
923 for parent in parents:
924 label = 'log.parent changeset.%s' % self.repo[parent[0]].phasestr()
924 label = 'log.parent changeset.%s' % self.repo[parent[0]].phasestr()
925 # i18n: column positioning for "hg log"
925 # i18n: column positioning for "hg log"
926 self.ui.write(_("parent: %d:%s\n") % parent,
926 self.ui.write(_("parent: %d:%s\n") % parent,
927 label=label)
927 label=label)
928
928
929 if self.ui.debugflag:
929 if self.ui.debugflag:
930 mnode = ctx.manifestnode()
930 mnode = ctx.manifestnode()
931 # i18n: column positioning for "hg log"
931 # i18n: column positioning for "hg log"
932 self.ui.write(_("manifest: %d:%s\n") %
932 self.ui.write(_("manifest: %d:%s\n") %
933 (self.repo.manifest.rev(mnode), hex(mnode)),
933 (self.repo.manifest.rev(mnode), hex(mnode)),
934 label='ui.debug log.manifest')
934 label='ui.debug log.manifest')
935 # i18n: column positioning for "hg log"
935 # i18n: column positioning for "hg log"
936 self.ui.write(_("user: %s\n") % ctx.user(),
936 self.ui.write(_("user: %s\n") % ctx.user(),
937 label='log.user')
937 label='log.user')
938 # i18n: column positioning for "hg log"
938 # i18n: column positioning for "hg log"
939 self.ui.write(_("date: %s\n") % date,
939 self.ui.write(_("date: %s\n") % date,
940 label='log.date')
940 label='log.date')
941
941
942 if self.ui.debugflag:
942 if self.ui.debugflag:
943 files = self.repo.status(log.parents(changenode)[0], changenode)[:3]
943 files = self.repo.status(log.parents(changenode)[0], changenode)[:3]
944 for key, value in zip([# i18n: column positioning for "hg log"
944 for key, value in zip([# i18n: column positioning for "hg log"
945 _("files:"),
945 _("files:"),
946 # i18n: column positioning for "hg log"
946 # i18n: column positioning for "hg log"
947 _("files+:"),
947 _("files+:"),
948 # i18n: column positioning for "hg log"
948 # i18n: column positioning for "hg log"
949 _("files-:")], files):
949 _("files-:")], files):
950 if value:
950 if value:
951 self.ui.write("%-12s %s\n" % (key, " ".join(value)),
951 self.ui.write("%-12s %s\n" % (key, " ".join(value)),
952 label='ui.debug log.files')
952 label='ui.debug log.files')
953 elif ctx.files() and self.ui.verbose:
953 elif ctx.files() and self.ui.verbose:
954 # i18n: column positioning for "hg log"
954 # i18n: column positioning for "hg log"
955 self.ui.write(_("files: %s\n") % " ".join(ctx.files()),
955 self.ui.write(_("files: %s\n") % " ".join(ctx.files()),
956 label='ui.note log.files')
956 label='ui.note log.files')
957 if copies and self.ui.verbose:
957 if copies and self.ui.verbose:
958 copies = ['%s (%s)' % c for c in copies]
958 copies = ['%s (%s)' % c for c in copies]
959 # i18n: column positioning for "hg log"
959 # i18n: column positioning for "hg log"
960 self.ui.write(_("copies: %s\n") % ' '.join(copies),
960 self.ui.write(_("copies: %s\n") % ' '.join(copies),
961 label='ui.note log.copies')
961 label='ui.note log.copies')
962
962
963 extra = ctx.extra()
963 extra = ctx.extra()
964 if extra and self.ui.debugflag:
964 if extra and self.ui.debugflag:
965 for key, value in sorted(extra.items()):
965 for key, value in sorted(extra.items()):
966 # i18n: column positioning for "hg log"
966 # i18n: column positioning for "hg log"
967 self.ui.write(_("extra: %s=%s\n")
967 self.ui.write(_("extra: %s=%s\n")
968 % (key, value.encode('string_escape')),
968 % (key, value.encode('string_escape')),
969 label='ui.debug log.extra')
969 label='ui.debug log.extra')
970
970
971 description = ctx.description().strip()
971 description = ctx.description().strip()
972 if description:
972 if description:
973 if self.ui.verbose:
973 if self.ui.verbose:
974 self.ui.write(_("description:\n"),
974 self.ui.write(_("description:\n"),
975 label='ui.note log.description')
975 label='ui.note log.description')
976 self.ui.write(description,
976 self.ui.write(description,
977 label='ui.note log.description')
977 label='ui.note log.description')
978 self.ui.write("\n\n")
978 self.ui.write("\n\n")
979 else:
979 else:
980 # i18n: column positioning for "hg log"
980 # i18n: column positioning for "hg log"
981 self.ui.write(_("summary: %s\n") %
981 self.ui.write(_("summary: %s\n") %
982 description.splitlines()[0],
982 description.splitlines()[0],
983 label='log.summary')
983 label='log.summary')
984 self.ui.write("\n")
984 self.ui.write("\n")
985
985
986 self.showpatch(changenode, matchfn)
986 self.showpatch(changenode, matchfn)
987
987
988 def showpatch(self, node, matchfn):
988 def showpatch(self, node, matchfn):
989 if not matchfn:
989 if not matchfn:
990 matchfn = self.matchfn
990 matchfn = self.matchfn
991 if matchfn:
991 if matchfn:
992 stat = self.diffopts.get('stat')
992 stat = self.diffopts.get('stat')
993 diff = self.diffopts.get('patch')
993 diff = self.diffopts.get('patch')
994 diffopts = patch.diffopts(self.ui, self.diffopts)
994 diffopts = patch.diffopts(self.ui, self.diffopts)
995 prev = self.repo.changelog.parents(node)[0]
995 prev = self.repo.changelog.parents(node)[0]
996 if stat:
996 if stat:
997 diffordiffstat(self.ui, self.repo, diffopts, prev, node,
997 diffordiffstat(self.ui, self.repo, diffopts, prev, node,
998 match=matchfn, stat=True)
998 match=matchfn, stat=True)
999 if diff:
999 if diff:
1000 if stat:
1000 if stat:
1001 self.ui.write("\n")
1001 self.ui.write("\n")
1002 diffordiffstat(self.ui, self.repo, diffopts, prev, node,
1002 diffordiffstat(self.ui, self.repo, diffopts, prev, node,
1003 match=matchfn, stat=False)
1003 match=matchfn, stat=False)
1004 self.ui.write("\n")
1004 self.ui.write("\n")
1005
1005
1006 def _meaningful_parentrevs(self, log, rev):
1006 def _meaningful_parentrevs(self, log, rev):
1007 """Return list of meaningful (or all if debug) parentrevs for rev.
1007 """Return list of meaningful (or all if debug) parentrevs for rev.
1008
1008
1009 For merges (two non-nullrev revisions) both parents are meaningful.
1009 For merges (two non-nullrev revisions) both parents are meaningful.
1010 Otherwise the first parent revision is considered meaningful if it
1010 Otherwise the first parent revision is considered meaningful if it
1011 is not the preceding revision.
1011 is not the preceding revision.
1012 """
1012 """
1013 parents = log.parentrevs(rev)
1013 parents = log.parentrevs(rev)
1014 if not self.ui.debugflag and parents[1] == nullrev:
1014 if not self.ui.debugflag and parents[1] == nullrev:
1015 if parents[0] >= rev - 1:
1015 if parents[0] >= rev - 1:
1016 parents = []
1016 parents = []
1017 else:
1017 else:
1018 parents = [parents[0]]
1018 parents = [parents[0]]
1019 return parents
1019 return parents
1020
1020
1021 class jsonchangeset(changeset_printer):
1021 class jsonchangeset(changeset_printer):
1022 '''format changeset information.'''
1022 '''format changeset information.'''
1023
1023
1024 def __init__(self, ui, repo, matchfn, diffopts, buffered):
1024 def __init__(self, ui, repo, matchfn, diffopts, buffered):
1025 changeset_printer.__init__(self, ui, repo, matchfn, diffopts, buffered)
1025 changeset_printer.__init__(self, ui, repo, matchfn, diffopts, buffered)
1026 self.cache = {}
1026 self.cache = {}
1027 self._first = True
1027 self._first = True
1028
1028
1029 def close(self):
1029 def close(self):
1030 if not self._first:
1030 if not self._first:
1031 self.ui.write("\n]\n")
1031 self.ui.write("\n]\n")
1032 else:
1032 else:
1033 self.ui.write("[]\n")
1033 self.ui.write("[]\n")
1034
1034
1035 def _show(self, ctx, copies, matchfn, props):
1035 def _show(self, ctx, copies, matchfn, props):
1036 '''show a single changeset or file revision'''
1036 '''show a single changeset or file revision'''
1037 hexnode = hex(ctx.node())
1037 hexnode = hex(ctx.node())
1038 rev = ctx.rev()
1038 rev = ctx.rev()
1039 j = encoding.jsonescape
1039 j = encoding.jsonescape
1040
1040
1041 if self._first:
1041 if self._first:
1042 self.ui.write("[\n {")
1042 self.ui.write("[\n {")
1043 self._first = False
1043 self._first = False
1044 else:
1044 else:
1045 self.ui.write(",\n {")
1045 self.ui.write(",\n {")
1046
1046
1047 if self.ui.quiet:
1047 if self.ui.quiet:
1048 self.ui.write('\n "rev": %d' % rev)
1048 self.ui.write('\n "rev": %d' % rev)
1049 self.ui.write(',\n "node": "%s"' % hexnode)
1049 self.ui.write(',\n "node": "%s"' % hexnode)
1050 self.ui.write('\n }')
1050 self.ui.write('\n }')
1051 return
1051 return
1052
1052
1053 self.ui.write('\n "rev": %d' % rev)
1053 self.ui.write('\n "rev": %d' % rev)
1054 self.ui.write(',\n "node": "%s"' % hexnode)
1054 self.ui.write(',\n "node": "%s"' % hexnode)
1055 self.ui.write(',\n "branch": "%s"' % j(ctx.branch()))
1055 self.ui.write(',\n "branch": "%s"' % j(ctx.branch()))
1056 self.ui.write(',\n "phase": "%s"' % ctx.phasestr())
1056 self.ui.write(',\n "phase": "%s"' % ctx.phasestr())
1057 self.ui.write(',\n "user": "%s"' % j(ctx.user()))
1057 self.ui.write(',\n "user": "%s"' % j(ctx.user()))
1058 self.ui.write(',\n "date": [%d, %d]' % ctx.date())
1058 self.ui.write(',\n "date": [%d, %d]' % ctx.date())
1059 self.ui.write(',\n "desc": "%s"' % j(ctx.description()))
1059 self.ui.write(',\n "desc": "%s"' % j(ctx.description()))
1060
1060
1061 self.ui.write(',\n "bookmarks": [%s]' %
1061 self.ui.write(',\n "bookmarks": [%s]' %
1062 ", ".join('"%s"' % j(b) for b in ctx.bookmarks()))
1062 ", ".join('"%s"' % j(b) for b in ctx.bookmarks()))
1063 self.ui.write(',\n "tags": [%s]' %
1063 self.ui.write(',\n "tags": [%s]' %
1064 ", ".join('"%s"' % j(t) for t in ctx.tags()))
1064 ", ".join('"%s"' % j(t) for t in ctx.tags()))
1065 self.ui.write(',\n "parents": [%s]' %
1065 self.ui.write(',\n "parents": [%s]' %
1066 ", ".join('"%s"' % c.hex() for c in ctx.parents()))
1066 ", ".join('"%s"' % c.hex() for c in ctx.parents()))
1067
1067
1068 if self.ui.debugflag:
1068 if self.ui.debugflag:
1069 self.ui.write(',\n "manifest": "%s"' % hex(ctx.manifestnode()))
1069 self.ui.write(',\n "manifest": "%s"' % hex(ctx.manifestnode()))
1070
1070
1071 self.ui.write(',\n "extra": {%s}' %
1071 self.ui.write(',\n "extra": {%s}' %
1072 ", ".join('"%s": "%s"' % (j(k), j(v))
1072 ", ".join('"%s": "%s"' % (j(k), j(v))
1073 for k, v in ctx.extra().items()))
1073 for k, v in ctx.extra().items()))
1074
1074
1075 files = ctx.status(ctx.p1())
1075 files = ctx.status(ctx.p1())
1076 self.ui.write(',\n "modified": [%s]' %
1076 self.ui.write(',\n "modified": [%s]' %
1077 ", ".join('"%s"' % j(f) for f in files[0]))
1077 ", ".join('"%s"' % j(f) for f in files[0]))
1078 self.ui.write(',\n "added": [%s]' %
1078 self.ui.write(',\n "added": [%s]' %
1079 ", ".join('"%s"' % j(f) for f in files[1]))
1079 ", ".join('"%s"' % j(f) for f in files[1]))
1080 self.ui.write(',\n "removed": [%s]' %
1080 self.ui.write(',\n "removed": [%s]' %
1081 ", ".join('"%s"' % j(f) for f in files[2]))
1081 ", ".join('"%s"' % j(f) for f in files[2]))
1082
1082
1083 elif self.ui.verbose:
1083 elif self.ui.verbose:
1084 self.ui.write(',\n "files": [%s]' %
1084 self.ui.write(',\n "files": [%s]' %
1085 ", ".join('"%s"' % j(f) for f in ctx.files()))
1085 ", ".join('"%s"' % j(f) for f in ctx.files()))
1086
1086
1087 if copies:
1087 if copies:
1088 self.ui.write(',\n "copies": {%s}' %
1088 self.ui.write(',\n "copies": {%s}' %
1089 ", ".join('"%s": %s' % (j(k), j(copies[k]))
1089 ", ".join('"%s": %s' % (j(k), j(copies[k]))
1090 for k in copies))
1090 for k in copies))
1091
1091
1092 matchfn = self.matchfn
1092 matchfn = self.matchfn
1093 if matchfn:
1093 if matchfn:
1094 stat = self.diffopts.get('stat')
1094 stat = self.diffopts.get('stat')
1095 diff = self.diffopts.get('patch')
1095 diff = self.diffopts.get('patch')
1096 diffopts = patch.diffopts(self.ui, self.diffopts)
1096 diffopts = patch.diffopts(self.ui, self.diffopts)
1097 node, prev = ctx.node(), ctx.p1().node()
1097 node, prev = ctx.node(), ctx.p1().node()
1098 if stat:
1098 if stat:
1099 self.ui.pushbuffer()
1099 self.ui.pushbuffer()
1100 diffordiffstat(self.ui, self.repo, diffopts, prev, node,
1100 diffordiffstat(self.ui, self.repo, diffopts, prev, node,
1101 match=matchfn, stat=True)
1101 match=matchfn, stat=True)
1102 self.ui.write(',\n "diffstat": "%s"' % j(self.ui.popbuffer()))
1102 self.ui.write(',\n "diffstat": "%s"' % j(self.ui.popbuffer()))
1103 if diff:
1103 if diff:
1104 self.ui.pushbuffer()
1104 self.ui.pushbuffer()
1105 diffordiffstat(self.ui, self.repo, diffopts, prev, node,
1105 diffordiffstat(self.ui, self.repo, diffopts, prev, node,
1106 match=matchfn, stat=False)
1106 match=matchfn, stat=False)
1107 self.ui.write(',\n "diff": "%s"' % j(self.ui.popbuffer()))
1107 self.ui.write(',\n "diff": "%s"' % j(self.ui.popbuffer()))
1108
1108
1109 self.ui.write("\n }")
1109 self.ui.write("\n }")
1110
1110
1111 class changeset_templater(changeset_printer):
1111 class changeset_templater(changeset_printer):
1112 '''format changeset information.'''
1112 '''format changeset information.'''
1113
1113
1114 def __init__(self, ui, repo, matchfn, diffopts, tmpl, mapfile, buffered):
1114 def __init__(self, ui, repo, matchfn, diffopts, tmpl, mapfile, buffered):
1115 changeset_printer.__init__(self, ui, repo, matchfn, diffopts, buffered)
1115 changeset_printer.__init__(self, ui, repo, matchfn, diffopts, buffered)
1116 formatnode = ui.debugflag and (lambda x: x) or (lambda x: x[:12])
1116 formatnode = ui.debugflag and (lambda x: x) or (lambda x: x[:12])
1117 defaulttempl = {
1117 defaulttempl = {
1118 'parent': '{rev}:{node|formatnode} ',
1118 'parent': '{rev}:{node|formatnode} ',
1119 'manifest': '{rev}:{node|formatnode}',
1119 'manifest': '{rev}:{node|formatnode}',
1120 'file_copy': '{name} ({source})',
1120 'file_copy': '{name} ({source})',
1121 'extra': '{key}={value|stringescape}'
1121 'extra': '{key}={value|stringescape}'
1122 }
1122 }
1123 # filecopy is preserved for compatibility reasons
1123 # filecopy is preserved for compatibility reasons
1124 defaulttempl['filecopy'] = defaulttempl['file_copy']
1124 defaulttempl['filecopy'] = defaulttempl['file_copy']
1125 self.t = templater.templater(mapfile, {'formatnode': formatnode},
1125 self.t = templater.templater(mapfile, {'formatnode': formatnode},
1126 cache=defaulttempl)
1126 cache=defaulttempl)
1127 if tmpl:
1127 if tmpl:
1128 self.t.cache['changeset'] = tmpl
1128 self.t.cache['changeset'] = tmpl
1129
1129
1130 self.cache = {}
1130 self.cache = {}
1131
1131
1132 def _meaningful_parentrevs(self, ctx):
1132 def _meaningful_parentrevs(self, ctx):
1133 """Return list of meaningful (or all if debug) parentrevs for rev.
1133 """Return list of meaningful (or all if debug) parentrevs for rev.
1134 """
1134 """
1135 parents = ctx.parents()
1135 parents = ctx.parents()
1136 if len(parents) > 1:
1136 if len(parents) > 1:
1137 return parents
1137 return parents
1138 if self.ui.debugflag:
1138 if self.ui.debugflag:
1139 return [parents[0], self.repo['null']]
1139 return [parents[0], self.repo['null']]
1140 if parents[0].rev() >= ctx.rev() - 1:
1140 if parents[0].rev() >= ctx.rev() - 1:
1141 return []
1141 return []
1142 return parents
1142 return parents
1143
1143
1144 def _show(self, ctx, copies, matchfn, props):
1144 def _show(self, ctx, copies, matchfn, props):
1145 '''show a single changeset or file revision'''
1145 '''show a single changeset or file revision'''
1146
1146
1147 showlist = templatekw.showlist
1147 showlist = templatekw.showlist
1148
1148
1149 # showparents() behaviour depends on ui trace level which
1149 # showparents() behaviour depends on ui trace level which
1150 # causes unexpected behaviours at templating level and makes
1150 # causes unexpected behaviours at templating level and makes
1151 # it harder to extract it in a standalone function. Its
1151 # it harder to extract it in a standalone function. Its
1152 # behaviour cannot be changed so leave it here for now.
1152 # behaviour cannot be changed so leave it here for now.
1153 def showparents(**args):
1153 def showparents(**args):
1154 ctx = args['ctx']
1154 ctx = args['ctx']
1155 parents = [[('rev', p.rev()),
1155 parents = [[('rev', p.rev()),
1156 ('node', p.hex()),
1156 ('node', p.hex()),
1157 ('phase', p.phasestr())]
1157 ('phase', p.phasestr())]
1158 for p in self._meaningful_parentrevs(ctx)]
1158 for p in self._meaningful_parentrevs(ctx)]
1159 return showlist('parent', parents, **args)
1159 return showlist('parent', parents, **args)
1160
1160
1161 props = props.copy()
1161 props = props.copy()
1162 props.update(templatekw.keywords)
1162 props.update(templatekw.keywords)
1163 props['parents'] = showparents
1163 props['parents'] = showparents
1164 props['templ'] = self.t
1164 props['templ'] = self.t
1165 props['ctx'] = ctx
1165 props['ctx'] = ctx
1166 props['repo'] = self.repo
1166 props['repo'] = self.repo
1167 props['revcache'] = {'copies': copies}
1167 props['revcache'] = {'copies': copies}
1168 props['cache'] = self.cache
1168 props['cache'] = self.cache
1169
1169
1170 # find correct templates for current mode
1170 # find correct templates for current mode
1171
1171
1172 tmplmodes = [
1172 tmplmodes = [
1173 (True, None),
1173 (True, None),
1174 (self.ui.verbose, 'verbose'),
1174 (self.ui.verbose, 'verbose'),
1175 (self.ui.quiet, 'quiet'),
1175 (self.ui.quiet, 'quiet'),
1176 (self.ui.debugflag, 'debug'),
1176 (self.ui.debugflag, 'debug'),
1177 ]
1177 ]
1178
1178
1179 types = {'header': '', 'footer':'', 'changeset': 'changeset'}
1179 types = {'header': '', 'footer':'', 'changeset': 'changeset'}
1180 for mode, postfix in tmplmodes:
1180 for mode, postfix in tmplmodes:
1181 for type in types:
1181 for type in types:
1182 cur = postfix and ('%s_%s' % (type, postfix)) or type
1182 cur = postfix and ('%s_%s' % (type, postfix)) or type
1183 if mode and cur in self.t:
1183 if mode and cur in self.t:
1184 types[type] = cur
1184 types[type] = cur
1185
1185
1186 try:
1186 try:
1187
1187
1188 # write header
1188 # write header
1189 if types['header']:
1189 if types['header']:
1190 h = templater.stringify(self.t(types['header'], **props))
1190 h = templater.stringify(self.t(types['header'], **props))
1191 if self.buffered:
1191 if self.buffered:
1192 self.header[ctx.rev()] = h
1192 self.header[ctx.rev()] = h
1193 else:
1193 else:
1194 if self.lastheader != h:
1194 if self.lastheader != h:
1195 self.lastheader = h
1195 self.lastheader = h
1196 self.ui.write(h)
1196 self.ui.write(h)
1197
1197
1198 # write changeset metadata, then patch if requested
1198 # write changeset metadata, then patch if requested
1199 key = types['changeset']
1199 key = types['changeset']
1200 self.ui.write(templater.stringify(self.t(key, **props)))
1200 self.ui.write(templater.stringify(self.t(key, **props)))
1201 self.showpatch(ctx.node(), matchfn)
1201 self.showpatch(ctx.node(), matchfn)
1202
1202
1203 if types['footer']:
1203 if types['footer']:
1204 if not self.footer:
1204 if not self.footer:
1205 self.footer = templater.stringify(self.t(types['footer'],
1205 self.footer = templater.stringify(self.t(types['footer'],
1206 **props))
1206 **props))
1207
1207
1208 except KeyError, inst:
1208 except KeyError, inst:
1209 msg = _("%s: no key named '%s'")
1209 msg = _("%s: no key named '%s'")
1210 raise util.Abort(msg % (self.t.mapfile, inst.args[0]))
1210 raise util.Abort(msg % (self.t.mapfile, inst.args[0]))
1211 except SyntaxError, inst:
1211 except SyntaxError, inst:
1212 raise util.Abort('%s: %s' % (self.t.mapfile, inst.args[0]))
1212 raise util.Abort('%s: %s' % (self.t.mapfile, inst.args[0]))
1213
1213
1214 def gettemplate(ui, tmpl, style):
1214 def gettemplate(ui, tmpl, style):
1215 """
1215 """
1216 Find the template matching the given template spec or style.
1216 Find the template matching the given template spec or style.
1217 """
1217 """
1218
1218
1219 # ui settings
1219 # ui settings
1220 if not tmpl and not style: # template are stronger than style
1220 if not tmpl and not style: # template are stronger than style
1221 tmpl = ui.config('ui', 'logtemplate')
1221 tmpl = ui.config('ui', 'logtemplate')
1222 if tmpl:
1222 if tmpl:
1223 try:
1223 try:
1224 tmpl = templater.parsestring(tmpl)
1224 tmpl = templater.parsestring(tmpl)
1225 except SyntaxError:
1225 except SyntaxError:
1226 tmpl = templater.parsestring(tmpl, quoted=False)
1226 tmpl = templater.parsestring(tmpl, quoted=False)
1227 return tmpl, None
1227 return tmpl, None
1228 else:
1228 else:
1229 style = util.expandpath(ui.config('ui', 'style', ''))
1229 style = util.expandpath(ui.config('ui', 'style', ''))
1230
1230
1231 if not tmpl and style:
1231 if not tmpl and style:
1232 mapfile = style
1232 mapfile = style
1233 if not os.path.split(mapfile)[0]:
1233 if not os.path.split(mapfile)[0]:
1234 mapname = (templater.templatepath('map-cmdline.' + mapfile)
1234 mapname = (templater.templatepath('map-cmdline.' + mapfile)
1235 or templater.templatepath(mapfile))
1235 or templater.templatepath(mapfile))
1236 if mapname:
1236 if mapname:
1237 mapfile = mapname
1237 mapfile = mapname
1238 return None, mapfile
1238 return None, mapfile
1239
1239
1240 if not tmpl:
1240 if not tmpl:
1241 return None, None
1241 return None, None
1242
1242
1243 # looks like a literal template?
1243 # looks like a literal template?
1244 if '{' in tmpl:
1244 if '{' in tmpl:
1245 return tmpl, None
1245 return tmpl, None
1246
1246
1247 # perhaps a stock style?
1247 # perhaps a stock style?
1248 if not os.path.split(tmpl)[0]:
1248 if not os.path.split(tmpl)[0]:
1249 mapname = (templater.templatepath('map-cmdline.' + tmpl)
1249 mapname = (templater.templatepath('map-cmdline.' + tmpl)
1250 or templater.templatepath(tmpl))
1250 or templater.templatepath(tmpl))
1251 if mapname and os.path.isfile(mapname):
1251 if mapname and os.path.isfile(mapname):
1252 return None, mapname
1252 return None, mapname
1253
1253
1254 # perhaps it's a reference to [templates]
1254 # perhaps it's a reference to [templates]
1255 t = ui.config('templates', tmpl)
1255 t = ui.config('templates', tmpl)
1256 if t:
1256 if t:
1257 try:
1257 try:
1258 tmpl = templater.parsestring(t)
1258 tmpl = templater.parsestring(t)
1259 except SyntaxError:
1259 except SyntaxError:
1260 tmpl = templater.parsestring(t, quoted=False)
1260 tmpl = templater.parsestring(t, quoted=False)
1261 return tmpl, None
1261 return tmpl, None
1262
1262
1263 if tmpl == 'list':
1263 if tmpl == 'list':
1264 ui.write(_("available styles: %s\n") % templater.stylelist())
1264 ui.write(_("available styles: %s\n") % templater.stylelist())
1265 raise util.Abort(_("specify a template"))
1265 raise util.Abort(_("specify a template"))
1266
1266
1267 # perhaps it's a path to a map or a template
1267 # perhaps it's a path to a map or a template
1268 if ('/' in tmpl or '\\' in tmpl) and os.path.isfile(tmpl):
1268 if ('/' in tmpl or '\\' in tmpl) and os.path.isfile(tmpl):
1269 # is it a mapfile for a style?
1269 # is it a mapfile for a style?
1270 if os.path.basename(tmpl).startswith("map-"):
1270 if os.path.basename(tmpl).startswith("map-"):
1271 return None, os.path.realpath(tmpl)
1271 return None, os.path.realpath(tmpl)
1272 tmpl = open(tmpl).read()
1272 tmpl = open(tmpl).read()
1273 return tmpl, None
1273 return tmpl, None
1274
1274
1275 # constant string?
1275 # constant string?
1276 return tmpl, None
1276 return tmpl, None
1277
1277
1278 def show_changeset(ui, repo, opts, buffered=False):
1278 def show_changeset(ui, repo, opts, buffered=False):
1279 """show one changeset using template or regular display.
1279 """show one changeset using template or regular display.
1280
1280
1281 Display format will be the first non-empty hit of:
1281 Display format will be the first non-empty hit of:
1282 1. option 'template'
1282 1. option 'template'
1283 2. option 'style'
1283 2. option 'style'
1284 3. [ui] setting 'logtemplate'
1284 3. [ui] setting 'logtemplate'
1285 4. [ui] setting 'style'
1285 4. [ui] setting 'style'
1286 If all of these values are either the unset or the empty string,
1286 If all of these values are either the unset or the empty string,
1287 regular display via changeset_printer() is done.
1287 regular display via changeset_printer() is done.
1288 """
1288 """
1289 # options
1289 # options
1290 matchfn = None
1290 matchfn = None
1291 if opts.get('patch') or opts.get('stat'):
1291 if opts.get('patch') or opts.get('stat'):
1292 matchfn = scmutil.matchall(repo)
1292 matchfn = scmutil.matchall(repo)
1293
1293
1294 if opts.get('template') == 'json':
1294 if opts.get('template') == 'json':
1295 return jsonchangeset(ui, repo, matchfn, opts, buffered)
1295 return jsonchangeset(ui, repo, matchfn, opts, buffered)
1296
1296
1297 tmpl, mapfile = gettemplate(ui, opts.get('template'), opts.get('style'))
1297 tmpl, mapfile = gettemplate(ui, opts.get('template'), opts.get('style'))
1298
1298
1299 if not tmpl and not mapfile:
1299 if not tmpl and not mapfile:
1300 return changeset_printer(ui, repo, matchfn, opts, buffered)
1300 return changeset_printer(ui, repo, matchfn, opts, buffered)
1301
1301
1302 try:
1302 try:
1303 t = changeset_templater(ui, repo, matchfn, opts, tmpl, mapfile,
1303 t = changeset_templater(ui, repo, matchfn, opts, tmpl, mapfile,
1304 buffered)
1304 buffered)
1305 except SyntaxError, inst:
1305 except SyntaxError, inst:
1306 raise util.Abort(inst.args[0])
1306 raise util.Abort(inst.args[0])
1307 return t
1307 return t
1308
1308
1309 def showmarker(ui, marker):
1309 def showmarker(ui, marker):
1310 """utility function to display obsolescence marker in a readable way
1310 """utility function to display obsolescence marker in a readable way
1311
1311
1312 To be used by debug function."""
1312 To be used by debug function."""
1313 ui.write(hex(marker.precnode()))
1313 ui.write(hex(marker.precnode()))
1314 for repl in marker.succnodes():
1314 for repl in marker.succnodes():
1315 ui.write(' ')
1315 ui.write(' ')
1316 ui.write(hex(repl))
1316 ui.write(hex(repl))
1317 ui.write(' %X ' % marker.flags())
1317 ui.write(' %X ' % marker.flags())
1318 parents = marker.parentnodes()
1318 parents = marker.parentnodes()
1319 if parents is not None:
1319 if parents is not None:
1320 ui.write('{%s} ' % ', '.join(hex(p) for p in parents))
1320 ui.write('{%s} ' % ', '.join(hex(p) for p in parents))
1321 ui.write('(%s) ' % util.datestr(marker.date()))
1321 ui.write('(%s) ' % util.datestr(marker.date()))
1322 ui.write('{%s}' % (', '.join('%r: %r' % t for t in
1322 ui.write('{%s}' % (', '.join('%r: %r' % t for t in
1323 sorted(marker.metadata().items())
1323 sorted(marker.metadata().items())
1324 if t[0] != 'date')))
1324 if t[0] != 'date')))
1325 ui.write('\n')
1325 ui.write('\n')
1326
1326
1327 def finddate(ui, repo, date):
1327 def finddate(ui, repo, date):
1328 """Find the tipmost changeset that matches the given date spec"""
1328 """Find the tipmost changeset that matches the given date spec"""
1329
1329
1330 df = util.matchdate(date)
1330 df = util.matchdate(date)
1331 m = scmutil.matchall(repo)
1331 m = scmutil.matchall(repo)
1332 results = {}
1332 results = {}
1333
1333
1334 def prep(ctx, fns):
1334 def prep(ctx, fns):
1335 d = ctx.date()
1335 d = ctx.date()
1336 if df(d[0]):
1336 if df(d[0]):
1337 results[ctx.rev()] = d
1337 results[ctx.rev()] = d
1338
1338
1339 for ctx in walkchangerevs(repo, m, {'rev': None}, prep):
1339 for ctx in walkchangerevs(repo, m, {'rev': None}, prep):
1340 rev = ctx.rev()
1340 rev = ctx.rev()
1341 if rev in results:
1341 if rev in results:
1342 ui.status(_("found revision %s from %s\n") %
1342 ui.status(_("found revision %s from %s\n") %
1343 (rev, util.datestr(results[rev])))
1343 (rev, util.datestr(results[rev])))
1344 return str(rev)
1344 return str(rev)
1345
1345
1346 raise util.Abort(_("revision matching date not found"))
1346 raise util.Abort(_("revision matching date not found"))
1347
1347
1348 def increasingwindows(windowsize=8, sizelimit=512):
1348 def increasingwindows(windowsize=8, sizelimit=512):
1349 while True:
1349 while True:
1350 yield windowsize
1350 yield windowsize
1351 if windowsize < sizelimit:
1351 if windowsize < sizelimit:
1352 windowsize *= 2
1352 windowsize *= 2
1353
1353
1354 class FileWalkError(Exception):
1354 class FileWalkError(Exception):
1355 pass
1355 pass
1356
1356
1357 def walkfilerevs(repo, match, follow, revs, fncache):
1357 def walkfilerevs(repo, match, follow, revs, fncache):
1358 '''Walks the file history for the matched files.
1358 '''Walks the file history for the matched files.
1359
1359
1360 Returns the changeset revs that are involved in the file history.
1360 Returns the changeset revs that are involved in the file history.
1361
1361
1362 Throws FileWalkError if the file history can't be walked using
1362 Throws FileWalkError if the file history can't be walked using
1363 filelogs alone.
1363 filelogs alone.
1364 '''
1364 '''
1365 wanted = set()
1365 wanted = set()
1366 copies = []
1366 copies = []
1367 minrev, maxrev = min(revs), max(revs)
1367 minrev, maxrev = min(revs), max(revs)
1368 def filerevgen(filelog, last):
1368 def filerevgen(filelog, last):
1369 """
1369 """
1370 Only files, no patterns. Check the history of each file.
1370 Only files, no patterns. Check the history of each file.
1371
1371
1372 Examines filelog entries within minrev, maxrev linkrev range
1372 Examines filelog entries within minrev, maxrev linkrev range
1373 Returns an iterator yielding (linkrev, parentlinkrevs, copied)
1373 Returns an iterator yielding (linkrev, parentlinkrevs, copied)
1374 tuples in backwards order
1374 tuples in backwards order
1375 """
1375 """
1376 cl_count = len(repo)
1376 cl_count = len(repo)
1377 revs = []
1377 revs = []
1378 for j in xrange(0, last + 1):
1378 for j in xrange(0, last + 1):
1379 linkrev = filelog.linkrev(j)
1379 linkrev = filelog.linkrev(j)
1380 if linkrev < minrev:
1380 if linkrev < minrev:
1381 continue
1381 continue
1382 # only yield rev for which we have the changelog, it can
1382 # only yield rev for which we have the changelog, it can
1383 # happen while doing "hg log" during a pull or commit
1383 # happen while doing "hg log" during a pull or commit
1384 if linkrev >= cl_count:
1384 if linkrev >= cl_count:
1385 break
1385 break
1386
1386
1387 parentlinkrevs = []
1387 parentlinkrevs = []
1388 for p in filelog.parentrevs(j):
1388 for p in filelog.parentrevs(j):
1389 if p != nullrev:
1389 if p != nullrev:
1390 parentlinkrevs.append(filelog.linkrev(p))
1390 parentlinkrevs.append(filelog.linkrev(p))
1391 n = filelog.node(j)
1391 n = filelog.node(j)
1392 revs.append((linkrev, parentlinkrevs,
1392 revs.append((linkrev, parentlinkrevs,
1393 follow and filelog.renamed(n)))
1393 follow and filelog.renamed(n)))
1394
1394
1395 return reversed(revs)
1395 return reversed(revs)
1396 def iterfiles():
1396 def iterfiles():
1397 pctx = repo['.']
1397 pctx = repo['.']
1398 for filename in match.files():
1398 for filename in match.files():
1399 if follow:
1399 if follow:
1400 if filename not in pctx:
1400 if filename not in pctx:
1401 raise util.Abort(_('cannot follow file not in parent '
1401 raise util.Abort(_('cannot follow file not in parent '
1402 'revision: "%s"') % filename)
1402 'revision: "%s"') % filename)
1403 yield filename, pctx[filename].filenode()
1403 yield filename, pctx[filename].filenode()
1404 else:
1404 else:
1405 yield filename, None
1405 yield filename, None
1406 for filename_node in copies:
1406 for filename_node in copies:
1407 yield filename_node
1407 yield filename_node
1408
1408
1409 for file_, node in iterfiles():
1409 for file_, node in iterfiles():
1410 filelog = repo.file(file_)
1410 filelog = repo.file(file_)
1411 if not len(filelog):
1411 if not len(filelog):
1412 if node is None:
1412 if node is None:
1413 # A zero count may be a directory or deleted file, so
1413 # A zero count may be a directory or deleted file, so
1414 # try to find matching entries on the slow path.
1414 # try to find matching entries on the slow path.
1415 if follow:
1415 if follow:
1416 raise util.Abort(
1416 raise util.Abort(
1417 _('cannot follow nonexistent file: "%s"') % file_)
1417 _('cannot follow nonexistent file: "%s"') % file_)
1418 raise FileWalkError("Cannot walk via filelog")
1418 raise FileWalkError("Cannot walk via filelog")
1419 else:
1419 else:
1420 continue
1420 continue
1421
1421
1422 if node is None:
1422 if node is None:
1423 last = len(filelog) - 1
1423 last = len(filelog) - 1
1424 else:
1424 else:
1425 last = filelog.rev(node)
1425 last = filelog.rev(node)
1426
1426
1427
1427
1428 # keep track of all ancestors of the file
1428 # keep track of all ancestors of the file
1429 ancestors = set([filelog.linkrev(last)])
1429 ancestors = set([filelog.linkrev(last)])
1430
1430
1431 # iterate from latest to oldest revision
1431 # iterate from latest to oldest revision
1432 for rev, flparentlinkrevs, copied in filerevgen(filelog, last):
1432 for rev, flparentlinkrevs, copied in filerevgen(filelog, last):
1433 if not follow:
1433 if not follow:
1434 if rev > maxrev:
1434 if rev > maxrev:
1435 continue
1435 continue
1436 else:
1436 else:
1437 # Note that last might not be the first interesting
1437 # Note that last might not be the first interesting
1438 # rev to us:
1438 # rev to us:
1439 # if the file has been changed after maxrev, we'll
1439 # if the file has been changed after maxrev, we'll
1440 # have linkrev(last) > maxrev, and we still need
1440 # have linkrev(last) > maxrev, and we still need
1441 # to explore the file graph
1441 # to explore the file graph
1442 if rev not in ancestors:
1442 if rev not in ancestors:
1443 continue
1443 continue
1444 # XXX insert 1327 fix here
1444 # XXX insert 1327 fix here
1445 if flparentlinkrevs:
1445 if flparentlinkrevs:
1446 ancestors.update(flparentlinkrevs)
1446 ancestors.update(flparentlinkrevs)
1447
1447
1448 fncache.setdefault(rev, []).append(file_)
1448 fncache.setdefault(rev, []).append(file_)
1449 wanted.add(rev)
1449 wanted.add(rev)
1450 if copied:
1450 if copied:
1451 copies.append(copied)
1451 copies.append(copied)
1452
1452
1453 return wanted
1453 return wanted
1454
1454
1455 def walkchangerevs(repo, match, opts, prepare):
1455 def walkchangerevs(repo, match, opts, prepare):
1456 '''Iterate over files and the revs in which they changed.
1456 '''Iterate over files and the revs in which they changed.
1457
1457
1458 Callers most commonly need to iterate backwards over the history
1458 Callers most commonly need to iterate backwards over the history
1459 in which they are interested. Doing so has awful (quadratic-looking)
1459 in which they are interested. Doing so has awful (quadratic-looking)
1460 performance, so we use iterators in a "windowed" way.
1460 performance, so we use iterators in a "windowed" way.
1461
1461
1462 We walk a window of revisions in the desired order. Within the
1462 We walk a window of revisions in the desired order. Within the
1463 window, we first walk forwards to gather data, then in the desired
1463 window, we first walk forwards to gather data, then in the desired
1464 order (usually backwards) to display it.
1464 order (usually backwards) to display it.
1465
1465
1466 This function returns an iterator yielding contexts. Before
1466 This function returns an iterator yielding contexts. Before
1467 yielding each context, the iterator will first call the prepare
1467 yielding each context, the iterator will first call the prepare
1468 function on each context in the window in forward order.'''
1468 function on each context in the window in forward order.'''
1469
1469
1470 follow = opts.get('follow') or opts.get('follow_first')
1470 follow = opts.get('follow') or opts.get('follow_first')
1471
1471
1472 if opts.get('rev'):
1472 if opts.get('rev'):
1473 revs = scmutil.revrange(repo, opts.get('rev'))
1473 revs = scmutil.revrange(repo, opts.get('rev'))
1474 elif follow:
1474 elif follow:
1475 revs = repo.revs('reverse(:.)')
1475 revs = repo.revs('reverse(:.)')
1476 else:
1476 else:
1477 revs = revset.spanset(repo)
1477 revs = revset.spanset(repo)
1478 revs.reverse()
1478 revs.reverse()
1479 if not revs:
1479 if not revs:
1480 return []
1480 return []
1481 wanted = set()
1481 wanted = set()
1482 slowpath = match.anypats() or (match.files() and opts.get('removed'))
1482 slowpath = match.anypats() or (match.files() and opts.get('removed'))
1483 fncache = {}
1483 fncache = {}
1484 change = repo.changectx
1484 change = repo.changectx
1485
1485
1486 # First step is to fill wanted, the set of revisions that we want to yield.
1486 # First step is to fill wanted, the set of revisions that we want to yield.
1487 # When it does not induce extra cost, we also fill fncache for revisions in
1487 # When it does not induce extra cost, we also fill fncache for revisions in
1488 # wanted: a cache of filenames that were changed (ctx.files()) and that
1488 # wanted: a cache of filenames that were changed (ctx.files()) and that
1489 # match the file filtering conditions.
1489 # match the file filtering conditions.
1490
1490
1491 if not slowpath and not match.files():
1491 if not slowpath and not match.files():
1492 # No files, no patterns. Display all revs.
1492 # No files, no patterns. Display all revs.
1493 wanted = revs
1493 wanted = revs
1494
1494
1495 if not slowpath and match.files():
1495 if not slowpath and match.files():
1496 # We only have to read through the filelog to find wanted revisions
1496 # We only have to read through the filelog to find wanted revisions
1497
1497
1498 try:
1498 try:
1499 wanted = walkfilerevs(repo, match, follow, revs, fncache)
1499 wanted = walkfilerevs(repo, match, follow, revs, fncache)
1500 except FileWalkError:
1500 except FileWalkError:
1501 slowpath = True
1501 slowpath = True
1502
1502
1503 # We decided to fall back to the slowpath because at least one
1503 # We decided to fall back to the slowpath because at least one
1504 # of the paths was not a file. Check to see if at least one of them
1504 # of the paths was not a file. Check to see if at least one of them
1505 # existed in history, otherwise simply return
1505 # existed in history, otherwise simply return
1506 for path in match.files():
1506 for path in match.files():
1507 if path == '.' or path in repo.store:
1507 if path == '.' or path in repo.store:
1508 break
1508 break
1509 else:
1509 else:
1510 return []
1510 return []
1511
1511
1512 if slowpath:
1512 if slowpath:
1513 # We have to read the changelog to match filenames against
1513 # We have to read the changelog to match filenames against
1514 # changed files
1514 # changed files
1515
1515
1516 if follow:
1516 if follow:
1517 raise util.Abort(_('can only follow copies/renames for explicit '
1517 raise util.Abort(_('can only follow copies/renames for explicit '
1518 'filenames'))
1518 'filenames'))
1519
1519
1520 # The slow path checks files modified in every changeset.
1520 # The slow path checks files modified in every changeset.
1521 # This is really slow on large repos, so compute the set lazily.
1521 # This is really slow on large repos, so compute the set lazily.
1522 class lazywantedset(object):
1522 class lazywantedset(object):
1523 def __init__(self):
1523 def __init__(self):
1524 self.set = set()
1524 self.set = set()
1525 self.revs = set(revs)
1525 self.revs = set(revs)
1526
1526
1527 # No need to worry about locality here because it will be accessed
1527 # No need to worry about locality here because it will be accessed
1528 # in the same order as the increasing window below.
1528 # in the same order as the increasing window below.
1529 def __contains__(self, value):
1529 def __contains__(self, value):
1530 if value in self.set:
1530 if value in self.set:
1531 return True
1531 return True
1532 elif not value in self.revs:
1532 elif not value in self.revs:
1533 return False
1533 return False
1534 else:
1534 else:
1535 self.revs.discard(value)
1535 self.revs.discard(value)
1536 ctx = change(value)
1536 ctx = change(value)
1537 matches = filter(match, ctx.files())
1537 matches = filter(match, ctx.files())
1538 if matches:
1538 if matches:
1539 fncache[value] = matches
1539 fncache[value] = matches
1540 self.set.add(value)
1540 self.set.add(value)
1541 return True
1541 return True
1542 return False
1542 return False
1543
1543
1544 def discard(self, value):
1544 def discard(self, value):
1545 self.revs.discard(value)
1545 self.revs.discard(value)
1546 self.set.discard(value)
1546 self.set.discard(value)
1547
1547
1548 wanted = lazywantedset()
1548 wanted = lazywantedset()
1549
1549
1550 class followfilter(object):
1550 class followfilter(object):
1551 def __init__(self, onlyfirst=False):
1551 def __init__(self, onlyfirst=False):
1552 self.startrev = nullrev
1552 self.startrev = nullrev
1553 self.roots = set()
1553 self.roots = set()
1554 self.onlyfirst = onlyfirst
1554 self.onlyfirst = onlyfirst
1555
1555
1556 def match(self, rev):
1556 def match(self, rev):
1557 def realparents(rev):
1557 def realparents(rev):
1558 if self.onlyfirst:
1558 if self.onlyfirst:
1559 return repo.changelog.parentrevs(rev)[0:1]
1559 return repo.changelog.parentrevs(rev)[0:1]
1560 else:
1560 else:
1561 return filter(lambda x: x != nullrev,
1561 return filter(lambda x: x != nullrev,
1562 repo.changelog.parentrevs(rev))
1562 repo.changelog.parentrevs(rev))
1563
1563
1564 if self.startrev == nullrev:
1564 if self.startrev == nullrev:
1565 self.startrev = rev
1565 self.startrev = rev
1566 return True
1566 return True
1567
1567
1568 if rev > self.startrev:
1568 if rev > self.startrev:
1569 # forward: all descendants
1569 # forward: all descendants
1570 if not self.roots:
1570 if not self.roots:
1571 self.roots.add(self.startrev)
1571 self.roots.add(self.startrev)
1572 for parent in realparents(rev):
1572 for parent in realparents(rev):
1573 if parent in self.roots:
1573 if parent in self.roots:
1574 self.roots.add(rev)
1574 self.roots.add(rev)
1575 return True
1575 return True
1576 else:
1576 else:
1577 # backwards: all parents
1577 # backwards: all parents
1578 if not self.roots:
1578 if not self.roots:
1579 self.roots.update(realparents(self.startrev))
1579 self.roots.update(realparents(self.startrev))
1580 if rev in self.roots:
1580 if rev in self.roots:
1581 self.roots.remove(rev)
1581 self.roots.remove(rev)
1582 self.roots.update(realparents(rev))
1582 self.roots.update(realparents(rev))
1583 return True
1583 return True
1584
1584
1585 return False
1585 return False
1586
1586
1587 # it might be worthwhile to do this in the iterator if the rev range
1587 # it might be worthwhile to do this in the iterator if the rev range
1588 # is descending and the prune args are all within that range
1588 # is descending and the prune args are all within that range
1589 for rev in opts.get('prune', ()):
1589 for rev in opts.get('prune', ()):
1590 rev = repo[rev].rev()
1590 rev = repo[rev].rev()
1591 ff = followfilter()
1591 ff = followfilter()
1592 stop = min(revs[0], revs[-1])
1592 stop = min(revs[0], revs[-1])
1593 for x in xrange(rev, stop - 1, -1):
1593 for x in xrange(rev, stop - 1, -1):
1594 if ff.match(x):
1594 if ff.match(x):
1595 wanted = wanted - [x]
1595 wanted = wanted - [x]
1596
1596
1597 # Now that wanted is correctly initialized, we can iterate over the
1597 # Now that wanted is correctly initialized, we can iterate over the
1598 # revision range, yielding only revisions in wanted.
1598 # revision range, yielding only revisions in wanted.
1599 def iterate():
1599 def iterate():
1600 if follow and not match.files():
1600 if follow and not match.files():
1601 ff = followfilter(onlyfirst=opts.get('follow_first'))
1601 ff = followfilter(onlyfirst=opts.get('follow_first'))
1602 def want(rev):
1602 def want(rev):
1603 return ff.match(rev) and rev in wanted
1603 return ff.match(rev) and rev in wanted
1604 else:
1604 else:
1605 def want(rev):
1605 def want(rev):
1606 return rev in wanted
1606 return rev in wanted
1607
1607
1608 it = iter(revs)
1608 it = iter(revs)
1609 stopiteration = False
1609 stopiteration = False
1610 for windowsize in increasingwindows():
1610 for windowsize in increasingwindows():
1611 nrevs = []
1611 nrevs = []
1612 for i in xrange(windowsize):
1612 for i in xrange(windowsize):
1613 try:
1613 try:
1614 rev = it.next()
1614 rev = it.next()
1615 if want(rev):
1615 if want(rev):
1616 nrevs.append(rev)
1616 nrevs.append(rev)
1617 except (StopIteration):
1617 except (StopIteration):
1618 stopiteration = True
1618 stopiteration = True
1619 break
1619 break
1620 for rev in sorted(nrevs):
1620 for rev in sorted(nrevs):
1621 fns = fncache.get(rev)
1621 fns = fncache.get(rev)
1622 ctx = change(rev)
1622 ctx = change(rev)
1623 if not fns:
1623 if not fns:
1624 def fns_generator():
1624 def fns_generator():
1625 for f in ctx.files():
1625 for f in ctx.files():
1626 if match(f):
1626 if match(f):
1627 yield f
1627 yield f
1628 fns = fns_generator()
1628 fns = fns_generator()
1629 prepare(ctx, fns)
1629 prepare(ctx, fns)
1630 for rev in nrevs:
1630 for rev in nrevs:
1631 yield change(rev)
1631 yield change(rev)
1632
1632
1633 if stopiteration:
1633 if stopiteration:
1634 break
1634 break
1635
1635
1636 return iterate()
1636 return iterate()
1637
1637
1638 def _makefollowlogfilematcher(repo, files, followfirst):
1638 def _makefollowlogfilematcher(repo, files, followfirst):
1639 # When displaying a revision with --patch --follow FILE, we have
1639 # When displaying a revision with --patch --follow FILE, we have
1640 # to know which file of the revision must be diffed. With
1640 # to know which file of the revision must be diffed. With
1641 # --follow, we want the names of the ancestors of FILE in the
1641 # --follow, we want the names of the ancestors of FILE in the
1642 # revision, stored in "fcache". "fcache" is populated by
1642 # revision, stored in "fcache". "fcache" is populated by
1643 # reproducing the graph traversal already done by --follow revset
1643 # reproducing the graph traversal already done by --follow revset
1644 # and relating linkrevs to file names (which is not "correct" but
1644 # and relating linkrevs to file names (which is not "correct" but
1645 # good enough).
1645 # good enough).
1646 fcache = {}
1646 fcache = {}
1647 fcacheready = [False]
1647 fcacheready = [False]
1648 pctx = repo['.']
1648 pctx = repo['.']
1649
1649
1650 def populate():
1650 def populate():
1651 for fn in files:
1651 for fn in files:
1652 for i in ((pctx[fn],), pctx[fn].ancestors(followfirst=followfirst)):
1652 for i in ((pctx[fn],), pctx[fn].ancestors(followfirst=followfirst)):
1653 for c in i:
1653 for c in i:
1654 fcache.setdefault(c.linkrev(), set()).add(c.path())
1654 fcache.setdefault(c.linkrev(), set()).add(c.path())
1655
1655
1656 def filematcher(rev):
1656 def filematcher(rev):
1657 if not fcacheready[0]:
1657 if not fcacheready[0]:
1658 # Lazy initialization
1658 # Lazy initialization
1659 fcacheready[0] = True
1659 fcacheready[0] = True
1660 populate()
1660 populate()
1661 return scmutil.matchfiles(repo, fcache.get(rev, []))
1661 return scmutil.matchfiles(repo, fcache.get(rev, []))
1662
1662
1663 return filematcher
1663 return filematcher
1664
1664
1665 def _makenofollowlogfilematcher(repo, pats, opts):
1665 def _makenofollowlogfilematcher(repo, pats, opts):
1666 '''hook for extensions to override the filematcher for non-follow cases'''
1666 '''hook for extensions to override the filematcher for non-follow cases'''
1667 return None
1667 return None
1668
1668
1669 def _makelogrevset(repo, pats, opts, revs):
1669 def _makelogrevset(repo, pats, opts, revs):
1670 """Return (expr, filematcher) where expr is a revset string built
1670 """Return (expr, filematcher) where expr is a revset string built
1671 from log options and file patterns or None. If --stat or --patch
1671 from log options and file patterns or None. If --stat or --patch
1672 are not passed filematcher is None. Otherwise it is a callable
1672 are not passed filematcher is None. Otherwise it is a callable
1673 taking a revision number and returning a match objects filtering
1673 taking a revision number and returning a match objects filtering
1674 the files to be detailed when displaying the revision.
1674 the files to be detailed when displaying the revision.
1675 """
1675 """
1676 opt2revset = {
1676 opt2revset = {
1677 'no_merges': ('not merge()', None),
1677 'no_merges': ('not merge()', None),
1678 'only_merges': ('merge()', None),
1678 'only_merges': ('merge()', None),
1679 '_ancestors': ('ancestors(%(val)s)', None),
1679 '_ancestors': ('ancestors(%(val)s)', None),
1680 '_fancestors': ('_firstancestors(%(val)s)', None),
1680 '_fancestors': ('_firstancestors(%(val)s)', None),
1681 '_descendants': ('descendants(%(val)s)', None),
1681 '_descendants': ('descendants(%(val)s)', None),
1682 '_fdescendants': ('_firstdescendants(%(val)s)', None),
1682 '_fdescendants': ('_firstdescendants(%(val)s)', None),
1683 '_matchfiles': ('_matchfiles(%(val)s)', None),
1683 '_matchfiles': ('_matchfiles(%(val)s)', None),
1684 'date': ('date(%(val)r)', None),
1684 'date': ('date(%(val)r)', None),
1685 'branch': ('branch(%(val)r)', ' or '),
1685 'branch': ('branch(%(val)r)', ' or '),
1686 '_patslog': ('filelog(%(val)r)', ' or '),
1686 '_patslog': ('filelog(%(val)r)', ' or '),
1687 '_patsfollow': ('follow(%(val)r)', ' or '),
1687 '_patsfollow': ('follow(%(val)r)', ' or '),
1688 '_patsfollowfirst': ('_followfirst(%(val)r)', ' or '),
1688 '_patsfollowfirst': ('_followfirst(%(val)r)', ' or '),
1689 'keyword': ('keyword(%(val)r)', ' or '),
1689 'keyword': ('keyword(%(val)r)', ' or '),
1690 'prune': ('not (%(val)r or ancestors(%(val)r))', ' and '),
1690 'prune': ('not (%(val)r or ancestors(%(val)r))', ' and '),
1691 'user': ('user(%(val)r)', ' or '),
1691 'user': ('user(%(val)r)', ' or '),
1692 }
1692 }
1693
1693
1694 opts = dict(opts)
1694 opts = dict(opts)
1695 # follow or not follow?
1695 # follow or not follow?
1696 follow = opts.get('follow') or opts.get('follow_first')
1696 follow = opts.get('follow') or opts.get('follow_first')
1697 followfirst = opts.get('follow_first') and 1 or 0
1697 followfirst = opts.get('follow_first') and 1 or 0
1698 # --follow with FILE behaviour depends on revs...
1698 # --follow with FILE behaviour depends on revs...
1699 it = iter(revs)
1699 it = iter(revs)
1700 startrev = it.next()
1700 startrev = it.next()
1701 try:
1701 try:
1702 followdescendants = startrev < it.next()
1702 followdescendants = startrev < it.next()
1703 except (StopIteration):
1703 except (StopIteration):
1704 followdescendants = False
1704 followdescendants = False
1705
1705
1706 # branch and only_branch are really aliases and must be handled at
1706 # branch and only_branch are really aliases and must be handled at
1707 # the same time
1707 # the same time
1708 opts['branch'] = opts.get('branch', []) + opts.get('only_branch', [])
1708 opts['branch'] = opts.get('branch', []) + opts.get('only_branch', [])
1709 opts['branch'] = [repo.lookupbranch(b) for b in opts['branch']]
1709 opts['branch'] = [repo.lookupbranch(b) for b in opts['branch']]
1710 # pats/include/exclude are passed to match.match() directly in
1710 # pats/include/exclude are passed to match.match() directly in
1711 # _matchfiles() revset but walkchangerevs() builds its matcher with
1711 # _matchfiles() revset but walkchangerevs() builds its matcher with
1712 # scmutil.match(). The difference is input pats are globbed on
1712 # scmutil.match(). The difference is input pats are globbed on
1713 # platforms without shell expansion (windows).
1713 # platforms without shell expansion (windows).
1714 pctx = repo[None]
1714 pctx = repo[None]
1715 match, pats = scmutil.matchandpats(pctx, pats, opts)
1715 match, pats = scmutil.matchandpats(pctx, pats, opts)
1716 slowpath = match.anypats() or (match.files() and opts.get('removed'))
1716 slowpath = match.anypats() or (match.files() and opts.get('removed'))
1717 if not slowpath:
1717 if not slowpath:
1718 for f in match.files():
1718 for f in match.files():
1719 if follow and f not in pctx:
1719 if follow and f not in pctx:
1720 # If the file exists, it may be a directory, so let it
1720 # If the file exists, it may be a directory, so let it
1721 # take the slow path.
1721 # take the slow path.
1722 if os.path.exists(repo.wjoin(f)):
1722 if os.path.exists(repo.wjoin(f)):
1723 slowpath = True
1723 slowpath = True
1724 continue
1724 continue
1725 else:
1725 else:
1726 raise util.Abort(_('cannot follow file not in parent '
1726 raise util.Abort(_('cannot follow file not in parent '
1727 'revision: "%s"') % f)
1727 'revision: "%s"') % f)
1728 filelog = repo.file(f)
1728 filelog = repo.file(f)
1729 if not filelog:
1729 if not filelog:
1730 # A zero count may be a directory or deleted file, so
1730 # A zero count may be a directory or deleted file, so
1731 # try to find matching entries on the slow path.
1731 # try to find matching entries on the slow path.
1732 if follow:
1732 if follow:
1733 raise util.Abort(
1733 raise util.Abort(
1734 _('cannot follow nonexistent file: "%s"') % f)
1734 _('cannot follow nonexistent file: "%s"') % f)
1735 slowpath = True
1735 slowpath = True
1736
1736
1737 # We decided to fall back to the slowpath because at least one
1737 # We decided to fall back to the slowpath because at least one
1738 # of the paths was not a file. Check to see if at least one of them
1738 # of the paths was not a file. Check to see if at least one of them
1739 # existed in history - in that case, we'll continue down the
1739 # existed in history - in that case, we'll continue down the
1740 # slowpath; otherwise, we can turn off the slowpath
1740 # slowpath; otherwise, we can turn off the slowpath
1741 if slowpath:
1741 if slowpath:
1742 for path in match.files():
1742 for path in match.files():
1743 if path == '.' or path in repo.store:
1743 if path == '.' or path in repo.store:
1744 break
1744 break
1745 else:
1745 else:
1746 slowpath = False
1746 slowpath = False
1747
1747
1748 if slowpath:
1748 if slowpath:
1749 # See walkchangerevs() slow path.
1749 # See walkchangerevs() slow path.
1750 #
1750 #
1751 # pats/include/exclude cannot be represented as separate
1751 # pats/include/exclude cannot be represented as separate
1752 # revset expressions as their filtering logic applies at file
1752 # revset expressions as their filtering logic applies at file
1753 # level. For instance "-I a -X a" matches a revision touching
1753 # level. For instance "-I a -X a" matches a revision touching
1754 # "a" and "b" while "file(a) and not file(b)" does
1754 # "a" and "b" while "file(a) and not file(b)" does
1755 # not. Besides, filesets are evaluated against the working
1755 # not. Besides, filesets are evaluated against the working
1756 # directory.
1756 # directory.
1757 matchargs = ['r:', 'd:relpath']
1757 matchargs = ['r:', 'd:relpath']
1758 for p in pats:
1758 for p in pats:
1759 matchargs.append('p:' + p)
1759 matchargs.append('p:' + p)
1760 for p in opts.get('include', []):
1760 for p in opts.get('include', []):
1761 matchargs.append('i:' + p)
1761 matchargs.append('i:' + p)
1762 for p in opts.get('exclude', []):
1762 for p in opts.get('exclude', []):
1763 matchargs.append('x:' + p)
1763 matchargs.append('x:' + p)
1764 matchargs = ','.join(('%r' % p) for p in matchargs)
1764 matchargs = ','.join(('%r' % p) for p in matchargs)
1765 opts['_matchfiles'] = matchargs
1765 opts['_matchfiles'] = matchargs
1766 else:
1766 else:
1767 if follow:
1767 if follow:
1768 fpats = ('_patsfollow', '_patsfollowfirst')
1768 fpats = ('_patsfollow', '_patsfollowfirst')
1769 fnopats = (('_ancestors', '_fancestors'),
1769 fnopats = (('_ancestors', '_fancestors'),
1770 ('_descendants', '_fdescendants'))
1770 ('_descendants', '_fdescendants'))
1771 if pats:
1771 if pats:
1772 # follow() revset interprets its file argument as a
1772 # follow() revset interprets its file argument as a
1773 # manifest entry, so use match.files(), not pats.
1773 # manifest entry, so use match.files(), not pats.
1774 opts[fpats[followfirst]] = list(match.files())
1774 opts[fpats[followfirst]] = list(match.files())
1775 else:
1775 else:
1776 opts[fnopats[followdescendants][followfirst]] = str(startrev)
1776 opts[fnopats[followdescendants][followfirst]] = str(startrev)
1777 else:
1777 else:
1778 opts['_patslog'] = list(pats)
1778 opts['_patslog'] = list(pats)
1779
1779
1780 filematcher = None
1780 filematcher = None
1781 if opts.get('patch') or opts.get('stat'):
1781 if opts.get('patch') or opts.get('stat'):
1782 # When following files, track renames via a special matcher.
1782 # When following files, track renames via a special matcher.
1783 # If we're forced to take the slowpath it means we're following
1783 # If we're forced to take the slowpath it means we're following
1784 # at least one pattern/directory, so don't bother with rename tracking.
1784 # at least one pattern/directory, so don't bother with rename tracking.
1785 if follow and not match.always() and not slowpath:
1785 if follow and not match.always() and not slowpath:
1786 # _makefollowlogfilematcher expects its files argument to be
1786 # _makefollowlogfilematcher expects its files argument to be
1787 # relative to the repo root, so use match.files(), not pats.
1787 # relative to the repo root, so use match.files(), not pats.
1788 filematcher = _makefollowlogfilematcher(repo, match.files(),
1788 filematcher = _makefollowlogfilematcher(repo, match.files(),
1789 followfirst)
1789 followfirst)
1790 else:
1790 else:
1791 filematcher = _makenofollowlogfilematcher(repo, pats, opts)
1791 filematcher = _makenofollowlogfilematcher(repo, pats, opts)
1792 if filematcher is None:
1792 if filematcher is None:
1793 filematcher = lambda rev: match
1793 filematcher = lambda rev: match
1794
1794
1795 expr = []
1795 expr = []
1796 for op, val in opts.iteritems():
1796 for op, val in opts.iteritems():
1797 if not val:
1797 if not val:
1798 continue
1798 continue
1799 if op not in opt2revset:
1799 if op not in opt2revset:
1800 continue
1800 continue
1801 revop, andor = opt2revset[op]
1801 revop, andor = opt2revset[op]
1802 if '%(val)' not in revop:
1802 if '%(val)' not in revop:
1803 expr.append(revop)
1803 expr.append(revop)
1804 else:
1804 else:
1805 if not isinstance(val, list):
1805 if not isinstance(val, list):
1806 e = revop % {'val': val}
1806 e = revop % {'val': val}
1807 else:
1807 else:
1808 e = '(' + andor.join((revop % {'val': v}) for v in val) + ')'
1808 e = '(' + andor.join((revop % {'val': v}) for v in val) + ')'
1809 expr.append(e)
1809 expr.append(e)
1810
1810
1811 if expr:
1811 if expr:
1812 expr = '(' + ' and '.join(expr) + ')'
1812 expr = '(' + ' and '.join(expr) + ')'
1813 else:
1813 else:
1814 expr = None
1814 expr = None
1815 return expr, filematcher
1815 return expr, filematcher
1816
1816
1817 def getgraphlogrevs(repo, pats, opts):
1817 def getgraphlogrevs(repo, pats, opts):
1818 """Return (revs, expr, filematcher) where revs is an iterable of
1818 """Return (revs, expr, filematcher) where revs is an iterable of
1819 revision numbers, expr is a revset string built from log options
1819 revision numbers, expr is a revset string built from log options
1820 and file patterns or None, and used to filter 'revs'. If --stat or
1820 and file patterns or None, and used to filter 'revs'. If --stat or
1821 --patch are not passed filematcher is None. Otherwise it is a
1821 --patch are not passed filematcher is None. Otherwise it is a
1822 callable taking a revision number and returning a match objects
1822 callable taking a revision number and returning a match objects
1823 filtering the files to be detailed when displaying the revision.
1823 filtering the files to be detailed when displaying the revision.
1824 """
1824 """
1825 if not len(repo):
1825 if not len(repo):
1826 return [], None, None
1826 return [], None, None
1827 limit = loglimit(opts)
1827 limit = loglimit(opts)
1828 # Default --rev value depends on --follow but --follow behaviour
1828 # Default --rev value depends on --follow but --follow behaviour
1829 # depends on revisions resolved from --rev...
1829 # depends on revisions resolved from --rev...
1830 follow = opts.get('follow') or opts.get('follow_first')
1830 follow = opts.get('follow') or opts.get('follow_first')
1831 possiblyunsorted = False # whether revs might need sorting
1831 possiblyunsorted = False # whether revs might need sorting
1832 if opts.get('rev'):
1832 if opts.get('rev'):
1833 revs = scmutil.revrange(repo, opts['rev'])
1833 revs = scmutil.revrange(repo, opts['rev'])
1834 # Don't sort here because _makelogrevset might depend on the
1834 # Don't sort here because _makelogrevset might depend on the
1835 # order of revs
1835 # order of revs
1836 possiblyunsorted = True
1836 possiblyunsorted = True
1837 else:
1837 else:
1838 if follow and len(repo) > 0:
1838 if follow and len(repo) > 0:
1839 revs = repo.revs('reverse(:.)')
1839 revs = repo.revs('reverse(:.)')
1840 else:
1840 else:
1841 revs = revset.spanset(repo)
1841 revs = revset.spanset(repo)
1842 revs.reverse()
1842 revs.reverse()
1843 if not revs:
1843 if not revs:
1844 return revset.baseset(), None, None
1844 return revset.baseset(), None, None
1845 expr, filematcher = _makelogrevset(repo, pats, opts, revs)
1845 expr, filematcher = _makelogrevset(repo, pats, opts, revs)
1846 if possiblyunsorted:
1846 if possiblyunsorted:
1847 revs.sort(reverse=True)
1847 revs.sort(reverse=True)
1848 if expr:
1848 if expr:
1849 # Revset matchers often operate faster on revisions in changelog
1849 # Revset matchers often operate faster on revisions in changelog
1850 # order, because most filters deal with the changelog.
1850 # order, because most filters deal with the changelog.
1851 revs.reverse()
1851 revs.reverse()
1852 matcher = revset.match(repo.ui, expr)
1852 matcher = revset.match(repo.ui, expr)
1853 # Revset matches can reorder revisions. "A or B" typically returns
1853 # Revset matches can reorder revisions. "A or B" typically returns
1854 # returns the revision matching A then the revision matching B. Sort
1854 # returns the revision matching A then the revision matching B. Sort
1855 # again to fix that.
1855 # again to fix that.
1856 revs = matcher(repo, revs)
1856 revs = matcher(repo, revs)
1857 revs.sort(reverse=True)
1857 revs.sort(reverse=True)
1858 if limit is not None:
1858 if limit is not None:
1859 limitedrevs = []
1859 limitedrevs = []
1860 for idx, rev in enumerate(revs):
1860 for idx, rev in enumerate(revs):
1861 if idx >= limit:
1861 if idx >= limit:
1862 break
1862 break
1863 limitedrevs.append(rev)
1863 limitedrevs.append(rev)
1864 revs = revset.baseset(limitedrevs)
1864 revs = revset.baseset(limitedrevs)
1865
1865
1866 return revs, expr, filematcher
1866 return revs, expr, filematcher
1867
1867
1868 def getlogrevs(repo, pats, opts):
1868 def getlogrevs(repo, pats, opts):
1869 """Return (revs, expr, filematcher) where revs is an iterable of
1869 """Return (revs, expr, filematcher) where revs is an iterable of
1870 revision numbers, expr is a revset string built from log options
1870 revision numbers, expr is a revset string built from log options
1871 and file patterns or None, and used to filter 'revs'. If --stat or
1871 and file patterns or None, and used to filter 'revs'. If --stat or
1872 --patch are not passed filematcher is None. Otherwise it is a
1872 --patch are not passed filematcher is None. Otherwise it is a
1873 callable taking a revision number and returning a match objects
1873 callable taking a revision number and returning a match objects
1874 filtering the files to be detailed when displaying the revision.
1874 filtering the files to be detailed when displaying the revision.
1875 """
1875 """
1876 limit = loglimit(opts)
1876 limit = loglimit(opts)
1877 # Default --rev value depends on --follow but --follow behaviour
1877 # Default --rev value depends on --follow but --follow behaviour
1878 # depends on revisions resolved from --rev...
1878 # depends on revisions resolved from --rev...
1879 follow = opts.get('follow') or opts.get('follow_first')
1879 follow = opts.get('follow') or opts.get('follow_first')
1880 if opts.get('rev'):
1880 if opts.get('rev'):
1881 revs = scmutil.revrange(repo, opts['rev'])
1881 revs = scmutil.revrange(repo, opts['rev'])
1882 elif follow:
1882 elif follow:
1883 revs = repo.revs('reverse(:.)')
1883 revs = repo.revs('reverse(:.)')
1884 else:
1884 else:
1885 revs = revset.spanset(repo)
1885 revs = revset.spanset(repo)
1886 revs.reverse()
1886 revs.reverse()
1887 if not revs:
1887 if not revs:
1888 return revset.baseset([]), None, None
1888 return revset.baseset([]), None, None
1889 expr, filematcher = _makelogrevset(repo, pats, opts, revs)
1889 expr, filematcher = _makelogrevset(repo, pats, opts, revs)
1890 if expr:
1890 if expr:
1891 # Revset matchers often operate faster on revisions in changelog
1891 # Revset matchers often operate faster on revisions in changelog
1892 # order, because most filters deal with the changelog.
1892 # order, because most filters deal with the changelog.
1893 if not opts.get('rev'):
1893 if not opts.get('rev'):
1894 revs.reverse()
1894 revs.reverse()
1895 matcher = revset.match(repo.ui, expr)
1895 matcher = revset.match(repo.ui, expr)
1896 # Revset matches can reorder revisions. "A or B" typically returns
1896 # Revset matches can reorder revisions. "A or B" typically returns
1897 # returns the revision matching A then the revision matching B. Sort
1897 # returns the revision matching A then the revision matching B. Sort
1898 # again to fix that.
1898 # again to fix that.
1899 revs = matcher(repo, revs)
1899 revs = matcher(repo, revs)
1900 if not opts.get('rev'):
1900 if not opts.get('rev'):
1901 revs.sort(reverse=True)
1901 revs.sort(reverse=True)
1902 if limit is not None:
1902 if limit is not None:
1903 count = 0
1903 count = 0
1904 limitedrevs = []
1904 limitedrevs = []
1905 it = iter(revs)
1905 it = iter(revs)
1906 while count < limit:
1906 while count < limit:
1907 try:
1907 try:
1908 limitedrevs.append(it.next())
1908 limitedrevs.append(it.next())
1909 except (StopIteration):
1909 except (StopIteration):
1910 break
1910 break
1911 count += 1
1911 count += 1
1912 revs = revset.baseset(limitedrevs)
1912 revs = revset.baseset(limitedrevs)
1913
1913
1914 return revs, expr, filematcher
1914 return revs, expr, filematcher
1915
1915
1916 def displaygraph(ui, dag, displayer, showparents, edgefn, getrenamed=None,
1916 def displaygraph(ui, dag, displayer, showparents, edgefn, getrenamed=None,
1917 filematcher=None):
1917 filematcher=None):
1918 seen, state = [], graphmod.asciistate()
1918 seen, state = [], graphmod.asciistate()
1919 for rev, type, ctx, parents in dag:
1919 for rev, type, ctx, parents in dag:
1920 char = 'o'
1920 char = 'o'
1921 if ctx.node() in showparents:
1921 if ctx.node() in showparents:
1922 char = '@'
1922 char = '@'
1923 elif ctx.obsolete():
1923 elif ctx.obsolete():
1924 char = 'x'
1924 char = 'x'
1925 copies = None
1925 copies = None
1926 if getrenamed and ctx.rev():
1926 if getrenamed and ctx.rev():
1927 copies = []
1927 copies = []
1928 for fn in ctx.files():
1928 for fn in ctx.files():
1929 rename = getrenamed(fn, ctx.rev())
1929 rename = getrenamed(fn, ctx.rev())
1930 if rename:
1930 if rename:
1931 copies.append((fn, rename[0]))
1931 copies.append((fn, rename[0]))
1932 revmatchfn = None
1932 revmatchfn = None
1933 if filematcher is not None:
1933 if filematcher is not None:
1934 revmatchfn = filematcher(ctx.rev())
1934 revmatchfn = filematcher(ctx.rev())
1935 displayer.show(ctx, copies=copies, matchfn=revmatchfn)
1935 displayer.show(ctx, copies=copies, matchfn=revmatchfn)
1936 lines = displayer.hunk.pop(rev).split('\n')
1936 lines = displayer.hunk.pop(rev).split('\n')
1937 if not lines[-1]:
1937 if not lines[-1]:
1938 del lines[-1]
1938 del lines[-1]
1939 displayer.flush(rev)
1939 displayer.flush(rev)
1940 edges = edgefn(type, char, lines, seen, rev, parents)
1940 edges = edgefn(type, char, lines, seen, rev, parents)
1941 for type, char, lines, coldata in edges:
1941 for type, char, lines, coldata in edges:
1942 graphmod.ascii(ui, state, type, char, lines, coldata)
1942 graphmod.ascii(ui, state, type, char, lines, coldata)
1943 displayer.close()
1943 displayer.close()
1944
1944
1945 def graphlog(ui, repo, *pats, **opts):
1945 def graphlog(ui, repo, *pats, **opts):
1946 # Parameters are identical to log command ones
1946 # Parameters are identical to log command ones
1947 revs, expr, filematcher = getgraphlogrevs(repo, pats, opts)
1947 revs, expr, filematcher = getgraphlogrevs(repo, pats, opts)
1948 revdag = graphmod.dagwalker(repo, revs)
1948 revdag = graphmod.dagwalker(repo, revs)
1949
1949
1950 getrenamed = None
1950 getrenamed = None
1951 if opts.get('copies'):
1951 if opts.get('copies'):
1952 endrev = None
1952 endrev = None
1953 if opts.get('rev'):
1953 if opts.get('rev'):
1954 endrev = scmutil.revrange(repo, opts.get('rev')).max() + 1
1954 endrev = scmutil.revrange(repo, opts.get('rev')).max() + 1
1955 getrenamed = templatekw.getrenamedfn(repo, endrev=endrev)
1955 getrenamed = templatekw.getrenamedfn(repo, endrev=endrev)
1956 displayer = show_changeset(ui, repo, opts, buffered=True)
1956 displayer = show_changeset(ui, repo, opts, buffered=True)
1957 showparents = [ctx.node() for ctx in repo[None].parents()]
1957 showparents = [ctx.node() for ctx in repo[None].parents()]
1958 displaygraph(ui, revdag, displayer, showparents,
1958 displaygraph(ui, revdag, displayer, showparents,
1959 graphmod.asciiedges, getrenamed, filematcher)
1959 graphmod.asciiedges, getrenamed, filematcher)
1960
1960
1961 def checkunsupportedgraphflags(pats, opts):
1961 def checkunsupportedgraphflags(pats, opts):
1962 for op in ["newest_first"]:
1962 for op in ["newest_first"]:
1963 if op in opts and opts[op]:
1963 if op in opts and opts[op]:
1964 raise util.Abort(_("-G/--graph option is incompatible with --%s")
1964 raise util.Abort(_("-G/--graph option is incompatible with --%s")
1965 % op.replace("_", "-"))
1965 % op.replace("_", "-"))
1966
1966
1967 def graphrevs(repo, nodes, opts):
1967 def graphrevs(repo, nodes, opts):
1968 limit = loglimit(opts)
1968 limit = loglimit(opts)
1969 nodes.reverse()
1969 nodes.reverse()
1970 if limit is not None:
1970 if limit is not None:
1971 nodes = nodes[:limit]
1971 nodes = nodes[:limit]
1972 return graphmod.nodes(repo, nodes)
1972 return graphmod.nodes(repo, nodes)
1973
1973
1974 def add(ui, repo, match, dryrun, listsubrepos, prefix, explicitonly):
1974 def add(ui, repo, match, dryrun, listsubrepos, prefix, explicitonly):
1975 join = lambda f: os.path.join(prefix, f)
1975 join = lambda f: os.path.join(prefix, f)
1976 bad = []
1976 bad = []
1977 oldbad = match.bad
1977 oldbad = match.bad
1978 match.bad = lambda x, y: bad.append(x) or oldbad(x, y)
1978 match.bad = lambda x, y: bad.append(x) or oldbad(x, y)
1979 names = []
1979 names = []
1980 wctx = repo[None]
1980 wctx = repo[None]
1981 cca = None
1981 cca = None
1982 abort, warn = scmutil.checkportabilityalert(ui)
1982 abort, warn = scmutil.checkportabilityalert(ui)
1983 if abort or warn:
1983 if abort or warn:
1984 cca = scmutil.casecollisionauditor(ui, abort, repo.dirstate)
1984 cca = scmutil.casecollisionauditor(ui, abort, repo.dirstate)
1985 for f in wctx.walk(match):
1985 for f in wctx.walk(match):
1986 exact = match.exact(f)
1986 exact = match.exact(f)
1987 if exact or not explicitonly and f not in wctx:
1987 if exact or not explicitonly and f not in wctx:
1988 if cca:
1988 if cca:
1989 cca(f)
1989 cca(f)
1990 names.append(f)
1990 names.append(f)
1991 if ui.verbose or not exact:
1991 if ui.verbose or not exact:
1992 ui.status(_('adding %s\n') % match.rel(join(f)))
1992 ui.status(_('adding %s\n') % match.rel(join(f)))
1993
1993
1994 for subpath in sorted(wctx.substate):
1994 for subpath in sorted(wctx.substate):
1995 sub = wctx.sub(subpath)
1995 sub = wctx.sub(subpath)
1996 try:
1996 try:
1997 submatch = matchmod.narrowmatcher(subpath, match)
1997 submatch = matchmod.narrowmatcher(subpath, match)
1998 if listsubrepos:
1998 if listsubrepos:
1999 bad.extend(sub.add(ui, submatch, dryrun, listsubrepos, prefix,
1999 bad.extend(sub.add(ui, submatch, dryrun, listsubrepos, prefix,
2000 False))
2000 False))
2001 else:
2001 else:
2002 bad.extend(sub.add(ui, submatch, dryrun, listsubrepos, prefix,
2002 bad.extend(sub.add(ui, submatch, dryrun, listsubrepos, prefix,
2003 True))
2003 True))
2004 except error.LookupError:
2004 except error.LookupError:
2005 ui.status(_("skipping missing subrepository: %s\n")
2005 ui.status(_("skipping missing subrepository: %s\n")
2006 % join(subpath))
2006 % join(subpath))
2007
2007
2008 if not dryrun:
2008 if not dryrun:
2009 rejected = wctx.add(names, prefix)
2009 rejected = wctx.add(names, prefix)
2010 bad.extend(f for f in rejected if f in match.files())
2010 bad.extend(f for f in rejected if f in match.files())
2011 return bad
2011 return bad
2012
2012
2013 def forget(ui, repo, match, prefix, explicitonly):
2013 def forget(ui, repo, match, prefix, explicitonly):
2014 join = lambda f: os.path.join(prefix, f)
2014 join = lambda f: os.path.join(prefix, f)
2015 bad = []
2015 bad = []
2016 oldbad = match.bad
2016 oldbad = match.bad
2017 match.bad = lambda x, y: bad.append(x) or oldbad(x, y)
2017 match.bad = lambda x, y: bad.append(x) or oldbad(x, y)
2018 wctx = repo[None]
2018 wctx = repo[None]
2019 forgot = []
2019 forgot = []
2020 s = repo.status(match=match, clean=True)
2020 s = repo.status(match=match, clean=True)
2021 forget = sorted(s[0] + s[1] + s[3] + s[6])
2021 forget = sorted(s[0] + s[1] + s[3] + s[6])
2022 if explicitonly:
2022 if explicitonly:
2023 forget = [f for f in forget if match.exact(f)]
2023 forget = [f for f in forget if match.exact(f)]
2024
2024
2025 for subpath in sorted(wctx.substate):
2025 for subpath in sorted(wctx.substate):
2026 sub = wctx.sub(subpath)
2026 sub = wctx.sub(subpath)
2027 try:
2027 try:
2028 submatch = matchmod.narrowmatcher(subpath, match)
2028 submatch = matchmod.narrowmatcher(subpath, match)
2029 subbad, subforgot = sub.forget(ui, submatch, prefix)
2029 subbad, subforgot = sub.forget(ui, submatch, prefix)
2030 bad.extend([subpath + '/' + f for f in subbad])
2030 bad.extend([subpath + '/' + f for f in subbad])
2031 forgot.extend([subpath + '/' + f for f in subforgot])
2031 forgot.extend([subpath + '/' + f for f in subforgot])
2032 except error.LookupError:
2032 except error.LookupError:
2033 ui.status(_("skipping missing subrepository: %s\n")
2033 ui.status(_("skipping missing subrepository: %s\n")
2034 % join(subpath))
2034 % join(subpath))
2035
2035
2036 if not explicitonly:
2036 if not explicitonly:
2037 for f in match.files():
2037 for f in match.files():
2038 if f not in repo.dirstate and not os.path.isdir(match.rel(join(f))):
2038 if f not in repo.dirstate and not os.path.isdir(match.rel(join(f))):
2039 if f not in forgot:
2039 if f not in forgot:
2040 if os.path.exists(match.rel(join(f))):
2040 if os.path.exists(match.rel(join(f))):
2041 ui.warn(_('not removing %s: '
2041 ui.warn(_('not removing %s: '
2042 'file is already untracked\n')
2042 'file is already untracked\n')
2043 % match.rel(join(f)))
2043 % match.rel(join(f)))
2044 bad.append(f)
2044 bad.append(f)
2045
2045
2046 for f in forget:
2046 for f in forget:
2047 if ui.verbose or not match.exact(f):
2047 if ui.verbose or not match.exact(f):
2048 ui.status(_('removing %s\n') % match.rel(join(f)))
2048 ui.status(_('removing %s\n') % match.rel(join(f)))
2049
2049
2050 rejected = wctx.forget(forget, prefix)
2050 rejected = wctx.forget(forget, prefix)
2051 bad.extend(f for f in rejected if f in match.files())
2051 bad.extend(f for f in rejected if f in match.files())
2052 forgot.extend(forget)
2052 forgot.extend(forget)
2053 return bad, forgot
2053 return bad, forgot
2054
2054
2055 def remove(ui, repo, m, prefix, after, force, subrepos):
2055 def remove(ui, repo, m, prefix, after, force, subrepos):
2056 join = lambda f: os.path.join(prefix, f)
2056 join = lambda f: os.path.join(prefix, f)
2057 ret = 0
2057 ret = 0
2058 s = repo.status(match=m, clean=True)
2058 s = repo.status(match=m, clean=True)
2059 modified, added, deleted, clean = s[0], s[1], s[3], s[6]
2059 modified, added, deleted, clean = s[0], s[1], s[3], s[6]
2060
2060
2061 wctx = repo[None]
2061 wctx = repo[None]
2062
2062
2063 if subrepos:
2063 for subpath in sorted(wctx.substate):
2064 for subpath in sorted(wctx.substate):
2064 def matchessubrepo(matcher, subpath):
2065 if matcher.exact(subpath):
2066 return True
2067 for f in matcher.files():
2068 if f.startswith(subpath):
2069 return True
2070 return False
2071
2072 if subrepos or matchessubrepo(m, subpath):
2065 sub = wctx.sub(subpath)
2073 sub = wctx.sub(subpath)
2066 try:
2074 try:
2067 submatch = matchmod.narrowmatcher(subpath, m)
2075 submatch = matchmod.narrowmatcher(subpath, m)
2068 if sub.removefiles(ui, submatch, prefix, after, force,
2076 if sub.removefiles(ui, submatch, prefix, after, force,
2069 subrepos):
2077 subrepos):
2070 ret = 1
2078 ret = 1
2071 except error.LookupError:
2079 except error.LookupError:
2072 ui.status(_("skipping missing subrepository: %s\n")
2080 ui.status(_("skipping missing subrepository: %s\n")
2073 % join(subpath))
2081 % join(subpath))
2074
2082
2075 # warn about failure to delete explicit files/dirs
2083 # warn about failure to delete explicit files/dirs
2076 for f in m.files():
2084 for f in m.files():
2077 def insubrepo():
2085 def insubrepo():
2078 for subpath in wctx.substate:
2086 for subpath in wctx.substate:
2079 if f.startswith(subpath):
2087 if f.startswith(subpath):
2080 return True
2088 return True
2081 return False
2089 return False
2082
2090
2083 if f in repo.dirstate or f in wctx.dirs() or (subrepos and insubrepo()):
2091 if f in repo.dirstate or f in wctx.dirs() or insubrepo():
2084 continue
2092 continue
2085
2093
2086 if os.path.exists(m.rel(join(f))):
2094 if os.path.exists(m.rel(join(f))):
2087 if os.path.isdir(m.rel(join(f))):
2095 if os.path.isdir(m.rel(join(f))):
2088 ui.warn(_('not removing %s: no tracked files\n')
2096 ui.warn(_('not removing %s: no tracked files\n')
2089 % m.rel(join(f)))
2097 % m.rel(join(f)))
2090 else:
2098 else:
2091 ui.warn(_('not removing %s: file is untracked\n')
2099 ui.warn(_('not removing %s: file is untracked\n')
2092 % m.rel(join(f)))
2100 % m.rel(join(f)))
2093 # missing files will generate a warning elsewhere
2101 # missing files will generate a warning elsewhere
2094 ret = 1
2102 ret = 1
2095
2103
2096 if force:
2104 if force:
2097 list = modified + deleted + clean + added
2105 list = modified + deleted + clean + added
2098 elif after:
2106 elif after:
2099 list = deleted
2107 list = deleted
2100 for f in modified + added + clean:
2108 for f in modified + added + clean:
2101 ui.warn(_('not removing %s: file still exists\n') % m.rel(join(f)))
2109 ui.warn(_('not removing %s: file still exists\n') % m.rel(join(f)))
2102 ret = 1
2110 ret = 1
2103 else:
2111 else:
2104 list = deleted + clean
2112 list = deleted + clean
2105 for f in modified:
2113 for f in modified:
2106 ui.warn(_('not removing %s: file is modified (use -f'
2114 ui.warn(_('not removing %s: file is modified (use -f'
2107 ' to force removal)\n') % m.rel(join(f)))
2115 ' to force removal)\n') % m.rel(join(f)))
2108 ret = 1
2116 ret = 1
2109 for f in added:
2117 for f in added:
2110 ui.warn(_('not removing %s: file has been marked for add'
2118 ui.warn(_('not removing %s: file has been marked for add'
2111 ' (use forget to undo)\n') % m.rel(join(f)))
2119 ' (use forget to undo)\n') % m.rel(join(f)))
2112 ret = 1
2120 ret = 1
2113
2121
2114 for f in sorted(list):
2122 for f in sorted(list):
2115 if ui.verbose or not m.exact(f):
2123 if ui.verbose or not m.exact(f):
2116 ui.status(_('removing %s\n') % m.rel(join(f)))
2124 ui.status(_('removing %s\n') % m.rel(join(f)))
2117
2125
2118 wlock = repo.wlock()
2126 wlock = repo.wlock()
2119 try:
2127 try:
2120 if not after:
2128 if not after:
2121 for f in list:
2129 for f in list:
2122 if f in added:
2130 if f in added:
2123 continue # we never unlink added files on remove
2131 continue # we never unlink added files on remove
2124 util.unlinkpath(repo.wjoin(f), ignoremissing=True)
2132 util.unlinkpath(repo.wjoin(f), ignoremissing=True)
2125 repo[None].forget(list)
2133 repo[None].forget(list)
2126 finally:
2134 finally:
2127 wlock.release()
2135 wlock.release()
2128
2136
2129 return ret
2137 return ret
2130
2138
2131 def cat(ui, repo, ctx, matcher, prefix, **opts):
2139 def cat(ui, repo, ctx, matcher, prefix, **opts):
2132 err = 1
2140 err = 1
2133
2141
2134 def write(path):
2142 def write(path):
2135 fp = makefileobj(repo, opts.get('output'), ctx.node(),
2143 fp = makefileobj(repo, opts.get('output'), ctx.node(),
2136 pathname=os.path.join(prefix, path))
2144 pathname=os.path.join(prefix, path))
2137 data = ctx[path].data()
2145 data = ctx[path].data()
2138 if opts.get('decode'):
2146 if opts.get('decode'):
2139 data = repo.wwritedata(path, data)
2147 data = repo.wwritedata(path, data)
2140 fp.write(data)
2148 fp.write(data)
2141 fp.close()
2149 fp.close()
2142
2150
2143 # Automation often uses hg cat on single files, so special case it
2151 # Automation often uses hg cat on single files, so special case it
2144 # for performance to avoid the cost of parsing the manifest.
2152 # for performance to avoid the cost of parsing the manifest.
2145 if len(matcher.files()) == 1 and not matcher.anypats():
2153 if len(matcher.files()) == 1 and not matcher.anypats():
2146 file = matcher.files()[0]
2154 file = matcher.files()[0]
2147 mf = repo.manifest
2155 mf = repo.manifest
2148 mfnode = ctx._changeset[0]
2156 mfnode = ctx._changeset[0]
2149 if mf.find(mfnode, file)[0]:
2157 if mf.find(mfnode, file)[0]:
2150 write(file)
2158 write(file)
2151 return 0
2159 return 0
2152
2160
2153 # Don't warn about "missing" files that are really in subrepos
2161 # Don't warn about "missing" files that are really in subrepos
2154 bad = matcher.bad
2162 bad = matcher.bad
2155
2163
2156 def badfn(path, msg):
2164 def badfn(path, msg):
2157 for subpath in ctx.substate:
2165 for subpath in ctx.substate:
2158 if path.startswith(subpath):
2166 if path.startswith(subpath):
2159 return
2167 return
2160 bad(path, msg)
2168 bad(path, msg)
2161
2169
2162 matcher.bad = badfn
2170 matcher.bad = badfn
2163
2171
2164 for abs in ctx.walk(matcher):
2172 for abs in ctx.walk(matcher):
2165 write(abs)
2173 write(abs)
2166 err = 0
2174 err = 0
2167
2175
2168 matcher.bad = bad
2176 matcher.bad = bad
2169
2177
2170 for subpath in sorted(ctx.substate):
2178 for subpath in sorted(ctx.substate):
2171 sub = ctx.sub(subpath)
2179 sub = ctx.sub(subpath)
2172 try:
2180 try:
2173 submatch = matchmod.narrowmatcher(subpath, matcher)
2181 submatch = matchmod.narrowmatcher(subpath, matcher)
2174
2182
2175 if not sub.cat(ui, submatch, os.path.join(prefix, sub._path),
2183 if not sub.cat(ui, submatch, os.path.join(prefix, sub._path),
2176 **opts):
2184 **opts):
2177 err = 0
2185 err = 0
2178 except error.RepoLookupError:
2186 except error.RepoLookupError:
2179 ui.status(_("skipping missing subrepository: %s\n")
2187 ui.status(_("skipping missing subrepository: %s\n")
2180 % os.path.join(prefix, subpath))
2188 % os.path.join(prefix, subpath))
2181
2189
2182 return err
2190 return err
2183
2191
2184 def commit(ui, repo, commitfunc, pats, opts):
2192 def commit(ui, repo, commitfunc, pats, opts):
2185 '''commit the specified files or all outstanding changes'''
2193 '''commit the specified files or all outstanding changes'''
2186 date = opts.get('date')
2194 date = opts.get('date')
2187 if date:
2195 if date:
2188 opts['date'] = util.parsedate(date)
2196 opts['date'] = util.parsedate(date)
2189 message = logmessage(ui, opts)
2197 message = logmessage(ui, opts)
2190
2198
2191 # extract addremove carefully -- this function can be called from a command
2199 # extract addremove carefully -- this function can be called from a command
2192 # that doesn't support addremove
2200 # that doesn't support addremove
2193 if opts.get('addremove'):
2201 if opts.get('addremove'):
2194 scmutil.addremove(repo, pats, opts)
2202 scmutil.addremove(repo, pats, opts)
2195
2203
2196 return commitfunc(ui, repo, message,
2204 return commitfunc(ui, repo, message,
2197 scmutil.match(repo[None], pats, opts), opts)
2205 scmutil.match(repo[None], pats, opts), opts)
2198
2206
2199 def amend(ui, repo, commitfunc, old, extra, pats, opts):
2207 def amend(ui, repo, commitfunc, old, extra, pats, opts):
2200 # amend will reuse the existing user if not specified, but the obsolete
2208 # amend will reuse the existing user if not specified, but the obsolete
2201 # marker creation requires that the current user's name is specified.
2209 # marker creation requires that the current user's name is specified.
2202 if obsolete._enabled:
2210 if obsolete._enabled:
2203 ui.username() # raise exception if username not set
2211 ui.username() # raise exception if username not set
2204
2212
2205 ui.note(_('amending changeset %s\n') % old)
2213 ui.note(_('amending changeset %s\n') % old)
2206 base = old.p1()
2214 base = old.p1()
2207
2215
2208 wlock = lock = newid = None
2216 wlock = lock = newid = None
2209 try:
2217 try:
2210 wlock = repo.wlock()
2218 wlock = repo.wlock()
2211 lock = repo.lock()
2219 lock = repo.lock()
2212 tr = repo.transaction('amend')
2220 tr = repo.transaction('amend')
2213 try:
2221 try:
2214 # See if we got a message from -m or -l, if not, open the editor
2222 # See if we got a message from -m or -l, if not, open the editor
2215 # with the message of the changeset to amend
2223 # with the message of the changeset to amend
2216 message = logmessage(ui, opts)
2224 message = logmessage(ui, opts)
2217 # ensure logfile does not conflict with later enforcement of the
2225 # ensure logfile does not conflict with later enforcement of the
2218 # message. potential logfile content has been processed by
2226 # message. potential logfile content has been processed by
2219 # `logmessage` anyway.
2227 # `logmessage` anyway.
2220 opts.pop('logfile')
2228 opts.pop('logfile')
2221 # First, do a regular commit to record all changes in the working
2229 # First, do a regular commit to record all changes in the working
2222 # directory (if there are any)
2230 # directory (if there are any)
2223 ui.callhooks = False
2231 ui.callhooks = False
2224 currentbookmark = repo._bookmarkcurrent
2232 currentbookmark = repo._bookmarkcurrent
2225 try:
2233 try:
2226 repo._bookmarkcurrent = None
2234 repo._bookmarkcurrent = None
2227 opts['message'] = 'temporary amend commit for %s' % old
2235 opts['message'] = 'temporary amend commit for %s' % old
2228 node = commit(ui, repo, commitfunc, pats, opts)
2236 node = commit(ui, repo, commitfunc, pats, opts)
2229 finally:
2237 finally:
2230 repo._bookmarkcurrent = currentbookmark
2238 repo._bookmarkcurrent = currentbookmark
2231 ui.callhooks = True
2239 ui.callhooks = True
2232 ctx = repo[node]
2240 ctx = repo[node]
2233
2241
2234 # Participating changesets:
2242 # Participating changesets:
2235 #
2243 #
2236 # node/ctx o - new (intermediate) commit that contains changes
2244 # node/ctx o - new (intermediate) commit that contains changes
2237 # | from working dir to go into amending commit
2245 # | from working dir to go into amending commit
2238 # | (or a workingctx if there were no changes)
2246 # | (or a workingctx if there were no changes)
2239 # |
2247 # |
2240 # old o - changeset to amend
2248 # old o - changeset to amend
2241 # |
2249 # |
2242 # base o - parent of amending changeset
2250 # base o - parent of amending changeset
2243
2251
2244 # Update extra dict from amended commit (e.g. to preserve graft
2252 # Update extra dict from amended commit (e.g. to preserve graft
2245 # source)
2253 # source)
2246 extra.update(old.extra())
2254 extra.update(old.extra())
2247
2255
2248 # Also update it from the intermediate commit or from the wctx
2256 # Also update it from the intermediate commit or from the wctx
2249 extra.update(ctx.extra())
2257 extra.update(ctx.extra())
2250
2258
2251 if len(old.parents()) > 1:
2259 if len(old.parents()) > 1:
2252 # ctx.files() isn't reliable for merges, so fall back to the
2260 # ctx.files() isn't reliable for merges, so fall back to the
2253 # slower repo.status() method
2261 # slower repo.status() method
2254 files = set([fn for st in repo.status(base, old)[:3]
2262 files = set([fn for st in repo.status(base, old)[:3]
2255 for fn in st])
2263 for fn in st])
2256 else:
2264 else:
2257 files = set(old.files())
2265 files = set(old.files())
2258
2266
2259 # Second, we use either the commit we just did, or if there were no
2267 # Second, we use either the commit we just did, or if there were no
2260 # changes the parent of the working directory as the version of the
2268 # changes the parent of the working directory as the version of the
2261 # files in the final amend commit
2269 # files in the final amend commit
2262 if node:
2270 if node:
2263 ui.note(_('copying changeset %s to %s\n') % (ctx, base))
2271 ui.note(_('copying changeset %s to %s\n') % (ctx, base))
2264
2272
2265 user = ctx.user()
2273 user = ctx.user()
2266 date = ctx.date()
2274 date = ctx.date()
2267 # Recompute copies (avoid recording a -> b -> a)
2275 # Recompute copies (avoid recording a -> b -> a)
2268 copied = copies.pathcopies(base, ctx)
2276 copied = copies.pathcopies(base, ctx)
2269
2277
2270 # Prune files which were reverted by the updates: if old
2278 # Prune files which were reverted by the updates: if old
2271 # introduced file X and our intermediate commit, node,
2279 # introduced file X and our intermediate commit, node,
2272 # renamed that file, then those two files are the same and
2280 # renamed that file, then those two files are the same and
2273 # we can discard X from our list of files. Likewise if X
2281 # we can discard X from our list of files. Likewise if X
2274 # was deleted, it's no longer relevant
2282 # was deleted, it's no longer relevant
2275 files.update(ctx.files())
2283 files.update(ctx.files())
2276
2284
2277 def samefile(f):
2285 def samefile(f):
2278 if f in ctx.manifest():
2286 if f in ctx.manifest():
2279 a = ctx.filectx(f)
2287 a = ctx.filectx(f)
2280 if f in base.manifest():
2288 if f in base.manifest():
2281 b = base.filectx(f)
2289 b = base.filectx(f)
2282 return (not a.cmp(b)
2290 return (not a.cmp(b)
2283 and a.flags() == b.flags())
2291 and a.flags() == b.flags())
2284 else:
2292 else:
2285 return False
2293 return False
2286 else:
2294 else:
2287 return f not in base.manifest()
2295 return f not in base.manifest()
2288 files = [f for f in files if not samefile(f)]
2296 files = [f for f in files if not samefile(f)]
2289
2297
2290 def filectxfn(repo, ctx_, path):
2298 def filectxfn(repo, ctx_, path):
2291 try:
2299 try:
2292 fctx = ctx[path]
2300 fctx = ctx[path]
2293 flags = fctx.flags()
2301 flags = fctx.flags()
2294 mctx = context.memfilectx(repo,
2302 mctx = context.memfilectx(repo,
2295 fctx.path(), fctx.data(),
2303 fctx.path(), fctx.data(),
2296 islink='l' in flags,
2304 islink='l' in flags,
2297 isexec='x' in flags,
2305 isexec='x' in flags,
2298 copied=copied.get(path))
2306 copied=copied.get(path))
2299 return mctx
2307 return mctx
2300 except KeyError:
2308 except KeyError:
2301 return None
2309 return None
2302 else:
2310 else:
2303 ui.note(_('copying changeset %s to %s\n') % (old, base))
2311 ui.note(_('copying changeset %s to %s\n') % (old, base))
2304
2312
2305 # Use version of files as in the old cset
2313 # Use version of files as in the old cset
2306 def filectxfn(repo, ctx_, path):
2314 def filectxfn(repo, ctx_, path):
2307 try:
2315 try:
2308 return old.filectx(path)
2316 return old.filectx(path)
2309 except KeyError:
2317 except KeyError:
2310 return None
2318 return None
2311
2319
2312 user = opts.get('user') or old.user()
2320 user = opts.get('user') or old.user()
2313 date = opts.get('date') or old.date()
2321 date = opts.get('date') or old.date()
2314 editform = mergeeditform(old, 'commit.amend')
2322 editform = mergeeditform(old, 'commit.amend')
2315 editor = getcommiteditor(editform=editform, **opts)
2323 editor = getcommiteditor(editform=editform, **opts)
2316 if not message:
2324 if not message:
2317 editor = getcommiteditor(edit=True, editform=editform)
2325 editor = getcommiteditor(edit=True, editform=editform)
2318 message = old.description()
2326 message = old.description()
2319
2327
2320 pureextra = extra.copy()
2328 pureextra = extra.copy()
2321 extra['amend_source'] = old.hex()
2329 extra['amend_source'] = old.hex()
2322
2330
2323 new = context.memctx(repo,
2331 new = context.memctx(repo,
2324 parents=[base.node(), old.p2().node()],
2332 parents=[base.node(), old.p2().node()],
2325 text=message,
2333 text=message,
2326 files=files,
2334 files=files,
2327 filectxfn=filectxfn,
2335 filectxfn=filectxfn,
2328 user=user,
2336 user=user,
2329 date=date,
2337 date=date,
2330 extra=extra,
2338 extra=extra,
2331 editor=editor)
2339 editor=editor)
2332
2340
2333 newdesc = changelog.stripdesc(new.description())
2341 newdesc = changelog.stripdesc(new.description())
2334 if ((not node)
2342 if ((not node)
2335 and newdesc == old.description()
2343 and newdesc == old.description()
2336 and user == old.user()
2344 and user == old.user()
2337 and date == old.date()
2345 and date == old.date()
2338 and pureextra == old.extra()):
2346 and pureextra == old.extra()):
2339 # nothing changed. continuing here would create a new node
2347 # nothing changed. continuing here would create a new node
2340 # anyway because of the amend_source noise.
2348 # anyway because of the amend_source noise.
2341 #
2349 #
2342 # This not what we expect from amend.
2350 # This not what we expect from amend.
2343 return old.node()
2351 return old.node()
2344
2352
2345 ph = repo.ui.config('phases', 'new-commit', phases.draft)
2353 ph = repo.ui.config('phases', 'new-commit', phases.draft)
2346 try:
2354 try:
2347 if opts.get('secret'):
2355 if opts.get('secret'):
2348 commitphase = 'secret'
2356 commitphase = 'secret'
2349 else:
2357 else:
2350 commitphase = old.phase()
2358 commitphase = old.phase()
2351 repo.ui.setconfig('phases', 'new-commit', commitphase, 'amend')
2359 repo.ui.setconfig('phases', 'new-commit', commitphase, 'amend')
2352 newid = repo.commitctx(new)
2360 newid = repo.commitctx(new)
2353 finally:
2361 finally:
2354 repo.ui.setconfig('phases', 'new-commit', ph, 'amend')
2362 repo.ui.setconfig('phases', 'new-commit', ph, 'amend')
2355 if newid != old.node():
2363 if newid != old.node():
2356 # Reroute the working copy parent to the new changeset
2364 # Reroute the working copy parent to the new changeset
2357 repo.setparents(newid, nullid)
2365 repo.setparents(newid, nullid)
2358
2366
2359 # Move bookmarks from old parent to amend commit
2367 # Move bookmarks from old parent to amend commit
2360 bms = repo.nodebookmarks(old.node())
2368 bms = repo.nodebookmarks(old.node())
2361 if bms:
2369 if bms:
2362 marks = repo._bookmarks
2370 marks = repo._bookmarks
2363 for bm in bms:
2371 for bm in bms:
2364 marks[bm] = newid
2372 marks[bm] = newid
2365 marks.write()
2373 marks.write()
2366 #commit the whole amend process
2374 #commit the whole amend process
2367 createmarkers = obsolete.isenabled(repo, obsolete.createmarkersopt)
2375 createmarkers = obsolete.isenabled(repo, obsolete.createmarkersopt)
2368 if createmarkers and newid != old.node():
2376 if createmarkers and newid != old.node():
2369 # mark the new changeset as successor of the rewritten one
2377 # mark the new changeset as successor of the rewritten one
2370 new = repo[newid]
2378 new = repo[newid]
2371 obs = [(old, (new,))]
2379 obs = [(old, (new,))]
2372 if node:
2380 if node:
2373 obs.append((ctx, ()))
2381 obs.append((ctx, ()))
2374
2382
2375 obsolete.createmarkers(repo, obs)
2383 obsolete.createmarkers(repo, obs)
2376 tr.close()
2384 tr.close()
2377 finally:
2385 finally:
2378 tr.release()
2386 tr.release()
2379 if not createmarkers and newid != old.node():
2387 if not createmarkers and newid != old.node():
2380 # Strip the intermediate commit (if there was one) and the amended
2388 # Strip the intermediate commit (if there was one) and the amended
2381 # commit
2389 # commit
2382 if node:
2390 if node:
2383 ui.note(_('stripping intermediate changeset %s\n') % ctx)
2391 ui.note(_('stripping intermediate changeset %s\n') % ctx)
2384 ui.note(_('stripping amended changeset %s\n') % old)
2392 ui.note(_('stripping amended changeset %s\n') % old)
2385 repair.strip(ui, repo, old.node(), topic='amend-backup')
2393 repair.strip(ui, repo, old.node(), topic='amend-backup')
2386 finally:
2394 finally:
2387 if newid is None:
2395 if newid is None:
2388 repo.dirstate.invalidate()
2396 repo.dirstate.invalidate()
2389 lockmod.release(lock, wlock)
2397 lockmod.release(lock, wlock)
2390 return newid
2398 return newid
2391
2399
2392 def commiteditor(repo, ctx, subs, editform=''):
2400 def commiteditor(repo, ctx, subs, editform=''):
2393 if ctx.description():
2401 if ctx.description():
2394 return ctx.description()
2402 return ctx.description()
2395 return commitforceeditor(repo, ctx, subs, editform=editform)
2403 return commitforceeditor(repo, ctx, subs, editform=editform)
2396
2404
2397 def commitforceeditor(repo, ctx, subs, finishdesc=None, extramsg=None,
2405 def commitforceeditor(repo, ctx, subs, finishdesc=None, extramsg=None,
2398 editform=''):
2406 editform=''):
2399 if not extramsg:
2407 if not extramsg:
2400 extramsg = _("Leave message empty to abort commit.")
2408 extramsg = _("Leave message empty to abort commit.")
2401
2409
2402 forms = [e for e in editform.split('.') if e]
2410 forms = [e for e in editform.split('.') if e]
2403 forms.insert(0, 'changeset')
2411 forms.insert(0, 'changeset')
2404 while forms:
2412 while forms:
2405 tmpl = repo.ui.config('committemplate', '.'.join(forms))
2413 tmpl = repo.ui.config('committemplate', '.'.join(forms))
2406 if tmpl:
2414 if tmpl:
2407 committext = buildcommittemplate(repo, ctx, subs, extramsg, tmpl)
2415 committext = buildcommittemplate(repo, ctx, subs, extramsg, tmpl)
2408 break
2416 break
2409 forms.pop()
2417 forms.pop()
2410 else:
2418 else:
2411 committext = buildcommittext(repo, ctx, subs, extramsg)
2419 committext = buildcommittext(repo, ctx, subs, extramsg)
2412
2420
2413 # run editor in the repository root
2421 # run editor in the repository root
2414 olddir = os.getcwd()
2422 olddir = os.getcwd()
2415 os.chdir(repo.root)
2423 os.chdir(repo.root)
2416 text = repo.ui.edit(committext, ctx.user(), ctx.extra(), editform=editform)
2424 text = repo.ui.edit(committext, ctx.user(), ctx.extra(), editform=editform)
2417 text = re.sub("(?m)^HG:.*(\n|$)", "", text)
2425 text = re.sub("(?m)^HG:.*(\n|$)", "", text)
2418 os.chdir(olddir)
2426 os.chdir(olddir)
2419
2427
2420 if finishdesc:
2428 if finishdesc:
2421 text = finishdesc(text)
2429 text = finishdesc(text)
2422 if not text.strip():
2430 if not text.strip():
2423 raise util.Abort(_("empty commit message"))
2431 raise util.Abort(_("empty commit message"))
2424
2432
2425 return text
2433 return text
2426
2434
2427 def buildcommittemplate(repo, ctx, subs, extramsg, tmpl):
2435 def buildcommittemplate(repo, ctx, subs, extramsg, tmpl):
2428 ui = repo.ui
2436 ui = repo.ui
2429 tmpl, mapfile = gettemplate(ui, tmpl, None)
2437 tmpl, mapfile = gettemplate(ui, tmpl, None)
2430
2438
2431 try:
2439 try:
2432 t = changeset_templater(ui, repo, None, {}, tmpl, mapfile, False)
2440 t = changeset_templater(ui, repo, None, {}, tmpl, mapfile, False)
2433 except SyntaxError, inst:
2441 except SyntaxError, inst:
2434 raise util.Abort(inst.args[0])
2442 raise util.Abort(inst.args[0])
2435
2443
2436 for k, v in repo.ui.configitems('committemplate'):
2444 for k, v in repo.ui.configitems('committemplate'):
2437 if k != 'changeset':
2445 if k != 'changeset':
2438 t.t.cache[k] = v
2446 t.t.cache[k] = v
2439
2447
2440 if not extramsg:
2448 if not extramsg:
2441 extramsg = '' # ensure that extramsg is string
2449 extramsg = '' # ensure that extramsg is string
2442
2450
2443 ui.pushbuffer()
2451 ui.pushbuffer()
2444 t.show(ctx, extramsg=extramsg)
2452 t.show(ctx, extramsg=extramsg)
2445 return ui.popbuffer()
2453 return ui.popbuffer()
2446
2454
2447 def buildcommittext(repo, ctx, subs, extramsg):
2455 def buildcommittext(repo, ctx, subs, extramsg):
2448 edittext = []
2456 edittext = []
2449 modified, added, removed = ctx.modified(), ctx.added(), ctx.removed()
2457 modified, added, removed = ctx.modified(), ctx.added(), ctx.removed()
2450 if ctx.description():
2458 if ctx.description():
2451 edittext.append(ctx.description())
2459 edittext.append(ctx.description())
2452 edittext.append("")
2460 edittext.append("")
2453 edittext.append("") # Empty line between message and comments.
2461 edittext.append("") # Empty line between message and comments.
2454 edittext.append(_("HG: Enter commit message."
2462 edittext.append(_("HG: Enter commit message."
2455 " Lines beginning with 'HG:' are removed."))
2463 " Lines beginning with 'HG:' are removed."))
2456 edittext.append("HG: %s" % extramsg)
2464 edittext.append("HG: %s" % extramsg)
2457 edittext.append("HG: --")
2465 edittext.append("HG: --")
2458 edittext.append(_("HG: user: %s") % ctx.user())
2466 edittext.append(_("HG: user: %s") % ctx.user())
2459 if ctx.p2():
2467 if ctx.p2():
2460 edittext.append(_("HG: branch merge"))
2468 edittext.append(_("HG: branch merge"))
2461 if ctx.branch():
2469 if ctx.branch():
2462 edittext.append(_("HG: branch '%s'") % ctx.branch())
2470 edittext.append(_("HG: branch '%s'") % ctx.branch())
2463 if bookmarks.iscurrent(repo):
2471 if bookmarks.iscurrent(repo):
2464 edittext.append(_("HG: bookmark '%s'") % repo._bookmarkcurrent)
2472 edittext.append(_("HG: bookmark '%s'") % repo._bookmarkcurrent)
2465 edittext.extend([_("HG: subrepo %s") % s for s in subs])
2473 edittext.extend([_("HG: subrepo %s") % s for s in subs])
2466 edittext.extend([_("HG: added %s") % f for f in added])
2474 edittext.extend([_("HG: added %s") % f for f in added])
2467 edittext.extend([_("HG: changed %s") % f for f in modified])
2475 edittext.extend([_("HG: changed %s") % f for f in modified])
2468 edittext.extend([_("HG: removed %s") % f for f in removed])
2476 edittext.extend([_("HG: removed %s") % f for f in removed])
2469 if not added and not modified and not removed:
2477 if not added and not modified and not removed:
2470 edittext.append(_("HG: no files changed"))
2478 edittext.append(_("HG: no files changed"))
2471 edittext.append("")
2479 edittext.append("")
2472
2480
2473 return "\n".join(edittext)
2481 return "\n".join(edittext)
2474
2482
2475 def commitstatus(repo, node, branch, bheads=None, opts={}):
2483 def commitstatus(repo, node, branch, bheads=None, opts={}):
2476 ctx = repo[node]
2484 ctx = repo[node]
2477 parents = ctx.parents()
2485 parents = ctx.parents()
2478
2486
2479 if (not opts.get('amend') and bheads and node not in bheads and not
2487 if (not opts.get('amend') and bheads and node not in bheads and not
2480 [x for x in parents if x.node() in bheads and x.branch() == branch]):
2488 [x for x in parents if x.node() in bheads and x.branch() == branch]):
2481 repo.ui.status(_('created new head\n'))
2489 repo.ui.status(_('created new head\n'))
2482 # The message is not printed for initial roots. For the other
2490 # The message is not printed for initial roots. For the other
2483 # changesets, it is printed in the following situations:
2491 # changesets, it is printed in the following situations:
2484 #
2492 #
2485 # Par column: for the 2 parents with ...
2493 # Par column: for the 2 parents with ...
2486 # N: null or no parent
2494 # N: null or no parent
2487 # B: parent is on another named branch
2495 # B: parent is on another named branch
2488 # C: parent is a regular non head changeset
2496 # C: parent is a regular non head changeset
2489 # H: parent was a branch head of the current branch
2497 # H: parent was a branch head of the current branch
2490 # Msg column: whether we print "created new head" message
2498 # Msg column: whether we print "created new head" message
2491 # In the following, it is assumed that there already exists some
2499 # In the following, it is assumed that there already exists some
2492 # initial branch heads of the current branch, otherwise nothing is
2500 # initial branch heads of the current branch, otherwise nothing is
2493 # printed anyway.
2501 # printed anyway.
2494 #
2502 #
2495 # Par Msg Comment
2503 # Par Msg Comment
2496 # N N y additional topo root
2504 # N N y additional topo root
2497 #
2505 #
2498 # B N y additional branch root
2506 # B N y additional branch root
2499 # C N y additional topo head
2507 # C N y additional topo head
2500 # H N n usual case
2508 # H N n usual case
2501 #
2509 #
2502 # B B y weird additional branch root
2510 # B B y weird additional branch root
2503 # C B y branch merge
2511 # C B y branch merge
2504 # H B n merge with named branch
2512 # H B n merge with named branch
2505 #
2513 #
2506 # C C y additional head from merge
2514 # C C y additional head from merge
2507 # C H n merge with a head
2515 # C H n merge with a head
2508 #
2516 #
2509 # H H n head merge: head count decreases
2517 # H H n head merge: head count decreases
2510
2518
2511 if not opts.get('close_branch'):
2519 if not opts.get('close_branch'):
2512 for r in parents:
2520 for r in parents:
2513 if r.closesbranch() and r.branch() == branch:
2521 if r.closesbranch() and r.branch() == branch:
2514 repo.ui.status(_('reopening closed branch head %d\n') % r)
2522 repo.ui.status(_('reopening closed branch head %d\n') % r)
2515
2523
2516 if repo.ui.debugflag:
2524 if repo.ui.debugflag:
2517 repo.ui.write(_('committed changeset %d:%s\n') % (int(ctx), ctx.hex()))
2525 repo.ui.write(_('committed changeset %d:%s\n') % (int(ctx), ctx.hex()))
2518 elif repo.ui.verbose:
2526 elif repo.ui.verbose:
2519 repo.ui.write(_('committed changeset %d:%s\n') % (int(ctx), ctx))
2527 repo.ui.write(_('committed changeset %d:%s\n') % (int(ctx), ctx))
2520
2528
2521 def revert(ui, repo, ctx, parents, *pats, **opts):
2529 def revert(ui, repo, ctx, parents, *pats, **opts):
2522 parent, p2 = parents
2530 parent, p2 = parents
2523 node = ctx.node()
2531 node = ctx.node()
2524
2532
2525 mf = ctx.manifest()
2533 mf = ctx.manifest()
2526 if node == p2:
2534 if node == p2:
2527 parent = p2
2535 parent = p2
2528 if node == parent:
2536 if node == parent:
2529 pmf = mf
2537 pmf = mf
2530 else:
2538 else:
2531 pmf = None
2539 pmf = None
2532
2540
2533 # need all matching names in dirstate and manifest of target rev,
2541 # need all matching names in dirstate and manifest of target rev,
2534 # so have to walk both. do not print errors if files exist in one
2542 # so have to walk both. do not print errors if files exist in one
2535 # but not other.
2543 # but not other.
2536
2544
2537 # `names` is a mapping for all elements in working copy and target revision
2545 # `names` is a mapping for all elements in working copy and target revision
2538 # The mapping is in the form:
2546 # The mapping is in the form:
2539 # <asb path in repo> -> (<path from CWD>, <exactly specified by matcher?>)
2547 # <asb path in repo> -> (<path from CWD>, <exactly specified by matcher?>)
2540 names = {}
2548 names = {}
2541
2549
2542 wlock = repo.wlock()
2550 wlock = repo.wlock()
2543 try:
2551 try:
2544 ## filling of the `names` mapping
2552 ## filling of the `names` mapping
2545 # walk dirstate to fill `names`
2553 # walk dirstate to fill `names`
2546
2554
2547 m = scmutil.match(repo[None], pats, opts)
2555 m = scmutil.match(repo[None], pats, opts)
2548 if not m.always() or node != parent:
2556 if not m.always() or node != parent:
2549 m.bad = lambda x, y: False
2557 m.bad = lambda x, y: False
2550 for abs in repo.walk(m):
2558 for abs in repo.walk(m):
2551 names[abs] = m.rel(abs), m.exact(abs)
2559 names[abs] = m.rel(abs), m.exact(abs)
2552
2560
2553 # walk target manifest to fill `names`
2561 # walk target manifest to fill `names`
2554
2562
2555 def badfn(path, msg):
2563 def badfn(path, msg):
2556 if path in names:
2564 if path in names:
2557 return
2565 return
2558 if path in ctx.substate:
2566 if path in ctx.substate:
2559 return
2567 return
2560 path_ = path + '/'
2568 path_ = path + '/'
2561 for f in names:
2569 for f in names:
2562 if f.startswith(path_):
2570 if f.startswith(path_):
2563 return
2571 return
2564 ui.warn("%s: %s\n" % (m.rel(path), msg))
2572 ui.warn("%s: %s\n" % (m.rel(path), msg))
2565
2573
2566 m = scmutil.match(ctx, pats, opts)
2574 m = scmutil.match(ctx, pats, opts)
2567 m.bad = badfn
2575 m.bad = badfn
2568 for abs in ctx.walk(m):
2576 for abs in ctx.walk(m):
2569 if abs not in names:
2577 if abs not in names:
2570 names[abs] = m.rel(abs), m.exact(abs)
2578 names[abs] = m.rel(abs), m.exact(abs)
2571
2579
2572 # Find status of all file in `names`.
2580 # Find status of all file in `names`.
2573 m = scmutil.matchfiles(repo, names)
2581 m = scmutil.matchfiles(repo, names)
2574
2582
2575 changes = repo.status(node1=node, match=m,
2583 changes = repo.status(node1=node, match=m,
2576 unknown=True, ignored=True, clean=True)
2584 unknown=True, ignored=True, clean=True)
2577 else:
2585 else:
2578 changes = repo.status(match=m)
2586 changes = repo.status(match=m)
2579 for kind in changes:
2587 for kind in changes:
2580 for abs in kind:
2588 for abs in kind:
2581 names[abs] = m.rel(abs), m.exact(abs)
2589 names[abs] = m.rel(abs), m.exact(abs)
2582
2590
2583 m = scmutil.matchfiles(repo, names)
2591 m = scmutil.matchfiles(repo, names)
2584
2592
2585 modified = set(changes[0])
2593 modified = set(changes[0])
2586 added = set(changes[1])
2594 added = set(changes[1])
2587 removed = set(changes[2])
2595 removed = set(changes[2])
2588 _deleted = set(changes[3])
2596 _deleted = set(changes[3])
2589 unknown = set(changes[4])
2597 unknown = set(changes[4])
2590 unknown.update(changes[5])
2598 unknown.update(changes[5])
2591 clean = set(changes[6])
2599 clean = set(changes[6])
2592 modadded = set()
2600 modadded = set()
2593
2601
2594 # split between files known in target manifest and the others
2602 # split between files known in target manifest and the others
2595 smf = set(mf)
2603 smf = set(mf)
2596
2604
2597 # determine the exact nature of the deleted changesets
2605 # determine the exact nature of the deleted changesets
2598 deladded = _deleted - smf
2606 deladded = _deleted - smf
2599 deleted = _deleted - deladded
2607 deleted = _deleted - deladded
2600
2608
2601 # We need to account for the state of file in the dirstate.
2609 # We need to account for the state of file in the dirstate.
2602 #
2610 #
2603 # Even, when we revert against something else than parent. This will
2611 # Even, when we revert against something else than parent. This will
2604 # slightly alter the behavior of revert (doing back up or not, delete
2612 # slightly alter the behavior of revert (doing back up or not, delete
2605 # or just forget etc).
2613 # or just forget etc).
2606 if parent == node:
2614 if parent == node:
2607 dsmodified = modified
2615 dsmodified = modified
2608 dsadded = added
2616 dsadded = added
2609 dsremoved = removed
2617 dsremoved = removed
2610 modified, added, removed = set(), set(), set()
2618 modified, added, removed = set(), set(), set()
2611 else:
2619 else:
2612 changes = repo.status(node1=parent, match=m)
2620 changes = repo.status(node1=parent, match=m)
2613 dsmodified = set(changes[0])
2621 dsmodified = set(changes[0])
2614 dsadded = set(changes[1])
2622 dsadded = set(changes[1])
2615 dsremoved = set(changes[2])
2623 dsremoved = set(changes[2])
2616
2624
2617 # only take into account for removes between wc and target
2625 # only take into account for removes between wc and target
2618 clean |= dsremoved - removed
2626 clean |= dsremoved - removed
2619 dsremoved &= removed
2627 dsremoved &= removed
2620 # distinct between dirstate remove and other
2628 # distinct between dirstate remove and other
2621 removed -= dsremoved
2629 removed -= dsremoved
2622
2630
2623 modadded = added & dsmodified
2631 modadded = added & dsmodified
2624 added -= modadded
2632 added -= modadded
2625
2633
2626 # tell newly modified apart.
2634 # tell newly modified apart.
2627 dsmodified &= modified
2635 dsmodified &= modified
2628 dsmodified |= modified & dsadded # dirstate added may needs backup
2636 dsmodified |= modified & dsadded # dirstate added may needs backup
2629 modified -= dsmodified
2637 modified -= dsmodified
2630
2638
2631 # We need to wait for some post-processing to update this set
2639 # We need to wait for some post-processing to update this set
2632 # before making the distinction. The dirstate will be used for
2640 # before making the distinction. The dirstate will be used for
2633 # that purpose.
2641 # that purpose.
2634 dsadded = added
2642 dsadded = added
2635
2643
2636 # in case of merge, files that are actually added can be reported as
2644 # in case of merge, files that are actually added can be reported as
2637 # modified, we need to post process the result
2645 # modified, we need to post process the result
2638 if p2 != nullid:
2646 if p2 != nullid:
2639 if pmf is None:
2647 if pmf is None:
2640 # only need parent manifest in the merge case,
2648 # only need parent manifest in the merge case,
2641 # so do not read by default
2649 # so do not read by default
2642 pmf = repo[parent].manifest()
2650 pmf = repo[parent].manifest()
2643 mergeadd = dsmodified - set(pmf)
2651 mergeadd = dsmodified - set(pmf)
2644 dsadded |= mergeadd
2652 dsadded |= mergeadd
2645 dsmodified -= mergeadd
2653 dsmodified -= mergeadd
2646
2654
2647 # if f is a rename, update `names` to also revert the source
2655 # if f is a rename, update `names` to also revert the source
2648 cwd = repo.getcwd()
2656 cwd = repo.getcwd()
2649 for f in dsadded:
2657 for f in dsadded:
2650 src = repo.dirstate.copied(f)
2658 src = repo.dirstate.copied(f)
2651 # XXX should we check for rename down to target node?
2659 # XXX should we check for rename down to target node?
2652 if src and src not in names and repo.dirstate[src] == 'r':
2660 if src and src not in names and repo.dirstate[src] == 'r':
2653 dsremoved.add(src)
2661 dsremoved.add(src)
2654 names[src] = (repo.pathto(src, cwd), True)
2662 names[src] = (repo.pathto(src, cwd), True)
2655
2663
2656 # distinguish between file to forget and the other
2664 # distinguish between file to forget and the other
2657 added = set()
2665 added = set()
2658 for abs in dsadded:
2666 for abs in dsadded:
2659 if repo.dirstate[abs] != 'a':
2667 if repo.dirstate[abs] != 'a':
2660 added.add(abs)
2668 added.add(abs)
2661 dsadded -= added
2669 dsadded -= added
2662
2670
2663 for abs in deladded:
2671 for abs in deladded:
2664 if repo.dirstate[abs] == 'a':
2672 if repo.dirstate[abs] == 'a':
2665 dsadded.add(abs)
2673 dsadded.add(abs)
2666 deladded -= dsadded
2674 deladded -= dsadded
2667
2675
2668 # For files marked as removed, we check if an unknown file is present at
2676 # For files marked as removed, we check if an unknown file is present at
2669 # the same path. If a such file exists it may need to be backed up.
2677 # the same path. If a such file exists it may need to be backed up.
2670 # Making the distinction at this stage helps have simpler backup
2678 # Making the distinction at this stage helps have simpler backup
2671 # logic.
2679 # logic.
2672 removunk = set()
2680 removunk = set()
2673 for abs in removed:
2681 for abs in removed:
2674 target = repo.wjoin(abs)
2682 target = repo.wjoin(abs)
2675 if os.path.lexists(target):
2683 if os.path.lexists(target):
2676 removunk.add(abs)
2684 removunk.add(abs)
2677 removed -= removunk
2685 removed -= removunk
2678
2686
2679 dsremovunk = set()
2687 dsremovunk = set()
2680 for abs in dsremoved:
2688 for abs in dsremoved:
2681 target = repo.wjoin(abs)
2689 target = repo.wjoin(abs)
2682 if os.path.lexists(target):
2690 if os.path.lexists(target):
2683 dsremovunk.add(abs)
2691 dsremovunk.add(abs)
2684 dsremoved -= dsremovunk
2692 dsremoved -= dsremovunk
2685
2693
2686 # action to be actually performed by revert
2694 # action to be actually performed by revert
2687 # (<list of file>, message>) tuple
2695 # (<list of file>, message>) tuple
2688 actions = {'revert': ([], _('reverting %s\n')),
2696 actions = {'revert': ([], _('reverting %s\n')),
2689 'add': ([], _('adding %s\n')),
2697 'add': ([], _('adding %s\n')),
2690 'remove': ([], _('removing %s\n')),
2698 'remove': ([], _('removing %s\n')),
2691 'drop': ([], _('removing %s\n')),
2699 'drop': ([], _('removing %s\n')),
2692 'forget': ([], _('forgetting %s\n')),
2700 'forget': ([], _('forgetting %s\n')),
2693 'undelete': ([], _('undeleting %s\n')),
2701 'undelete': ([], _('undeleting %s\n')),
2694 'noop': (None, _('no changes needed to %s\n')),
2702 'noop': (None, _('no changes needed to %s\n')),
2695 'unknown': (None, _('file not managed: %s\n')),
2703 'unknown': (None, _('file not managed: %s\n')),
2696 }
2704 }
2697
2705
2698 # "constant" that convey the backup strategy.
2706 # "constant" that convey the backup strategy.
2699 # All set to `discard` if `no-backup` is set do avoid checking
2707 # All set to `discard` if `no-backup` is set do avoid checking
2700 # no_backup lower in the code.
2708 # no_backup lower in the code.
2701 # These values are ordered for comparison purposes
2709 # These values are ordered for comparison purposes
2702 backup = 2 # unconditionally do backup
2710 backup = 2 # unconditionally do backup
2703 check = 1 # check if the existing file differs from target
2711 check = 1 # check if the existing file differs from target
2704 discard = 0 # never do backup
2712 discard = 0 # never do backup
2705 if opts.get('no_backup'):
2713 if opts.get('no_backup'):
2706 backup = check = discard
2714 backup = check = discard
2707
2715
2708 backupanddel = actions['remove']
2716 backupanddel = actions['remove']
2709 if not opts.get('no_backup'):
2717 if not opts.get('no_backup'):
2710 backupanddel = actions['drop']
2718 backupanddel = actions['drop']
2711
2719
2712 disptable = (
2720 disptable = (
2713 # dispatch table:
2721 # dispatch table:
2714 # file state
2722 # file state
2715 # action
2723 # action
2716 # make backup
2724 # make backup
2717
2725
2718 ## Sets that results that will change file on disk
2726 ## Sets that results that will change file on disk
2719 # Modified compared to target, no local change
2727 # Modified compared to target, no local change
2720 (modified, actions['revert'], discard),
2728 (modified, actions['revert'], discard),
2721 # Modified compared to target, but local file is deleted
2729 # Modified compared to target, but local file is deleted
2722 (deleted, actions['revert'], discard),
2730 (deleted, actions['revert'], discard),
2723 # Modified compared to target, local change
2731 # Modified compared to target, local change
2724 (dsmodified, actions['revert'], backup),
2732 (dsmodified, actions['revert'], backup),
2725 # Added since target
2733 # Added since target
2726 (added, actions['remove'], discard),
2734 (added, actions['remove'], discard),
2727 # Added in working directory
2735 # Added in working directory
2728 (dsadded, actions['forget'], discard),
2736 (dsadded, actions['forget'], discard),
2729 # Added since target, have local modification
2737 # Added since target, have local modification
2730 (modadded, backupanddel, backup),
2738 (modadded, backupanddel, backup),
2731 # Added since target but file is missing in working directory
2739 # Added since target but file is missing in working directory
2732 (deladded, actions['drop'], discard),
2740 (deladded, actions['drop'], discard),
2733 # Removed since target, before working copy parent
2741 # Removed since target, before working copy parent
2734 (removed, actions['add'], discard),
2742 (removed, actions['add'], discard),
2735 # Same as `removed` but an unknown file exists at the same path
2743 # Same as `removed` but an unknown file exists at the same path
2736 (removunk, actions['add'], check),
2744 (removunk, actions['add'], check),
2737 # Removed since targe, marked as such in working copy parent
2745 # Removed since targe, marked as such in working copy parent
2738 (dsremoved, actions['undelete'], discard),
2746 (dsremoved, actions['undelete'], discard),
2739 # Same as `dsremoved` but an unknown file exists at the same path
2747 # Same as `dsremoved` but an unknown file exists at the same path
2740 (dsremovunk, actions['undelete'], check),
2748 (dsremovunk, actions['undelete'], check),
2741 ## the following sets does not result in any file changes
2749 ## the following sets does not result in any file changes
2742 # File with no modification
2750 # File with no modification
2743 (clean, actions['noop'], discard),
2751 (clean, actions['noop'], discard),
2744 # Existing file, not tracked anywhere
2752 # Existing file, not tracked anywhere
2745 (unknown, actions['unknown'], discard),
2753 (unknown, actions['unknown'], discard),
2746 )
2754 )
2747
2755
2748 needdata = ('revert', 'add', 'undelete')
2756 needdata = ('revert', 'add', 'undelete')
2749 _revertprefetch(repo, ctx, *[actions[name][0] for name in needdata])
2757 _revertprefetch(repo, ctx, *[actions[name][0] for name in needdata])
2750
2758
2751 wctx = repo[None]
2759 wctx = repo[None]
2752 for abs, (rel, exact) in sorted(names.items()):
2760 for abs, (rel, exact) in sorted(names.items()):
2753 # target file to be touch on disk (relative to cwd)
2761 # target file to be touch on disk (relative to cwd)
2754 target = repo.wjoin(abs)
2762 target = repo.wjoin(abs)
2755 # search the entry in the dispatch table.
2763 # search the entry in the dispatch table.
2756 # if the file is in any of these sets, it was touched in the working
2764 # if the file is in any of these sets, it was touched in the working
2757 # directory parent and we are sure it needs to be reverted.
2765 # directory parent and we are sure it needs to be reverted.
2758 for table, (xlist, msg), dobackup in disptable:
2766 for table, (xlist, msg), dobackup in disptable:
2759 if abs not in table:
2767 if abs not in table:
2760 continue
2768 continue
2761 if xlist is not None:
2769 if xlist is not None:
2762 xlist.append(abs)
2770 xlist.append(abs)
2763 if dobackup and (backup <= dobackup
2771 if dobackup and (backup <= dobackup
2764 or wctx[abs].cmp(ctx[abs])):
2772 or wctx[abs].cmp(ctx[abs])):
2765 bakname = "%s.orig" % rel
2773 bakname = "%s.orig" % rel
2766 ui.note(_('saving current version of %s as %s\n') %
2774 ui.note(_('saving current version of %s as %s\n') %
2767 (rel, bakname))
2775 (rel, bakname))
2768 if not opts.get('dry_run'):
2776 if not opts.get('dry_run'):
2769 util.rename(target, bakname)
2777 util.rename(target, bakname)
2770 if ui.verbose or not exact:
2778 if ui.verbose or not exact:
2771 if not isinstance(msg, basestring):
2779 if not isinstance(msg, basestring):
2772 msg = msg(abs)
2780 msg = msg(abs)
2773 ui.status(msg % rel)
2781 ui.status(msg % rel)
2774 elif exact:
2782 elif exact:
2775 ui.warn(msg % rel)
2783 ui.warn(msg % rel)
2776 break
2784 break
2777
2785
2778
2786
2779 if not opts.get('dry_run'):
2787 if not opts.get('dry_run'):
2780 _performrevert(repo, parents, ctx, actions)
2788 _performrevert(repo, parents, ctx, actions)
2781
2789
2782 # get the list of subrepos that must be reverted
2790 # get the list of subrepos that must be reverted
2783 subrepomatch = scmutil.match(ctx, pats, opts)
2791 subrepomatch = scmutil.match(ctx, pats, opts)
2784 targetsubs = sorted(s for s in ctx.substate if subrepomatch(s))
2792 targetsubs = sorted(s for s in ctx.substate if subrepomatch(s))
2785
2793
2786 if targetsubs:
2794 if targetsubs:
2787 # Revert the subrepos on the revert list
2795 # Revert the subrepos on the revert list
2788 for sub in targetsubs:
2796 for sub in targetsubs:
2789 ctx.sub(sub).revert(ui, ctx.substate[sub], *pats, **opts)
2797 ctx.sub(sub).revert(ui, ctx.substate[sub], *pats, **opts)
2790 finally:
2798 finally:
2791 wlock.release()
2799 wlock.release()
2792
2800
2793 def _revertprefetch(repo, ctx, *files):
2801 def _revertprefetch(repo, ctx, *files):
2794 """Let extension changing the storage layer prefetch content"""
2802 """Let extension changing the storage layer prefetch content"""
2795 pass
2803 pass
2796
2804
2797 def _performrevert(repo, parents, ctx, actions):
2805 def _performrevert(repo, parents, ctx, actions):
2798 """function that actually perform all the actions computed for revert
2806 """function that actually perform all the actions computed for revert
2799
2807
2800 This is an independent function to let extension to plug in and react to
2808 This is an independent function to let extension to plug in and react to
2801 the imminent revert.
2809 the imminent revert.
2802
2810
2803 Make sure you have the working directory locked when calling this function.
2811 Make sure you have the working directory locked when calling this function.
2804 """
2812 """
2805 parent, p2 = parents
2813 parent, p2 = parents
2806 node = ctx.node()
2814 node = ctx.node()
2807 def checkout(f):
2815 def checkout(f):
2808 fc = ctx[f]
2816 fc = ctx[f]
2809 repo.wwrite(f, fc.data(), fc.flags())
2817 repo.wwrite(f, fc.data(), fc.flags())
2810
2818
2811 audit_path = pathutil.pathauditor(repo.root)
2819 audit_path = pathutil.pathauditor(repo.root)
2812 for f in actions['forget'][0]:
2820 for f in actions['forget'][0]:
2813 repo.dirstate.drop(f)
2821 repo.dirstate.drop(f)
2814 for f in actions['remove'][0]:
2822 for f in actions['remove'][0]:
2815 audit_path(f)
2823 audit_path(f)
2816 util.unlinkpath(repo.wjoin(f))
2824 util.unlinkpath(repo.wjoin(f))
2817 repo.dirstate.remove(f)
2825 repo.dirstate.remove(f)
2818 for f in actions['drop'][0]:
2826 for f in actions['drop'][0]:
2819 audit_path(f)
2827 audit_path(f)
2820 repo.dirstate.remove(f)
2828 repo.dirstate.remove(f)
2821
2829
2822 normal = None
2830 normal = None
2823 if node == parent:
2831 if node == parent:
2824 # We're reverting to our parent. If possible, we'd like status
2832 # We're reverting to our parent. If possible, we'd like status
2825 # to report the file as clean. We have to use normallookup for
2833 # to report the file as clean. We have to use normallookup for
2826 # merges to avoid losing information about merged/dirty files.
2834 # merges to avoid losing information about merged/dirty files.
2827 if p2 != nullid:
2835 if p2 != nullid:
2828 normal = repo.dirstate.normallookup
2836 normal = repo.dirstate.normallookup
2829 else:
2837 else:
2830 normal = repo.dirstate.normal
2838 normal = repo.dirstate.normal
2831 for f in actions['revert'][0]:
2839 for f in actions['revert'][0]:
2832 checkout(f)
2840 checkout(f)
2833 if normal:
2841 if normal:
2834 normal(f)
2842 normal(f)
2835
2843
2836 for f in actions['add'][0]:
2844 for f in actions['add'][0]:
2837 checkout(f)
2845 checkout(f)
2838 repo.dirstate.add(f)
2846 repo.dirstate.add(f)
2839
2847
2840 normal = repo.dirstate.normallookup
2848 normal = repo.dirstate.normallookup
2841 if node == parent and p2 == nullid:
2849 if node == parent and p2 == nullid:
2842 normal = repo.dirstate.normal
2850 normal = repo.dirstate.normal
2843 for f in actions['undelete'][0]:
2851 for f in actions['undelete'][0]:
2844 checkout(f)
2852 checkout(f)
2845 normal(f)
2853 normal(f)
2846
2854
2847 copied = copies.pathcopies(repo[parent], ctx)
2855 copied = copies.pathcopies(repo[parent], ctx)
2848
2856
2849 for f in actions['add'][0] + actions['undelete'][0] + actions['revert'][0]:
2857 for f in actions['add'][0] + actions['undelete'][0] + actions['revert'][0]:
2850 if f in copied:
2858 if f in copied:
2851 repo.dirstate.copy(copied[f], f)
2859 repo.dirstate.copy(copied[f], f)
2852
2860
2853 def command(table):
2861 def command(table):
2854 """Returns a function object to be used as a decorator for making commands.
2862 """Returns a function object to be used as a decorator for making commands.
2855
2863
2856 This function receives a command table as its argument. The table should
2864 This function receives a command table as its argument. The table should
2857 be a dict.
2865 be a dict.
2858
2866
2859 The returned function can be used as a decorator for adding commands
2867 The returned function can be used as a decorator for adding commands
2860 to that command table. This function accepts multiple arguments to define
2868 to that command table. This function accepts multiple arguments to define
2861 a command.
2869 a command.
2862
2870
2863 The first argument is the command name.
2871 The first argument is the command name.
2864
2872
2865 The options argument is an iterable of tuples defining command arguments.
2873 The options argument is an iterable of tuples defining command arguments.
2866 See ``mercurial.fancyopts.fancyopts()`` for the format of each tuple.
2874 See ``mercurial.fancyopts.fancyopts()`` for the format of each tuple.
2867
2875
2868 The synopsis argument defines a short, one line summary of how to use the
2876 The synopsis argument defines a short, one line summary of how to use the
2869 command. This shows up in the help output.
2877 command. This shows up in the help output.
2870
2878
2871 The norepo argument defines whether the command does not require a
2879 The norepo argument defines whether the command does not require a
2872 local repository. Most commands operate against a repository, thus the
2880 local repository. Most commands operate against a repository, thus the
2873 default is False.
2881 default is False.
2874
2882
2875 The optionalrepo argument defines whether the command optionally requires
2883 The optionalrepo argument defines whether the command optionally requires
2876 a local repository.
2884 a local repository.
2877
2885
2878 The inferrepo argument defines whether to try to find a repository from the
2886 The inferrepo argument defines whether to try to find a repository from the
2879 command line arguments. If True, arguments will be examined for potential
2887 command line arguments. If True, arguments will be examined for potential
2880 repository locations. See ``findrepo()``. If a repository is found, it
2888 repository locations. See ``findrepo()``. If a repository is found, it
2881 will be used.
2889 will be used.
2882 """
2890 """
2883 def cmd(name, options=(), synopsis=None, norepo=False, optionalrepo=False,
2891 def cmd(name, options=(), synopsis=None, norepo=False, optionalrepo=False,
2884 inferrepo=False):
2892 inferrepo=False):
2885 def decorator(func):
2893 def decorator(func):
2886 if synopsis:
2894 if synopsis:
2887 table[name] = func, list(options), synopsis
2895 table[name] = func, list(options), synopsis
2888 else:
2896 else:
2889 table[name] = func, list(options)
2897 table[name] = func, list(options)
2890
2898
2891 if norepo:
2899 if norepo:
2892 # Avoid import cycle.
2900 # Avoid import cycle.
2893 import commands
2901 import commands
2894 commands.norepo += ' %s' % ' '.join(parsealiases(name))
2902 commands.norepo += ' %s' % ' '.join(parsealiases(name))
2895
2903
2896 if optionalrepo:
2904 if optionalrepo:
2897 import commands
2905 import commands
2898 commands.optionalrepo += ' %s' % ' '.join(parsealiases(name))
2906 commands.optionalrepo += ' %s' % ' '.join(parsealiases(name))
2899
2907
2900 if inferrepo:
2908 if inferrepo:
2901 import commands
2909 import commands
2902 commands.inferrepo += ' %s' % ' '.join(parsealiases(name))
2910 commands.inferrepo += ' %s' % ' '.join(parsealiases(name))
2903
2911
2904 return func
2912 return func
2905 return decorator
2913 return decorator
2906
2914
2907 return cmd
2915 return cmd
2908
2916
2909 # a list of (ui, repo, otherpeer, opts, missing) functions called by
2917 # a list of (ui, repo, otherpeer, opts, missing) functions called by
2910 # commands.outgoing. "missing" is "missing" of the result of
2918 # commands.outgoing. "missing" is "missing" of the result of
2911 # "findcommonoutgoing()"
2919 # "findcommonoutgoing()"
2912 outgoinghooks = util.hooks()
2920 outgoinghooks = util.hooks()
2913
2921
2914 # a list of (ui, repo) functions called by commands.summary
2922 # a list of (ui, repo) functions called by commands.summary
2915 summaryhooks = util.hooks()
2923 summaryhooks = util.hooks()
2916
2924
2917 # a list of (ui, repo, opts, changes) functions called by commands.summary.
2925 # a list of (ui, repo, opts, changes) functions called by commands.summary.
2918 #
2926 #
2919 # functions should return tuple of booleans below, if 'changes' is None:
2927 # functions should return tuple of booleans below, if 'changes' is None:
2920 # (whether-incomings-are-needed, whether-outgoings-are-needed)
2928 # (whether-incomings-are-needed, whether-outgoings-are-needed)
2921 #
2929 #
2922 # otherwise, 'changes' is a tuple of tuples below:
2930 # otherwise, 'changes' is a tuple of tuples below:
2923 # - (sourceurl, sourcebranch, sourcepeer, incoming)
2931 # - (sourceurl, sourcebranch, sourcepeer, incoming)
2924 # - (desturl, destbranch, destpeer, outgoing)
2932 # - (desturl, destbranch, destpeer, outgoing)
2925 summaryremotehooks = util.hooks()
2933 summaryremotehooks = util.hooks()
2926
2934
2927 # A list of state files kept by multistep operations like graft.
2935 # A list of state files kept by multistep operations like graft.
2928 # Since graft cannot be aborted, it is considered 'clearable' by update.
2936 # Since graft cannot be aborted, it is considered 'clearable' by update.
2929 # note: bisect is intentionally excluded
2937 # note: bisect is intentionally excluded
2930 # (state file, clearable, allowcommit, error, hint)
2938 # (state file, clearable, allowcommit, error, hint)
2931 unfinishedstates = [
2939 unfinishedstates = [
2932 ('graftstate', True, False, _('graft in progress'),
2940 ('graftstate', True, False, _('graft in progress'),
2933 _("use 'hg graft --continue' or 'hg update' to abort")),
2941 _("use 'hg graft --continue' or 'hg update' to abort")),
2934 ('updatestate', True, False, _('last update was interrupted'),
2942 ('updatestate', True, False, _('last update was interrupted'),
2935 _("use 'hg update' to get a consistent checkout"))
2943 _("use 'hg update' to get a consistent checkout"))
2936 ]
2944 ]
2937
2945
2938 def checkunfinished(repo, commit=False):
2946 def checkunfinished(repo, commit=False):
2939 '''Look for an unfinished multistep operation, like graft, and abort
2947 '''Look for an unfinished multistep operation, like graft, and abort
2940 if found. It's probably good to check this right before
2948 if found. It's probably good to check this right before
2941 bailifchanged().
2949 bailifchanged().
2942 '''
2950 '''
2943 for f, clearable, allowcommit, msg, hint in unfinishedstates:
2951 for f, clearable, allowcommit, msg, hint in unfinishedstates:
2944 if commit and allowcommit:
2952 if commit and allowcommit:
2945 continue
2953 continue
2946 if repo.vfs.exists(f):
2954 if repo.vfs.exists(f):
2947 raise util.Abort(msg, hint=hint)
2955 raise util.Abort(msg, hint=hint)
2948
2956
2949 def clearunfinished(repo):
2957 def clearunfinished(repo):
2950 '''Check for unfinished operations (as above), and clear the ones
2958 '''Check for unfinished operations (as above), and clear the ones
2951 that are clearable.
2959 that are clearable.
2952 '''
2960 '''
2953 for f, clearable, allowcommit, msg, hint in unfinishedstates:
2961 for f, clearable, allowcommit, msg, hint in unfinishedstates:
2954 if not clearable and repo.vfs.exists(f):
2962 if not clearable and repo.vfs.exists(f):
2955 raise util.Abort(msg, hint=hint)
2963 raise util.Abort(msg, hint=hint)
2956 for f, clearable, allowcommit, msg, hint in unfinishedstates:
2964 for f, clearable, allowcommit, msg, hint in unfinishedstates:
2957 if clearable and repo.vfs.exists(f):
2965 if clearable and repo.vfs.exists(f):
2958 util.unlink(repo.join(f))
2966 util.unlink(repo.join(f))
@@ -1,150 +1,152 b''
1 Subrepositories let you nest external repositories or projects into a
1 Subrepositories let you nest external repositories or projects into a
2 parent Mercurial repository, and make commands operate on them as a
2 parent Mercurial repository, and make commands operate on them as a
3 group.
3 group.
4
4
5 Mercurial currently supports Mercurial, Git, and Subversion
5 Mercurial currently supports Mercurial, Git, and Subversion
6 subrepositories.
6 subrepositories.
7
7
8 Subrepositories are made of three components:
8 Subrepositories are made of three components:
9
9
10 1. Nested repository checkouts. They can appear anywhere in the
10 1. Nested repository checkouts. They can appear anywhere in the
11 parent working directory.
11 parent working directory.
12
12
13 2. Nested repository references. They are defined in ``.hgsub``, which
13 2. Nested repository references. They are defined in ``.hgsub``, which
14 should be placed in the root of working directory, and
14 should be placed in the root of working directory, and
15 tell where the subrepository checkouts come from. Mercurial
15 tell where the subrepository checkouts come from. Mercurial
16 subrepositories are referenced like::
16 subrepositories are referenced like::
17
17
18 path/to/nested = https://example.com/nested/repo/path
18 path/to/nested = https://example.com/nested/repo/path
19
19
20 Git and Subversion subrepos are also supported::
20 Git and Subversion subrepos are also supported::
21
21
22 path/to/nested = [git]git://example.com/nested/repo/path
22 path/to/nested = [git]git://example.com/nested/repo/path
23 path/to/nested = [svn]https://example.com/nested/trunk/path
23 path/to/nested = [svn]https://example.com/nested/trunk/path
24
24
25 where ``path/to/nested`` is the checkout location relatively to the
25 where ``path/to/nested`` is the checkout location relatively to the
26 parent Mercurial root, and ``https://example.com/nested/repo/path``
26 parent Mercurial root, and ``https://example.com/nested/repo/path``
27 is the source repository path. The source can also reference a
27 is the source repository path. The source can also reference a
28 filesystem path.
28 filesystem path.
29
29
30 Note that ``.hgsub`` does not exist by default in Mercurial
30 Note that ``.hgsub`` does not exist by default in Mercurial
31 repositories, you have to create and add it to the parent
31 repositories, you have to create and add it to the parent
32 repository before using subrepositories.
32 repository before using subrepositories.
33
33
34 3. Nested repository states. They are defined in ``.hgsubstate``, which
34 3. Nested repository states. They are defined in ``.hgsubstate``, which
35 is placed in the root of working directory, and
35 is placed in the root of working directory, and
36 capture whatever information is required to restore the
36 capture whatever information is required to restore the
37 subrepositories to the state they were committed in a parent
37 subrepositories to the state they were committed in a parent
38 repository changeset. Mercurial automatically record the nested
38 repository changeset. Mercurial automatically record the nested
39 repositories states when committing in the parent repository.
39 repositories states when committing in the parent repository.
40
40
41 .. note::
41 .. note::
42
42
43 The ``.hgsubstate`` file should not be edited manually.
43 The ``.hgsubstate`` file should not be edited manually.
44
44
45
45
46 Adding a Subrepository
46 Adding a Subrepository
47 ======================
47 ======================
48
48
49 If ``.hgsub`` does not exist, create it and add it to the parent
49 If ``.hgsub`` does not exist, create it and add it to the parent
50 repository. Clone or checkout the external projects where you want it
50 repository. Clone or checkout the external projects where you want it
51 to live in the parent repository. Edit ``.hgsub`` and add the
51 to live in the parent repository. Edit ``.hgsub`` and add the
52 subrepository entry as described above. At this point, the
52 subrepository entry as described above. At this point, the
53 subrepository is tracked and the next commit will record its state in
53 subrepository is tracked and the next commit will record its state in
54 ``.hgsubstate`` and bind it to the committed changeset.
54 ``.hgsubstate`` and bind it to the committed changeset.
55
55
56 Synchronizing a Subrepository
56 Synchronizing a Subrepository
57 =============================
57 =============================
58
58
59 Subrepos do not automatically track the latest changeset of their
59 Subrepos do not automatically track the latest changeset of their
60 sources. Instead, they are updated to the changeset that corresponds
60 sources. Instead, they are updated to the changeset that corresponds
61 with the changeset checked out in the top-level changeset. This is so
61 with the changeset checked out in the top-level changeset. This is so
62 developers always get a consistent set of compatible code and
62 developers always get a consistent set of compatible code and
63 libraries when they update.
63 libraries when they update.
64
64
65 Thus, updating subrepos is a manual process. Simply check out target
65 Thus, updating subrepos is a manual process. Simply check out target
66 subrepo at the desired revision, test in the top-level repo, then
66 subrepo at the desired revision, test in the top-level repo, then
67 commit in the parent repository to record the new combination.
67 commit in the parent repository to record the new combination.
68
68
69 Deleting a Subrepository
69 Deleting a Subrepository
70 ========================
70 ========================
71
71
72 To remove a subrepository from the parent repository, delete its
72 To remove a subrepository from the parent repository, delete its
73 reference from ``.hgsub``, then remove its files.
73 reference from ``.hgsub``, then remove its files.
74
74
75 Interaction with Mercurial Commands
75 Interaction with Mercurial Commands
76 ===================================
76 ===================================
77
77
78 :add: add does not recurse in subrepos unless -S/--subrepos is
78 :add: add does not recurse in subrepos unless -S/--subrepos is
79 specified. However, if you specify the full path of a file in a
79 specified. However, if you specify the full path of a file in a
80 subrepo, it will be added even without -S/--subrepos specified.
80 subrepo, it will be added even without -S/--subrepos specified.
81 Git and Subversion subrepositories are currently silently
81 Git and Subversion subrepositories are currently silently
82 ignored.
82 ignored.
83
83
84 :archive: archive does not recurse in subrepositories unless
84 :archive: archive does not recurse in subrepositories unless
85 -S/--subrepos is specified.
85 -S/--subrepos is specified.
86
86
87 :cat: cat currently only handles exact file matches in subrepos.
87 :cat: cat currently only handles exact file matches in subrepos.
88 Git and Subversion subrepositories are currently ignored.
88 Git and Subversion subrepositories are currently ignored.
89
89
90 :commit: commit creates a consistent snapshot of the state of the
90 :commit: commit creates a consistent snapshot of the state of the
91 entire project and its subrepositories. If any subrepositories
91 entire project and its subrepositories. If any subrepositories
92 have been modified, Mercurial will abort. Mercurial can be made
92 have been modified, Mercurial will abort. Mercurial can be made
93 to instead commit all modified subrepositories by specifying
93 to instead commit all modified subrepositories by specifying
94 -S/--subrepos, or setting "ui.commitsubrepos=True" in a
94 -S/--subrepos, or setting "ui.commitsubrepos=True" in a
95 configuration file (see :hg:`help config`). After there are no
95 configuration file (see :hg:`help config`). After there are no
96 longer any modified subrepositories, it records their state and
96 longer any modified subrepositories, it records their state and
97 finally commits it in the parent repository.
97 finally commits it in the parent repository.
98
98
99 :diff: diff does not recurse in subrepos unless -S/--subrepos is
99 :diff: diff does not recurse in subrepos unless -S/--subrepos is
100 specified. Changes are displayed as usual, on the subrepositories
100 specified. Changes are displayed as usual, on the subrepositories
101 elements. Git and Subversion subrepositories are currently
101 elements. Git and Subversion subrepositories are currently
102 silently ignored.
102 silently ignored.
103
103
104 :forget: forget currently only handles exact file matches in subrepos.
104 :forget: forget currently only handles exact file matches in subrepos.
105 Git and Subversion subrepositories are currently silently ignored.
105 Git and Subversion subrepositories are currently silently ignored.
106
106
107 :incoming: incoming does not recurse in subrepos unless -S/--subrepos
107 :incoming: incoming does not recurse in subrepos unless -S/--subrepos
108 is specified. Git and Subversion subrepositories are currently
108 is specified. Git and Subversion subrepositories are currently
109 silently ignored.
109 silently ignored.
110
110
111 :outgoing: outgoing does not recurse in subrepos unless -S/--subrepos
111 :outgoing: outgoing does not recurse in subrepos unless -S/--subrepos
112 is specified. Git and Subversion subrepositories are currently
112 is specified. Git and Subversion subrepositories are currently
113 silently ignored.
113 silently ignored.
114
114
115 :pull: pull is not recursive since it is not clear what to pull prior
115 :pull: pull is not recursive since it is not clear what to pull prior
116 to running :hg:`update`. Listing and retrieving all
116 to running :hg:`update`. Listing and retrieving all
117 subrepositories changes referenced by the parent repository pulled
117 subrepositories changes referenced by the parent repository pulled
118 changesets is expensive at best, impossible in the Subversion
118 changesets is expensive at best, impossible in the Subversion
119 case.
119 case.
120
120
121 :push: Mercurial will automatically push all subrepositories first
121 :push: Mercurial will automatically push all subrepositories first
122 when the parent repository is being pushed. This ensures new
122 when the parent repository is being pushed. This ensures new
123 subrepository changes are available when referenced by top-level
123 subrepository changes are available when referenced by top-level
124 repositories. Push is a no-op for Subversion subrepositories.
124 repositories. Push is a no-op for Subversion subrepositories.
125
125
126 :status: status does not recurse into subrepositories unless
126 :status: status does not recurse into subrepositories unless
127 -S/--subrepos is specified. Subrepository changes are displayed as
127 -S/--subrepos is specified. Subrepository changes are displayed as
128 regular Mercurial changes on the subrepository
128 regular Mercurial changes on the subrepository
129 elements. Subversion subrepositories are currently silently
129 elements. Subversion subrepositories are currently silently
130 ignored.
130 ignored.
131
131
132 :remove: remove does not recurse into subrepositories unless
132 :remove: remove does not recurse into subrepositories unless
133 -S/--subrepos is specified. Git and Subversion subrepositories
133 -S/--subrepos is specified. However, if you specify a file or
134 are currently silently ignored.
134 directory path in a subrepo, it will be removed even without
135 -S/--subrepos. Git and Subversion subrepositories are currently
136 silently ignored.
135
137
136 :update: update restores the subrepos in the state they were
138 :update: update restores the subrepos in the state they were
137 originally committed in target changeset. If the recorded
139 originally committed in target changeset. If the recorded
138 changeset is not available in the current subrepository, Mercurial
140 changeset is not available in the current subrepository, Mercurial
139 will pull it in first before updating. This means that updating
141 will pull it in first before updating. This means that updating
140 can require network access when using subrepositories.
142 can require network access when using subrepositories.
141
143
142 Remapping Subrepositories Sources
144 Remapping Subrepositories Sources
143 =================================
145 =================================
144
146
145 A subrepository source location may change during a project life,
147 A subrepository source location may change during a project life,
146 invalidating references stored in the parent repository history. To
148 invalidating references stored in the parent repository history. To
147 fix this, rewriting rules can be defined in parent repository ``hgrc``
149 fix this, rewriting rules can be defined in parent repository ``hgrc``
148 file or in Mercurial configuration. See the ``[subpaths]`` section in
150 file or in Mercurial configuration. See the ``[subpaths]`` section in
149 hgrc(5) for more details.
151 hgrc(5) for more details.
150
152
@@ -1,275 +1,283 b''
1 Preparing the subrepository 'sub2'
1 Preparing the subrepository 'sub2'
2
2
3 $ hg init sub2
3 $ hg init sub2
4 $ echo sub2 > sub2/sub2
4 $ echo sub2 > sub2/sub2
5 $ hg add -R sub2
5 $ hg add -R sub2
6 adding sub2/sub2 (glob)
6 adding sub2/sub2 (glob)
7 $ hg commit -R sub2 -m "sub2 import"
7 $ hg commit -R sub2 -m "sub2 import"
8
8
9 Preparing the 'sub1' repo which depends on the subrepo 'sub2'
9 Preparing the 'sub1' repo which depends on the subrepo 'sub2'
10
10
11 $ hg init sub1
11 $ hg init sub1
12 $ echo sub1 > sub1/sub1
12 $ echo sub1 > sub1/sub1
13 $ echo "sub2 = ../sub2" > sub1/.hgsub
13 $ echo "sub2 = ../sub2" > sub1/.hgsub
14 $ hg clone sub2 sub1/sub2
14 $ hg clone sub2 sub1/sub2
15 updating to branch default
15 updating to branch default
16 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
16 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
17 $ hg add -R sub1
17 $ hg add -R sub1
18 adding sub1/.hgsub (glob)
18 adding sub1/.hgsub (glob)
19 adding sub1/sub1 (glob)
19 adding sub1/sub1 (glob)
20 $ hg commit -R sub1 -m "sub1 import"
20 $ hg commit -R sub1 -m "sub1 import"
21
21
22 Preparing the 'main' repo which depends on the subrepo 'sub1'
22 Preparing the 'main' repo which depends on the subrepo 'sub1'
23
23
24 $ hg init main
24 $ hg init main
25 $ echo main > main/main
25 $ echo main > main/main
26 $ echo "sub1 = ../sub1" > main/.hgsub
26 $ echo "sub1 = ../sub1" > main/.hgsub
27 $ hg clone sub1 main/sub1
27 $ hg clone sub1 main/sub1
28 updating to branch default
28 updating to branch default
29 cloning subrepo sub2 from $TESTTMP/sub2
29 cloning subrepo sub2 from $TESTTMP/sub2
30 3 files updated, 0 files merged, 0 files removed, 0 files unresolved
30 3 files updated, 0 files merged, 0 files removed, 0 files unresolved
31 $ hg add -R main
31 $ hg add -R main
32 adding main/.hgsub (glob)
32 adding main/.hgsub (glob)
33 adding main/main (glob)
33 adding main/main (glob)
34 $ hg commit -R main -m "main import"
34 $ hg commit -R main -m "main import"
35
35
36 Cleaning both repositories, just as a clone -U
36 Cleaning both repositories, just as a clone -U
37
37
38 $ hg up -C -R sub2 null
38 $ hg up -C -R sub2 null
39 0 files updated, 0 files merged, 1 files removed, 0 files unresolved
39 0 files updated, 0 files merged, 1 files removed, 0 files unresolved
40 $ hg up -C -R sub1 null
40 $ hg up -C -R sub1 null
41 0 files updated, 0 files merged, 3 files removed, 0 files unresolved
41 0 files updated, 0 files merged, 3 files removed, 0 files unresolved
42 $ hg up -C -R main null
42 $ hg up -C -R main null
43 0 files updated, 0 files merged, 3 files removed, 0 files unresolved
43 0 files updated, 0 files merged, 3 files removed, 0 files unresolved
44 $ rm -rf main/sub1
44 $ rm -rf main/sub1
45 $ rm -rf sub1/sub2
45 $ rm -rf sub1/sub2
46
46
47 Clone main
47 Clone main
48
48
49 $ hg clone main cloned
49 $ hg clone main cloned
50 updating to branch default
50 updating to branch default
51 cloning subrepo sub1 from $TESTTMP/sub1
51 cloning subrepo sub1 from $TESTTMP/sub1
52 cloning subrepo sub1/sub2 from $TESTTMP/sub2 (glob)
52 cloning subrepo sub1/sub2 from $TESTTMP/sub2 (glob)
53 3 files updated, 0 files merged, 0 files removed, 0 files unresolved
53 3 files updated, 0 files merged, 0 files removed, 0 files unresolved
54
54
55 Checking cloned repo ids
55 Checking cloned repo ids
56
56
57 $ printf "cloned " ; hg id -R cloned
57 $ printf "cloned " ; hg id -R cloned
58 cloned 7f491f53a367 tip
58 cloned 7f491f53a367 tip
59 $ printf "cloned/sub1 " ; hg id -R cloned/sub1
59 $ printf "cloned/sub1 " ; hg id -R cloned/sub1
60 cloned/sub1 fc3b4ce2696f tip
60 cloned/sub1 fc3b4ce2696f tip
61 $ printf "cloned/sub1/sub2 " ; hg id -R cloned/sub1/sub2
61 $ printf "cloned/sub1/sub2 " ; hg id -R cloned/sub1/sub2
62 cloned/sub1/sub2 c57a0840e3ba tip
62 cloned/sub1/sub2 c57a0840e3ba tip
63
63
64 debugsub output for main and sub1
64 debugsub output for main and sub1
65
65
66 $ hg debugsub -R cloned
66 $ hg debugsub -R cloned
67 path sub1
67 path sub1
68 source ../sub1
68 source ../sub1
69 revision fc3b4ce2696f7741438c79207583768f2ce6b0dd
69 revision fc3b4ce2696f7741438c79207583768f2ce6b0dd
70 $ hg debugsub -R cloned/sub1
70 $ hg debugsub -R cloned/sub1
71 path sub2
71 path sub2
72 source ../sub2
72 source ../sub2
73 revision c57a0840e3badd667ef3c3ef65471609acb2ba3c
73 revision c57a0840e3badd667ef3c3ef65471609acb2ba3c
74
74
75 Modifying deeply nested 'sub2'
75 Modifying deeply nested 'sub2'
76
76
77 $ echo modified > cloned/sub1/sub2/sub2
77 $ echo modified > cloned/sub1/sub2/sub2
78 $ hg commit --subrepos -m "deep nested modif should trigger a commit" -R cloned
78 $ hg commit --subrepos -m "deep nested modif should trigger a commit" -R cloned
79 committing subrepository sub1
79 committing subrepository sub1
80 committing subrepository sub1/sub2 (glob)
80 committing subrepository sub1/sub2 (glob)
81
81
82 Checking modified node ids
82 Checking modified node ids
83
83
84 $ printf "cloned " ; hg id -R cloned
84 $ printf "cloned " ; hg id -R cloned
85 cloned ffe6649062fe tip
85 cloned ffe6649062fe tip
86 $ printf "cloned/sub1 " ; hg id -R cloned/sub1
86 $ printf "cloned/sub1 " ; hg id -R cloned/sub1
87 cloned/sub1 2ecb03bf44a9 tip
87 cloned/sub1 2ecb03bf44a9 tip
88 $ printf "cloned/sub1/sub2 " ; hg id -R cloned/sub1/sub2
88 $ printf "cloned/sub1/sub2 " ; hg id -R cloned/sub1/sub2
89 cloned/sub1/sub2 53dd3430bcaf tip
89 cloned/sub1/sub2 53dd3430bcaf tip
90
90
91 debugsub output for main and sub1
91 debugsub output for main and sub1
92
92
93 $ hg debugsub -R cloned
93 $ hg debugsub -R cloned
94 path sub1
94 path sub1
95 source ../sub1
95 source ../sub1
96 revision 2ecb03bf44a94e749e8669481dd9069526ce7cb9
96 revision 2ecb03bf44a94e749e8669481dd9069526ce7cb9
97 $ hg debugsub -R cloned/sub1
97 $ hg debugsub -R cloned/sub1
98 path sub2
98 path sub2
99 source ../sub2
99 source ../sub2
100 revision 53dd3430bcaf5ab4a7c48262bcad6d441f510487
100 revision 53dd3430bcaf5ab4a7c48262bcad6d441f510487
101
101
102 Check that deep archiving works
102 Check that deep archiving works
103
103
104 $ cd cloned
104 $ cd cloned
105 $ echo 'test' > sub1/sub2/test.txt
105 $ echo 'test' > sub1/sub2/test.txt
106 $ hg --config extensions.largefiles=! add sub1/sub2/test.txt
106 $ hg --config extensions.largefiles=! add sub1/sub2/test.txt
107 $ mkdir sub1/sub2/folder
107 $ mkdir sub1/sub2/folder
108 $ echo 'subfolder' > sub1/sub2/folder/test.txt
108 $ echo 'subfolder' > sub1/sub2/folder/test.txt
109 $ hg --config extensions.largefiles=! add sub1/sub2/folder/test.txt
109 $ hg --config extensions.largefiles=! add sub1/sub2/folder/test.txt
110 $ hg ci -Sm "add test.txt"
110 $ hg ci -Sm "add test.txt"
111 committing subrepository sub1
111 committing subrepository sub1
112 committing subrepository sub1/sub2 (glob)
112 committing subrepository sub1/sub2 (glob)
113
113
114 .. but first take a detour through some deep removal testing
114 .. but first take a detour through some deep removal testing
115
115
116 $ hg remove -S -I 're:.*.txt' sub1
116 $ hg remove -S -I 're:.*.txt' sub1
117 removing sub1/sub2/folder/test.txt (glob)
117 removing sub1/sub2/folder/test.txt (glob)
118 removing sub1/sub2/test.txt (glob)
118 removing sub1/sub2/test.txt (glob)
119 $ hg status -S
119 $ hg status -S
120 R sub1/sub2/folder/test.txt
120 R sub1/sub2/folder/test.txt
121 R sub1/sub2/test.txt
121 R sub1/sub2/test.txt
122 $ hg update -Cq
122 $ hg update -Cq
123 $ hg remove -I 're:.*.txt' sub1
124 $ hg status -S
125 $ hg remove sub1/sub2/folder/test.txt
126 $ hg remove sub1/.hgsubstate
127 $ hg status -S
128 R sub1/.hgsubstate
129 R sub1/sub2/folder/test.txt
130 $ hg update -Cq
123
131
124 $ hg --config extensions.largefiles=! archive -S ../archive_all
132 $ hg --config extensions.largefiles=! archive -S ../archive_all
125 $ find ../archive_all | sort
133 $ find ../archive_all | sort
126 ../archive_all
134 ../archive_all
127 ../archive_all/.hg_archival.txt
135 ../archive_all/.hg_archival.txt
128 ../archive_all/.hgsub
136 ../archive_all/.hgsub
129 ../archive_all/.hgsubstate
137 ../archive_all/.hgsubstate
130 ../archive_all/main
138 ../archive_all/main
131 ../archive_all/sub1
139 ../archive_all/sub1
132 ../archive_all/sub1/.hgsub
140 ../archive_all/sub1/.hgsub
133 ../archive_all/sub1/.hgsubstate
141 ../archive_all/sub1/.hgsubstate
134 ../archive_all/sub1/sub1
142 ../archive_all/sub1/sub1
135 ../archive_all/sub1/sub2
143 ../archive_all/sub1/sub2
136 ../archive_all/sub1/sub2/folder
144 ../archive_all/sub1/sub2/folder
137 ../archive_all/sub1/sub2/folder/test.txt
145 ../archive_all/sub1/sub2/folder/test.txt
138 ../archive_all/sub1/sub2/sub2
146 ../archive_all/sub1/sub2/sub2
139 ../archive_all/sub1/sub2/test.txt
147 ../archive_all/sub1/sub2/test.txt
140
148
141 Check that archive -X works in deep subrepos
149 Check that archive -X works in deep subrepos
142
150
143 $ hg --config extensions.largefiles=! archive -S -X '**test*' ../archive_exclude
151 $ hg --config extensions.largefiles=! archive -S -X '**test*' ../archive_exclude
144 $ find ../archive_exclude | sort
152 $ find ../archive_exclude | sort
145 ../archive_exclude
153 ../archive_exclude
146 ../archive_exclude/.hg_archival.txt
154 ../archive_exclude/.hg_archival.txt
147 ../archive_exclude/.hgsub
155 ../archive_exclude/.hgsub
148 ../archive_exclude/.hgsubstate
156 ../archive_exclude/.hgsubstate
149 ../archive_exclude/main
157 ../archive_exclude/main
150 ../archive_exclude/sub1
158 ../archive_exclude/sub1
151 ../archive_exclude/sub1/.hgsub
159 ../archive_exclude/sub1/.hgsub
152 ../archive_exclude/sub1/.hgsubstate
160 ../archive_exclude/sub1/.hgsubstate
153 ../archive_exclude/sub1/sub1
161 ../archive_exclude/sub1/sub1
154 ../archive_exclude/sub1/sub2
162 ../archive_exclude/sub1/sub2
155 ../archive_exclude/sub1/sub2/sub2
163 ../archive_exclude/sub1/sub2/sub2
156
164
157 $ hg --config extensions.largefiles=! archive -S -I '**test*' ../archive_include
165 $ hg --config extensions.largefiles=! archive -S -I '**test*' ../archive_include
158 $ find ../archive_include | sort
166 $ find ../archive_include | sort
159 ../archive_include
167 ../archive_include
160 ../archive_include/sub1
168 ../archive_include/sub1
161 ../archive_include/sub1/sub2
169 ../archive_include/sub1/sub2
162 ../archive_include/sub1/sub2/folder
170 ../archive_include/sub1/sub2/folder
163 ../archive_include/sub1/sub2/folder/test.txt
171 ../archive_include/sub1/sub2/folder/test.txt
164 ../archive_include/sub1/sub2/test.txt
172 ../archive_include/sub1/sub2/test.txt
165
173
166 Check that deep archive works with largefiles (which overrides hgsubrepo impl)
174 Check that deep archive works with largefiles (which overrides hgsubrepo impl)
167 This also tests the repo.ui regression in 43fb170a23bd, and that lf subrepo
175 This also tests the repo.ui regression in 43fb170a23bd, and that lf subrepo
168 subrepos are archived properly.
176 subrepos are archived properly.
169 Note that add --large through a subrepo currently adds the file as a normal file
177 Note that add --large through a subrepo currently adds the file as a normal file
170
178
171 $ echo "large" > sub1/sub2/large.bin
179 $ echo "large" > sub1/sub2/large.bin
172 $ hg --config extensions.largefiles= add --large -R sub1/sub2 sub1/sub2/large.bin
180 $ hg --config extensions.largefiles= add --large -R sub1/sub2 sub1/sub2/large.bin
173 $ echo "large" > large.bin
181 $ echo "large" > large.bin
174 $ hg --config extensions.largefiles= add --large large.bin
182 $ hg --config extensions.largefiles= add --large large.bin
175 $ hg --config extensions.largefiles= ci -S -m "add large files"
183 $ hg --config extensions.largefiles= ci -S -m "add large files"
176 committing subrepository sub1
184 committing subrepository sub1
177 committing subrepository sub1/sub2 (glob)
185 committing subrepository sub1/sub2 (glob)
178
186
179 $ hg --config extensions.largefiles= archive -S ../archive_lf
187 $ hg --config extensions.largefiles= archive -S ../archive_lf
180 $ find ../archive_lf | sort
188 $ find ../archive_lf | sort
181 ../archive_lf
189 ../archive_lf
182 ../archive_lf/.hg_archival.txt
190 ../archive_lf/.hg_archival.txt
183 ../archive_lf/.hgsub
191 ../archive_lf/.hgsub
184 ../archive_lf/.hgsubstate
192 ../archive_lf/.hgsubstate
185 ../archive_lf/large.bin
193 ../archive_lf/large.bin
186 ../archive_lf/main
194 ../archive_lf/main
187 ../archive_lf/sub1
195 ../archive_lf/sub1
188 ../archive_lf/sub1/.hgsub
196 ../archive_lf/sub1/.hgsub
189 ../archive_lf/sub1/.hgsubstate
197 ../archive_lf/sub1/.hgsubstate
190 ../archive_lf/sub1/sub1
198 ../archive_lf/sub1/sub1
191 ../archive_lf/sub1/sub2
199 ../archive_lf/sub1/sub2
192 ../archive_lf/sub1/sub2/folder
200 ../archive_lf/sub1/sub2/folder
193 ../archive_lf/sub1/sub2/folder/test.txt
201 ../archive_lf/sub1/sub2/folder/test.txt
194 ../archive_lf/sub1/sub2/large.bin
202 ../archive_lf/sub1/sub2/large.bin
195 ../archive_lf/sub1/sub2/sub2
203 ../archive_lf/sub1/sub2/sub2
196 ../archive_lf/sub1/sub2/test.txt
204 ../archive_lf/sub1/sub2/test.txt
197 $ rm -rf ../archive_lf
205 $ rm -rf ../archive_lf
198
206
199 Exclude large files from main and sub-sub repo
207 Exclude large files from main and sub-sub repo
200
208
201 $ hg --config extensions.largefiles= archive -S -X '**.bin' ../archive_lf
209 $ hg --config extensions.largefiles= archive -S -X '**.bin' ../archive_lf
202 $ find ../archive_lf | sort
210 $ find ../archive_lf | sort
203 ../archive_lf
211 ../archive_lf
204 ../archive_lf/.hg_archival.txt
212 ../archive_lf/.hg_archival.txt
205 ../archive_lf/.hgsub
213 ../archive_lf/.hgsub
206 ../archive_lf/.hgsubstate
214 ../archive_lf/.hgsubstate
207 ../archive_lf/main
215 ../archive_lf/main
208 ../archive_lf/sub1
216 ../archive_lf/sub1
209 ../archive_lf/sub1/.hgsub
217 ../archive_lf/sub1/.hgsub
210 ../archive_lf/sub1/.hgsubstate
218 ../archive_lf/sub1/.hgsubstate
211 ../archive_lf/sub1/sub1
219 ../archive_lf/sub1/sub1
212 ../archive_lf/sub1/sub2
220 ../archive_lf/sub1/sub2
213 ../archive_lf/sub1/sub2/folder
221 ../archive_lf/sub1/sub2/folder
214 ../archive_lf/sub1/sub2/folder/test.txt
222 ../archive_lf/sub1/sub2/folder/test.txt
215 ../archive_lf/sub1/sub2/sub2
223 ../archive_lf/sub1/sub2/sub2
216 ../archive_lf/sub1/sub2/test.txt
224 ../archive_lf/sub1/sub2/test.txt
217 $ rm -rf ../archive_lf
225 $ rm -rf ../archive_lf
218
226
219 Exclude normal files from main and sub-sub repo
227 Exclude normal files from main and sub-sub repo
220
228
221 $ hg --config extensions.largefiles= archive -S -X '**.txt' ../archive_lf
229 $ hg --config extensions.largefiles= archive -S -X '**.txt' ../archive_lf
222 $ find ../archive_lf | sort
230 $ find ../archive_lf | sort
223 ../archive_lf
231 ../archive_lf
224 ../archive_lf/.hgsub
232 ../archive_lf/.hgsub
225 ../archive_lf/.hgsubstate
233 ../archive_lf/.hgsubstate
226 ../archive_lf/large.bin
234 ../archive_lf/large.bin
227 ../archive_lf/main
235 ../archive_lf/main
228 ../archive_lf/sub1
236 ../archive_lf/sub1
229 ../archive_lf/sub1/.hgsub
237 ../archive_lf/sub1/.hgsub
230 ../archive_lf/sub1/.hgsubstate
238 ../archive_lf/sub1/.hgsubstate
231 ../archive_lf/sub1/sub1
239 ../archive_lf/sub1/sub1
232 ../archive_lf/sub1/sub2
240 ../archive_lf/sub1/sub2
233 ../archive_lf/sub1/sub2/large.bin
241 ../archive_lf/sub1/sub2/large.bin
234 ../archive_lf/sub1/sub2/sub2
242 ../archive_lf/sub1/sub2/sub2
235 $ rm -rf ../archive_lf
243 $ rm -rf ../archive_lf
236
244
237 Include normal files from within a largefiles subrepo
245 Include normal files from within a largefiles subrepo
238
246
239 $ hg --config extensions.largefiles= archive -S -I '**.txt' ../archive_lf
247 $ hg --config extensions.largefiles= archive -S -I '**.txt' ../archive_lf
240 $ find ../archive_lf | sort
248 $ find ../archive_lf | sort
241 ../archive_lf
249 ../archive_lf
242 ../archive_lf/.hg_archival.txt
250 ../archive_lf/.hg_archival.txt
243 ../archive_lf/sub1
251 ../archive_lf/sub1
244 ../archive_lf/sub1/sub2
252 ../archive_lf/sub1/sub2
245 ../archive_lf/sub1/sub2/folder
253 ../archive_lf/sub1/sub2/folder
246 ../archive_lf/sub1/sub2/folder/test.txt
254 ../archive_lf/sub1/sub2/folder/test.txt
247 ../archive_lf/sub1/sub2/test.txt
255 ../archive_lf/sub1/sub2/test.txt
248 $ rm -rf ../archive_lf
256 $ rm -rf ../archive_lf
249
257
250 Include large files from within a largefiles subrepo
258 Include large files from within a largefiles subrepo
251
259
252 $ hg --config extensions.largefiles= archive -S -I '**.bin' ../archive_lf
260 $ hg --config extensions.largefiles= archive -S -I '**.bin' ../archive_lf
253 $ find ../archive_lf | sort
261 $ find ../archive_lf | sort
254 ../archive_lf
262 ../archive_lf
255 ../archive_lf/large.bin
263 ../archive_lf/large.bin
256 ../archive_lf/sub1
264 ../archive_lf/sub1
257 ../archive_lf/sub1/sub2
265 ../archive_lf/sub1/sub2
258 ../archive_lf/sub1/sub2/large.bin
266 ../archive_lf/sub1/sub2/large.bin
259 $ rm -rf ../archive_lf
267 $ rm -rf ../archive_lf
260
268
261 Find an exact largefile match in a largefiles subrepo
269 Find an exact largefile match in a largefiles subrepo
262
270
263 $ hg --config extensions.largefiles= archive -S -I 'sub1/sub2/large.bin' ../archive_lf
271 $ hg --config extensions.largefiles= archive -S -I 'sub1/sub2/large.bin' ../archive_lf
264 $ find ../archive_lf | sort
272 $ find ../archive_lf | sort
265 ../archive_lf
273 ../archive_lf
266 ../archive_lf/sub1
274 ../archive_lf/sub1
267 ../archive_lf/sub1/sub2
275 ../archive_lf/sub1/sub2
268 ../archive_lf/sub1/sub2/large.bin
276 ../archive_lf/sub1/sub2/large.bin
269 $ rm -rf ../archive_lf
277 $ rm -rf ../archive_lf
270
278
271 Find an exact match to a standin (should archive nothing)
279 Find an exact match to a standin (should archive nothing)
272 $ hg --config extensions.largefiles= archive -S -I 'sub/sub2/.hglf/large.bin' ../archive_lf
280 $ hg --config extensions.largefiles= archive -S -I 'sub/sub2/.hglf/large.bin' ../archive_lf
273 $ find ../archive_lf 2> /dev/null | sort
281 $ find ../archive_lf 2> /dev/null | sort
274
282
275 $ cd ..
283 $ cd ..
General Comments 0
You need to be logged in to leave comments. Login now