##// END OF EJS Templates
make ui flush output. this makes error happen if printing to /dev/full....
Vadim Gelfer -
r1837:6f67a4c9 default
parent child Browse files
Show More
@@ -1,2953 +1,2956 b''
1 1 # commands.py - command processing for mercurial
2 2 #
3 3 # Copyright 2005 Matt Mackall <mpm@selenic.com>
4 4 #
5 5 # This software may be used and distributed according to the terms
6 6 # of the GNU General Public License, incorporated herein by reference.
7 7
8 8 from demandload import demandload
9 9 from node import *
10 10 from i18n import gettext as _
11 11 demandload(globals(), "os re sys signal shutil imp urllib pdb")
12 12 demandload(globals(), "fancyopts ui hg util lock revlog")
13 13 demandload(globals(), "fnmatch hgweb mdiff random signal time traceback")
14 14 demandload(globals(), "errno socket version struct atexit sets bz2")
15 15
16 16 class UnknownCommand(Exception):
17 17 """Exception raised if command is not in the command table."""
18 18 class AmbiguousCommand(Exception):
19 19 """Exception raised if command shortcut matches more than one command."""
20 20
21 21 def filterfiles(filters, files):
22 22 l = [x for x in files if x in filters]
23 23
24 24 for t in filters:
25 25 if t and t[-1] != "/":
26 26 t += "/"
27 27 l += [x for x in files if x.startswith(t)]
28 28 return l
29 29
30 30 def relpath(repo, args):
31 31 cwd = repo.getcwd()
32 32 if cwd:
33 33 return [util.normpath(os.path.join(cwd, x)) for x in args]
34 34 return args
35 35
36 36 def matchpats(repo, pats=[], opts={}, head=''):
37 37 cwd = repo.getcwd()
38 38 if not pats and cwd:
39 39 opts['include'] = [os.path.join(cwd, i) for i in opts['include']]
40 40 opts['exclude'] = [os.path.join(cwd, x) for x in opts['exclude']]
41 41 cwd = ''
42 42 return util.cmdmatcher(repo.root, cwd, pats or ['.'], opts.get('include'),
43 43 opts.get('exclude'), head)
44 44
45 45 def makewalk(repo, pats, opts, node=None, head=''):
46 46 files, matchfn, anypats = matchpats(repo, pats, opts, head)
47 47 exact = dict(zip(files, files))
48 48 def walk():
49 49 for src, fn in repo.walk(node=node, files=files, match=matchfn):
50 50 yield src, fn, util.pathto(repo.getcwd(), fn), fn in exact
51 51 return files, matchfn, walk()
52 52
53 53 def walk(repo, pats, opts, node=None, head=''):
54 54 files, matchfn, results = makewalk(repo, pats, opts, node, head)
55 55 for r in results:
56 56 yield r
57 57
58 58 def walkchangerevs(ui, repo, pats, opts):
59 59 '''Iterate over files and the revs they changed in.
60 60
61 61 Callers most commonly need to iterate backwards over the history
62 62 it is interested in. Doing so has awful (quadratic-looking)
63 63 performance, so we use iterators in a "windowed" way.
64 64
65 65 We walk a window of revisions in the desired order. Within the
66 66 window, we first walk forwards to gather data, then in the desired
67 67 order (usually backwards) to display it.
68 68
69 69 This function returns an (iterator, getchange, matchfn) tuple. The
70 70 getchange function returns the changelog entry for a numeric
71 71 revision. The iterator yields 3-tuples. They will be of one of
72 72 the following forms:
73 73
74 74 "window", incrementing, lastrev: stepping through a window,
75 75 positive if walking forwards through revs, last rev in the
76 76 sequence iterated over - use to reset state for the current window
77 77
78 78 "add", rev, fns: out-of-order traversal of the given file names
79 79 fns, which changed during revision rev - use to gather data for
80 80 possible display
81 81
82 82 "iter", rev, None: in-order traversal of the revs earlier iterated
83 83 over with "add" - use to display data'''
84 84
85 85 def increasing_windows(start, end, windowsize=8, sizelimit=512):
86 86 if start < end:
87 87 while start < end:
88 88 yield start, min(windowsize, end-start)
89 89 start += windowsize
90 90 if windowsize < sizelimit:
91 91 windowsize *= 2
92 92 else:
93 93 while start > end:
94 94 yield start, min(windowsize, start-end-1)
95 95 start -= windowsize
96 96 if windowsize < sizelimit:
97 97 windowsize *= 2
98 98
99 99
100 100 files, matchfn, anypats = matchpats(repo, pats, opts)
101 101
102 102 if repo.changelog.count() == 0:
103 103 return [], False, matchfn
104 104
105 105 revs = map(int, revrange(ui, repo, opts['rev'] or ['tip:0']))
106 106 wanted = {}
107 107 slowpath = anypats
108 108 fncache = {}
109 109
110 110 chcache = {}
111 111 def getchange(rev):
112 112 ch = chcache.get(rev)
113 113 if ch is None:
114 114 chcache[rev] = ch = repo.changelog.read(repo.lookup(str(rev)))
115 115 return ch
116 116
117 117 if not slowpath and not files:
118 118 # No files, no patterns. Display all revs.
119 119 wanted = dict(zip(revs, revs))
120 120 if not slowpath:
121 121 # Only files, no patterns. Check the history of each file.
122 122 def filerevgen(filelog):
123 123 for i, window in increasing_windows(filelog.count()-1, -1):
124 124 revs = []
125 125 for j in xrange(i - window, i + 1):
126 126 revs.append(filelog.linkrev(filelog.node(j)))
127 127 revs.reverse()
128 128 for rev in revs:
129 129 yield rev
130 130
131 131 minrev, maxrev = min(revs), max(revs)
132 132 for file_ in files:
133 133 filelog = repo.file(file_)
134 134 # A zero count may be a directory or deleted file, so
135 135 # try to find matching entries on the slow path.
136 136 if filelog.count() == 0:
137 137 slowpath = True
138 138 break
139 139 for rev in filerevgen(filelog):
140 140 if rev <= maxrev:
141 141 if rev < minrev:
142 142 break
143 143 fncache.setdefault(rev, [])
144 144 fncache[rev].append(file_)
145 145 wanted[rev] = 1
146 146 if slowpath:
147 147 # The slow path checks files modified in every changeset.
148 148 def changerevgen():
149 149 for i, window in increasing_windows(repo.changelog.count()-1, -1):
150 150 for j in xrange(i - window, i + 1):
151 151 yield j, getchange(j)[3]
152 152
153 153 for rev, changefiles in changerevgen():
154 154 matches = filter(matchfn, changefiles)
155 155 if matches:
156 156 fncache[rev] = matches
157 157 wanted[rev] = 1
158 158
159 159 def iterate():
160 160 for i, window in increasing_windows(0, len(revs)):
161 161 yield 'window', revs[0] < revs[-1], revs[-1]
162 162 nrevs = [rev for rev in revs[i:i+window]
163 163 if rev in wanted]
164 164 srevs = list(nrevs)
165 165 srevs.sort()
166 166 for rev in srevs:
167 167 fns = fncache.get(rev) or filter(matchfn, getchange(rev)[3])
168 168 yield 'add', rev, fns
169 169 for rev in nrevs:
170 170 yield 'iter', rev, None
171 171 return iterate(), getchange, matchfn
172 172
173 173 revrangesep = ':'
174 174
175 175 def revrange(ui, repo, revs, revlog=None):
176 176 """Yield revision as strings from a list of revision specifications."""
177 177 if revlog is None:
178 178 revlog = repo.changelog
179 179 revcount = revlog.count()
180 180 def fix(val, defval):
181 181 if not val:
182 182 return defval
183 183 try:
184 184 num = int(val)
185 185 if str(num) != val:
186 186 raise ValueError
187 187 if num < 0:
188 188 num += revcount
189 189 if num < 0:
190 190 num = 0
191 191 elif num >= revcount:
192 192 raise ValueError
193 193 except ValueError:
194 194 try:
195 195 num = repo.changelog.rev(repo.lookup(val))
196 196 except KeyError:
197 197 try:
198 198 num = revlog.rev(revlog.lookup(val))
199 199 except KeyError:
200 200 raise util.Abort(_('invalid revision identifier %s'), val)
201 201 return num
202 202 seen = {}
203 203 for spec in revs:
204 204 if spec.find(revrangesep) >= 0:
205 205 start, end = spec.split(revrangesep, 1)
206 206 start = fix(start, 0)
207 207 end = fix(end, revcount - 1)
208 208 step = start > end and -1 or 1
209 209 for rev in xrange(start, end+step, step):
210 210 if rev in seen:
211 211 continue
212 212 seen[rev] = 1
213 213 yield str(rev)
214 214 else:
215 215 rev = fix(spec, None)
216 216 if rev in seen:
217 217 continue
218 218 seen[rev] = 1
219 219 yield str(rev)
220 220
221 221 def make_filename(repo, r, pat, node=None,
222 222 total=None, seqno=None, revwidth=None, pathname=None):
223 223 node_expander = {
224 224 'H': lambda: hex(node),
225 225 'R': lambda: str(r.rev(node)),
226 226 'h': lambda: short(node),
227 227 }
228 228 expander = {
229 229 '%': lambda: '%',
230 230 'b': lambda: os.path.basename(repo.root),
231 231 }
232 232
233 233 try:
234 234 if node:
235 235 expander.update(node_expander)
236 236 if node and revwidth is not None:
237 237 expander['r'] = lambda: str(r.rev(node)).zfill(revwidth)
238 238 if total is not None:
239 239 expander['N'] = lambda: str(total)
240 240 if seqno is not None:
241 241 expander['n'] = lambda: str(seqno)
242 242 if total is not None and seqno is not None:
243 243 expander['n'] = lambda:str(seqno).zfill(len(str(total)))
244 244 if pathname is not None:
245 245 expander['s'] = lambda: os.path.basename(pathname)
246 246 expander['d'] = lambda: os.path.dirname(pathname) or '.'
247 247 expander['p'] = lambda: pathname
248 248
249 249 newname = []
250 250 patlen = len(pat)
251 251 i = 0
252 252 while i < patlen:
253 253 c = pat[i]
254 254 if c == '%':
255 255 i += 1
256 256 c = pat[i]
257 257 c = expander[c]()
258 258 newname.append(c)
259 259 i += 1
260 260 return ''.join(newname)
261 261 except KeyError, inst:
262 262 raise util.Abort(_("invalid format spec '%%%s' in output file name"),
263 263 inst.args[0])
264 264
265 265 def make_file(repo, r, pat, node=None,
266 266 total=None, seqno=None, revwidth=None, mode='wb', pathname=None):
267 267 if not pat or pat == '-':
268 268 return 'w' in mode and sys.stdout or sys.stdin
269 269 if hasattr(pat, 'write') and 'w' in mode:
270 270 return pat
271 271 if hasattr(pat, 'read') and 'r' in mode:
272 272 return pat
273 273 return open(make_filename(repo, r, pat, node, total, seqno, revwidth,
274 274 pathname),
275 275 mode)
276 276
277 277 def dodiff(fp, ui, repo, node1, node2, files=None, match=util.always,
278 278 changes=None, text=False, opts={}):
279 279 if not node1:
280 280 node1 = repo.dirstate.parents()[0]
281 281 # reading the data for node1 early allows it to play nicely
282 282 # with repo.changes and the revlog cache.
283 283 change = repo.changelog.read(node1)
284 284 mmap = repo.manifest.read(change[0])
285 285 date1 = util.datestr(change[2])
286 286
287 287 if not changes:
288 288 changes = repo.changes(node1, node2, files, match=match)
289 289 modified, added, removed, deleted, unknown = changes
290 290 if files:
291 291 modified, added, removed = map(lambda x: filterfiles(files, x),
292 292 (modified, added, removed))
293 293
294 294 if not modified and not added and not removed:
295 295 return
296 296
297 297 if node2:
298 298 change = repo.changelog.read(node2)
299 299 mmap2 = repo.manifest.read(change[0])
300 300 date2 = util.datestr(change[2])
301 301 def read(f):
302 302 return repo.file(f).read(mmap2[f])
303 303 else:
304 304 date2 = util.datestr()
305 305 def read(f):
306 306 return repo.wread(f)
307 307
308 308 if ui.quiet:
309 309 r = None
310 310 else:
311 311 hexfunc = ui.verbose and hex or short
312 312 r = [hexfunc(node) for node in [node1, node2] if node]
313 313
314 314 diffopts = ui.diffopts()
315 315 showfunc = opts.get('show_function') or diffopts['showfunc']
316 316 ignorews = opts.get('ignore_all_space') or diffopts['ignorews']
317 317 for f in modified:
318 318 to = None
319 319 if f in mmap:
320 320 to = repo.file(f).read(mmap[f])
321 321 tn = read(f)
322 322 fp.write(mdiff.unidiff(to, date1, tn, date2, f, r, text=text,
323 323 showfunc=showfunc, ignorews=ignorews))
324 324 for f in added:
325 325 to = None
326 326 tn = read(f)
327 327 fp.write(mdiff.unidiff(to, date1, tn, date2, f, r, text=text,
328 328 showfunc=showfunc, ignorews=ignorews))
329 329 for f in removed:
330 330 to = repo.file(f).read(mmap[f])
331 331 tn = None
332 332 fp.write(mdiff.unidiff(to, date1, tn, date2, f, r, text=text,
333 333 showfunc=showfunc, ignorews=ignorews))
334 334
335 335 def trimuser(ui, name, rev, revcache):
336 336 """trim the name of the user who committed a change"""
337 337 user = revcache.get(rev)
338 338 if user is None:
339 339 user = revcache[rev] = ui.shortuser(name)
340 340 return user
341 341
342 342 def show_changeset(ui, repo, rev=0, changenode=None, brinfo=None):
343 343 """show a single changeset or file revision"""
344 344 log = repo.changelog
345 345 if changenode is None:
346 346 changenode = log.node(rev)
347 347 elif not rev:
348 348 rev = log.rev(changenode)
349 349
350 350 if ui.quiet:
351 351 ui.write("%d:%s\n" % (rev, short(changenode)))
352 352 return
353 353
354 354 changes = log.read(changenode)
355 355 date = util.datestr(changes[2])
356 356
357 357 parents = [(log.rev(p), ui.verbose and hex(p) or short(p))
358 358 for p in log.parents(changenode)
359 359 if ui.debugflag or p != nullid]
360 360 if not ui.debugflag and len(parents) == 1 and parents[0][0] == rev-1:
361 361 parents = []
362 362
363 363 if ui.verbose:
364 364 ui.write(_("changeset: %d:%s\n") % (rev, hex(changenode)))
365 365 else:
366 366 ui.write(_("changeset: %d:%s\n") % (rev, short(changenode)))
367 367
368 368 for tag in repo.nodetags(changenode):
369 369 ui.status(_("tag: %s\n") % tag)
370 370 for parent in parents:
371 371 ui.write(_("parent: %d:%s\n") % parent)
372 372
373 373 if brinfo and changenode in brinfo:
374 374 br = brinfo[changenode]
375 375 ui.write(_("branch: %s\n") % " ".join(br))
376 376
377 377 ui.debug(_("manifest: %d:%s\n") % (repo.manifest.rev(changes[0]),
378 378 hex(changes[0])))
379 379 ui.status(_("user: %s\n") % changes[1])
380 380 ui.status(_("date: %s\n") % date)
381 381
382 382 if ui.debugflag:
383 383 files = repo.changes(log.parents(changenode)[0], changenode)
384 384 for key, value in zip([_("files:"), _("files+:"), _("files-:")], files):
385 385 if value:
386 386 ui.note("%-12s %s\n" % (key, " ".join(value)))
387 387 else:
388 388 ui.note(_("files: %s\n") % " ".join(changes[3]))
389 389
390 390 description = changes[4].strip()
391 391 if description:
392 392 if ui.verbose:
393 393 ui.status(_("description:\n"))
394 394 ui.status(description)
395 395 ui.status("\n\n")
396 396 else:
397 397 ui.status(_("summary: %s\n") % description.splitlines()[0])
398 398 ui.status("\n")
399 399
400 400 def show_version(ui):
401 401 """output version and copyright information"""
402 402 ui.write(_("Mercurial Distributed SCM (version %s)\n")
403 403 % version.get_version())
404 404 ui.status(_(
405 405 "\nCopyright (C) 2005 Matt Mackall <mpm@selenic.com>\n"
406 406 "This is free software; see the source for copying conditions. "
407 407 "There is NO\nwarranty; "
408 408 "not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n"
409 409 ))
410 410
411 411 def help_(ui, cmd=None, with_version=False):
412 412 """show help for a given command or all commands"""
413 413 option_lists = []
414 414 if cmd and cmd != 'shortlist':
415 415 if with_version:
416 416 show_version(ui)
417 417 ui.write('\n')
418 418 aliases, i = find(cmd)
419 419 # synopsis
420 420 ui.write("%s\n\n" % i[2])
421 421
422 422 # description
423 423 doc = i[0].__doc__
424 424 if not doc:
425 425 doc = _("(No help text available)")
426 426 if ui.quiet:
427 427 doc = doc.splitlines(0)[0]
428 428 ui.write("%s\n" % doc.rstrip())
429 429
430 430 if not ui.quiet:
431 431 # aliases
432 432 if len(aliases) > 1:
433 433 ui.write(_("\naliases: %s\n") % ', '.join(aliases[1:]))
434 434
435 435 # options
436 436 if i[1]:
437 437 option_lists.append(("options", i[1]))
438 438
439 439 else:
440 440 # program name
441 441 if ui.verbose or with_version:
442 442 show_version(ui)
443 443 else:
444 444 ui.status(_("Mercurial Distributed SCM\n"))
445 445 ui.status('\n')
446 446
447 447 # list of commands
448 448 if cmd == "shortlist":
449 449 ui.status(_('basic commands (use "hg help" '
450 450 'for the full list or option "-v" for details):\n\n'))
451 451 elif ui.verbose:
452 452 ui.status(_('list of commands:\n\n'))
453 453 else:
454 454 ui.status(_('list of commands (use "hg help -v" '
455 455 'to show aliases and global options):\n\n'))
456 456
457 457 h = {}
458 458 cmds = {}
459 459 for c, e in table.items():
460 460 f = c.split("|")[0]
461 461 if cmd == "shortlist" and not f.startswith("^"):
462 462 continue
463 463 f = f.lstrip("^")
464 464 if not ui.debugflag and f.startswith("debug"):
465 465 continue
466 466 doc = e[0].__doc__
467 467 if not doc:
468 468 doc = _("(No help text available)")
469 469 h[f] = doc.splitlines(0)[0].rstrip()
470 470 cmds[f] = c.lstrip("^")
471 471
472 472 fns = h.keys()
473 473 fns.sort()
474 474 m = max(map(len, fns))
475 475 for f in fns:
476 476 if ui.verbose:
477 477 commands = cmds[f].replace("|",", ")
478 478 ui.write(" %s:\n %s\n"%(commands, h[f]))
479 479 else:
480 480 ui.write(' %-*s %s\n' % (m, f, h[f]))
481 481
482 482 # global options
483 483 if ui.verbose:
484 484 option_lists.append(("global options", globalopts))
485 485
486 486 # list all option lists
487 487 opt_output = []
488 488 for title, options in option_lists:
489 489 opt_output.append(("\n%s:\n" % title, None))
490 490 for shortopt, longopt, default, desc in options:
491 491 opt_output.append(("%2s%s" % (shortopt and "-%s" % shortopt,
492 492 longopt and " --%s" % longopt),
493 493 "%s%s" % (desc,
494 494 default
495 495 and _(" (default: %s)") % default
496 496 or "")))
497 497
498 498 if opt_output:
499 499 opts_len = max([len(line[0]) for line in opt_output if line[1]])
500 500 for first, second in opt_output:
501 501 if second:
502 502 ui.write(" %-*s %s\n" % (opts_len, first, second))
503 503 else:
504 504 ui.write("%s\n" % first)
505 505
506 506 # Commands start here, listed alphabetically
507 507
508 508 def add(ui, repo, *pats, **opts):
509 509 """add the specified files on the next commit
510 510
511 511 Schedule files to be version controlled and added to the repository.
512 512
513 513 The files will be added to the repository at the next commit.
514 514
515 515 If no names are given, add all files in the repository.
516 516 """
517 517
518 518 names = []
519 519 for src, abs, rel, exact in walk(repo, pats, opts):
520 520 if exact:
521 521 if ui.verbose:
522 522 ui.status(_('adding %s\n') % rel)
523 523 names.append(abs)
524 524 elif repo.dirstate.state(abs) == '?':
525 525 ui.status(_('adding %s\n') % rel)
526 526 names.append(abs)
527 527 repo.add(names)
528 528
529 529 def addremove(ui, repo, *pats, **opts):
530 530 """add all new files, delete all missing files
531 531
532 532 Add all new files and remove all missing files from the repository.
533 533
534 534 New files are ignored if they match any of the patterns in .hgignore. As
535 535 with add, these changes take effect at the next commit.
536 536 """
537 537 return addremove_lock(ui, repo, pats, opts)
538 538
539 539 def addremove_lock(ui, repo, pats, opts, wlock=None):
540 540 add, remove = [], []
541 541 for src, abs, rel, exact in walk(repo, pats, opts):
542 542 if src == 'f' and repo.dirstate.state(abs) == '?':
543 543 add.append(abs)
544 544 if ui.verbose or not exact:
545 545 ui.status(_('adding %s\n') % ((pats and rel) or abs))
546 546 if repo.dirstate.state(abs) != 'r' and not os.path.exists(rel):
547 547 remove.append(abs)
548 548 if ui.verbose or not exact:
549 549 ui.status(_('removing %s\n') % ((pats and rel) or abs))
550 550 repo.add(add, wlock=wlock)
551 551 repo.remove(remove, wlock=wlock)
552 552
553 553 def annotate(ui, repo, *pats, **opts):
554 554 """show changeset information per file line
555 555
556 556 List changes in files, showing the revision id responsible for each line
557 557
558 558 This command is useful to discover who did a change or when a change took
559 559 place.
560 560
561 561 Without the -a option, annotate will avoid processing files it
562 562 detects as binary. With -a, annotate will generate an annotation
563 563 anyway, probably with undesirable results.
564 564 """
565 565 def getnode(rev):
566 566 return short(repo.changelog.node(rev))
567 567
568 568 ucache = {}
569 569 def getname(rev):
570 570 cl = repo.changelog.read(repo.changelog.node(rev))
571 571 return trimuser(ui, cl[1], rev, ucache)
572 572
573 573 dcache = {}
574 574 def getdate(rev):
575 575 datestr = dcache.get(rev)
576 576 if datestr is None:
577 577 cl = repo.changelog.read(repo.changelog.node(rev))
578 578 datestr = dcache[rev] = util.datestr(cl[2])
579 579 return datestr
580 580
581 581 if not pats:
582 582 raise util.Abort(_('at least one file name or pattern required'))
583 583
584 584 opmap = [['user', getname], ['number', str], ['changeset', getnode],
585 585 ['date', getdate]]
586 586 if not opts['user'] and not opts['changeset'] and not opts['date']:
587 587 opts['number'] = 1
588 588
589 589 if opts['rev']:
590 590 node = repo.changelog.lookup(opts['rev'])
591 591 else:
592 592 node = repo.dirstate.parents()[0]
593 593 change = repo.changelog.read(node)
594 594 mmap = repo.manifest.read(change[0])
595 595
596 596 for src, abs, rel, exact in walk(repo, pats, opts):
597 597 if abs not in mmap:
598 598 ui.warn(_("warning: %s is not in the repository!\n") %
599 599 ((pats and rel) or abs))
600 600 continue
601 601
602 602 f = repo.file(abs)
603 603 if not opts['text'] and util.binary(f.read(mmap[abs])):
604 604 ui.write(_("%s: binary file\n") % ((pats and rel) or abs))
605 605 continue
606 606
607 607 lines = f.annotate(mmap[abs])
608 608 pieces = []
609 609
610 610 for o, f in opmap:
611 611 if opts[o]:
612 612 l = [f(n) for n, dummy in lines]
613 613 if l:
614 614 m = max(map(len, l))
615 615 pieces.append(["%*s" % (m, x) for x in l])
616 616
617 617 if pieces:
618 618 for p, l in zip(zip(*pieces), lines):
619 619 ui.write("%s: %s" % (" ".join(p), l[1]))
620 620
621 621 def bundle(ui, repo, fname, dest="default-push", **opts):
622 622 """create a changegroup file
623 623
624 624 Generate a compressed changegroup file collecting all changesets
625 625 not found in the other repository.
626 626
627 627 This file can then be transferred using conventional means and
628 628 applied to another repository with the unbundle command. This is
629 629 useful when native push and pull are not available or when
630 630 exporting an entire repository is undesirable. The standard file
631 631 extension is ".hg".
632 632
633 633 Unlike import/export, this exactly preserves all changeset
634 634 contents including permissions, rename data, and revision history.
635 635 """
636 636 f = open(fname, "wb")
637 637 dest = ui.expandpath(dest, repo.root)
638 638 other = hg.repository(ui, dest)
639 639 o = repo.findoutgoing(other)
640 640 cg = repo.changegroup(o, 'bundle')
641 641
642 642 try:
643 643 f.write("HG10")
644 644 z = bz2.BZ2Compressor(9)
645 645 while 1:
646 646 chunk = cg.read(4096)
647 647 if not chunk:
648 648 break
649 649 f.write(z.compress(chunk))
650 650 f.write(z.flush())
651 651 except:
652 652 os.unlink(fname)
653 653 raise
654 654
655 655 def cat(ui, repo, file1, *pats, **opts):
656 656 """output the latest or given revisions of files
657 657
658 658 Print the specified files as they were at the given revision.
659 659 If no revision is given then the tip is used.
660 660
661 661 Output may be to a file, in which case the name of the file is
662 662 given using a format string. The formatting rules are the same as
663 663 for the export command, with the following additions:
664 664
665 665 %s basename of file being printed
666 666 %d dirname of file being printed, or '.' if in repo root
667 667 %p root-relative path name of file being printed
668 668 """
669 669 mf = {}
670 670 rev = opts['rev']
671 671 if rev:
672 672 node = repo.lookup(rev)
673 673 else:
674 674 node = repo.changelog.tip()
675 675 change = repo.changelog.read(node)
676 676 mf = repo.manifest.read(change[0])
677 677 for src, abs, rel, exact in walk(repo, (file1,) + pats, opts, node):
678 678 r = repo.file(abs)
679 679 n = mf[abs]
680 680 fp = make_file(repo, r, opts['output'], node=n, pathname=abs)
681 681 fp.write(r.read(n))
682 682
683 683 def clone(ui, source, dest=None, **opts):
684 684 """make a copy of an existing repository
685 685
686 686 Create a copy of an existing repository in a new directory.
687 687
688 688 If no destination directory name is specified, it defaults to the
689 689 basename of the source.
690 690
691 691 The location of the source is added to the new repository's
692 692 .hg/hgrc file, as the default to be used for future pulls.
693 693
694 694 For efficiency, hardlinks are used for cloning whenever the source
695 695 and destination are on the same filesystem. Some filesystems,
696 696 such as AFS, implement hardlinking incorrectly, but do not report
697 697 errors. In these cases, use the --pull option to avoid
698 698 hardlinking.
699 699
700 700 See pull for valid source format details.
701 701 """
702 702 if dest is None:
703 703 dest = os.path.basename(os.path.normpath(source))
704 704
705 705 if os.path.exists(dest):
706 706 raise util.Abort(_("destination '%s' already exists"), dest)
707 707
708 708 dest = os.path.realpath(dest)
709 709
710 710 class Dircleanup(object):
711 711 def __init__(self, dir_):
712 712 self.rmtree = shutil.rmtree
713 713 self.dir_ = dir_
714 714 os.mkdir(dir_)
715 715 def close(self):
716 716 self.dir_ = None
717 717 def __del__(self):
718 718 if self.dir_:
719 719 self.rmtree(self.dir_, True)
720 720
721 721 if opts['ssh']:
722 722 ui.setconfig("ui", "ssh", opts['ssh'])
723 723 if opts['remotecmd']:
724 724 ui.setconfig("ui", "remotecmd", opts['remotecmd'])
725 725
726 726 if not os.path.exists(source):
727 727 source = ui.expandpath(source)
728 728
729 729 d = Dircleanup(dest)
730 730 abspath = source
731 731 other = hg.repository(ui, source)
732 732
733 733 copy = False
734 734 if other.dev() != -1:
735 735 abspath = os.path.abspath(source)
736 736 if not opts['pull'] and not opts['rev']:
737 737 copy = True
738 738
739 739 if copy:
740 740 try:
741 741 # we use a lock here because if we race with commit, we
742 742 # can end up with extra data in the cloned revlogs that's
743 743 # not pointed to by changesets, thus causing verify to
744 744 # fail
745 745 l1 = other.lock()
746 746 except lock.LockException:
747 747 copy = False
748 748
749 749 if copy:
750 750 # we lock here to avoid premature writing to the target
751 751 os.mkdir(os.path.join(dest, ".hg"))
752 752 l2 = lock.lock(os.path.join(dest, ".hg", "lock"))
753 753
754 754 files = "data 00manifest.d 00manifest.i 00changelog.d 00changelog.i"
755 755 for f in files.split():
756 756 src = os.path.join(source, ".hg", f)
757 757 dst = os.path.join(dest, ".hg", f)
758 758 try:
759 759 util.copyfiles(src, dst)
760 760 except OSError, inst:
761 761 if inst.errno != errno.ENOENT:
762 762 raise
763 763
764 764 repo = hg.repository(ui, dest)
765 765
766 766 else:
767 767 revs = None
768 768 if opts['rev']:
769 769 if not other.local():
770 770 error = _("clone -r not supported yet for remote repositories.")
771 771 raise util.Abort(error)
772 772 else:
773 773 revs = [other.lookup(rev) for rev in opts['rev']]
774 774 repo = hg.repository(ui, dest, create=1)
775 775 repo.pull(other, heads = revs)
776 776
777 777 f = repo.opener("hgrc", "w", text=True)
778 778 f.write("[paths]\n")
779 779 f.write("default = %s\n" % abspath)
780 780 f.close()
781 781
782 782 if not opts['noupdate']:
783 783 update(ui, repo)
784 784
785 785 d.close()
786 786
787 787 def commit(ui, repo, *pats, **opts):
788 788 """commit the specified files or all outstanding changes
789 789
790 790 Commit changes to the given files into the repository.
791 791
792 792 If a list of files is omitted, all changes reported by "hg status"
793 793 will be commited.
794 794
795 795 The HGEDITOR or EDITOR environment variables are used to start an
796 796 editor to add a commit comment.
797 797 """
798 798 message = opts['message']
799 799 logfile = opts['logfile']
800 800
801 801 if message and logfile:
802 802 raise util.Abort(_('options --message and --logfile are mutually '
803 803 'exclusive'))
804 804 if not message and logfile:
805 805 try:
806 806 if logfile == '-':
807 807 message = sys.stdin.read()
808 808 else:
809 809 message = open(logfile).read()
810 810 except IOError, inst:
811 811 raise util.Abort(_("can't read commit message '%s': %s") %
812 812 (logfile, inst.strerror))
813 813
814 814 if opts['addremove']:
815 815 addremove(ui, repo, *pats, **opts)
816 816 fns, match, anypats = matchpats(repo, pats, opts)
817 817 if pats:
818 818 modified, added, removed, deleted, unknown = (
819 819 repo.changes(files=fns, match=match))
820 820 files = modified + added + removed
821 821 else:
822 822 files = []
823 823 try:
824 824 repo.commit(files, message, opts['user'], opts['date'], match)
825 825 except ValueError, inst:
826 826 raise util.Abort(str(inst))
827 827
828 828 def docopy(ui, repo, pats, opts, wlock):
829 829 # called with the repo lock held
830 830 cwd = repo.getcwd()
831 831 errors = 0
832 832 copied = []
833 833 targets = {}
834 834
835 835 def okaytocopy(abs, rel, exact):
836 836 reasons = {'?': _('is not managed'),
837 837 'a': _('has been marked for add'),
838 838 'r': _('has been marked for remove')}
839 839 state = repo.dirstate.state(abs)
840 840 reason = reasons.get(state)
841 841 if reason:
842 842 if state == 'a':
843 843 origsrc = repo.dirstate.copied(abs)
844 844 if origsrc is not None:
845 845 return origsrc
846 846 if exact:
847 847 ui.warn(_('%s: not copying - file %s\n') % (rel, reason))
848 848 else:
849 849 return abs
850 850
851 851 def copy(origsrc, abssrc, relsrc, target, exact):
852 852 abstarget = util.canonpath(repo.root, cwd, target)
853 853 reltarget = util.pathto(cwd, abstarget)
854 854 prevsrc = targets.get(abstarget)
855 855 if prevsrc is not None:
856 856 ui.warn(_('%s: not overwriting - %s collides with %s\n') %
857 857 (reltarget, abssrc, prevsrc))
858 858 return
859 859 if (not opts['after'] and os.path.exists(reltarget) or
860 860 opts['after'] and repo.dirstate.state(abstarget) not in '?r'):
861 861 if not opts['force']:
862 862 ui.warn(_('%s: not overwriting - file exists\n') %
863 863 reltarget)
864 864 return
865 865 if not opts['after']:
866 866 os.unlink(reltarget)
867 867 if opts['after']:
868 868 if not os.path.exists(reltarget):
869 869 return
870 870 else:
871 871 targetdir = os.path.dirname(reltarget) or '.'
872 872 if not os.path.isdir(targetdir):
873 873 os.makedirs(targetdir)
874 874 try:
875 875 restore = repo.dirstate.state(abstarget) == 'r'
876 876 if restore:
877 877 repo.undelete([abstarget], wlock)
878 878 try:
879 879 shutil.copyfile(relsrc, reltarget)
880 880 shutil.copymode(relsrc, reltarget)
881 881 restore = False
882 882 finally:
883 883 if restore:
884 884 repo.remove([abstarget], wlock)
885 885 except shutil.Error, inst:
886 886 raise util.Abort(str(inst))
887 887 except IOError, inst:
888 888 if inst.errno == errno.ENOENT:
889 889 ui.warn(_('%s: deleted in working copy\n') % relsrc)
890 890 else:
891 891 ui.warn(_('%s: cannot copy - %s\n') %
892 892 (relsrc, inst.strerror))
893 893 errors += 1
894 894 return
895 895 if ui.verbose or not exact:
896 896 ui.status(_('copying %s to %s\n') % (relsrc, reltarget))
897 897 targets[abstarget] = abssrc
898 898 if abstarget != origsrc:
899 899 repo.copy(origsrc, abstarget, wlock)
900 900 copied.append((abssrc, relsrc, exact))
901 901
902 902 def targetpathfn(pat, dest, srcs):
903 903 if os.path.isdir(pat):
904 904 abspfx = util.canonpath(repo.root, cwd, pat)
905 905 if destdirexists:
906 906 striplen = len(os.path.split(abspfx)[0])
907 907 else:
908 908 striplen = len(abspfx)
909 909 if striplen:
910 910 striplen += len(os.sep)
911 911 res = lambda p: os.path.join(dest, p[striplen:])
912 912 elif destdirexists:
913 913 res = lambda p: os.path.join(dest, os.path.basename(p))
914 914 else:
915 915 res = lambda p: dest
916 916 return res
917 917
918 918 def targetpathafterfn(pat, dest, srcs):
919 919 if util.patkind(pat, None)[0]:
920 920 # a mercurial pattern
921 921 res = lambda p: os.path.join(dest, os.path.basename(p))
922 922 else:
923 923 abspfx = util.canonpath(repo.root, cwd, pat)
924 924 if len(abspfx) < len(srcs[0][0]):
925 925 # A directory. Either the target path contains the last
926 926 # component of the source path or it does not.
927 927 def evalpath(striplen):
928 928 score = 0
929 929 for s in srcs:
930 930 t = os.path.join(dest, s[0][striplen:])
931 931 if os.path.exists(t):
932 932 score += 1
933 933 return score
934 934
935 935 striplen = len(abspfx)
936 936 if striplen:
937 937 striplen += len(os.sep)
938 938 if os.path.isdir(os.path.join(dest, os.path.split(abspfx)[1])):
939 939 score = evalpath(striplen)
940 940 striplen1 = len(os.path.split(abspfx)[0])
941 941 if striplen1:
942 942 striplen1 += len(os.sep)
943 943 if evalpath(striplen1) > score:
944 944 striplen = striplen1
945 945 res = lambda p: os.path.join(dest, p[striplen:])
946 946 else:
947 947 # a file
948 948 if destdirexists:
949 949 res = lambda p: os.path.join(dest, os.path.basename(p))
950 950 else:
951 951 res = lambda p: dest
952 952 return res
953 953
954 954
955 955 pats = list(pats)
956 956 if not pats:
957 957 raise util.Abort(_('no source or destination specified'))
958 958 if len(pats) == 1:
959 959 raise util.Abort(_('no destination specified'))
960 960 dest = pats.pop()
961 961 destdirexists = os.path.isdir(dest)
962 962 if (len(pats) > 1 or util.patkind(pats[0], None)[0]) and not destdirexists:
963 963 raise util.Abort(_('with multiple sources, destination must be an '
964 964 'existing directory'))
965 965 if opts['after']:
966 966 tfn = targetpathafterfn
967 967 else:
968 968 tfn = targetpathfn
969 969 copylist = []
970 970 for pat in pats:
971 971 srcs = []
972 972 for tag, abssrc, relsrc, exact in walk(repo, [pat], opts):
973 973 origsrc = okaytocopy(abssrc, relsrc, exact)
974 974 if origsrc:
975 975 srcs.append((origsrc, abssrc, relsrc, exact))
976 976 if not srcs:
977 977 continue
978 978 copylist.append((tfn(pat, dest, srcs), srcs))
979 979 if not copylist:
980 980 raise util.Abort(_('no files to copy'))
981 981
982 982 for targetpath, srcs in copylist:
983 983 for origsrc, abssrc, relsrc, exact in srcs:
984 984 copy(origsrc, abssrc, relsrc, targetpath(abssrc), exact)
985 985
986 986 if errors:
987 987 ui.warn(_('(consider using --after)\n'))
988 988 return errors, copied
989 989
990 990 def copy(ui, repo, *pats, **opts):
991 991 """mark files as copied for the next commit
992 992
993 993 Mark dest as having copies of source files. If dest is a
994 994 directory, copies are put in that directory. If dest is a file,
995 995 there can only be one source.
996 996
997 997 By default, this command copies the contents of files as they
998 998 stand in the working directory. If invoked with --after, the
999 999 operation is recorded, but no copying is performed.
1000 1000
1001 1001 This command takes effect in the next commit.
1002 1002
1003 1003 NOTE: This command should be treated as experimental. While it
1004 1004 should properly record copied files, this information is not yet
1005 1005 fully used by merge, nor fully reported by log.
1006 1006 """
1007 1007 try:
1008 1008 wlock = repo.wlock(0)
1009 1009 errs, copied = docopy(ui, repo, pats, opts, wlock)
1010 1010 except lock.LockHeld, inst:
1011 1011 ui.warn(_("repository lock held by %s\n") % inst.args[0])
1012 1012 errs = 1
1013 1013 return errs
1014 1014
1015 1015 def debugancestor(ui, index, rev1, rev2):
1016 1016 """find the ancestor revision of two revisions in a given index"""
1017 1017 r = revlog.revlog(util.opener(os.getcwd(), audit=False), index, "")
1018 1018 a = r.ancestor(r.lookup(rev1), r.lookup(rev2))
1019 1019 ui.write("%d:%s\n" % (r.rev(a), hex(a)))
1020 1020
1021 1021 def debugrebuildstate(ui, repo, rev=None):
1022 1022 """rebuild the dirstate as it would look like for the given revision"""
1023 1023 if not rev:
1024 1024 rev = repo.changelog.tip()
1025 1025 else:
1026 1026 rev = repo.lookup(rev)
1027 1027 change = repo.changelog.read(rev)
1028 1028 n = change[0]
1029 1029 files = repo.manifest.readflags(n)
1030 1030 wlock = repo.wlock()
1031 1031 repo.dirstate.rebuild(rev, files.iteritems())
1032 1032
1033 1033 def debugcheckstate(ui, repo):
1034 1034 """validate the correctness of the current dirstate"""
1035 1035 parent1, parent2 = repo.dirstate.parents()
1036 1036 repo.dirstate.read()
1037 1037 dc = repo.dirstate.map
1038 1038 keys = dc.keys()
1039 1039 keys.sort()
1040 1040 m1n = repo.changelog.read(parent1)[0]
1041 1041 m2n = repo.changelog.read(parent2)[0]
1042 1042 m1 = repo.manifest.read(m1n)
1043 1043 m2 = repo.manifest.read(m2n)
1044 1044 errors = 0
1045 1045 for f in dc:
1046 1046 state = repo.dirstate.state(f)
1047 1047 if state in "nr" and f not in m1:
1048 1048 ui.warn(_("%s in state %s, but not in manifest1\n") % (f, state))
1049 1049 errors += 1
1050 1050 if state in "a" and f in m1:
1051 1051 ui.warn(_("%s in state %s, but also in manifest1\n") % (f, state))
1052 1052 errors += 1
1053 1053 if state in "m" and f not in m1 and f not in m2:
1054 1054 ui.warn(_("%s in state %s, but not in either manifest\n") %
1055 1055 (f, state))
1056 1056 errors += 1
1057 1057 for f in m1:
1058 1058 state = repo.dirstate.state(f)
1059 1059 if state not in "nrm":
1060 1060 ui.warn(_("%s in manifest1, but listed as state %s") % (f, state))
1061 1061 errors += 1
1062 1062 if errors:
1063 1063 error = _(".hg/dirstate inconsistent with current parent's manifest")
1064 1064 raise util.Abort(error)
1065 1065
1066 1066 def debugconfig(ui):
1067 1067 """show combined config settings from all hgrc files"""
1068 1068 try:
1069 1069 repo = hg.repository(ui)
1070 1070 except hg.RepoError:
1071 1071 pass
1072 1072 for section, name, value in ui.walkconfig():
1073 1073 ui.write('%s.%s=%s\n' % (section, name, value))
1074 1074
1075 1075 def debugsetparents(ui, repo, rev1, rev2=None):
1076 1076 """manually set the parents of the current working directory
1077 1077
1078 1078 This is useful for writing repository conversion tools, but should
1079 1079 be used with care.
1080 1080 """
1081 1081
1082 1082 if not rev2:
1083 1083 rev2 = hex(nullid)
1084 1084
1085 1085 repo.dirstate.setparents(repo.lookup(rev1), repo.lookup(rev2))
1086 1086
1087 1087 def debugstate(ui, repo):
1088 1088 """show the contents of the current dirstate"""
1089 1089 repo.dirstate.read()
1090 1090 dc = repo.dirstate.map
1091 1091 keys = dc.keys()
1092 1092 keys.sort()
1093 1093 for file_ in keys:
1094 1094 ui.write("%c %3o %10d %s %s\n"
1095 1095 % (dc[file_][0], dc[file_][1] & 0777, dc[file_][2],
1096 1096 time.strftime("%x %X",
1097 1097 time.localtime(dc[file_][3])), file_))
1098 1098 for f in repo.dirstate.copies:
1099 1099 ui.write(_("copy: %s -> %s\n") % (repo.dirstate.copies[f], f))
1100 1100
1101 1101 def debugdata(ui, file_, rev):
1102 1102 """dump the contents of an data file revision"""
1103 1103 r = revlog.revlog(util.opener(os.getcwd(), audit=False),
1104 1104 file_[:-2] + ".i", file_)
1105 1105 try:
1106 1106 ui.write(r.revision(r.lookup(rev)))
1107 1107 except KeyError:
1108 1108 raise util.Abort(_('invalid revision identifier %s'), rev)
1109 1109
1110 1110 def debugindex(ui, file_):
1111 1111 """dump the contents of an index file"""
1112 1112 r = revlog.revlog(util.opener(os.getcwd(), audit=False), file_, "")
1113 1113 ui.write(" rev offset length base linkrev" +
1114 1114 " nodeid p1 p2\n")
1115 1115 for i in range(r.count()):
1116 1116 e = r.index[i]
1117 1117 ui.write("% 6d % 9d % 7d % 6d % 7d %s %s %s\n" % (
1118 1118 i, e[0], e[1], e[2], e[3],
1119 1119 short(e[6]), short(e[4]), short(e[5])))
1120 1120
1121 1121 def debugindexdot(ui, file_):
1122 1122 """dump an index DAG as a .dot file"""
1123 1123 r = revlog.revlog(util.opener(os.getcwd(), audit=False), file_, "")
1124 1124 ui.write("digraph G {\n")
1125 1125 for i in range(r.count()):
1126 1126 e = r.index[i]
1127 1127 ui.write("\t%d -> %d\n" % (r.rev(e[4]), i))
1128 1128 if e[5] != nullid:
1129 1129 ui.write("\t%d -> %d\n" % (r.rev(e[5]), i))
1130 1130 ui.write("}\n")
1131 1131
1132 1132 def debugrename(ui, repo, file, rev=None):
1133 1133 """dump rename information"""
1134 1134 r = repo.file(relpath(repo, [file])[0])
1135 1135 if rev:
1136 1136 try:
1137 1137 # assume all revision numbers are for changesets
1138 1138 n = repo.lookup(rev)
1139 1139 change = repo.changelog.read(n)
1140 1140 m = repo.manifest.read(change[0])
1141 1141 n = m[relpath(repo, [file])[0]]
1142 1142 except (hg.RepoError, KeyError):
1143 1143 n = r.lookup(rev)
1144 1144 else:
1145 1145 n = r.tip()
1146 1146 m = r.renamed(n)
1147 1147 if m:
1148 1148 ui.write(_("renamed from %s:%s\n") % (m[0], hex(m[1])))
1149 1149 else:
1150 1150 ui.write(_("not renamed\n"))
1151 1151
1152 1152 def debugwalk(ui, repo, *pats, **opts):
1153 1153 """show how files match on given patterns"""
1154 1154 items = list(walk(repo, pats, opts))
1155 1155 if not items:
1156 1156 return
1157 1157 fmt = '%%s %%-%ds %%-%ds %%s' % (
1158 1158 max([len(abs) for (src, abs, rel, exact) in items]),
1159 1159 max([len(rel) for (src, abs, rel, exact) in items]))
1160 1160 for src, abs, rel, exact in items:
1161 1161 line = fmt % (src, abs, rel, exact and 'exact' or '')
1162 1162 ui.write("%s\n" % line.rstrip())
1163 1163
1164 1164 def diff(ui, repo, *pats, **opts):
1165 1165 """diff repository (or selected files)
1166 1166
1167 1167 Show differences between revisions for the specified files.
1168 1168
1169 1169 Differences between files are shown using the unified diff format.
1170 1170
1171 1171 When two revision arguments are given, then changes are shown
1172 1172 between those revisions. If only one revision is specified then
1173 1173 that revision is compared to the working directory, and, when no
1174 1174 revisions are specified, the working directory files are compared
1175 1175 to its parent.
1176 1176
1177 1177 Without the -a option, diff will avoid generating diffs of files
1178 1178 it detects as binary. With -a, diff will generate a diff anyway,
1179 1179 probably with undesirable results.
1180 1180 """
1181 1181 node1, node2 = None, None
1182 1182 revs = [repo.lookup(x) for x in opts['rev']]
1183 1183
1184 1184 if len(revs) > 0:
1185 1185 node1 = revs[0]
1186 1186 if len(revs) > 1:
1187 1187 node2 = revs[1]
1188 1188 if len(revs) > 2:
1189 1189 raise util.Abort(_("too many revisions to diff"))
1190 1190
1191 1191 fns, matchfn, anypats = matchpats(repo, pats, opts)
1192 1192
1193 1193 dodiff(sys.stdout, ui, repo, node1, node2, fns, match=matchfn,
1194 1194 text=opts['text'], opts=opts)
1195 1195
1196 1196 def doexport(ui, repo, changeset, seqno, total, revwidth, opts):
1197 1197 node = repo.lookup(changeset)
1198 1198 parents = [p for p in repo.changelog.parents(node) if p != nullid]
1199 1199 if opts['switch_parent']:
1200 1200 parents.reverse()
1201 1201 prev = (parents and parents[0]) or nullid
1202 1202 change = repo.changelog.read(node)
1203 1203
1204 1204 fp = make_file(repo, repo.changelog, opts['output'],
1205 1205 node=node, total=total, seqno=seqno,
1206 1206 revwidth=revwidth)
1207 1207 if fp != sys.stdout:
1208 1208 ui.note("%s\n" % fp.name)
1209 1209
1210 1210 fp.write("# HG changeset patch\n")
1211 1211 fp.write("# User %s\n" % change[1])
1212 1212 fp.write("# Node ID %s\n" % hex(node))
1213 1213 fp.write("# Parent %s\n" % hex(prev))
1214 1214 if len(parents) > 1:
1215 1215 fp.write("# Parent %s\n" % hex(parents[1]))
1216 1216 fp.write(change[4].rstrip())
1217 1217 fp.write("\n\n")
1218 1218
1219 1219 dodiff(fp, ui, repo, prev, node, text=opts['text'])
1220 1220 if fp != sys.stdout:
1221 1221 fp.close()
1222 1222
1223 1223 def export(ui, repo, *changesets, **opts):
1224 1224 """dump the header and diffs for one or more changesets
1225 1225
1226 1226 Print the changeset header and diffs for one or more revisions.
1227 1227
1228 1228 The information shown in the changeset header is: author,
1229 1229 changeset hash, parent and commit comment.
1230 1230
1231 1231 Output may be to a file, in which case the name of the file is
1232 1232 given using a format string. The formatting rules are as follows:
1233 1233
1234 1234 %% literal "%" character
1235 1235 %H changeset hash (40 bytes of hexadecimal)
1236 1236 %N number of patches being generated
1237 1237 %R changeset revision number
1238 1238 %b basename of the exporting repository
1239 1239 %h short-form changeset hash (12 bytes of hexadecimal)
1240 1240 %n zero-padded sequence number, starting at 1
1241 1241 %r zero-padded changeset revision number
1242 1242
1243 1243 Without the -a option, export will avoid generating diffs of files
1244 1244 it detects as binary. With -a, export will generate a diff anyway,
1245 1245 probably with undesirable results.
1246 1246
1247 1247 With the --switch-parent option, the diff will be against the second
1248 1248 parent. It can be useful to review a merge.
1249 1249 """
1250 1250 if not changesets:
1251 1251 raise util.Abort(_("export requires at least one changeset"))
1252 1252 seqno = 0
1253 1253 revs = list(revrange(ui, repo, changesets))
1254 1254 total = len(revs)
1255 1255 revwidth = max(map(len, revs))
1256 1256 msg = len(revs) > 1 and _("Exporting patches:\n") or _("Exporting patch:\n")
1257 1257 ui.note(msg)
1258 1258 for cset in revs:
1259 1259 seqno += 1
1260 1260 doexport(ui, repo, cset, seqno, total, revwidth, opts)
1261 1261
1262 1262 def forget(ui, repo, *pats, **opts):
1263 1263 """don't add the specified files on the next commit
1264 1264
1265 1265 Undo an 'hg add' scheduled for the next commit.
1266 1266 """
1267 1267 forget = []
1268 1268 for src, abs, rel, exact in walk(repo, pats, opts):
1269 1269 if repo.dirstate.state(abs) == 'a':
1270 1270 forget.append(abs)
1271 1271 if ui.verbose or not exact:
1272 1272 ui.status(_('forgetting %s\n') % ((pats and rel) or abs))
1273 1273 repo.forget(forget)
1274 1274
1275 1275 def grep(ui, repo, pattern, *pats, **opts):
1276 1276 """search for a pattern in specified files and revisions
1277 1277
1278 1278 Search revisions of files for a regular expression.
1279 1279
1280 1280 This command behaves differently than Unix grep. It only accepts
1281 1281 Python/Perl regexps. It searches repository history, not the
1282 1282 working directory. It always prints the revision number in which
1283 1283 a match appears.
1284 1284
1285 1285 By default, grep only prints output for the first revision of a
1286 1286 file in which it finds a match. To get it to print every revision
1287 1287 that contains a change in match status ("-" for a match that
1288 1288 becomes a non-match, or "+" for a non-match that becomes a match),
1289 1289 use the --all flag.
1290 1290 """
1291 1291 reflags = 0
1292 1292 if opts['ignore_case']:
1293 1293 reflags |= re.I
1294 1294 regexp = re.compile(pattern, reflags)
1295 1295 sep, eol = ':', '\n'
1296 1296 if opts['print0']:
1297 1297 sep = eol = '\0'
1298 1298
1299 1299 fcache = {}
1300 1300 def getfile(fn):
1301 1301 if fn not in fcache:
1302 1302 fcache[fn] = repo.file(fn)
1303 1303 return fcache[fn]
1304 1304
1305 1305 def matchlines(body):
1306 1306 begin = 0
1307 1307 linenum = 0
1308 1308 while True:
1309 1309 match = regexp.search(body, begin)
1310 1310 if not match:
1311 1311 break
1312 1312 mstart, mend = match.span()
1313 1313 linenum += body.count('\n', begin, mstart) + 1
1314 1314 lstart = body.rfind('\n', begin, mstart) + 1 or begin
1315 1315 lend = body.find('\n', mend)
1316 1316 yield linenum, mstart - lstart, mend - lstart, body[lstart:lend]
1317 1317 begin = lend + 1
1318 1318
1319 1319 class linestate(object):
1320 1320 def __init__(self, line, linenum, colstart, colend):
1321 1321 self.line = line
1322 1322 self.linenum = linenum
1323 1323 self.colstart = colstart
1324 1324 self.colend = colend
1325 1325 def __eq__(self, other):
1326 1326 return self.line == other.line
1327 1327 def __hash__(self):
1328 1328 return hash(self.line)
1329 1329
1330 1330 matches = {}
1331 1331 def grepbody(fn, rev, body):
1332 1332 matches[rev].setdefault(fn, {})
1333 1333 m = matches[rev][fn]
1334 1334 for lnum, cstart, cend, line in matchlines(body):
1335 1335 s = linestate(line, lnum, cstart, cend)
1336 1336 m[s] = s
1337 1337
1338 1338 # FIXME: prev isn't used, why ?
1339 1339 prev = {}
1340 1340 ucache = {}
1341 1341 def display(fn, rev, states, prevstates):
1342 1342 diff = list(sets.Set(states).symmetric_difference(sets.Set(prevstates)))
1343 1343 diff.sort(lambda x, y: cmp(x.linenum, y.linenum))
1344 1344 counts = {'-': 0, '+': 0}
1345 1345 filerevmatches = {}
1346 1346 for l in diff:
1347 1347 if incrementing or not opts['all']:
1348 1348 change = ((l in prevstates) and '-') or '+'
1349 1349 r = rev
1350 1350 else:
1351 1351 change = ((l in states) and '-') or '+'
1352 1352 r = prev[fn]
1353 1353 cols = [fn, str(rev)]
1354 1354 if opts['line_number']:
1355 1355 cols.append(str(l.linenum))
1356 1356 if opts['all']:
1357 1357 cols.append(change)
1358 1358 if opts['user']:
1359 1359 cols.append(trimuser(ui, getchange(rev)[1], rev,
1360 1360 ucache))
1361 1361 if opts['files_with_matches']:
1362 1362 c = (fn, rev)
1363 1363 if c in filerevmatches:
1364 1364 continue
1365 1365 filerevmatches[c] = 1
1366 1366 else:
1367 1367 cols.append(l.line)
1368 1368 ui.write(sep.join(cols), eol)
1369 1369 counts[change] += 1
1370 1370 return counts['+'], counts['-']
1371 1371
1372 1372 fstate = {}
1373 1373 skip = {}
1374 1374 changeiter, getchange, matchfn = walkchangerevs(ui, repo, pats, opts)
1375 1375 count = 0
1376 1376 incrementing = False
1377 1377 for st, rev, fns in changeiter:
1378 1378 if st == 'window':
1379 1379 incrementing = rev
1380 1380 matches.clear()
1381 1381 elif st == 'add':
1382 1382 change = repo.changelog.read(repo.lookup(str(rev)))
1383 1383 mf = repo.manifest.read(change[0])
1384 1384 matches[rev] = {}
1385 1385 for fn in fns:
1386 1386 if fn in skip:
1387 1387 continue
1388 1388 fstate.setdefault(fn, {})
1389 1389 try:
1390 1390 grepbody(fn, rev, getfile(fn).read(mf[fn]))
1391 1391 except KeyError:
1392 1392 pass
1393 1393 elif st == 'iter':
1394 1394 states = matches[rev].items()
1395 1395 states.sort()
1396 1396 for fn, m in states:
1397 1397 if fn in skip:
1398 1398 continue
1399 1399 if incrementing or not opts['all'] or fstate[fn]:
1400 1400 pos, neg = display(fn, rev, m, fstate[fn])
1401 1401 count += pos + neg
1402 1402 if pos and not opts['all']:
1403 1403 skip[fn] = True
1404 1404 fstate[fn] = m
1405 1405 prev[fn] = rev
1406 1406
1407 1407 if not incrementing:
1408 1408 fstate = fstate.items()
1409 1409 fstate.sort()
1410 1410 for fn, state in fstate:
1411 1411 if fn in skip:
1412 1412 continue
1413 1413 display(fn, rev, {}, state)
1414 1414 return (count == 0 and 1) or 0
1415 1415
1416 1416 def heads(ui, repo, **opts):
1417 1417 """show current repository heads
1418 1418
1419 1419 Show all repository head changesets.
1420 1420
1421 1421 Repository "heads" are changesets that don't have children
1422 1422 changesets. They are where development generally takes place and
1423 1423 are the usual targets for update and merge operations.
1424 1424 """
1425 1425 if opts['rev']:
1426 1426 heads = repo.heads(repo.lookup(opts['rev']))
1427 1427 else:
1428 1428 heads = repo.heads()
1429 1429 br = None
1430 1430 if opts['branches']:
1431 1431 br = repo.branchlookup(heads)
1432 1432 for n in heads:
1433 1433 show_changeset(ui, repo, changenode=n, brinfo=br)
1434 1434
1435 1435 def identify(ui, repo):
1436 1436 """print information about the working copy
1437 1437
1438 1438 Print a short summary of the current state of the repo.
1439 1439
1440 1440 This summary identifies the repository state using one or two parent
1441 1441 hash identifiers, followed by a "+" if there are uncommitted changes
1442 1442 in the working directory, followed by a list of tags for this revision.
1443 1443 """
1444 1444 parents = [p for p in repo.dirstate.parents() if p != nullid]
1445 1445 if not parents:
1446 1446 ui.write(_("unknown\n"))
1447 1447 return
1448 1448
1449 1449 hexfunc = ui.verbose and hex or short
1450 1450 modified, added, removed, deleted, unknown = repo.changes()
1451 1451 output = ["%s%s" %
1452 1452 ('+'.join([hexfunc(parent) for parent in parents]),
1453 1453 (modified or added or removed or deleted) and "+" or "")]
1454 1454
1455 1455 if not ui.quiet:
1456 1456 # multiple tags for a single parent separated by '/'
1457 1457 parenttags = ['/'.join(tags)
1458 1458 for tags in map(repo.nodetags, parents) if tags]
1459 1459 # tags for multiple parents separated by ' + '
1460 1460 if parenttags:
1461 1461 output.append(' + '.join(parenttags))
1462 1462
1463 1463 ui.write("%s\n" % ' '.join(output))
1464 1464
1465 1465 def import_(ui, repo, patch1, *patches, **opts):
1466 1466 """import an ordered set of patches
1467 1467
1468 1468 Import a list of patches and commit them individually.
1469 1469
1470 1470 If there are outstanding changes in the working directory, import
1471 1471 will abort unless given the -f flag.
1472 1472
1473 1473 If a patch looks like a mail message (its first line starts with
1474 1474 "From " or looks like an RFC822 header), it will not be applied
1475 1475 unless the -f option is used. The importer neither parses nor
1476 1476 discards mail headers, so use -f only to override the "mailness"
1477 1477 safety check, not to import a real mail message.
1478 1478 """
1479 1479 patches = (patch1,) + patches
1480 1480
1481 1481 if not opts['force']:
1482 1482 modified, added, removed, deleted, unknown = repo.changes()
1483 1483 if modified or added or removed or deleted:
1484 1484 raise util.Abort(_("outstanding uncommitted changes"))
1485 1485
1486 1486 d = opts["base"]
1487 1487 strip = opts["strip"]
1488 1488
1489 1489 mailre = re.compile(r'(?:From |[\w-]+:)')
1490 1490
1491 1491 # attempt to detect the start of a patch
1492 1492 # (this heuristic is borrowed from quilt)
1493 1493 diffre = re.compile(r'(?:Index:[ \t]|diff[ \t]|RCS file: |' +
1494 1494 'retrieving revision [0-9]+(\.[0-9]+)*$|' +
1495 1495 '(---|\*\*\*)[ \t])')
1496 1496
1497 1497 for patch in patches:
1498 1498 ui.status(_("applying %s\n") % patch)
1499 1499 pf = os.path.join(d, patch)
1500 1500
1501 1501 message = []
1502 1502 user = None
1503 1503 hgpatch = False
1504 1504 for line in file(pf):
1505 1505 line = line.rstrip()
1506 1506 if (not message and not hgpatch and
1507 1507 mailre.match(line) and not opts['force']):
1508 1508 if len(line) > 35:
1509 1509 line = line[:32] + '...'
1510 1510 raise util.Abort(_('first line looks like a '
1511 1511 'mail header: ') + line)
1512 1512 if diffre.match(line):
1513 1513 break
1514 1514 elif hgpatch:
1515 1515 # parse values when importing the result of an hg export
1516 1516 if line.startswith("# User "):
1517 1517 user = line[7:]
1518 1518 ui.debug(_('User: %s\n') % user)
1519 1519 elif not line.startswith("# ") and line:
1520 1520 message.append(line)
1521 1521 hgpatch = False
1522 1522 elif line == '# HG changeset patch':
1523 1523 hgpatch = True
1524 1524 message = [] # We may have collected garbage
1525 1525 else:
1526 1526 message.append(line)
1527 1527
1528 1528 # make sure message isn't empty
1529 1529 if not message:
1530 1530 message = _("imported patch %s\n") % patch
1531 1531 else:
1532 1532 message = "%s\n" % '\n'.join(message)
1533 1533 ui.debug(_('message:\n%s\n') % message)
1534 1534
1535 1535 files = util.patch(strip, pf, ui)
1536 1536
1537 1537 if len(files) > 0:
1538 1538 addremove(ui, repo, *files)
1539 1539 repo.commit(files, message, user)
1540 1540
1541 1541 def incoming(ui, repo, source="default", **opts):
1542 1542 """show new changesets found in source
1543 1543
1544 1544 Show new changesets found in the specified repo or the default
1545 1545 pull repo. These are the changesets that would be pulled if a pull
1546 1546 was requested.
1547 1547
1548 1548 Currently only local repositories are supported.
1549 1549 """
1550 1550 source = ui.expandpath(source, repo.root)
1551 1551 other = hg.repository(ui, source)
1552 1552 if not other.local():
1553 1553 raise util.Abort(_("incoming doesn't work for remote repositories yet"))
1554 1554 o = repo.findincoming(other)
1555 1555 if not o:
1556 1556 return
1557 1557 o = other.changelog.nodesbetween(o)[0]
1558 1558 if opts['newest_first']:
1559 1559 o.reverse()
1560 1560 for n in o:
1561 1561 parents = [p for p in other.changelog.parents(n) if p != nullid]
1562 1562 if opts['no_merges'] and len(parents) == 2:
1563 1563 continue
1564 1564 show_changeset(ui, other, changenode=n)
1565 1565 if opts['patch']:
1566 1566 prev = (parents and parents[0]) or nullid
1567 1567 dodiff(ui, ui, other, prev, n)
1568 1568 ui.write("\n")
1569 1569
1570 1570 def init(ui, dest="."):
1571 1571 """create a new repository in the given directory
1572 1572
1573 1573 Initialize a new repository in the given directory. If the given
1574 1574 directory does not exist, it is created.
1575 1575
1576 1576 If no directory is given, the current directory is used.
1577 1577 """
1578 1578 if not os.path.exists(dest):
1579 1579 os.mkdir(dest)
1580 1580 hg.repository(ui, dest, create=1)
1581 1581
1582 1582 def locate(ui, repo, *pats, **opts):
1583 1583 """locate files matching specific patterns
1584 1584
1585 1585 Print all files under Mercurial control whose names match the
1586 1586 given patterns.
1587 1587
1588 1588 This command searches the current directory and its
1589 1589 subdirectories. To search an entire repository, move to the root
1590 1590 of the repository.
1591 1591
1592 1592 If no patterns are given to match, this command prints all file
1593 1593 names.
1594 1594
1595 1595 If you want to feed the output of this command into the "xargs"
1596 1596 command, use the "-0" option to both this command and "xargs".
1597 1597 This will avoid the problem of "xargs" treating single filenames
1598 1598 that contain white space as multiple filenames.
1599 1599 """
1600 1600 end = opts['print0'] and '\0' or '\n'
1601 1601 rev = opts['rev']
1602 1602 if rev:
1603 1603 node = repo.lookup(rev)
1604 1604 else:
1605 1605 node = None
1606 1606
1607 1607 for src, abs, rel, exact in walk(repo, pats, opts, node=node,
1608 1608 head='(?:.*/|)'):
1609 1609 if not node and repo.dirstate.state(abs) == '?':
1610 1610 continue
1611 1611 if opts['fullpath']:
1612 1612 ui.write(os.path.join(repo.root, abs), end)
1613 1613 else:
1614 1614 ui.write(((pats and rel) or abs), end)
1615 1615
1616 1616 def log(ui, repo, *pats, **opts):
1617 1617 """show revision history of entire repository or files
1618 1618
1619 1619 Print the revision history of the specified files or the entire project.
1620 1620
1621 1621 By default this command outputs: changeset id and hash, tags,
1622 1622 non-trivial parents, user, date and time, and a summary for each
1623 1623 commit. When the -v/--verbose switch is used, the list of changed
1624 1624 files and full commit message is shown.
1625 1625 """
1626 1626 class dui(object):
1627 1627 # Implement and delegate some ui protocol. Save hunks of
1628 1628 # output for later display in the desired order.
1629 1629 def __init__(self, ui):
1630 1630 self.ui = ui
1631 1631 self.hunk = {}
1632 1632 def bump(self, rev):
1633 1633 self.rev = rev
1634 1634 self.hunk[rev] = []
1635 1635 def note(self, *args):
1636 1636 if self.verbose:
1637 1637 self.write(*args)
1638 1638 def status(self, *args):
1639 1639 if not self.quiet:
1640 1640 self.write(*args)
1641 1641 def write(self, *args):
1642 1642 self.hunk[self.rev].append(args)
1643 1643 def debug(self, *args):
1644 1644 if self.debugflag:
1645 1645 self.write(*args)
1646 1646 def __getattr__(self, key):
1647 1647 return getattr(self.ui, key)
1648 1648
1649 1649 changeiter, getchange, matchfn = walkchangerevs(ui, repo, pats, opts)
1650 1650
1651 1651 if opts['limit']:
1652 1652 try:
1653 1653 limit = int(opts['limit'])
1654 1654 except ValueError:
1655 1655 raise util.Abort(_('limit must be a positive integer'))
1656 1656 if limit <= 0: raise util.Abort(_('limit must be positive'))
1657 1657 else:
1658 1658 limit = sys.maxint
1659 1659 count = 0
1660 1660
1661 1661 for st, rev, fns in changeiter:
1662 1662 if st == 'window':
1663 1663 du = dui(ui)
1664 1664 elif st == 'add':
1665 1665 du.bump(rev)
1666 1666 changenode = repo.changelog.node(rev)
1667 1667 parents = [p for p in repo.changelog.parents(changenode)
1668 1668 if p != nullid]
1669 1669 if opts['no_merges'] and len(parents) == 2:
1670 1670 continue
1671 1671 if opts['only_merges'] and len(parents) != 2:
1672 1672 continue
1673 1673
1674 1674 if opts['keyword']:
1675 1675 changes = getchange(rev)
1676 1676 miss = 0
1677 1677 for k in [kw.lower() for kw in opts['keyword']]:
1678 1678 if not (k in changes[1].lower() or
1679 1679 k in changes[4].lower() or
1680 1680 k in " ".join(changes[3][:20]).lower()):
1681 1681 miss = 1
1682 1682 break
1683 1683 if miss:
1684 1684 continue
1685 1685
1686 1686 br = None
1687 1687 if opts['branches']:
1688 1688 br = repo.branchlookup([repo.changelog.node(rev)])
1689 1689
1690 1690 show_changeset(du, repo, rev, brinfo=br)
1691 1691 if opts['patch']:
1692 1692 prev = (parents and parents[0]) or nullid
1693 1693 dodiff(du, du, repo, prev, changenode, match=matchfn)
1694 1694 du.write("\n\n")
1695 1695 elif st == 'iter':
1696 1696 if count == limit: break
1697 1697 if du.hunk[rev]:
1698 1698 count += 1
1699 1699 for args in du.hunk[rev]:
1700 1700 ui.write(*args)
1701 1701
1702 1702 def manifest(ui, repo, rev=None):
1703 1703 """output the latest or given revision of the project manifest
1704 1704
1705 1705 Print a list of version controlled files for the given revision.
1706 1706
1707 1707 The manifest is the list of files being version controlled. If no revision
1708 1708 is given then the tip is used.
1709 1709 """
1710 1710 if rev:
1711 1711 try:
1712 1712 # assume all revision numbers are for changesets
1713 1713 n = repo.lookup(rev)
1714 1714 change = repo.changelog.read(n)
1715 1715 n = change[0]
1716 1716 except hg.RepoError:
1717 1717 n = repo.manifest.lookup(rev)
1718 1718 else:
1719 1719 n = repo.manifest.tip()
1720 1720 m = repo.manifest.read(n)
1721 1721 mf = repo.manifest.readflags(n)
1722 1722 files = m.keys()
1723 1723 files.sort()
1724 1724
1725 1725 for f in files:
1726 1726 ui.write("%40s %3s %s\n" % (hex(m[f]), mf[f] and "755" or "644", f))
1727 1727
1728 1728 def outgoing(ui, repo, dest="default-push", **opts):
1729 1729 """show changesets not found in destination
1730 1730
1731 1731 Show changesets not found in the specified destination repo or the
1732 1732 default push repo. These are the changesets that would be pushed
1733 1733 if a push was requested.
1734 1734
1735 1735 See pull for valid source format details.
1736 1736 """
1737 1737 dest = ui.expandpath(dest, repo.root)
1738 1738 other = hg.repository(ui, dest)
1739 1739 o = repo.findoutgoing(other)
1740 1740 o = repo.changelog.nodesbetween(o)[0]
1741 1741 if opts['newest_first']:
1742 1742 o.reverse()
1743 1743 for n in o:
1744 1744 parents = [p for p in repo.changelog.parents(n) if p != nullid]
1745 1745 if opts['no_merges'] and len(parents) == 2:
1746 1746 continue
1747 1747 show_changeset(ui, repo, changenode=n)
1748 1748 if opts['patch']:
1749 1749 prev = (parents and parents[0]) or nullid
1750 1750 dodiff(ui, ui, repo, prev, n)
1751 1751 ui.write("\n")
1752 1752
1753 1753 def parents(ui, repo, rev=None, branches=None):
1754 1754 """show the parents of the working dir or revision
1755 1755
1756 1756 Print the working directory's parent revisions.
1757 1757 """
1758 1758 if rev:
1759 1759 p = repo.changelog.parents(repo.lookup(rev))
1760 1760 else:
1761 1761 p = repo.dirstate.parents()
1762 1762
1763 1763 br = None
1764 1764 if branches is not None:
1765 1765 br = repo.branchlookup(p)
1766 1766 for n in p:
1767 1767 if n != nullid:
1768 1768 show_changeset(ui, repo, changenode=n, brinfo=br)
1769 1769
1770 1770 def paths(ui, search=None):
1771 1771 """show definition of symbolic path names
1772 1772
1773 1773 Show definition of symbolic path name NAME. If no name is given, show
1774 1774 definition of available names.
1775 1775
1776 1776 Path names are defined in the [paths] section of /etc/mercurial/hgrc
1777 1777 and $HOME/.hgrc. If run inside a repository, .hg/hgrc is used, too.
1778 1778 """
1779 1779 try:
1780 1780 repo = hg.repository(ui=ui)
1781 1781 except hg.RepoError:
1782 1782 pass
1783 1783
1784 1784 if search:
1785 1785 for name, path in ui.configitems("paths"):
1786 1786 if name == search:
1787 1787 ui.write("%s\n" % path)
1788 1788 return
1789 1789 ui.warn(_("not found!\n"))
1790 1790 return 1
1791 1791 else:
1792 1792 for name, path in ui.configitems("paths"):
1793 1793 ui.write("%s = %s\n" % (name, path))
1794 1794
1795 1795 def pull(ui, repo, source="default", **opts):
1796 1796 """pull changes from the specified source
1797 1797
1798 1798 Pull changes from a remote repository to a local one.
1799 1799
1800 1800 This finds all changes from the repository at the specified path
1801 1801 or URL and adds them to the local repository. By default, this
1802 1802 does not update the copy of the project in the working directory.
1803 1803
1804 1804 Valid URLs are of the form:
1805 1805
1806 1806 local/filesystem/path
1807 1807 http://[user@]host[:port][/path]
1808 1808 https://[user@]host[:port][/path]
1809 1809 ssh://[user@]host[:port][/path]
1810 1810
1811 1811 SSH requires an accessible shell account on the destination machine
1812 1812 and a copy of hg in the remote path. With SSH, paths are relative
1813 1813 to the remote user's home directory by default; use two slashes at
1814 1814 the start of a path to specify it as relative to the filesystem root.
1815 1815 """
1816 1816 source = ui.expandpath(source, repo.root)
1817 1817 ui.status(_('pulling from %s\n') % (source))
1818 1818
1819 1819 if opts['ssh']:
1820 1820 ui.setconfig("ui", "ssh", opts['ssh'])
1821 1821 if opts['remotecmd']:
1822 1822 ui.setconfig("ui", "remotecmd", opts['remotecmd'])
1823 1823
1824 1824 other = hg.repository(ui, source)
1825 1825 revs = None
1826 1826 if opts['rev'] and not other.local():
1827 1827 raise util.Abort(_("pull -r doesn't work for remote repositories yet"))
1828 1828 elif opts['rev']:
1829 1829 revs = [other.lookup(rev) for rev in opts['rev']]
1830 1830 r = repo.pull(other, heads=revs)
1831 1831 if not r:
1832 1832 if opts['update']:
1833 1833 return update(ui, repo)
1834 1834 else:
1835 1835 ui.status(_("(run 'hg update' to get a working copy)\n"))
1836 1836
1837 1837 return r
1838 1838
1839 1839 def push(ui, repo, dest="default-push", **opts):
1840 1840 """push changes to the specified destination
1841 1841
1842 1842 Push changes from the local repository to the given destination.
1843 1843
1844 1844 This is the symmetrical operation for pull. It helps to move
1845 1845 changes from the current repository to a different one. If the
1846 1846 destination is local this is identical to a pull in that directory
1847 1847 from the current one.
1848 1848
1849 1849 By default, push will refuse to run if it detects the result would
1850 1850 increase the number of remote heads. This generally indicates the
1851 1851 the client has forgotten to sync and merge before pushing.
1852 1852
1853 1853 Valid URLs are of the form:
1854 1854
1855 1855 local/filesystem/path
1856 1856 ssh://[user@]host[:port][/path]
1857 1857
1858 1858 SSH requires an accessible shell account on the destination
1859 1859 machine and a copy of hg in the remote path.
1860 1860 """
1861 1861 dest = ui.expandpath(dest, repo.root)
1862 1862 ui.status('pushing to %s\n' % (dest))
1863 1863
1864 1864 if opts['ssh']:
1865 1865 ui.setconfig("ui", "ssh", opts['ssh'])
1866 1866 if opts['remotecmd']:
1867 1867 ui.setconfig("ui", "remotecmd", opts['remotecmd'])
1868 1868
1869 1869 other = hg.repository(ui, dest)
1870 1870 revs = None
1871 1871 if opts['rev']:
1872 1872 revs = [repo.lookup(rev) for rev in opts['rev']]
1873 1873 r = repo.push(other, opts['force'], revs=revs)
1874 1874 return r
1875 1875
1876 1876 def rawcommit(ui, repo, *flist, **rc):
1877 1877 """raw commit interface (DEPRECATED)
1878 1878
1879 1879 (DEPRECATED)
1880 1880 Lowlevel commit, for use in helper scripts.
1881 1881
1882 1882 This command is not intended to be used by normal users, as it is
1883 1883 primarily useful for importing from other SCMs.
1884 1884
1885 1885 This command is now deprecated and will be removed in a future
1886 1886 release, please use debugsetparents and commit instead.
1887 1887 """
1888 1888
1889 1889 ui.warn(_("(the rawcommit command is deprecated)\n"))
1890 1890
1891 1891 message = rc['message']
1892 1892 if not message and rc['logfile']:
1893 1893 try:
1894 1894 message = open(rc['logfile']).read()
1895 1895 except IOError:
1896 1896 pass
1897 1897 if not message and not rc['logfile']:
1898 1898 raise util.Abort(_("missing commit message"))
1899 1899
1900 1900 files = relpath(repo, list(flist))
1901 1901 if rc['files']:
1902 1902 files += open(rc['files']).read().splitlines()
1903 1903
1904 1904 rc['parent'] = map(repo.lookup, rc['parent'])
1905 1905
1906 1906 try:
1907 1907 repo.rawcommit(files, message, rc['user'], rc['date'], *rc['parent'])
1908 1908 except ValueError, inst:
1909 1909 raise util.Abort(str(inst))
1910 1910
1911 1911 def recover(ui, repo):
1912 1912 """roll back an interrupted transaction
1913 1913
1914 1914 Recover from an interrupted commit or pull.
1915 1915
1916 1916 This command tries to fix the repository status after an interrupted
1917 1917 operation. It should only be necessary when Mercurial suggests it.
1918 1918 """
1919 1919 if repo.recover():
1920 1920 return repo.verify()
1921 1921 return False
1922 1922
1923 1923 def remove(ui, repo, pat, *pats, **opts):
1924 1924 """remove the specified files on the next commit
1925 1925
1926 1926 Schedule the indicated files for removal from the repository.
1927 1927
1928 1928 This command schedules the files to be removed at the next commit.
1929 1929 This only removes files from the current branch, not from the
1930 1930 entire project history. If the files still exist in the working
1931 1931 directory, they will be deleted from it.
1932 1932 """
1933 1933 names = []
1934 1934 def okaytoremove(abs, rel, exact):
1935 1935 modified, added, removed, deleted, unknown = repo.changes(files=[abs])
1936 1936 reason = None
1937 1937 if modified:
1938 1938 reason = _('is modified')
1939 1939 elif added:
1940 1940 reason = _('has been marked for add')
1941 1941 elif unknown:
1942 1942 reason = _('is not managed')
1943 1943 if reason:
1944 1944 if exact:
1945 1945 ui.warn(_('not removing %s: file %s\n') % (rel, reason))
1946 1946 else:
1947 1947 return True
1948 1948 for src, abs, rel, exact in walk(repo, (pat,) + pats, opts):
1949 1949 if okaytoremove(abs, rel, exact):
1950 1950 if ui.verbose or not exact:
1951 1951 ui.status(_('removing %s\n') % rel)
1952 1952 names.append(abs)
1953 1953 repo.remove(names, unlink=True)
1954 1954
1955 1955 def rename(ui, repo, *pats, **opts):
1956 1956 """rename files; equivalent of copy + remove
1957 1957
1958 1958 Mark dest as copies of sources; mark sources for deletion. If
1959 1959 dest is a directory, copies are put in that directory. If dest is
1960 1960 a file, there can only be one source.
1961 1961
1962 1962 By default, this command copies the contents of files as they
1963 1963 stand in the working directory. If invoked with --after, the
1964 1964 operation is recorded, but no copying is performed.
1965 1965
1966 1966 This command takes effect in the next commit.
1967 1967
1968 1968 NOTE: This command should be treated as experimental. While it
1969 1969 should properly record rename files, this information is not yet
1970 1970 fully used by merge, nor fully reported by log.
1971 1971 """
1972 1972 try:
1973 1973 wlock = repo.wlock(0)
1974 1974 errs, copied = docopy(ui, repo, pats, opts, wlock)
1975 1975 names = []
1976 1976 for abs, rel, exact in copied:
1977 1977 if ui.verbose or not exact:
1978 1978 ui.status(_('removing %s\n') % rel)
1979 1979 names.append(abs)
1980 1980 repo.remove(names, True, wlock)
1981 1981 except lock.LockHeld, inst:
1982 1982 ui.warn(_("repository lock held by %s\n") % inst.args[0])
1983 1983 errs = 1
1984 1984 return errs
1985 1985
1986 1986 def revert(ui, repo, *pats, **opts):
1987 1987 """revert modified files or dirs back to their unmodified states
1988 1988
1989 1989 In its default mode, it reverts any uncommitted modifications made
1990 1990 to the named files or directories. This restores the contents of
1991 1991 the affected files to an unmodified state.
1992 1992
1993 1993 Using the -r option, it reverts the given files or directories to
1994 1994 their state as of an earlier revision. This can be helpful to "roll
1995 1995 back" some or all of a change that should not have been committed.
1996 1996
1997 1997 Revert modifies the working directory. It does not commit any
1998 1998 changes, or change the parent of the current working directory.
1999 1999
2000 2000 If a file has been deleted, it is recreated. If the executable
2001 2001 mode of a file was changed, it is reset.
2002 2002
2003 2003 If names are given, all files matching the names are reverted.
2004 2004
2005 2005 If no arguments are given, all files in the repository are reverted.
2006 2006 """
2007 2007 node = opts['rev'] and repo.lookup(opts['rev']) or \
2008 2008 repo.dirstate.parents()[0]
2009 2009
2010 2010 files, choose, anypats = matchpats(repo, pats, opts)
2011 2011 modified, added, removed, deleted, unknown = repo.changes(match=choose)
2012 2012 repo.forget(added)
2013 2013 repo.undelete(removed)
2014 2014
2015 2015 return repo.update(node, False, True, choose, False)
2016 2016
2017 2017 def root(ui, repo):
2018 2018 """print the root (top) of the current working dir
2019 2019
2020 2020 Print the root directory of the current repository.
2021 2021 """
2022 2022 ui.write(repo.root + "\n")
2023 2023
2024 2024 def serve(ui, repo, **opts):
2025 2025 """export the repository via HTTP
2026 2026
2027 2027 Start a local HTTP repository browser and pull server.
2028 2028
2029 2029 By default, the server logs accesses to stdout and errors to
2030 2030 stderr. Use the "-A" and "-E" options to log to files.
2031 2031 """
2032 2032
2033 2033 if opts["stdio"]:
2034 2034 fin, fout = sys.stdin, sys.stdout
2035 2035 sys.stdout = sys.stderr
2036 2036
2037 2037 # Prevent insertion/deletion of CRs
2038 2038 util.set_binary(fin)
2039 2039 util.set_binary(fout)
2040 2040
2041 2041 def getarg():
2042 2042 argline = fin.readline()[:-1]
2043 2043 arg, l = argline.split()
2044 2044 val = fin.read(int(l))
2045 2045 return arg, val
2046 2046 def respond(v):
2047 2047 fout.write("%d\n" % len(v))
2048 2048 fout.write(v)
2049 2049 fout.flush()
2050 2050
2051 2051 lock = None
2052 2052
2053 2053 while 1:
2054 2054 cmd = fin.readline()[:-1]
2055 2055 if cmd == '':
2056 2056 return
2057 2057 if cmd == "heads":
2058 2058 h = repo.heads()
2059 2059 respond(" ".join(map(hex, h)) + "\n")
2060 2060 if cmd == "lock":
2061 2061 lock = repo.lock()
2062 2062 respond("")
2063 2063 if cmd == "unlock":
2064 2064 if lock:
2065 2065 lock.release()
2066 2066 lock = None
2067 2067 respond("")
2068 2068 elif cmd == "branches":
2069 2069 arg, nodes = getarg()
2070 2070 nodes = map(bin, nodes.split(" "))
2071 2071 r = []
2072 2072 for b in repo.branches(nodes):
2073 2073 r.append(" ".join(map(hex, b)) + "\n")
2074 2074 respond("".join(r))
2075 2075 elif cmd == "between":
2076 2076 arg, pairs = getarg()
2077 2077 pairs = [map(bin, p.split("-")) for p in pairs.split(" ")]
2078 2078 r = []
2079 2079 for b in repo.between(pairs):
2080 2080 r.append(" ".join(map(hex, b)) + "\n")
2081 2081 respond("".join(r))
2082 2082 elif cmd == "changegroup":
2083 2083 nodes = []
2084 2084 arg, roots = getarg()
2085 2085 nodes = map(bin, roots.split(" "))
2086 2086
2087 2087 cg = repo.changegroup(nodes, 'serve')
2088 2088 while 1:
2089 2089 d = cg.read(4096)
2090 2090 if not d:
2091 2091 break
2092 2092 fout.write(d)
2093 2093
2094 2094 fout.flush()
2095 2095
2096 2096 elif cmd == "addchangegroup":
2097 2097 if not lock:
2098 2098 respond("not locked")
2099 2099 continue
2100 2100 respond("")
2101 2101
2102 2102 r = repo.addchangegroup(fin)
2103 2103 respond("")
2104 2104
2105 2105 optlist = "name templates style address port ipv6 accesslog errorlog"
2106 2106 for o in optlist.split():
2107 2107 if opts[o]:
2108 2108 ui.setconfig("web", o, opts[o])
2109 2109
2110 2110 if opts['daemon'] and not opts['daemon_pipefds']:
2111 2111 rfd, wfd = os.pipe()
2112 2112 args = sys.argv[:]
2113 2113 args.append('--daemon-pipefds=%d,%d' % (rfd, wfd))
2114 2114 pid = os.spawnvp(os.P_NOWAIT | getattr(os, 'P_DETACH', 0),
2115 2115 args[0], args)
2116 2116 os.close(wfd)
2117 2117 os.read(rfd, 1)
2118 2118 os._exit(0)
2119 2119
2120 2120 try:
2121 2121 httpd = hgweb.create_server(repo)
2122 2122 except socket.error, inst:
2123 2123 raise util.Abort(_('cannot start server: ') + inst.args[1])
2124 2124
2125 2125 if ui.verbose:
2126 2126 addr, port = httpd.socket.getsockname()
2127 2127 if addr == '0.0.0.0':
2128 2128 addr = socket.gethostname()
2129 2129 else:
2130 2130 try:
2131 2131 addr = socket.gethostbyaddr(addr)[0]
2132 2132 except socket.error:
2133 2133 pass
2134 2134 if port != 80:
2135 2135 ui.status(_('listening at http://%s:%d/\n') % (addr, port))
2136 2136 else:
2137 2137 ui.status(_('listening at http://%s/\n') % addr)
2138 2138
2139 2139 if opts['pid_file']:
2140 2140 fp = open(opts['pid_file'], 'w')
2141 2141 fp.write(str(os.getpid()))
2142 2142 fp.close()
2143 2143
2144 2144 if opts['daemon_pipefds']:
2145 2145 rfd, wfd = [int(x) for x in opts['daemon_pipefds'].split(',')]
2146 2146 os.close(rfd)
2147 2147 os.write(wfd, 'y')
2148 2148 os.close(wfd)
2149 2149 sys.stdout.flush()
2150 2150 sys.stderr.flush()
2151 2151 fd = os.open(util.nulldev, os.O_RDWR)
2152 2152 if fd != 0: os.dup2(fd, 0)
2153 2153 if fd != 1: os.dup2(fd, 1)
2154 2154 if fd != 2: os.dup2(fd, 2)
2155 2155 if fd not in (0, 1, 2): os.close(fd)
2156 2156
2157 2157 httpd.serve_forever()
2158 2158
2159 2159 def status(ui, repo, *pats, **opts):
2160 2160 """show changed files in the working directory
2161 2161
2162 2162 Show changed files in the repository. If names are
2163 2163 given, only files that match are shown.
2164 2164
2165 2165 The codes used to show the status of files are:
2166 2166 M = modified
2167 2167 A = added
2168 2168 R = removed
2169 2169 ! = deleted, but still tracked
2170 2170 ? = not tracked
2171 2171 """
2172 2172
2173 2173 files, matchfn, anypats = matchpats(repo, pats, opts)
2174 2174 cwd = (pats and repo.getcwd()) or ''
2175 2175 modified, added, removed, deleted, unknown = [
2176 2176 [util.pathto(cwd, x) for x in n]
2177 2177 for n in repo.changes(files=files, match=matchfn)]
2178 2178
2179 2179 changetypes = [(_('modified'), 'M', modified),
2180 2180 (_('added'), 'A', added),
2181 2181 (_('removed'), 'R', removed),
2182 2182 (_('deleted'), '!', deleted),
2183 2183 (_('unknown'), '?', unknown)]
2184 2184
2185 2185 end = opts['print0'] and '\0' or '\n'
2186 2186
2187 2187 for opt, char, changes in ([ct for ct in changetypes if opts[ct[0]]]
2188 2188 or changetypes):
2189 2189 if opts['no_status']:
2190 2190 format = "%%s%s" % end
2191 2191 else:
2192 2192 format = "%s %%s%s" % (char, end);
2193 2193
2194 2194 for f in changes:
2195 2195 ui.write(format % f)
2196 2196
2197 2197 def tag(ui, repo, name, rev_=None, **opts):
2198 2198 """add a tag for the current tip or a given revision
2199 2199
2200 2200 Name a particular revision using <name>.
2201 2201
2202 2202 Tags are used to name particular revisions of the repository and are
2203 2203 very useful to compare different revision, to go back to significant
2204 2204 earlier versions or to mark branch points as releases, etc.
2205 2205
2206 2206 If no revision is given, the tip is used.
2207 2207
2208 2208 To facilitate version control, distribution, and merging of tags,
2209 2209 they are stored as a file named ".hgtags" which is managed
2210 2210 similarly to other project files and can be hand-edited if
2211 2211 necessary. The file '.hg/localtags' is used for local tags (not
2212 2212 shared among repositories).
2213 2213 """
2214 2214 if name == "tip":
2215 2215 raise util.Abort(_("the name 'tip' is reserved"))
2216 2216 if rev_ is not None:
2217 2217 ui.warn(_("use of 'hg tag NAME [REV]' is deprecated, "
2218 2218 "please use 'hg tag [-r REV] NAME' instead\n"))
2219 2219 if opts['rev']:
2220 2220 raise util.Abort(_("use only one form to specify the revision"))
2221 2221 if opts['rev']:
2222 2222 rev_ = opts['rev']
2223 2223 if rev_:
2224 2224 r = hex(repo.lookup(rev_))
2225 2225 else:
2226 2226 r = hex(repo.changelog.tip())
2227 2227
2228 2228 disallowed = (revrangesep, '\r', '\n')
2229 2229 for c in disallowed:
2230 2230 if name.find(c) >= 0:
2231 2231 raise util.Abort(_("%s cannot be used in a tag name") % repr(c))
2232 2232
2233 2233 repo.hook('pretag', throw=True, node=r, tag=name,
2234 2234 local=int(not not opts['local']))
2235 2235
2236 2236 if opts['local']:
2237 2237 repo.opener("localtags", "a").write("%s %s\n" % (r, name))
2238 2238 repo.hook('tag', node=r, tag=name, local=1)
2239 2239 return
2240 2240
2241 2241 for x in repo.changes():
2242 2242 if ".hgtags" in x:
2243 2243 raise util.Abort(_("working copy of .hgtags is changed "
2244 2244 "(please commit .hgtags manually)"))
2245 2245
2246 2246 repo.wfile(".hgtags", "ab").write("%s %s\n" % (r, name))
2247 2247 if repo.dirstate.state(".hgtags") == '?':
2248 2248 repo.add([".hgtags"])
2249 2249
2250 2250 message = (opts['message'] or
2251 2251 _("Added tag %s for changeset %s") % (name, r))
2252 2252 try:
2253 2253 repo.commit([".hgtags"], message, opts['user'], opts['date'])
2254 2254 repo.hook('tag', node=r, tag=name, local=0)
2255 2255 except ValueError, inst:
2256 2256 raise util.Abort(str(inst))
2257 2257
2258 2258 def tags(ui, repo):
2259 2259 """list repository tags
2260 2260
2261 2261 List the repository tags.
2262 2262
2263 2263 This lists both regular and local tags.
2264 2264 """
2265 2265
2266 2266 l = repo.tagslist()
2267 2267 l.reverse()
2268 2268 for t, n in l:
2269 2269 try:
2270 2270 r = "%5d:%s" % (repo.changelog.rev(n), hex(n))
2271 2271 except KeyError:
2272 2272 r = " ?:?"
2273 2273 ui.write("%-30s %s\n" % (t, r))
2274 2274
2275 2275 def tip(ui, repo, **opts):
2276 2276 """show the tip revision
2277 2277
2278 2278 Show the tip revision.
2279 2279 """
2280 2280 n = repo.changelog.tip()
2281 2281 br = None
2282 2282 if opts['branches']:
2283 2283 br = repo.branchlookup([n])
2284 2284 show_changeset(ui, repo, changenode=n, brinfo=br)
2285 2285 if opts['patch']:
2286 2286 dodiff(ui, ui, repo, repo.changelog.parents(n)[0], n)
2287 2287
2288 2288 def unbundle(ui, repo, fname, **opts):
2289 2289 """apply a changegroup file
2290 2290
2291 2291 Apply a compressed changegroup file generated by the bundle
2292 2292 command.
2293 2293 """
2294 2294 f = urllib.urlopen(fname)
2295 2295
2296 2296 if f.read(4) != "HG10":
2297 2297 raise util.Abort(_("%s: not a Mercurial bundle file") % fname)
2298 2298
2299 2299 def bzgenerator(f):
2300 2300 zd = bz2.BZ2Decompressor()
2301 2301 for chunk in f:
2302 2302 yield zd.decompress(chunk)
2303 2303
2304 2304 bzgen = bzgenerator(util.filechunkiter(f, 4096))
2305 2305 if repo.addchangegroup(util.chunkbuffer(bzgen)):
2306 2306 return 1
2307 2307
2308 2308 if opts['update']:
2309 2309 return update(ui, repo)
2310 2310 else:
2311 2311 ui.status(_("(run 'hg update' to get a working copy)\n"))
2312 2312
2313 2313 def undo(ui, repo):
2314 2314 """undo the last commit or pull
2315 2315
2316 2316 Roll back the last pull or commit transaction on the
2317 2317 repository, restoring the project to its earlier state.
2318 2318
2319 2319 This command should be used with care. There is only one level of
2320 2320 undo and there is no redo.
2321 2321
2322 2322 This command is not intended for use on public repositories. Once
2323 2323 a change is visible for pull by other users, undoing it locally is
2324 2324 ineffective.
2325 2325 """
2326 2326 repo.undo()
2327 2327
2328 2328 def update(ui, repo, node=None, merge=False, clean=False, force=None,
2329 2329 branch=None):
2330 2330 """update or merge working directory
2331 2331
2332 2332 Update the working directory to the specified revision.
2333 2333
2334 2334 If there are no outstanding changes in the working directory and
2335 2335 there is a linear relationship between the current version and the
2336 2336 requested version, the result is the requested version.
2337 2337
2338 2338 Otherwise the result is a merge between the contents of the
2339 2339 current working directory and the requested version. Files that
2340 2340 changed between either parent are marked as changed for the next
2341 2341 commit and a commit must be performed before any further updates
2342 2342 are allowed.
2343 2343
2344 2344 By default, update will refuse to run if doing so would require
2345 2345 merging or discarding local changes.
2346 2346 """
2347 2347 if branch:
2348 2348 br = repo.branchlookup(branch=branch)
2349 2349 found = []
2350 2350 for x in br:
2351 2351 if branch in br[x]:
2352 2352 found.append(x)
2353 2353 if len(found) > 1:
2354 2354 ui.warn(_("Found multiple heads for %s\n") % branch)
2355 2355 for x in found:
2356 2356 show_changeset(ui, repo, changenode=x, brinfo=br)
2357 2357 return 1
2358 2358 if len(found) == 1:
2359 2359 node = found[0]
2360 2360 ui.warn(_("Using head %s for branch %s\n") % (short(node), branch))
2361 2361 else:
2362 2362 ui.warn(_("branch %s not found\n") % (branch))
2363 2363 return 1
2364 2364 else:
2365 2365 node = node and repo.lookup(node) or repo.changelog.tip()
2366 2366 return repo.update(node, allow=merge, force=clean, forcemerge=force)
2367 2367
2368 2368 def verify(ui, repo):
2369 2369 """verify the integrity of the repository
2370 2370
2371 2371 Verify the integrity of the current repository.
2372 2372
2373 2373 This will perform an extensive check of the repository's
2374 2374 integrity, validating the hashes and checksums of each entry in
2375 2375 the changelog, manifest, and tracked files, as well as the
2376 2376 integrity of their crosslinks and indices.
2377 2377 """
2378 2378 return repo.verify()
2379 2379
2380 2380 # Command options and aliases are listed here, alphabetically
2381 2381
2382 2382 table = {
2383 2383 "^add":
2384 2384 (add,
2385 2385 [('I', 'include', [], _('include names matching the given patterns')),
2386 2386 ('X', 'exclude', [], _('exclude names matching the given patterns'))],
2387 2387 _('hg add [OPTION]... [FILE]...')),
2388 2388 "addremove":
2389 2389 (addremove,
2390 2390 [('I', 'include', [], _('include names matching the given patterns')),
2391 2391 ('X', 'exclude', [], _('exclude names matching the given patterns'))],
2392 2392 _('hg addremove [OPTION]... [FILE]...')),
2393 2393 "^annotate":
2394 2394 (annotate,
2395 2395 [('r', 'rev', '', _('annotate the specified revision')),
2396 2396 ('a', 'text', None, _('treat all files as text')),
2397 2397 ('u', 'user', None, _('list the author')),
2398 2398 ('d', 'date', None, _('list the date')),
2399 2399 ('n', 'number', None, _('list the revision number (default)')),
2400 2400 ('c', 'changeset', None, _('list the changeset')),
2401 2401 ('I', 'include', [], _('include names matching the given patterns')),
2402 2402 ('X', 'exclude', [], _('exclude names matching the given patterns'))],
2403 2403 _('hg annotate [-r REV] [-a] [-u] [-d] [-n] [-c] FILE...')),
2404 2404 "bundle":
2405 2405 (bundle,
2406 2406 [],
2407 2407 _('hg bundle FILE DEST')),
2408 2408 "cat":
2409 2409 (cat,
2410 2410 [('o', 'output', '', _('print output to file with formatted name')),
2411 2411 ('r', 'rev', '', _('print the given revision')),
2412 2412 ('I', 'include', [], _('include names matching the given patterns')),
2413 2413 ('X', 'exclude', [], _('exclude names matching the given patterns'))],
2414 2414 _('hg cat [OPTION]... FILE...')),
2415 2415 "^clone":
2416 2416 (clone,
2417 2417 [('U', 'noupdate', None, _('do not update the new working directory')),
2418 2418 ('r', 'rev', [],
2419 2419 _('a changeset you would like to have after cloning')),
2420 2420 ('', 'pull', None, _('use pull protocol to copy metadata')),
2421 2421 ('e', 'ssh', '', _('specify ssh command to use')),
2422 2422 ('', 'remotecmd', '',
2423 2423 _('specify hg command to run on the remote side'))],
2424 2424 _('hg clone [OPTION]... SOURCE [DEST]')),
2425 2425 "^commit|ci":
2426 2426 (commit,
2427 2427 [('A', 'addremove', None, _('run addremove during commit')),
2428 2428 ('m', 'message', '', _('use <text> as commit message')),
2429 2429 ('l', 'logfile', '', _('read the commit message from <file>')),
2430 2430 ('d', 'date', '', _('record datecode as commit date')),
2431 2431 ('u', 'user', '', _('record user as commiter')),
2432 2432 ('I', 'include', [], _('include names matching the given patterns')),
2433 2433 ('X', 'exclude', [], _('exclude names matching the given patterns'))],
2434 2434 _('hg commit [OPTION]... [FILE]...')),
2435 2435 "copy|cp":
2436 2436 (copy,
2437 2437 [('A', 'after', None, _('record a copy that has already occurred')),
2438 2438 ('f', 'force', None,
2439 2439 _('forcibly copy over an existing managed file')),
2440 2440 ('I', 'include', [], _('include names matching the given patterns')),
2441 2441 ('X', 'exclude', [], _('exclude names matching the given patterns'))],
2442 2442 _('hg copy [OPTION]... [SOURCE]... DEST')),
2443 2443 "debugancestor": (debugancestor, [], _('debugancestor INDEX REV1 REV2')),
2444 2444 "debugrebuildstate":
2445 2445 (debugrebuildstate,
2446 2446 [('r', 'rev', '', _('revision to rebuild to'))],
2447 2447 _('debugrebuildstate [-r REV] [REV]')),
2448 2448 "debugcheckstate": (debugcheckstate, [], _('debugcheckstate')),
2449 2449 "debugconfig": (debugconfig, [], _('debugconfig')),
2450 2450 "debugsetparents": (debugsetparents, [], _('debugsetparents REV1 [REV2]')),
2451 2451 "debugstate": (debugstate, [], _('debugstate')),
2452 2452 "debugdata": (debugdata, [], _('debugdata FILE REV')),
2453 2453 "debugindex": (debugindex, [], _('debugindex FILE')),
2454 2454 "debugindexdot": (debugindexdot, [], _('debugindexdot FILE')),
2455 2455 "debugrename": (debugrename, [], _('debugrename FILE [REV]')),
2456 2456 "debugwalk":
2457 2457 (debugwalk,
2458 2458 [('I', 'include', [], _('include names matching the given patterns')),
2459 2459 ('X', 'exclude', [], _('exclude names matching the given patterns'))],
2460 2460 _('debugwalk [OPTION]... [FILE]...')),
2461 2461 "^diff":
2462 2462 (diff,
2463 2463 [('r', 'rev', [], _('revision')),
2464 2464 ('a', 'text', None, _('treat all files as text')),
2465 2465 ('p', 'show-function', None,
2466 2466 _('show which function each change is in')),
2467 2467 ('w', 'ignore-all-space', None,
2468 2468 _('ignore white space when comparing lines')),
2469 2469 ('I', 'include', [], _('include names matching the given patterns')),
2470 2470 ('X', 'exclude', [], _('exclude names matching the given patterns'))],
2471 2471 _('hg diff [-a] [-I] [-X] [-r REV1 [-r REV2]] [FILE]...')),
2472 2472 "^export":
2473 2473 (export,
2474 2474 [('o', 'output', '', _('print output to file with formatted name')),
2475 2475 ('a', 'text', None, _('treat all files as text')),
2476 2476 ('', 'switch-parent', None, _('diff against the second parent'))],
2477 2477 _('hg export [-a] [-o OUTFILESPEC] REV...')),
2478 2478 "forget":
2479 2479 (forget,
2480 2480 [('I', 'include', [], _('include names matching the given patterns')),
2481 2481 ('X', 'exclude', [], _('exclude names matching the given patterns'))],
2482 2482 _('hg forget [OPTION]... FILE...')),
2483 2483 "grep":
2484 2484 (grep,
2485 2485 [('0', 'print0', None, _('end fields with NUL')),
2486 2486 ('', 'all', None, _('print all revisions that match')),
2487 2487 ('i', 'ignore-case', None, _('ignore case when matching')),
2488 2488 ('l', 'files-with-matches', None,
2489 2489 _('print only filenames and revs that match')),
2490 2490 ('n', 'line-number', None, _('print matching line numbers')),
2491 2491 ('r', 'rev', [], _('search in given revision range')),
2492 2492 ('u', 'user', None, _('print user who committed change')),
2493 2493 ('I', 'include', [], _('include names matching the given patterns')),
2494 2494 ('X', 'exclude', [], _('exclude names matching the given patterns'))],
2495 2495 _('hg grep [OPTION]... PATTERN [FILE]...')),
2496 2496 "heads":
2497 2497 (heads,
2498 2498 [('b', 'branches', None, _('show branches')),
2499 2499 ('r', 'rev', '', _('show only heads which are descendants of rev'))],
2500 2500 _('hg heads [-b] [-r <rev>]')),
2501 2501 "help": (help_, [], _('hg help [COMMAND]')),
2502 2502 "identify|id": (identify, [], _('hg identify')),
2503 2503 "import|patch":
2504 2504 (import_,
2505 2505 [('p', 'strip', 1,
2506 2506 _('directory strip option for patch. This has the same\n') +
2507 2507 _('meaning as the corresponding patch option')),
2508 2508 ('b', 'base', '', _('base path')),
2509 2509 ('f', 'force', None,
2510 2510 _('skip check for outstanding uncommitted changes'))],
2511 2511 _('hg import [-p NUM] [-b BASE] [-f] PATCH...')),
2512 2512 "incoming|in": (incoming,
2513 2513 [('M', 'no-merges', None, _('do not show merges')),
2514 2514 ('p', 'patch', None, _('show patch')),
2515 2515 ('n', 'newest-first', None, _('show newest record first'))],
2516 2516 _('hg incoming [-p] [-n] [-M] [SOURCE]')),
2517 2517 "^init": (init, [], _('hg init [DEST]')),
2518 2518 "locate":
2519 2519 (locate,
2520 2520 [('r', 'rev', '', _('search the repository as it stood at rev')),
2521 2521 ('0', 'print0', None,
2522 2522 _('end filenames with NUL, for use with xargs')),
2523 2523 ('f', 'fullpath', None,
2524 2524 _('print complete paths from the filesystem root')),
2525 2525 ('I', 'include', [], _('include names matching the given patterns')),
2526 2526 ('X', 'exclude', [], _('exclude names matching the given patterns'))],
2527 2527 _('hg locate [OPTION]... [PATTERN]...')),
2528 2528 "^log|history":
2529 2529 (log,
2530 2530 [('b', 'branches', None, _('show branches')),
2531 2531 ('k', 'keyword', [], _('search for a keyword')),
2532 2532 ('l', 'limit', '', _('limit number of changes displayed')),
2533 2533 ('r', 'rev', [], _('show the specified revision or range')),
2534 2534 ('M', 'no-merges', None, _('do not show merges')),
2535 2535 ('m', 'only-merges', None, _('show only merges')),
2536 2536 ('p', 'patch', None, _('show patch')),
2537 2537 ('I', 'include', [], _('include names matching the given patterns')),
2538 2538 ('X', 'exclude', [], _('exclude names matching the given patterns'))],
2539 2539 _('hg log [OPTION]... [FILE]')),
2540 2540 "manifest": (manifest, [], _('hg manifest [REV]')),
2541 2541 "outgoing|out": (outgoing,
2542 2542 [('M', 'no-merges', None, _('do not show merges')),
2543 2543 ('p', 'patch', None, _('show patch')),
2544 2544 ('n', 'newest-first', None, _('show newest record first'))],
2545 2545 _('hg outgoing [-M] [-p] [-n] [DEST]')),
2546 2546 "^parents":
2547 2547 (parents,
2548 2548 [('b', 'branches', None, _('show branches'))],
2549 2549 _('hg parents [-b] [REV]')),
2550 2550 "paths": (paths, [], _('hg paths [NAME]')),
2551 2551 "^pull":
2552 2552 (pull,
2553 2553 [('u', 'update', None,
2554 2554 _('update the working directory to tip after pull')),
2555 2555 ('e', 'ssh', '', _('specify ssh command to use')),
2556 2556 ('r', 'rev', [], _('a specific revision you would like to pull')),
2557 2557 ('', 'remotecmd', '',
2558 2558 _('specify hg command to run on the remote side'))],
2559 2559 _('hg pull [-u] [-e FILE] [-r REV]... [--remotecmd FILE] [SOURCE]')),
2560 2560 "^push":
2561 2561 (push,
2562 2562 [('f', 'force', None, _('force push')),
2563 2563 ('e', 'ssh', '', _('specify ssh command to use')),
2564 2564 ('r', 'rev', [], _('a specific revision you would like to push')),
2565 2565 ('', 'remotecmd', '',
2566 2566 _('specify hg command to run on the remote side'))],
2567 2567 _('hg push [-f] [-e FILE] [-r REV]... [--remotecmd FILE] [DEST]')),
2568 2568 "debugrawcommit|rawcommit":
2569 2569 (rawcommit,
2570 2570 [('p', 'parent', [], _('parent')),
2571 2571 ('d', 'date', '', _('date code')),
2572 2572 ('u', 'user', '', _('user')),
2573 2573 ('F', 'files', '', _('file list')),
2574 2574 ('m', 'message', '', _('commit message')),
2575 2575 ('l', 'logfile', '', _('commit message file'))],
2576 2576 _('hg debugrawcommit [OPTION]... [FILE]...')),
2577 2577 "recover": (recover, [], _('hg recover')),
2578 2578 "^remove|rm":
2579 2579 (remove,
2580 2580 [('I', 'include', [], _('include names matching the given patterns')),
2581 2581 ('X', 'exclude', [], _('exclude names matching the given patterns'))],
2582 2582 _('hg remove [OPTION]... FILE...')),
2583 2583 "rename|mv":
2584 2584 (rename,
2585 2585 [('A', 'after', None, _('record a rename that has already occurred')),
2586 2586 ('f', 'force', None,
2587 2587 _('forcibly copy over an existing managed file')),
2588 2588 ('I', 'include', [], _('include names matching the given patterns')),
2589 2589 ('X', 'exclude', [], _('exclude names matching the given patterns'))],
2590 2590 _('hg rename [OPTION]... [SOURCE]... DEST')),
2591 2591 "^revert":
2592 2592 (revert,
2593 2593 [('r', 'rev', '', _('revision to revert to')),
2594 2594 ('I', 'include', [], _('include names matching the given patterns')),
2595 2595 ('X', 'exclude', [], _('exclude names matching the given patterns'))],
2596 2596 _('hg revert [-r REV] [NAME]...')),
2597 2597 "root": (root, [], _('hg root')),
2598 2598 "^serve":
2599 2599 (serve,
2600 2600 [('A', 'accesslog', '', _('name of access log file to write to')),
2601 2601 ('d', 'daemon', None, _('run server in background')),
2602 2602 ('', 'daemon-pipefds', '', _('used internally by daemon mode')),
2603 2603 ('E', 'errorlog', '', _('name of error log file to write to')),
2604 2604 ('p', 'port', 0, _('port to use (default: 8000)')),
2605 2605 ('a', 'address', '', _('address to use')),
2606 2606 ('n', 'name', '',
2607 2607 _('name to show in web pages (default: working dir)')),
2608 2608 ('', 'pid-file', '', _('name of file to write process ID to')),
2609 2609 ('', 'stdio', None, _('for remote clients')),
2610 2610 ('t', 'templates', '', _('web templates to use')),
2611 2611 ('', 'style', '', _('template style to use')),
2612 2612 ('6', 'ipv6', None, _('use IPv6 in addition to IPv4'))],
2613 2613 _('hg serve [OPTION]...')),
2614 2614 "^status|st":
2615 2615 (status,
2616 2616 [('m', 'modified', None, _('show only modified files')),
2617 2617 ('a', 'added', None, _('show only added files')),
2618 2618 ('r', 'removed', None, _('show only removed files')),
2619 2619 ('d', 'deleted', None, _('show only deleted (but tracked) files')),
2620 2620 ('u', 'unknown', None, _('show only unknown (not tracked) files')),
2621 2621 ('n', 'no-status', None, _('hide status prefix')),
2622 2622 ('0', 'print0', None,
2623 2623 _('end filenames with NUL, for use with xargs')),
2624 2624 ('I', 'include', [], _('include names matching the given patterns')),
2625 2625 ('X', 'exclude', [], _('exclude names matching the given patterns'))],
2626 2626 _('hg status [OPTION]... [FILE]...')),
2627 2627 "tag":
2628 2628 (tag,
2629 2629 [('l', 'local', None, _('make the tag local')),
2630 2630 ('m', 'message', '', _('message for tag commit log entry')),
2631 2631 ('d', 'date', '', _('record datecode as commit date')),
2632 2632 ('u', 'user', '', _('record user as commiter')),
2633 2633 ('r', 'rev', '', _('revision to tag'))],
2634 2634 _('hg tag [-l] [-m TEXT] [-d DATE] [-u USER] [-r REV] NAME')),
2635 2635 "tags": (tags, [], _('hg tags')),
2636 2636 "tip":
2637 2637 (tip,
2638 2638 [('b', 'branches', None, _('show branches')),
2639 2639 ('p', 'patch', None, _('show patch'))],
2640 2640 _('hg tip [-b] [-p]')),
2641 2641 "unbundle":
2642 2642 (unbundle,
2643 2643 [('u', 'update', None,
2644 2644 _('update the working directory to tip after unbundle'))],
2645 2645 _('hg unbundle [-u] FILE')),
2646 2646 "undo": (undo, [], _('hg undo')),
2647 2647 "^update|up|checkout|co":
2648 2648 (update,
2649 2649 [('b', 'branch', '', _('checkout the head of a specific branch')),
2650 2650 ('m', 'merge', None, _('allow merging of branches')),
2651 2651 ('C', 'clean', None, _('overwrite locally modified files')),
2652 2652 ('f', 'force', None, _('force a merge with outstanding changes'))],
2653 2653 _('hg update [-b TAG] [-m] [-C] [-f] [REV]')),
2654 2654 "verify": (verify, [], _('hg verify')),
2655 2655 "version": (show_version, [], _('hg version')),
2656 2656 }
2657 2657
2658 2658 globalopts = [
2659 2659 ('R', 'repository', '', _('repository root directory')),
2660 2660 ('', 'cwd', '', _('change working directory')),
2661 2661 ('y', 'noninteractive', None,
2662 2662 _('do not prompt, assume \'yes\' for any required answers')),
2663 2663 ('q', 'quiet', None, _('suppress output')),
2664 2664 ('v', 'verbose', None, _('enable additional output')),
2665 2665 ('', 'debug', None, _('enable debugging output')),
2666 2666 ('', 'debugger', None, _('start debugger')),
2667 2667 ('', 'traceback', None, _('print traceback on exception')),
2668 2668 ('', 'time', None, _('time how long the command takes')),
2669 2669 ('', 'profile', None, _('print command execution profile')),
2670 2670 ('', 'version', None, _('output version information and exit')),
2671 2671 ('h', 'help', None, _('display help and exit')),
2672 2672 ]
2673 2673
2674 2674 norepo = ("clone init version help debugancestor debugconfig debugdata"
2675 2675 " debugindex debugindexdot paths")
2676 2676
2677 2677 def find(cmd):
2678 2678 """Return (aliases, command table entry) for command string."""
2679 2679 choice = None
2680 2680 count = 0
2681 2681 for e in table.keys():
2682 2682 aliases = e.lstrip("^").split("|")
2683 2683 if cmd in aliases:
2684 2684 return aliases, table[e]
2685 2685 for a in aliases:
2686 2686 if a.startswith(cmd):
2687 2687 count += 1
2688 2688 choice = aliases, table[e]
2689 2689 break
2690 2690
2691 2691 if count > 1:
2692 2692 raise AmbiguousCommand(cmd)
2693 2693
2694 2694 if choice:
2695 2695 return choice
2696 2696
2697 2697 raise UnknownCommand(cmd)
2698 2698
2699 2699 class SignalInterrupt(Exception):
2700 2700 """Exception raised on SIGTERM and SIGHUP."""
2701 2701
2702 2702 def catchterm(*args):
2703 2703 raise SignalInterrupt
2704 2704
2705 2705 def run():
2706 2706 sys.exit(dispatch(sys.argv[1:]))
2707 2707
2708 2708 class ParseError(Exception):
2709 2709 """Exception raised on errors in parsing the command line."""
2710 2710
2711 2711 def parse(ui, args):
2712 2712 options = {}
2713 2713 cmdoptions = {}
2714 2714
2715 2715 try:
2716 2716 args = fancyopts.fancyopts(args, globalopts, options)
2717 2717 except fancyopts.getopt.GetoptError, inst:
2718 2718 raise ParseError(None, inst)
2719 2719
2720 2720 if args:
2721 2721 cmd, args = args[0], args[1:]
2722 2722 aliases, i = find(cmd)
2723 2723 cmd = aliases[0]
2724 2724 defaults = ui.config("defaults", cmd)
2725 2725 if defaults:
2726 2726 args = defaults.split() + args
2727 2727 c = list(i[1])
2728 2728 else:
2729 2729 cmd = None
2730 2730 c = []
2731 2731
2732 2732 # combine global options into local
2733 2733 for o in globalopts:
2734 2734 c.append((o[0], o[1], options[o[1]], o[3]))
2735 2735
2736 2736 try:
2737 2737 args = fancyopts.fancyopts(args, c, cmdoptions)
2738 2738 except fancyopts.getopt.GetoptError, inst:
2739 2739 raise ParseError(cmd, inst)
2740 2740
2741 2741 # separate global options back out
2742 2742 for o in globalopts:
2743 2743 n = o[1]
2744 2744 options[n] = cmdoptions[n]
2745 2745 del cmdoptions[n]
2746 2746
2747 2747 return (cmd, cmd and i[0] or None, args, options, cmdoptions)
2748 2748
2749 2749 def dispatch(args):
2750 2750 signal.signal(signal.SIGTERM, catchterm)
2751 2751 try:
2752 2752 signal.signal(signal.SIGHUP, catchterm)
2753 2753 except AttributeError:
2754 2754 pass
2755 2755
2756 2756 try:
2757 2757 u = ui.ui()
2758 2758 except util.Abort, inst:
2759 2759 sys.stderr.write(_("abort: %s\n") % inst)
2760 2760 sys.exit(1)
2761 2761
2762 2762 external = []
2763 2763 for x in u.extensions():
2764 2764 def on_exception(exc, inst):
2765 2765 u.warn(_("*** failed to import extension %s\n") % x[1])
2766 2766 u.warn("%s\n" % inst)
2767 2767 if "--traceback" in sys.argv[1:]:
2768 2768 traceback.print_exc()
2769 2769 if x[1]:
2770 2770 try:
2771 2771 mod = imp.load_source(x[0], x[1])
2772 2772 except Exception, inst:
2773 2773 on_exception(Exception, inst)
2774 2774 continue
2775 2775 else:
2776 2776 def importh(name):
2777 2777 mod = __import__(name)
2778 2778 components = name.split('.')
2779 2779 for comp in components[1:]:
2780 2780 mod = getattr(mod, comp)
2781 2781 return mod
2782 2782 try:
2783 2783 mod = importh(x[0])
2784 2784 except Exception, inst:
2785 2785 on_exception(Exception, inst)
2786 2786 continue
2787 2787
2788 2788 external.append(mod)
2789 2789 for x in external:
2790 2790 cmdtable = getattr(x, 'cmdtable', {})
2791 2791 for t in cmdtable:
2792 2792 if t in table:
2793 2793 u.warn(_("module %s overrides %s\n") % (x.__name__, t))
2794 2794 table.update(cmdtable)
2795 2795
2796 2796 try:
2797 2797 cmd, func, args, options, cmdoptions = parse(u, args)
2798 2798 except ParseError, inst:
2799 2799 if inst.args[0]:
2800 2800 u.warn(_("hg %s: %s\n") % (inst.args[0], inst.args[1]))
2801 2801 help_(u, inst.args[0])
2802 2802 else:
2803 2803 u.warn(_("hg: %s\n") % inst.args[1])
2804 2804 help_(u, 'shortlist')
2805 2805 sys.exit(-1)
2806 2806 except AmbiguousCommand, inst:
2807 2807 u.warn(_("hg: command '%s' is ambiguous.\n") % inst.args[0])
2808 2808 sys.exit(1)
2809 2809 except UnknownCommand, inst:
2810 2810 u.warn(_("hg: unknown command '%s'\n") % inst.args[0])
2811 2811 help_(u, 'shortlist')
2812 2812 sys.exit(1)
2813 2813
2814 2814 if options["time"]:
2815 2815 def get_times():
2816 2816 t = os.times()
2817 2817 if t[4] == 0.0: # Windows leaves this as zero, so use time.clock()
2818 2818 t = (t[0], t[1], t[2], t[3], time.clock())
2819 2819 return t
2820 2820 s = get_times()
2821 2821 def print_time():
2822 2822 t = get_times()
2823 2823 u.warn(_("Time: real %.3f secs (user %.3f+%.3f sys %.3f+%.3f)\n") %
2824 2824 (t[4]-s[4], t[0]-s[0], t[2]-s[2], t[1]-s[1], t[3]-s[3]))
2825 2825 atexit.register(print_time)
2826 2826
2827 2827 u.updateopts(options["verbose"], options["debug"], options["quiet"],
2828 2828 not options["noninteractive"])
2829 2829
2830 2830 # enter the debugger before command execution
2831 2831 if options['debugger']:
2832 2832 pdb.set_trace()
2833 2833
2834 2834 try:
2835 2835 try:
2836 2836 if options['help']:
2837 2837 help_(u, cmd, options['version'])
2838 2838 sys.exit(0)
2839 2839 elif options['version']:
2840 2840 show_version(u)
2841 2841 sys.exit(0)
2842 2842 elif not cmd:
2843 2843 help_(u, 'shortlist')
2844 2844 sys.exit(0)
2845 2845
2846 2846 if options['cwd']:
2847 2847 try:
2848 2848 os.chdir(options['cwd'])
2849 2849 except OSError, inst:
2850 2850 raise util.Abort('%s: %s' %
2851 2851 (options['cwd'], inst.strerror))
2852 2852
2853 2853 if cmd not in norepo.split():
2854 2854 path = options["repository"] or ""
2855 2855 repo = hg.repository(ui=u, path=path)
2856 2856 for x in external:
2857 2857 if hasattr(x, 'reposetup'):
2858 2858 x.reposetup(u, repo)
2859 2859 d = lambda: func(u, repo, *args, **cmdoptions)
2860 2860 else:
2861 2861 d = lambda: func(u, *args, **cmdoptions)
2862 2862
2863 if options['profile']:
2864 import hotshot, hotshot.stats
2865 prof = hotshot.Profile("hg.prof")
2866 try:
2863 try:
2864 if options['profile']:
2865 import hotshot, hotshot.stats
2866 prof = hotshot.Profile("hg.prof")
2867 2867 try:
2868 return prof.runcall(d)
2869 except:
2870 2868 try:
2871 u.warn(_('exception raised - generating profile '
2872 'anyway\n'))
2869 return prof.runcall(d)
2873 2870 except:
2874 pass
2875 raise
2876 finally:
2877 prof.close()
2878 stats = hotshot.stats.load("hg.prof")
2879 stats.strip_dirs()
2880 stats.sort_stats('time', 'calls')
2881 stats.print_stats(40)
2882 else:
2883 return d()
2871 try:
2872 u.warn(_('exception raised - generating '
2873 'profile anyway\n'))
2874 except:
2875 pass
2876 raise
2877 finally:
2878 prof.close()
2879 stats = hotshot.stats.load("hg.prof")
2880 stats.strip_dirs()
2881 stats.sort_stats('time', 'calls')
2882 stats.print_stats(40)
2883 else:
2884 return d()
2885 finally:
2886 u.flush()
2884 2887 except:
2885 2888 # enter the debugger when we hit an exception
2886 2889 if options['debugger']:
2887 2890 pdb.post_mortem(sys.exc_info()[2])
2888 2891 if options['traceback']:
2889 2892 traceback.print_exc()
2890 2893 raise
2891 2894 except hg.RepoError, inst:
2892 2895 u.warn(_("abort: "), inst, "!\n")
2893 2896 except revlog.RevlogError, inst:
2894 2897 u.warn(_("abort: "), inst, "!\n")
2895 2898 except SignalInterrupt:
2896 2899 u.warn(_("killed!\n"))
2897 2900 except KeyboardInterrupt:
2898 2901 try:
2899 2902 u.warn(_("interrupted!\n"))
2900 2903 except IOError, inst:
2901 2904 if inst.errno == errno.EPIPE:
2902 2905 if u.debugflag:
2903 2906 u.warn(_("\nbroken pipe\n"))
2904 2907 else:
2905 2908 raise
2906 2909 except IOError, inst:
2907 2910 if hasattr(inst, "code"):
2908 2911 u.warn(_("abort: %s\n") % inst)
2909 2912 elif hasattr(inst, "reason"):
2910 2913 u.warn(_("abort: error: %s\n") % inst.reason[1])
2911 2914 elif hasattr(inst, "args") and inst[0] == errno.EPIPE:
2912 2915 if u.debugflag:
2913 2916 u.warn(_("broken pipe\n"))
2914 2917 elif getattr(inst, "strerror", None):
2915 2918 if getattr(inst, "filename", None):
2916 2919 u.warn(_("abort: %s - %s\n") % (inst.strerror, inst.filename))
2917 2920 else:
2918 2921 u.warn(_("abort: %s\n") % inst.strerror)
2919 2922 else:
2920 2923 raise
2921 2924 except OSError, inst:
2922 2925 if hasattr(inst, "filename"):
2923 2926 u.warn(_("abort: %s: %s\n") % (inst.strerror, inst.filename))
2924 2927 else:
2925 2928 u.warn(_("abort: %s\n") % inst.strerror)
2926 2929 except util.Abort, inst:
2927 2930 u.warn(_('abort: '), inst.args[0] % inst.args[1:], '\n')
2928 2931 sys.exit(1)
2929 2932 except TypeError, inst:
2930 2933 # was this an argument error?
2931 2934 tb = traceback.extract_tb(sys.exc_info()[2])
2932 2935 if len(tb) > 2: # no
2933 2936 raise
2934 2937 u.debug(inst, "\n")
2935 2938 u.warn(_("%s: invalid arguments\n") % cmd)
2936 2939 help_(u, cmd)
2937 2940 except AmbiguousCommand, inst:
2938 2941 u.warn(_("hg: command '%s' is ambiguous.\n") % inst.args[0])
2939 2942 help_(u, 'shortlist')
2940 2943 except UnknownCommand, inst:
2941 2944 u.warn(_("hg: unknown command '%s'\n") % inst.args[0])
2942 2945 help_(u, 'shortlist')
2943 2946 except SystemExit:
2944 2947 # don't catch this in the catch-all below
2945 2948 raise
2946 2949 except:
2947 2950 u.warn(_("** unknown exception encountered, details follow\n"))
2948 2951 u.warn(_("** report bug details to mercurial@selenic.com\n"))
2949 2952 u.warn(_("** Mercurial Distributed SCM (version %s)\n")
2950 2953 % version.get_version())
2951 2954 raise
2952 2955
2953 2956 sys.exit(-1)
@@ -1,173 +1,179 b''
1 1 # ui.py - user interface bits for mercurial
2 2 #
3 3 # Copyright 2005 Matt Mackall <mpm@selenic.com>
4 4 #
5 5 # This software may be used and distributed according to the terms
6 6 # of the GNU General Public License, incorporated herein by reference.
7 7
8 8 import os, ConfigParser
9 9 from i18n import gettext as _
10 10 from demandload import *
11 11 demandload(globals(), "re socket sys util")
12 12
13 13 class ui(object):
14 14 def __init__(self, verbose=False, debug=False, quiet=False,
15 15 interactive=True):
16 16 self.overlay = {}
17 17 self.cdata = ConfigParser.SafeConfigParser()
18 18 self.readconfig(util.rcpath)
19 19
20 20 self.quiet = self.configbool("ui", "quiet")
21 21 self.verbose = self.configbool("ui", "verbose")
22 22 self.debugflag = self.configbool("ui", "debug")
23 23 self.interactive = self.configbool("ui", "interactive", True)
24 24
25 25 self.updateopts(verbose, debug, quiet, interactive)
26 26 self.diffcache = None
27 27
28 28 def updateopts(self, verbose=False, debug=False, quiet=False,
29 29 interactive=True):
30 30 self.quiet = (self.quiet or quiet) and not verbose and not debug
31 31 self.verbose = (self.verbose or verbose) or debug
32 32 self.debugflag = (self.debugflag or debug)
33 33 self.interactive = (self.interactive and interactive)
34 34
35 35 def readconfig(self, fn):
36 36 if isinstance(fn, basestring):
37 37 fn = [fn]
38 38 for f in fn:
39 39 try:
40 40 self.cdata.read(f)
41 41 except ConfigParser.ParsingError, inst:
42 42 raise util.Abort(_("Failed to parse %s\n%s") % (f, inst))
43 43
44 44 def setconfig(self, section, name, val):
45 45 self.overlay[(section, name)] = val
46 46
47 47 def config(self, section, name, default=None):
48 48 if self.overlay.has_key((section, name)):
49 49 return self.overlay[(section, name)]
50 50 if self.cdata.has_option(section, name):
51 51 return self.cdata.get(section, name)
52 52 return default
53 53
54 54 def configbool(self, section, name, default=False):
55 55 if self.overlay.has_key((section, name)):
56 56 return self.overlay[(section, name)]
57 57 if self.cdata.has_option(section, name):
58 58 return self.cdata.getboolean(section, name)
59 59 return default
60 60
61 61 def configitems(self, section):
62 62 if self.cdata.has_section(section):
63 63 return self.cdata.items(section)
64 64 return []
65 65
66 66 def walkconfig(self):
67 67 seen = {}
68 68 for (section, name), value in self.overlay.iteritems():
69 69 yield section, name, value
70 70 seen[section, name] = 1
71 71 for section in self.cdata.sections():
72 72 for name, value in self.cdata.items(section):
73 73 if (section, name) in seen: continue
74 74 yield section, name, value.replace('\n', '\\n')
75 75 seen[section, name] = 1
76 76
77 77 def extensions(self):
78 78 return self.configitems("extensions")
79 79
80 80 def diffopts(self):
81 81 if self.diffcache:
82 82 return self.diffcache
83 83 ret = { 'showfunc' : True, 'ignorews' : False}
84 84 for x in self.configitems("diff"):
85 85 k = x[0].lower()
86 86 v = x[1]
87 87 if v:
88 88 v = v.lower()
89 89 if v == 'true':
90 90 value = True
91 91 else:
92 92 value = False
93 93 ret[k] = value
94 94 self.diffcache = ret
95 95 return ret
96 96
97 97 def username(self):
98 98 return (os.environ.get("HGUSER") or
99 99 self.config("ui", "username") or
100 100 os.environ.get("EMAIL") or
101 101 (os.environ.get("LOGNAME",
102 102 os.environ.get("USERNAME", "unknown"))
103 103 + '@' + socket.getfqdn()))
104 104
105 105 def shortuser(self, user):
106 106 """Return a short representation of a user name or email address."""
107 107 if not self.verbose:
108 108 f = user.find('@')
109 109 if f >= 0:
110 110 user = user[:f]
111 111 f = user.find('<')
112 112 if f >= 0:
113 113 user = user[f+1:]
114 114 return user
115 115
116 116 def expandpath(self, loc, root=""):
117 117 paths = {}
118 118 for name, path in self.configitems("paths"):
119 119 m = path.find("://")
120 120 if m == -1:
121 121 path = os.path.join(root, path)
122 122 paths[name] = path
123 123
124 124 return paths.get(loc, loc)
125 125
126 126 def write(self, *args):
127 127 for a in args:
128 128 sys.stdout.write(str(a))
129 129
130 130 def write_err(self, *args):
131 131 if not sys.stdout.closed: sys.stdout.flush()
132 132 for a in args:
133 133 sys.stderr.write(str(a))
134 134
135 def flush(self):
136 try:
137 sys.stdout.flush()
138 finally:
139 sys.stderr.flush()
140
135 141 def readline(self):
136 142 return sys.stdin.readline()[:-1]
137 143 def prompt(self, msg, pat, default="y"):
138 144 if not self.interactive: return default
139 145 while 1:
140 146 self.write(msg, " ")
141 147 r = self.readline()
142 148 if re.match(pat, r):
143 149 return r
144 150 else:
145 151 self.write(_("unrecognized response\n"))
146 152 def status(self, *msg):
147 153 if not self.quiet: self.write(*msg)
148 154 def warn(self, *msg):
149 155 self.write_err(*msg)
150 156 def note(self, *msg):
151 157 if self.verbose: self.write(*msg)
152 158 def debug(self, *msg):
153 159 if self.debugflag: self.write(*msg)
154 160 def edit(self, text):
155 161 import tempfile
156 162 (fd, name) = tempfile.mkstemp("hg")
157 163 f = os.fdopen(fd, "w")
158 164 f.write(text)
159 165 f.close()
160 166
161 167 editor = (os.environ.get("HGEDITOR") or
162 168 self.config("ui", "editor") or
163 169 os.environ.get("EDITOR", "vi"))
164 170
165 171 os.environ["HGUSER"] = self.username()
166 172 util.system("%s \"%s\"" % (editor, name), errprefix=_("edit failed"))
167 173
168 174 t = open(name).read()
169 175 t = re.sub("(?m)^HG:.*\n", "", t)
170 176
171 177 os.unlink(name)
172 178
173 179 return t
General Comments 0
You need to be logged in to leave comments. Login now