##// END OF EJS Templates
filemerge: remove temporary files when using internal:dump as merge-tool
Thomas Arendsen Hein -
r16205:b605448e stable
parent child Browse files
Show More
@@ -1,269 +1,271
1 # filemerge.py - file-level merge handling for Mercurial
1 # filemerge.py - file-level merge handling for Mercurial
2 #
2 #
3 # Copyright 2006, 2007, 2008 Matt Mackall <mpm@selenic.com>
3 # Copyright 2006, 2007, 2008 Matt Mackall <mpm@selenic.com>
4 #
4 #
5 # This software may be used and distributed according to the terms of the
5 # This software may be used and distributed according to the terms of the
6 # GNU General Public License version 2 or any later version.
6 # GNU General Public License version 2 or any later version.
7
7
8 from node import short
8 from node import short
9 from i18n import _
9 from i18n import _
10 import util, simplemerge, match, error
10 import util, simplemerge, match, error
11 import os, tempfile, re, filecmp
11 import os, tempfile, re, filecmp
12
12
13 def _toolstr(ui, tool, part, default=""):
13 def _toolstr(ui, tool, part, default=""):
14 return ui.config("merge-tools", tool + "." + part, default)
14 return ui.config("merge-tools", tool + "." + part, default)
15
15
16 def _toolbool(ui, tool, part, default=False):
16 def _toolbool(ui, tool, part, default=False):
17 return ui.configbool("merge-tools", tool + "." + part, default)
17 return ui.configbool("merge-tools", tool + "." + part, default)
18
18
19 def _toollist(ui, tool, part, default=[]):
19 def _toollist(ui, tool, part, default=[]):
20 return ui.configlist("merge-tools", tool + "." + part, default)
20 return ui.configlist("merge-tools", tool + "." + part, default)
21
21
22 _internal = ['internal:' + s
22 _internal = ['internal:' + s
23 for s in 'fail local other merge prompt dump'.split()]
23 for s in 'fail local other merge prompt dump'.split()]
24
24
25 def _findtool(ui, tool):
25 def _findtool(ui, tool):
26 if tool in _internal:
26 if tool in _internal:
27 return tool
27 return tool
28 for kn in ("regkey", "regkeyalt"):
28 for kn in ("regkey", "regkeyalt"):
29 k = _toolstr(ui, tool, kn)
29 k = _toolstr(ui, tool, kn)
30 if not k:
30 if not k:
31 continue
31 continue
32 p = util.lookupreg(k, _toolstr(ui, tool, "regname"))
32 p = util.lookupreg(k, _toolstr(ui, tool, "regname"))
33 if p:
33 if p:
34 p = util.findexe(p + _toolstr(ui, tool, "regappend"))
34 p = util.findexe(p + _toolstr(ui, tool, "regappend"))
35 if p:
35 if p:
36 return p
36 return p
37 exe = _toolstr(ui, tool, "executable", tool)
37 exe = _toolstr(ui, tool, "executable", tool)
38 return util.findexe(util.expandpath(exe))
38 return util.findexe(util.expandpath(exe))
39
39
40 def _picktool(repo, ui, path, binary, symlink):
40 def _picktool(repo, ui, path, binary, symlink):
41 def check(tool, pat, symlink, binary):
41 def check(tool, pat, symlink, binary):
42 tmsg = tool
42 tmsg = tool
43 if pat:
43 if pat:
44 tmsg += " specified for " + pat
44 tmsg += " specified for " + pat
45 if not _findtool(ui, tool):
45 if not _findtool(ui, tool):
46 if pat: # explicitly requested tool deserves a warning
46 if pat: # explicitly requested tool deserves a warning
47 ui.warn(_("couldn't find merge tool %s\n") % tmsg)
47 ui.warn(_("couldn't find merge tool %s\n") % tmsg)
48 else: # configured but non-existing tools are more silent
48 else: # configured but non-existing tools are more silent
49 ui.note(_("couldn't find merge tool %s\n") % tmsg)
49 ui.note(_("couldn't find merge tool %s\n") % tmsg)
50 elif symlink and not _toolbool(ui, tool, "symlink"):
50 elif symlink and not _toolbool(ui, tool, "symlink"):
51 ui.warn(_("tool %s can't handle symlinks\n") % tmsg)
51 ui.warn(_("tool %s can't handle symlinks\n") % tmsg)
52 elif binary and not _toolbool(ui, tool, "binary"):
52 elif binary and not _toolbool(ui, tool, "binary"):
53 ui.warn(_("tool %s can't handle binary\n") % tmsg)
53 ui.warn(_("tool %s can't handle binary\n") % tmsg)
54 elif not util.gui() and _toolbool(ui, tool, "gui"):
54 elif not util.gui() and _toolbool(ui, tool, "gui"):
55 ui.warn(_("tool %s requires a GUI\n") % tmsg)
55 ui.warn(_("tool %s requires a GUI\n") % tmsg)
56 else:
56 else:
57 return True
57 return True
58 return False
58 return False
59
59
60 # forcemerge comes from command line arguments, highest priority
60 # forcemerge comes from command line arguments, highest priority
61 force = ui.config('ui', 'forcemerge')
61 force = ui.config('ui', 'forcemerge')
62 if force:
62 if force:
63 toolpath = _findtool(ui, force)
63 toolpath = _findtool(ui, force)
64 if toolpath:
64 if toolpath:
65 return (force, '"' + toolpath + '"')
65 return (force, '"' + toolpath + '"')
66 else:
66 else:
67 # mimic HGMERGE if given tool not found
67 # mimic HGMERGE if given tool not found
68 return (force, force)
68 return (force, force)
69
69
70 # HGMERGE takes next precedence
70 # HGMERGE takes next precedence
71 hgmerge = os.environ.get("HGMERGE")
71 hgmerge = os.environ.get("HGMERGE")
72 if hgmerge:
72 if hgmerge:
73 return (hgmerge, hgmerge)
73 return (hgmerge, hgmerge)
74
74
75 # then patterns
75 # then patterns
76 for pat, tool in ui.configitems("merge-patterns"):
76 for pat, tool in ui.configitems("merge-patterns"):
77 mf = match.match(repo.root, '', [pat])
77 mf = match.match(repo.root, '', [pat])
78 if mf(path) and check(tool, pat, symlink, False):
78 if mf(path) and check(tool, pat, symlink, False):
79 toolpath = _findtool(ui, tool)
79 toolpath = _findtool(ui, tool)
80 return (tool, '"' + toolpath + '"')
80 return (tool, '"' + toolpath + '"')
81
81
82 # then merge tools
82 # then merge tools
83 tools = {}
83 tools = {}
84 for k, v in ui.configitems("merge-tools"):
84 for k, v in ui.configitems("merge-tools"):
85 t = k.split('.')[0]
85 t = k.split('.')[0]
86 if t not in tools:
86 if t not in tools:
87 tools[t] = int(_toolstr(ui, t, "priority", "0"))
87 tools[t] = int(_toolstr(ui, t, "priority", "0"))
88 names = tools.keys()
88 names = tools.keys()
89 tools = sorted([(-p, t) for t, p in tools.items()])
89 tools = sorted([(-p, t) for t, p in tools.items()])
90 uimerge = ui.config("ui", "merge")
90 uimerge = ui.config("ui", "merge")
91 if uimerge:
91 if uimerge:
92 if uimerge not in names:
92 if uimerge not in names:
93 return (uimerge, uimerge)
93 return (uimerge, uimerge)
94 tools.insert(0, (None, uimerge)) # highest priority
94 tools.insert(0, (None, uimerge)) # highest priority
95 tools.append((None, "hgmerge")) # the old default, if found
95 tools.append((None, "hgmerge")) # the old default, if found
96 for p, t in tools:
96 for p, t in tools:
97 if check(t, None, symlink, binary):
97 if check(t, None, symlink, binary):
98 toolpath = _findtool(ui, t)
98 toolpath = _findtool(ui, t)
99 return (t, '"' + toolpath + '"')
99 return (t, '"' + toolpath + '"')
100 # internal merge as last resort
100 # internal merge as last resort
101 return (not (symlink or binary) and "internal:merge" or None, None)
101 return (not (symlink or binary) and "internal:merge" or None, None)
102
102
103 def _eoltype(data):
103 def _eoltype(data):
104 "Guess the EOL type of a file"
104 "Guess the EOL type of a file"
105 if '\0' in data: # binary
105 if '\0' in data: # binary
106 return None
106 return None
107 if '\r\n' in data: # Windows
107 if '\r\n' in data: # Windows
108 return '\r\n'
108 return '\r\n'
109 if '\r' in data: # Old Mac
109 if '\r' in data: # Old Mac
110 return '\r'
110 return '\r'
111 if '\n' in data: # UNIX
111 if '\n' in data: # UNIX
112 return '\n'
112 return '\n'
113 return None # unknown
113 return None # unknown
114
114
115 def _matcheol(file, origfile):
115 def _matcheol(file, origfile):
116 "Convert EOL markers in a file to match origfile"
116 "Convert EOL markers in a file to match origfile"
117 tostyle = _eoltype(util.readfile(origfile))
117 tostyle = _eoltype(util.readfile(origfile))
118 if tostyle:
118 if tostyle:
119 data = util.readfile(file)
119 data = util.readfile(file)
120 style = _eoltype(data)
120 style = _eoltype(data)
121 if style:
121 if style:
122 newdata = data.replace(style, tostyle)
122 newdata = data.replace(style, tostyle)
123 if newdata != data:
123 if newdata != data:
124 util.writefile(file, newdata)
124 util.writefile(file, newdata)
125
125
126 def filemerge(repo, mynode, orig, fcd, fco, fca):
126 def filemerge(repo, mynode, orig, fcd, fco, fca):
127 """perform a 3-way merge in the working directory
127 """perform a 3-way merge in the working directory
128
128
129 mynode = parent node before merge
129 mynode = parent node before merge
130 orig = original local filename before merge
130 orig = original local filename before merge
131 fco = other file context
131 fco = other file context
132 fca = ancestor file context
132 fca = ancestor file context
133 fcd = local file context for current/destination file
133 fcd = local file context for current/destination file
134 """
134 """
135
135
136 def temp(prefix, ctx):
136 def temp(prefix, ctx):
137 pre = "%s~%s." % (os.path.basename(ctx.path()), prefix)
137 pre = "%s~%s." % (os.path.basename(ctx.path()), prefix)
138 (fd, name) = tempfile.mkstemp(prefix=pre)
138 (fd, name) = tempfile.mkstemp(prefix=pre)
139 data = repo.wwritedata(ctx.path(), ctx.data())
139 data = repo.wwritedata(ctx.path(), ctx.data())
140 f = os.fdopen(fd, "wb")
140 f = os.fdopen(fd, "wb")
141 f.write(data)
141 f.write(data)
142 f.close()
142 f.close()
143 return name
143 return name
144
144
145 if not fco.cmp(fcd): # files identical?
145 if not fco.cmp(fcd): # files identical?
146 return None
146 return None
147
147
148 ui = repo.ui
148 ui = repo.ui
149 fd = fcd.path()
149 fd = fcd.path()
150 binary = fcd.isbinary() or fco.isbinary() or fca.isbinary()
150 binary = fcd.isbinary() or fco.isbinary() or fca.isbinary()
151 symlink = 'l' in fcd.flags() + fco.flags()
151 symlink = 'l' in fcd.flags() + fco.flags()
152 tool, toolpath = _picktool(repo, ui, fd, binary, symlink)
152 tool, toolpath = _picktool(repo, ui, fd, binary, symlink)
153 ui.debug("picked tool '%s' for %s (binary %s symlink %s)\n" %
153 ui.debug("picked tool '%s' for %s (binary %s symlink %s)\n" %
154 (tool, fd, binary, symlink))
154 (tool, fd, binary, symlink))
155
155
156 if not tool or tool == 'internal:prompt':
156 if not tool or tool == 'internal:prompt':
157 tool = "internal:local"
157 tool = "internal:local"
158 if ui.promptchoice(_(" no tool found to merge %s\n"
158 if ui.promptchoice(_(" no tool found to merge %s\n"
159 "keep (l)ocal or take (o)ther?") % fd,
159 "keep (l)ocal or take (o)ther?") % fd,
160 (_("&Local"), _("&Other")), 0):
160 (_("&Local"), _("&Other")), 0):
161 tool = "internal:other"
161 tool = "internal:other"
162 if tool == "internal:local":
162 if tool == "internal:local":
163 return 0
163 return 0
164 if tool == "internal:other":
164 if tool == "internal:other":
165 repo.wwrite(fd, fco.data(), fco.flags())
165 repo.wwrite(fd, fco.data(), fco.flags())
166 return 0
166 return 0
167 if tool == "internal:fail":
167 if tool == "internal:fail":
168 return 1
168 return 1
169
169
170 # do the actual merge
170 # do the actual merge
171 a = repo.wjoin(fd)
171 a = repo.wjoin(fd)
172 b = temp("base", fca)
172 b = temp("base", fca)
173 c = temp("other", fco)
173 c = temp("other", fco)
174 out = ""
174 out = ""
175 back = a + ".orig"
175 back = a + ".orig"
176 util.copyfile(a, back)
176 util.copyfile(a, back)
177
177
178 if orig != fco.path():
178 if orig != fco.path():
179 ui.status(_("merging %s and %s to %s\n") % (orig, fco.path(), fd))
179 ui.status(_("merging %s and %s to %s\n") % (orig, fco.path(), fd))
180 else:
180 else:
181 ui.status(_("merging %s\n") % fd)
181 ui.status(_("merging %s\n") % fd)
182
182
183 ui.debug("my %s other %s ancestor %s\n" % (fcd, fco, fca))
183 ui.debug("my %s other %s ancestor %s\n" % (fcd, fco, fca))
184
184
185 # do we attempt to simplemerge first?
185 # do we attempt to simplemerge first?
186 try:
186 try:
187 premerge = _toolbool(ui, tool, "premerge", not (binary or symlink))
187 premerge = _toolbool(ui, tool, "premerge", not (binary or symlink))
188 except error.ConfigError:
188 except error.ConfigError:
189 premerge = _toolstr(ui, tool, "premerge").lower()
189 premerge = _toolstr(ui, tool, "premerge").lower()
190 valid = 'keep'.split()
190 valid = 'keep'.split()
191 if premerge not in valid:
191 if premerge not in valid:
192 _valid = ', '.join(["'" + v + "'" for v in valid])
192 _valid = ', '.join(["'" + v + "'" for v in valid])
193 raise error.ConfigError(_("%s.premerge not valid "
193 raise error.ConfigError(_("%s.premerge not valid "
194 "('%s' is neither boolean nor %s)") %
194 "('%s' is neither boolean nor %s)") %
195 (tool, premerge, _valid))
195 (tool, premerge, _valid))
196
196
197 if premerge:
197 if premerge:
198 r = simplemerge.simplemerge(ui, a, b, c, quiet=True)
198 r = simplemerge.simplemerge(ui, a, b, c, quiet=True)
199 if not r:
199 if not r:
200 ui.debug(" premerge successful\n")
200 ui.debug(" premerge successful\n")
201 os.unlink(back)
201 os.unlink(back)
202 os.unlink(b)
202 os.unlink(b)
203 os.unlink(c)
203 os.unlink(c)
204 return 0
204 return 0
205 if premerge != 'keep':
205 if premerge != 'keep':
206 util.copyfile(back, a) # restore from backup and try again
206 util.copyfile(back, a) # restore from backup and try again
207
207
208 env = dict(HG_FILE=fd,
208 env = dict(HG_FILE=fd,
209 HG_MY_NODE=short(mynode),
209 HG_MY_NODE=short(mynode),
210 HG_OTHER_NODE=str(fco.changectx()),
210 HG_OTHER_NODE=str(fco.changectx()),
211 HG_BASE_NODE=str(fca.changectx()),
211 HG_BASE_NODE=str(fca.changectx()),
212 HG_MY_ISLINK='l' in fcd.flags(),
212 HG_MY_ISLINK='l' in fcd.flags(),
213 HG_OTHER_ISLINK='l' in fco.flags(),
213 HG_OTHER_ISLINK='l' in fco.flags(),
214 HG_BASE_ISLINK='l' in fca.flags())
214 HG_BASE_ISLINK='l' in fca.flags())
215
215
216 if tool == "internal:merge":
216 if tool == "internal:merge":
217 r = simplemerge.simplemerge(ui, a, b, c, label=['local', 'other'])
217 r = simplemerge.simplemerge(ui, a, b, c, label=['local', 'other'])
218 elif tool == 'internal:dump':
218 elif tool == 'internal:dump':
219 a = repo.wjoin(fd)
219 a = repo.wjoin(fd)
220 util.copyfile(a, a + ".local")
220 util.copyfile(a, a + ".local")
221 repo.wwrite(fd + ".other", fco.data(), fco.flags())
221 repo.wwrite(fd + ".other", fco.data(), fco.flags())
222 repo.wwrite(fd + ".base", fca.data(), fca.flags())
222 repo.wwrite(fd + ".base", fca.data(), fca.flags())
223 os.unlink(b)
224 os.unlink(c)
223 return 1 # unresolved
225 return 1 # unresolved
224 else:
226 else:
225 args = _toolstr(ui, tool, "args", '$local $base $other')
227 args = _toolstr(ui, tool, "args", '$local $base $other')
226 if "$output" in args:
228 if "$output" in args:
227 out, a = a, back # read input from backup, write to original
229 out, a = a, back # read input from backup, write to original
228 replace = dict(local=a, base=b, other=c, output=out)
230 replace = dict(local=a, base=b, other=c, output=out)
229 args = util.interpolate(r'\$', replace, args,
231 args = util.interpolate(r'\$', replace, args,
230 lambda s: '"%s"' % util.localpath(s))
232 lambda s: '"%s"' % util.localpath(s))
231 r = util.system(toolpath + ' ' + args, cwd=repo.root, environ=env,
233 r = util.system(toolpath + ' ' + args, cwd=repo.root, environ=env,
232 out=ui.fout)
234 out=ui.fout)
233
235
234 if not r and (_toolbool(ui, tool, "checkconflicts") or
236 if not r and (_toolbool(ui, tool, "checkconflicts") or
235 'conflicts' in _toollist(ui, tool, "check")):
237 'conflicts' in _toollist(ui, tool, "check")):
236 if re.search("^(<<<<<<< .*|=======|>>>>>>> .*)$", fcd.data(),
238 if re.search("^(<<<<<<< .*|=======|>>>>>>> .*)$", fcd.data(),
237 re.MULTILINE):
239 re.MULTILINE):
238 r = 1
240 r = 1
239
241
240 checked = False
242 checked = False
241 if 'prompt' in _toollist(ui, tool, "check"):
243 if 'prompt' in _toollist(ui, tool, "check"):
242 checked = True
244 checked = True
243 if ui.promptchoice(_("was merge of '%s' successful (yn)?") % fd,
245 if ui.promptchoice(_("was merge of '%s' successful (yn)?") % fd,
244 (_("&Yes"), _("&No")), 1):
246 (_("&Yes"), _("&No")), 1):
245 r = 1
247 r = 1
246
248
247 if not r and not checked and (_toolbool(ui, tool, "checkchanged") or
249 if not r and not checked and (_toolbool(ui, tool, "checkchanged") or
248 'changed' in _toollist(ui, tool, "check")):
250 'changed' in _toollist(ui, tool, "check")):
249 if filecmp.cmp(repo.wjoin(fd), back):
251 if filecmp.cmp(repo.wjoin(fd), back):
250 if ui.promptchoice(_(" output file %s appears unchanged\n"
252 if ui.promptchoice(_(" output file %s appears unchanged\n"
251 "was merge successful (yn)?") % fd,
253 "was merge successful (yn)?") % fd,
252 (_("&Yes"), _("&No")), 1):
254 (_("&Yes"), _("&No")), 1):
253 r = 1
255 r = 1
254
256
255 if _toolbool(ui, tool, "fixeol"):
257 if _toolbool(ui, tool, "fixeol"):
256 _matcheol(repo.wjoin(fd), back)
258 _matcheol(repo.wjoin(fd), back)
257
259
258 if r:
260 if r:
259 if tool == "internal:merge":
261 if tool == "internal:merge":
260 ui.warn(_("merging %s incomplete! "
262 ui.warn(_("merging %s incomplete! "
261 "(edit conflicts, then use 'hg resolve --mark')\n") % fd)
263 "(edit conflicts, then use 'hg resolve --mark')\n") % fd)
262 else:
264 else:
263 ui.warn(_("merging %s failed!\n") % fd)
265 ui.warn(_("merging %s failed!\n") % fd)
264 else:
266 else:
265 os.unlink(back)
267 os.unlink(back)
266
268
267 os.unlink(b)
269 os.unlink(b)
268 os.unlink(c)
270 os.unlink(c)
269 return r
271 return r
General Comments 0
You need to be logged in to leave comments. Login now