chiark / gitweb /
200448bbc71c4202835b27aa9f5c17b9980557c4
[stgit] / stgit / gitmergeonefile.py
1 """Performs a 3-way merge for GIT files
2 """
3
4 __copyright__ = """
5 Copyright (C) 2006, Catalin Marinas <catalin.marinas@gmail.com>
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License version 2 as
9 published by the Free Software Foundation.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 """
20
21 import sys, os
22 from stgit import basedir
23 from stgit.config import config, file_extensions, ConfigOption
24 from stgit.utils import append_string
25
26
27 class GitMergeException(Exception):
28     pass
29
30
31 #
32 # Options
33 #
34 merger = ConfigOption('stgit', 'merger')
35 keeporig = ConfigOption('stgit', 'keeporig')
36
37 #
38 # Utility functions
39 #
40 def __str2none(x):
41     if x == '':
42         return None
43     else:
44         return x
45
46 def __output(cmd):
47     f = os.popen(cmd, 'r')
48     string = f.readline().rstrip()
49     if f.close():
50         raise GitMergeException, 'Error: failed to execute "%s"' % cmd
51     return string
52
53 def __checkout_files(orig_hash, file1_hash, file2_hash,
54                      path,
55                      orig_mode, file1_mode, file2_mode):
56     """Check out the files passed as arguments
57     """
58     global orig, src1, src2
59
60     extensions = file_extensions()
61
62     if orig_hash:
63         orig = path + extensions['ancestor']
64         tmp = __output('git-unpack-file %s' % orig_hash)
65         os.chmod(tmp, int(orig_mode, 8))
66         os.renames(tmp, orig)
67     if file1_hash:
68         src1 = path + extensions['current']
69         tmp = __output('git-unpack-file %s' % file1_hash)
70         os.chmod(tmp, int(file1_mode, 8))
71         os.renames(tmp, src1)
72     if file2_hash:
73         src2 = path + extensions['patched']
74         tmp = __output('git-unpack-file %s' % file2_hash)
75         os.chmod(tmp, int(file2_mode, 8))
76         os.renames(tmp, src2)
77
78     if file1_hash and not os.path.exists(path):
79         # the current file might be removed by GIT when it is a new
80         # file added in both branches. Just re-generate it
81         tmp = __output('git-unpack-file %s' % file1_hash)
82         os.chmod(tmp, int(file1_mode, 8))
83         os.renames(tmp, path)
84
85 def __remove_files(orig_hash, file1_hash, file2_hash):
86     """Remove any temporary files
87     """
88     if orig_hash:
89         os.remove(orig)
90     if file1_hash:
91         os.remove(src1)
92     if file2_hash:
93         os.remove(src2)
94
95 def __conflict(path):
96     """Write the conflict file for the 'path' variable and exit
97     """
98     append_string(os.path.join(basedir.get(), 'conflicts'), path)
99
100
101 def interactive_merge(filename):
102     """Run the interactive merger on the given file. Note that the
103     index should not have any conflicts.
104     """
105     try:
106         imerger = config.get('stgit', 'imerger')
107     except Exception, err:
108         raise GitMergeException, 'Configuration error: %s' % err
109
110     extensions = file_extensions()
111
112     ancestor = filename + extensions['ancestor']
113     current = filename + extensions['current']
114     patched = filename + extensions['patched']
115
116     # check whether we have all the files for a three-way merge
117     for fn in [filename, ancestor, current, patched]:
118         if not os.path.isfile(fn):
119             raise GitMergeException, \
120                   'Cannot run the interactive merger: "%s" missing' % fn
121
122     mtime = os.path.getmtime(filename)
123
124     err = os.system(imerger % {'branch1': current,
125                                'ancestor': ancestor,
126                                'branch2': patched,
127                                'output': filename})
128
129     if err != 0:
130         raise GitMergeException, 'The interactive merge failed: %d' % err
131     if not os.path.isfile(filename):
132         raise GitMergeException, 'The "%s" file is missing' % filename
133     if mtime == os.path.getmtime(filename):
134         raise GitMergeException, 'The "%s" file was not modified' % filename
135
136
137 #
138 # Main algorithm
139 #
140 def merge(orig_hash, file1_hash, file2_hash,
141           path,
142           orig_mode, file1_mode, file2_mode):
143     """Three-way merge for one file algorithm
144     """
145     __checkout_files(orig_hash, file1_hash, file2_hash,
146                      path,
147                      orig_mode, file1_mode, file2_mode)
148
149     # file exists in origin
150     if orig_hash:
151         # modified in both
152         if file1_hash and file2_hash:
153             # if modes are the same (git-read-tree probably dealt with it)
154             if file1_hash == file2_hash:
155                 if os.system('git-update-index --cacheinfo %s %s %s'
156                              % (file1_mode, file1_hash, path)) != 0:
157                     print >> sys.stderr, 'Error: git-update-index failed'
158                     __conflict(path)
159                     return 1
160                 if os.system('git-checkout-index -u -f -- %s' % path):
161                     print >> sys.stderr, 'Error: git-checkout-index failed'
162                     __conflict(path)
163                     return 1
164                 if file1_mode != file2_mode:
165                     print >> sys.stderr, \
166                           'Error: File added in both, permissions conflict'
167                     __conflict(path)
168                     return 1
169             # 3-way merge
170             else:
171                 merge_ok = os.system(str(merger) % {'branch1': src1,
172                                                     'ancestor': orig,
173                                                     'branch2': src2,
174                                                     'output': path }) == 0
175
176                 if merge_ok:
177                     os.system('git-update-index -- %s' % path)
178                     __remove_files(orig_hash, file1_hash, file2_hash)
179                     return 0
180                 else:
181                     print >> sys.stderr, \
182                           'Error: three-way merge tool failed for file "%s"' \
183                           % path
184                     # reset the cache to the first branch
185                     os.system('git-update-index --cacheinfo %s %s %s'
186                               % (file1_mode, file1_hash, path))
187
188                     if config.get('stgit', 'autoimerge') == 'yes':
189                         print >> sys.stderr, \
190                               'Trying the interactive merge'
191                         try:
192                             interactive_merge(path)
193                         except GitMergeException, ex:
194                             # interactive merge failed
195                             print >> sys.stderr, str(ex)
196                             if str(keeporig) != 'yes':
197                                 __remove_files(orig_hash, file1_hash,
198                                                file2_hash)
199                             __conflict(path)
200                             return 1
201                         # successful interactive merge
202                         __remove_files(orig_hash, file1_hash, file2_hash)
203                         return 0
204                     else:
205                         # no interactive merge, just mark it as conflict
206                         if str(keeporig) != 'yes':
207                             __remove_files(orig_hash, file1_hash, file2_hash)
208                         __conflict(path)
209                         return 1
210
211         # file deleted in both or deleted in one and unchanged in the other
212         elif not (file1_hash or file2_hash) \
213                or file1_hash == orig_hash or file2_hash == orig_hash:
214             if os.path.exists(path):
215                 os.remove(path)
216             __remove_files(orig_hash, file1_hash, file2_hash)
217             return os.system('git-update-index --remove -- %s' % path)
218         # file deleted in one and changed in the other
219         else:
220             # Do something here - we must at least merge the entry in
221             # the cache, instead of leaving it in U(nmerged) state. In
222             # fact, stg resolved does not handle that.
223
224             # Do the same thing cogito does - remove the file in any case.
225             os.system('git-update-index --remove -- %s' % path)
226
227             #if file1_hash:
228                 ## file deleted upstream and changed in the patch. The
229                 ## patch is probably going to move the changes
230                 ## elsewhere.
231
232                 #os.system('git-update-index --remove -- %s' % path)
233             #else:
234                 ## file deleted in the patch and changed upstream. We
235                 ## could re-delete it, but for now leave it there -
236                 ## and let the user check if he still wants to remove
237                 ## the file.
238
239                 ## reset the cache to the first branch
240                 #os.system('git-update-index --cacheinfo %s %s %s'
241                 #          % (file1_mode, file1_hash, path))
242             __conflict(path)
243             return 1
244
245     # file does not exist in origin
246     else:
247         # file added in both
248         if file1_hash and file2_hash:
249             # files are the same
250             if file1_hash == file2_hash:
251                 if os.system('git-update-index --add --cacheinfo %s %s %s'
252                              % (file1_mode, file1_hash, path)) != 0:
253                     print >> sys.stderr, 'Error: git-update-index failed'
254                     __conflict(path)
255                     return 1
256                 if os.system('git-checkout-index -u -f -- %s' % path):
257                     print >> sys.stderr, 'Error: git-checkout-index failed'
258                     __conflict(path)
259                     return 1
260                 if file1_mode != file2_mode:
261                     print >> sys.stderr, \
262                           'Error: File "s" added in both, ' \
263                           'permissions conflict' % path
264                     __conflict(path)
265                     return 1
266             # files are different
267             else:
268                 # reset the index to the current file
269                 os.system('git-update-index -- %s' % path)
270                 print >> sys.stderr, \
271                       'Error: File "%s" added in branches but different' % path
272                 __conflict(path)
273                 return 1
274         # file added in one
275         elif file1_hash or file2_hash:
276             if file1_hash:
277                 mode = file1_mode
278                 obj = file1_hash
279             else:
280                 mode = file2_mode
281                 obj = file2_hash
282             if os.system('git-update-index --add --cacheinfo %s %s %s'
283                          % (mode, obj, path)) != 0:
284                 print >> sys.stderr, 'Error: git-update-index failed'
285                 __conflict(path)
286                 return 1
287             __remove_files(orig_hash, file1_hash, file2_hash)
288             return os.system('git-checkout-index -u -f -- %s' % path)
289
290     # Unhandled case
291     print >> sys.stderr, 'Error: Unhandled merge conflict: ' \
292           '"%s" "%s" "%s" "%s" "%s" "%s" "%s"' \
293           % (orig_hash, file1_hash, file2_hash,
294              path,
295              orig_mode, file1_mode, file2_mode)
296     __conflict(path)
297     return 1