2 # Copyright (c) 2009, 2010 David Aguilar
3 # Copyright (c) 2012 Tim Henigan
5 # This is a wrapper around the GIT_EXTERNAL_DIFF-compatible
6 # git-difftool--helper script.
8 # This script exports GIT_EXTERNAL_DIFF and GIT_PAGER for use by git.
9 # The GIT_DIFF* variables are exported for use by git-difftool--helper.
11 # Any arguments that are unknown to this script are forwarded to 'git diff'.
16 use File
::Basename
qw(dirname);
21 use File
::Path
qw(mkpath rmtree);
22 use File
::Temp
qw(tempdir);
23 use Getopt
::Long
qw(:config pass_through);
30 usage
: git difftool
[-t
|--tool
=<tool
>] [--tool
-help
]
33 [--prompt
] [-y
|--no-prompt
]
44 # Git->repository->wc_path() does not honor changes to the working
45 # tree location made by $ENV{GIT_WORK_TREE} or the 'core.worktree'
48 my $env_worktree = $ENV{GIT_WORK_TREE
};
49 my $core_worktree = Git
::config
('core.worktree');
51 if (defined($env_worktree) and (length($env_worktree) > 0)) {
52 $worktree = $env_worktree;
53 } elsif (defined($core_worktree) and (length($core_worktree) > 0)) {
54 $worktree = $core_worktree;
56 $worktree = $repo->wc_path();
62 sub filter_tool_scripts
67 # Ignore files in subdirectories
68 $File::Find
::prune
= 1;
71 if ((-f
$_) && ($_ ne "defaults")) {
79 my ($cmd, @found, @notfound, @tools);
80 my $gitpath = Git
::exec_path
();
82 find
(sub { filter_tool_scripts
(\
@tools) }, "$gitpath/mergetools");
84 foreach my $tool (@tools) {
85 $cmd = "TOOL_MODE=diff";
86 $cmd .= ' && . "$(git --exec-path)/git-mergetool--lib"';
87 $cmd .= " && get_merge_tool_path $tool >/dev/null 2>&1";
88 $cmd .= " && can_diff >/dev/null 2>&1";
89 if (system('sh', '-c', $cmd) == 0) {
92 push(@notfound, $tool);
97 'git difftool --tool=<tool>' may be set to one of the following
:
99 print "\t$_\n" for (sort(@found));
103 The following tools are valid
, but
not currently available
:
105 print "\t$_\n" for (sort(@notfound));
109 NOTE
: Some of the tools listed above only work
in a windowed
110 environment
. If run
in a terminal
-only session
, they will fail
.
117 my ($tmpdir, $status) = @_;
120 if ($status and $errno) {
121 my ($package, $file, $line) = caller();
122 warn "$file line $line: $errno\n";
124 exit($status | ($status >> 8));
129 my ($repo, $workdir, $symlinks) = @_;
131 # Run the diff; exit immediately if no diff found
132 # 'Repository' and 'WorkingCopy' must be explicitly set to insure that
133 # if $GIT_DIR and $GIT_WORK_TREE are set in ENV, they are actually used
134 # by Git->repository->command*.
135 my $repo_path = $repo->repo_path();
136 my %repo_args = (Repository
=> $repo_path, WorkingCopy
=> $workdir);
137 my $diffrepo = Git
->repository(%repo_args);
139 my @gitargs = ('diff', '--raw', '--no-abbrev', '-z', @ARGV);
140 my $diffrtn = $diffrepo->command_oneline(@gitargs);
141 exit(0) unless defined($diffrtn);
143 # Build index info for left and right sides of the diff
144 my $submodule_mode = '160000';
145 my $symlink_mode = '120000';
146 my $null_mode = '0' x
6;
147 my $null_sha1 = '0' x
40;
152 my @working_tree = ();
153 my @rawdiff = split('\0', $diffrtn);
156 while ($i < $#rawdiff) {
157 if ($rawdiff[$i] =~ /^::/) {
159 Combined diff formats
('-c' and '--cc') are
not supported
in
160 directory diff mode
('-d' and '--dir-diff').
165 my ($lmode, $rmode, $lsha1, $rsha1, $status) =
166 split(' ', substr($rawdiff[$i], 1));
167 my $src_path = $rawdiff[$i + 1];
170 if ($status =~ /^[CR]/) {
171 $dst_path = $rawdiff[$i + 2];
174 $dst_path = $src_path;
178 if ($lmode eq $submodule_mode or $rmode eq $submodule_mode) {
179 $submodule{$src_path}{left
} = $lsha1;
180 if ($lsha1 ne $rsha1) {
181 $submodule{$dst_path}{right
} = $rsha1;
183 $submodule{$dst_path}{right
} = "$rsha1-dirty";
188 if ($lmode eq $symlink_mode) {
189 $symlink{$src_path}{left
} =
190 $diffrepo->command_oneline('show', "$lsha1");
193 if ($rmode eq $symlink_mode) {
194 $symlink{$dst_path}{right
} =
195 $diffrepo->command_oneline('show', "$rsha1");
198 if ($lmode ne $null_mode and $status !~ /^C/) {
199 $lindex .= "$lmode $lsha1\t$src_path\0";
202 if ($rmode ne $null_mode) {
203 if ($rsha1 ne $null_sha1) {
204 $rindex .= "$rmode $rsha1\t$dst_path\0";
206 push(@working_tree, $dst_path);
211 # Setup temp directories
212 my $tmpdir = tempdir
('git-difftool.XXXXX', CLEANUP
=> 0, TMPDIR
=> 1);
213 my $ldir = "$tmpdir/left";
214 my $rdir = "$tmpdir/right";
215 mkpath
($ldir) or exit_cleanup
($tmpdir, 1);
216 mkpath
($rdir) or exit_cleanup
($tmpdir, 1);
218 # If $GIT_DIR is not set prior to calling 'git update-index' and
219 # 'git checkout-index', then those commands will fail if difftool
220 # is called from a directory other than the repo root.
221 my $must_unset_git_dir = 0;
222 if (not defined($ENV{GIT_DIR
})) {
223 $must_unset_git_dir = 1;
224 $ENV{GIT_DIR
} = $repo_path;
227 # Populate the left and right directories based on each index file
229 $ENV{GIT_INDEX_FILE
} = "$tmpdir/lindex";
231 $repo->command_input_pipe(qw(update-index -z --index-info));
232 print($inpipe $lindex);
233 $repo->command_close_pipe($inpipe, $ctx);
235 my $rc = system('git', 'checkout-index', '--all', "--prefix=$ldir/");
236 exit_cleanup
($tmpdir, $rc) if $rc != 0;
238 $ENV{GIT_INDEX_FILE
} = "$tmpdir/rindex";
240 $repo->command_input_pipe(qw(update-index -z --index-info));
241 print($inpipe $rindex);
242 $repo->command_close_pipe($inpipe, $ctx);
244 $rc = system('git', 'checkout-index', '--all', "--prefix=$rdir/");
245 exit_cleanup
($tmpdir, $rc) if $rc != 0;
247 # If $GIT_DIR was explicitly set just for the update/checkout
248 # commands, then it should be unset before continuing.
249 delete($ENV{GIT_DIR
}) if ($must_unset_git_dir);
250 delete($ENV{GIT_INDEX_FILE
});
252 # Changes in the working tree need special treatment since they are
253 # not part of the index
254 for my $file (@working_tree) {
255 my $dir = dirname
($file);
256 unless (-d
"$rdir/$dir") {
257 mkpath
("$rdir/$dir") or
258 exit_cleanup
($tmpdir, 1);
261 symlink("$workdir/$file", "$rdir/$file") or
262 exit_cleanup
($tmpdir, 1);
264 copy
("$workdir/$file", "$rdir/$file") or
265 exit_cleanup
($tmpdir, 1);
267 my $mode = stat("$workdir/$file")->mode;
268 chmod($mode, "$rdir/$file") or
269 exit_cleanup
($tmpdir, 1);
273 # Changes to submodules require special treatment. This loop writes a
274 # temporary file to both the left and right directories to show the
275 # change in the recorded SHA1 for the submodule.
276 for my $path (keys %submodule) {
278 if (defined($submodule{$path}{left
})) {
279 $ok = write_to_file
("$ldir/$path",
280 "Subproject commit $submodule{$path}{left}");
282 if (defined($submodule{$path}{right
})) {
283 $ok = write_to_file
("$rdir/$path",
284 "Subproject commit $submodule{$path}{right}");
286 exit_cleanup
($tmpdir, 1) if not $ok;
289 # Symbolic links require special treatment. The standard "git diff"
290 # shows only the link itself, not the contents of the link target.
291 # This loop replicates that behavior.
292 for my $path (keys %symlink) {
294 if (defined($symlink{$path}{left
})) {
295 $ok = write_to_file
("$ldir/$path",
296 $symlink{$path}{left
});
298 if (defined($symlink{$path}{right
})) {
299 $ok = write_to_file
("$rdir/$path",
300 $symlink{$path}{right
});
302 exit_cleanup
($tmpdir, 1) if not $ok;
305 return ($ldir, $rdir, $tmpdir, @working_tree);
313 # Make sure the path to the file exists
314 my $dir = dirname
($path);
316 mkpath
("$dir") or return 0;
319 # If the file already exists in that location, delete it. This
320 # is required in the case of symbolic links.
323 open(my $fh, '>', $path) or return 0;
332 # parse command-line options. all unrecognized options and arguments
333 # are passed through to the 'git diff' command.
335 difftool_cmd
=> undef,
341 symlinks
=> $^O
ne 'cygwin' &&
342 $^O
ne 'MSWin32' && $^O
ne 'msys',
345 GetOptions
('g|gui!' => \
$opts{gui
},
346 'd|dir-diff' => \
$opts{dirdiff
},
348 'prompt!' => \
$opts{prompt
},
349 'y' => sub { $opts{prompt
} = 0; },
350 'symlinks' => \
$opts{symlinks
},
351 'no-symlinks' => sub { $opts{symlinks
} = 0; },
352 't|tool:s' => \
$opts{difftool_cmd
},
353 'tool-help' => \
$opts{tool_help
},
354 'x|extcmd:s' => \
$opts{extcmd
});
356 if (defined($opts{help
})) {
359 if (defined($opts{tool_help
})) {
362 if (defined($opts{difftool_cmd
})) {
363 if (length($opts{difftool_cmd
}) > 0) {
364 $ENV{GIT_DIFF_TOOL
} = $opts{difftool_cmd
};
366 print "No <tool> given for --tool=<tool>\n";
370 if (defined($opts{extcmd
})) {
371 if (length($opts{extcmd
}) > 0) {
372 $ENV{GIT_DIFFTOOL_EXTCMD
} = $opts{extcmd
};
374 print "No <cmd> given for --extcmd=<cmd>\n";
379 my $guitool = Git
::config
('diff.guitool');
380 if (length($guitool) > 0) {
381 $ENV{GIT_DIFF_TOOL
} = $guitool;
385 # In directory diff mode, 'git-difftool--helper' is called once
386 # to compare the a/b directories. In file diff mode, 'git diff'
387 # will invoke a separate instance of 'git-difftool--helper' for
388 # each file that changed.
389 if (defined($opts{dirdiff
})) {
390 dir_diff
($opts{extcmd
}, $opts{symlinks
});
392 file_diff
($opts{prompt
});
398 my ($extcmd, $symlinks) = @_;
401 my $repo = Git
->repository();
402 my $workdir = find_worktree
($repo);
403 my ($a, $b, $tmpdir, @worktree) =
404 setup_dir_diff
($repo, $workdir, $symlinks);
406 if (defined($extcmd)) {
407 $rc = system($extcmd, $a, $b);
409 $ENV{GIT_DIFFTOOL_DIRDIFF
} = 'true';
410 $rc = system('git', 'difftool--helper', $a, $b);
412 # If the diff including working copy files and those
413 # files were modified during the diff, then the changes
414 # should be copied back to the working tree.
415 # Do not copy back files when symlinks are used and the
416 # external tool did not replace the original link with a file.
417 for my $file (@worktree) {
418 next if $symlinks && -l
"$b/$file";
419 next if ! -f
"$b/$file";
421 my $diff = compare
("$b/$file", "$workdir/$file");
424 } elsif ($diff == -1) {
425 my $errmsg = "warning: Could not compare ";
426 $errmsg += "'$b/$file' with '$workdir/$file'\n";
429 } elsif ($diff == 1) {
430 my $mode = stat("$b/$file")->mode;
431 copy
("$b/$file", "$workdir/$file") or
432 exit_cleanup
($tmpdir, 1);
434 chmod($mode, "$workdir/$file") or
435 exit_cleanup
($tmpdir, 1);
439 warn "warning: Temporary files exist in '$tmpdir'.\n";
440 warn "warning: You may want to cleanup or recover these.\n";
443 exit_cleanup
($tmpdir, $rc);
451 if (defined($prompt)) {
453 $ENV{GIT_DIFFTOOL_PROMPT
} = 'true';
455 $ENV{GIT_DIFFTOOL_NO_PROMPT
} = 'true';
459 $ENV{GIT_PAGER
} = '';
460 $ENV{GIT_EXTERNAL_DIFF
} = 'git-difftool--helper';
462 # ActiveState Perl for Win32 does not implement POSIX semantics of
463 # exec* system call. It just spawns the given executable and finishes
464 # the starting program, exiting with code 0.
465 # system will at least catch the errors returned by git diff,
466 # allowing the caller of git difftool better handling of failures.
467 my $rc = system('git', 'diff', @ARGV);
468 exit($rc | ($rc >> 8));