ignore unknown color configuration
[git/dscho.git] / git-add--interactive.perl
blob75b71967a7c2f861c8e75e17c17e5cdce824e2e3
1 #!/usr/bin/perl -w
3 use strict;
4 use Git;
6 binmode(STDOUT, ":raw");
8 my $repo = Git->repository();
10 my $menu_use_color = $repo->get_colorbool('color.interactive');
11 my ($prompt_color, $header_color, $help_color) =
12 $menu_use_color ? (
13 $repo->get_color('color.interactive.prompt', 'bold blue'),
14 $repo->get_color('color.interactive.header', 'bold'),
15 $repo->get_color('color.interactive.help', 'red bold'),
16 ) : ();
17 my $error_color = ();
18 if ($menu_use_color) {
19 my $help_color_spec = ($repo->config('color.interactive.help') or
20 'red bold');
21 $error_color = $repo->get_color('color.interactive.error',
22 $help_color_spec);
25 my $diff_use_color = $repo->get_colorbool('color.diff');
26 my ($fraginfo_color) =
27 $diff_use_color ? (
28 $repo->get_color('color.diff.frag', 'cyan'),
29 ) : ();
30 my ($diff_plain_color) =
31 $diff_use_color ? (
32 $repo->get_color('color.diff.plain', ''),
33 ) : ();
34 my ($diff_old_color) =
35 $diff_use_color ? (
36 $repo->get_color('color.diff.old', 'red'),
37 ) : ();
38 my ($diff_new_color) =
39 $diff_use_color ? (
40 $repo->get_color('color.diff.new', 'green'),
41 ) : ();
43 my $normal_color = $repo->get_color("", "reset");
45 my $use_readkey = 0;
46 sub ReadMode;
47 sub ReadKey;
48 if ($repo->config_bool("interactive.singlekey")) {
49 eval {
50 require Term::ReadKey;
51 Term::ReadKey->import;
52 $use_readkey = 1;
56 sub colored {
57 my $color = shift;
58 my $string = join("", @_);
60 if (defined $color) {
61 # Put a color code at the beginning of each line, a reset at the end
62 # color after newlines that are not at the end of the string
63 $string =~ s/(\n+)(.)/$1$color$2/g;
64 # reset before newlines
65 $string =~ s/(\n+)/$normal_color$1/g;
66 # codes at beginning and end (if necessary):
67 $string =~ s/^/$color/;
68 $string =~ s/$/$normal_color/ unless $string =~ /\n$/;
70 return $string;
73 # command line options
74 my $patch_mode;
75 my $patch_mode_revision;
77 sub apply_patch;
78 sub apply_patch_for_checkout_commit;
79 sub apply_patch_for_stash;
81 my %patch_modes = (
82 'stage' => {
83 DIFF => 'diff-files -p',
84 APPLY => sub { apply_patch 'apply --cached', @_; },
85 APPLY_CHECK => 'apply --cached',
86 VERB => 'Stage',
87 TARGET => '',
88 PARTICIPLE => 'staging',
89 FILTER => 'file-only',
91 'stash' => {
92 DIFF => 'diff-index -p HEAD',
93 APPLY => sub { apply_patch 'apply --cached', @_; },
94 APPLY_CHECK => 'apply --cached',
95 VERB => 'Stash',
96 TARGET => '',
97 PARTICIPLE => 'stashing',
98 FILTER => undef,
100 'reset_head' => {
101 DIFF => 'diff-index -p --cached',
102 APPLY => sub { apply_patch 'apply -R --cached', @_; },
103 APPLY_CHECK => 'apply -R --cached',
104 VERB => 'Unstage',
105 TARGET => '',
106 PARTICIPLE => 'unstaging',
107 FILTER => 'index-only',
109 'reset_nothead' => {
110 DIFF => 'diff-index -R -p --cached',
111 APPLY => sub { apply_patch 'apply --cached', @_; },
112 APPLY_CHECK => 'apply --cached',
113 VERB => 'Apply',
114 TARGET => ' to index',
115 PARTICIPLE => 'applying',
116 FILTER => 'index-only',
118 'checkout_index' => {
119 DIFF => 'diff-files -p',
120 APPLY => sub { apply_patch 'apply -R', @_; },
121 APPLY_CHECK => 'apply -R',
122 VERB => 'Discard',
123 TARGET => ' from worktree',
124 PARTICIPLE => 'discarding',
125 FILTER => 'file-only',
127 'checkout_head' => {
128 DIFF => 'diff-index -p',
129 APPLY => sub { apply_patch_for_checkout_commit '-R', @_ },
130 APPLY_CHECK => 'apply -R',
131 VERB => 'Discard',
132 TARGET => ' from index and worktree',
133 PARTICIPLE => 'discarding',
134 FILTER => undef,
136 'checkout_nothead' => {
137 DIFF => 'diff-index -R -p',
138 APPLY => sub { apply_patch_for_checkout_commit '', @_ },
139 APPLY_CHECK => 'apply',
140 VERB => 'Apply',
141 TARGET => ' to index and worktree',
142 PARTICIPLE => 'applying',
143 FILTER => undef,
147 my %patch_mode_flavour = %{$patch_modes{stage}};
149 sub run_cmd_pipe {
150 if ($^O eq 'MSWin32' || $^O eq 'msys') {
151 my @invalid = grep {m/[":*]/} @_;
152 die "$^O does not support: @invalid\n" if @invalid;
153 my @args = map { m/ /o ? "\"$_\"": $_ } @_;
154 return qx{@args};
155 } else {
156 my $fh = undef;
157 open($fh, '-|', @_) or die;
158 return <$fh>;
162 my ($GIT_DIR) = run_cmd_pipe(qw(git rev-parse --git-dir));
164 if (!defined $GIT_DIR) {
165 exit(1); # rev-parse would have already said "not a git repo"
167 chomp($GIT_DIR);
169 my %cquote_map = (
170 "b" => chr(8),
171 "t" => chr(9),
172 "n" => chr(10),
173 "v" => chr(11),
174 "f" => chr(12),
175 "r" => chr(13),
176 "\\" => "\\",
177 "\042" => "\042",
180 sub unquote_path {
181 local ($_) = @_;
182 my ($retval, $remainder);
183 if (!/^\042(.*)\042$/) {
184 return $_;
186 ($_, $retval) = ($1, "");
187 while (/^([^\\]*)\\(.*)$/) {
188 $remainder = $2;
189 $retval .= $1;
190 for ($remainder) {
191 if (/^([0-3][0-7][0-7])(.*)$/) {
192 $retval .= chr(oct($1));
193 $_ = $2;
194 last;
196 if (/^([\\\042btnvfr])(.*)$/) {
197 $retval .= $cquote_map{$1};
198 $_ = $2;
199 last;
201 # This is malformed -- just return it as-is for now.
202 return $_[0];
204 $_ = $remainder;
206 $retval .= $_;
207 return $retval;
210 sub refresh {
211 my $fh;
212 open $fh, 'git update-index --refresh |'
213 or die;
214 while (<$fh>) {
215 ;# ignore 'needs update'
217 close $fh;
220 sub list_untracked {
221 map {
222 chomp $_;
223 unquote_path($_);
225 run_cmd_pipe(qw(git ls-files --others --exclude-standard --), @ARGV);
228 my $status_fmt = '%12s %12s %s';
229 my $status_head = sprintf($status_fmt, 'staged', 'unstaged', 'path');
232 my $initial;
233 sub is_initial_commit {
234 $initial = system('git rev-parse HEAD -- >/dev/null 2>&1') != 0
235 unless defined $initial;
236 return $initial;
240 sub get_empty_tree {
241 return '4b825dc642cb6eb9a060e54bf8d69288fbee4904';
244 # Returns list of hashes, contents of each of which are:
245 # VALUE: pathname
246 # BINARY: is a binary path
247 # INDEX: is index different from HEAD?
248 # FILE: is file different from index?
249 # INDEX_ADDDEL: is it add/delete between HEAD and index?
250 # FILE_ADDDEL: is it add/delete between index and file?
252 sub list_modified {
253 my ($only) = @_;
254 my (%data, @return);
255 my ($add, $del, $adddel, $file);
256 my @tracked = ();
258 if (@ARGV) {
259 @tracked = map {
260 chomp $_;
261 unquote_path($_);
262 } run_cmd_pipe(qw(git ls-files --), @ARGV);
263 return if (!@tracked);
266 my $reference;
267 if (defined $patch_mode_revision and $patch_mode_revision ne 'HEAD') {
268 $reference = $patch_mode_revision;
269 } elsif (is_initial_commit()) {
270 $reference = get_empty_tree();
271 } else {
272 $reference = 'HEAD';
274 for (run_cmd_pipe(qw(git diff-index --cached
275 --numstat --summary), $reference,
276 '--', @tracked)) {
277 if (($add, $del, $file) =
278 /^([-\d]+) ([-\d]+) (.*)/) {
279 my ($change, $bin);
280 $file = unquote_path($file);
281 if ($add eq '-' && $del eq '-') {
282 $change = 'binary';
283 $bin = 1;
285 else {
286 $change = "+$add/-$del";
288 $data{$file} = {
289 INDEX => $change,
290 BINARY => $bin,
291 FILE => 'nothing',
294 elsif (($adddel, $file) =
295 /^ (create|delete) mode [0-7]+ (.*)$/) {
296 $file = unquote_path($file);
297 $data{$file}{INDEX_ADDDEL} = $adddel;
301 for (run_cmd_pipe(qw(git diff-files --numstat --summary --), @tracked)) {
302 if (($add, $del, $file) =
303 /^([-\d]+) ([-\d]+) (.*)/) {
304 $file = unquote_path($file);
305 if (!exists $data{$file}) {
306 $data{$file} = +{
307 INDEX => 'unchanged',
308 BINARY => 0,
311 my ($change, $bin);
312 if ($add eq '-' && $del eq '-') {
313 $change = 'binary';
314 $bin = 1;
316 else {
317 $change = "+$add/-$del";
319 $data{$file}{FILE} = $change;
320 if ($bin) {
321 $data{$file}{BINARY} = 1;
324 elsif (($adddel, $file) =
325 /^ (create|delete) mode [0-7]+ (.*)$/) {
326 $file = unquote_path($file);
327 $data{$file}{FILE_ADDDEL} = $adddel;
331 for (sort keys %data) {
332 my $it = $data{$_};
334 if ($only) {
335 if ($only eq 'index-only') {
336 next if ($it->{INDEX} eq 'unchanged');
338 if ($only eq 'file-only') {
339 next if ($it->{FILE} eq 'nothing');
342 push @return, +{
343 VALUE => $_,
344 %$it,
347 return @return;
350 sub find_unique {
351 my ($string, @stuff) = @_;
352 my $found = undef;
353 for (my $i = 0; $i < @stuff; $i++) {
354 my $it = $stuff[$i];
355 my $hit = undef;
356 if (ref $it) {
357 if ((ref $it) eq 'ARRAY') {
358 $it = $it->[0];
360 else {
361 $it = $it->{VALUE};
364 eval {
365 if ($it =~ /^$string/) {
366 $hit = 1;
369 if (defined $hit && defined $found) {
370 return undef;
372 if ($hit) {
373 $found = $i + 1;
376 return $found;
379 # inserts string into trie and updates count for each character
380 sub update_trie {
381 my ($trie, $string) = @_;
382 foreach (split //, $string) {
383 $trie = $trie->{$_} ||= {COUNT => 0};
384 $trie->{COUNT}++;
388 # returns an array of tuples (prefix, remainder)
389 sub find_unique_prefixes {
390 my @stuff = @_;
391 my @return = ();
393 # any single prefix exceeding the soft limit is omitted
394 # if any prefix exceeds the hard limit all are omitted
395 # 0 indicates no limit
396 my $soft_limit = 0;
397 my $hard_limit = 3;
399 # build a trie modelling all possible options
400 my %trie;
401 foreach my $print (@stuff) {
402 if ((ref $print) eq 'ARRAY') {
403 $print = $print->[0];
405 elsif ((ref $print) eq 'HASH') {
406 $print = $print->{VALUE};
408 update_trie(\%trie, $print);
409 push @return, $print;
412 # use the trie to find the unique prefixes
413 for (my $i = 0; $i < @return; $i++) {
414 my $ret = $return[$i];
415 my @letters = split //, $ret;
416 my %search = %trie;
417 my ($prefix, $remainder);
418 my $j;
419 for ($j = 0; $j < @letters; $j++) {
420 my $letter = $letters[$j];
421 if ($search{$letter}{COUNT} == 1) {
422 $prefix = substr $ret, 0, $j + 1;
423 $remainder = substr $ret, $j + 1;
424 last;
426 else {
427 my $prefix = substr $ret, 0, $j;
428 return ()
429 if ($hard_limit && $j + 1 > $hard_limit);
431 %search = %{$search{$letter}};
433 if (ord($letters[0]) > 127 ||
434 ($soft_limit && $j + 1 > $soft_limit)) {
435 $prefix = undef;
436 $remainder = $ret;
438 $return[$i] = [$prefix, $remainder];
440 return @return;
443 # filters out prefixes which have special meaning to list_and_choose()
444 sub is_valid_prefix {
445 my $prefix = shift;
446 return (defined $prefix) &&
447 !($prefix =~ /[\s,]/) && # separators
448 !($prefix =~ /^-/) && # deselection
449 !($prefix =~ /^\d+/) && # selection
450 ($prefix ne '*') && # "all" wildcard
451 ($prefix ne '?'); # prompt help
454 # given a prefix/remainder tuple return a string with the prefix highlighted
455 # for now use square brackets; later might use ANSI colors (underline, bold)
456 sub highlight_prefix {
457 my $prefix = shift;
458 my $remainder = shift;
460 if (!defined $prefix) {
461 return $remainder;
464 if (!is_valid_prefix($prefix)) {
465 return "$prefix$remainder";
468 if (!$menu_use_color) {
469 return "[$prefix]$remainder";
472 return "$prompt_color$prefix$normal_color$remainder";
475 sub error_msg {
476 print STDERR colored $error_color, @_;
479 sub list_and_choose {
480 my ($opts, @stuff) = @_;
481 my (@chosen, @return);
482 my $i;
483 my @prefixes = find_unique_prefixes(@stuff) unless $opts->{LIST_ONLY};
485 TOPLOOP:
486 while (1) {
487 my $last_lf = 0;
489 if ($opts->{HEADER}) {
490 if (!$opts->{LIST_FLAT}) {
491 print " ";
493 print colored $header_color, "$opts->{HEADER}\n";
495 for ($i = 0; $i < @stuff; $i++) {
496 my $chosen = $chosen[$i] ? '*' : ' ';
497 my $print = $stuff[$i];
498 my $ref = ref $print;
499 my $highlighted = highlight_prefix(@{$prefixes[$i]})
500 if @prefixes;
501 if ($ref eq 'ARRAY') {
502 $print = $highlighted || $print->[0];
504 elsif ($ref eq 'HASH') {
505 my $value = $highlighted || $print->{VALUE};
506 $print = sprintf($status_fmt,
507 $print->{INDEX},
508 $print->{FILE},
509 $value);
511 else {
512 $print = $highlighted || $print;
514 printf("%s%2d: %s", $chosen, $i+1, $print);
515 if (($opts->{LIST_FLAT}) &&
516 (($i + 1) % ($opts->{LIST_FLAT}))) {
517 print "\t";
518 $last_lf = 0;
520 else {
521 print "\n";
522 $last_lf = 1;
525 if (!$last_lf) {
526 print "\n";
529 return if ($opts->{LIST_ONLY});
531 print colored $prompt_color, $opts->{PROMPT};
532 if ($opts->{SINGLETON}) {
533 print "> ";
535 else {
536 print ">> ";
538 my $line = <STDIN>;
539 if (!$line) {
540 print "\n";
541 $opts->{ON_EOF}->() if $opts->{ON_EOF};
542 last;
544 chomp $line;
545 last if $line eq '';
546 if ($line eq '?') {
547 $opts->{SINGLETON} ?
548 singleton_prompt_help_cmd() :
549 prompt_help_cmd();
550 next TOPLOOP;
552 for my $choice (split(/[\s,]+/, $line)) {
553 my $choose = 1;
554 my ($bottom, $top);
556 # Input that begins with '-'; unchoose
557 if ($choice =~ s/^-//) {
558 $choose = 0;
560 # A range can be specified like 5-7 or 5-.
561 if ($choice =~ /^(\d+)-(\d*)$/) {
562 ($bottom, $top) = ($1, length($2) ? $2 : 1 + @stuff);
564 elsif ($choice =~ /^\d+$/) {
565 $bottom = $top = $choice;
567 elsif ($choice eq '*') {
568 $bottom = 1;
569 $top = 1 + @stuff;
571 else {
572 $bottom = $top = find_unique($choice, @stuff);
573 if (!defined $bottom) {
574 error_msg "Huh ($choice)?\n";
575 next TOPLOOP;
578 if ($opts->{SINGLETON} && $bottom != $top) {
579 error_msg "Huh ($choice)?\n";
580 next TOPLOOP;
582 for ($i = $bottom-1; $i <= $top-1; $i++) {
583 next if (@stuff <= $i || $i < 0);
584 $chosen[$i] = $choose;
587 last if ($opts->{IMMEDIATE} || $line eq '*');
589 for ($i = 0; $i < @stuff; $i++) {
590 if ($chosen[$i]) {
591 push @return, $stuff[$i];
594 return @return;
597 sub singleton_prompt_help_cmd {
598 print colored $help_color, <<\EOF ;
599 Prompt help:
600 1 - select a numbered item
601 foo - select item based on unique prefix
602 - (empty) select nothing
606 sub prompt_help_cmd {
607 print colored $help_color, <<\EOF ;
608 Prompt help:
609 1 - select a single item
610 3-5 - select a range of items
611 2-3,6-9 - select multiple ranges
612 foo - select item based on unique prefix
613 -... - unselect specified items
614 * - choose all items
615 - (empty) finish selecting
619 sub status_cmd {
620 list_and_choose({ LIST_ONLY => 1, HEADER => $status_head },
621 list_modified());
622 print "\n";
625 sub say_n_paths {
626 my $did = shift @_;
627 my $cnt = scalar @_;
628 print "$did ";
629 if (1 < $cnt) {
630 print "$cnt paths\n";
632 else {
633 print "one path\n";
637 sub update_cmd {
638 my @mods = list_modified('file-only');
639 return if (!@mods);
641 my @update = list_and_choose({ PROMPT => 'Update',
642 HEADER => $status_head, },
643 @mods);
644 if (@update) {
645 system(qw(git update-index --add --remove --),
646 map { $_->{VALUE} } @update);
647 say_n_paths('updated', @update);
649 print "\n";
652 sub revert_cmd {
653 my @update = list_and_choose({ PROMPT => 'Revert',
654 HEADER => $status_head, },
655 list_modified());
656 if (@update) {
657 if (is_initial_commit()) {
658 system(qw(git rm --cached),
659 map { $_->{VALUE} } @update);
661 else {
662 my @lines = run_cmd_pipe(qw(git ls-tree HEAD --),
663 map { $_->{VALUE} } @update);
664 my $fh;
665 open $fh, '| git update-index --index-info'
666 or die;
667 for (@lines) {
668 print $fh $_;
670 close($fh);
671 for (@update) {
672 if ($_->{INDEX_ADDDEL} &&
673 $_->{INDEX_ADDDEL} eq 'create') {
674 system(qw(git update-index --force-remove --),
675 $_->{VALUE});
676 print "note: $_->{VALUE} is untracked now.\n";
680 refresh();
681 say_n_paths('reverted', @update);
683 print "\n";
686 sub add_untracked_cmd {
687 my @add = list_and_choose({ PROMPT => 'Add untracked' },
688 list_untracked());
689 if (@add) {
690 system(qw(git update-index --add --), @add);
691 say_n_paths('added', @add);
693 print "\n";
696 sub run_git_apply {
697 my $cmd = shift;
698 my $fh;
699 open $fh, '| git ' . $cmd;
700 print $fh @_;
701 return close $fh;
704 sub parse_diff {
705 my ($path) = @_;
706 my @diff_cmd = split(" ", $patch_mode_flavour{DIFF});
707 if (defined $patch_mode_revision) {
708 push @diff_cmd, $patch_mode_revision;
710 my @diff = run_cmd_pipe("git", @diff_cmd, "--", $path);
711 my @colored = ();
712 if ($diff_use_color) {
713 @colored = run_cmd_pipe("git", @diff_cmd, qw(--color --), $path);
715 my (@hunk) = { TEXT => [], DISPLAY => [], TYPE => 'header' };
717 for (my $i = 0; $i < @diff; $i++) {
718 if ($diff[$i] =~ /^@@ /) {
719 push @hunk, { TEXT => [], DISPLAY => [],
720 TYPE => 'hunk' };
722 push @{$hunk[-1]{TEXT}}, $diff[$i];
723 push @{$hunk[-1]{DISPLAY}},
724 ($diff_use_color ? $colored[$i] : $diff[$i]);
726 return @hunk;
729 sub parse_diff_header {
730 my $src = shift;
732 my $head = { TEXT => [], DISPLAY => [], TYPE => 'header' };
733 my $mode = { TEXT => [], DISPLAY => [], TYPE => 'mode' };
734 my $deletion = { TEXT => [], DISPLAY => [], TYPE => 'deletion' };
736 for (my $i = 0; $i < @{$src->{TEXT}}; $i++) {
737 my $dest =
738 $src->{TEXT}->[$i] =~ /^(old|new) mode (\d+)$/ ? $mode :
739 $src->{TEXT}->[$i] =~ /^deleted file/ ? $deletion :
740 $head;
741 push @{$dest->{TEXT}}, $src->{TEXT}->[$i];
742 push @{$dest->{DISPLAY}}, $src->{DISPLAY}->[$i];
744 return ($head, $mode, $deletion);
747 sub hunk_splittable {
748 my ($text) = @_;
750 my @s = split_hunk($text);
751 return (1 < @s);
754 sub parse_hunk_header {
755 my ($line) = @_;
756 my ($o_ofs, $o_cnt, $n_ofs, $n_cnt) =
757 $line =~ /^@@ -(\d+)(?:,(\d+))? \+(\d+)(?:,(\d+))? @@/;
758 $o_cnt = 1 unless defined $o_cnt;
759 $n_cnt = 1 unless defined $n_cnt;
760 return ($o_ofs, $o_cnt, $n_ofs, $n_cnt);
763 sub split_hunk {
764 my ($text, $display) = @_;
765 my @split = ();
766 if (!defined $display) {
767 $display = $text;
769 # If there are context lines in the middle of a hunk,
770 # it can be split, but we would need to take care of
771 # overlaps later.
773 my ($o_ofs, undef, $n_ofs) = parse_hunk_header($text->[0]);
774 my $hunk_start = 1;
776 OUTER:
777 while (1) {
778 my $next_hunk_start = undef;
779 my $i = $hunk_start - 1;
780 my $this = +{
781 TEXT => [],
782 DISPLAY => [],
783 TYPE => 'hunk',
784 OLD => $o_ofs,
785 NEW => $n_ofs,
786 OCNT => 0,
787 NCNT => 0,
788 ADDDEL => 0,
789 POSTCTX => 0,
790 USE => undef,
793 while (++$i < @$text) {
794 my $line = $text->[$i];
795 my $display = $display->[$i];
796 if ($line =~ /^ /) {
797 if ($this->{ADDDEL} &&
798 !defined $next_hunk_start) {
799 # We have seen leading context and
800 # adds/dels and then here is another
801 # context, which is trailing for this
802 # split hunk and leading for the next
803 # one.
804 $next_hunk_start = $i;
806 push @{$this->{TEXT}}, $line;
807 push @{$this->{DISPLAY}}, $display;
808 $this->{OCNT}++;
809 $this->{NCNT}++;
810 if (defined $next_hunk_start) {
811 $this->{POSTCTX}++;
813 next;
816 # add/del
817 if (defined $next_hunk_start) {
818 # We are done with the current hunk and
819 # this is the first real change for the
820 # next split one.
821 $hunk_start = $next_hunk_start;
822 $o_ofs = $this->{OLD} + $this->{OCNT};
823 $n_ofs = $this->{NEW} + $this->{NCNT};
824 $o_ofs -= $this->{POSTCTX};
825 $n_ofs -= $this->{POSTCTX};
826 push @split, $this;
827 redo OUTER;
829 push @{$this->{TEXT}}, $line;
830 push @{$this->{DISPLAY}}, $display;
831 $this->{ADDDEL}++;
832 if ($line =~ /^-/) {
833 $this->{OCNT}++;
835 else {
836 $this->{NCNT}++;
840 push @split, $this;
841 last;
844 for my $hunk (@split) {
845 $o_ofs = $hunk->{OLD};
846 $n_ofs = $hunk->{NEW};
847 my $o_cnt = $hunk->{OCNT};
848 my $n_cnt = $hunk->{NCNT};
850 my $head = ("@@ -$o_ofs" .
851 (($o_cnt != 1) ? ",$o_cnt" : '') .
852 " +$n_ofs" .
853 (($n_cnt != 1) ? ",$n_cnt" : '') .
854 " @@\n");
855 my $display_head = $head;
856 unshift @{$hunk->{TEXT}}, $head;
857 if ($diff_use_color) {
858 $display_head = colored($fraginfo_color, $head);
860 unshift @{$hunk->{DISPLAY}}, $display_head;
862 return @split;
865 sub find_last_o_ctx {
866 my ($it) = @_;
867 my $text = $it->{TEXT};
868 my ($o_ofs, $o_cnt) = parse_hunk_header($text->[0]);
869 my $i = @{$text};
870 my $last_o_ctx = $o_ofs + $o_cnt;
871 while (0 < --$i) {
872 my $line = $text->[$i];
873 if ($line =~ /^ /) {
874 $last_o_ctx--;
875 next;
877 last;
879 return $last_o_ctx;
882 sub merge_hunk {
883 my ($prev, $this) = @_;
884 my ($o0_ofs, $o0_cnt, $n0_ofs, $n0_cnt) =
885 parse_hunk_header($prev->{TEXT}[0]);
886 my ($o1_ofs, $o1_cnt, $n1_ofs, $n1_cnt) =
887 parse_hunk_header($this->{TEXT}[0]);
889 my (@line, $i, $ofs, $o_cnt, $n_cnt);
890 $ofs = $o0_ofs;
891 $o_cnt = $n_cnt = 0;
892 for ($i = 1; $i < @{$prev->{TEXT}}; $i++) {
893 my $line = $prev->{TEXT}[$i];
894 if ($line =~ /^\+/) {
895 $n_cnt++;
896 push @line, $line;
897 next;
900 last if ($o1_ofs <= $ofs);
902 $o_cnt++;
903 $ofs++;
904 if ($line =~ /^ /) {
905 $n_cnt++;
907 push @line, $line;
910 for ($i = 1; $i < @{$this->{TEXT}}; $i++) {
911 my $line = $this->{TEXT}[$i];
912 if ($line =~ /^\+/) {
913 $n_cnt++;
914 push @line, $line;
915 next;
917 $ofs++;
918 $o_cnt++;
919 if ($line =~ /^ /) {
920 $n_cnt++;
922 push @line, $line;
924 my $head = ("@@ -$o0_ofs" .
925 (($o_cnt != 1) ? ",$o_cnt" : '') .
926 " +$n0_ofs" .
927 (($n_cnt != 1) ? ",$n_cnt" : '') .
928 " @@\n");
929 @{$prev->{TEXT}} = ($head, @line);
932 sub coalesce_overlapping_hunks {
933 my (@in) = @_;
934 my @out = ();
936 my ($last_o_ctx, $last_was_dirty);
938 for (grep { $_->{USE} } @in) {
939 if ($_->{TYPE} ne 'hunk') {
940 push @out, $_;
941 next;
943 my $text = $_->{TEXT};
944 my ($o_ofs) = parse_hunk_header($text->[0]);
945 if (defined $last_o_ctx &&
946 $o_ofs <= $last_o_ctx &&
947 !$_->{DIRTY} &&
948 !$last_was_dirty) {
949 merge_hunk($out[-1], $_);
951 else {
952 push @out, $_;
954 $last_o_ctx = find_last_o_ctx($out[-1]);
955 $last_was_dirty = $_->{DIRTY};
957 return @out;
960 sub color_diff {
961 return map {
962 colored((/^@/ ? $fraginfo_color :
963 /^\+/ ? $diff_new_color :
964 /^-/ ? $diff_old_color :
965 $diff_plain_color),
966 $_);
967 } @_;
970 sub edit_hunk_manually {
971 my ($oldtext) = @_;
973 my $hunkfile = $repo->repo_path . "/addp-hunk-edit.diff";
974 my $fh;
975 open $fh, '>', $hunkfile
976 or die "failed to open hunk edit file for writing: " . $!;
977 print $fh "# Manual hunk edit mode -- see bottom for a quick guide\n";
978 print $fh @$oldtext;
979 my $participle = $patch_mode_flavour{PARTICIPLE};
980 print $fh <<EOF;
981 # ---
982 # To remove '-' lines, make them ' ' lines (context).
983 # To remove '+' lines, delete them.
984 # Lines starting with # will be removed.
986 # If the patch applies cleanly, the edited hunk will immediately be
987 # marked for $participle. If it does not apply cleanly, you will be given
988 # an opportunity to edit again. If all lines of the hunk are removed,
989 # then the edit is aborted and the hunk is left unchanged.
991 close $fh;
993 my $editor = $ENV{GIT_EDITOR} || $repo->config("core.editor")
994 || $ENV{VISUAL} || $ENV{EDITOR} || "vi";
995 system('sh', '-c', $editor.' "$@"', $editor, $hunkfile);
997 if ($? != 0) {
998 return undef;
1001 open $fh, '<', $hunkfile
1002 or die "failed to open hunk edit file for reading: " . $!;
1003 my @newtext = grep { !/^#/ } <$fh>;
1004 close $fh;
1005 unlink $hunkfile;
1007 # Abort if nothing remains
1008 if (!grep { /\S/ } @newtext) {
1009 return undef;
1012 # Reinsert the first hunk header if the user accidentally deleted it
1013 if ($newtext[0] !~ /^@/) {
1014 unshift @newtext, $oldtext->[0];
1016 return \@newtext;
1019 sub diff_applies {
1020 my $fh;
1021 return run_git_apply($patch_mode_flavour{APPLY_CHECK} . ' --recount --check',
1022 map { @{$_->{TEXT}} } @_);
1025 sub _restore_terminal_and_die {
1026 ReadMode 'restore';
1027 print "\n";
1028 exit 1;
1031 sub prompt_single_character {
1032 if ($use_readkey) {
1033 local $SIG{TERM} = \&_restore_terminal_and_die;
1034 local $SIG{INT} = \&_restore_terminal_and_die;
1035 ReadMode 'cbreak';
1036 my $key = ReadKey 0;
1037 ReadMode 'restore';
1038 print "$key" if defined $key;
1039 print "\n";
1040 return $key;
1041 } else {
1042 return <STDIN>;
1046 sub prompt_yesno {
1047 my ($prompt) = @_;
1048 while (1) {
1049 print colored $prompt_color, $prompt;
1050 my $line = prompt_single_character;
1051 return 0 if $line =~ /^n/i;
1052 return 1 if $line =~ /^y/i;
1056 sub edit_hunk_loop {
1057 my ($head, $hunk, $ix) = @_;
1058 my $text = $hunk->[$ix]->{TEXT};
1060 while (1) {
1061 $text = edit_hunk_manually($text);
1062 if (!defined $text) {
1063 return undef;
1065 my $newhunk = {
1066 TEXT => $text,
1067 TYPE => $hunk->[$ix]->{TYPE},
1068 USE => 1,
1069 DIRTY => 1,
1071 if (diff_applies($head,
1072 @{$hunk}[0..$ix-1],
1073 $newhunk,
1074 @{$hunk}[$ix+1..$#{$hunk}])) {
1075 $newhunk->{DISPLAY} = [color_diff(@{$text})];
1076 return $newhunk;
1078 else {
1079 prompt_yesno(
1080 'Your edited hunk does not apply. Edit again '
1081 . '(saying "no" discards!) [y/n]? '
1082 ) or return undef;
1087 sub help_patch_cmd {
1088 my $verb = lc $patch_mode_flavour{VERB};
1089 my $target = $patch_mode_flavour{TARGET};
1090 print colored $help_color, <<EOF ;
1091 y - $verb this hunk$target
1092 n - do not $verb this hunk$target
1093 q - quit, do not $verb this hunk nor any of the remaining ones
1094 a - $verb this and all the remaining hunks in the file
1095 d - do not $verb this hunk nor any of the remaining hunks in the file
1096 g - select a hunk to go to
1097 / - search for a hunk matching the given regex
1098 j - leave this hunk undecided, see next undecided hunk
1099 J - leave this hunk undecided, see next hunk
1100 k - leave this hunk undecided, see previous undecided hunk
1101 K - leave this hunk undecided, see previous hunk
1102 s - split the current hunk into smaller hunks
1103 e - manually edit the current hunk
1104 ? - print help
1108 sub apply_patch {
1109 my $cmd = shift;
1110 my $ret = run_git_apply $cmd . ' --recount', @_;
1111 if (!$ret) {
1112 print STDERR @_;
1114 return $ret;
1117 sub apply_patch_for_checkout_commit {
1118 my $reverse = shift;
1119 my $applies_index = run_git_apply 'apply '.$reverse.' --cached --recount --check', @_;
1120 my $applies_worktree = run_git_apply 'apply '.$reverse.' --recount --check', @_;
1122 if ($applies_worktree && $applies_index) {
1123 run_git_apply 'apply '.$reverse.' --cached --recount', @_;
1124 run_git_apply 'apply '.$reverse.' --recount', @_;
1125 return 1;
1126 } elsif (!$applies_index) {
1127 print colored $error_color, "The selected hunks do not apply to the index!\n";
1128 if (prompt_yesno "Apply them to the worktree anyway? ") {
1129 return run_git_apply 'apply '.$reverse.' --recount', @_;
1130 } else {
1131 print colored $error_color, "Nothing was applied.\n";
1132 return 0;
1134 } else {
1135 print STDERR @_;
1136 return 0;
1140 sub patch_update_cmd {
1141 my @all_mods = list_modified($patch_mode_flavour{FILTER});
1142 my @mods = grep { !($_->{BINARY}) } @all_mods;
1143 my @them;
1145 if (!@mods) {
1146 if (@all_mods) {
1147 print STDERR "Only binary files changed.\n";
1148 } else {
1149 print STDERR "No changes.\n";
1151 return 0;
1153 if ($patch_mode) {
1154 @them = @mods;
1156 else {
1157 @them = list_and_choose({ PROMPT => 'Patch update',
1158 HEADER => $status_head, },
1159 @mods);
1161 for (@them) {
1162 return 0 if patch_update_file($_->{VALUE});
1166 # Generate a one line summary of a hunk.
1167 sub summarize_hunk {
1168 my $rhunk = shift;
1169 my $summary = $rhunk->{TEXT}[0];
1171 # Keep the line numbers, discard extra context.
1172 $summary =~ s/@@(.*?)@@.*/$1 /s;
1173 $summary .= " " x (20 - length $summary);
1175 # Add some user context.
1176 for my $line (@{$rhunk->{TEXT}}) {
1177 if ($line =~ m/^[+-].*\w/) {
1178 $summary .= $line;
1179 last;
1183 chomp $summary;
1184 return substr($summary, 0, 80) . "\n";
1188 # Print a one-line summary of each hunk in the array ref in
1189 # the first argument, starting wih the index in the 2nd.
1190 sub display_hunks {
1191 my ($hunks, $i) = @_;
1192 my $ctr = 0;
1193 $i ||= 0;
1194 for (; $i < @$hunks && $ctr < 20; $i++, $ctr++) {
1195 my $status = " ";
1196 if (defined $hunks->[$i]{USE}) {
1197 $status = $hunks->[$i]{USE} ? "+" : "-";
1199 printf "%s%2d: %s",
1200 $status,
1201 $i + 1,
1202 summarize_hunk($hunks->[$i]);
1204 return $i;
1207 sub patch_update_file {
1208 my $quit = 0;
1209 my ($ix, $num);
1210 my $path = shift;
1211 my ($head, @hunk) = parse_diff($path);
1212 ($head, my $mode, my $deletion) = parse_diff_header($head);
1213 for (@{$head->{DISPLAY}}) {
1214 print;
1217 if (@{$mode->{TEXT}}) {
1218 unshift @hunk, $mode;
1220 if (@{$deletion->{TEXT}}) {
1221 foreach my $hunk (@hunk) {
1222 push @{$deletion->{TEXT}}, @{$hunk->{TEXT}};
1223 push @{$deletion->{DISPLAY}}, @{$hunk->{DISPLAY}};
1225 @hunk = ($deletion);
1228 $num = scalar @hunk;
1229 $ix = 0;
1231 while (1) {
1232 my ($prev, $next, $other, $undecided, $i);
1233 $other = '';
1235 if ($num <= $ix) {
1236 $ix = 0;
1238 for ($i = 0; $i < $ix; $i++) {
1239 if (!defined $hunk[$i]{USE}) {
1240 $prev = 1;
1241 $other .= ',k';
1242 last;
1245 if ($ix) {
1246 $other .= ',K';
1248 for ($i = $ix + 1; $i < $num; $i++) {
1249 if (!defined $hunk[$i]{USE}) {
1250 $next = 1;
1251 $other .= ',j';
1252 last;
1255 if ($ix < $num - 1) {
1256 $other .= ',J';
1258 if ($num > 1) {
1259 $other .= ',g';
1261 for ($i = 0; $i < $num; $i++) {
1262 if (!defined $hunk[$i]{USE}) {
1263 $undecided = 1;
1264 last;
1267 last if (!$undecided);
1269 if ($hunk[$ix]{TYPE} eq 'hunk' &&
1270 hunk_splittable($hunk[$ix]{TEXT})) {
1271 $other .= ',s';
1273 if ($hunk[$ix]{TYPE} eq 'hunk') {
1274 $other .= ',e';
1276 for (@{$hunk[$ix]{DISPLAY}}) {
1277 print;
1279 print colored $prompt_color, $patch_mode_flavour{VERB},
1280 ($hunk[$ix]{TYPE} eq 'mode' ? ' mode change' :
1281 $hunk[$ix]{TYPE} eq 'deletion' ? ' deletion' :
1282 ' this hunk'),
1283 $patch_mode_flavour{TARGET},
1284 " [y,n,q,a,d,/$other,?]? ";
1285 my $line = prompt_single_character;
1286 if ($line) {
1287 if ($line =~ /^y/i) {
1288 $hunk[$ix]{USE} = 1;
1290 elsif ($line =~ /^n/i) {
1291 $hunk[$ix]{USE} = 0;
1293 elsif ($line =~ /^a/i) {
1294 while ($ix < $num) {
1295 if (!defined $hunk[$ix]{USE}) {
1296 $hunk[$ix]{USE} = 1;
1298 $ix++;
1300 next;
1302 elsif ($other =~ /g/ && $line =~ /^g(.*)/) {
1303 my $response = $1;
1304 my $no = $ix > 10 ? $ix - 10 : 0;
1305 while ($response eq '') {
1306 my $extra = "";
1307 $no = display_hunks(\@hunk, $no);
1308 if ($no < $num) {
1309 $extra = " (<ret> to see more)";
1311 print "go to which hunk$extra? ";
1312 $response = <STDIN>;
1313 if (!defined $response) {
1314 $response = '';
1316 chomp $response;
1318 if ($response !~ /^\s*\d+\s*$/) {
1319 error_msg "Invalid number: '$response'\n";
1320 } elsif (0 < $response && $response <= $num) {
1321 $ix = $response - 1;
1322 } else {
1323 error_msg "Sorry, only $num hunks available.\n";
1325 next;
1327 elsif ($line =~ /^d/i) {
1328 while ($ix < $num) {
1329 if (!defined $hunk[$ix]{USE}) {
1330 $hunk[$ix]{USE} = 0;
1332 $ix++;
1334 next;
1336 elsif ($line =~ /^q/i) {
1337 while ($ix < $num) {
1338 if (!defined $hunk[$ix]{USE}) {
1339 $hunk[$ix]{USE} = 0;
1341 $ix++;
1343 $quit = 1;
1344 next;
1346 elsif ($line =~ m|^/(.*)|) {
1347 my $regex = $1;
1348 if ($1 eq "") {
1349 print colored $prompt_color, "search for regex? ";
1350 $regex = <STDIN>;
1351 if (defined $regex) {
1352 chomp $regex;
1355 my $search_string;
1356 eval {
1357 $search_string = qr{$regex}m;
1359 if ($@) {
1360 my ($err,$exp) = ($@, $1);
1361 $err =~ s/ at .*git-add--interactive line \d+, <STDIN> line \d+.*$//;
1362 error_msg "Malformed search regexp $exp: $err\n";
1363 next;
1365 my $iy = $ix;
1366 while (1) {
1367 my $text = join ("", @{$hunk[$iy]{TEXT}});
1368 last if ($text =~ $search_string);
1369 $iy++;
1370 $iy = 0 if ($iy >= $num);
1371 if ($ix == $iy) {
1372 error_msg "No hunk matches the given pattern\n";
1373 last;
1376 $ix = $iy;
1377 next;
1379 elsif ($line =~ /^K/) {
1380 if ($other =~ /K/) {
1381 $ix--;
1383 else {
1384 error_msg "No previous hunk\n";
1386 next;
1388 elsif ($line =~ /^J/) {
1389 if ($other =~ /J/) {
1390 $ix++;
1392 else {
1393 error_msg "No next hunk\n";
1395 next;
1397 elsif ($line =~ /^k/) {
1398 if ($other =~ /k/) {
1399 while (1) {
1400 $ix--;
1401 last if (!$ix ||
1402 !defined $hunk[$ix]{USE});
1405 else {
1406 error_msg "No previous hunk\n";
1408 next;
1410 elsif ($line =~ /^j/) {
1411 if ($other !~ /j/) {
1412 error_msg "No next hunk\n";
1413 next;
1416 elsif ($other =~ /s/ && $line =~ /^s/) {
1417 my @split = split_hunk($hunk[$ix]{TEXT}, $hunk[$ix]{DISPLAY});
1418 if (1 < @split) {
1419 print colored $header_color, "Split into ",
1420 scalar(@split), " hunks.\n";
1422 splice (@hunk, $ix, 1, @split);
1423 $num = scalar @hunk;
1424 next;
1426 elsif ($other =~ /e/ && $line =~ /^e/) {
1427 my $newhunk = edit_hunk_loop($head, \@hunk, $ix);
1428 if (defined $newhunk) {
1429 splice @hunk, $ix, 1, $newhunk;
1432 else {
1433 help_patch_cmd($other);
1434 next;
1436 # soft increment
1437 while (1) {
1438 $ix++;
1439 last if ($ix >= $num ||
1440 !defined $hunk[$ix]{USE});
1445 @hunk = coalesce_overlapping_hunks(@hunk);
1447 my $n_lofs = 0;
1448 my @result = ();
1449 for (@hunk) {
1450 if ($_->{USE}) {
1451 push @result, @{$_->{TEXT}};
1455 if (@result) {
1456 my $fh;
1457 my @patch = (@{$head->{TEXT}}, @result);
1458 my $apply_routine = $patch_mode_flavour{APPLY};
1459 &$apply_routine(@patch);
1460 refresh();
1463 print "\n";
1464 return $quit;
1467 sub diff_cmd {
1468 my @mods = list_modified('index-only');
1469 @mods = grep { !($_->{BINARY}) } @mods;
1470 return if (!@mods);
1471 my (@them) = list_and_choose({ PROMPT => 'Review diff',
1472 IMMEDIATE => 1,
1473 HEADER => $status_head, },
1474 @mods);
1475 return if (!@them);
1476 my $reference = is_initial_commit() ? get_empty_tree() : 'HEAD';
1477 system(qw(git diff -p --cached), $reference, '--',
1478 map { $_->{VALUE} } @them);
1481 sub quit_cmd {
1482 print "Bye.\n";
1483 exit(0);
1486 sub help_cmd {
1487 print colored $help_color, <<\EOF ;
1488 status - show paths with changes
1489 update - add working tree state to the staged set of changes
1490 revert - revert staged set of changes back to the HEAD version
1491 patch - pick hunks and update selectively
1492 diff - view diff between HEAD and index
1493 add untracked - add contents of untracked files to the staged set of changes
1497 sub process_args {
1498 return unless @ARGV;
1499 my $arg = shift @ARGV;
1500 if ($arg =~ /--patch(?:=(.*))?/) {
1501 if (defined $1) {
1502 if ($1 eq 'reset') {
1503 $patch_mode = 'reset_head';
1504 $patch_mode_revision = 'HEAD';
1505 $arg = shift @ARGV or die "missing --";
1506 if ($arg ne '--') {
1507 $patch_mode_revision = $arg;
1508 $patch_mode = ($arg eq 'HEAD' ?
1509 'reset_head' : 'reset_nothead');
1510 $arg = shift @ARGV or die "missing --";
1512 } elsif ($1 eq 'checkout') {
1513 $arg = shift @ARGV or die "missing --";
1514 if ($arg eq '--') {
1515 $patch_mode = 'checkout_index';
1516 } else {
1517 $patch_mode_revision = $arg;
1518 $patch_mode = ($arg eq 'HEAD' ?
1519 'checkout_head' : 'checkout_nothead');
1520 $arg = shift @ARGV or die "missing --";
1522 } elsif ($1 eq 'stage' or $1 eq 'stash') {
1523 $patch_mode = $1;
1524 $arg = shift @ARGV or die "missing --";
1525 } else {
1526 die "unknown --patch mode: $1";
1528 } else {
1529 $patch_mode = 'stage';
1530 $arg = shift @ARGV or die "missing --";
1532 die "invalid argument $arg, expecting --"
1533 unless $arg eq "--";
1534 %patch_mode_flavour = %{$patch_modes{$patch_mode}};
1536 elsif ($arg ne "--") {
1537 die "invalid argument $arg, expecting --";
1541 sub main_loop {
1542 my @cmd = ([ 'status', \&status_cmd, ],
1543 [ 'update', \&update_cmd, ],
1544 [ 'revert', \&revert_cmd, ],
1545 [ 'add untracked', \&add_untracked_cmd, ],
1546 [ 'patch', \&patch_update_cmd, ],
1547 [ 'diff', \&diff_cmd, ],
1548 [ 'quit', \&quit_cmd, ],
1549 [ 'help', \&help_cmd, ],
1551 while (1) {
1552 my ($it) = list_and_choose({ PROMPT => 'What now',
1553 SINGLETON => 1,
1554 LIST_FLAT => 4,
1555 HEADER => '*** Commands ***',
1556 ON_EOF => \&quit_cmd,
1557 IMMEDIATE => 1 }, @cmd);
1558 if ($it) {
1559 eval {
1560 $it->[1]->();
1562 if ($@) {
1563 print "$@";
1569 process_args();
1570 refresh();
1571 if ($patch_mode) {
1572 patch_update_cmd();
1574 else {
1575 status_cmd();
1576 main_loop();