David Aguilar | 5c38ea3 | 2009-01-16 00:00:02 -0800 | [diff] [blame] | 1 | #!/usr/bin/env perl |
David Aguilar | f47f1e2 | 2010-01-15 14:03:43 -0800 | [diff] [blame] | 2 | # Copyright (c) 2009, 2010 David Aguilar |
David Aguilar | 5c38ea3 | 2009-01-16 00:00:02 -0800 | [diff] [blame] | 3 | # |
| 4 | # This is a wrapper around the GIT_EXTERNAL_DIFF-compatible |
David Aguilar | a904392 | 2009-04-07 01:21:22 -0700 | [diff] [blame] | 5 | # git-difftool--helper script. |
| 6 | # |
| 7 | # This script exports GIT_EXTERNAL_DIFF and GIT_PAGER for use by git. |
| 8 | # GIT_DIFFTOOL_NO_PROMPT, GIT_DIFFTOOL_PROMPT, and GIT_DIFF_TOOL |
| 9 | # are exported for use by git-difftool--helper. |
| 10 | # |
David Aguilar | 5c38ea3 | 2009-01-16 00:00:02 -0800 | [diff] [blame] | 11 | # Any arguments that are unknown to this script are forwarded to 'git diff'. |
| 12 | |
Ævar Arnfjörð Bjarmason | d48b284 | 2010-09-24 20:00:52 +0000 | [diff] [blame] | 13 | use 5.008; |
David Aguilar | 5c38ea3 | 2009-01-16 00:00:02 -0800 | [diff] [blame] | 14 | use strict; |
| 15 | use warnings; |
| 16 | use Cwd qw(abs_path); |
| 17 | use File::Basename qw(dirname); |
| 18 | |
David Aguilar | 4cefa49 | 2009-12-22 21:27:14 -0800 | [diff] [blame] | 19 | require Git; |
| 20 | |
David Aguilar | 5c38ea3 | 2009-01-16 00:00:02 -0800 | [diff] [blame] | 21 | my $DIR = abs_path(dirname($0)); |
| 22 | |
| 23 | |
| 24 | sub usage |
| 25 | { |
| 26 | print << 'USAGE'; |
David Aguilar | f47f1e2 | 2010-01-15 14:03:43 -0800 | [diff] [blame] | 27 | usage: git difftool [-t|--tool=<tool>] [-x|--extcmd=<cmd>] |
| 28 | [-y|--no-prompt] [-g|--gui] |
| 29 | ['git diff' options] |
David Aguilar | 5c38ea3 | 2009-01-16 00:00:02 -0800 | [diff] [blame] | 30 | USAGE |
| 31 | exit 1; |
| 32 | } |
| 33 | |
| 34 | sub setup_environment |
| 35 | { |
| 36 | $ENV{PATH} = "$DIR:$ENV{PATH}"; |
| 37 | $ENV{GIT_PAGER} = ''; |
David Aguilar | afcbc8e | 2009-04-07 01:21:20 -0700 | [diff] [blame] | 38 | $ENV{GIT_EXTERNAL_DIFF} = 'git-difftool--helper'; |
David Aguilar | 5c38ea3 | 2009-01-16 00:00:02 -0800 | [diff] [blame] | 39 | } |
| 40 | |
| 41 | sub exe |
| 42 | { |
| 43 | my $exe = shift; |
David Aguilar | 46ae156 | 2009-04-06 01:31:21 -0700 | [diff] [blame] | 44 | if ($^O eq 'MSWin32' || $^O eq 'msys') { |
| 45 | return "$exe.exe"; |
| 46 | } |
| 47 | return $exe; |
David Aguilar | 5c38ea3 | 2009-01-16 00:00:02 -0800 | [diff] [blame] | 48 | } |
| 49 | |
| 50 | sub generate_command |
| 51 | { |
| 52 | my @command = (exe('git'), 'diff'); |
| 53 | my $skip_next = 0; |
| 54 | my $idx = -1; |
Ramsay Jones | d531174 | 2010-12-14 18:27:48 +0000 | [diff] [blame] | 55 | my $prompt = ''; |
David Aguilar | 5c38ea3 | 2009-01-16 00:00:02 -0800 | [diff] [blame] | 56 | for my $arg (@ARGV) { |
| 57 | $idx++; |
| 58 | if ($skip_next) { |
| 59 | $skip_next = 0; |
| 60 | next; |
| 61 | } |
David Aguilar | 46ae156 | 2009-04-06 01:31:21 -0700 | [diff] [blame] | 62 | if ($arg eq '-t' || $arg eq '--tool') { |
David Aguilar | 5c38ea3 | 2009-01-16 00:00:02 -0800 | [diff] [blame] | 63 | usage() if $#ARGV <= $idx; |
David Aguilar | 2464456 | 2009-03-09 02:12:36 -0700 | [diff] [blame] | 64 | $ENV{GIT_DIFF_TOOL} = $ARGV[$idx + 1]; |
David Aguilar | 5c38ea3 | 2009-01-16 00:00:02 -0800 | [diff] [blame] | 65 | $skip_next = 1; |
| 66 | next; |
| 67 | } |
| 68 | if ($arg =~ /^--tool=/) { |
David Aguilar | 2464456 | 2009-03-09 02:12:36 -0700 | [diff] [blame] | 69 | $ENV{GIT_DIFF_TOOL} = substr($arg, 7); |
David Aguilar | 5c38ea3 | 2009-01-16 00:00:02 -0800 | [diff] [blame] | 70 | next; |
| 71 | } |
David Aguilar | f47f1e2 | 2010-01-15 14:03:43 -0800 | [diff] [blame] | 72 | if ($arg eq '-x' || $arg eq '--extcmd') { |
| 73 | usage() if $#ARGV <= $idx; |
| 74 | $ENV{GIT_DIFFTOOL_EXTCMD} = $ARGV[$idx + 1]; |
| 75 | $skip_next = 1; |
| 76 | next; |
| 77 | } |
| 78 | if ($arg =~ /^--extcmd=/) { |
| 79 | $ENV{GIT_DIFFTOOL_EXTCMD} = substr($arg, 9); |
| 80 | next; |
| 81 | } |
David Aguilar | 4cefa49 | 2009-12-22 21:27:14 -0800 | [diff] [blame] | 82 | if ($arg eq '-g' || $arg eq '--gui') { |
David Aguilar | 42accae | 2010-03-27 14:58:09 -0700 | [diff] [blame] | 83 | eval { |
| 84 | my $tool = Git::command_oneline('config', |
| 85 | 'diff.guitool'); |
| 86 | if (length($tool)) { |
| 87 | $ENV{GIT_DIFF_TOOL} = $tool; |
| 88 | } |
| 89 | }; |
David Aguilar | 4cefa49 | 2009-12-22 21:27:14 -0800 | [diff] [blame] | 90 | next; |
| 91 | } |
David Aguilar | 8b73322 | 2009-04-07 01:21:19 -0700 | [diff] [blame] | 92 | if ($arg eq '-y' || $arg eq '--no-prompt') { |
Ramsay Jones | d531174 | 2010-12-14 18:27:48 +0000 | [diff] [blame] | 93 | $prompt = 'no'; |
David Aguilar | a904392 | 2009-04-07 01:21:22 -0700 | [diff] [blame] | 94 | next; |
| 95 | } |
| 96 | if ($arg eq '--prompt') { |
Ramsay Jones | d531174 | 2010-12-14 18:27:48 +0000 | [diff] [blame] | 97 | $prompt = 'yes'; |
David Aguilar | 5c38ea3 | 2009-01-16 00:00:02 -0800 | [diff] [blame] | 98 | next; |
| 99 | } |
David Aguilar | 8b73322 | 2009-04-07 01:21:19 -0700 | [diff] [blame] | 100 | if ($arg eq '-h' || $arg eq '--help') { |
David Aguilar | 5c38ea3 | 2009-01-16 00:00:02 -0800 | [diff] [blame] | 101 | usage(); |
| 102 | } |
| 103 | push @command, $arg; |
| 104 | } |
Ramsay Jones | d531174 | 2010-12-14 18:27:48 +0000 | [diff] [blame] | 105 | if ($prompt eq 'yes') { |
| 106 | $ENV{GIT_DIFFTOOL_PROMPT} = 'true'; |
| 107 | } elsif ($prompt eq 'no') { |
| 108 | $ENV{GIT_DIFFTOOL_NO_PROMPT} = 'true'; |
| 109 | } |
David Aguilar | 5c38ea3 | 2009-01-16 00:00:02 -0800 | [diff] [blame] | 110 | return @command |
| 111 | } |
| 112 | |
| 113 | setup_environment(); |
Alex Riesen | 677fbff | 2009-04-23 21:18:09 +0200 | [diff] [blame] | 114 | |
| 115 | # ActiveState Perl for Win32 does not implement POSIX semantics of |
| 116 | # exec* system call. It just spawns the given executable and finishes |
| 117 | # the starting program, exiting with code 0. |
| 118 | # system will at least catch the errors returned by git diff, |
| 119 | # allowing the caller of git difftool better handling of failures. |
Alex Riesen | e8d1180 | 2009-04-22 09:27:22 +0200 | [diff] [blame] | 120 | my $rc = system(generate_command()); |
| 121 | exit($rc | ($rc >> 8)); |