Fix "stg clean" when stack is empty
[stgit] / gitmergeonefile.py
CommitLineData
41a6d859
CM
1#!/usr/bin/env python
2"""Performs a 3-way merge for GIT files
3"""
4
5__copyright__ = """
6Copyright (C) 2005, Catalin Marinas <catalin.marinas@gmail.com>
7
8This program is free software; you can redistribute it and/or modify
9it under the terms of the GNU General Public License version 2 as
10published by the Free Software Foundation.
11
12This program is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
18along with this program; if not, write to the Free Software
19Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20"""
21
22import sys, os
7ab9ac47
CM
23
24# Try to detect where it is run from and set prefix and the search path.
25# It is assumed that the user installed StGIT using the --prefix= option
26prefix, bin = os.path.split(sys.path[0])
27
28if bin == 'bin' and prefix != sys.prefix:
29 major, minor = sys.version_info[0:2]
9c96f9f2
CM
30 local_path = [os.path.join(prefix, 'lib', 'python'),
31 os.path.join(prefix, 'lib', 'python%s.%s' % (major, minor)),
32 os.path.join(prefix, 'lib', 'python%s.%s' % (major, minor),
33 'site-packages')]
34 sys.path = local_path + sys.path
7ab9ac47 35
41a6d859
CM
36from stgit.config import config
37from stgit.utils import append_string
38
39
40#
41# Options
42#
43try:
44 merger = config.get('gitmergeonefile', 'merger')
45except Exception, err:
46 print >> sys.stderr, 'Configuration error: %s' % err
47 sys.exit(1)
48
49if config.has_option('gitmergeonefile', 'keeporig'):
50 keeporig = config.get('gitmergeonefile', 'keeporig')
51else:
52 keeporig = 'yes'
53
54
55#
56# Global variables
57#
58if 'GIT_DIR' in os.environ:
59 base_dir = os.environ['GIT_DIR']
60else:
61 base_dir = '.git'
62
63
64#
65# Utility functions
66#
67def __str2none(x):
68 if x == '':
69 return None
70 else:
71 return x
72
73def __output(cmd):
74 f = os.popen(cmd, 'r')
75 string = f.readline().strip()
76 if f.close():
77 print >> sys.stderr, 'Error: failed to execute "%s"' % cmd
78 sys.exit(1)
79 return string
80
81def __checkout_files():
82 """Check out the files passed as arguments
83 """
84 global orig, src1, src2
85
86 if orig_hash:
87 orig = '%s.older' % path
88 tmp = __output('git-unpack-file %s' % orig_hash)
89 os.chmod(tmp, int(orig_mode, 8))
8c737ba4 90 os.renames(tmp, orig)
41a6d859
CM
91 if file1_hash:
92 src1 = '%s.local' % path
93 tmp = __output('git-unpack-file %s' % file1_hash)
94 os.chmod(tmp, int(file1_mode, 8))
8c737ba4 95 os.renames(tmp, src1)
41a6d859
CM
96 if file2_hash:
97 src2 = '%s.remote' % path
98 tmp = __output('git-unpack-file %s' % file2_hash)
99 os.chmod(tmp, int(file2_mode, 8))
8c737ba4 100 os.renames(tmp, src2)
41a6d859
CM
101
102def __remove_files():
103 """Remove any temporary files
104 """
105 if orig_hash:
106 os.remove(orig)
107 if file1_hash:
108 os.remove(src1)
109 if file2_hash:
110 os.remove(src2)
111 pass
112
113def __conflict():
114 """Write the conflict file for the 'path' variable and exit
115 """
116 append_string(os.path.join(base_dir, 'conflicts'), path)
117 sys.exit(1)
118
119
120# $1 - original file SHA1 (or empty)
121# $2 - file in branch1 SHA1 (or empty)
122# $3 - file in branch2 SHA1 (or empty)
123# $4 - pathname in repository
124# $5 - orignal file mode (or empty)
125# $6 - file in branch1 mode (or empty)
126# $7 - file in branch2 mode (or empty)
8c737ba4
CM
127#
128#print 'gitmergeonefile.py "%s" "%s" "%s" "%s" "%s" "%s" "%s"' \
129# % tuple(sys.argv[1:8])
41a6d859
CM
130orig_hash, file1_hash, file2_hash, path, orig_mode, file1_mode, file2_mode = \
131 [__str2none(x) for x in sys.argv[1:8]]
132
133
134#
135# Main algorithm
136#
137__checkout_files()
138
139# file exists in origin
140if orig_hash:
141 # modified in both
142 if file1_hash and file2_hash:
143 # if modes are the same (git-read-tree probably dealed with it)
144 if file1_hash == file2_hash:
145 if os.system('git-update-cache --cacheinfo %s %s %s'
146 % (file1_mode, file1_hash, path)) != 0:
147 print >> sys.stderr, 'Error: git-update-cache failed'
148 __conflict()
149 if os.system('git-checkout-cache -u -f -- %s' % path):
150 print >> sys.stderr, 'Error: git-checkout-cache failed'
151 __conflict()
152 if file1_mode != file2_mode:
153 print >> sys.stderr, \
154 'Error: File added in both, permissions conflict'
155 __conflict()
156 # 3-way merge
157 else:
158 merge_ok = os.system(merger % {'branch1': src1,
159 'ancestor': orig,
160 'branch2': src2,
161 'output': path }) == 0
162
163 if merge_ok:
8c737ba4 164 os.system('git-update-cache -- %s' % path)
41a6d859
CM
165 __remove_files()
166 sys.exit(0)
167 else:
168 print >> sys.stderr, \
169 'Error: three-way merge tool failed for file "%s"' % path
170 # reset the cache to the first branch
171 os.system('git-update-cache --cacheinfo %s %s %s'
172 % (file1_mode, file1_hash, path))
173 if keeporig != 'yes':
174 __remove_files()
175 __conflict()
176 # file deleted in both or deleted in one and unchanged in the other
177 elif not (file1_hash or file2_hash) \
178 or file1_hash == orig_hash or file2_hash == orig_hash:
179 if os.path.exists(path):
180 os.remove(path)
181 __remove_files()
8c737ba4 182 sys.exit(os.system('git-update-cache --remove -- %s' % path))
41a6d859
CM
183# file does not exist in origin
184else:
185 # file added in both
186 if file1_hash and file2_hash:
187 # files are the same
188 if file1_hash == file2_hash:
189 if os.system('git-update-cache --add --cacheinfo %s %s %s'
190 % (file1_mode, file1_hash, path)) != 0:
191 print >> sys.stderr, 'Error: git-update-cache failed'
192 __conflict()
193 if os.system('git-checkout-cache -u -f -- %s' % path):
194 print >> sys.stderr, 'Error: git-checkout-cache failed'
195 __conflict()
196 if file1_mode != file2_mode:
197 print >> sys.stderr, \
198 'Error: File "s" added in both, permissions conflict' \
199 % path
200 __conflict()
201 # files are different
202 else:
203 print >> sys.stderr, \
204 'Error: File "%s" added in branches but different' % path
205 __conflict()
206 # file added in one
207 elif file1_hash or file2_hash:
208 if file1_hash:
209 mode = file1_mode
210 obj = file1_hash
211 else:
212 mode = file2_mode
213 obj = file2_hash
214 if os.system('git-update-cache --add --cacheinfo %s %s %s'
215 % (mode, obj, path)) != 0:
216 print >> sys.stderr, 'Error: git-update-cache failed'
217 __conflict()
218 __remove_files()
219 sys.exit(os.system('git-checkout-cache -u -f -- %s' % path))
220
221# Un-handled case
222print >> sys.stderr, 'Error: Un-handled merge conflict'
8c737ba4 223print >> sys.stderr, 'gitmergeonefile.py "%s" "%s" "%s" "%s" "%s" "%s" "%s"' \
41a6d859
CM
224 % tuple(sys.argv[1:8])
225__conflict()