filemerge.py
377 lines
| 12.5 KiB
| text/x-python
|
PythonLexer
/ mercurial / filemerge.py
Matt Mackall
|
r6003 | # filemerge.py - file-level merge handling for Mercurial | ||
# | ||||
# Copyright 2006, 2007, 2008 Matt Mackall <mpm@selenic.com> | ||||
# | ||||
Martin Geisler
|
r8225 | # This software may be used and distributed according to the terms of the | ||
Matt Mackall
|
r10263 | # GNU General Public License version 2 or any later version. | ||
Matt Mackall
|
r6003 | |||
Peter Arrenbrecht
|
r7873 | from node import short | ||
Matt Mackall
|
r6003 | from i18n import _ | ||
David Champion
|
r11146 | import util, simplemerge, match, error | ||
Simon Heimberg
|
r8312 | import os, tempfile, re, filecmp | ||
Matt Mackall
|
r6004 | |||
Matt Mackall
|
r6013 | def _toolstr(ui, tool, part, default=""): | ||
Matt Mackall
|
r6004 | return ui.config("merge-tools", tool + "." + part, default) | ||
def _toolbool(ui, tool, part, default=False): | ||||
return ui.configbool("merge-tools", tool + "." + part, default) | ||||
David Champion
|
r11148 | def _toollist(ui, tool, part, default=[]): | ||
return ui.configlist("merge-tools", tool + "." + part, default) | ||||
FUJIWARA Katsunori
|
r16126 | internals = {} | ||
FUJIWARA Katsunori
|
r16125 | |||
def internaltool(name, trymerge, onfailure=None): | ||||
'''return a decorator for populating internal merge tool table''' | ||||
def decorator(func): | ||||
Matt Mackall
|
r16127 | fullname = 'internal:' + name | ||
func.__doc__ = "``%s``\n" % fullname + func.__doc__.strip() | ||||
internals[fullname] = func | ||||
FUJIWARA Katsunori
|
r16125 | func.trymerge = trymerge | ||
func.onfailure = onfailure | ||||
return func | ||||
return decorator | ||||
Matt Mackall
|
r8830 | |||
Matt Mackall
|
r6004 | def _findtool(ui, tool): | ||
FUJIWARA Katsunori
|
r16126 | if tool in internals: | ||
Dov Feldstern
|
r6522 | return tool | ||
Steve Borho
|
r13565 | for kn in ("regkey", "regkeyalt"): | ||
k = _toolstr(ui, tool, kn) | ||||
if not k: | ||||
continue | ||||
Adrian Buehlmann
|
r14230 | p = util.lookupreg(k, _toolstr(ui, tool, "regname")) | ||
Matt Mackall
|
r6006 | if p: | ||
Adrian Buehlmann
|
r14271 | p = util.findexe(p + _toolstr(ui, tool, "regappend")) | ||
Matt Mackall
|
r6006 | if p: | ||
return p | ||||
Greg Ward
|
r15264 | exe = _toolstr(ui, tool, "executable", tool) | ||
return util.findexe(util.expandpath(exe)) | ||||
Matt Mackall
|
r6004 | |||
def _picktool(repo, ui, path, binary, symlink): | ||||
def check(tool, pat, symlink, binary): | ||||
tmsg = tool | ||||
if pat: | ||||
tmsg += " specified for " + pat | ||||
Mads Kiilerich
|
r7397 | if not _findtool(ui, tool): | ||
if pat: # explicitly requested tool deserves a warning | ||||
ui.warn(_("couldn't find merge tool %s\n") % tmsg) | ||||
else: # configured but non-existing tools are more silent | ||||
ui.note(_("couldn't find merge tool %s\n") % tmsg) | ||||
Matt Mackall
|
r6004 | elif symlink and not _toolbool(ui, tool, "symlink"): | ||
ui.warn(_("tool %s can't handle symlinks\n") % tmsg) | ||||
elif binary and not _toolbool(ui, tool, "binary"): | ||||
ui.warn(_("tool %s can't handle binary\n") % tmsg) | ||||
Matt Mackall
|
r6007 | elif not util.gui() and _toolbool(ui, tool, "gui"): | ||
ui.warn(_("tool %s requires a GUI\n") % tmsg) | ||||
Matt Mackall
|
r6004 | else: | ||
return True | ||||
return False | ||||
Steve Borho
|
r12788 | # forcemerge comes from command line arguments, highest priority | ||
force = ui.config('ui', 'forcemerge') | ||||
if force: | ||||
toolpath = _findtool(ui, force) | ||||
if toolpath: | ||||
Keegan Carruthers-Smith
|
r17885 | return (force, util.shellquote(toolpath)) | ||
Steve Borho
|
r12788 | else: | ||
# mimic HGMERGE if given tool not found | ||||
return (force, force) | ||||
# HGMERGE takes next precedence | ||||
Steve Borho
|
r6025 | hgmerge = os.environ.get("HGMERGE") | ||
if hgmerge: | ||||
return (hgmerge, hgmerge) | ||||
Matt Mackall
|
r6004 | |||
# then patterns | ||||
dhruva
|
r6016 | for pat, tool in ui.configitems("merge-patterns"): | ||
Matt Mackall
|
r8567 | mf = match.match(repo.root, '', [pat]) | ||
Matt Mackall
|
r6004 | if mf(path) and check(tool, pat, symlink, False): | ||
Benoit Boissinot
|
r10339 | toolpath = _findtool(ui, tool) | ||
Keegan Carruthers-Smith
|
r17885 | return (tool, util.shellquote(toolpath)) | ||
Matt Mackall
|
r6004 | |||
# then merge tools | ||||
tools = {} | ||||
Matt Mackall
|
r10282 | for k, v in ui.configitems("merge-tools"): | ||
Matt Mackall
|
r6004 | t = k.split('.')[0] | ||
if t not in tools: | ||||
tools[t] = int(_toolstr(ui, t, "priority", "0")) | ||||
Steve Borho
|
r6076 | names = tools.keys() | ||
Matt Mackall
|
r10282 | tools = sorted([(-p, t) for t, p in tools.items()]) | ||
Steve Borho
|
r6076 | uimerge = ui.config("ui", "merge") | ||
if uimerge: | ||||
if uimerge not in names: | ||||
return (uimerge, uimerge) | ||||
tools.insert(0, (None, uimerge)) # highest priority | ||||
Matt Mackall
|
r6004 | tools.append((None, "hgmerge")) # the old default, if found | ||
Matt Mackall
|
r10282 | for p, t in tools: | ||
Mads Kiilerich
|
r7397 | if check(t, None, symlink, binary): | ||
toolpath = _findtool(ui, t) | ||||
Keegan Carruthers-Smith
|
r17885 | return (t, util.shellquote(toolpath)) | ||
Matt Mackall
|
r16254 | |||
# internal merge or prompt as last resort | ||||
if symlink or binary: | ||||
return "internal:prompt", None | ||||
return "internal:merge", None | ||||
Matt Mackall
|
r6003 | |||
Matt Mackall
|
r6005 | def _eoltype(data): | ||
"Guess the EOL type of a file" | ||||
if '\0' in data: # binary | ||||
return None | ||||
if '\r\n' in data: # Windows | ||||
return '\r\n' | ||||
if '\r' in data: # Old Mac | ||||
return '\r' | ||||
if '\n' in data: # UNIX | ||||
return '\n' | ||||
return None # unknown | ||||
def _matcheol(file, origfile): | ||||
"Convert EOL markers in a file to match origfile" | ||||
Dan Villiom Podlaski Christiansen
|
r14168 | tostyle = _eoltype(util.readfile(origfile)) | ||
Matt Mackall
|
r6005 | if tostyle: | ||
Dan Villiom Podlaski Christiansen
|
r14168 | data = util.readfile(file) | ||
Matt Mackall
|
r6005 | style = _eoltype(data) | ||
if style: | ||||
newdata = data.replace(style, tostyle) | ||||
if newdata != data: | ||||
Dan Villiom Podlaski Christiansen
|
r14168 | util.writefile(file, newdata) | ||
Matt Mackall
|
r6005 | |||
Matt Mackall
|
r16127 | @internaltool('prompt', False) | ||
FUJIWARA Katsunori
|
r16125 | def _iprompt(repo, mynode, orig, fcd, fco, fca, toolconf): | ||
Matt Mackall
|
r16127 | """Asks the user which of the local or the other version to keep as | ||
FUJIWARA Katsunori
|
r16126 | the merged version.""" | ||
FUJIWARA Katsunori
|
r16125 | ui = repo.ui | ||
fd = fcd.path() | ||||
if ui.promptchoice(_(" no tool found to merge %s\n" | ||||
"keep (l)ocal or take (o)ther?") % fd, | ||||
(_("&Local"), _("&Other")), 0): | ||||
return _iother(repo, mynode, orig, fcd, fco, fca, toolconf) | ||||
else: | ||||
return _ilocal(repo, mynode, orig, fcd, fco, fca, toolconf) | ||||
Matt Mackall
|
r16127 | @internaltool('local', False) | ||
FUJIWARA Katsunori
|
r16125 | def _ilocal(repo, mynode, orig, fcd, fco, fca, toolconf): | ||
Matt Mackall
|
r16127 | """Uses the local version of files as the merged version.""" | ||
FUJIWARA Katsunori
|
r16125 | return 0 | ||
Matt Mackall
|
r16127 | @internaltool('other', False) | ||
FUJIWARA Katsunori
|
r16125 | def _iother(repo, mynode, orig, fcd, fco, fca, toolconf): | ||
Matt Mackall
|
r16127 | """Uses the other version of files as the merged version.""" | ||
FUJIWARA Katsunori
|
r16125 | repo.wwrite(fcd.path(), fco.data(), fco.flags()) | ||
return 0 | ||||
Matt Mackall
|
r16127 | @internaltool('fail', False) | ||
FUJIWARA Katsunori
|
r16125 | def _ifail(repo, mynode, orig, fcd, fco, fca, toolconf): | ||
Matt Mackall
|
r16127 | """ | ||
FUJIWARA Katsunori
|
r16126 | Rather than attempting to merge files that were modified on both | ||
branches, it marks them as unresolved. The resolve command must be | ||||
used to resolve these conflicts.""" | ||||
FUJIWARA Katsunori
|
r16125 | return 1 | ||
def _premerge(repo, toolconf, files): | ||||
tool, toolpath, binary, symlink = toolconf | ||||
Mads Kiilerich
|
r18257 | if symlink: | ||
return 1 | ||||
FUJIWARA Katsunori
|
r16125 | a, b, c, back = files | ||
ui = repo.ui | ||||
# do we attempt to simplemerge first? | ||||
try: | ||||
Mads Kiilerich
|
r18257 | premerge = _toolbool(ui, tool, "premerge", not binary) | ||
FUJIWARA Katsunori
|
r16125 | except error.ConfigError: | ||
premerge = _toolstr(ui, tool, "premerge").lower() | ||||
valid = 'keep'.split() | ||||
if premerge not in valid: | ||||
_valid = ', '.join(["'" + v + "'" for v in valid]) | ||||
raise error.ConfigError(_("%s.premerge not valid " | ||||
"('%s' is neither boolean nor %s)") % | ||||
(tool, premerge, _valid)) | ||||
if premerge: | ||||
r = simplemerge.simplemerge(ui, a, b, c, quiet=True) | ||||
if not r: | ||||
ui.debug(" premerge successful\n") | ||||
return 0 | ||||
if premerge != 'keep': | ||||
util.copyfile(back, a) # restore from backup and try again | ||||
return 1 # continue merging | ||||
Matt Mackall
|
r16127 | @internaltool('merge', True, | ||
FUJIWARA Katsunori
|
r16125 | _("merging %s incomplete! " | ||
"(edit conflicts, then use 'hg resolve --mark')\n")) | ||||
def _imerge(repo, mynode, orig, fcd, fco, fca, toolconf, files): | ||||
Matt Mackall
|
r16127 | """ | ||
FUJIWARA Katsunori
|
r16126 | Uses the internal non-interactive simple merge algorithm for merging | ||
files. It will fail if there are any conflicts and leave markers in | ||||
the partially merged file.""" | ||||
Mads Kiilerich
|
r18256 | tool, toolpath, binary, symlink = toolconf | ||
if symlink: | ||||
Mads Kiilerich
|
r18325 | repo.ui.warn(_('warning: internal:merge cannot merge symlinks ' | ||
'for %s\n') % fcd.path()) | ||||
Mads Kiilerich
|
r18256 | return False, 1 | ||
FUJIWARA Katsunori
|
r16125 | r = _premerge(repo, toolconf, files) | ||
if r: | ||||
a, b, c, back = files | ||||
ui = repo.ui | ||||
r = simplemerge.simplemerge(ui, a, b, c, label=['local', 'other']) | ||||
return True, r | ||||
return False, 0 | ||||
Matt Mackall
|
r16127 | @internaltool('dump', True) | ||
FUJIWARA Katsunori
|
r16125 | def _idump(repo, mynode, orig, fcd, fco, fca, toolconf, files): | ||
Matt Mackall
|
r16127 | """ | ||
FUJIWARA Katsunori
|
r16126 | Creates three versions of the files to merge, containing the | ||
contents of local, other and base. These files can then be used to | ||||
perform a merge manually. If the file to be merged is named | ||||
``a.txt``, these files will accordingly be named ``a.txt.local``, | ||||
``a.txt.other`` and ``a.txt.base`` and they will be placed in the | ||||
same directory as ``a.txt``.""" | ||||
FUJIWARA Katsunori
|
r16125 | r = _premerge(repo, toolconf, files) | ||
if r: | ||||
a, b, c, back = files | ||||
fd = fcd.path() | ||||
util.copyfile(a, a + ".local") | ||||
repo.wwrite(fd + ".other", fco.data(), fco.flags()) | ||||
repo.wwrite(fd + ".base", fca.data(), fca.flags()) | ||||
return False, r | ||||
def _xmerge(repo, mynode, orig, fcd, fco, fca, toolconf, files): | ||||
r = _premerge(repo, toolconf, files) | ||||
if r: | ||||
tool, toolpath, binary, symlink = toolconf | ||||
a, b, c, back = files | ||||
out = "" | ||||
env = dict(HG_FILE=fcd.path(), | ||||
HG_MY_NODE=short(mynode), | ||||
HG_OTHER_NODE=str(fco.changectx()), | ||||
HG_BASE_NODE=str(fca.changectx()), | ||||
HG_MY_ISLINK='l' in fcd.flags(), | ||||
HG_OTHER_ISLINK='l' in fco.flags(), | ||||
HG_BASE_ISLINK='l' in fca.flags()) | ||||
ui = repo.ui | ||||
args = _toolstr(ui, tool, "args", '$local $base $other') | ||||
if "$output" in args: | ||||
out, a = a, back # read input from backup, write to original | ||||
replace = dict(local=a, base=b, other=c, output=out) | ||||
args = util.interpolate(r'\$', replace, args, | ||||
Keegan Carruthers-Smith
|
r17885 | lambda s: util.shellquote(util.localpath(s))) | ||
FUJIWARA Katsunori
|
r16125 | r = util.system(toolpath + ' ' + args, cwd=repo.root, environ=env, | ||
out=ui.fout) | ||||
return True, r | ||||
return False, 0 | ||||
Matt Mackall
|
r6512 | def filemerge(repo, mynode, orig, fcd, fco, fca): | ||
Matt Mackall
|
r6003 | """perform a 3-way merge in the working directory | ||
Matt Mackall
|
r6512 | mynode = parent node before merge | ||
orig = original local filename before merge | ||||
fco = other file context | ||||
fca = ancestor file context | ||||
fcd = local file context for current/destination file | ||||
Matt Mackall
|
r6003 | """ | ||
def temp(prefix, ctx): | ||||
pre = "%s~%s." % (os.path.basename(ctx.path()), prefix) | ||||
(fd, name) = tempfile.mkstemp(prefix=pre) | ||||
data = repo.wwritedata(ctx.path(), ctx.data()) | ||||
f = os.fdopen(fd, "wb") | ||||
f.write(data) | ||||
f.close() | ||||
return name | ||||
Nicolas Dumazet
|
r11702 | if not fco.cmp(fcd): # files identical? | ||
Matt Mackall
|
r6003 | return None | ||
Matt Mackall
|
r6004 | ui = repo.ui | ||
Matt Mackall
|
r6512 | fd = fcd.path() | ||
Laurens Holst
|
r15738 | binary = fcd.isbinary() or fco.isbinary() or fca.isbinary() | ||
Matt Mackall
|
r6744 | symlink = 'l' in fcd.flags() + fco.flags() | ||
Matt Mackall
|
r6512 | tool, toolpath = _picktool(repo, ui, fd, binary, symlink) | ||
Martin Geisler
|
r9467 | ui.debug("picked tool '%s' for %s (binary %s symlink %s)\n" % | ||
Matt Mackall
|
r6512 | (tool, fd, binary, symlink)) | ||
Matt Mackall
|
r6004 | |||
FUJIWARA Katsunori
|
r16126 | if tool in internals: | ||
func = internals[tool] | ||||
FUJIWARA Katsunori
|
r16125 | trymerge = func.trymerge | ||
onfailure = func.onfailure | ||||
else: | ||||
func = _xmerge | ||||
trymerge = True | ||||
onfailure = _("merging %s failed!\n") | ||||
Matt Mackall
|
r6004 | |||
FUJIWARA Katsunori
|
r16125 | toolconf = tool, toolpath, binary, symlink | ||
if not trymerge: | ||||
return func(repo, mynode, orig, fcd, fco, fca, toolconf) | ||||
Matt Mackall
|
r6003 | a = repo.wjoin(fd) | ||
b = temp("base", fca) | ||||
c = temp("other", fco) | ||||
Matt Mackall
|
r6004 | back = a + ".orig" | ||
util.copyfile(a, back) | ||||
Matt Mackall
|
r6003 | |||
Matt Mackall
|
r6512 | if orig != fco.path(): | ||
Martin Geisler
|
r8615 | ui.status(_("merging %s and %s to %s\n") % (orig, fco.path(), fd)) | ||
Matt Mackall
|
r6003 | else: | ||
Martin Geisler
|
r8615 | ui.status(_("merging %s\n") % fd) | ||
Matt Mackall
|
r6512 | |||
Martin Geisler
|
r9467 | ui.debug("my %s other %s ancestor %s\n" % (fcd, fco, fca)) | ||
Matt Mackall
|
r6003 | |||
FUJIWARA Katsunori
|
r16125 | needcheck, r = func(repo, mynode, orig, fcd, fco, fca, toolconf, | ||
(a, b, c, back)) | ||||
if not needcheck: | ||||
if r: | ||||
if onfailure: | ||||
ui.warn(onfailure % fd) | ||||
else: | ||||
Matt Mackall
|
r6004 | os.unlink(back) | ||
Thomas Arendsen Hein
|
r16205 | os.unlink(b) | ||
os.unlink(c) | ||||
FUJIWARA Katsunori
|
r16125 | return r | ||
Matt Mackall
|
r6004 | |||
David Champion
|
r11148 | if not r and (_toolbool(ui, tool, "checkconflicts") or | ||
'conflicts' in _toollist(ui, tool, "check")): | ||||
Thomas Arendsen Hein
|
r12046 | if re.search("^(<<<<<<< .*|=======|>>>>>>> .*)$", fcd.data(), | ||
re.MULTILINE): | ||||
Matt Mackall
|
r6004 | r = 1 | ||
David Champion
|
r11149 | checked = False | ||
if 'prompt' in _toollist(ui, tool, "check"): | ||||
checked = True | ||||
if ui.promptchoice(_("was merge of '%s' successful (yn)?") % fd, | ||||
(_("&Yes"), _("&No")), 1): | ||||
r = 1 | ||||
if not r and not checked and (_toolbool(ui, tool, "checkchanged") or | ||||
'changed' in _toollist(ui, tool, "check")): | ||||
FUJIWARA Katsunori
|
r16125 | if filecmp.cmp(a, back): | ||
Simon Heimberg
|
r9048 | if ui.promptchoice(_(" output file %s appears unchanged\n" | ||
Martin Geisler
|
r9049 | "was merge successful (yn)?") % fd, | ||
(_("&Yes"), _("&No")), 1): | ||||
Steve Borho
|
r6075 | r = 1 | ||
Matt Mackall
|
r6005 | if _toolbool(ui, tool, "fixeol"): | ||
FUJIWARA Katsunori
|
r16125 | _matcheol(a, back) | ||
Matt Mackall
|
r6005 | |||
Matt Mackall
|
r6003 | if r: | ||
FUJIWARA Katsunori
|
r16125 | if onfailure: | ||
ui.warn(onfailure % fd) | ||||
Matt Mackall
|
r6004 | else: | ||
os.unlink(back) | ||||
Matt Mackall
|
r6003 | |||
os.unlink(b) | ||||
os.unlink(c) | ||||
return r | ||||
FUJIWARA Katsunori
|
r16126 | |||
# tell hggettext to extract docstrings from these functions: | ||||
i18nfunctions = internals.values() | ||||