cmdutil.py
1282 lines
| 44.3 KiB
| text/x-python
|
PythonLexer
/ mercurial / cmdutil.py
Vadim Gelfer
|
r2957 | # cmdutil.py - help for command processing in mercurial | ||
Vadim Gelfer
|
r2874 | # | ||
Thomas Arendsen Hein
|
r4635 | # Copyright 2005-2007 Matt Mackall <mpm@selenic.com> | ||
Vadim Gelfer
|
r2874 | # | ||
Martin Geisler
|
r8225 | # This software may be used and distributed according to the terms of the | ||
# GNU General Public License version 2, incorporated herein by reference. | ||||
Vadim Gelfer
|
r2874 | |||
Joel Rosdahl
|
r6211 | from node import hex, nullid, nullrev, short | ||
Matt Mackall
|
r3891 | from i18n import _ | ||
Henri Wiechers
|
r8731 | import os, sys, errno, re, glob | ||
Peter Arrenbrecht
|
r8390 | import mdiff, bdiff, util, templater, patch, error, encoding | ||
Matt Mackall
|
r6579 | import match as _match | ||
Vadim Gelfer
|
r2874 | |||
Brendan Cully
|
r3090 | revrangesep = ':' | ||
Matt Mackall
|
r7213 | def findpossible(cmd, table, strict=False): | ||
Matt Mackall
|
r4549 | """ | ||
Return cmd -> (aliases, command table entry) | ||||
for each matching command. | ||||
Return debug commands (or their aliases) only if no normal command matches. | ||||
""" | ||||
choice = {} | ||||
debugchoice = {} | ||||
Matt Mackall
|
r5178 | for e in table.keys(): | ||
Matt Mackall
|
r4549 | aliases = e.lstrip("^").split("|") | ||
found = None | ||||
if cmd in aliases: | ||||
found = cmd | ||||
Matt Mackall
|
r7213 | elif not strict: | ||
Matt Mackall
|
r4549 | for a in aliases: | ||
if a.startswith(cmd): | ||||
found = a | ||||
break | ||||
if found is not None: | ||||
if aliases[0].startswith("debug") or found.startswith("debug"): | ||||
Matt Mackall
|
r5178 | debugchoice[found] = (aliases, table[e]) | ||
Matt Mackall
|
r4549 | else: | ||
Matt Mackall
|
r5178 | choice[found] = (aliases, table[e]) | ||
Matt Mackall
|
r4549 | |||
if not choice and debugchoice: | ||||
choice = debugchoice | ||||
return choice | ||||
Matt Mackall
|
r7213 | def findcmd(cmd, table, strict=True): | ||
Matt Mackall
|
r4549 | """Return (aliases, command table entry) for command string.""" | ||
Matt Mackall
|
r7213 | choice = findpossible(cmd, table, strict) | ||
Matt Mackall
|
r4549 | |||
Christian Ebert
|
r5915 | if cmd in choice: | ||
Matt Mackall
|
r4549 | return choice[cmd] | ||
if len(choice) > 1: | ||||
clist = choice.keys() | ||||
clist.sort() | ||||
Matt Mackall
|
r7643 | raise error.AmbiguousCommand(cmd, clist) | ||
Matt Mackall
|
r4549 | |||
if choice: | ||||
return choice.values()[0] | ||||
Matt Mackall
|
r7643 | raise error.UnknownCommand(cmd) | ||
Matt Mackall
|
r4549 | |||
def bail_if_changed(repo): | ||||
Matt Mackall
|
r5716 | if repo.dirstate.parents()[1] != nullid: | ||
raise util.Abort(_('outstanding uncommitted merge')) | ||||
Matt Mackall
|
r4549 | modified, added, removed, deleted = repo.status()[:4] | ||
if modified or added or removed or deleted: | ||||
raise util.Abort(_("outstanding uncommitted changes")) | ||||
def logmessage(opts): | ||||
""" get the log message according to -m and -l option """ | ||||
Alexander Solovyov
|
r7667 | message = opts.get('message') | ||
logfile = opts.get('logfile') | ||||
Matt Mackall
|
r4549 | |||
if message and logfile: | ||||
raise util.Abort(_('options --message and --logfile are mutually ' | ||||
'exclusive')) | ||||
if not message and logfile: | ||||
try: | ||||
if logfile == '-': | ||||
message = sys.stdin.read() | ||||
else: | ||||
message = open(logfile).read() | ||||
except IOError, inst: | ||||
raise util.Abort(_("can't read commit message '%s': %s") % | ||||
(logfile, inst.strerror)) | ||||
return message | ||||
Thomas Arendsen Hein
|
r6190 | def loglimit(opts): | ||
"""get the log limit according to option -l/--limit""" | ||||
limit = opts.get('limit') | ||||
if limit: | ||||
try: | ||||
limit = int(limit) | ||||
except ValueError: | ||||
raise util.Abort(_('limit must be a positive integer')) | ||||
if limit <= 0: raise util.Abort(_('limit must be positive')) | ||||
else: | ||||
limit = sys.maxint | ||||
return limit | ||||
Matt Mackall
|
r8188 | def remoteui(src, opts): | ||
'build a remote ui from ui or repo and opts' | ||||
Matt Mackall
|
r8189 | if hasattr(src, 'baseui'): # looks like a repository | ||
Matt Mackall
|
r8798 | dst = src.baseui.copy() # drop repo-specific config | ||
Matt Mackall
|
r8188 | src = src.ui # copy target options from repo | ||
Matt Mackall
|
r8189 | else: # assume it's a global ui object | ||
Matt Mackall
|
r8798 | dst = src.copy() # keep all global options | ||
Matt Mackall
|
r8188 | |||
# copy ssh-specific options | ||||
for o in 'ssh', 'remotecmd': | ||||
v = opts.get(o) or src.config('ui', o) | ||||
if v: | ||||
dst.setconfig("ui", o, v) | ||||
# copy bundle-specific options | ||||
r = src.config('bundle', 'mainreporoot') | ||||
if r: | ||||
dst.setconfig('bundle', 'mainreporoot', r) | ||||
return dst | ||||
Matt Mackall
|
r4549 | |||
Thomas Arendsen Hein
|
r3707 | def revpair(repo, revs): | ||
Brendan Cully
|
r3090 | '''return pair of nodes, given list of revisions. second item can | ||
be None, meaning use working dir.''' | ||||
Matt Mackall
|
r3525 | |||
def revfix(repo, val, defval): | ||||
Alexis S. L. Carvalho
|
r3825 | if not val and val != 0 and defval is not None: | ||
Matt Mackall
|
r3525 | val = defval | ||
return repo.lookup(val) | ||||
Brendan Cully
|
r3090 | if not revs: | ||
return repo.dirstate.parents()[0], None | ||||
end = None | ||||
if len(revs) == 1: | ||||
Matt Mackall
|
r3525 | if revrangesep in revs[0]: | ||
start, end = revs[0].split(revrangesep, 1) | ||||
Brendan Cully
|
r3090 | start = revfix(repo, start, 0) | ||
Matt Mackall
|
r6750 | end = revfix(repo, end, len(repo) - 1) | ||
Brendan Cully
|
r3090 | else: | ||
Matt Mackall
|
r3525 | start = revfix(repo, revs[0], None) | ||
Brendan Cully
|
r3090 | elif len(revs) == 2: | ||
if revrangesep in revs[0] or revrangesep in revs[1]: | ||||
raise util.Abort(_('too many revisions specified')) | ||||
start = revfix(repo, revs[0], None) | ||||
end = revfix(repo, revs[1], None) | ||||
else: | ||||
raise util.Abort(_('too many revisions specified')) | ||||
Matt Mackall
|
r3525 | return start, end | ||
Brendan Cully
|
r3090 | |||
Thomas Arendsen Hein
|
r3707 | def revrange(repo, revs): | ||
Brendan Cully
|
r3090 | """Yield revision as strings from a list of revision specifications.""" | ||
Matt Mackall
|
r3525 | |||
def revfix(repo, val, defval): | ||||
Alexis S. L. Carvalho
|
r3718 | if not val and val != 0 and defval is not None: | ||
Matt Mackall
|
r3525 | return defval | ||
return repo.changelog.rev(repo.lookup(val)) | ||||
Martin Geisler
|
r8368 | seen, l = set(), [] | ||
Brendan Cully
|
r3090 | for spec in revs: | ||
if revrangesep in spec: | ||||
start, end = spec.split(revrangesep, 1) | ||||
start = revfix(repo, start, 0) | ||||
Matt Mackall
|
r6750 | end = revfix(repo, end, len(repo) - 1) | ||
Brendan Cully
|
r3090 | step = start > end and -1 or 1 | ||
for rev in xrange(start, end+step, step): | ||||
if rev in seen: | ||||
continue | ||||
Martin Geisler
|
r8368 | seen.add(rev) | ||
Matt Mackall
|
r3526 | l.append(rev) | ||
Brendan Cully
|
r3090 | else: | ||
rev = revfix(repo, spec, None) | ||||
if rev in seen: | ||||
continue | ||||
Martin Geisler
|
r8368 | seen.add(rev) | ||
Matt Mackall
|
r3526 | l.append(rev) | ||
return l | ||||
Brendan Cully
|
r3090 | |||
Vadim Gelfer
|
r2874 | def make_filename(repo, pat, node, | ||
total=None, seqno=None, revwidth=None, pathname=None): | ||||
node_expander = { | ||||
'H': lambda: hex(node), | ||||
'R': lambda: str(repo.changelog.rev(node)), | ||||
'h': lambda: short(node), | ||||
} | ||||
expander = { | ||||
'%': lambda: '%', | ||||
'b': lambda: os.path.basename(repo.root), | ||||
} | ||||
try: | ||||
if node: | ||||
expander.update(node_expander) | ||||
Alexis S. L. Carvalho
|
r4836 | if node: | ||
Vadim Gelfer
|
r2874 | expander['r'] = (lambda: | ||
Alexis S. L. Carvalho
|
r4836 | str(repo.changelog.rev(node)).zfill(revwidth or 0)) | ||
Vadim Gelfer
|
r2874 | if total is not None: | ||
expander['N'] = lambda: str(total) | ||||
if seqno is not None: | ||||
expander['n'] = lambda: str(seqno) | ||||
if total is not None and seqno is not None: | ||||
Thomas Arendsen Hein
|
r3673 | expander['n'] = lambda: str(seqno).zfill(len(str(total))) | ||
Vadim Gelfer
|
r2874 | if pathname is not None: | ||
expander['s'] = lambda: os.path.basename(pathname) | ||||
expander['d'] = lambda: os.path.dirname(pathname) or '.' | ||||
expander['p'] = lambda: pathname | ||||
newname = [] | ||||
patlen = len(pat) | ||||
i = 0 | ||||
while i < patlen: | ||||
c = pat[i] | ||||
if c == '%': | ||||
i += 1 | ||||
c = pat[i] | ||||
c = expander[c]() | ||||
newname.append(c) | ||||
i += 1 | ||||
return ''.join(newname) | ||||
except KeyError, inst: | ||||
timeless
|
r8761 | raise util.Abort(_("invalid format spec '%%%s' in output filename") % | ||
Thomas Arendsen Hein
|
r3072 | inst.args[0]) | ||
Vadim Gelfer
|
r2874 | |||
def make_file(repo, pat, node=None, | ||||
total=None, seqno=None, revwidth=None, mode='wb', pathname=None): | ||||
Ronny Pfannschmidt
|
r7319 | |||
writable = 'w' in mode or 'a' in mode | ||||
Vadim Gelfer
|
r2874 | if not pat or pat == '-': | ||
Ronny Pfannschmidt
|
r7319 | return writable and sys.stdout or sys.stdin | ||
if hasattr(pat, 'write') and writable: | ||||
Vadim Gelfer
|
r2874 | return pat | ||
if hasattr(pat, 'read') and 'r' in mode: | ||||
return pat | ||||
return open(make_filename(repo, pat, node, total, seqno, revwidth, | ||||
pathname), | ||||
mode) | ||||
Vadim Gelfer
|
r2882 | |||
Matt Mackall
|
r8614 | def expandpats(pats): | ||
if not util.expandglobs: | ||||
return list(pats) | ||||
ret = [] | ||||
for p in pats: | ||||
kind, name = _match._patsplit(p, None) | ||||
if kind is None: | ||||
Steve Borho
|
r9118 | try: | ||
globbed = glob.glob(name) | ||||
except re.error: | ||||
globbed = [name] | ||||
Matt Mackall
|
r8614 | if globbed: | ||
ret.extend(globbed) | ||||
continue | ||||
ret.append(p) | ||||
return ret | ||||
Matt Mackall
|
r6579 | def match(repo, pats=[], opts={}, globbed=False, default='relpath'): | ||
Matt Mackall
|
r6575 | if not globbed and default == 'relpath': | ||
Matt Mackall
|
r8614 | pats = expandpats(pats or []) | ||
Matt Mackall
|
r6579 | m = _match.match(repo.root, repo.getcwd(), pats, | ||
opts.get('include'), opts.get('exclude'), default) | ||||
Matt Mackall
|
r6578 | def badfn(f, msg): | ||
repo.ui.warn("%s: %s\n" % (m.rel(f), msg)) | ||||
m.bad = badfn | ||||
Matt Mackall
|
r6579 | return m | ||
Vadim Gelfer
|
r2882 | |||
Matt Mackall
|
r6597 | def matchall(repo): | ||
return _match.always(repo.root, repo.getcwd()) | ||||
def matchfiles(repo, files): | ||||
return _match.exact(repo.root, repo.getcwd(), files) | ||||
Vadim Gelfer
|
r2883 | |||
Matt Mackall
|
r8989 | def findrenames(repo, added, removed, threshold): | ||
Erling Ellingsen
|
r4135 | '''find renamed files -- yields (before, after, score) tuples''' | ||
Matt Mackall
|
r6747 | ctx = repo['.'] | ||
Vadim Gelfer
|
r2958 | for a in added: | ||
aa = repo.wread(a) | ||||
Erling Ellingsen
|
r4135 | bestname, bestscore = None, threshold | ||
Vadim Gelfer
|
r2958 | for r in removed: | ||
Matt Mackall
|
r8989 | if r not in ctx: | ||
continue | ||||
Benoit Boissinot
|
r3971 | rr = ctx.filectx(r).data() | ||
Erling Ellingsen
|
r4135 | |||
# bdiff.blocks() returns blocks of matching lines | ||||
# count the number of bytes in each | ||||
equal = 0 | ||||
alines = mdiff.splitnewlines(aa) | ||||
matches = bdiff.blocks(aa, rr) | ||||
for x1,x2,y1,y2 in matches: | ||||
for line in alines[x1:x2]: | ||||
equal += len(line) | ||||
Thomas Arendsen Hein
|
r4472 | lengths = len(aa) + len(rr) | ||
if lengths: | ||||
myscore = equal*2.0 / lengths | ||||
if myscore >= bestscore: | ||||
bestname, bestscore = r, myscore | ||||
Erling Ellingsen
|
r4135 | if bestname: | ||
Vadim Gelfer
|
r2958 | yield bestname, a, bestscore | ||
Matt Mackall
|
r4917 | def addremove(repo, pats=[], opts={}, dry_run=None, similarity=None): | ||
Vadim Gelfer
|
r2883 | if dry_run is None: | ||
dry_run = opts.get('dry_run') | ||||
Vadim Gelfer
|
r2958 | if similarity is None: | ||
similarity = float(opts.get('similarity') or 0) | ||||
Matt Mackall
|
r8990 | # we'd use status here, except handling of symlinks and ignore is tricky | ||
added, unknown, deleted, removed = [], [], [], [] | ||||
Maxim Dounin
|
r6651 | audit_path = util.path_auditor(repo.root) | ||
Matt Mackall
|
r6579 | m = match(repo, pats, opts) | ||
Matt Mackall
|
r6586 | for abs in repo.walk(m): | ||
Alexis S. L. Carvalho
|
r4522 | target = repo.wjoin(abs) | ||
Maxim Dounin
|
r6651 | good = True | ||
try: | ||||
audit_path(abs) | ||||
except: | ||||
good = False | ||||
Matt Mackall
|
r6584 | rel = m.rel(abs) | ||
exact = m.exact(abs) | ||||
Patrick Mezard
|
r6656 | if good and abs not in repo.dirstate: | ||
Matt Mackall
|
r8988 | unknown.append(abs) | ||
Vadim Gelfer
|
r2883 | if repo.ui.verbose or not exact: | ||
repo.ui.status(_('adding %s\n') % ((pats and rel) or abs)) | ||||
Matt Mackall
|
r8990 | elif repo.dirstate[abs] != 'r' and (not good or not util.lexists(target) | ||
Maxim Dounin
|
r5487 | or (os.path.isdir(target) and not os.path.islink(target))): | ||
Matt Mackall
|
r8988 | deleted.append(abs) | ||
Vadim Gelfer
|
r2883 | if repo.ui.verbose or not exact: | ||
repo.ui.status(_('removing %s\n') % ((pats and rel) or abs)) | ||||
Matt Mackall
|
r8990 | # for finding renames | ||
elif repo.dirstate[abs] == 'r': | ||||
removed.append(abs) | ||||
elif repo.dirstate[abs] == 'a': | ||||
added.append(abs) | ||||
Vadim Gelfer
|
r2883 | if not dry_run: | ||
Matt Mackall
|
r8988 | repo.remove(deleted) | ||
repo.add(unknown) | ||||
Vadim Gelfer
|
r2958 | if similarity > 0: | ||
Matt Mackall
|
r8990 | for old, new, score in findrenames(repo, added + unknown, | ||
removed + deleted, similarity): | ||||
Matt Mackall
|
r8941 | if repo.ui.verbose or not m.exact(old) or not m.exact(new): | ||
Vadim Gelfer
|
r2958 | repo.ui.status(_('recording removal of %s as rename to %s ' | ||
'(%d%% similar)\n') % | ||||
Matt Mackall
|
r8941 | (m.rel(old), m.rel(new), score * 100)) | ||
Vadim Gelfer
|
r2958 | if not dry_run: | ||
Matt Mackall
|
r4917 | repo.copy(old, new) | ||
Matt Mackall
|
r3643 | |||
Matt Mackall
|
r5610 | def copy(ui, repo, pats, opts, rename=False): | ||
Matt Mackall
|
r5589 | # called with the repo lock held | ||
# | ||||
# hgsep => pathname that uses "/" to separate directories | ||||
# ossep => pathname that uses os.sep to separate directories | ||||
cwd = repo.getcwd() | ||||
targets = {} | ||||
Matt Mackall
|
r5607 | after = opts.get("after") | ||
dryrun = opts.get("dry_run") | ||||
Matt Mackall
|
r5589 | |||
Matt Mackall
|
r5605 | def walkpat(pat): | ||
srcs = [] | ||||
Matt Mackall
|
r6579 | m = match(repo, [pat], opts, globbed=True) | ||
Matt Mackall
|
r6586 | for abs in repo.walk(m): | ||
Matt Mackall
|
r5605 | state = repo.dirstate[abs] | ||
Matt Mackall
|
r6584 | rel = m.rel(abs) | ||
exact = m.exact(abs) | ||||
Matt Mackall
|
r5605 | if state in '?r': | ||
if exact and state == '?': | ||||
ui.warn(_('%s: not copying - file is not managed\n') % rel) | ||||
if exact and state == 'r': | ||||
ui.warn(_('%s: not copying - file has been marked for' | ||||
' remove\n') % rel) | ||||
continue | ||||
# abs: hgsep | ||||
# rel: ossep | ||||
srcs.append((abs, rel, exact)) | ||||
return srcs | ||||
Matt Mackall
|
r5589 | |||
# abssrc: hgsep | ||||
# relsrc: ossep | ||||
# otarget: ossep | ||||
Matt Mackall
|
r5605 | def copyfile(abssrc, relsrc, otarget, exact): | ||
Matt Mackall
|
r5589 | abstarget = util.canonpath(repo.root, cwd, otarget) | ||
reltarget = repo.pathto(abstarget, cwd) | ||||
Matt Mackall
|
r5607 | target = repo.wjoin(abstarget) | ||
Matt Mackall
|
r5589 | src = repo.wjoin(abssrc) | ||
Matt Mackall
|
r5608 | state = repo.dirstate[abstarget] | ||
Matt Mackall
|
r5607 | |||
# check for collisions | ||||
prevsrc = targets.get(abstarget) | ||||
Matt Mackall
|
r5589 | if prevsrc is not None: | ||
ui.warn(_('%s: not overwriting - %s collides with %s\n') % | ||||
(reltarget, repo.pathto(abssrc, cwd), | ||||
repo.pathto(prevsrc, cwd))) | ||||
return | ||||
Matt Mackall
|
r5607 | |||
# check for overwrites | ||||
Matt Mackall
|
r5608 | exists = os.path.exists(target) | ||
Martin Geisler
|
r8117 | if not after and exists or after and state in 'mn': | ||
Matt Mackall
|
r5589 | if not opts['force']: | ||
ui.warn(_('%s: not overwriting - file exists\n') % | ||||
reltarget) | ||||
return | ||||
Matt Mackall
|
r5607 | |||
if after: | ||||
Matt Mackall
|
r5608 | if not exists: | ||
Matt Mackall
|
r5589 | return | ||
Matt Mackall
|
r5608 | elif not dryrun: | ||
Matt Mackall
|
r5589 | try: | ||
Matt Mackall
|
r5608 | if exists: | ||
os.unlink(target) | ||||
targetdir = os.path.dirname(target) or '.' | ||||
if not os.path.isdir(targetdir): | ||||
os.makedirs(targetdir) | ||||
util.copyfile(src, target) | ||||
Matt Mackall
|
r5589 | except IOError, inst: | ||
if inst.errno == errno.ENOENT: | ||||
ui.warn(_('%s: deleted in working copy\n') % relsrc) | ||||
else: | ||||
ui.warn(_('%s: cannot copy - %s\n') % | ||||
(relsrc, inst.strerror)) | ||||
Matt Mackall
|
r5606 | return True # report a failure | ||
Matt Mackall
|
r5607 | |||
Matt Mackall
|
r5589 | if ui.verbose or not exact: | ||
Martin Geisler
|
r7894 | if rename: | ||
ui.status(_('moving %s to %s\n') % (relsrc, reltarget)) | ||||
else: | ||||
ui.status(_('copying %s to %s\n') % (relsrc, reltarget)) | ||||
Matt Mackall
|
r5608 | |||
Matt Mackall
|
r5589 | targets[abstarget] = abssrc | ||
Matt Mackall
|
r5607 | |||
# fix up dirstate | ||||
Matt Mackall
|
r5605 | origsrc = repo.dirstate.copied(abssrc) or abssrc | ||
Matt Mackall
|
r5604 | if abstarget == origsrc: # copying back a copy? | ||
Matt Mackall
|
r5608 | if state not in 'mn' and not dryrun: | ||
repo.dirstate.normallookup(abstarget) | ||||
Matt Mackall
|
r5604 | else: | ||
Matt Mackall
|
r7121 | if repo.dirstate[origsrc] == 'a' and origsrc == abssrc: | ||
Matt Mackall
|
r5589 | if not ui.quiet: | ||
ui.warn(_("%s has not been committed yet, so no copy " | ||||
"data will be stored for %s.\n") | ||||
% (repo.pathto(origsrc, cwd), reltarget)) | ||||
Matt Mackall
|
r7121 | if repo.dirstate[abstarget] in '?r' and not dryrun: | ||
Matt Mackall
|
r5589 | repo.add([abstarget]) | ||
Matt Mackall
|
r5607 | elif not dryrun: | ||
Matt Mackall
|
r5589 | repo.copy(origsrc, abstarget) | ||
Matt Mackall
|
r5610 | |||
if rename and not dryrun: | ||||
Alexis S. L. Carvalho
|
r6566 | repo.remove([abssrc], not after) | ||
Matt Mackall
|
r5589 | |||
# pat: ossep | ||||
# dest ossep | ||||
# srcs: list of (hgsep, hgsep, ossep, bool) | ||||
# return: function that takes hgsep and returns ossep | ||||
def targetpathfn(pat, dest, srcs): | ||||
if os.path.isdir(pat): | ||||
abspfx = util.canonpath(repo.root, cwd, pat) | ||||
abspfx = util.localpath(abspfx) | ||||
if destdirexists: | ||||
striplen = len(os.path.split(abspfx)[0]) | ||||
else: | ||||
striplen = len(abspfx) | ||||
if striplen: | ||||
striplen += len(os.sep) | ||||
res = lambda p: os.path.join(dest, util.localpath(p)[striplen:]) | ||||
elif destdirexists: | ||||
res = lambda p: os.path.join(dest, | ||||
os.path.basename(util.localpath(p))) | ||||
else: | ||||
res = lambda p: dest | ||||
return res | ||||
# pat: ossep | ||||
# dest ossep | ||||
# srcs: list of (hgsep, hgsep, ossep, bool) | ||||
# return: function that takes hgsep and returns ossep | ||||
def targetpathafterfn(pat, dest, srcs): | ||||
Matt Mackall
|
r8568 | if _match.patkind(pat): | ||
Matt Mackall
|
r5589 | # a mercurial pattern | ||
res = lambda p: os.path.join(dest, | ||||
os.path.basename(util.localpath(p))) | ||||
else: | ||||
abspfx = util.canonpath(repo.root, cwd, pat) | ||||
if len(abspfx) < len(srcs[0][0]): | ||||
# A directory. Either the target path contains the last | ||||
# component of the source path or it does not. | ||||
def evalpath(striplen): | ||||
score = 0 | ||||
for s in srcs: | ||||
t = os.path.join(dest, util.localpath(s[0])[striplen:]) | ||||
if os.path.exists(t): | ||||
score += 1 | ||||
return score | ||||
abspfx = util.localpath(abspfx) | ||||
striplen = len(abspfx) | ||||
if striplen: | ||||
striplen += len(os.sep) | ||||
if os.path.isdir(os.path.join(dest, os.path.split(abspfx)[1])): | ||||
score = evalpath(striplen) | ||||
striplen1 = len(os.path.split(abspfx)[0]) | ||||
if striplen1: | ||||
striplen1 += len(os.sep) | ||||
if evalpath(striplen1) > score: | ||||
striplen = striplen1 | ||||
res = lambda p: os.path.join(dest, | ||||
util.localpath(p)[striplen:]) | ||||
else: | ||||
# a file | ||||
if destdirexists: | ||||
res = lambda p: os.path.join(dest, | ||||
os.path.basename(util.localpath(p))) | ||||
else: | ||||
res = lambda p: dest | ||||
return res | ||||
Matt Mackall
|
r8614 | pats = expandpats(pats) | ||
Matt Mackall
|
r5589 | if not pats: | ||
raise util.Abort(_('no source or destination specified')) | ||||
if len(pats) == 1: | ||||
raise util.Abort(_('no destination specified')) | ||||
dest = pats.pop() | ||||
Alexis S. L. Carvalho
|
r6258 | destdirexists = os.path.isdir(dest) and not os.path.islink(dest) | ||
Matt Mackall
|
r5589 | if not destdirexists: | ||
Matt Mackall
|
r8568 | if len(pats) > 1 or _match.patkind(pats[0]): | ||
Matt Mackall
|
r5589 | raise util.Abort(_('with multiple sources, destination must be an ' | ||
'existing directory')) | ||||
Shun-ichi GOTO
|
r5843 | if util.endswithsep(dest): | ||
Matt Mackall
|
r5589 | raise util.Abort(_('destination %s is not a directory') % dest) | ||
Matt Mackall
|
r5607 | |||
tfn = targetpathfn | ||||
if after: | ||||
Matt Mackall
|
r5589 | tfn = targetpathafterfn | ||
copylist = [] | ||||
for pat in pats: | ||||
Matt Mackall
|
r5605 | srcs = walkpat(pat) | ||
Matt Mackall
|
r5589 | if not srcs: | ||
continue | ||||
copylist.append((tfn(pat, dest, srcs), srcs)) | ||||
if not copylist: | ||||
raise util.Abort(_('no files to copy')) | ||||
Matt Mackall
|
r5606 | errors = 0 | ||
Matt Mackall
|
r5589 | for targetpath, srcs in copylist: | ||
Matt Mackall
|
r5605 | for abssrc, relsrc, exact in srcs: | ||
Matt Mackall
|
r5606 | if copyfile(abssrc, relsrc, targetpath(abssrc), exact): | ||
errors += 1 | ||||
Matt Mackall
|
r5589 | |||
if errors: | ||||
ui.warn(_('(consider using --after)\n')) | ||||
Matt Mackall
|
r5609 | |||
Matt Mackall
|
r5610 | return errors | ||
Matt Mackall
|
r5589 | |||
Nicolas Dumazet
|
r9513 | def service(opts, parentfn=None, initfn=None, runfn=None, logfile=None, | ||
runargs=None): | ||||
Bryan O'Sullivan
|
r4380 | '''Run a command as a service.''' | ||
if opts['daemon'] and not opts['daemon_pipefds']: | ||||
rfd, wfd = os.pipe() | ||||
Nicolas Dumazet
|
r9513 | if not runargs: | ||
runargs = sys.argv[:] | ||||
runargs.append('--daemon-pipefds=%d,%d' % (rfd, wfd)) | ||||
Bryan O'Sullivan
|
r5797 | # Don't pass --cwd to the child process, because we've already | ||
# changed directory. | ||||
Nicolas Dumazet
|
r9513 | for i in xrange(1,len(runargs)): | ||
if runargs[i].startswith('--cwd='): | ||||
del runargs[i] | ||||
Bryan O'Sullivan
|
r5797 | break | ||
Nicolas Dumazet
|
r9513 | elif runargs[i].startswith('--cwd'): | ||
del runargs[i:i+2] | ||||
Bryan O'Sullivan
|
r5797 | break | ||
Bryan O'Sullivan
|
r4380 | pid = os.spawnvp(os.P_NOWAIT | getattr(os, 'P_DETACH', 0), | ||
Nicolas Dumazet
|
r9513 | runargs[0], runargs) | ||
Bryan O'Sullivan
|
r4380 | os.close(wfd) | ||
os.read(rfd, 1) | ||||
if parentfn: | ||||
return parentfn(pid) | ||||
else: | ||||
os._exit(0) | ||||
if initfn: | ||||
initfn() | ||||
if opts['pid_file']: | ||||
fp = open(opts['pid_file'], 'w') | ||||
fp.write(str(os.getpid()) + '\n') | ||||
fp.close() | ||||
if opts['daemon_pipefds']: | ||||
rfd, wfd = [int(x) for x in opts['daemon_pipefds'].split(',')] | ||||
os.close(rfd) | ||||
try: | ||||
os.setsid() | ||||
except AttributeError: | ||||
pass | ||||
os.write(wfd, 'y') | ||||
os.close(wfd) | ||||
sys.stdout.flush() | ||||
sys.stderr.flush() | ||||
Nicolas Dumazet
|
r8789 | |||
nullfd = os.open(util.nulldev, os.O_RDWR) | ||||
logfilefd = nullfd | ||||
if logfile: | ||||
logfilefd = os.open(logfile, os.O_RDWR | os.O_CREAT | os.O_APPEND) | ||||
os.dup2(nullfd, 0) | ||||
os.dup2(logfilefd, 1) | ||||
os.dup2(logfilefd, 2) | ||||
if nullfd not in (0, 1, 2): | ||||
os.close(nullfd) | ||||
if logfile and logfilefd not in (0, 1, 2): | ||||
os.close(logfilefd) | ||||
Bryan O'Sullivan
|
r4380 | |||
if runfn: | ||||
return runfn() | ||||
Matt Mackall
|
r3643 | class changeset_printer(object): | ||
'''show changeset information when templating not requested.''' | ||||
Jim Correia
|
r7762 | def __init__(self, ui, repo, patch, diffopts, buffered): | ||
Matt Mackall
|
r3643 | self.ui = ui | ||
self.repo = repo | ||||
Matt Mackall
|
r3645 | self.buffered = buffered | ||
self.patch = patch | ||||
Jim Correia
|
r7762 | self.diffopts = diffopts | ||
Matt Mackall
|
r3738 | self.header = {} | ||
self.hunk = {} | ||||
self.lastheader = None | ||||
Matt Mackall
|
r3645 | |||
def flush(self, rev): | ||||
Matt Mackall
|
r3738 | if rev in self.header: | ||
h = self.header[rev] | ||||
if h != self.lastheader: | ||||
self.lastheader = h | ||||
self.ui.write(h) | ||||
del self.header[rev] | ||||
if rev in self.hunk: | ||||
self.ui.write(self.hunk[rev]) | ||||
del self.hunk[rev] | ||||
return 1 | ||||
return 0 | ||||
Matt Mackall
|
r3643 | |||
Dirkjan Ochtman
|
r7369 | def show(self, ctx, copies=(), **props): | ||
Matt Mackall
|
r3738 | if self.buffered: | ||
self.ui.pushbuffer() | ||||
Dirkjan Ochtman
|
r7369 | self._show(ctx, copies, props) | ||
self.hunk[ctx.rev()] = self.ui.popbuffer() | ||||
Matt Mackall
|
r3738 | else: | ||
Dirkjan Ochtman
|
r7369 | self._show(ctx, copies, props) | ||
Matt Mackall
|
r3738 | |||
Dirkjan Ochtman
|
r7369 | def _show(self, ctx, copies, props): | ||
Matt Mackall
|
r3643 | '''show a single changeset or file revision''' | ||
Dirkjan Ochtman
|
r7369 | changenode = ctx.node() | ||
rev = ctx.rev() | ||||
Matt Mackall
|
r3643 | |||
if self.ui.quiet: | ||||
self.ui.write("%d:%s\n" % (rev, short(changenode))) | ||||
return | ||||
Dirkjan Ochtman
|
r7369 | log = self.repo.changelog | ||
Greg Ward
|
r9547 | date = util.datestr(ctx.date()) | ||
Matt Mackall
|
r3643 | |||
hexfunc = self.ui.debugflag and hex or short | ||||
Thomas Arendsen Hein
|
r4825 | parents = [(p, hexfunc(log.node(p))) | ||
for p in self._meaningful_parentrevs(log, rev)] | ||||
Matt Mackall
|
r3643 | |||
self.ui.write(_("changeset: %d:%s\n") % (rev, hexfunc(changenode))) | ||||
Adrian Buehlmann
|
r9637 | branch = ctx.branch() | ||
Alexis S. L. Carvalho
|
r4176 | # don't show the default branch name | ||
if branch != 'default': | ||||
Matt Mackall
|
r7948 | branch = encoding.tolocal(branch) | ||
Matt Mackall
|
r3643 | self.ui.write(_("branch: %s\n") % branch) | ||
for tag in self.repo.nodetags(changenode): | ||||
self.ui.write(_("tag: %s\n") % tag) | ||||
for parent in parents: | ||||
self.ui.write(_("parent: %d:%s\n") % parent) | ||||
if self.ui.debugflag: | ||||
Greg Ward
|
r9547 | mnode = ctx.manifestnode() | ||
Matt Mackall
|
r3643 | self.ui.write(_("manifest: %d:%s\n") % | ||
Greg Ward
|
r9547 | (self.repo.manifest.rev(mnode), hex(mnode))) | ||
self.ui.write(_("user: %s\n") % ctx.user()) | ||||
Matt Mackall
|
r3643 | self.ui.write(_("date: %s\n") % date) | ||
if self.ui.debugflag: | ||||
files = self.repo.status(log.parents(changenode)[0], changenode)[:3] | ||||
for key, value in zip([_("files:"), _("files+:"), _("files-:")], | ||||
files): | ||||
if value: | ||||
self.ui.write("%-12s %s\n" % (key, " ".join(value))) | ||||
Greg Ward
|
r9547 | elif ctx.files() and self.ui.verbose: | ||
self.ui.write(_("files: %s\n") % " ".join(ctx.files())) | ||||
Matt Mackall
|
r3643 | if copies and self.ui.verbose: | ||
copies = ['%s (%s)' % c for c in copies] | ||||
self.ui.write(_("copies: %s\n") % ' '.join(copies)) | ||||
Adrian Buehlmann
|
r9637 | extra = ctx.extra() | ||
Matt Mackall
|
r3643 | if extra and self.ui.debugflag: | ||
Matt Mackall
|
r8209 | for key, value in sorted(extra.items()): | ||
Matt Mackall
|
r3643 | self.ui.write(_("extra: %s=%s\n") | ||
% (key, value.encode('string_escape'))) | ||||
Greg Ward
|
r9547 | description = ctx.description().strip() | ||
Matt Mackall
|
r3643 | if description: | ||
if self.ui.verbose: | ||||
self.ui.write(_("description:\n")) | ||||
self.ui.write(description) | ||||
self.ui.write("\n\n") | ||||
else: | ||||
self.ui.write(_("summary: %s\n") % | ||||
description.splitlines()[0]) | ||||
self.ui.write("\n") | ||||
Matt Mackall
|
r3645 | self.showpatch(changenode) | ||
def showpatch(self, node): | ||||
if self.patch: | ||||
prev = self.repo.changelog.parents(node)[0] | ||||
Dirkjan Ochtman
|
r7308 | chunks = patch.diff(self.repo, prev, node, match=self.patch, | ||
Jim Correia
|
r7762 | opts=patch.diffopts(self.ui, self.diffopts)) | ||
Dirkjan Ochtman
|
r7308 | for chunk in chunks: | ||
self.ui.write(chunk) | ||||
Matt Mackall
|
r3645 | self.ui.write("\n") | ||
Thomas Arendsen Hein
|
r4825 | def _meaningful_parentrevs(self, log, rev): | ||
"""Return list of meaningful (or all if debug) parentrevs for rev. | ||||
For merges (two non-nullrev revisions) both parents are meaningful. | ||||
Otherwise the first parent revision is considered meaningful if it | ||||
is not the preceding revision. | ||||
""" | ||||
parents = log.parentrevs(rev) | ||||
if not self.ui.debugflag and parents[1] == nullrev: | ||||
if parents[0] >= rev - 1: | ||||
parents = [] | ||||
else: | ||||
parents = [parents[0]] | ||||
return parents | ||||
Matt Mackall
|
r3645 | class changeset_templater(changeset_printer): | ||
Matt Mackall
|
r3643 | '''format changeset information.''' | ||
Jim Correia
|
r7762 | def __init__(self, ui, repo, patch, diffopts, mapfile, buffered): | ||
changeset_printer.__init__(self, ui, repo, patch, diffopts, buffered) | ||||
Dirkjan Ochtman
|
r8360 | formatnode = ui.debugflag and (lambda x: x) or (lambda x: x[:12]) | ||
self.t = templater.templater(mapfile, {'formatnode': formatnode}, | ||||
Alexis S. L. Carvalho
|
r4352 | cache={ | ||
'parent': '{rev}:{node|formatnode} ', | ||||
'manifest': '{rev}:{node|formatnode}', | ||||
'filecopy': '{name} ({source})'}) | ||||
Mads Kiilerich
|
r9536 | # Cache mapping from rev to a tuple with tag date, tag | ||
# distance and tag name | ||||
self._latesttagcache = {-1: (0, 0, 'null')} | ||||
Matt Mackall
|
r3643 | |||
def use_template(self, t): | ||||
'''set template string to use''' | ||||
self.t.cache['changeset'] = t | ||||
Alexander Solovyov
|
r7878 | def _meaningful_parentrevs(self, ctx): | ||
"""Return list of meaningful (or all if debug) parentrevs for rev. | ||||
""" | ||||
parents = ctx.parents() | ||||
if len(parents) > 1: | ||||
return parents | ||||
if self.ui.debugflag: | ||||
return [parents[0], self.repo['null']] | ||||
if parents[0].rev() >= ctx.rev() - 1: | ||||
return [] | ||||
return parents | ||||
Mads Kiilerich
|
r9536 | def _latesttaginfo(self, rev): | ||
'''return date, distance and name for the latest tag of rev''' | ||||
todo = [rev] | ||||
while todo: | ||||
rev = todo.pop() | ||||
if rev in self._latesttagcache: | ||||
continue | ||||
ctx = self.repo[rev] | ||||
tags = [t for t in ctx.tags() if self.repo.tagtype(t) == 'global'] | ||||
if tags: | ||||
self._latesttagcache[rev] = ctx.date()[0], 0, ':'.join(sorted(tags)) | ||||
continue | ||||
try: | ||||
# The tuples are laid out so the right one can be found by comparison. | ||||
pdate, pdist, ptag = max( | ||||
self._latesttagcache[p.rev()] for p in ctx.parents()) | ||||
except KeyError: | ||||
# Cache miss - recurse | ||||
todo.append(rev) | ||||
todo.extend(p.rev() for p in ctx.parents()) | ||||
continue | ||||
self._latesttagcache[rev] = pdate, pdist + 1, ptag | ||||
return self._latesttagcache[rev] | ||||
Dirkjan Ochtman
|
r7369 | def _show(self, ctx, copies, props): | ||
Matt Mackall
|
r3643 | '''show a single changeset or file revision''' | ||
def showlist(name, values, plural=None, **args): | ||||
'''expand set of values. | ||||
name is name of key in template map. | ||||
values is list of strings or dicts. | ||||
plural is plural of name, if not simply name + 's'. | ||||
expansion works like this, given name 'foo'. | ||||
if values is empty, expand 'no_foos'. | ||||
if 'foo' not in template map, return values as a string, | ||||
joined by space. | ||||
expand 'start_foos'. | ||||
for each value, expand 'foo'. if 'last_foo' in template | ||||
map, expand it instead of 'foo' for last key. | ||||
expand 'end_foos'. | ||||
''' | ||||
if plural: names = plural | ||||
else: names = name + 's' | ||||
if not values: | ||||
noname = 'no_' + names | ||||
if noname in self.t: | ||||
yield self.t(noname, **args) | ||||
return | ||||
if name not in self.t: | ||||
if isinstance(values[0], str): | ||||
yield ' '.join(values) | ||||
else: | ||||
for v in values: | ||||
yield dict(v, **args) | ||||
return | ||||
startname = 'start_' + names | ||||
if startname in self.t: | ||||
yield self.t(startname, **args) | ||||
vargs = args.copy() | ||||
def one(v, tag=name): | ||||
try: | ||||
vargs.update(v) | ||||
except (AttributeError, ValueError): | ||||
try: | ||||
for a, b in v: | ||||
vargs[a] = b | ||||
except ValueError: | ||||
vargs[name] = v | ||||
return self.t(tag, **vargs) | ||||
lastname = 'last_' + name | ||||
if lastname in self.t: | ||||
last = values.pop() | ||||
else: | ||||
last = None | ||||
for v in values: | ||||
yield one(v) | ||||
if last is not None: | ||||
yield one(last, tag=lastname) | ||||
endname = 'end_' + names | ||||
if endname in self.t: | ||||
yield self.t(endname, **args) | ||||
def showbranches(**args): | ||||
Alexander Solovyov
|
r7878 | branch = ctx.branch() | ||
Alexis S. L. Carvalho
|
r4176 | if branch != 'default': | ||
Matt Mackall
|
r7948 | branch = encoding.tolocal(branch) | ||
Matt Mackall
|
r3648 | return showlist('branch', [branch], plural='branches', **args) | ||
Matt Mackall
|
r3643 | |||
def showparents(**args): | ||||
Alexander Solovyov
|
r7878 | parents = [[('rev', p.rev()), ('node', p.hex())] | ||
for p in self._meaningful_parentrevs(ctx)] | ||||
Matt Mackall
|
r3643 | return showlist('parent', parents, **args) | ||
def showtags(**args): | ||||
Alexander Solovyov
|
r7878 | return showlist('tag', ctx.tags(), **args) | ||
Matt Mackall
|
r3643 | |||
def showextras(**args): | ||||
Matt Mackall
|
r8209 | for key, value in sorted(ctx.extra().items()): | ||
Matt Mackall
|
r3643 | args = args.copy() | ||
args.update(dict(key=key, value=value)) | ||||
yield self.t('extra', **args) | ||||
def showcopies(**args): | ||||
c = [{'name': x[0], 'source': x[1]} for x in copies] | ||||
return showlist('file_copy', c, plural='file_copies', **args) | ||||
Thomas Arendsen Hein
|
r5760 | |||
Patrick Mezard
|
r5545 | files = [] | ||
def getfiles(): | ||||
Thomas Arendsen Hein
|
r5760 | if not files: | ||
Alexander Solovyov
|
r7878 | files[:] = self.repo.status(ctx.parents()[0].node(), | ||
ctx.node())[:3] | ||||
Patrick Mezard
|
r5545 | return files | ||
Patrick Mezard
|
r5550 | def showfiles(**args): | ||
Alexander Solovyov
|
r7878 | return showlist('file', ctx.files(), **args) | ||
Patrick Mezard
|
r5550 | def showmods(**args): | ||
return showlist('file_mod', getfiles()[0], **args) | ||||
Patrick Mezard
|
r5545 | def showadds(**args): | ||
return showlist('file_add', getfiles()[1], **args) | ||||
def showdels(**args): | ||||
return showlist('file_del', getfiles()[2], **args) | ||||
def showmanifest(**args): | ||||
args = args.copy() | ||||
Alexander Solovyov
|
r7878 | args.update(dict(rev=self.repo.manifest.rev(ctx.changeset()[0]), | ||
node=hex(ctx.changeset()[0]))) | ||||
Patrick Mezard
|
r5545 | return self.t('manifest', **args) | ||
Matt Mackall
|
r3643 | |||
Alexander Solovyov <piranha at piranha.org.ua>
|
r7879 | def showdiffstat(**args): | ||
diff = patch.diff(self.repo, ctx.parents()[0].node(), ctx.node()) | ||||
files, adds, removes = 0, 0, 0 | ||||
for i in patch.diffstatdata(util.iterlines(diff)): | ||||
files += 1 | ||||
adds += i[1] | ||||
removes += i[2] | ||||
return '%s: +%s/-%s' % (files, adds, removes) | ||||
Mads Kiilerich
|
r9536 | def showlatesttag(**args): | ||
return self._latesttaginfo(ctx.rev())[2] | ||||
def showlatesttagdistance(**args): | ||||
return self._latesttaginfo(ctx.rev())[1] | ||||
Matt Mackall
|
r3643 | defprops = { | ||
Alexander Solovyov
|
r7878 | 'author': ctx.user(), | ||
Matt Mackall
|
r3643 | 'branches': showbranches, | ||
Alexander Solovyov
|
r7878 | 'date': ctx.date(), | ||
'desc': ctx.description().strip(), | ||||
Matt Mackall
|
r3643 | 'file_adds': showadds, | ||
'file_dels': showdels, | ||||
Patrick Mezard
|
r5550 | 'file_mods': showmods, | ||
Matt Mackall
|
r3643 | 'files': showfiles, | ||
'file_copies': showcopies, | ||||
'manifest': showmanifest, | ||||
Alexander Solovyov
|
r7878 | 'node': ctx.hex(), | ||
Matt Mackall
|
r3643 | 'parents': showparents, | ||
Alexander Solovyov
|
r7878 | 'rev': ctx.rev(), | ||
Matt Mackall
|
r3643 | 'tags': showtags, | ||
'extras': showextras, | ||||
Alexander Solovyov <piranha at piranha.org.ua>
|
r7879 | 'diffstat': showdiffstat, | ||
Mads Kiilerich
|
r9536 | 'latesttag': showlatesttag, | ||
'latesttagdistance': showlatesttagdistance, | ||||
Matt Mackall
|
r3643 | } | ||
props = props.copy() | ||||
props.update(defprops) | ||||
Dirkjan Ochtman
|
r8013 | # find correct templates for current mode | ||
tmplmodes = [ | ||||
(True, None), | ||||
(self.ui.verbose, 'verbose'), | ||||
(self.ui.quiet, 'quiet'), | ||||
(self.ui.debugflag, 'debug'), | ||||
] | ||||
types = {'header': '', 'changeset': 'changeset'} | ||||
for mode, postfix in tmplmodes: | ||||
for type in types: | ||||
cur = postfix and ('%s_%s' % (type, postfix)) or type | ||||
if mode and cur in self.t: | ||||
types[type] = cur | ||||
Matt Mackall
|
r3643 | try: | ||
Dirkjan Ochtman
|
r8013 | |||
# write header | ||||
if types['header']: | ||||
h = templater.stringify(self.t(types['header'], **props)) | ||||
Matt Mackall
|
r3645 | if self.buffered: | ||
Alexander Solovyov
|
r7878 | self.header[ctx.rev()] = h | ||
Matt Mackall
|
r3645 | else: | ||
self.ui.write(h) | ||||
Dirkjan Ochtman
|
r8013 | |||
# write changeset metadata, then patch if requested | ||||
key = types['changeset'] | ||||
Matt Mackall
|
r3645 | self.ui.write(templater.stringify(self.t(key, **props))) | ||
Alexander Solovyov
|
r7878 | self.showpatch(ctx.node()) | ||
Dirkjan Ochtman
|
r8013 | |||
Matt Mackall
|
r3643 | except KeyError, inst: | ||
Dirkjan Ochtman
|
r8013 | msg = _("%s: no key named '%s'") | ||
raise util.Abort(msg % (self.t.mapfile, inst.args[0])) | ||||
Matt Mackall
|
r3643 | except SyntaxError, inst: | ||
raise util.Abort(_('%s: %s') % (self.t.mapfile, inst.args[0])) | ||||
Matt Mackall
|
r3837 | def show_changeset(ui, repo, opts, buffered=False, matchfn=False): | ||
Matt Mackall
|
r3643 | """show one changeset using template or regular display. | ||
Display format will be the first non-empty hit of: | ||||
1. option 'template' | ||||
2. option 'style' | ||||
3. [ui] setting 'logtemplate' | ||||
4. [ui] setting 'style' | ||||
If all of these values are either the unset or the empty string, | ||||
regular display via changeset_printer() is done. | ||||
""" | ||||
# options | ||||
Matt Mackall
|
r3837 | patch = False | ||
if opts.get('patch'): | ||||
Matt Mackall
|
r6597 | patch = matchfn or matchall(repo) | ||
Matt Mackall
|
r3837 | |||
Matt Mackall
|
r3643 | tmpl = opts.get('template') | ||
Dirkjan Ochtman
|
r7967 | style = None | ||
Matt Mackall
|
r3643 | if tmpl: | ||
tmpl = templater.parsestring(tmpl, quoted=False) | ||||
else: | ||||
Dirkjan Ochtman
|
r7967 | style = opts.get('style') | ||
# ui settings | ||||
if not (tmpl or style): | ||||
tmpl = ui.config('ui', 'logtemplate') | ||||
if tmpl: | ||||
tmpl = templater.parsestring(tmpl) | ||||
else: | ||||
style = ui.config('ui', 'style') | ||||
if not (tmpl or style): | ||||
return changeset_printer(ui, repo, patch, opts, buffered) | ||||
Matt Mackall
|
r3643 | |||
Dirkjan Ochtman
|
r7967 | mapfile = None | ||
if style and not tmpl: | ||||
mapfile = style | ||||
if not os.path.split(mapfile)[0]: | ||||
mapname = (templater.templatepath('map-cmdline.' + mapfile) | ||||
or templater.templatepath(mapfile)) | ||||
if mapname: mapfile = mapname | ||||
try: | ||||
t = changeset_templater(ui, repo, patch, opts, mapfile, buffered) | ||||
except SyntaxError, inst: | ||||
raise util.Abort(inst.args[0]) | ||||
if tmpl: t.use_template(tmpl) | ||||
return t | ||||
Matt Mackall
|
r3643 | |||
Matt Mackall
|
r3814 | def finddate(ui, repo, date): | ||
"""Find the tipmost changeset that matches the given date spec""" | ||||
Dirkjan Ochtman
|
r9667 | |||
mark.williamson@cl.cam.ac.uk
|
r5836 | df = util.matchdate(date) | ||
Matt Mackall
|
r9652 | m = matchall(repo) | ||
Matt Mackall
|
r3814 | results = {} | ||
Matt Mackall
|
r9662 | |||
def prep(ctx, fns): | ||||
d = ctx.date() | ||||
if df(d[0]): | ||||
Dirkjan Ochtman
|
r9668 | results[ctx.rev()] = d | ||
Matt Mackall
|
r9662 | |||
Dirkjan Ochtman
|
r9667 | for ctx in walkchangerevs(repo, m, {'rev': None}, prep): | ||
Matt Mackall
|
r9662 | rev = ctx.rev() | ||
if rev in results: | ||||
ui.status(_("Found revision %s from %s\n") % | ||||
(rev, util.datestr(results[rev]))) | ||||
return str(rev) | ||||
Matt Mackall
|
r3814 | |||
raise util.Abort(_("revision matching date not found")) | ||||
Matt Mackall
|
r9665 | def walkchangerevs(repo, match, opts, prepare): | ||
timeless
|
r7807 | '''Iterate over files and the revs in which they changed. | ||
Matt Mackall
|
r3650 | |||
Callers most commonly need to iterate backwards over the history | ||||
timeless
|
r7807 | in which they are interested. Doing so has awful (quadratic-looking) | ||
Matt Mackall
|
r3650 | performance, so we use iterators in a "windowed" way. | ||
We walk a window of revisions in the desired order. Within the | ||||
window, we first walk forwards to gather data, then in the desired | ||||
order (usually backwards) to display it. | ||||
Matt Mackall
|
r9662 | This function returns an iterator yielding contexts. Before | ||
yielding each context, the iterator will first call the prepare | ||||
function on each context in the window in forward order.''' | ||||
Matt Mackall
|
r3650 | |||
def increasing_windows(start, end, windowsize=8, sizelimit=512): | ||||
if start < end: | ||||
while start < end: | ||||
yield start, min(windowsize, end-start) | ||||
start += windowsize | ||||
if windowsize < sizelimit: | ||||
windowsize *= 2 | ||||
else: | ||||
while start > end: | ||||
yield start, min(windowsize, start-end-1) | ||||
start -= windowsize | ||||
if windowsize < sizelimit: | ||||
windowsize *= 2 | ||||
follow = opts.get('follow') or opts.get('follow_first') | ||||
Matt Mackall
|
r6750 | if not len(repo): | ||
Matt Mackall
|
r9652 | return [] | ||
Matt Mackall
|
r3650 | |||
if follow: | ||||
Matt Mackall
|
r6747 | defrange = '%s:0' % repo['.'].rev() | ||
Matt Mackall
|
r3650 | else: | ||
Alexis S. L. Carvalho
|
r6145 | defrange = '-1:0' | ||
Thomas Arendsen Hein
|
r3707 | revs = revrange(repo, opts['rev'] or [defrange]) | ||
Martin Geisler
|
r8152 | wanted = set() | ||
Matt Mackall
|
r9652 | slowpath = match.anypats() or (match.files() and opts.get('removed')) | ||
Matt Mackall
|
r3650 | fncache = {} | ||
Matt Mackall
|
r9655 | change = util.cachefunc(repo.changectx) | ||
Matt Mackall
|
r3650 | |||
Matt Mackall
|
r9652 | if not slowpath and not match.files(): | ||
Matt Mackall
|
r3650 | # No files, no patterns. Display all revs. | ||
Martin Geisler
|
r8152 | wanted = set(revs) | ||
Matt Mackall
|
r3650 | copies = [] | ||
Matt Mackall
|
r9665 | |||
Matt Mackall
|
r3650 | if not slowpath: | ||
# Only files, no patterns. Check the history of each file. | ||||
def filerevgen(filelog, node): | ||||
Matt Mackall
|
r6750 | cl_count = len(repo) | ||
Matt Mackall
|
r3650 | if node is None: | ||
Matt Mackall
|
r6750 | last = len(filelog) - 1 | ||
Matt Mackall
|
r3650 | else: | ||
last = filelog.rev(node) | ||||
for i, window in increasing_windows(last, nullrev): | ||||
revs = [] | ||||
for j in xrange(i - window, i + 1): | ||||
n = filelog.node(j) | ||||
Matt Mackall
|
r7361 | revs.append((filelog.linkrev(j), | ||
Matt Mackall
|
r3650 | follow and filelog.renamed(n))) | ||
Matt Mackall
|
r8210 | for rev in reversed(revs): | ||
Matt Mackall
|
r3650 | # only yield rev for which we have the changelog, it can | ||
# happen while doing "hg log" during a pull or commit | ||||
if rev[0] < cl_count: | ||||
yield rev | ||||
def iterfiles(): | ||||
Matt Mackall
|
r9652 | for filename in match.files(): | ||
Matt Mackall
|
r3650 | yield filename, None | ||
for filename_node in copies: | ||||
yield filename_node | ||||
minrev, maxrev = min(revs), max(revs) | ||||
for file_, node in iterfiles(): | ||||
filelog = repo.file(file_) | ||||
Matt Mackall
|
r6750 | if not len(filelog): | ||
Patrick Mezard
|
r6536 | if node is None: | ||
# A zero count may be a directory or deleted file, so | ||||
# try to find matching entries on the slow path. | ||||
Brendan Cully
|
r7404 | if follow: | ||
raise util.Abort(_('cannot follow nonexistent file: "%s"') % file_) | ||||
Patrick Mezard
|
r6536 | slowpath = True | ||
break | ||||
else: | ||||
continue | ||||
Matt Mackall
|
r3650 | for rev, copied in filerevgen(filelog, node): | ||
if rev <= maxrev: | ||||
if rev < minrev: | ||||
break | ||||
fncache.setdefault(rev, []) | ||||
fncache[rev].append(file_) | ||||
Martin Geisler
|
r8152 | wanted.add(rev) | ||
Matt Mackall
|
r3650 | if follow and copied: | ||
copies.append(copied) | ||||
if slowpath: | ||||
if follow: | ||||
raise util.Abort(_('can only follow copies/renames for explicit ' | ||||
timeless
|
r8761 | 'filenames')) | ||
Matt Mackall
|
r3650 | |||
# The slow path checks files modified in every changeset. | ||||
def changerevgen(): | ||||
Matt Mackall
|
r6750 | for i, window in increasing_windows(len(repo) - 1, nullrev): | ||
Matt Mackall
|
r3650 | for j in xrange(i - window, i + 1): | ||
Dirkjan Ochtman
|
r9367 | yield change(j) | ||
Matt Mackall
|
r3650 | |||
Dirkjan Ochtman
|
r9367 | for ctx in changerevgen(): | ||
Matt Mackall
|
r9652 | matches = filter(match, ctx.files()) | ||
Matt Mackall
|
r3650 | if matches: | ||
Dirkjan Ochtman
|
r9367 | fncache[ctx.rev()] = matches | ||
wanted.add(ctx.rev()) | ||||
Matt Mackall
|
r3650 | |||
Benoit Boissinot
|
r8778 | class followfilter(object): | ||
Matt Mackall
|
r3650 | def __init__(self, onlyfirst=False): | ||
self.startrev = nullrev | ||||
self.roots = [] | ||||
self.onlyfirst = onlyfirst | ||||
def match(self, rev): | ||||
def realparents(rev): | ||||
if self.onlyfirst: | ||||
return repo.changelog.parentrevs(rev)[0:1] | ||||
else: | ||||
return filter(lambda x: x != nullrev, | ||||
repo.changelog.parentrevs(rev)) | ||||
if self.startrev == nullrev: | ||||
self.startrev = rev | ||||
return True | ||||
if rev > self.startrev: | ||||
# forward: all descendants | ||||
if not self.roots: | ||||
self.roots.append(self.startrev) | ||||
for parent in realparents(rev): | ||||
if parent in self.roots: | ||||
self.roots.append(rev) | ||||
return True | ||||
else: | ||||
# backwards: all parents | ||||
if not self.roots: | ||||
self.roots.extend(realparents(self.startrev)) | ||||
if rev in self.roots: | ||||
self.roots.remove(rev) | ||||
self.roots.extend(realparents(rev)) | ||||
return True | ||||
return False | ||||
# it might be worthwhile to do this in the iterator if the rev range | ||||
# is descending and the prune args are all within that range | ||||
for rev in opts.get('prune', ()): | ||||
rev = repo.changelog.rev(repo.lookup(rev)) | ||||
ff = followfilter() | ||||
stop = min(revs[0], revs[-1]) | ||||
for x in xrange(rev, stop-1, -1): | ||||
Martin Geisler
|
r8152 | if ff.match(x): | ||
wanted.discard(x) | ||||
Matt Mackall
|
r3650 | |||
def iterate(): | ||||
Matt Mackall
|
r9652 | if follow and not match.files(): | ||
Matt Mackall
|
r3650 | ff = followfilter(onlyfirst=opts.get('follow_first')) | ||
def want(rev): | ||||
Martin Geisler
|
r8119 | return ff.match(rev) and rev in wanted | ||
Matt Mackall
|
r3650 | else: | ||
def want(rev): | ||||
return rev in wanted | ||||
for i, window in increasing_windows(0, len(revs)): | ||||
Matt Mackall
|
r9664 | change = util.cachefunc(repo.changectx) | ||
Matt Mackall
|
r3650 | nrevs = [rev for rev in revs[i:i+window] if want(rev)] | ||
Matt Mackall
|
r8209 | for rev in sorted(nrevs): | ||
Matt Mackall
|
r3650 | fns = fncache.get(rev) | ||
Matt Mackall
|
r9654 | ctx = change(rev) | ||
Matt Mackall
|
r3650 | if not fns: | ||
def fns_generator(): | ||||
Matt Mackall
|
r9654 | for f in ctx.files(): | ||
Matt Mackall
|
r9652 | if match(f): | ||
Matt Mackall
|
r3650 | yield f | ||
fns = fns_generator() | ||||
Matt Mackall
|
r9662 | prepare(ctx, fns) | ||
Matt Mackall
|
r3650 | for rev in nrevs: | ||
Matt Mackall
|
r9662 | yield change(rev) | ||
Matt Mackall
|
r9652 | return iterate() | ||
Bryan O'Sullivan
|
r5034 | |||
def commit(ui, repo, commitfunc, pats, opts): | ||||
'''commit the specified files or all outstanding changes''' | ||||
Thomas Arendsen Hein
|
r6139 | date = opts.get('date') | ||
if date: | ||||
opts['date'] = util.parsedate(date) | ||||
Bryan O'Sullivan
|
r5034 | message = logmessage(opts) | ||
Kirill Smelkov
|
r5829 | # extract addremove carefully -- this function can be called from a command | ||
# that doesn't support addremove | ||||
if opts.get('addremove'): | ||||
Bryan O'Sullivan
|
r5034 | addremove(repo, pats, opts) | ||
Kirill Smelkov
|
r5829 | |||
Matt Mackall
|
r8709 | return commitfunc(ui, repo, message, match(repo, pats, opts), opts) | ||
Matt Mackall
|
r8407 | |||
Matt Mackall
|
r8994 | def commiteditor(repo, ctx, subs): | ||
Matt Mackall
|
r8407 | if ctx.description(): | ||
return ctx.description() | ||||
Matt Mackall
|
r8994 | return commitforceeditor(repo, ctx, subs) | ||
Matt Mackall
|
r8407 | |||
Matt Mackall
|
r8994 | def commitforceeditor(repo, ctx, subs): | ||
Matt Mackall
|
r8407 | edittext = [] | ||
Matt Mackall
|
r8707 | modified, added, removed = ctx.modified(), ctx.added(), ctx.removed() | ||
Matt Mackall
|
r8407 | if ctx.description(): | ||
edittext.append(ctx.description()) | ||||
edittext.append("") | ||||
edittext.append("") # Empty line between message and comments. | ||||
edittext.append(_("HG: Enter commit message." | ||||
" Lines beginning with 'HG:' are removed.")) | ||||
Martin Geisler
|
r8535 | edittext.append(_("HG: Leave message empty to abort commit.")) | ||
Matt Mackall
|
r8407 | edittext.append("HG: --") | ||
edittext.append(_("HG: user: %s") % ctx.user()) | ||||
if ctx.p2(): | ||||
edittext.append(_("HG: branch merge")) | ||||
if ctx.branch(): | ||||
edittext.append(_("HG: branch '%s'") | ||||
% encoding.tolocal(ctx.branch())) | ||||
Matt Mackall
|
r8994 | edittext.extend([_("HG: subrepo %s") % s for s in subs]) | ||
Matt Mackall
|
r8407 | edittext.extend([_("HG: added %s") % f for f in added]) | ||
Matt Mackall
|
r8707 | edittext.extend([_("HG: changed %s") % f for f in modified]) | ||
Matt Mackall
|
r8407 | edittext.extend([_("HG: removed %s") % f for f in removed]) | ||
Matt Mackall
|
r8707 | if not added and not modified and not removed: | ||
Matt Mackall
|
r8407 | edittext.append(_("HG: no files changed")) | ||
edittext.append("") | ||||
# run editor in the repository root | ||||
olddir = os.getcwd() | ||||
os.chdir(repo.root) | ||||
text = repo.ui.edit("\n".join(edittext), ctx.user()) | ||||
Matt Mackall
|
r8409 | text = re.sub("(?m)^HG:.*\n", "", text) | ||
Matt Mackall
|
r8407 | os.chdir(olddir) | ||
if not text.strip(): | ||||
raise util.Abort(_("empty commit message")) | ||||
return text | ||||