##// END OF EJS Templates
debugrevlog: use unfiltered view for changelog
Matt Mackall -
r21033:254f55b6 default
parent child Browse files
Show More
@@ -1,2361 +1,2361 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
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 lock as lockmod
17 17
18 18 def parsealiases(cmd):
19 19 return cmd.lstrip("^").split("|")
20 20
21 21 def findpossible(cmd, table, strict=False):
22 22 """
23 23 Return cmd -> (aliases, command table entry)
24 24 for each matching command.
25 25 Return debug commands (or their aliases) only if no normal command matches.
26 26 """
27 27 choice = {}
28 28 debugchoice = {}
29 29
30 30 if cmd in table:
31 31 # short-circuit exact matches, "log" alias beats "^log|history"
32 32 keys = [cmd]
33 33 else:
34 34 keys = table.keys()
35 35
36 36 for e in keys:
37 37 aliases = parsealiases(e)
38 38 found = None
39 39 if cmd in aliases:
40 40 found = cmd
41 41 elif not strict:
42 42 for a in aliases:
43 43 if a.startswith(cmd):
44 44 found = a
45 45 break
46 46 if found is not None:
47 47 if aliases[0].startswith("debug") or found.startswith("debug"):
48 48 debugchoice[found] = (aliases, table[e])
49 49 else:
50 50 choice[found] = (aliases, table[e])
51 51
52 52 if not choice and debugchoice:
53 53 choice = debugchoice
54 54
55 55 return choice
56 56
57 57 def findcmd(cmd, table, strict=True):
58 58 """Return (aliases, command table entry) for command string."""
59 59 choice = findpossible(cmd, table, strict)
60 60
61 61 if cmd in choice:
62 62 return choice[cmd]
63 63
64 64 if len(choice) > 1:
65 65 clist = choice.keys()
66 66 clist.sort()
67 67 raise error.AmbiguousCommand(cmd, clist)
68 68
69 69 if choice:
70 70 return choice.values()[0]
71 71
72 72 raise error.UnknownCommand(cmd)
73 73
74 74 def findrepo(p):
75 75 while not os.path.isdir(os.path.join(p, ".hg")):
76 76 oldp, p = p, os.path.dirname(p)
77 77 if p == oldp:
78 78 return None
79 79
80 80 return p
81 81
82 82 def bailifchanged(repo):
83 83 if repo.dirstate.p2() != nullid:
84 84 raise util.Abort(_('outstanding uncommitted merge'))
85 85 modified, added, removed, deleted = repo.status()[:4]
86 86 if modified or added or removed or deleted:
87 87 raise util.Abort(_('uncommitted changes'))
88 88 ctx = repo[None]
89 89 for s in sorted(ctx.substate):
90 90 if ctx.sub(s).dirty():
91 91 raise util.Abort(_("uncommitted changes in subrepo %s") % s)
92 92
93 93 def logmessage(ui, opts):
94 94 """ get the log message according to -m and -l option """
95 95 message = opts.get('message')
96 96 logfile = opts.get('logfile')
97 97
98 98 if message and logfile:
99 99 raise util.Abort(_('options --message and --logfile are mutually '
100 100 'exclusive'))
101 101 if not message and logfile:
102 102 try:
103 103 if logfile == '-':
104 104 message = ui.fin.read()
105 105 else:
106 106 message = '\n'.join(util.readfile(logfile).splitlines())
107 107 except IOError, inst:
108 108 raise util.Abort(_("can't read commit message '%s': %s") %
109 109 (logfile, inst.strerror))
110 110 return message
111 111
112 112 def loglimit(opts):
113 113 """get the log limit according to option -l/--limit"""
114 114 limit = opts.get('limit')
115 115 if limit:
116 116 try:
117 117 limit = int(limit)
118 118 except ValueError:
119 119 raise util.Abort(_('limit must be a positive integer'))
120 120 if limit <= 0:
121 121 raise util.Abort(_('limit must be positive'))
122 122 else:
123 123 limit = None
124 124 return limit
125 125
126 126 def makefilename(repo, pat, node, desc=None,
127 127 total=None, seqno=None, revwidth=None, pathname=None):
128 128 node_expander = {
129 129 'H': lambda: hex(node),
130 130 'R': lambda: str(repo.changelog.rev(node)),
131 131 'h': lambda: short(node),
132 132 'm': lambda: re.sub('[^\w]', '_', str(desc))
133 133 }
134 134 expander = {
135 135 '%': lambda: '%',
136 136 'b': lambda: os.path.basename(repo.root),
137 137 }
138 138
139 139 try:
140 140 if node:
141 141 expander.update(node_expander)
142 142 if node:
143 143 expander['r'] = (lambda:
144 144 str(repo.changelog.rev(node)).zfill(revwidth or 0))
145 145 if total is not None:
146 146 expander['N'] = lambda: str(total)
147 147 if seqno is not None:
148 148 expander['n'] = lambda: str(seqno)
149 149 if total is not None and seqno is not None:
150 150 expander['n'] = lambda: str(seqno).zfill(len(str(total)))
151 151 if pathname is not None:
152 152 expander['s'] = lambda: os.path.basename(pathname)
153 153 expander['d'] = lambda: os.path.dirname(pathname) or '.'
154 154 expander['p'] = lambda: pathname
155 155
156 156 newname = []
157 157 patlen = len(pat)
158 158 i = 0
159 159 while i < patlen:
160 160 c = pat[i]
161 161 if c == '%':
162 162 i += 1
163 163 c = pat[i]
164 164 c = expander[c]()
165 165 newname.append(c)
166 166 i += 1
167 167 return ''.join(newname)
168 168 except KeyError, inst:
169 169 raise util.Abort(_("invalid format spec '%%%s' in output filename") %
170 170 inst.args[0])
171 171
172 172 def makefileobj(repo, pat, node=None, desc=None, total=None,
173 173 seqno=None, revwidth=None, mode='wb', modemap=None,
174 174 pathname=None):
175 175
176 176 writable = mode not in ('r', 'rb')
177 177
178 178 if not pat or pat == '-':
179 179 fp = writable and repo.ui.fout or repo.ui.fin
180 180 if util.safehasattr(fp, 'fileno'):
181 181 return os.fdopen(os.dup(fp.fileno()), mode)
182 182 else:
183 183 # if this fp can't be duped properly, return
184 184 # a dummy object that can be closed
185 185 class wrappedfileobj(object):
186 186 noop = lambda x: None
187 187 def __init__(self, f):
188 188 self.f = f
189 189 def __getattr__(self, attr):
190 190 if attr == 'close':
191 191 return self.noop
192 192 else:
193 193 return getattr(self.f, attr)
194 194
195 195 return wrappedfileobj(fp)
196 196 if util.safehasattr(pat, 'write') and writable:
197 197 return pat
198 198 if util.safehasattr(pat, 'read') and 'r' in mode:
199 199 return pat
200 200 fn = makefilename(repo, pat, node, desc, total, seqno, revwidth, pathname)
201 201 if modemap is not None:
202 202 mode = modemap.get(fn, mode)
203 203 if mode == 'wb':
204 204 modemap[fn] = 'ab'
205 205 return open(fn, mode)
206 206
207 207 def openrevlog(repo, cmd, file_, opts):
208 208 """opens the changelog, manifest, a filelog or a given revlog"""
209 209 cl = opts['changelog']
210 210 mf = opts['manifest']
211 211 msg = None
212 212 if cl and mf:
213 213 msg = _('cannot specify --changelog and --manifest at the same time')
214 214 elif cl or mf:
215 215 if file_:
216 216 msg = _('cannot specify filename with --changelog or --manifest')
217 217 elif not repo:
218 218 msg = _('cannot specify --changelog or --manifest '
219 219 'without a repository')
220 220 if msg:
221 221 raise util.Abort(msg)
222 222
223 223 r = None
224 224 if repo:
225 225 if cl:
226 r = repo.changelog
226 r = repo.unfiltered().changelog
227 227 elif mf:
228 228 r = repo.manifest
229 229 elif file_:
230 230 filelog = repo.file(file_)
231 231 if len(filelog):
232 232 r = filelog
233 233 if not r:
234 234 if not file_:
235 235 raise error.CommandError(cmd, _('invalid arguments'))
236 236 if not os.path.isfile(file_):
237 237 raise util.Abort(_("revlog '%s' not found") % file_)
238 238 r = revlog.revlog(scmutil.opener(os.getcwd(), audit=False),
239 239 file_[:-2] + ".i")
240 240 return r
241 241
242 242 def copy(ui, repo, pats, opts, rename=False):
243 243 # called with the repo lock held
244 244 #
245 245 # hgsep => pathname that uses "/" to separate directories
246 246 # ossep => pathname that uses os.sep to separate directories
247 247 cwd = repo.getcwd()
248 248 targets = {}
249 249 after = opts.get("after")
250 250 dryrun = opts.get("dry_run")
251 251 wctx = repo[None]
252 252
253 253 def walkpat(pat):
254 254 srcs = []
255 255 badstates = after and '?' or '?r'
256 256 m = scmutil.match(repo[None], [pat], opts, globbed=True)
257 257 for abs in repo.walk(m):
258 258 state = repo.dirstate[abs]
259 259 rel = m.rel(abs)
260 260 exact = m.exact(abs)
261 261 if state in badstates:
262 262 if exact and state == '?':
263 263 ui.warn(_('%s: not copying - file is not managed\n') % rel)
264 264 if exact and state == 'r':
265 265 ui.warn(_('%s: not copying - file has been marked for'
266 266 ' remove\n') % rel)
267 267 continue
268 268 # abs: hgsep
269 269 # rel: ossep
270 270 srcs.append((abs, rel, exact))
271 271 return srcs
272 272
273 273 # abssrc: hgsep
274 274 # relsrc: ossep
275 275 # otarget: ossep
276 276 def copyfile(abssrc, relsrc, otarget, exact):
277 277 abstarget = pathutil.canonpath(repo.root, cwd, otarget)
278 278 if '/' in abstarget:
279 279 # We cannot normalize abstarget itself, this would prevent
280 280 # case only renames, like a => A.
281 281 abspath, absname = abstarget.rsplit('/', 1)
282 282 abstarget = repo.dirstate.normalize(abspath) + '/' + absname
283 283 reltarget = repo.pathto(abstarget, cwd)
284 284 target = repo.wjoin(abstarget)
285 285 src = repo.wjoin(abssrc)
286 286 state = repo.dirstate[abstarget]
287 287
288 288 scmutil.checkportable(ui, abstarget)
289 289
290 290 # check for collisions
291 291 prevsrc = targets.get(abstarget)
292 292 if prevsrc is not None:
293 293 ui.warn(_('%s: not overwriting - %s collides with %s\n') %
294 294 (reltarget, repo.pathto(abssrc, cwd),
295 295 repo.pathto(prevsrc, cwd)))
296 296 return
297 297
298 298 # check for overwrites
299 299 exists = os.path.lexists(target)
300 300 samefile = False
301 301 if exists and abssrc != abstarget:
302 302 if (repo.dirstate.normalize(abssrc) ==
303 303 repo.dirstate.normalize(abstarget)):
304 304 if not rename:
305 305 ui.warn(_("%s: can't copy - same file\n") % reltarget)
306 306 return
307 307 exists = False
308 308 samefile = True
309 309
310 310 if not after and exists or after and state in 'mn':
311 311 if not opts['force']:
312 312 ui.warn(_('%s: not overwriting - file exists\n') %
313 313 reltarget)
314 314 return
315 315
316 316 if after:
317 317 if not exists:
318 318 if rename:
319 319 ui.warn(_('%s: not recording move - %s does not exist\n') %
320 320 (relsrc, reltarget))
321 321 else:
322 322 ui.warn(_('%s: not recording copy - %s does not exist\n') %
323 323 (relsrc, reltarget))
324 324 return
325 325 elif not dryrun:
326 326 try:
327 327 if exists:
328 328 os.unlink(target)
329 329 targetdir = os.path.dirname(target) or '.'
330 330 if not os.path.isdir(targetdir):
331 331 os.makedirs(targetdir)
332 332 if samefile:
333 333 tmp = target + "~hgrename"
334 334 os.rename(src, tmp)
335 335 os.rename(tmp, target)
336 336 else:
337 337 util.copyfile(src, target)
338 338 srcexists = True
339 339 except IOError, inst:
340 340 if inst.errno == errno.ENOENT:
341 341 ui.warn(_('%s: deleted in working copy\n') % relsrc)
342 342 srcexists = False
343 343 else:
344 344 ui.warn(_('%s: cannot copy - %s\n') %
345 345 (relsrc, inst.strerror))
346 346 return True # report a failure
347 347
348 348 if ui.verbose or not exact:
349 349 if rename:
350 350 ui.status(_('moving %s to %s\n') % (relsrc, reltarget))
351 351 else:
352 352 ui.status(_('copying %s to %s\n') % (relsrc, reltarget))
353 353
354 354 targets[abstarget] = abssrc
355 355
356 356 # fix up dirstate
357 357 scmutil.dirstatecopy(ui, repo, wctx, abssrc, abstarget,
358 358 dryrun=dryrun, cwd=cwd)
359 359 if rename and not dryrun:
360 360 if not after and srcexists and not samefile:
361 361 util.unlinkpath(repo.wjoin(abssrc))
362 362 wctx.forget([abssrc])
363 363
364 364 # pat: ossep
365 365 # dest ossep
366 366 # srcs: list of (hgsep, hgsep, ossep, bool)
367 367 # return: function that takes hgsep and returns ossep
368 368 def targetpathfn(pat, dest, srcs):
369 369 if os.path.isdir(pat):
370 370 abspfx = pathutil.canonpath(repo.root, cwd, pat)
371 371 abspfx = util.localpath(abspfx)
372 372 if destdirexists:
373 373 striplen = len(os.path.split(abspfx)[0])
374 374 else:
375 375 striplen = len(abspfx)
376 376 if striplen:
377 377 striplen += len(os.sep)
378 378 res = lambda p: os.path.join(dest, util.localpath(p)[striplen:])
379 379 elif destdirexists:
380 380 res = lambda p: os.path.join(dest,
381 381 os.path.basename(util.localpath(p)))
382 382 else:
383 383 res = lambda p: dest
384 384 return res
385 385
386 386 # pat: ossep
387 387 # dest ossep
388 388 # srcs: list of (hgsep, hgsep, ossep, bool)
389 389 # return: function that takes hgsep and returns ossep
390 390 def targetpathafterfn(pat, dest, srcs):
391 391 if matchmod.patkind(pat):
392 392 # a mercurial pattern
393 393 res = lambda p: os.path.join(dest,
394 394 os.path.basename(util.localpath(p)))
395 395 else:
396 396 abspfx = pathutil.canonpath(repo.root, cwd, pat)
397 397 if len(abspfx) < len(srcs[0][0]):
398 398 # A directory. Either the target path contains the last
399 399 # component of the source path or it does not.
400 400 def evalpath(striplen):
401 401 score = 0
402 402 for s in srcs:
403 403 t = os.path.join(dest, util.localpath(s[0])[striplen:])
404 404 if os.path.lexists(t):
405 405 score += 1
406 406 return score
407 407
408 408 abspfx = util.localpath(abspfx)
409 409 striplen = len(abspfx)
410 410 if striplen:
411 411 striplen += len(os.sep)
412 412 if os.path.isdir(os.path.join(dest, os.path.split(abspfx)[1])):
413 413 score = evalpath(striplen)
414 414 striplen1 = len(os.path.split(abspfx)[0])
415 415 if striplen1:
416 416 striplen1 += len(os.sep)
417 417 if evalpath(striplen1) > score:
418 418 striplen = striplen1
419 419 res = lambda p: os.path.join(dest,
420 420 util.localpath(p)[striplen:])
421 421 else:
422 422 # a file
423 423 if destdirexists:
424 424 res = lambda p: os.path.join(dest,
425 425 os.path.basename(util.localpath(p)))
426 426 else:
427 427 res = lambda p: dest
428 428 return res
429 429
430 430
431 431 pats = scmutil.expandpats(pats)
432 432 if not pats:
433 433 raise util.Abort(_('no source or destination specified'))
434 434 if len(pats) == 1:
435 435 raise util.Abort(_('no destination specified'))
436 436 dest = pats.pop()
437 437 destdirexists = os.path.isdir(dest) and not os.path.islink(dest)
438 438 if not destdirexists:
439 439 if len(pats) > 1 or matchmod.patkind(pats[0]):
440 440 raise util.Abort(_('with multiple sources, destination must be an '
441 441 'existing directory'))
442 442 if util.endswithsep(dest):
443 443 raise util.Abort(_('destination %s is not a directory') % dest)
444 444
445 445 tfn = targetpathfn
446 446 if after:
447 447 tfn = targetpathafterfn
448 448 copylist = []
449 449 for pat in pats:
450 450 srcs = walkpat(pat)
451 451 if not srcs:
452 452 continue
453 453 copylist.append((tfn(pat, dest, srcs), srcs))
454 454 if not copylist:
455 455 raise util.Abort(_('no files to copy'))
456 456
457 457 errors = 0
458 458 for targetpath, srcs in copylist:
459 459 for abssrc, relsrc, exact in srcs:
460 460 if copyfile(abssrc, relsrc, targetpath(abssrc), exact):
461 461 errors += 1
462 462
463 463 if errors:
464 464 ui.warn(_('(consider using --after)\n'))
465 465
466 466 return errors != 0
467 467
468 468 def service(opts, parentfn=None, initfn=None, runfn=None, logfile=None,
469 469 runargs=None, appendpid=False):
470 470 '''Run a command as a service.'''
471 471
472 472 def writepid(pid):
473 473 if opts['pid_file']:
474 474 mode = appendpid and 'a' or 'w'
475 475 fp = open(opts['pid_file'], mode)
476 476 fp.write(str(pid) + '\n')
477 477 fp.close()
478 478
479 479 if opts['daemon'] and not opts['daemon_pipefds']:
480 480 # Signal child process startup with file removal
481 481 lockfd, lockpath = tempfile.mkstemp(prefix='hg-service-')
482 482 os.close(lockfd)
483 483 try:
484 484 if not runargs:
485 485 runargs = util.hgcmd() + sys.argv[1:]
486 486 runargs.append('--daemon-pipefds=%s' % lockpath)
487 487 # Don't pass --cwd to the child process, because we've already
488 488 # changed directory.
489 489 for i in xrange(1, len(runargs)):
490 490 if runargs[i].startswith('--cwd='):
491 491 del runargs[i]
492 492 break
493 493 elif runargs[i].startswith('--cwd'):
494 494 del runargs[i:i + 2]
495 495 break
496 496 def condfn():
497 497 return not os.path.exists(lockpath)
498 498 pid = util.rundetached(runargs, condfn)
499 499 if pid < 0:
500 500 raise util.Abort(_('child process failed to start'))
501 501 writepid(pid)
502 502 finally:
503 503 try:
504 504 os.unlink(lockpath)
505 505 except OSError, e:
506 506 if e.errno != errno.ENOENT:
507 507 raise
508 508 if parentfn:
509 509 return parentfn(pid)
510 510 else:
511 511 return
512 512
513 513 if initfn:
514 514 initfn()
515 515
516 516 if not opts['daemon']:
517 517 writepid(os.getpid())
518 518
519 519 if opts['daemon_pipefds']:
520 520 lockpath = opts['daemon_pipefds']
521 521 try:
522 522 os.setsid()
523 523 except AttributeError:
524 524 pass
525 525 os.unlink(lockpath)
526 526 util.hidewindow()
527 527 sys.stdout.flush()
528 528 sys.stderr.flush()
529 529
530 530 nullfd = os.open(os.devnull, os.O_RDWR)
531 531 logfilefd = nullfd
532 532 if logfile:
533 533 logfilefd = os.open(logfile, os.O_RDWR | os.O_CREAT | os.O_APPEND)
534 534 os.dup2(nullfd, 0)
535 535 os.dup2(logfilefd, 1)
536 536 os.dup2(logfilefd, 2)
537 537 if nullfd not in (0, 1, 2):
538 538 os.close(nullfd)
539 539 if logfile and logfilefd not in (0, 1, 2):
540 540 os.close(logfilefd)
541 541
542 542 if runfn:
543 543 return runfn()
544 544
545 545 def tryimportone(ui, repo, hunk, parents, opts, msgs, updatefunc):
546 546 """Utility function used by commands.import to import a single patch
547 547
548 548 This function is explicitly defined here to help the evolve extension to
549 549 wrap this part of the import logic.
550 550
551 551 The API is currently a bit ugly because it a simple code translation from
552 552 the import command. Feel free to make it better.
553 553
554 554 :hunk: a patch (as a binary string)
555 555 :parents: nodes that will be parent of the created commit
556 556 :opts: the full dict of option passed to the import command
557 557 :msgs: list to save commit message to.
558 558 (used in case we need to save it when failing)
559 559 :updatefunc: a function that update a repo to a given node
560 560 updatefunc(<repo>, <node>)
561 561 """
562 562 tmpname, message, user, date, branch, nodeid, p1, p2 = \
563 563 patch.extract(ui, hunk)
564 564
565 565 editor = commiteditor
566 566 if opts.get('edit'):
567 567 editor = commitforceeditor
568 568 update = not opts.get('bypass')
569 569 strip = opts["strip"]
570 570 sim = float(opts.get('similarity') or 0)
571 571 if not tmpname:
572 572 return (None, None)
573 573 msg = _('applied to working directory')
574 574
575 575 try:
576 576 cmdline_message = logmessage(ui, opts)
577 577 if cmdline_message:
578 578 # pickup the cmdline msg
579 579 message = cmdline_message
580 580 elif message:
581 581 # pickup the patch msg
582 582 message = message.strip()
583 583 else:
584 584 # launch the editor
585 585 message = None
586 586 ui.debug('message:\n%s\n' % message)
587 587
588 588 if len(parents) == 1:
589 589 parents.append(repo[nullid])
590 590 if opts.get('exact'):
591 591 if not nodeid or not p1:
592 592 raise util.Abort(_('not a Mercurial patch'))
593 593 p1 = repo[p1]
594 594 p2 = repo[p2 or nullid]
595 595 elif p2:
596 596 try:
597 597 p1 = repo[p1]
598 598 p2 = repo[p2]
599 599 # Without any options, consider p2 only if the
600 600 # patch is being applied on top of the recorded
601 601 # first parent.
602 602 if p1 != parents[0]:
603 603 p1 = parents[0]
604 604 p2 = repo[nullid]
605 605 except error.RepoError:
606 606 p1, p2 = parents
607 607 else:
608 608 p1, p2 = parents
609 609
610 610 n = None
611 611 if update:
612 612 if p1 != parents[0]:
613 613 updatefunc(repo, p1.node())
614 614 if p2 != parents[1]:
615 615 repo.setparents(p1.node(), p2.node())
616 616
617 617 if opts.get('exact') or opts.get('import_branch'):
618 618 repo.dirstate.setbranch(branch or 'default')
619 619
620 620 files = set()
621 621 patch.patch(ui, repo, tmpname, strip=strip, files=files,
622 622 eolmode=None, similarity=sim / 100.0)
623 623 files = list(files)
624 624 if opts.get('no_commit'):
625 625 if message:
626 626 msgs.append(message)
627 627 else:
628 628 if opts.get('exact') or p2:
629 629 # If you got here, you either use --force and know what
630 630 # you are doing or used --exact or a merge patch while
631 631 # being updated to its first parent.
632 632 m = None
633 633 else:
634 634 m = scmutil.matchfiles(repo, files or [])
635 635 n = repo.commit(message, opts.get('user') or user,
636 636 opts.get('date') or date, match=m,
637 637 editor=editor)
638 638 else:
639 639 if opts.get('exact') or opts.get('import_branch'):
640 640 branch = branch or 'default'
641 641 else:
642 642 branch = p1.branch()
643 643 store = patch.filestore()
644 644 try:
645 645 files = set()
646 646 try:
647 647 patch.patchrepo(ui, repo, p1, store, tmpname, strip,
648 648 files, eolmode=None)
649 649 except patch.PatchError, e:
650 650 raise util.Abort(str(e))
651 651 memctx = context.makememctx(repo, (p1.node(), p2.node()),
652 652 message,
653 653 opts.get('user') or user,
654 654 opts.get('date') or date,
655 655 branch, files, store,
656 656 editor=commiteditor)
657 657 repo.savecommitmessage(memctx.description())
658 658 n = memctx.commit()
659 659 finally:
660 660 store.close()
661 661 if opts.get('exact') and hex(n) != nodeid:
662 662 raise util.Abort(_('patch is damaged or loses information'))
663 663 if n:
664 664 # i18n: refers to a short changeset id
665 665 msg = _('created %s') % short(n)
666 666 return (msg, n)
667 667 finally:
668 668 os.unlink(tmpname)
669 669
670 670 def export(repo, revs, template='hg-%h.patch', fp=None, switch_parent=False,
671 671 opts=None):
672 672 '''export changesets as hg patches.'''
673 673
674 674 total = len(revs)
675 675 revwidth = max([len(str(rev)) for rev in revs])
676 676 filemode = {}
677 677
678 678 def single(rev, seqno, fp):
679 679 ctx = repo[rev]
680 680 node = ctx.node()
681 681 parents = [p.node() for p in ctx.parents() if p]
682 682 branch = ctx.branch()
683 683 if switch_parent:
684 684 parents.reverse()
685 685 prev = (parents and parents[0]) or nullid
686 686
687 687 shouldclose = False
688 688 if not fp and len(template) > 0:
689 689 desc_lines = ctx.description().rstrip().split('\n')
690 690 desc = desc_lines[0] #Commit always has a first line.
691 691 fp = makefileobj(repo, template, node, desc=desc, total=total,
692 692 seqno=seqno, revwidth=revwidth, mode='wb',
693 693 modemap=filemode)
694 694 if fp != template:
695 695 shouldclose = True
696 696 if fp and fp != sys.stdout and util.safehasattr(fp, 'name'):
697 697 repo.ui.note("%s\n" % fp.name)
698 698
699 699 if not fp:
700 700 write = repo.ui.write
701 701 else:
702 702 def write(s, **kw):
703 703 fp.write(s)
704 704
705 705
706 706 write("# HG changeset patch\n")
707 707 write("# User %s\n" % ctx.user())
708 708 write("# Date %d %d\n" % ctx.date())
709 709 write("# %s\n" % util.datestr(ctx.date()))
710 710 if branch and branch != 'default':
711 711 write("# Branch %s\n" % branch)
712 712 write("# Node ID %s\n" % hex(node))
713 713 write("# Parent %s\n" % hex(prev))
714 714 if len(parents) > 1:
715 715 write("# Parent %s\n" % hex(parents[1]))
716 716 write(ctx.description().rstrip())
717 717 write("\n\n")
718 718
719 719 for chunk, label in patch.diffui(repo, prev, node, opts=opts):
720 720 write(chunk, label=label)
721 721
722 722 if shouldclose:
723 723 fp.close()
724 724
725 725 for seqno, rev in enumerate(revs):
726 726 single(rev, seqno + 1, fp)
727 727
728 728 def diffordiffstat(ui, repo, diffopts, node1, node2, match,
729 729 changes=None, stat=False, fp=None, prefix='',
730 730 listsubrepos=False):
731 731 '''show diff or diffstat.'''
732 732 if fp is None:
733 733 write = ui.write
734 734 else:
735 735 def write(s, **kw):
736 736 fp.write(s)
737 737
738 738 if stat:
739 739 diffopts = diffopts.copy(context=0)
740 740 width = 80
741 741 if not ui.plain():
742 742 width = ui.termwidth()
743 743 chunks = patch.diff(repo, node1, node2, match, changes, diffopts,
744 744 prefix=prefix)
745 745 for chunk, label in patch.diffstatui(util.iterlines(chunks),
746 746 width=width,
747 747 git=diffopts.git):
748 748 write(chunk, label=label)
749 749 else:
750 750 for chunk, label in patch.diffui(repo, node1, node2, match,
751 751 changes, diffopts, prefix=prefix):
752 752 write(chunk, label=label)
753 753
754 754 if listsubrepos:
755 755 ctx1 = repo[node1]
756 756 ctx2 = repo[node2]
757 757 for subpath, sub in scmutil.itersubrepos(ctx1, ctx2):
758 758 tempnode2 = node2
759 759 try:
760 760 if node2 is not None:
761 761 tempnode2 = ctx2.substate[subpath][1]
762 762 except KeyError:
763 763 # A subrepo that existed in node1 was deleted between node1 and
764 764 # node2 (inclusive). Thus, ctx2's substate won't contain that
765 765 # subpath. The best we can do is to ignore it.
766 766 tempnode2 = None
767 767 submatch = matchmod.narrowmatcher(subpath, match)
768 768 sub.diff(ui, diffopts, tempnode2, submatch, changes=changes,
769 769 stat=stat, fp=fp, prefix=prefix)
770 770
771 771 class changeset_printer(object):
772 772 '''show changeset information when templating not requested.'''
773 773
774 774 def __init__(self, ui, repo, patch, diffopts, buffered):
775 775 self.ui = ui
776 776 self.repo = repo
777 777 self.buffered = buffered
778 778 self.patch = patch
779 779 self.diffopts = diffopts
780 780 self.header = {}
781 781 self.hunk = {}
782 782 self.lastheader = None
783 783 self.footer = None
784 784
785 785 def flush(self, rev):
786 786 if rev in self.header:
787 787 h = self.header[rev]
788 788 if h != self.lastheader:
789 789 self.lastheader = h
790 790 self.ui.write(h)
791 791 del self.header[rev]
792 792 if rev in self.hunk:
793 793 self.ui.write(self.hunk[rev])
794 794 del self.hunk[rev]
795 795 return 1
796 796 return 0
797 797
798 798 def close(self):
799 799 if self.footer:
800 800 self.ui.write(self.footer)
801 801
802 802 def show(self, ctx, copies=None, matchfn=None, **props):
803 803 if self.buffered:
804 804 self.ui.pushbuffer()
805 805 self._show(ctx, copies, matchfn, props)
806 806 self.hunk[ctx.rev()] = self.ui.popbuffer(labeled=True)
807 807 else:
808 808 self._show(ctx, copies, matchfn, props)
809 809
810 810 def _show(self, ctx, copies, matchfn, props):
811 811 '''show a single changeset or file revision'''
812 812 changenode = ctx.node()
813 813 rev = ctx.rev()
814 814
815 815 if self.ui.quiet:
816 816 self.ui.write("%d:%s\n" % (rev, short(changenode)),
817 817 label='log.node')
818 818 return
819 819
820 820 log = self.repo.changelog
821 821 date = util.datestr(ctx.date())
822 822
823 823 hexfunc = self.ui.debugflag and hex or short
824 824
825 825 parents = [(p, hexfunc(log.node(p)))
826 826 for p in self._meaningful_parentrevs(log, rev)]
827 827
828 828 # i18n: column positioning for "hg log"
829 829 self.ui.write(_("changeset: %d:%s\n") % (rev, hexfunc(changenode)),
830 830 label='log.changeset changeset.%s' % ctx.phasestr())
831 831
832 832 branch = ctx.branch()
833 833 # don't show the default branch name
834 834 if branch != 'default':
835 835 # i18n: column positioning for "hg log"
836 836 self.ui.write(_("branch: %s\n") % branch,
837 837 label='log.branch')
838 838 for bookmark in self.repo.nodebookmarks(changenode):
839 839 # i18n: column positioning for "hg log"
840 840 self.ui.write(_("bookmark: %s\n") % bookmark,
841 841 label='log.bookmark')
842 842 for tag in self.repo.nodetags(changenode):
843 843 # i18n: column positioning for "hg log"
844 844 self.ui.write(_("tag: %s\n") % tag,
845 845 label='log.tag')
846 846 if self.ui.debugflag and ctx.phase():
847 847 # i18n: column positioning for "hg log"
848 848 self.ui.write(_("phase: %s\n") % _(ctx.phasestr()),
849 849 label='log.phase')
850 850 for parent in parents:
851 851 # i18n: column positioning for "hg log"
852 852 self.ui.write(_("parent: %d:%s\n") % parent,
853 853 label='log.parent changeset.%s' % ctx.phasestr())
854 854
855 855 if self.ui.debugflag:
856 856 mnode = ctx.manifestnode()
857 857 # i18n: column positioning for "hg log"
858 858 self.ui.write(_("manifest: %d:%s\n") %
859 859 (self.repo.manifest.rev(mnode), hex(mnode)),
860 860 label='ui.debug log.manifest')
861 861 # i18n: column positioning for "hg log"
862 862 self.ui.write(_("user: %s\n") % ctx.user(),
863 863 label='log.user')
864 864 # i18n: column positioning for "hg log"
865 865 self.ui.write(_("date: %s\n") % date,
866 866 label='log.date')
867 867
868 868 if self.ui.debugflag:
869 869 files = self.repo.status(log.parents(changenode)[0], changenode)[:3]
870 870 for key, value in zip([# i18n: column positioning for "hg log"
871 871 _("files:"),
872 872 # i18n: column positioning for "hg log"
873 873 _("files+:"),
874 874 # i18n: column positioning for "hg log"
875 875 _("files-:")], files):
876 876 if value:
877 877 self.ui.write("%-12s %s\n" % (key, " ".join(value)),
878 878 label='ui.debug log.files')
879 879 elif ctx.files() and self.ui.verbose:
880 880 # i18n: column positioning for "hg log"
881 881 self.ui.write(_("files: %s\n") % " ".join(ctx.files()),
882 882 label='ui.note log.files')
883 883 if copies and self.ui.verbose:
884 884 copies = ['%s (%s)' % c for c in copies]
885 885 # i18n: column positioning for "hg log"
886 886 self.ui.write(_("copies: %s\n") % ' '.join(copies),
887 887 label='ui.note log.copies')
888 888
889 889 extra = ctx.extra()
890 890 if extra and self.ui.debugflag:
891 891 for key, value in sorted(extra.items()):
892 892 # i18n: column positioning for "hg log"
893 893 self.ui.write(_("extra: %s=%s\n")
894 894 % (key, value.encode('string_escape')),
895 895 label='ui.debug log.extra')
896 896
897 897 description = ctx.description().strip()
898 898 if description:
899 899 if self.ui.verbose:
900 900 self.ui.write(_("description:\n"),
901 901 label='ui.note log.description')
902 902 self.ui.write(description,
903 903 label='ui.note log.description')
904 904 self.ui.write("\n\n")
905 905 else:
906 906 # i18n: column positioning for "hg log"
907 907 self.ui.write(_("summary: %s\n") %
908 908 description.splitlines()[0],
909 909 label='log.summary')
910 910 self.ui.write("\n")
911 911
912 912 self.showpatch(changenode, matchfn)
913 913
914 914 def showpatch(self, node, matchfn):
915 915 if not matchfn:
916 916 matchfn = self.patch
917 917 if matchfn:
918 918 stat = self.diffopts.get('stat')
919 919 diff = self.diffopts.get('patch')
920 920 diffopts = patch.diffopts(self.ui, self.diffopts)
921 921 prev = self.repo.changelog.parents(node)[0]
922 922 if stat:
923 923 diffordiffstat(self.ui, self.repo, diffopts, prev, node,
924 924 match=matchfn, stat=True)
925 925 if diff:
926 926 if stat:
927 927 self.ui.write("\n")
928 928 diffordiffstat(self.ui, self.repo, diffopts, prev, node,
929 929 match=matchfn, stat=False)
930 930 self.ui.write("\n")
931 931
932 932 def _meaningful_parentrevs(self, log, rev):
933 933 """Return list of meaningful (or all if debug) parentrevs for rev.
934 934
935 935 For merges (two non-nullrev revisions) both parents are meaningful.
936 936 Otherwise the first parent revision is considered meaningful if it
937 937 is not the preceding revision.
938 938 """
939 939 parents = log.parentrevs(rev)
940 940 if not self.ui.debugflag and parents[1] == nullrev:
941 941 if parents[0] >= rev - 1:
942 942 parents = []
943 943 else:
944 944 parents = [parents[0]]
945 945 return parents
946 946
947 947
948 948 class changeset_templater(changeset_printer):
949 949 '''format changeset information.'''
950 950
951 951 def __init__(self, ui, repo, patch, diffopts, tmpl, mapfile, buffered):
952 952 changeset_printer.__init__(self, ui, repo, patch, diffopts, buffered)
953 953 formatnode = ui.debugflag and (lambda x: x) or (lambda x: x[:12])
954 954 defaulttempl = {
955 955 'parent': '{rev}:{node|formatnode} ',
956 956 'manifest': '{rev}:{node|formatnode}',
957 957 'file_copy': '{name} ({source})',
958 958 'extra': '{key}={value|stringescape}'
959 959 }
960 960 # filecopy is preserved for compatibility reasons
961 961 defaulttempl['filecopy'] = defaulttempl['file_copy']
962 962 self.t = templater.templater(mapfile, {'formatnode': formatnode},
963 963 cache=defaulttempl)
964 964 if tmpl:
965 965 self.t.cache['changeset'] = tmpl
966 966
967 967 self.cache = {}
968 968
969 969 def _meaningful_parentrevs(self, ctx):
970 970 """Return list of meaningful (or all if debug) parentrevs for rev.
971 971 """
972 972 parents = ctx.parents()
973 973 if len(parents) > 1:
974 974 return parents
975 975 if self.ui.debugflag:
976 976 return [parents[0], self.repo['null']]
977 977 if parents[0].rev() >= ctx.rev() - 1:
978 978 return []
979 979 return parents
980 980
981 981 def _show(self, ctx, copies, matchfn, props):
982 982 '''show a single changeset or file revision'''
983 983
984 984 showlist = templatekw.showlist
985 985
986 986 # showparents() behaviour depends on ui trace level which
987 987 # causes unexpected behaviours at templating level and makes
988 988 # it harder to extract it in a standalone function. Its
989 989 # behaviour cannot be changed so leave it here for now.
990 990 def showparents(**args):
991 991 ctx = args['ctx']
992 992 parents = [[('rev', p.rev()), ('node', p.hex())]
993 993 for p in self._meaningful_parentrevs(ctx)]
994 994 return showlist('parent', parents, **args)
995 995
996 996 props = props.copy()
997 997 props.update(templatekw.keywords)
998 998 props['parents'] = showparents
999 999 props['templ'] = self.t
1000 1000 props['ctx'] = ctx
1001 1001 props['repo'] = self.repo
1002 1002 props['revcache'] = {'copies': copies}
1003 1003 props['cache'] = self.cache
1004 1004
1005 1005 # find correct templates for current mode
1006 1006
1007 1007 tmplmodes = [
1008 1008 (True, None),
1009 1009 (self.ui.verbose, 'verbose'),
1010 1010 (self.ui.quiet, 'quiet'),
1011 1011 (self.ui.debugflag, 'debug'),
1012 1012 ]
1013 1013
1014 1014 types = {'header': '', 'footer':'', 'changeset': 'changeset'}
1015 1015 for mode, postfix in tmplmodes:
1016 1016 for type in types:
1017 1017 cur = postfix and ('%s_%s' % (type, postfix)) or type
1018 1018 if mode and cur in self.t:
1019 1019 types[type] = cur
1020 1020
1021 1021 try:
1022 1022
1023 1023 # write header
1024 1024 if types['header']:
1025 1025 h = templater.stringify(self.t(types['header'], **props))
1026 1026 if self.buffered:
1027 1027 self.header[ctx.rev()] = h
1028 1028 else:
1029 1029 if self.lastheader != h:
1030 1030 self.lastheader = h
1031 1031 self.ui.write(h)
1032 1032
1033 1033 # write changeset metadata, then patch if requested
1034 1034 key = types['changeset']
1035 1035 self.ui.write(templater.stringify(self.t(key, **props)))
1036 1036 self.showpatch(ctx.node(), matchfn)
1037 1037
1038 1038 if types['footer']:
1039 1039 if not self.footer:
1040 1040 self.footer = templater.stringify(self.t(types['footer'],
1041 1041 **props))
1042 1042
1043 1043 except KeyError, inst:
1044 1044 msg = _("%s: no key named '%s'")
1045 1045 raise util.Abort(msg % (self.t.mapfile, inst.args[0]))
1046 1046 except SyntaxError, inst:
1047 1047 raise util.Abort('%s: %s' % (self.t.mapfile, inst.args[0]))
1048 1048
1049 1049 def gettemplate(ui, tmpl, style):
1050 1050 """
1051 1051 Find the template matching the given template spec or style.
1052 1052 """
1053 1053
1054 1054 # ui settings
1055 1055 if not tmpl and not style:
1056 1056 tmpl = ui.config('ui', 'logtemplate')
1057 1057 if tmpl:
1058 1058 try:
1059 1059 tmpl = templater.parsestring(tmpl)
1060 1060 except SyntaxError:
1061 1061 tmpl = templater.parsestring(tmpl, quoted=False)
1062 1062 return tmpl, None
1063 1063 else:
1064 1064 style = util.expandpath(ui.config('ui', 'style', ''))
1065 1065
1066 1066 if style:
1067 1067 mapfile = style
1068 1068 if not os.path.split(mapfile)[0]:
1069 1069 mapname = (templater.templatepath('map-cmdline.' + mapfile)
1070 1070 or templater.templatepath(mapfile))
1071 1071 if mapname:
1072 1072 mapfile = mapname
1073 1073 return None, mapfile
1074 1074
1075 1075 if not tmpl:
1076 1076 return None, None
1077 1077
1078 1078 # looks like a literal template?
1079 1079 if '{' in tmpl:
1080 1080 return tmpl, None
1081 1081
1082 1082 # perhaps a stock style?
1083 1083 if not os.path.split(tmpl)[0]:
1084 1084 mapname = (templater.templatepath('map-cmdline.' + tmpl)
1085 1085 or templater.templatepath(tmpl))
1086 1086 if mapname and os.path.isfile(mapname):
1087 1087 return None, mapname
1088 1088
1089 1089 # perhaps it's a reference to [templates]
1090 1090 t = ui.config('templates', tmpl)
1091 1091 if t:
1092 1092 try:
1093 1093 tmpl = templater.parsestring(t)
1094 1094 except SyntaxError:
1095 1095 tmpl = templater.parsestring(t, quoted=False)
1096 1096 return tmpl, None
1097 1097
1098 1098 # perhaps it's a path to a map or a template
1099 1099 if ('/' in tmpl or '\\' in tmpl) and os.path.isfile(tmpl):
1100 1100 # is it a mapfile for a style?
1101 1101 if os.path.basename(tmpl).startswith("map-"):
1102 1102 return None, os.path.realpath(tmpl)
1103 1103 tmpl = open(tmpl).read()
1104 1104 return tmpl, None
1105 1105
1106 1106 # constant string?
1107 1107 return tmpl, None
1108 1108
1109 1109 def show_changeset(ui, repo, opts, buffered=False):
1110 1110 """show one changeset using template or regular display.
1111 1111
1112 1112 Display format will be the first non-empty hit of:
1113 1113 1. option 'template'
1114 1114 2. option 'style'
1115 1115 3. [ui] setting 'logtemplate'
1116 1116 4. [ui] setting 'style'
1117 1117 If all of these values are either the unset or the empty string,
1118 1118 regular display via changeset_printer() is done.
1119 1119 """
1120 1120 # options
1121 1121 patch = None
1122 1122 if opts.get('patch') or opts.get('stat'):
1123 1123 patch = scmutil.matchall(repo)
1124 1124
1125 1125 tmpl, mapfile = gettemplate(ui, opts.get('template'), opts.get('style'))
1126 1126
1127 1127 if not tmpl and not mapfile:
1128 1128 return changeset_printer(ui, repo, patch, opts, buffered)
1129 1129
1130 1130 try:
1131 1131 t = changeset_templater(ui, repo, patch, opts, tmpl, mapfile, buffered)
1132 1132 except SyntaxError, inst:
1133 1133 raise util.Abort(inst.args[0])
1134 1134 return t
1135 1135
1136 1136 def showmarker(ui, marker):
1137 1137 """utility function to display obsolescence marker in a readable way
1138 1138
1139 1139 To be used by debug function."""
1140 1140 ui.write(hex(marker.precnode()))
1141 1141 for repl in marker.succnodes():
1142 1142 ui.write(' ')
1143 1143 ui.write(hex(repl))
1144 1144 ui.write(' %X ' % marker._data[2])
1145 1145 ui.write('{%s}' % (', '.join('%r: %r' % t for t in
1146 1146 sorted(marker.metadata().items()))))
1147 1147 ui.write('\n')
1148 1148
1149 1149 def finddate(ui, repo, date):
1150 1150 """Find the tipmost changeset that matches the given date spec"""
1151 1151
1152 1152 df = util.matchdate(date)
1153 1153 m = scmutil.matchall(repo)
1154 1154 results = {}
1155 1155
1156 1156 def prep(ctx, fns):
1157 1157 d = ctx.date()
1158 1158 if df(d[0]):
1159 1159 results[ctx.rev()] = d
1160 1160
1161 1161 for ctx in walkchangerevs(repo, m, {'rev': None}, prep):
1162 1162 rev = ctx.rev()
1163 1163 if rev in results:
1164 1164 ui.status(_("found revision %s from %s\n") %
1165 1165 (rev, util.datestr(results[rev])))
1166 1166 return str(rev)
1167 1167
1168 1168 raise util.Abort(_("revision matching date not found"))
1169 1169
1170 1170 def increasingwindows(windowsize=8, sizelimit=512):
1171 1171 while True:
1172 1172 yield windowsize
1173 1173 if windowsize < sizelimit:
1174 1174 windowsize *= 2
1175 1175
1176 1176 class FileWalkError(Exception):
1177 1177 pass
1178 1178
1179 1179 def walkfilerevs(repo, match, follow, revs, fncache):
1180 1180 '''Walks the file history for the matched files.
1181 1181
1182 1182 Returns the changeset revs that are involved in the file history.
1183 1183
1184 1184 Throws FileWalkError if the file history can't be walked using
1185 1185 filelogs alone.
1186 1186 '''
1187 1187 wanted = set()
1188 1188 copies = []
1189 1189 minrev, maxrev = min(revs), max(revs)
1190 1190 def filerevgen(filelog, last):
1191 1191 """
1192 1192 Only files, no patterns. Check the history of each file.
1193 1193
1194 1194 Examines filelog entries within minrev, maxrev linkrev range
1195 1195 Returns an iterator yielding (linkrev, parentlinkrevs, copied)
1196 1196 tuples in backwards order
1197 1197 """
1198 1198 cl_count = len(repo)
1199 1199 revs = []
1200 1200 for j in xrange(0, last + 1):
1201 1201 linkrev = filelog.linkrev(j)
1202 1202 if linkrev < minrev:
1203 1203 continue
1204 1204 # only yield rev for which we have the changelog, it can
1205 1205 # happen while doing "hg log" during a pull or commit
1206 1206 if linkrev >= cl_count:
1207 1207 break
1208 1208
1209 1209 parentlinkrevs = []
1210 1210 for p in filelog.parentrevs(j):
1211 1211 if p != nullrev:
1212 1212 parentlinkrevs.append(filelog.linkrev(p))
1213 1213 n = filelog.node(j)
1214 1214 revs.append((linkrev, parentlinkrevs,
1215 1215 follow and filelog.renamed(n)))
1216 1216
1217 1217 return reversed(revs)
1218 1218 def iterfiles():
1219 1219 pctx = repo['.']
1220 1220 for filename in match.files():
1221 1221 if follow:
1222 1222 if filename not in pctx:
1223 1223 raise util.Abort(_('cannot follow file not in parent '
1224 1224 'revision: "%s"') % filename)
1225 1225 yield filename, pctx[filename].filenode()
1226 1226 else:
1227 1227 yield filename, None
1228 1228 for filename_node in copies:
1229 1229 yield filename_node
1230 1230
1231 1231 for file_, node in iterfiles():
1232 1232 filelog = repo.file(file_)
1233 1233 if not len(filelog):
1234 1234 if node is None:
1235 1235 # A zero count may be a directory or deleted file, so
1236 1236 # try to find matching entries on the slow path.
1237 1237 if follow:
1238 1238 raise util.Abort(
1239 1239 _('cannot follow nonexistent file: "%s"') % file_)
1240 1240 raise FileWalkError("Cannot walk via filelog")
1241 1241 else:
1242 1242 continue
1243 1243
1244 1244 if node is None:
1245 1245 last = len(filelog) - 1
1246 1246 else:
1247 1247 last = filelog.rev(node)
1248 1248
1249 1249
1250 1250 # keep track of all ancestors of the file
1251 1251 ancestors = set([filelog.linkrev(last)])
1252 1252
1253 1253 # iterate from latest to oldest revision
1254 1254 for rev, flparentlinkrevs, copied in filerevgen(filelog, last):
1255 1255 if not follow:
1256 1256 if rev > maxrev:
1257 1257 continue
1258 1258 else:
1259 1259 # Note that last might not be the first interesting
1260 1260 # rev to us:
1261 1261 # if the file has been changed after maxrev, we'll
1262 1262 # have linkrev(last) > maxrev, and we still need
1263 1263 # to explore the file graph
1264 1264 if rev not in ancestors:
1265 1265 continue
1266 1266 # XXX insert 1327 fix here
1267 1267 if flparentlinkrevs:
1268 1268 ancestors.update(flparentlinkrevs)
1269 1269
1270 1270 fncache.setdefault(rev, []).append(file_)
1271 1271 wanted.add(rev)
1272 1272 if copied:
1273 1273 copies.append(copied)
1274 1274
1275 1275 return wanted
1276 1276
1277 1277 def walkchangerevs(repo, match, opts, prepare):
1278 1278 '''Iterate over files and the revs in which they changed.
1279 1279
1280 1280 Callers most commonly need to iterate backwards over the history
1281 1281 in which they are interested. Doing so has awful (quadratic-looking)
1282 1282 performance, so we use iterators in a "windowed" way.
1283 1283
1284 1284 We walk a window of revisions in the desired order. Within the
1285 1285 window, we first walk forwards to gather data, then in the desired
1286 1286 order (usually backwards) to display it.
1287 1287
1288 1288 This function returns an iterator yielding contexts. Before
1289 1289 yielding each context, the iterator will first call the prepare
1290 1290 function on each context in the window in forward order.'''
1291 1291
1292 1292 follow = opts.get('follow') or opts.get('follow_first')
1293 1293
1294 1294 if opts.get('rev'):
1295 1295 revs = scmutil.revrange(repo, opts.get('rev'))
1296 1296 elif follow:
1297 1297 revs = repo.revs('reverse(:.)')
1298 1298 else:
1299 1299 revs = revset.spanset(repo)
1300 1300 revs.reverse()
1301 1301 if not revs:
1302 1302 return []
1303 1303 wanted = set()
1304 1304 slowpath = match.anypats() or (match.files() and opts.get('removed'))
1305 1305 fncache = {}
1306 1306 change = repo.changectx
1307 1307
1308 1308 # First step is to fill wanted, the set of revisions that we want to yield.
1309 1309 # When it does not induce extra cost, we also fill fncache for revisions in
1310 1310 # wanted: a cache of filenames that were changed (ctx.files()) and that
1311 1311 # match the file filtering conditions.
1312 1312
1313 1313 if not slowpath and not match.files():
1314 1314 # No files, no patterns. Display all revs.
1315 1315 wanted = revs
1316 1316
1317 1317 if not slowpath and match.files():
1318 1318 # We only have to read through the filelog to find wanted revisions
1319 1319
1320 1320 try:
1321 1321 wanted = walkfilerevs(repo, match, follow, revs, fncache)
1322 1322 except FileWalkError:
1323 1323 slowpath = True
1324 1324
1325 1325 # We decided to fall back to the slowpath because at least one
1326 1326 # of the paths was not a file. Check to see if at least one of them
1327 1327 # existed in history, otherwise simply return
1328 1328 for path in match.files():
1329 1329 if path == '.' or path in repo.store:
1330 1330 break
1331 1331 else:
1332 1332 return []
1333 1333
1334 1334 if slowpath:
1335 1335 # We have to read the changelog to match filenames against
1336 1336 # changed files
1337 1337
1338 1338 if follow:
1339 1339 raise util.Abort(_('can only follow copies/renames for explicit '
1340 1340 'filenames'))
1341 1341
1342 1342 # The slow path checks files modified in every changeset.
1343 1343 # This is really slow on large repos, so compute the set lazily.
1344 1344 class lazywantedset(object):
1345 1345 def __init__(self):
1346 1346 self.set = set()
1347 1347 self.revs = set(revs)
1348 1348
1349 1349 # No need to worry about locality here because it will be accessed
1350 1350 # in the same order as the increasing window below.
1351 1351 def __contains__(self, value):
1352 1352 if value in self.set:
1353 1353 return True
1354 1354 elif not value in self.revs:
1355 1355 return False
1356 1356 else:
1357 1357 self.revs.discard(value)
1358 1358 ctx = change(value)
1359 1359 matches = filter(match, ctx.files())
1360 1360 if matches:
1361 1361 fncache[value] = matches
1362 1362 self.set.add(value)
1363 1363 return True
1364 1364 return False
1365 1365
1366 1366 def discard(self, value):
1367 1367 self.revs.discard(value)
1368 1368 self.set.discard(value)
1369 1369
1370 1370 wanted = lazywantedset()
1371 1371
1372 1372 class followfilter(object):
1373 1373 def __init__(self, onlyfirst=False):
1374 1374 self.startrev = nullrev
1375 1375 self.roots = set()
1376 1376 self.onlyfirst = onlyfirst
1377 1377
1378 1378 def match(self, rev):
1379 1379 def realparents(rev):
1380 1380 if self.onlyfirst:
1381 1381 return repo.changelog.parentrevs(rev)[0:1]
1382 1382 else:
1383 1383 return filter(lambda x: x != nullrev,
1384 1384 repo.changelog.parentrevs(rev))
1385 1385
1386 1386 if self.startrev == nullrev:
1387 1387 self.startrev = rev
1388 1388 return True
1389 1389
1390 1390 if rev > self.startrev:
1391 1391 # forward: all descendants
1392 1392 if not self.roots:
1393 1393 self.roots.add(self.startrev)
1394 1394 for parent in realparents(rev):
1395 1395 if parent in self.roots:
1396 1396 self.roots.add(rev)
1397 1397 return True
1398 1398 else:
1399 1399 # backwards: all parents
1400 1400 if not self.roots:
1401 1401 self.roots.update(realparents(self.startrev))
1402 1402 if rev in self.roots:
1403 1403 self.roots.remove(rev)
1404 1404 self.roots.update(realparents(rev))
1405 1405 return True
1406 1406
1407 1407 return False
1408 1408
1409 1409 # it might be worthwhile to do this in the iterator if the rev range
1410 1410 # is descending and the prune args are all within that range
1411 1411 for rev in opts.get('prune', ()):
1412 1412 rev = repo[rev].rev()
1413 1413 ff = followfilter()
1414 1414 stop = min(revs[0], revs[-1])
1415 1415 for x in xrange(rev, stop - 1, -1):
1416 1416 if ff.match(x):
1417 1417 wanted = wanted - [x]
1418 1418
1419 1419 # Now that wanted is correctly initialized, we can iterate over the
1420 1420 # revision range, yielding only revisions in wanted.
1421 1421 def iterate():
1422 1422 if follow and not match.files():
1423 1423 ff = followfilter(onlyfirst=opts.get('follow_first'))
1424 1424 def want(rev):
1425 1425 return ff.match(rev) and rev in wanted
1426 1426 else:
1427 1427 def want(rev):
1428 1428 return rev in wanted
1429 1429
1430 1430 it = iter(revs)
1431 1431 stopiteration = False
1432 1432 for windowsize in increasingwindows():
1433 1433 nrevs = []
1434 1434 for i in xrange(windowsize):
1435 1435 try:
1436 1436 rev = it.next()
1437 1437 if want(rev):
1438 1438 nrevs.append(rev)
1439 1439 except (StopIteration):
1440 1440 stopiteration = True
1441 1441 break
1442 1442 for rev in sorted(nrevs):
1443 1443 fns = fncache.get(rev)
1444 1444 ctx = change(rev)
1445 1445 if not fns:
1446 1446 def fns_generator():
1447 1447 for f in ctx.files():
1448 1448 if match(f):
1449 1449 yield f
1450 1450 fns = fns_generator()
1451 1451 prepare(ctx, fns)
1452 1452 for rev in nrevs:
1453 1453 yield change(rev)
1454 1454
1455 1455 if stopiteration:
1456 1456 break
1457 1457
1458 1458 return iterate()
1459 1459
1460 1460 def _makegraphfilematcher(repo, pats, followfirst):
1461 1461 # When displaying a revision with --patch --follow FILE, we have
1462 1462 # to know which file of the revision must be diffed. With
1463 1463 # --follow, we want the names of the ancestors of FILE in the
1464 1464 # revision, stored in "fcache". "fcache" is populated by
1465 1465 # reproducing the graph traversal already done by --follow revset
1466 1466 # and relating linkrevs to file names (which is not "correct" but
1467 1467 # good enough).
1468 1468 fcache = {}
1469 1469 fcacheready = [False]
1470 1470 pctx = repo['.']
1471 1471 wctx = repo[None]
1472 1472
1473 1473 def populate():
1474 1474 for fn in pats:
1475 1475 for i in ((pctx[fn],), pctx[fn].ancestors(followfirst=followfirst)):
1476 1476 for c in i:
1477 1477 fcache.setdefault(c.linkrev(), set()).add(c.path())
1478 1478
1479 1479 def filematcher(rev):
1480 1480 if not fcacheready[0]:
1481 1481 # Lazy initialization
1482 1482 fcacheready[0] = True
1483 1483 populate()
1484 1484 return scmutil.match(wctx, fcache.get(rev, []), default='path')
1485 1485
1486 1486 return filematcher
1487 1487
1488 1488 def _makegraphlogrevset(repo, pats, opts, revs):
1489 1489 """Return (expr, filematcher) where expr is a revset string built
1490 1490 from log options and file patterns or None. If --stat or --patch
1491 1491 are not passed filematcher is None. Otherwise it is a callable
1492 1492 taking a revision number and returning a match objects filtering
1493 1493 the files to be detailed when displaying the revision.
1494 1494 """
1495 1495 opt2revset = {
1496 1496 'no_merges': ('not merge()', None),
1497 1497 'only_merges': ('merge()', None),
1498 1498 '_ancestors': ('ancestors(%(val)s)', None),
1499 1499 '_fancestors': ('_firstancestors(%(val)s)', None),
1500 1500 '_descendants': ('descendants(%(val)s)', None),
1501 1501 '_fdescendants': ('_firstdescendants(%(val)s)', None),
1502 1502 '_matchfiles': ('_matchfiles(%(val)s)', None),
1503 1503 'date': ('date(%(val)r)', None),
1504 1504 'branch': ('branch(%(val)r)', ' or '),
1505 1505 '_patslog': ('filelog(%(val)r)', ' or '),
1506 1506 '_patsfollow': ('follow(%(val)r)', ' or '),
1507 1507 '_patsfollowfirst': ('_followfirst(%(val)r)', ' or '),
1508 1508 'keyword': ('keyword(%(val)r)', ' or '),
1509 1509 'prune': ('not (%(val)r or ancestors(%(val)r))', ' and '),
1510 1510 'user': ('user(%(val)r)', ' or '),
1511 1511 }
1512 1512
1513 1513 opts = dict(opts)
1514 1514 # follow or not follow?
1515 1515 follow = opts.get('follow') or opts.get('follow_first')
1516 1516 followfirst = opts.get('follow_first') and 1 or 0
1517 1517 # --follow with FILE behaviour depends on revs...
1518 1518 it = iter(revs)
1519 1519 startrev = it.next()
1520 1520 try:
1521 1521 followdescendants = startrev < it.next()
1522 1522 except (StopIteration):
1523 1523 followdescendants = False
1524 1524
1525 1525 # branch and only_branch are really aliases and must be handled at
1526 1526 # the same time
1527 1527 opts['branch'] = opts.get('branch', []) + opts.get('only_branch', [])
1528 1528 opts['branch'] = [repo.lookupbranch(b) for b in opts['branch']]
1529 1529 # pats/include/exclude are passed to match.match() directly in
1530 1530 # _matchfiles() revset but walkchangerevs() builds its matcher with
1531 1531 # scmutil.match(). The difference is input pats are globbed on
1532 1532 # platforms without shell expansion (windows).
1533 1533 pctx = repo[None]
1534 1534 match, pats = scmutil.matchandpats(pctx, pats, opts)
1535 1535 slowpath = match.anypats() or (match.files() and opts.get('removed'))
1536 1536 if not slowpath:
1537 1537 for f in match.files():
1538 1538 if follow and f not in pctx:
1539 1539 raise util.Abort(_('cannot follow file not in parent '
1540 1540 'revision: "%s"') % f)
1541 1541 filelog = repo.file(f)
1542 1542 if not filelog:
1543 1543 # A zero count may be a directory or deleted file, so
1544 1544 # try to find matching entries on the slow path.
1545 1545 if follow:
1546 1546 raise util.Abort(
1547 1547 _('cannot follow nonexistent file: "%s"') % f)
1548 1548 slowpath = True
1549 1549
1550 1550 # We decided to fall back to the slowpath because at least one
1551 1551 # of the paths was not a file. Check to see if at least one of them
1552 1552 # existed in history - in that case, we'll continue down the
1553 1553 # slowpath; otherwise, we can turn off the slowpath
1554 1554 if slowpath:
1555 1555 for path in match.files():
1556 1556 if path == '.' or path in repo.store:
1557 1557 break
1558 1558 else:
1559 1559 slowpath = False
1560 1560
1561 1561 if slowpath:
1562 1562 # See walkchangerevs() slow path.
1563 1563 #
1564 1564 if follow:
1565 1565 raise util.Abort(_('can only follow copies/renames for explicit '
1566 1566 'filenames'))
1567 1567 # pats/include/exclude cannot be represented as separate
1568 1568 # revset expressions as their filtering logic applies at file
1569 1569 # level. For instance "-I a -X a" matches a revision touching
1570 1570 # "a" and "b" while "file(a) and not file(b)" does
1571 1571 # not. Besides, filesets are evaluated against the working
1572 1572 # directory.
1573 1573 matchargs = ['r:', 'd:relpath']
1574 1574 for p in pats:
1575 1575 matchargs.append('p:' + p)
1576 1576 for p in opts.get('include', []):
1577 1577 matchargs.append('i:' + p)
1578 1578 for p in opts.get('exclude', []):
1579 1579 matchargs.append('x:' + p)
1580 1580 matchargs = ','.join(('%r' % p) for p in matchargs)
1581 1581 opts['_matchfiles'] = matchargs
1582 1582 else:
1583 1583 if follow:
1584 1584 fpats = ('_patsfollow', '_patsfollowfirst')
1585 1585 fnopats = (('_ancestors', '_fancestors'),
1586 1586 ('_descendants', '_fdescendants'))
1587 1587 if pats:
1588 1588 # follow() revset interprets its file argument as a
1589 1589 # manifest entry, so use match.files(), not pats.
1590 1590 opts[fpats[followfirst]] = list(match.files())
1591 1591 else:
1592 1592 opts[fnopats[followdescendants][followfirst]] = str(startrev)
1593 1593 else:
1594 1594 opts['_patslog'] = list(pats)
1595 1595
1596 1596 filematcher = None
1597 1597 if opts.get('patch') or opts.get('stat'):
1598 1598 if follow:
1599 1599 filematcher = _makegraphfilematcher(repo, pats, followfirst)
1600 1600 else:
1601 1601 filematcher = lambda rev: match
1602 1602
1603 1603 expr = []
1604 1604 for op, val in opts.iteritems():
1605 1605 if not val:
1606 1606 continue
1607 1607 if op not in opt2revset:
1608 1608 continue
1609 1609 revop, andor = opt2revset[op]
1610 1610 if '%(val)' not in revop:
1611 1611 expr.append(revop)
1612 1612 else:
1613 1613 if not isinstance(val, list):
1614 1614 e = revop % {'val': val}
1615 1615 else:
1616 1616 e = '(' + andor.join((revop % {'val': v}) for v in val) + ')'
1617 1617 expr.append(e)
1618 1618
1619 1619 if expr:
1620 1620 expr = '(' + ' and '.join(expr) + ')'
1621 1621 else:
1622 1622 expr = None
1623 1623 return expr, filematcher
1624 1624
1625 1625 def getgraphlogrevs(repo, pats, opts):
1626 1626 """Return (revs, expr, filematcher) where revs is an iterable of
1627 1627 revision numbers, expr is a revset string built from log options
1628 1628 and file patterns or None, and used to filter 'revs'. If --stat or
1629 1629 --patch are not passed filematcher is None. Otherwise it is a
1630 1630 callable taking a revision number and returning a match objects
1631 1631 filtering the files to be detailed when displaying the revision.
1632 1632 """
1633 1633 if not len(repo):
1634 1634 return [], None, None
1635 1635 limit = loglimit(opts)
1636 1636 # Default --rev value depends on --follow but --follow behaviour
1637 1637 # depends on revisions resolved from --rev...
1638 1638 follow = opts.get('follow') or opts.get('follow_first')
1639 1639 possiblyunsorted = False # whether revs might need sorting
1640 1640 if opts.get('rev'):
1641 1641 revs = scmutil.revrange(repo, opts['rev'])
1642 1642 # Don't sort here because _makegraphlogrevset might depend on the
1643 1643 # order of revs
1644 1644 possiblyunsorted = True
1645 1645 else:
1646 1646 if follow and len(repo) > 0:
1647 1647 revs = repo.revs('reverse(:.)')
1648 1648 else:
1649 1649 revs = revset.spanset(repo)
1650 1650 revs.reverse()
1651 1651 if not revs:
1652 1652 return revset.baseset(), None, None
1653 1653 expr, filematcher = _makegraphlogrevset(repo, pats, opts, revs)
1654 1654 if possiblyunsorted:
1655 1655 revs.sort(reverse=True)
1656 1656 if expr:
1657 1657 # Revset matchers often operate faster on revisions in changelog
1658 1658 # order, because most filters deal with the changelog.
1659 1659 revs.reverse()
1660 1660 matcher = revset.match(repo.ui, expr)
1661 1661 # Revset matches can reorder revisions. "A or B" typically returns
1662 1662 # returns the revision matching A then the revision matching B. Sort
1663 1663 # again to fix that.
1664 1664 revs = matcher(repo, revs)
1665 1665 revs.sort(reverse=True)
1666 1666 if limit is not None:
1667 1667 limitedrevs = revset.baseset()
1668 1668 for idx, rev in enumerate(revs):
1669 1669 if idx >= limit:
1670 1670 break
1671 1671 limitedrevs.append(rev)
1672 1672 revs = limitedrevs
1673 1673
1674 1674 return revs, expr, filematcher
1675 1675
1676 1676 def displaygraph(ui, dag, displayer, showparents, edgefn, getrenamed=None,
1677 1677 filematcher=None):
1678 1678 seen, state = [], graphmod.asciistate()
1679 1679 for rev, type, ctx, parents in dag:
1680 1680 char = 'o'
1681 1681 if ctx.node() in showparents:
1682 1682 char = '@'
1683 1683 elif ctx.obsolete():
1684 1684 char = 'x'
1685 1685 copies = None
1686 1686 if getrenamed and ctx.rev():
1687 1687 copies = []
1688 1688 for fn in ctx.files():
1689 1689 rename = getrenamed(fn, ctx.rev())
1690 1690 if rename:
1691 1691 copies.append((fn, rename[0]))
1692 1692 revmatchfn = None
1693 1693 if filematcher is not None:
1694 1694 revmatchfn = filematcher(ctx.rev())
1695 1695 displayer.show(ctx, copies=copies, matchfn=revmatchfn)
1696 1696 lines = displayer.hunk.pop(rev).split('\n')
1697 1697 if not lines[-1]:
1698 1698 del lines[-1]
1699 1699 displayer.flush(rev)
1700 1700 edges = edgefn(type, char, lines, seen, rev, parents)
1701 1701 for type, char, lines, coldata in edges:
1702 1702 graphmod.ascii(ui, state, type, char, lines, coldata)
1703 1703 displayer.close()
1704 1704
1705 1705 def graphlog(ui, repo, *pats, **opts):
1706 1706 # Parameters are identical to log command ones
1707 1707 revs, expr, filematcher = getgraphlogrevs(repo, pats, opts)
1708 1708 revdag = graphmod.dagwalker(repo, revs)
1709 1709
1710 1710 getrenamed = None
1711 1711 if opts.get('copies'):
1712 1712 endrev = None
1713 1713 if opts.get('rev'):
1714 1714 endrev = scmutil.revrange(repo, opts.get('rev')).max() + 1
1715 1715 getrenamed = templatekw.getrenamedfn(repo, endrev=endrev)
1716 1716 displayer = show_changeset(ui, repo, opts, buffered=True)
1717 1717 showparents = [ctx.node() for ctx in repo[None].parents()]
1718 1718 displaygraph(ui, revdag, displayer, showparents,
1719 1719 graphmod.asciiedges, getrenamed, filematcher)
1720 1720
1721 1721 def checkunsupportedgraphflags(pats, opts):
1722 1722 for op in ["newest_first"]:
1723 1723 if op in opts and opts[op]:
1724 1724 raise util.Abort(_("-G/--graph option is incompatible with --%s")
1725 1725 % op.replace("_", "-"))
1726 1726
1727 1727 def graphrevs(repo, nodes, opts):
1728 1728 limit = loglimit(opts)
1729 1729 nodes.reverse()
1730 1730 if limit is not None:
1731 1731 nodes = nodes[:limit]
1732 1732 return graphmod.nodes(repo, nodes)
1733 1733
1734 1734 def add(ui, repo, match, dryrun, listsubrepos, prefix, explicitonly):
1735 1735 join = lambda f: os.path.join(prefix, f)
1736 1736 bad = []
1737 1737 oldbad = match.bad
1738 1738 match.bad = lambda x, y: bad.append(x) or oldbad(x, y)
1739 1739 names = []
1740 1740 wctx = repo[None]
1741 1741 cca = None
1742 1742 abort, warn = scmutil.checkportabilityalert(ui)
1743 1743 if abort or warn:
1744 1744 cca = scmutil.casecollisionauditor(ui, abort, repo.dirstate)
1745 1745 for f in repo.walk(match):
1746 1746 exact = match.exact(f)
1747 1747 if exact or not explicitonly and f not in repo.dirstate:
1748 1748 if cca:
1749 1749 cca(f)
1750 1750 names.append(f)
1751 1751 if ui.verbose or not exact:
1752 1752 ui.status(_('adding %s\n') % match.rel(join(f)))
1753 1753
1754 1754 for subpath in sorted(wctx.substate):
1755 1755 sub = wctx.sub(subpath)
1756 1756 try:
1757 1757 submatch = matchmod.narrowmatcher(subpath, match)
1758 1758 if listsubrepos:
1759 1759 bad.extend(sub.add(ui, submatch, dryrun, listsubrepos, prefix,
1760 1760 False))
1761 1761 else:
1762 1762 bad.extend(sub.add(ui, submatch, dryrun, listsubrepos, prefix,
1763 1763 True))
1764 1764 except error.LookupError:
1765 1765 ui.status(_("skipping missing subrepository: %s\n")
1766 1766 % join(subpath))
1767 1767
1768 1768 if not dryrun:
1769 1769 rejected = wctx.add(names, prefix)
1770 1770 bad.extend(f for f in rejected if f in match.files())
1771 1771 return bad
1772 1772
1773 1773 def forget(ui, repo, match, prefix, explicitonly):
1774 1774 join = lambda f: os.path.join(prefix, f)
1775 1775 bad = []
1776 1776 oldbad = match.bad
1777 1777 match.bad = lambda x, y: bad.append(x) or oldbad(x, y)
1778 1778 wctx = repo[None]
1779 1779 forgot = []
1780 1780 s = repo.status(match=match, clean=True)
1781 1781 forget = sorted(s[0] + s[1] + s[3] + s[6])
1782 1782 if explicitonly:
1783 1783 forget = [f for f in forget if match.exact(f)]
1784 1784
1785 1785 for subpath in sorted(wctx.substate):
1786 1786 sub = wctx.sub(subpath)
1787 1787 try:
1788 1788 submatch = matchmod.narrowmatcher(subpath, match)
1789 1789 subbad, subforgot = sub.forget(ui, submatch, prefix)
1790 1790 bad.extend([subpath + '/' + f for f in subbad])
1791 1791 forgot.extend([subpath + '/' + f for f in subforgot])
1792 1792 except error.LookupError:
1793 1793 ui.status(_("skipping missing subrepository: %s\n")
1794 1794 % join(subpath))
1795 1795
1796 1796 if not explicitonly:
1797 1797 for f in match.files():
1798 1798 if f not in repo.dirstate and not os.path.isdir(match.rel(join(f))):
1799 1799 if f not in forgot:
1800 1800 if os.path.exists(match.rel(join(f))):
1801 1801 ui.warn(_('not removing %s: '
1802 1802 'file is already untracked\n')
1803 1803 % match.rel(join(f)))
1804 1804 bad.append(f)
1805 1805
1806 1806 for f in forget:
1807 1807 if ui.verbose or not match.exact(f):
1808 1808 ui.status(_('removing %s\n') % match.rel(join(f)))
1809 1809
1810 1810 rejected = wctx.forget(forget, prefix)
1811 1811 bad.extend(f for f in rejected if f in match.files())
1812 1812 forgot.extend(forget)
1813 1813 return bad, forgot
1814 1814
1815 1815 def duplicatecopies(repo, rev, fromrev):
1816 1816 '''reproduce copies from fromrev to rev in the dirstate'''
1817 1817 for dst, src in copies.pathcopies(repo[fromrev], repo[rev]).iteritems():
1818 1818 # copies.pathcopies returns backward renames, so dst might not
1819 1819 # actually be in the dirstate
1820 1820 if repo.dirstate[dst] in "nma":
1821 1821 repo.dirstate.copy(src, dst)
1822 1822
1823 1823 def commit(ui, repo, commitfunc, pats, opts):
1824 1824 '''commit the specified files or all outstanding changes'''
1825 1825 date = opts.get('date')
1826 1826 if date:
1827 1827 opts['date'] = util.parsedate(date)
1828 1828 message = logmessage(ui, opts)
1829 1829
1830 1830 # extract addremove carefully -- this function can be called from a command
1831 1831 # that doesn't support addremove
1832 1832 if opts.get('addremove'):
1833 1833 scmutil.addremove(repo, pats, opts)
1834 1834
1835 1835 return commitfunc(ui, repo, message,
1836 1836 scmutil.match(repo[None], pats, opts), opts)
1837 1837
1838 1838 def amend(ui, repo, commitfunc, old, extra, pats, opts):
1839 1839 ui.note(_('amending changeset %s\n') % old)
1840 1840 base = old.p1()
1841 1841
1842 1842 wlock = lock = newid = None
1843 1843 try:
1844 1844 wlock = repo.wlock()
1845 1845 lock = repo.lock()
1846 1846 tr = repo.transaction('amend')
1847 1847 try:
1848 1848 # See if we got a message from -m or -l, if not, open the editor
1849 1849 # with the message of the changeset to amend
1850 1850 message = logmessage(ui, opts)
1851 1851 # ensure logfile does not conflict with later enforcement of the
1852 1852 # message. potential logfile content has been processed by
1853 1853 # `logmessage` anyway.
1854 1854 opts.pop('logfile')
1855 1855 # First, do a regular commit to record all changes in the working
1856 1856 # directory (if there are any)
1857 1857 ui.callhooks = False
1858 1858 currentbookmark = repo._bookmarkcurrent
1859 1859 try:
1860 1860 repo._bookmarkcurrent = None
1861 1861 opts['message'] = 'temporary amend commit for %s' % old
1862 1862 node = commit(ui, repo, commitfunc, pats, opts)
1863 1863 finally:
1864 1864 repo._bookmarkcurrent = currentbookmark
1865 1865 ui.callhooks = True
1866 1866 ctx = repo[node]
1867 1867
1868 1868 # Participating changesets:
1869 1869 #
1870 1870 # node/ctx o - new (intermediate) commit that contains changes
1871 1871 # | from working dir to go into amending commit
1872 1872 # | (or a workingctx if there were no changes)
1873 1873 # |
1874 1874 # old o - changeset to amend
1875 1875 # |
1876 1876 # base o - parent of amending changeset
1877 1877
1878 1878 # Update extra dict from amended commit (e.g. to preserve graft
1879 1879 # source)
1880 1880 extra.update(old.extra())
1881 1881
1882 1882 # Also update it from the intermediate commit or from the wctx
1883 1883 extra.update(ctx.extra())
1884 1884
1885 1885 if len(old.parents()) > 1:
1886 1886 # ctx.files() isn't reliable for merges, so fall back to the
1887 1887 # slower repo.status() method
1888 1888 files = set([fn for st in repo.status(base, old)[:3]
1889 1889 for fn in st])
1890 1890 else:
1891 1891 files = set(old.files())
1892 1892
1893 1893 # Second, we use either the commit we just did, or if there were no
1894 1894 # changes the parent of the working directory as the version of the
1895 1895 # files in the final amend commit
1896 1896 if node:
1897 1897 ui.note(_('copying changeset %s to %s\n') % (ctx, base))
1898 1898
1899 1899 user = ctx.user()
1900 1900 date = ctx.date()
1901 1901 # Recompute copies (avoid recording a -> b -> a)
1902 1902 copied = copies.pathcopies(base, ctx)
1903 1903
1904 1904 # Prune files which were reverted by the updates: if old
1905 1905 # introduced file X and our intermediate commit, node,
1906 1906 # renamed that file, then those two files are the same and
1907 1907 # we can discard X from our list of files. Likewise if X
1908 1908 # was deleted, it's no longer relevant
1909 1909 files.update(ctx.files())
1910 1910
1911 1911 def samefile(f):
1912 1912 if f in ctx.manifest():
1913 1913 a = ctx.filectx(f)
1914 1914 if f in base.manifest():
1915 1915 b = base.filectx(f)
1916 1916 return (not a.cmp(b)
1917 1917 and a.flags() == b.flags())
1918 1918 else:
1919 1919 return False
1920 1920 else:
1921 1921 return f not in base.manifest()
1922 1922 files = [f for f in files if not samefile(f)]
1923 1923
1924 1924 def filectxfn(repo, ctx_, path):
1925 1925 try:
1926 1926 fctx = ctx[path]
1927 1927 flags = fctx.flags()
1928 1928 mctx = context.memfilectx(fctx.path(), fctx.data(),
1929 1929 islink='l' in flags,
1930 1930 isexec='x' in flags,
1931 1931 copied=copied.get(path))
1932 1932 return mctx
1933 1933 except KeyError:
1934 1934 raise IOError
1935 1935 else:
1936 1936 ui.note(_('copying changeset %s to %s\n') % (old, base))
1937 1937
1938 1938 # Use version of files as in the old cset
1939 1939 def filectxfn(repo, ctx_, path):
1940 1940 try:
1941 1941 return old.filectx(path)
1942 1942 except KeyError:
1943 1943 raise IOError
1944 1944
1945 1945 user = opts.get('user') or old.user()
1946 1946 date = opts.get('date') or old.date()
1947 1947 editmsg = False
1948 1948 if not message:
1949 1949 editmsg = True
1950 1950 message = old.description()
1951 1951
1952 1952 pureextra = extra.copy()
1953 1953 extra['amend_source'] = old.hex()
1954 1954
1955 1955 new = context.memctx(repo,
1956 1956 parents=[base.node(), old.p2().node()],
1957 1957 text=message,
1958 1958 files=files,
1959 1959 filectxfn=filectxfn,
1960 1960 user=user,
1961 1961 date=date,
1962 1962 extra=extra)
1963 1963 if editmsg:
1964 1964 new._text = commitforceeditor(repo, new, [])
1965 1965 repo.savecommitmessage(new.description())
1966 1966
1967 1967 newdesc = changelog.stripdesc(new.description())
1968 1968 if ((not node)
1969 1969 and newdesc == old.description()
1970 1970 and user == old.user()
1971 1971 and date == old.date()
1972 1972 and pureextra == old.extra()):
1973 1973 # nothing changed. continuing here would create a new node
1974 1974 # anyway because of the amend_source noise.
1975 1975 #
1976 1976 # This not what we expect from amend.
1977 1977 return old.node()
1978 1978
1979 1979 ph = repo.ui.config('phases', 'new-commit', phases.draft)
1980 1980 try:
1981 1981 if opts.get('secret'):
1982 1982 commitphase = 'secret'
1983 1983 else:
1984 1984 commitphase = old.phase()
1985 1985 repo.ui.setconfig('phases', 'new-commit', commitphase, 'amend')
1986 1986 newid = repo.commitctx(new)
1987 1987 finally:
1988 1988 repo.ui.setconfig('phases', 'new-commit', ph, 'amend')
1989 1989 if newid != old.node():
1990 1990 # Reroute the working copy parent to the new changeset
1991 1991 repo.setparents(newid, nullid)
1992 1992
1993 1993 # Move bookmarks from old parent to amend commit
1994 1994 bms = repo.nodebookmarks(old.node())
1995 1995 if bms:
1996 1996 marks = repo._bookmarks
1997 1997 for bm in bms:
1998 1998 marks[bm] = newid
1999 1999 marks.write()
2000 2000 #commit the whole amend process
2001 2001 if obsolete._enabled and newid != old.node():
2002 2002 # mark the new changeset as successor of the rewritten one
2003 2003 new = repo[newid]
2004 2004 obs = [(old, (new,))]
2005 2005 if node:
2006 2006 obs.append((ctx, ()))
2007 2007
2008 2008 obsolete.createmarkers(repo, obs)
2009 2009 tr.close()
2010 2010 finally:
2011 2011 tr.release()
2012 2012 if (not obsolete._enabled) and newid != old.node():
2013 2013 # Strip the intermediate commit (if there was one) and the amended
2014 2014 # commit
2015 2015 if node:
2016 2016 ui.note(_('stripping intermediate changeset %s\n') % ctx)
2017 2017 ui.note(_('stripping amended changeset %s\n') % old)
2018 2018 repair.strip(ui, repo, old.node(), topic='amend-backup')
2019 2019 finally:
2020 2020 if newid is None:
2021 2021 repo.dirstate.invalidate()
2022 2022 lockmod.release(lock, wlock)
2023 2023 return newid
2024 2024
2025 2025 def commiteditor(repo, ctx, subs):
2026 2026 if ctx.description():
2027 2027 return ctx.description()
2028 2028 return commitforceeditor(repo, ctx, subs)
2029 2029
2030 2030 def commitforceeditor(repo, ctx, subs):
2031 2031 edittext = []
2032 2032 modified, added, removed = ctx.modified(), ctx.added(), ctx.removed()
2033 2033 if ctx.description():
2034 2034 edittext.append(ctx.description())
2035 2035 edittext.append("")
2036 2036 edittext.append("") # Empty line between message and comments.
2037 2037 edittext.append(_("HG: Enter commit message."
2038 2038 " Lines beginning with 'HG:' are removed."))
2039 2039 edittext.append(_("HG: Leave message empty to abort commit."))
2040 2040 edittext.append("HG: --")
2041 2041 edittext.append(_("HG: user: %s") % ctx.user())
2042 2042 if ctx.p2():
2043 2043 edittext.append(_("HG: branch merge"))
2044 2044 if ctx.branch():
2045 2045 edittext.append(_("HG: branch '%s'") % ctx.branch())
2046 2046 if bookmarks.iscurrent(repo):
2047 2047 edittext.append(_("HG: bookmark '%s'") % repo._bookmarkcurrent)
2048 2048 edittext.extend([_("HG: subrepo %s") % s for s in subs])
2049 2049 edittext.extend([_("HG: added %s") % f for f in added])
2050 2050 edittext.extend([_("HG: changed %s") % f for f in modified])
2051 2051 edittext.extend([_("HG: removed %s") % f for f in removed])
2052 2052 if not added and not modified and not removed:
2053 2053 edittext.append(_("HG: no files changed"))
2054 2054 edittext.append("")
2055 2055 # run editor in the repository root
2056 2056 olddir = os.getcwd()
2057 2057 os.chdir(repo.root)
2058 2058 text = repo.ui.edit("\n".join(edittext), ctx.user(), ctx.extra())
2059 2059 text = re.sub("(?m)^HG:.*(\n|$)", "", text)
2060 2060 os.chdir(olddir)
2061 2061
2062 2062 if not text.strip():
2063 2063 raise util.Abort(_("empty commit message"))
2064 2064
2065 2065 return text
2066 2066
2067 2067 def commitstatus(repo, node, branch, bheads=None, opts={}):
2068 2068 ctx = repo[node]
2069 2069 parents = ctx.parents()
2070 2070
2071 2071 if (not opts.get('amend') and bheads and node not in bheads and not
2072 2072 [x for x in parents if x.node() in bheads and x.branch() == branch]):
2073 2073 repo.ui.status(_('created new head\n'))
2074 2074 # The message is not printed for initial roots. For the other
2075 2075 # changesets, it is printed in the following situations:
2076 2076 #
2077 2077 # Par column: for the 2 parents with ...
2078 2078 # N: null or no parent
2079 2079 # B: parent is on another named branch
2080 2080 # C: parent is a regular non head changeset
2081 2081 # H: parent was a branch head of the current branch
2082 2082 # Msg column: whether we print "created new head" message
2083 2083 # In the following, it is assumed that there already exists some
2084 2084 # initial branch heads of the current branch, otherwise nothing is
2085 2085 # printed anyway.
2086 2086 #
2087 2087 # Par Msg Comment
2088 2088 # N N y additional topo root
2089 2089 #
2090 2090 # B N y additional branch root
2091 2091 # C N y additional topo head
2092 2092 # H N n usual case
2093 2093 #
2094 2094 # B B y weird additional branch root
2095 2095 # C B y branch merge
2096 2096 # H B n merge with named branch
2097 2097 #
2098 2098 # C C y additional head from merge
2099 2099 # C H n merge with a head
2100 2100 #
2101 2101 # H H n head merge: head count decreases
2102 2102
2103 2103 if not opts.get('close_branch'):
2104 2104 for r in parents:
2105 2105 if r.closesbranch() and r.branch() == branch:
2106 2106 repo.ui.status(_('reopening closed branch head %d\n') % r)
2107 2107
2108 2108 if repo.ui.debugflag:
2109 2109 repo.ui.write(_('committed changeset %d:%s\n') % (int(ctx), ctx.hex()))
2110 2110 elif repo.ui.verbose:
2111 2111 repo.ui.write(_('committed changeset %d:%s\n') % (int(ctx), ctx))
2112 2112
2113 2113 def revert(ui, repo, ctx, parents, *pats, **opts):
2114 2114 parent, p2 = parents
2115 2115 node = ctx.node()
2116 2116
2117 2117 mf = ctx.manifest()
2118 2118 if node == parent:
2119 2119 pmf = mf
2120 2120 else:
2121 2121 pmf = None
2122 2122
2123 2123 # need all matching names in dirstate and manifest of target rev,
2124 2124 # so have to walk both. do not print errors if files exist in one
2125 2125 # but not other.
2126 2126
2127 2127 names = {}
2128 2128
2129 2129 wlock = repo.wlock()
2130 2130 try:
2131 2131 # walk dirstate.
2132 2132
2133 2133 m = scmutil.match(repo[None], pats, opts)
2134 2134 m.bad = lambda x, y: False
2135 2135 for abs in repo.walk(m):
2136 2136 names[abs] = m.rel(abs), m.exact(abs)
2137 2137
2138 2138 # walk target manifest.
2139 2139
2140 2140 def badfn(path, msg):
2141 2141 if path in names:
2142 2142 return
2143 2143 if path in ctx.substate:
2144 2144 return
2145 2145 path_ = path + '/'
2146 2146 for f in names:
2147 2147 if f.startswith(path_):
2148 2148 return
2149 2149 ui.warn("%s: %s\n" % (m.rel(path), msg))
2150 2150
2151 2151 m = scmutil.match(ctx, pats, opts)
2152 2152 m.bad = badfn
2153 2153 for abs in ctx.walk(m):
2154 2154 if abs not in names:
2155 2155 names[abs] = m.rel(abs), m.exact(abs)
2156 2156
2157 2157 # get the list of subrepos that must be reverted
2158 2158 targetsubs = sorted(s for s in ctx.substate if m(s))
2159 2159 m = scmutil.matchfiles(repo, names)
2160 2160 changes = repo.status(match=m)[:4]
2161 2161 modified, added, removed, deleted = map(set, changes)
2162 2162
2163 2163 # if f is a rename, also revert the source
2164 2164 cwd = repo.getcwd()
2165 2165 for f in added:
2166 2166 src = repo.dirstate.copied(f)
2167 2167 if src and src not in names and repo.dirstate[src] == 'r':
2168 2168 removed.add(src)
2169 2169 names[src] = (repo.pathto(src, cwd), True)
2170 2170
2171 2171 def removeforget(abs):
2172 2172 if repo.dirstate[abs] == 'a':
2173 2173 return _('forgetting %s\n')
2174 2174 return _('removing %s\n')
2175 2175
2176 2176 revert = ([], _('reverting %s\n'))
2177 2177 add = ([], _('adding %s\n'))
2178 2178 remove = ([], removeforget)
2179 2179 undelete = ([], _('undeleting %s\n'))
2180 2180
2181 2181 disptable = (
2182 2182 # dispatch table:
2183 2183 # file state
2184 2184 # action if in target manifest
2185 2185 # action if not in target manifest
2186 2186 # make backup if in target manifest
2187 2187 # make backup if not in target manifest
2188 2188 (modified, revert, remove, True, True),
2189 2189 (added, revert, remove, True, False),
2190 2190 (removed, undelete, None, True, False),
2191 2191 (deleted, revert, remove, False, False),
2192 2192 )
2193 2193
2194 2194 for abs, (rel, exact) in sorted(names.items()):
2195 2195 mfentry = mf.get(abs)
2196 2196 target = repo.wjoin(abs)
2197 2197 def handle(xlist, dobackup):
2198 2198 xlist[0].append(abs)
2199 2199 if (dobackup and not opts.get('no_backup') and
2200 2200 os.path.lexists(target) and
2201 2201 abs in ctx and repo[None][abs].cmp(ctx[abs])):
2202 2202 bakname = "%s.orig" % rel
2203 2203 ui.note(_('saving current version of %s as %s\n') %
2204 2204 (rel, bakname))
2205 2205 if not opts.get('dry_run'):
2206 2206 util.rename(target, bakname)
2207 2207 if ui.verbose or not exact:
2208 2208 msg = xlist[1]
2209 2209 if not isinstance(msg, basestring):
2210 2210 msg = msg(abs)
2211 2211 ui.status(msg % rel)
2212 2212 for table, hitlist, misslist, backuphit, backupmiss in disptable:
2213 2213 if abs not in table:
2214 2214 continue
2215 2215 # file has changed in dirstate
2216 2216 if mfentry:
2217 2217 handle(hitlist, backuphit)
2218 2218 elif misslist is not None:
2219 2219 handle(misslist, backupmiss)
2220 2220 break
2221 2221 else:
2222 2222 if abs not in repo.dirstate:
2223 2223 if mfentry:
2224 2224 handle(add, True)
2225 2225 elif exact:
2226 2226 ui.warn(_('file not managed: %s\n') % rel)
2227 2227 continue
2228 2228 # file has not changed in dirstate
2229 2229 if node == parent:
2230 2230 if exact:
2231 2231 ui.warn(_('no changes needed to %s\n') % rel)
2232 2232 continue
2233 2233 if pmf is None:
2234 2234 # only need parent manifest in this unlikely case,
2235 2235 # so do not read by default
2236 2236 pmf = repo[parent].manifest()
2237 2237 if abs in pmf and mfentry:
2238 2238 # if version of file is same in parent and target
2239 2239 # manifests, do nothing
2240 2240 if (pmf[abs] != mfentry or
2241 2241 pmf.flags(abs) != mf.flags(abs)):
2242 2242 handle(revert, False)
2243 2243 else:
2244 2244 handle(remove, False)
2245 2245 if not opts.get('dry_run'):
2246 2246 _performrevert(repo, parents, ctx, revert, add, remove, undelete)
2247 2247
2248 2248 if targetsubs:
2249 2249 # Revert the subrepos on the revert list
2250 2250 for sub in targetsubs:
2251 2251 ctx.sub(sub).revert(ui, ctx.substate[sub], *pats, **opts)
2252 2252 finally:
2253 2253 wlock.release()
2254 2254
2255 2255 def _performrevert(repo, parents, ctx, revert, add, remove, undelete):
2256 2256 """function that actually perform all the action computed for revert
2257 2257
2258 2258 This is an independent function to let extension to plug in and react to
2259 2259 the imminent revert.
2260 2260
2261 2261 Make sure you have the working directory locked when calling this function.
2262 2262 """
2263 2263 parent, p2 = parents
2264 2264 node = ctx.node()
2265 2265 def checkout(f):
2266 2266 fc = ctx[f]
2267 2267 repo.wwrite(f, fc.data(), fc.flags())
2268 2268
2269 2269 audit_path = pathutil.pathauditor(repo.root)
2270 2270 for f in remove[0]:
2271 2271 if repo.dirstate[f] == 'a':
2272 2272 repo.dirstate.drop(f)
2273 2273 continue
2274 2274 audit_path(f)
2275 2275 try:
2276 2276 util.unlinkpath(repo.wjoin(f))
2277 2277 except OSError:
2278 2278 pass
2279 2279 repo.dirstate.remove(f)
2280 2280
2281 2281 normal = None
2282 2282 if node == parent:
2283 2283 # We're reverting to our parent. If possible, we'd like status
2284 2284 # to report the file as clean. We have to use normallookup for
2285 2285 # merges to avoid losing information about merged/dirty files.
2286 2286 if p2 != nullid:
2287 2287 normal = repo.dirstate.normallookup
2288 2288 else:
2289 2289 normal = repo.dirstate.normal
2290 2290 for f in revert[0]:
2291 2291 checkout(f)
2292 2292 if normal:
2293 2293 normal(f)
2294 2294
2295 2295 for f in add[0]:
2296 2296 checkout(f)
2297 2297 repo.dirstate.add(f)
2298 2298
2299 2299 normal = repo.dirstate.normallookup
2300 2300 if node == parent and p2 == nullid:
2301 2301 normal = repo.dirstate.normal
2302 2302 for f in undelete[0]:
2303 2303 checkout(f)
2304 2304 normal(f)
2305 2305
2306 2306 copied = copies.pathcopies(repo[parent], ctx)
2307 2307
2308 2308 for f in add[0] + undelete[0] + revert[0]:
2309 2309 if f in copied:
2310 2310 repo.dirstate.copy(copied[f], f)
2311 2311
2312 2312 def command(table):
2313 2313 '''returns a function object bound to table which can be used as
2314 2314 a decorator for populating table as a command table'''
2315 2315
2316 2316 def cmd(name, options=(), synopsis=None):
2317 2317 def decorator(func):
2318 2318 if synopsis:
2319 2319 table[name] = func, list(options), synopsis
2320 2320 else:
2321 2321 table[name] = func, list(options)
2322 2322 return func
2323 2323 return decorator
2324 2324
2325 2325 return cmd
2326 2326
2327 2327 # a list of (ui, repo) functions called by commands.summary
2328 2328 summaryhooks = util.hooks()
2329 2329
2330 2330 # A list of state files kept by multistep operations like graft.
2331 2331 # Since graft cannot be aborted, it is considered 'clearable' by update.
2332 2332 # note: bisect is intentionally excluded
2333 2333 # (state file, clearable, allowcommit, error, hint)
2334 2334 unfinishedstates = [
2335 2335 ('graftstate', True, False, _('graft in progress'),
2336 2336 _("use 'hg graft --continue' or 'hg update' to abort")),
2337 2337 ('updatestate', True, False, _('last update was interrupted'),
2338 2338 _("use 'hg update' to get a consistent checkout"))
2339 2339 ]
2340 2340
2341 2341 def checkunfinished(repo, commit=False):
2342 2342 '''Look for an unfinished multistep operation, like graft, and abort
2343 2343 if found. It's probably good to check this right before
2344 2344 bailifchanged().
2345 2345 '''
2346 2346 for f, clearable, allowcommit, msg, hint in unfinishedstates:
2347 2347 if commit and allowcommit:
2348 2348 continue
2349 2349 if repo.vfs.exists(f):
2350 2350 raise util.Abort(msg, hint=hint)
2351 2351
2352 2352 def clearunfinished(repo):
2353 2353 '''Check for unfinished operations (as above), and clear the ones
2354 2354 that are clearable.
2355 2355 '''
2356 2356 for f, clearable, allowcommit, msg, hint in unfinishedstates:
2357 2357 if not clearable and repo.vfs.exists(f):
2358 2358 raise util.Abort(msg, hint=hint)
2359 2359 for f, clearable, allowcommit, msg, hint in unfinishedstates:
2360 2360 if clearable and repo.vfs.exists(f):
2361 2361 util.unlink(repo.join(f))
@@ -1,903 +1,909 b''
1 1 $ cat >> $HGRCPATH << EOF
2 2 > [phases]
3 3 > # public changeset are not obsolete
4 4 > publish=false
5 5 > EOF
6 6 $ mkcommit() {
7 7 > echo "$1" > "$1"
8 8 > hg add "$1"
9 9 > hg ci -m "add $1"
10 10 > }
11 11 $ getid() {
12 12 > hg id --debug --hidden -ir "desc('$1')"
13 13 > }
14 14
15 15 $ cat > debugkeys.py <<EOF
16 16 > def reposetup(ui, repo):
17 17 > class debugkeysrepo(repo.__class__):
18 18 > def listkeys(self, namespace):
19 19 > ui.write('listkeys %s\n' % (namespace,))
20 20 > return super(debugkeysrepo, self).listkeys(namespace)
21 21 >
22 22 > if repo.local():
23 23 > repo.__class__ = debugkeysrepo
24 24 > EOF
25 25
26 26 $ hg init tmpa
27 27 $ cd tmpa
28 28 $ mkcommit kill_me
29 29
30 30 Checking that the feature is properly disabled
31 31
32 32 $ hg debugobsolete -d '0 0' `getid kill_me` -u babar
33 33 abort: obsolete feature is not enabled on this repo
34 34 [255]
35 35
36 36 Enabling it
37 37
38 38 $ cat > ../obs.py << EOF
39 39 > import mercurial.obsolete
40 40 > mercurial.obsolete._enabled = True
41 41 > EOF
42 42 $ echo '[extensions]' >> $HGRCPATH
43 43 $ echo "obs=${TESTTMP}/obs.py" >> $HGRCPATH
44 44
45 45 Killing a single changeset without replacement
46 46
47 47 $ hg debugobsolete 0
48 48 abort: changeset references must be full hexadecimal node identifiers
49 49 [255]
50 50 $ hg debugobsolete '00'
51 51 abort: changeset references must be full hexadecimal node identifiers
52 52 [255]
53 53 $ hg debugobsolete -d '0 0' `getid kill_me` -u babar
54 54 $ hg debugobsolete
55 55 97b7c2d76b1845ed3eb988cd612611e72406cef0 0 {'date': '0 0', 'user': 'babar'}
56 56
57 57 (test that mercurial is not confused)
58 58
59 59 $ hg up null --quiet # having 0 as parent prevents it to be hidden
60 60 $ hg tip
61 61 changeset: -1:000000000000
62 62 tag: tip
63 63 user:
64 64 date: Thu Jan 01 00:00:00 1970 +0000
65 65
66 66 $ hg up --hidden tip --quiet
67 67 $ cd ..
68 68
69 69 Killing a single changeset with replacement
70 70
71 71 $ hg init tmpb
72 72 $ cd tmpb
73 73 $ mkcommit a
74 74 $ mkcommit b
75 75 $ mkcommit original_c
76 76 $ hg up "desc('b')"
77 77 0 files updated, 0 files merged, 1 files removed, 0 files unresolved
78 78 $ mkcommit new_c
79 79 created new head
80 80 $ hg log -r 'hidden()' --template '{rev}:{node|short} {desc}\n' --hidden
81 81 $ hg debugobsolete --flag 12 `getid original_c` `getid new_c` -d '56 12'
82 82 $ hg log -r 'hidden()' --template '{rev}:{node|short} {desc}\n' --hidden
83 83 2:245bde4270cd add original_c
84 $ hg debugrevlog -cd
85 # rev p1rev p2rev start end deltastart base p1 p2 rawsize totalsize compression heads
86 0 -1 -1 0 59 0 0 0 0 58 58 0 1
87 1 0 -1 59 118 59 59 0 0 58 116 0 1
88 2 1 -1 118 204 59 59 59 0 76 192 0 1
89 3 1 -1 204 271 204 204 59 0 66 258 0 2
84 90 $ hg debugobsolete
85 91 245bde4270cd1072a27757984f9cda8ba26f08ca cdbce2fbb16313928851e97e0d85413f3f7eb77f C {'date': '56 12', 'user': 'test'}
86 92
87 93 do it again (it read the obsstore before adding new changeset)
88 94
89 95 $ hg up '.^'
90 96 0 files updated, 0 files merged, 1 files removed, 0 files unresolved
91 97 $ mkcommit new_2_c
92 98 created new head
93 99 $ hg debugobsolete -d '1337 0' `getid new_c` `getid new_2_c`
94 100 $ hg debugobsolete
95 101 245bde4270cd1072a27757984f9cda8ba26f08ca cdbce2fbb16313928851e97e0d85413f3f7eb77f C {'date': '56 12', 'user': 'test'}
96 102 cdbce2fbb16313928851e97e0d85413f3f7eb77f ca819180edb99ed25ceafb3e9584ac287e240b00 0 {'date': '1337 0', 'user': 'test'}
97 103
98 104 Register two markers with a missing node
99 105
100 106 $ hg up '.^'
101 107 0 files updated, 0 files merged, 1 files removed, 0 files unresolved
102 108 $ mkcommit new_3_c
103 109 created new head
104 110 $ hg debugobsolete -d '1338 0' `getid new_2_c` 1337133713371337133713371337133713371337
105 111 $ hg debugobsolete -d '1339 0' 1337133713371337133713371337133713371337 `getid new_3_c`
106 112 $ hg debugobsolete
107 113 245bde4270cd1072a27757984f9cda8ba26f08ca cdbce2fbb16313928851e97e0d85413f3f7eb77f C {'date': '56 12', 'user': 'test'}
108 114 cdbce2fbb16313928851e97e0d85413f3f7eb77f ca819180edb99ed25ceafb3e9584ac287e240b00 0 {'date': '1337 0', 'user': 'test'}
109 115 ca819180edb99ed25ceafb3e9584ac287e240b00 1337133713371337133713371337133713371337 0 {'date': '1338 0', 'user': 'test'}
110 116 1337133713371337133713371337133713371337 5601fb93a350734d935195fee37f4054c529ff39 0 {'date': '1339 0', 'user': 'test'}
111 117
112 118 Refuse pathological nullid successors
113 119 $ hg debugobsolete -d '9001 0' 1337133713371337133713371337133713371337 0000000000000000000000000000000000000000
114 120 transaction abort!
115 121 rollback completed
116 122 abort: bad obsolescence marker detected: invalid successors nullid
117 123 [255]
118 124
119 125 Check that graphlog detect that a changeset is obsolete:
120 126
121 127 $ hg log -G
122 128 @ changeset: 5:5601fb93a350
123 129 | tag: tip
124 130 | parent: 1:7c3bad9141dc
125 131 | user: test
126 132 | date: Thu Jan 01 00:00:00 1970 +0000
127 133 | summary: add new_3_c
128 134 |
129 135 o changeset: 1:7c3bad9141dc
130 136 | user: test
131 137 | date: Thu Jan 01 00:00:00 1970 +0000
132 138 | summary: add b
133 139 |
134 140 o changeset: 0:1f0dee641bb7
135 141 user: test
136 142 date: Thu Jan 01 00:00:00 1970 +0000
137 143 summary: add a
138 144
139 145
140 146 check that heads does not report them
141 147
142 148 $ hg heads
143 149 changeset: 5:5601fb93a350
144 150 tag: tip
145 151 parent: 1:7c3bad9141dc
146 152 user: test
147 153 date: Thu Jan 01 00:00:00 1970 +0000
148 154 summary: add new_3_c
149 155
150 156 $ hg heads --hidden
151 157 changeset: 5:5601fb93a350
152 158 tag: tip
153 159 parent: 1:7c3bad9141dc
154 160 user: test
155 161 date: Thu Jan 01 00:00:00 1970 +0000
156 162 summary: add new_3_c
157 163
158 164 changeset: 4:ca819180edb9
159 165 parent: 1:7c3bad9141dc
160 166 user: test
161 167 date: Thu Jan 01 00:00:00 1970 +0000
162 168 summary: add new_2_c
163 169
164 170 changeset: 3:cdbce2fbb163
165 171 parent: 1:7c3bad9141dc
166 172 user: test
167 173 date: Thu Jan 01 00:00:00 1970 +0000
168 174 summary: add new_c
169 175
170 176 changeset: 2:245bde4270cd
171 177 user: test
172 178 date: Thu Jan 01 00:00:00 1970 +0000
173 179 summary: add original_c
174 180
175 181
176 182
177 183 check that summary does not report them
178 184
179 185 $ hg init ../sink
180 186 $ echo '[paths]' >> .hg/hgrc
181 187 $ echo 'default=../sink' >> .hg/hgrc
182 188 $ hg summary --remote
183 189 parent: 5:5601fb93a350 tip
184 190 add new_3_c
185 191 branch: default
186 192 commit: (clean)
187 193 update: (current)
188 194 remote: 3 outgoing
189 195
190 196 $ hg summary --remote --hidden
191 197 parent: 5:5601fb93a350 tip
192 198 add new_3_c
193 199 branch: default
194 200 commit: (clean)
195 201 update: 3 new changesets, 4 branch heads (merge)
196 202 remote: 3 outgoing
197 203
198 204 check that various commands work well with filtering
199 205
200 206 $ hg tip
201 207 changeset: 5:5601fb93a350
202 208 tag: tip
203 209 parent: 1:7c3bad9141dc
204 210 user: test
205 211 date: Thu Jan 01 00:00:00 1970 +0000
206 212 summary: add new_3_c
207 213
208 214 $ hg log -r 6
209 215 abort: unknown revision '6'!
210 216 [255]
211 217 $ hg log -r 4
212 218 abort: unknown revision '4'!
213 219 [255]
214 220
215 221 Check that public changeset are not accounted as obsolete:
216 222
217 223 $ hg --hidden phase --public 2
218 224 $ hg log -G
219 225 @ changeset: 5:5601fb93a350
220 226 | tag: tip
221 227 | parent: 1:7c3bad9141dc
222 228 | user: test
223 229 | date: Thu Jan 01 00:00:00 1970 +0000
224 230 | summary: add new_3_c
225 231 |
226 232 | o changeset: 2:245bde4270cd
227 233 |/ user: test
228 234 | date: Thu Jan 01 00:00:00 1970 +0000
229 235 | summary: add original_c
230 236 |
231 237 o changeset: 1:7c3bad9141dc
232 238 | user: test
233 239 | date: Thu Jan 01 00:00:00 1970 +0000
234 240 | summary: add b
235 241 |
236 242 o changeset: 0:1f0dee641bb7
237 243 user: test
238 244 date: Thu Jan 01 00:00:00 1970 +0000
239 245 summary: add a
240 246
241 247
242 248 And that bumped changeset are detected
243 249 --------------------------------------
244 250
245 251 If we didn't filtered obsolete changesets out, 3 and 4 would show up too. Also
246 252 note that the bumped changeset (5:5601fb93a350) is not a direct successor of
247 253 the public changeset
248 254
249 255 $ hg log --hidden -r 'bumped()'
250 256 changeset: 5:5601fb93a350
251 257 tag: tip
252 258 parent: 1:7c3bad9141dc
253 259 user: test
254 260 date: Thu Jan 01 00:00:00 1970 +0000
255 261 summary: add new_3_c
256 262
257 263
258 264 And that we can't push bumped changeset
259 265
260 266 $ hg push ../tmpa -r 0 --force #(make repo related)
261 267 pushing to ../tmpa
262 268 searching for changes
263 269 warning: repository is unrelated
264 270 adding changesets
265 271 adding manifests
266 272 adding file changes
267 273 added 1 changesets with 1 changes to 1 files (+1 heads)
268 274 $ hg push ../tmpa
269 275 pushing to ../tmpa
270 276 searching for changes
271 277 abort: push includes bumped changeset: 5601fb93a350!
272 278 [255]
273 279
274 280 Fixing "bumped" situation
275 281 We need to create a clone of 5 and add a special marker with a flag
276 282
277 283 $ hg up '5^'
278 284 0 files updated, 0 files merged, 1 files removed, 0 files unresolved
279 285 $ hg revert -ar 5
280 286 adding new_3_c
281 287 $ hg ci -m 'add n3w_3_c'
282 288 created new head
283 289 $ hg debugobsolete -d '1338 0' --flags 1 `getid new_3_c` `getid n3w_3_c`
284 290 $ hg log -r 'bumped()'
285 291 $ hg log -G
286 292 @ changeset: 6:6f9641995072
287 293 | tag: tip
288 294 | parent: 1:7c3bad9141dc
289 295 | user: test
290 296 | date: Thu Jan 01 00:00:00 1970 +0000
291 297 | summary: add n3w_3_c
292 298 |
293 299 | o changeset: 2:245bde4270cd
294 300 |/ user: test
295 301 | date: Thu Jan 01 00:00:00 1970 +0000
296 302 | summary: add original_c
297 303 |
298 304 o changeset: 1:7c3bad9141dc
299 305 | user: test
300 306 | date: Thu Jan 01 00:00:00 1970 +0000
301 307 | summary: add b
302 308 |
303 309 o changeset: 0:1f0dee641bb7
304 310 user: test
305 311 date: Thu Jan 01 00:00:00 1970 +0000
306 312 summary: add a
307 313
308 314
309 315
310 316
311 317 $ cd ..
312 318
313 319 Exchange Test
314 320 ============================
315 321
316 322 Destination repo does not have any data
317 323 ---------------------------------------
318 324
319 325 Simple incoming test
320 326
321 327 $ hg init tmpc
322 328 $ cd tmpc
323 329 $ hg incoming ../tmpb
324 330 comparing with ../tmpb
325 331 changeset: 0:1f0dee641bb7
326 332 user: test
327 333 date: Thu Jan 01 00:00:00 1970 +0000
328 334 summary: add a
329 335
330 336 changeset: 1:7c3bad9141dc
331 337 user: test
332 338 date: Thu Jan 01 00:00:00 1970 +0000
333 339 summary: add b
334 340
335 341 changeset: 2:245bde4270cd
336 342 user: test
337 343 date: Thu Jan 01 00:00:00 1970 +0000
338 344 summary: add original_c
339 345
340 346 changeset: 6:6f9641995072
341 347 tag: tip
342 348 parent: 1:7c3bad9141dc
343 349 user: test
344 350 date: Thu Jan 01 00:00:00 1970 +0000
345 351 summary: add n3w_3_c
346 352
347 353
348 354 Try to pull markers
349 355 (extinct changeset are excluded but marker are pushed)
350 356
351 357 $ hg pull ../tmpb
352 358 pulling from ../tmpb
353 359 requesting all changes
354 360 adding changesets
355 361 adding manifests
356 362 adding file changes
357 363 added 4 changesets with 4 changes to 4 files (+1 heads)
358 364 (run 'hg heads' to see heads, 'hg merge' to merge)
359 365 $ hg debugobsolete
360 366 245bde4270cd1072a27757984f9cda8ba26f08ca cdbce2fbb16313928851e97e0d85413f3f7eb77f C {'date': '56 12', 'user': 'test'}
361 367 cdbce2fbb16313928851e97e0d85413f3f7eb77f ca819180edb99ed25ceafb3e9584ac287e240b00 0 {'date': '1337 0', 'user': 'test'}
362 368 ca819180edb99ed25ceafb3e9584ac287e240b00 1337133713371337133713371337133713371337 0 {'date': '1338 0', 'user': 'test'}
363 369 1337133713371337133713371337133713371337 5601fb93a350734d935195fee37f4054c529ff39 0 {'date': '1339 0', 'user': 'test'}
364 370 5601fb93a350734d935195fee37f4054c529ff39 6f96419950729f3671185b847352890f074f7557 1 {'date': '1338 0', 'user': 'test'}
365 371
366 372 Rollback//Transaction support
367 373
368 374 $ hg debugobsolete -d '1340 0' aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb
369 375 $ hg debugobsolete
370 376 245bde4270cd1072a27757984f9cda8ba26f08ca cdbce2fbb16313928851e97e0d85413f3f7eb77f C {'date': '56 12', 'user': 'test'}
371 377 cdbce2fbb16313928851e97e0d85413f3f7eb77f ca819180edb99ed25ceafb3e9584ac287e240b00 0 {'date': '1337 0', 'user': 'test'}
372 378 ca819180edb99ed25ceafb3e9584ac287e240b00 1337133713371337133713371337133713371337 0 {'date': '1338 0', 'user': 'test'}
373 379 1337133713371337133713371337133713371337 5601fb93a350734d935195fee37f4054c529ff39 0 {'date': '1339 0', 'user': 'test'}
374 380 5601fb93a350734d935195fee37f4054c529ff39 6f96419950729f3671185b847352890f074f7557 1 {'date': '1338 0', 'user': 'test'}
375 381 aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb 0 {'date': '1340 0', 'user': 'test'}
376 382 $ hg rollback -n
377 383 repository tip rolled back to revision 3 (undo debugobsolete)
378 384 $ hg rollback
379 385 repository tip rolled back to revision 3 (undo debugobsolete)
380 386 $ hg debugobsolete
381 387 245bde4270cd1072a27757984f9cda8ba26f08ca cdbce2fbb16313928851e97e0d85413f3f7eb77f C {'date': '56 12', 'user': 'test'}
382 388 cdbce2fbb16313928851e97e0d85413f3f7eb77f ca819180edb99ed25ceafb3e9584ac287e240b00 0 {'date': '1337 0', 'user': 'test'}
383 389 ca819180edb99ed25ceafb3e9584ac287e240b00 1337133713371337133713371337133713371337 0 {'date': '1338 0', 'user': 'test'}
384 390 1337133713371337133713371337133713371337 5601fb93a350734d935195fee37f4054c529ff39 0 {'date': '1339 0', 'user': 'test'}
385 391 5601fb93a350734d935195fee37f4054c529ff39 6f96419950729f3671185b847352890f074f7557 1 {'date': '1338 0', 'user': 'test'}
386 392
387 393 $ cd ..
388 394
389 395 Try to push markers
390 396
391 397 $ hg init tmpd
392 398 $ hg -R tmpb push tmpd
393 399 pushing to tmpd
394 400 searching for changes
395 401 adding changesets
396 402 adding manifests
397 403 adding file changes
398 404 added 4 changesets with 4 changes to 4 files (+1 heads)
399 405 $ hg -R tmpd debugobsolete
400 406 245bde4270cd1072a27757984f9cda8ba26f08ca cdbce2fbb16313928851e97e0d85413f3f7eb77f C {'date': '56 12', 'user': 'test'}
401 407 cdbce2fbb16313928851e97e0d85413f3f7eb77f ca819180edb99ed25ceafb3e9584ac287e240b00 0 {'date': '1337 0', 'user': 'test'}
402 408 ca819180edb99ed25ceafb3e9584ac287e240b00 1337133713371337133713371337133713371337 0 {'date': '1338 0', 'user': 'test'}
403 409 1337133713371337133713371337133713371337 5601fb93a350734d935195fee37f4054c529ff39 0 {'date': '1339 0', 'user': 'test'}
404 410 5601fb93a350734d935195fee37f4054c529ff39 6f96419950729f3671185b847352890f074f7557 1 {'date': '1338 0', 'user': 'test'}
405 411
406 412 Check obsolete keys are exchanged only if source has an obsolete store
407 413
408 414 $ hg init empty
409 415 $ hg --config extensions.debugkeys=debugkeys.py -R empty push tmpd
410 416 pushing to tmpd
411 417 no changes found
412 418 listkeys phases
413 419 listkeys bookmarks
414 420 [1]
415 421
416 422 clone support
417 423 (markers are copied and extinct changesets are included to allow hardlinks)
418 424
419 425 $ hg clone tmpb clone-dest
420 426 updating to branch default
421 427 3 files updated, 0 files merged, 0 files removed, 0 files unresolved
422 428 $ hg -R clone-dest log -G --hidden
423 429 @ changeset: 6:6f9641995072
424 430 | tag: tip
425 431 | parent: 1:7c3bad9141dc
426 432 | user: test
427 433 | date: Thu Jan 01 00:00:00 1970 +0000
428 434 | summary: add n3w_3_c
429 435 |
430 436 | x changeset: 5:5601fb93a350
431 437 |/ parent: 1:7c3bad9141dc
432 438 | user: test
433 439 | date: Thu Jan 01 00:00:00 1970 +0000
434 440 | summary: add new_3_c
435 441 |
436 442 | x changeset: 4:ca819180edb9
437 443 |/ parent: 1:7c3bad9141dc
438 444 | user: test
439 445 | date: Thu Jan 01 00:00:00 1970 +0000
440 446 | summary: add new_2_c
441 447 |
442 448 | x changeset: 3:cdbce2fbb163
443 449 |/ parent: 1:7c3bad9141dc
444 450 | user: test
445 451 | date: Thu Jan 01 00:00:00 1970 +0000
446 452 | summary: add new_c
447 453 |
448 454 | o changeset: 2:245bde4270cd
449 455 |/ user: test
450 456 | date: Thu Jan 01 00:00:00 1970 +0000
451 457 | summary: add original_c
452 458 |
453 459 o changeset: 1:7c3bad9141dc
454 460 | user: test
455 461 | date: Thu Jan 01 00:00:00 1970 +0000
456 462 | summary: add b
457 463 |
458 464 o changeset: 0:1f0dee641bb7
459 465 user: test
460 466 date: Thu Jan 01 00:00:00 1970 +0000
461 467 summary: add a
462 468
463 469 $ hg -R clone-dest debugobsolete
464 470 245bde4270cd1072a27757984f9cda8ba26f08ca cdbce2fbb16313928851e97e0d85413f3f7eb77f C {'date': '56 12', 'user': 'test'}
465 471 cdbce2fbb16313928851e97e0d85413f3f7eb77f ca819180edb99ed25ceafb3e9584ac287e240b00 0 {'date': '1337 0', 'user': 'test'}
466 472 ca819180edb99ed25ceafb3e9584ac287e240b00 1337133713371337133713371337133713371337 0 {'date': '1338 0', 'user': 'test'}
467 473 1337133713371337133713371337133713371337 5601fb93a350734d935195fee37f4054c529ff39 0 {'date': '1339 0', 'user': 'test'}
468 474 5601fb93a350734d935195fee37f4054c529ff39 6f96419950729f3671185b847352890f074f7557 1 {'date': '1338 0', 'user': 'test'}
469 475
470 476
471 477 Destination repo have existing data
472 478 ---------------------------------------
473 479
474 480 On pull
475 481
476 482 $ hg init tmpe
477 483 $ cd tmpe
478 484 $ hg debugobsolete -d '1339 0' 2448244824482448244824482448244824482448 1339133913391339133913391339133913391339
479 485 $ hg pull ../tmpb
480 486 pulling from ../tmpb
481 487 requesting all changes
482 488 adding changesets
483 489 adding manifests
484 490 adding file changes
485 491 added 4 changesets with 4 changes to 4 files (+1 heads)
486 492 (run 'hg heads' to see heads, 'hg merge' to merge)
487 493 $ hg debugobsolete
488 494 2448244824482448244824482448244824482448 1339133913391339133913391339133913391339 0 {'date': '1339 0', 'user': 'test'}
489 495 245bde4270cd1072a27757984f9cda8ba26f08ca cdbce2fbb16313928851e97e0d85413f3f7eb77f C {'date': '56 12', 'user': 'test'}
490 496 cdbce2fbb16313928851e97e0d85413f3f7eb77f ca819180edb99ed25ceafb3e9584ac287e240b00 0 {'date': '1337 0', 'user': 'test'}
491 497 ca819180edb99ed25ceafb3e9584ac287e240b00 1337133713371337133713371337133713371337 0 {'date': '1338 0', 'user': 'test'}
492 498 1337133713371337133713371337133713371337 5601fb93a350734d935195fee37f4054c529ff39 0 {'date': '1339 0', 'user': 'test'}
493 499 5601fb93a350734d935195fee37f4054c529ff39 6f96419950729f3671185b847352890f074f7557 1 {'date': '1338 0', 'user': 'test'}
494 500
495 501
496 502 On push
497 503
498 504 $ hg push ../tmpc
499 505 pushing to ../tmpc
500 506 searching for changes
501 507 no changes found
502 508 [1]
503 509 $ hg -R ../tmpc debugobsolete
504 510 245bde4270cd1072a27757984f9cda8ba26f08ca cdbce2fbb16313928851e97e0d85413f3f7eb77f C {'date': '56 12', 'user': 'test'}
505 511 cdbce2fbb16313928851e97e0d85413f3f7eb77f ca819180edb99ed25ceafb3e9584ac287e240b00 0 {'date': '1337 0', 'user': 'test'}
506 512 ca819180edb99ed25ceafb3e9584ac287e240b00 1337133713371337133713371337133713371337 0 {'date': '1338 0', 'user': 'test'}
507 513 1337133713371337133713371337133713371337 5601fb93a350734d935195fee37f4054c529ff39 0 {'date': '1339 0', 'user': 'test'}
508 514 5601fb93a350734d935195fee37f4054c529ff39 6f96419950729f3671185b847352890f074f7557 1 {'date': '1338 0', 'user': 'test'}
509 515 2448244824482448244824482448244824482448 1339133913391339133913391339133913391339 0 {'date': '1339 0', 'user': 'test'}
510 516
511 517 detect outgoing obsolete and unstable
512 518 ---------------------------------------
513 519
514 520
515 521 $ hg log -G
516 522 o changeset: 3:6f9641995072
517 523 | tag: tip
518 524 | parent: 1:7c3bad9141dc
519 525 | user: test
520 526 | date: Thu Jan 01 00:00:00 1970 +0000
521 527 | summary: add n3w_3_c
522 528 |
523 529 | o changeset: 2:245bde4270cd
524 530 |/ user: test
525 531 | date: Thu Jan 01 00:00:00 1970 +0000
526 532 | summary: add original_c
527 533 |
528 534 o changeset: 1:7c3bad9141dc
529 535 | user: test
530 536 | date: Thu Jan 01 00:00:00 1970 +0000
531 537 | summary: add b
532 538 |
533 539 o changeset: 0:1f0dee641bb7
534 540 user: test
535 541 date: Thu Jan 01 00:00:00 1970 +0000
536 542 summary: add a
537 543
538 544 $ hg up 'desc("n3w_3_c")'
539 545 3 files updated, 0 files merged, 0 files removed, 0 files unresolved
540 546 $ mkcommit original_d
541 547 $ mkcommit original_e
542 548 $ hg debugobsolete `getid original_d` -d '0 0'
543 549 $ hg log -r 'obsolete()'
544 550 changeset: 4:94b33453f93b
545 551 user: test
546 552 date: Thu Jan 01 00:00:00 1970 +0000
547 553 summary: add original_d
548 554
549 555 $ hg log -G -r '::unstable()'
550 556 @ changeset: 5:cda648ca50f5
551 557 | tag: tip
552 558 | user: test
553 559 | date: Thu Jan 01 00:00:00 1970 +0000
554 560 | summary: add original_e
555 561 |
556 562 x changeset: 4:94b33453f93b
557 563 | user: test
558 564 | date: Thu Jan 01 00:00:00 1970 +0000
559 565 | summary: add original_d
560 566 |
561 567 o changeset: 3:6f9641995072
562 568 | parent: 1:7c3bad9141dc
563 569 | user: test
564 570 | date: Thu Jan 01 00:00:00 1970 +0000
565 571 | summary: add n3w_3_c
566 572 |
567 573 o changeset: 1:7c3bad9141dc
568 574 | user: test
569 575 | date: Thu Jan 01 00:00:00 1970 +0000
570 576 | summary: add b
571 577 |
572 578 o changeset: 0:1f0dee641bb7
573 579 user: test
574 580 date: Thu Jan 01 00:00:00 1970 +0000
575 581 summary: add a
576 582
577 583
578 584 refuse to push obsolete changeset
579 585
580 586 $ hg push ../tmpc/ -r 'desc("original_d")'
581 587 pushing to ../tmpc/
582 588 searching for changes
583 589 abort: push includes obsolete changeset: 94b33453f93b!
584 590 [255]
585 591
586 592 refuse to push unstable changeset
587 593
588 594 $ hg push ../tmpc/
589 595 pushing to ../tmpc/
590 596 searching for changes
591 597 abort: push includes unstable changeset: cda648ca50f5!
592 598 [255]
593 599
594 600 Test that extinct changeset are properly detected
595 601
596 602 $ hg log -r 'extinct()'
597 603
598 604 Don't try to push extinct changeset
599 605
600 606 $ hg init ../tmpf
601 607 $ hg out ../tmpf
602 608 comparing with ../tmpf
603 609 searching for changes
604 610 changeset: 0:1f0dee641bb7
605 611 user: test
606 612 date: Thu Jan 01 00:00:00 1970 +0000
607 613 summary: add a
608 614
609 615 changeset: 1:7c3bad9141dc
610 616 user: test
611 617 date: Thu Jan 01 00:00:00 1970 +0000
612 618 summary: add b
613 619
614 620 changeset: 2:245bde4270cd
615 621 user: test
616 622 date: Thu Jan 01 00:00:00 1970 +0000
617 623 summary: add original_c
618 624
619 625 changeset: 3:6f9641995072
620 626 parent: 1:7c3bad9141dc
621 627 user: test
622 628 date: Thu Jan 01 00:00:00 1970 +0000
623 629 summary: add n3w_3_c
624 630
625 631 changeset: 4:94b33453f93b
626 632 user: test
627 633 date: Thu Jan 01 00:00:00 1970 +0000
628 634 summary: add original_d
629 635
630 636 changeset: 5:cda648ca50f5
631 637 tag: tip
632 638 user: test
633 639 date: Thu Jan 01 00:00:00 1970 +0000
634 640 summary: add original_e
635 641
636 642 $ hg push ../tmpf -f # -f because be push unstable too
637 643 pushing to ../tmpf
638 644 searching for changes
639 645 adding changesets
640 646 adding manifests
641 647 adding file changes
642 648 added 6 changesets with 6 changes to 6 files (+1 heads)
643 649
644 650 no warning displayed
645 651
646 652 $ hg push ../tmpf
647 653 pushing to ../tmpf
648 654 searching for changes
649 655 no changes found
650 656 [1]
651 657
652 658 Do not warn about new head when the new head is a successors of a remote one
653 659
654 660 $ hg log -G
655 661 @ changeset: 5:cda648ca50f5
656 662 | tag: tip
657 663 | user: test
658 664 | date: Thu Jan 01 00:00:00 1970 +0000
659 665 | summary: add original_e
660 666 |
661 667 x changeset: 4:94b33453f93b
662 668 | user: test
663 669 | date: Thu Jan 01 00:00:00 1970 +0000
664 670 | summary: add original_d
665 671 |
666 672 o changeset: 3:6f9641995072
667 673 | parent: 1:7c3bad9141dc
668 674 | user: test
669 675 | date: Thu Jan 01 00:00:00 1970 +0000
670 676 | summary: add n3w_3_c
671 677 |
672 678 | o changeset: 2:245bde4270cd
673 679 |/ user: test
674 680 | date: Thu Jan 01 00:00:00 1970 +0000
675 681 | summary: add original_c
676 682 |
677 683 o changeset: 1:7c3bad9141dc
678 684 | user: test
679 685 | date: Thu Jan 01 00:00:00 1970 +0000
680 686 | summary: add b
681 687 |
682 688 o changeset: 0:1f0dee641bb7
683 689 user: test
684 690 date: Thu Jan 01 00:00:00 1970 +0000
685 691 summary: add a
686 692
687 693 $ hg up -q 'desc(n3w_3_c)'
688 694 $ mkcommit obsolete_e
689 695 created new head
690 696 $ hg debugobsolete `getid 'original_e'` `getid 'obsolete_e'`
691 697 $ hg outgoing ../tmpf # parasite hg outgoing testin
692 698 comparing with ../tmpf
693 699 searching for changes
694 700 changeset: 6:3de5eca88c00
695 701 tag: tip
696 702 parent: 3:6f9641995072
697 703 user: test
698 704 date: Thu Jan 01 00:00:00 1970 +0000
699 705 summary: add obsolete_e
700 706
701 707 $ hg push ../tmpf
702 708 pushing to ../tmpf
703 709 searching for changes
704 710 adding changesets
705 711 adding manifests
706 712 adding file changes
707 713 added 1 changesets with 1 changes to 1 files (+1 heads)
708 714
709 715 #if serve
710 716
711 717 check hgweb does not explode
712 718 ====================================
713 719
714 720 $ hg unbundle $TESTDIR/bundles/hgweb+obs.hg
715 721 adding changesets
716 722 adding manifests
717 723 adding file changes
718 724 added 62 changesets with 63 changes to 9 files (+60 heads)
719 725 (run 'hg heads .' to see heads, 'hg merge' to merge)
720 726 $ for node in `hg log -r 'desc(babar_)' --template '{node}\n'`;
721 727 > do
722 728 > hg debugobsolete $node
723 729 > done
724 730 $ hg up tip
725 731 2 files updated, 0 files merged, 0 files removed, 0 files unresolved
726 732
727 733 $ hg serve -n test -p $HGPORT -d --pid-file=hg.pid -A access.log -E errors.log
728 734 $ cat hg.pid >> $DAEMON_PIDS
729 735
730 736 check changelog view
731 737
732 738 $ "$TESTDIR/get-with-headers.py" --headeronly localhost:$HGPORT 'shortlog/'
733 739 200 Script output follows
734 740
735 741 check graph view
736 742
737 743 $ "$TESTDIR/get-with-headers.py" --headeronly localhost:$HGPORT 'graph'
738 744 200 Script output follows
739 745
740 746 check filelog view
741 747
742 748 $ "$TESTDIR/get-with-headers.py" --headeronly localhost:$HGPORT 'log/'`hg id --debug --id`/'babar'
743 749 200 Script output follows
744 750
745 751 $ "$TESTDIR/get-with-headers.py" --headeronly localhost:$HGPORT 'rev/68'
746 752 200 Script output follows
747 753 $ "$TESTDIR/get-with-headers.py" --headeronly localhost:$HGPORT 'rev/67'
748 754 404 Not Found
749 755 [1]
750 756
751 757 check that web.view config option:
752 758
753 759 $ "$TESTDIR/killdaemons.py" hg.pid
754 760 $ cat >> .hg/hgrc << EOF
755 761 > [web]
756 762 > view=all
757 763 > EOF
758 764 $ wait
759 765 $ hg serve -n test -p $HGPORT -d --pid-file=hg.pid -A access.log -E errors.log
760 766 $ "$TESTDIR/get-with-headers.py" --headeronly localhost:$HGPORT 'rev/67'
761 767 200 Script output follows
762 768 $ "$TESTDIR/killdaemons.py" hg.pid
763 769
764 770 Checking _enable=False warning if obsolete marker exists
765 771
766 772 $ echo '[extensions]' >> $HGRCPATH
767 773 $ echo "obs=!" >> $HGRCPATH
768 774 $ hg log -r tip
769 775 obsolete feature not enabled but 68 markers found!
770 776 changeset: 68:c15e9edfca13
771 777 tag: tip
772 778 parent: 7:50c51b361e60
773 779 user: test
774 780 date: Thu Jan 01 00:00:00 1970 +0000
775 781 summary: add celestine
776 782
777 783
778 784 reenable for later test
779 785
780 786 $ echo '[extensions]' >> $HGRCPATH
781 787 $ echo "obs=${TESTTMP}/obs.py" >> $HGRCPATH
782 788
783 789 #endif
784 790
785 791 Test incoming/outcoming with changesets obsoleted remotely, known locally
786 792 ===============================================================================
787 793
788 794 This test issue 3805
789 795
790 796 $ hg init repo-issue3805
791 797 $ cd repo-issue3805
792 798 $ echo "foo" > foo
793 799 $ hg ci -Am "A"
794 800 adding foo
795 801 $ hg clone . ../other-issue3805
796 802 updating to branch default
797 803 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
798 804 $ echo "bar" >> foo
799 805 $ hg ci --amend
800 806 $ cd ../other-issue3805
801 807 $ hg log -G
802 808 @ changeset: 0:193e9254ce7e
803 809 tag: tip
804 810 user: test
805 811 date: Thu Jan 01 00:00:00 1970 +0000
806 812 summary: A
807 813
808 814 $ hg log -G -R ../repo-issue3805
809 815 @ changeset: 2:3816541e5485
810 816 tag: tip
811 817 parent: -1:000000000000
812 818 user: test
813 819 date: Thu Jan 01 00:00:00 1970 +0000
814 820 summary: A
815 821
816 822 $ hg incoming
817 823 comparing with $TESTTMP/tmpe/repo-issue3805 (glob)
818 824 searching for changes
819 825 changeset: 2:3816541e5485
820 826 tag: tip
821 827 parent: -1:000000000000
822 828 user: test
823 829 date: Thu Jan 01 00:00:00 1970 +0000
824 830 summary: A
825 831
826 832 $ hg incoming --bundle ../issue3805.hg
827 833 comparing with $TESTTMP/tmpe/repo-issue3805 (glob)
828 834 searching for changes
829 835 changeset: 2:3816541e5485
830 836 tag: tip
831 837 parent: -1:000000000000
832 838 user: test
833 839 date: Thu Jan 01 00:00:00 1970 +0000
834 840 summary: A
835 841
836 842 $ hg outgoing
837 843 comparing with $TESTTMP/tmpe/repo-issue3805 (glob)
838 844 searching for changes
839 845 no changes found
840 846 [1]
841 847
842 848 #if serve
843 849
844 850 $ hg serve -R ../repo-issue3805 -n test -p $HGPORT -d --pid-file=hg.pid -A access.log -E errors.log
845 851 $ cat hg.pid >> $DAEMON_PIDS
846 852
847 853 $ hg incoming http://localhost:$HGPORT
848 854 comparing with http://localhost:$HGPORT/
849 855 searching for changes
850 856 changeset: 1:3816541e5485
851 857 tag: tip
852 858 parent: -1:000000000000
853 859 user: test
854 860 date: Thu Jan 01 00:00:00 1970 +0000
855 861 summary: A
856 862
857 863 $ hg outgoing http://localhost:$HGPORT
858 864 comparing with http://localhost:$HGPORT/
859 865 searching for changes
860 866 no changes found
861 867 [1]
862 868
863 869 $ "$TESTDIR/killdaemons.py" $DAEMON_PIDS
864 870
865 871 #endif
866 872
867 873 This test issue 3814
868 874
869 875 (nothing to push but locally hidden changeset)
870 876
871 877 $ cd ..
872 878 $ hg init repo-issue3814
873 879 $ cd repo-issue3805
874 880 $ hg push -r 3816541e5485 ../repo-issue3814
875 881 pushing to ../repo-issue3814
876 882 searching for changes
877 883 adding changesets
878 884 adding manifests
879 885 adding file changes
880 886 added 1 changesets with 1 changes to 1 files
881 887 $ hg out ../repo-issue3814
882 888 comparing with ../repo-issue3814
883 889 searching for changes
884 890 no changes found
885 891 [1]
886 892
887 893 Test that a local tag blocks a changeset from being hidden
888 894
889 895 $ hg tag -l visible -r 0 --hidden
890 896 $ hg log -G
891 897 @ changeset: 2:3816541e5485
892 898 tag: tip
893 899 parent: -1:000000000000
894 900 user: test
895 901 date: Thu Jan 01 00:00:00 1970 +0000
896 902 summary: A
897 903
898 904 x changeset: 0:193e9254ce7e
899 905 tag: visible
900 906 user: test
901 907 date: Thu Jan 01 00:00:00 1970 +0000
902 908 summary: A
903 909
General Comments 0
You need to be logged in to leave comments. Login now