X-Git-Url: https://git.distorted.org.uk/~mdw/stgit/blobdiff_plain/c19dc3db115d85537dbdf0b4f12dc8b3bc9481c4..f7ed76a9b6158888e8efe2faef9c095802fd93fe:/stgit/gitmergeonefile.py diff --git a/stgit/gitmergeonefile.py b/stgit/gitmergeonefile.py index 3b3175b..200448b 100644 --- a/stgit/gitmergeonefile.py +++ b/stgit/gitmergeonefile.py @@ -19,7 +19,8 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA """ import sys, os -from stgit.config import config +from stgit import basedir +from stgit.config import config, file_extensions, ConfigOption from stgit.utils import append_string @@ -30,12 +31,8 @@ class GitMergeException(Exception): # # Options # -try: - merger = config.get('stgit', 'merger') - keeporig = config.get('stgit', 'keeporig') -except Exception, err: - raise GitMergeException, 'Configuration error: %s' % err - +merger = ConfigOption('stgit', 'merger') +keeporig = ConfigOption('stgit', 'keeporig') # # Utility functions @@ -60,22 +57,31 @@ def __checkout_files(orig_hash, file1_hash, file2_hash, """ global orig, src1, src2 + extensions = file_extensions() + if orig_hash: - orig = '%s.older' % path + orig = path + extensions['ancestor'] tmp = __output('git-unpack-file %s' % orig_hash) os.chmod(tmp, int(orig_mode, 8)) os.renames(tmp, orig) if file1_hash: - src1 = '%s.local' % path + src1 = path + extensions['current'] tmp = __output('git-unpack-file %s' % file1_hash) os.chmod(tmp, int(file1_mode, 8)) os.renames(tmp, src1) if file2_hash: - src2 = '%s.remote' % path + src2 = path + extensions['patched'] tmp = __output('git-unpack-file %s' % file2_hash) os.chmod(tmp, int(file2_mode, 8)) os.renames(tmp, src2) + if file1_hash and not os.path.exists(path): + # the current file might be removed by GIT when it is a new + # file added in both branches. Just re-generate it + tmp = __output('git-unpack-file %s' % file1_hash) + os.chmod(tmp, int(file1_mode, 8)) + os.renames(tmp, path) + def __remove_files(orig_hash, file1_hash, file2_hash): """Remove any temporary files """ @@ -85,23 +91,47 @@ def __remove_files(orig_hash, file1_hash, file2_hash): os.remove(src1) if file2_hash: os.remove(src2) - pass - -# GIT_DIR value cached -__base_dir = None def __conflict(path): """Write the conflict file for the 'path' variable and exit """ - global __base_dir + append_string(os.path.join(basedir.get(), 'conflicts'), path) - if not __base_dir: - if 'GIT_DIR' in os.environ: - __base_dir = os.environ['GIT_DIR'] - else: - __base_dir = __output('git-rev-parse --git-dir') - append_string(os.path.join(__base_dir, 'conflicts'), path) +def interactive_merge(filename): + """Run the interactive merger on the given file. Note that the + index should not have any conflicts. + """ + try: + imerger = config.get('stgit', 'imerger') + except Exception, err: + raise GitMergeException, 'Configuration error: %s' % err + + extensions = file_extensions() + + ancestor = filename + extensions['ancestor'] + current = filename + extensions['current'] + patched = filename + extensions['patched'] + + # check whether we have all the files for a three-way merge + for fn in [filename, ancestor, current, patched]: + if not os.path.isfile(fn): + raise GitMergeException, \ + 'Cannot run the interactive merger: "%s" missing' % fn + + mtime = os.path.getmtime(filename) + + err = os.system(imerger % {'branch1': current, + 'ancestor': ancestor, + 'branch2': patched, + 'output': filename}) + + if err != 0: + raise GitMergeException, 'The interactive merge failed: %d' % err + if not os.path.isfile(filename): + raise GitMergeException, 'The "%s" file is missing' % filename + if mtime == os.path.getmtime(filename): + raise GitMergeException, 'The "%s" file was not modified' % filename # @@ -138,10 +168,10 @@ def merge(orig_hash, file1_hash, file2_hash, return 1 # 3-way merge else: - merge_ok = os.system(merger % {'branch1': src1, - 'ancestor': orig, - 'branch2': src2, - 'output': path }) == 0 + merge_ok = os.system(str(merger) % {'branch1': src1, + 'ancestor': orig, + 'branch2': src2, + 'output': path }) == 0 if merge_ok: os.system('git-update-index -- %s' % path) @@ -154,10 +184,30 @@ def merge(orig_hash, file1_hash, file2_hash, # reset the cache to the first branch os.system('git-update-index --cacheinfo %s %s %s' % (file1_mode, file1_hash, path)) - if keeporig != 'yes': + + if config.get('stgit', 'autoimerge') == 'yes': + print >> sys.stderr, \ + 'Trying the interactive merge' + try: + interactive_merge(path) + except GitMergeException, ex: + # interactive merge failed + print >> sys.stderr, str(ex) + if str(keeporig) != 'yes': + __remove_files(orig_hash, file1_hash, + file2_hash) + __conflict(path) + return 1 + # successful interactive merge __remove_files(orig_hash, file1_hash, file2_hash) - __conflict(path) - return 1 + return 0 + else: + # no interactive merge, just mark it as conflict + if str(keeporig) != 'yes': + __remove_files(orig_hash, file1_hash, file2_hash) + __conflict(path) + return 1 + # file deleted in both or deleted in one and unchanged in the other elif not (file1_hash or file2_hash) \ or file1_hash == orig_hash or file2_hash == orig_hash: @@ -215,6 +265,8 @@ def merge(orig_hash, file1_hash, file2_hash, return 1 # files are different else: + # reset the index to the current file + os.system('git-update-index -- %s' % path) print >> sys.stderr, \ 'Error: File "%s" added in branches but different' % path __conflict(path)