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