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