blob: ced1615e216018bc20303cd91eaea05c69cb6b11 [file] [log] [blame]
David Aguilar5c38ea32009-01-16 00:00:02 -08001#!/usr/bin/env perl
David Aguilarf47f1e22010-01-15 14:03:43 -08002# Copyright (c) 2009, 2010 David Aguilar
David Aguilar5c38ea32009-01-16 00:00:02 -08003#
4# This is a wrapper around the GIT_EXTERNAL_DIFF-compatible
David Aguilara9043922009-04-07 01:21:22 -07005# 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 Aguilar5c38ea32009-01-16 00:00:02 -080011# Any arguments that are unknown to this script are forwarded to 'git diff'.
12
Ævar Arnfjörð Bjarmasond48b2842010-09-24 20:00:52 +000013use 5.008;
David Aguilar5c38ea32009-01-16 00:00:02 -080014use strict;
15use warnings;
16use Cwd qw(abs_path);
17use File::Basename qw(dirname);
18
David Aguilar4cefa492009-12-22 21:27:14 -080019require Git;
20
David Aguilar5c38ea32009-01-16 00:00:02 -080021my $DIR = abs_path(dirname($0));
22
23
24sub usage
25{
26 print << 'USAGE';
David Aguilarf47f1e22010-01-15 14:03:43 -080027usage: git difftool [-t|--tool=<tool>] [-x|--extcmd=<cmd>]
28 [-y|--no-prompt] [-g|--gui]
29 ['git diff' options]
David Aguilar5c38ea32009-01-16 00:00:02 -080030USAGE
31 exit 1;
32}
33
34sub setup_environment
35{
36 $ENV{PATH} = "$DIR:$ENV{PATH}";
37 $ENV{GIT_PAGER} = '';
David Aguilarafcbc8e2009-04-07 01:21:20 -070038 $ENV{GIT_EXTERNAL_DIFF} = 'git-difftool--helper';
David Aguilar5c38ea32009-01-16 00:00:02 -080039}
40
41sub exe
42{
43 my $exe = shift;
David Aguilar46ae1562009-04-06 01:31:21 -070044 if ($^O eq 'MSWin32' || $^O eq 'msys') {
45 return "$exe.exe";
46 }
47 return $exe;
David Aguilar5c38ea32009-01-16 00:00:02 -080048}
49
50sub generate_command
51{
52 my @command = (exe('git'), 'diff');
53 my $skip_next = 0;
54 my $idx = -1;
Ramsay Jonesd5311742010-12-14 18:27:48 +000055 my $prompt = '';
David Aguilar5c38ea32009-01-16 00:00:02 -080056 for my $arg (@ARGV) {
57 $idx++;
58 if ($skip_next) {
59 $skip_next = 0;
60 next;
61 }
David Aguilar46ae1562009-04-06 01:31:21 -070062 if ($arg eq '-t' || $arg eq '--tool') {
David Aguilar5c38ea32009-01-16 00:00:02 -080063 usage() if $#ARGV <= $idx;
David Aguilar24644562009-03-09 02:12:36 -070064 $ENV{GIT_DIFF_TOOL} = $ARGV[$idx + 1];
David Aguilar5c38ea32009-01-16 00:00:02 -080065 $skip_next = 1;
66 next;
67 }
68 if ($arg =~ /^--tool=/) {
David Aguilar24644562009-03-09 02:12:36 -070069 $ENV{GIT_DIFF_TOOL} = substr($arg, 7);
David Aguilar5c38ea32009-01-16 00:00:02 -080070 next;
71 }
David Aguilarf47f1e22010-01-15 14:03:43 -080072 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 Aguilar4cefa492009-12-22 21:27:14 -080082 if ($arg eq '-g' || $arg eq '--gui') {
David Aguilar42accae2010-03-27 14:58:09 -070083 eval {
84 my $tool = Git::command_oneline('config',
85 'diff.guitool');
86 if (length($tool)) {
87 $ENV{GIT_DIFF_TOOL} = $tool;
88 }
89 };
David Aguilar4cefa492009-12-22 21:27:14 -080090 next;
91 }
David Aguilar8b733222009-04-07 01:21:19 -070092 if ($arg eq '-y' || $arg eq '--no-prompt') {
Ramsay Jonesd5311742010-12-14 18:27:48 +000093 $prompt = 'no';
David Aguilara9043922009-04-07 01:21:22 -070094 next;
95 }
96 if ($arg eq '--prompt') {
Ramsay Jonesd5311742010-12-14 18:27:48 +000097 $prompt = 'yes';
David Aguilar5c38ea32009-01-16 00:00:02 -080098 next;
99 }
David Aguilar8b733222009-04-07 01:21:19 -0700100 if ($arg eq '-h' || $arg eq '--help') {
David Aguilar5c38ea32009-01-16 00:00:02 -0800101 usage();
102 }
103 push @command, $arg;
104 }
Ramsay Jonesd5311742010-12-14 18:27:48 +0000105 if ($prompt eq 'yes') {
106 $ENV{GIT_DIFFTOOL_PROMPT} = 'true';
107 } elsif ($prompt eq 'no') {
108 $ENV{GIT_DIFFTOOL_NO_PROMPT} = 'true';
109 }
David Aguilar5c38ea32009-01-16 00:00:02 -0800110 return @command
111}
112
113setup_environment();
Alex Riesen677fbff2009-04-23 21:18:09 +0200114
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 Riesene8d11802009-04-22 09:27:22 +0200120my $rc = system(generate_command());
121exit($rc | ($rc >> 8));