filemerge.py
721 lines
| 25.0 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 | |||
Gregory Szorc
|
r25949 | from __future__ import absolute_import | ||
import filecmp | ||||
import os | ||||
import re | ||||
import tempfile | ||||
from .i18n import _ | ||||
Siddharth Agarwal
|
r26979 | from .node import nullid, short | ||
Gregory Szorc
|
r25949 | |||
from . import ( | ||||
Pulkit Goyal
|
r30636 | encoding, | ||
Gregory Szorc
|
r25949 | error, | ||
Yuya Nishihara
|
r28955 | formatter, | ||
Gregory Szorc
|
r25949 | match, | ||
Pulkit Goyal
|
r30073 | pycompat, | ||
Siddharth Agarwal
|
r27651 | scmutil, | ||
Gregory Szorc
|
r25949 | simplemerge, | ||
tagmerge, | ||||
templatekw, | ||||
templater, | ||||
util, | ||||
) | ||||
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) | ||||
Gregory Szorc
|
r31389 | def _toollist(ui, tool, part, default=None): | ||
Pierre-Yves David
|
r31436 | if default is None: | ||
default = [] | ||||
return ui.configlist("merge-tools", tool + "." + part, default) | ||||
David Champion
|
r11148 | |||
FUJIWARA Katsunori
|
r16126 | internals = {} | ||
Gregory Szorc
|
r24099 | # Merge tools to document. | ||
internalsdoc = {} | ||||
FUJIWARA Katsunori
|
r16125 | |||
Siddharth Agarwal
|
r26525 | # internal tool merge types | ||
nomerge = None | ||||
mergeonly = 'mergeonly' # just the full merge, no premerge | ||||
fullmerge = 'fullmerge' # both premerge and merge | ||||
Siddharth Agarwal
|
r26979 | class absentfilectx(object): | ||
"""Represents a file that's ostensibly in a context but is actually not | ||||
present in it. | ||||
This is here because it's very specific to the filemerge code for now -- | ||||
other code is likely going to break with the values this returns.""" | ||||
def __init__(self, ctx, f): | ||||
self._ctx = ctx | ||||
self._f = f | ||||
def path(self): | ||||
return self._f | ||||
def size(self): | ||||
return None | ||||
def data(self): | ||||
return None | ||||
def filenode(self): | ||||
return nullid | ||||
_customcmp = True | ||||
def cmp(self, fctx): | ||||
"""compare with other file context | ||||
returns True if different from fctx. | ||||
""" | ||||
return not (fctx.isabsent() and | ||||
fctx.ctx() == self.ctx() and | ||||
fctx.path() == self.path()) | ||||
def flags(self): | ||||
return '' | ||||
def changectx(self): | ||||
return self._ctx | ||||
def isbinary(self): | ||||
return False | ||||
def isabsent(self): | ||||
return True | ||||
Siddharth Agarwal
|
r26526 | def internaltool(name, mergetype, onfailure=None, precheck=None): | ||
FUJIWARA Katsunori
|
r16125 | '''return a decorator for populating internal merge tool table''' | ||
def decorator(func): | ||||
Mads Kiilerich
|
r22707 | fullname = ':' + name | ||
Pulkit Goyal
|
r30073 | func.__doc__ = (pycompat.sysstr("``%s``\n" % fullname) | ||
+ func.__doc__.strip()) | ||||
Matt Mackall
|
r16127 | internals[fullname] = func | ||
Mads Kiilerich
|
r22707 | internals['internal:' + name] = func | ||
Gregory Szorc
|
r24099 | internalsdoc[fullname] = func | ||
Siddharth Agarwal
|
r26526 | func.mergetype = mergetype | ||
FUJIWARA Katsunori
|
r16125 | func.onfailure = onfailure | ||
Siddharth Agarwal
|
r26513 | func.precheck = precheck | ||
FUJIWARA Katsunori
|
r16125 | 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 | ||
Matt Harbison
|
r23148 | return findexternaltool(ui, tool) | ||
def findexternaltool(ui, 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 | |||
Siddharth Agarwal
|
r27039 | def _picktool(repo, ui, path, binary, symlink, changedelete): | ||
def supportscd(tool): | ||||
return tool in internals and internals[tool].mergetype == nomerge | ||||
def check(tool, pat, symlink, binary, changedelete): | ||||
Matt Mackall
|
r6004 | 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) | ||||
Siddharth Agarwal
|
r27039 | elif changedelete and not supportscd(tool): | ||
# the nomerge tools are the only tools that support change/delete | ||||
# conflicts | ||||
pass | ||||
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 | ||||
Matt Mackall
|
r25835 | # internal config: ui.forcemerge | ||
Steve Borho
|
r12788 | # forcemerge comes from command line arguments, highest priority | ||
force = ui.config('ui', 'forcemerge') | ||||
if force: | ||||
toolpath = _findtool(ui, force) | ||||
Siddharth Agarwal
|
r27039 | if changedelete and not supportscd(toolpath): | ||
return ":prompt", None | ||||
Steve Borho
|
r12788 | else: | ||
Siddharth Agarwal
|
r27039 | if toolpath: | ||
return (force, util.shellquote(toolpath)) | ||||
else: | ||||
# mimic HGMERGE if given tool not found | ||||
return (force, force) | ||||
Steve Borho
|
r12788 | |||
# HGMERGE takes next precedence | ||||
Pulkit Goyal
|
r30636 | hgmerge = encoding.environ.get("HGMERGE") | ||
Steve Borho
|
r6025 | if hgmerge: | ||
Siddharth Agarwal
|
r27039 | if changedelete and not supportscd(hgmerge): | ||
return ":prompt", None | ||||
else: | ||||
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]) | ||
Siddharth Agarwal
|
r27039 | if mf(path) and check(tool, pat, symlink, False, changedelete): | ||
Benoit Boissinot
|
r10339 | toolpath = _findtool(ui, tool) | ||
Keegan Carruthers-Smith
|
r17885 | return (tool, util.shellquote(toolpath)) | ||
Matt Mackall
|
r6004 | |||
# then merge tools | ||||
tools = {} | ||||
Augie Fackler
|
r26730 | disabled = set() | ||
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")) | ||||
Augie Fackler
|
r26730 | if _toolbool(ui, t, "disabled", False): | ||
disabled.add(t) | ||||
Steve Borho
|
r6076 | names = tools.keys() | ||
Augie Fackler
|
r30388 | tools = sorted([(-p, tool) for tool, p in tools.items() | ||
if tool not in disabled]) | ||||
Steve Borho
|
r6076 | uimerge = ui.config("ui", "merge") | ||
if uimerge: | ||||
Siddharth Agarwal
|
r27039 | # external tools defined in uimerge won't be able to handle | ||
# change/delete conflicts | ||||
if uimerge not in names and not changedelete: | ||||
Steve Borho
|
r6076 | 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: | ||
Siddharth Agarwal
|
r27039 | if check(t, None, symlink, binary, changedelete): | ||
Mads Kiilerich
|
r7397 | toolpath = _findtool(ui, t) | ||
Keegan Carruthers-Smith
|
r17885 | return (t, util.shellquote(toolpath)) | ||
Matt Mackall
|
r16254 | |||
# internal merge or prompt as last resort | ||||
Siddharth Agarwal
|
r27039 | if symlink or binary or changedelete: | ||
Mads Kiilerich
|
r22707 | return ":prompt", None | ||
return ":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 | |||
Siddharth Agarwal
|
r26526 | @internaltool('prompt', nomerge) | ||
Simon Farnsworth
|
r29774 | def _iprompt(repo, mynode, orig, fcd, fco, fca, toolconf, labels=None): | ||
timeless
|
r28640 | """Asks the user which of the local `p1()` or the other `p2()` version to | ||
keep as the merged version.""" | ||||
FUJIWARA Katsunori
|
r16125 | ui = repo.ui | ||
fd = fcd.path() | ||||
Simon Farnsworth
|
r29774 | prompts = partextras(labels) | ||
prompts['fd'] = fd | ||||
Siddharth Agarwal
|
r26898 | try: | ||
Siddharth Agarwal
|
r27038 | if fco.isabsent(): | ||
index = ui.promptchoice( | ||||
Simon Farnsworth
|
r29775 | _("local%(l)s changed %(fd)s which other%(o)s deleted\n" | ||
Siddharth Agarwal
|
r27163 | "use (c)hanged version, (d)elete, or leave (u)nresolved?" | ||
Simon Farnsworth
|
r29774 | "$$ &Changed $$ &Delete $$ &Unresolved") % prompts, 2) | ||
Siddharth Agarwal
|
r27163 | choice = ['local', 'other', 'unresolved'][index] | ||
Siddharth Agarwal
|
r27038 | elif fcd.isabsent(): | ||
index = ui.promptchoice( | ||||
Simon Farnsworth
|
r29775 | _("other%(o)s changed %(fd)s which local%(l)s deleted\n" | ||
Siddharth Agarwal
|
r27163 | "use (c)hanged version, leave (d)eleted, or " | ||
"leave (u)nresolved?" | ||||
Simon Farnsworth
|
r29774 | "$$ &Changed $$ &Deleted $$ &Unresolved") % prompts, 2) | ||
Siddharth Agarwal
|
r27163 | choice = ['other', 'local', 'unresolved'][index] | ||
Siddharth Agarwal
|
r27038 | else: | ||
Siddharth Agarwal
|
r27162 | index = ui.promptchoice( | ||
Simon Farnsworth
|
r29774 | _("no tool found to merge %(fd)s\n" | ||
"keep (l)ocal%(l)s, take (o)ther%(o)s, or leave (u)nresolved?" | ||||
"$$ &Local $$ &Other $$ &Unresolved") % prompts, 2) | ||||
Siddharth Agarwal
|
r27162 | choice = ['local', 'other', 'unresolved'][index] | ||
Siddharth Agarwal
|
r26851 | |||
Siddharth Agarwal
|
r26898 | if choice == 'other': | ||
Simon Farnsworth
|
r29774 | return _iother(repo, mynode, orig, fcd, fco, fca, toolconf, | ||
labels) | ||||
Siddharth Agarwal
|
r27162 | elif choice == 'local': | ||
Simon Farnsworth
|
r29774 | return _ilocal(repo, mynode, orig, fcd, fco, fca, toolconf, | ||
labels) | ||||
Siddharth Agarwal
|
r27162 | elif choice == 'unresolved': | ||
Simon Farnsworth
|
r29774 | return _ifail(repo, mynode, orig, fcd, fco, fca, toolconf, | ||
labels) | ||||
Siddharth Agarwal
|
r26898 | except error.ResponseExpected: | ||
ui.write("\n") | ||||
Simon Farnsworth
|
r29774 | return _ifail(repo, mynode, orig, fcd, fco, fca, toolconf, | ||
labels) | ||||
FUJIWARA Katsunori
|
r16125 | |||
Siddharth Agarwal
|
r26526 | @internaltool('local', nomerge) | ||
Simon Farnsworth
|
r29774 | def _ilocal(repo, mynode, orig, fcd, fco, fca, toolconf, labels=None): | ||
timeless
|
r28640 | """Uses the local `p1()` version of files as the merged version.""" | ||
Siddharth Agarwal
|
r27036 | return 0, fcd.isabsent() | ||
FUJIWARA Katsunori
|
r16125 | |||
Siddharth Agarwal
|
r26526 | @internaltool('other', nomerge) | ||
Simon Farnsworth
|
r29774 | def _iother(repo, mynode, orig, fcd, fco, fca, toolconf, labels=None): | ||
timeless
|
r28640 | """Uses the other `p2()` version of files as the merged version.""" | ||
Siddharth Agarwal
|
r27037 | if fco.isabsent(): | ||
# local changed, remote deleted -- 'deleted' picked | ||||
repo.wvfs.unlinkpath(fcd.path()) | ||||
deleted = True | ||||
else: | ||||
repo.wwrite(fcd.path(), fco.data(), fco.flags()) | ||||
deleted = False | ||||
return 0, deleted | ||||
FUJIWARA Katsunori
|
r16125 | |||
Siddharth Agarwal
|
r26526 | @internaltool('fail', nomerge) | ||
Simon Farnsworth
|
r29774 | def _ifail(repo, mynode, orig, fcd, fco, fca, toolconf, labels=None): | ||
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.""" | ||||
Siddharth Agarwal
|
r27123 | # for change/delete conflicts write out the changed version, then fail | ||
if fcd.isabsent(): | ||||
repo.wwrite(fcd.path(), fco.data(), fco.flags()) | ||||
Siddharth Agarwal
|
r27032 | return 1, False | ||
FUJIWARA Katsunori
|
r16125 | |||
Siddharth Agarwal
|
r27041 | def _premerge(repo, fcd, fco, fca, toolconf, files, labels=None): | ||
FUJIWARA Katsunori
|
r16125 | tool, toolpath, binary, symlink = toolconf | ||
Siddharth Agarwal
|
r27041 | if symlink or fcd.isabsent() or fco.isabsent(): | ||
Mads Kiilerich
|
r18257 | return 1 | ||
FUJIWARA Katsunori
|
r16125 | a, b, c, back = files | ||
ui = repo.ui | ||||
Pierre-Yves David
|
r22032 | validkeep = ['keep', 'keep-merge3'] | ||
Pierre-Yves David
|
r22031 | |||
FUJIWARA Katsunori
|
r16125 | # 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() | ||||
Pierre-Yves David
|
r22031 | if premerge not in validkeep: | ||
_valid = ', '.join(["'" + v + "'" for v in validkeep]) | ||||
FUJIWARA Katsunori
|
r16125 | raise error.ConfigError(_("%s.premerge not valid " | ||
"('%s' is neither boolean nor %s)") % | ||||
(tool, premerge, _valid)) | ||||
if premerge: | ||||
Pierre-Yves David
|
r22032 | if premerge == 'keep-merge3': | ||
if not labels: | ||||
labels = _defaultconflictlabels | ||||
if len(labels) < 3: | ||||
labels.append('base') | ||||
Pierre-Yves David
|
r22023 | r = simplemerge.simplemerge(ui, a, b, c, quiet=True, label=labels) | ||
FUJIWARA Katsunori
|
r16125 | if not r: | ||
ui.debug(" premerge successful\n") | ||||
return 0 | ||||
Pierre-Yves David
|
r22031 | if premerge not in validkeep: | ||
FUJIWARA Katsunori
|
r16125 | util.copyfile(back, a) # restore from backup and try again | ||
return 1 # continue merging | ||||
Siddharth Agarwal
|
r26948 | def _mergecheck(repo, mynode, orig, fcd, fco, fca, toolconf): | ||
Siddharth Agarwal
|
r26515 | tool, toolpath, binary, symlink = toolconf | ||
if symlink: | ||||
Siddharth Agarwal
|
r26518 | repo.ui.warn(_('warning: internal %s cannot merge symlinks ' | ||
'for %s\n') % (tool, fcd.path())) | ||||
Siddharth Agarwal
|
r26515 | return False | ||
Siddharth Agarwal
|
r27040 | if fcd.isabsent() or fco.isabsent(): | ||
repo.ui.warn(_('warning: internal %s cannot merge change/delete ' | ||||
'conflict for %s\n') % (tool, fcd.path())) | ||||
return False | ||||
Siddharth Agarwal
|
r26515 | return True | ||
Erik Huelsmann
|
r26070 | def _merge(repo, mynode, orig, fcd, fco, fca, toolconf, files, labels, mode): | ||
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 | ||||
Pierre-Yves David
|
r22027 | the partially merged file. Markers will have two sections, one for each side | ||
Erik Huelsmann
|
r26070 | of merge, unless mode equals 'union' which suppresses the markers.""" | ||
Siddharth Agarwal
|
r26572 | a, b, c, back = files | ||
FUJIWARA Katsunori
|
r16125 | |||
Siddharth Agarwal
|
r26572 | ui = repo.ui | ||
FUJIWARA Katsunori
|
r16125 | |||
Siddharth Agarwal
|
r26572 | r = simplemerge.simplemerge(ui, a, b, c, label=labels, mode=mode) | ||
Siddharth Agarwal
|
r27033 | return True, r, False | ||
FUJIWARA Katsunori
|
r16125 | |||
Siddharth Agarwal
|
r26526 | @internaltool('union', fullmerge, | ||
Siddharth Agarwal
|
r26614 | _("warning: conflicts while merging %s! " | ||
"(edit, then use 'hg resolve --mark')\n"), | ||||
Siddharth Agarwal
|
r26948 | precheck=_mergecheck) | ||
Erik Huelsmann
|
r26071 | def _iunion(repo, mynode, orig, fcd, fco, fca, toolconf, files, labels=None): | ||
""" | ||||
Uses the internal non-interactive simple merge algorithm for merging | ||||
files. It will use both left and right sides for conflict regions. | ||||
No markers are inserted.""" | ||||
return _merge(repo, mynode, orig, fcd, fco, fca, toolconf, | ||||
files, labels, 'union') | ||||
Siddharth Agarwal
|
r26526 | @internaltool('merge', fullmerge, | ||
Siddharth Agarwal
|
r26614 | _("warning: conflicts while merging %s! " | ||
"(edit, then use 'hg resolve --mark')\n"), | ||||
Siddharth Agarwal
|
r26948 | precheck=_mergecheck) | ||
Erik Huelsmann
|
r26070 | def _imerge(repo, mynode, orig, fcd, fco, fca, toolconf, files, labels=None): | ||
""" | ||||
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. Markers will have two sections, one for each side | ||||
of merge.""" | ||||
return _merge(repo, mynode, orig, fcd, fco, fca, toolconf, | ||||
files, labels, 'merge') | ||||
Siddharth Agarwal
|
r26526 | @internaltool('merge3', fullmerge, | ||
Siddharth Agarwal
|
r26614 | _("warning: conflicts while merging %s! " | ||
"(edit, then use 'hg resolve --mark')\n"), | ||||
Siddharth Agarwal
|
r26948 | precheck=_mergecheck) | ||
Pierre-Yves David
|
r22028 | def _imerge3(repo, mynode, orig, fcd, fco, fca, toolconf, files, labels=None): | ||
""" | ||||
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. Marker will have three sections, one from each | ||||
side of the merge and one for the base content.""" | ||||
if not labels: | ||||
labels = _defaultconflictlabels | ||||
if len(labels) < 3: | ||||
labels.append('base') | ||||
return _imerge(repo, mynode, orig, fcd, fco, fca, toolconf, files, labels) | ||||
Jordi Gutiérrez Hermoso
|
r26224 | def _imergeauto(repo, mynode, orig, fcd, fco, fca, toolconf, files, | ||
labels=None, localorother=None): | ||||
""" | ||||
Generic driver for _imergelocal and _imergeother | ||||
""" | ||||
assert localorother is not None | ||||
tool, toolpath, binary, symlink = toolconf | ||||
a, b, c, back = files | ||||
r = simplemerge.simplemerge(repo.ui, a, b, c, label=labels, | ||||
localorother=localorother) | ||||
return True, r | ||||
Siddharth Agarwal
|
r26948 | @internaltool('merge-local', mergeonly, precheck=_mergecheck) | ||
Jordi Gutiérrez Hermoso
|
r26224 | def _imergelocal(*args, **kwargs): | ||
""" | ||||
Like :merge, but resolve all conflicts non-interactively in favor | ||||
timeless
|
r28640 | of the local `p1()` changes.""" | ||
Jordi Gutiérrez Hermoso
|
r26224 | success, status = _imergeauto(localorother='local', *args, **kwargs) | ||
Siddharth Agarwal
|
r27033 | return success, status, False | ||
Jordi Gutiérrez Hermoso
|
r26224 | |||
Siddharth Agarwal
|
r26948 | @internaltool('merge-other', mergeonly, precheck=_mergecheck) | ||
Jordi Gutiérrez Hermoso
|
r26224 | def _imergeother(*args, **kwargs): | ||
""" | ||||
Like :merge, but resolve all conflicts non-interactively in favor | ||||
timeless
|
r28640 | of the other `p2()` changes.""" | ||
Jordi Gutiérrez Hermoso
|
r26224 | success, status = _imergeauto(localorother='other', *args, **kwargs) | ||
Siddharth Agarwal
|
r27033 | return success, status, False | ||
Jordi Gutiérrez Hermoso
|
r26224 | |||
Siddharth Agarwal
|
r26526 | @internaltool('tagmerge', mergeonly, | ||
Angel Ezquerra
|
r21922 | _("automatic tag merging of %s failed! " | ||
Mads Kiilerich
|
r22707 | "(use 'hg resolve --tool :merge' or another merge " | ||
Angel Ezquerra
|
r21922 | "tool of your choice)\n")) | ||
def _itagmerge(repo, mynode, orig, fcd, fco, fca, toolconf, files, labels=None): | ||||
""" | ||||
Uses the internal tag merge algorithm (experimental). | ||||
""" | ||||
Siddharth Agarwal
|
r27033 | success, status = tagmerge.merge(repo, fcd, fco, fca) | ||
return success, status, False | ||||
Angel Ezquerra
|
r21922 | |||
Siddharth Agarwal
|
r26526 | @internaltool('dump', fullmerge) | ||
Durham Goode
|
r21273 | def _idump(repo, mynode, orig, fcd, fco, fca, toolconf, files, labels=None): | ||
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``.""" | ||||
Siddharth Agarwal
|
r26573 | a, b, c, back = files | ||
fd = fcd.path() | ||||
FUJIWARA Katsunori
|
r16125 | |||
Siddharth Agarwal
|
r26573 | util.copyfile(a, a + ".local") | ||
repo.wwrite(fd + ".other", fco.data(), fco.flags()) | ||||
repo.wwrite(fd + ".base", fca.data(), fca.flags()) | ||||
Siddharth Agarwal
|
r27033 | return False, 1, False | ||
FUJIWARA Katsunori
|
r16125 | |||
Durham Goode
|
r21273 | def _xmerge(repo, mynode, orig, fcd, fco, fca, toolconf, files, labels=None): | ||
Siddharth Agarwal
|
r26574 | tool, toolpath, binary, symlink = toolconf | ||
Siddharth Agarwal
|
r27042 | if fcd.isabsent() or fco.isabsent(): | ||
repo.ui.warn(_('warning: %s cannot merge change/delete conflict ' | ||||
'for %s\n') % (tool, fcd.path())) | ||||
return False, 1, None | ||||
Siddharth Agarwal
|
r26574 | a, b, c, back = files | ||
out = "" | ||||
env = {'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(), | ||||
} | ||||
FUJIWARA Katsunori
|
r16125 | |||
Siddharth Agarwal
|
r26574 | ui = repo.ui | ||
FUJIWARA Katsunori
|
r16125 | |||
Siddharth Agarwal
|
r26574 | args = _toolstr(ui, tool, "args", '$local $base $other') | ||
if "$output" in args: | ||||
out, a = a, back # read input from backup, write to original | ||||
replace = {'local': a, 'base': b, 'other': c, 'output': out} | ||||
args = util.interpolate(r'\$', replace, args, | ||||
lambda s: util.shellquote(util.localpath(s))) | ||||
cmd = toolpath + ' ' + args | ||||
Martin von Zweigbergk
|
r30898 | if _toolbool(ui, tool, "gui"): | ||
repo.ui.status(_('running merge tool %s for file %s\n') % | ||||
(tool, fcd.path())) | ||||
Siddharth Agarwal
|
r26574 | repo.ui.debug('launching merge tool: %s\n' % cmd) | ||
Simon Farnsworth
|
r31204 | r = ui.system(cmd, cwd=repo.root, environ=env, blockedtag='mergetool') | ||
Siddharth Agarwal
|
r26574 | repo.ui.debug('merge tool returned: %s\n' % r) | ||
Siddharth Agarwal
|
r27033 | return True, r, False | ||
FUJIWARA Katsunori
|
r16125 | |||
Durham Goode
|
r21519 | def _formatconflictmarker(repo, ctx, template, label, pad): | ||
"""Applies the given template to the ctx, prefixed by the label. | ||||
Pad is the minimum width of the label prefix, so that multiple markers | ||||
can have aligned templated parts. | ||||
""" | ||||
if ctx.node() is None: | ||||
ctx = ctx.p1() | ||||
props = templatekw.keywords.copy() | ||||
props['templ'] = template | ||||
props['ctx'] = ctx | ||||
props['repo'] = repo | ||||
templateresult = template('conflictmarker', **props) | ||||
label = ('%s:' % label).ljust(pad + 1) | ||||
mark = '%s %s' % (label, templater.stringify(templateresult)) | ||||
FUJIWARA Katsunori
|
r21864 | if mark: | ||
mark = mark.splitlines()[0] # split for safety | ||||
FUJIWARA Katsunori
|
r21865 | # 8 for the prefix of conflict marker lines (e.g. '<<<<<<< ') | ||
return util.ellipsis(mark, 80 - 8) | ||||
Durham Goode
|
r21519 | |||
Yuya Nishihara
|
r29660 | _defaultconflictmarker = ('{node|short} ' | ||
Kostia Balytskyi
|
r30460 | '{ifeq(tags, "tip", "", ' | ||
'ifeq(tags, "", "", "{tags} "))}' | ||||
Yuya Nishihara
|
r29660 | '{if(bookmarks, "{bookmarks} ")}' | ||
'{ifeq(branch, "default", "", "{branch} ")}' | ||||
'- {author|user}: {desc|firstline}') | ||||
Durham Goode
|
r21519 | |||
Durham Goode
|
r21524 | _defaultconflictlabels = ['local', 'other'] | ||
Pierre-Yves David
|
r22026 | def _formatlabels(repo, fcd, fco, fca, labels): | ||
Durham Goode
|
r21519 | """Formats the given labels using the conflict marker template. | ||
Returns a list of formatted labels. | ||||
""" | ||||
cd = fcd.changectx() | ||||
co = fco.changectx() | ||||
Pierre-Yves David
|
r22026 | ca = fca.changectx() | ||
Durham Goode
|
r21519 | |||
ui = repo.ui | ||||
template = ui.config('ui', 'mergemarkertemplate', _defaultconflictmarker) | ||||
Yuya Nishihara
|
r32047 | template = templater.unquotestring(template) | ||
Yuya Nishihara
|
r28955 | tmpl = formatter.maketemplater(ui, 'conflictmarker', template) | ||
Durham Goode
|
r21519 | |||
Pierre-Yves David
|
r22026 | pad = max(len(l) for l in labels) | ||
Durham Goode
|
r21519 | |||
Pierre-Yves David
|
r22026 | newlabels = [_formatconflictmarker(repo, cd, tmpl, labels[0], pad), | ||
_formatconflictmarker(repo, co, tmpl, labels[1], pad)] | ||||
if len(labels) > 2: | ||||
newlabels.append(_formatconflictmarker(repo, ca, tmpl, labels[2], pad)) | ||||
return newlabels | ||||
Durham Goode
|
r21519 | |||
Simon Farnsworth
|
r29774 | def partextras(labels): | ||
"""Return a dictionary of extra labels for use in prompts to the user | ||||
Intended use is in strings of the form "(l)ocal%(l)s". | ||||
""" | ||||
if labels is None: | ||||
return { | ||||
"l": "", | ||||
"o": "", | ||||
} | ||||
return { | ||||
"l": " [%s]" % labels[0], | ||||
"o": " [%s]" % labels[1], | ||||
} | ||||
Siddharth Agarwal
|
r26607 | def _filemerge(premerge, repo, mynode, orig, fcd, fco, fca, labels=None): | ||
Matt Mackall
|
r6003 | """perform a 3-way merge in the working directory | ||
Siddharth Agarwal
|
r26607 | premerge = whether this is a premerge | ||
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 | ||||
Siddharth Agarwal
|
r26606 | |||
Siddharth Agarwal
|
r27034 | Returns whether the merge is complete, the return value of the merge, and | ||
a boolean indicating whether the file was deleted from disk.""" | ||||
Matt Mackall
|
r6003 | |||
Siddharth Agarwal
|
r26608 | def temp(prefix, ctx): | ||
Mads Kiilerich
|
r30538 | fullbase, ext = os.path.splitext(ctx.path()) | ||
pre = "%s~%s." % (os.path.basename(fullbase), prefix) | ||||
(fd, name) = tempfile.mkstemp(prefix=pre, suffix=ext) | ||||
Siddharth Agarwal
|
r26608 | data = repo.wwritedata(ctx.path(), ctx.data()) | ||
Pulkit Goyal
|
r30924 | f = os.fdopen(fd, pycompat.sysstr("wb")) | ||
Siddharth Agarwal
|
r26608 | f.write(data) | ||
f.close() | ||||
return name | ||||
Siddharth Agarwal
|
r26512 | |||
Siddharth Agarwal
|
r26608 | if not fco.cmp(fcd): # files identical? | ||
Siddharth Agarwal
|
r27034 | return True, None, False | ||
Siddharth Agarwal
|
r26512 | |||
Siddharth Agarwal
|
r26608 | ui = repo.ui | ||
fd = fcd.path() | ||||
binary = fcd.isbinary() or fco.isbinary() or fca.isbinary() | ||||
symlink = 'l' in fcd.flags() + fco.flags() | ||||
Siddharth Agarwal
|
r27039 | changedelete = fcd.isabsent() or fco.isabsent() | ||
tool, toolpath = _picktool(repo, ui, fd, binary, symlink, changedelete) | ||||
Siddharth Agarwal
|
r26608 | if tool in internals and tool.startswith('internal:'): | ||
# normalize to new-style names (':merge' etc) | ||||
tool = tool[len('internal'):] | ||||
Siddharth Agarwal
|
r27161 | ui.debug("picked tool '%s' for %s (binary %s symlink %s changedelete %s)\n" | ||
% (tool, fd, binary, symlink, changedelete)) | ||||
Matt Mackall
|
r6003 | |||
Siddharth Agarwal
|
r26608 | if tool in internals: | ||
func = internals[tool] | ||||
mergetype = func.mergetype | ||||
onfailure = func.onfailure | ||||
precheck = func.precheck | ||||
else: | ||||
func = _xmerge | ||||
mergetype = fullmerge | ||||
onfailure = _("merging %s failed!\n") | ||||
precheck = None | ||||
Siddharth Agarwal
|
r26512 | |||
Siddharth Agarwal
|
r26608 | toolconf = tool, toolpath, binary, symlink | ||
Matt Mackall
|
r6003 | |||
Siddharth Agarwal
|
r26608 | if mergetype == nomerge: | ||
Simon Farnsworth
|
r29774 | r, deleted = func(repo, mynode, orig, fcd, fco, fca, toolconf, labels) | ||
Siddharth Agarwal
|
r27034 | return True, r, deleted | ||
Siddharth Agarwal
|
r26512 | |||
Siddharth Agarwal
|
r26609 | if premerge: | ||
if orig != fco.path(): | ||||
ui.status(_("merging %s and %s to %s\n") % (orig, fco.path(), fd)) | ||||
else: | ||||
ui.status(_("merging %s\n") % fd) | ||||
Siddharth Agarwal
|
r26528 | |||
Siddharth Agarwal
|
r26608 | ui.debug("my %s other %s ancestor %s\n" % (fcd, fco, fca)) | ||
Siddharth Agarwal
|
r26528 | |||
Siddharth Agarwal
|
r26608 | if precheck and not precheck(repo, mynode, orig, fcd, fco, fca, | ||
toolconf): | ||||
if onfailure: | ||||
ui.warn(onfailure % fd) | ||||
Siddharth Agarwal
|
r27034 | return True, 1, False | ||
Siddharth Agarwal
|
r26529 | |||
Siddharth Agarwal
|
r26608 | a = repo.wjoin(fd) | ||
b = temp("base", fca) | ||||
c = temp("other", fco) | ||||
Siddharth Agarwal
|
r27047 | if not fcd.isabsent(): | ||
Siddharth Agarwal
|
r27651 | back = scmutil.origpath(ui, repo, a) | ||
Siddharth Agarwal
|
r27047 | if premerge: | ||
util.copyfile(a, back) | ||||
else: | ||||
back = None | ||||
Siddharth Agarwal
|
r26608 | files = (a, b, c, back) | ||
Siddharth Agarwal
|
r26512 | |||
Siddharth Agarwal
|
r26589 | r = 1 | ||
try: | ||||
Siddharth Agarwal
|
r26529 | markerstyle = ui.config('ui', 'mergemarkers', 'basic') | ||
if not labels: | ||||
labels = _defaultconflictlabels | ||||
if markerstyle != 'basic': | ||||
labels = _formatlabels(repo, fcd, fco, fca, labels) | ||||
Matt Mackall
|
r6004 | |||
Siddharth Agarwal
|
r26607 | if premerge and mergetype == fullmerge: | ||
Siddharth Agarwal
|
r27041 | r = _premerge(repo, fcd, fco, fca, toolconf, files, labels=labels) | ||
Siddharth Agarwal
|
r26611 | # complete if premerge successful (r is 0) | ||
Siddharth Agarwal
|
r27034 | return not r, r, False | ||
Siddharth Agarwal
|
r26567 | |||
Siddharth Agarwal
|
r27033 | needcheck, r, deleted = func(repo, mynode, orig, fcd, fco, fca, | ||
toolconf, files, labels=labels) | ||||
Siddharth Agarwal
|
r26575 | if needcheck: | ||
r = _check(r, ui, tool, fcd, files) | ||||
Durham Goode
|
r21519 | |||
FUJIWARA Katsunori
|
r16125 | if r: | ||
if onfailure: | ||||
ui.warn(onfailure % fd) | ||||
Siddharth Agarwal
|
r26589 | |||
Siddharth Agarwal
|
r27034 | return True, r, deleted | ||
Siddharth Agarwal
|
r26589 | finally: | ||
Siddharth Agarwal
|
r27047 | if not r and back is not None: | ||
Mads Kiilerich
|
r21100 | util.unlink(back) | ||
util.unlink(b) | ||||
util.unlink(c) | ||||
Matt Mackall
|
r6004 | |||
Siddharth Agarwal
|
r26575 | def _check(r, ui, tool, fcd, files): | ||
fd = fcd.path() | ||||
a, b, c, back = files | ||||
if not r and (_toolbool(ui, tool, "checkconflicts") or | ||||
'conflicts' in _toollist(ui, tool, "check")): | ||||
if re.search("^(<<<<<<< .*|=======|>>>>>>> .*)$", fcd.data(), | ||||
re.MULTILINE): | ||||
r = 1 | ||||
checked = False | ||||
if 'prompt' in _toollist(ui, tool, "check"): | ||||
checked = True | ||||
if ui.promptchoice(_("was merge of '%s' successful (yn)?" | ||||
"$$ &Yes $$ &No") % fd, 1): | ||||
r = 1 | ||||
if not r and not checked and (_toolbool(ui, tool, "checkchanged") or | ||||
'changed' in | ||||
_toollist(ui, tool, "check")): | ||||
Siddharth Agarwal
|
r27047 | if back is not None and filecmp.cmp(a, back): | ||
Siddharth Agarwal
|
r26575 | if ui.promptchoice(_(" output file %s appears unchanged\n" | ||
"was merge successful (yn)?" | ||||
"$$ &Yes $$ &No") % fd, 1): | ||||
r = 1 | ||||
Siddharth Agarwal
|
r27047 | if back is not None and _toolbool(ui, tool, "fixeol"): | ||
Siddharth Agarwal
|
r26575 | _matcheol(a, back) | ||
return r | ||||
Siddharth Agarwal
|
r26607 | def premerge(repo, mynode, orig, fcd, fco, fca, labels=None): | ||
return _filemerge(True, repo, mynode, orig, fcd, fco, fca, labels=labels) | ||||
Siddharth Agarwal
|
r26605 | def filemerge(repo, mynode, orig, fcd, fco, fca, labels=None): | ||
Siddharth Agarwal
|
r26611 | return _filemerge(False, repo, mynode, orig, fcd, fco, fca, labels=labels) | ||
Siddharth Agarwal
|
r26605 | |||
FUJIWARA Katsunori
|
r16126 | # tell hggettext to extract docstrings from these functions: | ||
i18nfunctions = internals.values() | ||||