]> git.ipfire.org Git - thirdparty/git.git/blame - git-add--interactive.perl
GIT-VERSION-GEN: support non-standard $GIT_DIR path
[thirdparty/git.git] / git-add--interactive.perl
CommitLineData
3328aced 1#!/usr/bin/perl
5cde71d6 2
d48b2841 3use 5.008;
5cde71d6 4use strict;
3328aced 5use warnings;
b4c61ed6
JH
6use Git;
7
8851f480
JH
8binmode(STDOUT, ":raw");
9
b4c61ed6
JH
10my $repo = Git->repository();
11
f87e310d
JK
12my $menu_use_color = $repo->get_colorbool('color.interactive');
13my ($prompt_color, $header_color, $help_color) =
14 $menu_use_color ? (
15 $repo->get_color('color.interactive.prompt', 'bold blue'),
16 $repo->get_color('color.interactive.header', 'bold'),
17 $repo->get_color('color.interactive.help', 'red bold'),
18 ) : ();
a3019736
TR
19my $error_color = ();
20if ($menu_use_color) {
9aad6cba
SB
21 my $help_color_spec = ($repo->config('color.interactive.help') or
22 'red bold');
a3019736
TR
23 $error_color = $repo->get_color('color.interactive.error',
24 $help_color_spec);
25}
b4c61ed6 26
f87e310d
JK
27my $diff_use_color = $repo->get_colorbool('color.diff');
28my ($fraginfo_color) =
29 $diff_use_color ? (
30 $repo->get_color('color.diff.frag', 'cyan'),
31 ) : ();
ac083c47
TR
32my ($diff_plain_color) =
33 $diff_use_color ? (
34 $repo->get_color('color.diff.plain', ''),
35 ) : ();
36my ($diff_old_color) =
37 $diff_use_color ? (
38 $repo->get_color('color.diff.old', 'red'),
39 ) : ();
40my ($diff_new_color) =
41 $diff_use_color ? (
42 $repo->get_color('color.diff.new', 'green'),
43 ) : ();
b4c61ed6 44
f87e310d 45my $normal_color = $repo->get_color("", "reset");
b4c61ed6 46
ca6ac7f1 47my $use_readkey = 0;
b5cc0032
TR
48my $use_termcap = 0;
49my %term_escapes;
50
748aa689
TR
51sub ReadMode;
52sub ReadKey;
ca6ac7f1
TR
53if ($repo->config_bool("interactive.singlekey")) {
54 eval {
748aa689
TR
55 require Term::ReadKey;
56 Term::ReadKey->import;
ca6ac7f1
TR
57 $use_readkey = 1;
58 };
b5cc0032
TR
59 eval {
60 require Term::Cap;
61 my $termcap = Term::Cap->Tgetent;
62 foreach (values %$termcap) {
63 $term_escapes{$_} = 1 if /^\e/;
64 }
65 $use_termcap = 1;
66 };
ca6ac7f1
TR
67}
68
b4c61ed6
JH
69sub colored {
70 my $color = shift;
71 my $string = join("", @_);
72
f87e310d 73 if (defined $color) {
b4c61ed6
JH
74 # Put a color code at the beginning of each line, a reset at the end
75 # color after newlines that are not at the end of the string
76 $string =~ s/(\n+)(.)/$1$color$2/g;
77 # reset before newlines
78 $string =~ s/(\n+)/$normal_color$1/g;
79 # codes at beginning and end (if necessary):
80 $string =~ s/^/$color/;
81 $string =~ s/$/$normal_color/ unless $string =~ /\n$/;
82 }
83 return $string;
84}
5cde71d6 85
b63e9950
WC
86# command line options
87my $patch_mode;
d002ef4d 88my $patch_mode_revision;
b63e9950 89
8f0bef6d 90sub apply_patch;
4f353658 91sub apply_patch_for_checkout_commit;
dda1f2a5 92sub apply_patch_for_stash;
8f0bef6d
TR
93
94my %patch_modes = (
95 'stage' => {
96 DIFF => 'diff-files -p',
97 APPLY => sub { apply_patch 'apply --cached', @_; },
98 APPLY_CHECK => 'apply --cached',
99 VERB => 'Stage',
100 TARGET => '',
101 PARTICIPLE => 'staging',
102 FILTER => 'file-only',
7b8c7051 103 IS_REVERSE => 0,
8f0bef6d 104 },
dda1f2a5
TR
105 'stash' => {
106 DIFF => 'diff-index -p HEAD',
107 APPLY => sub { apply_patch 'apply --cached', @_; },
108 APPLY_CHECK => 'apply --cached',
109 VERB => 'Stash',
110 TARGET => '',
111 PARTICIPLE => 'stashing',
112 FILTER => undef,
7b8c7051 113 IS_REVERSE => 0,
dda1f2a5 114 },
d002ef4d
TR
115 'reset_head' => {
116 DIFF => 'diff-index -p --cached',
117 APPLY => sub { apply_patch 'apply -R --cached', @_; },
118 APPLY_CHECK => 'apply -R --cached',
119 VERB => 'Unstage',
120 TARGET => '',
121 PARTICIPLE => 'unstaging',
122 FILTER => 'index-only',
7b8c7051 123 IS_REVERSE => 1,
d002ef4d
TR
124 },
125 'reset_nothead' => {
126 DIFF => 'diff-index -R -p --cached',
127 APPLY => sub { apply_patch 'apply --cached', @_; },
128 APPLY_CHECK => 'apply --cached',
129 VERB => 'Apply',
130 TARGET => ' to index',
131 PARTICIPLE => 'applying',
132 FILTER => 'index-only',
7b8c7051 133 IS_REVERSE => 0,
d002ef4d 134 },
4f353658
TR
135 'checkout_index' => {
136 DIFF => 'diff-files -p',
137 APPLY => sub { apply_patch 'apply -R', @_; },
138 APPLY_CHECK => 'apply -R',
139 VERB => 'Discard',
140 TARGET => ' from worktree',
141 PARTICIPLE => 'discarding',
142 FILTER => 'file-only',
7b8c7051 143 IS_REVERSE => 1,
4f353658
TR
144 },
145 'checkout_head' => {
146 DIFF => 'diff-index -p',
147 APPLY => sub { apply_patch_for_checkout_commit '-R', @_ },
148 APPLY_CHECK => 'apply -R',
149 VERB => 'Discard',
150 TARGET => ' from index and worktree',
151 PARTICIPLE => 'discarding',
152 FILTER => undef,
7b8c7051 153 IS_REVERSE => 1,
4f353658
TR
154 },
155 'checkout_nothead' => {
156 DIFF => 'diff-index -R -p',
157 APPLY => sub { apply_patch_for_checkout_commit '', @_ },
158 APPLY_CHECK => 'apply',
159 VERB => 'Apply',
160 TARGET => ' to index and worktree',
161 PARTICIPLE => 'applying',
162 FILTER => undef,
7b8c7051 163 IS_REVERSE => 0,
4f353658 164 },
8f0bef6d
TR
165);
166
167my %patch_mode_flavour = %{$patch_modes{stage}};
b63e9950 168
5cde71d6 169sub run_cmd_pipe {
fdfd2008 170 if ($^O eq 'MSWin32' || $^O eq 'msys') {
21e9757e
AR
171 my @invalid = grep {m/[":*]/} @_;
172 die "$^O does not support: @invalid\n" if @invalid;
173 my @args = map { m/ /o ? "\"$_\"": $_ } @_;
174 return qx{@args};
175 } else {
176 my $fh = undef;
177 open($fh, '-|', @_) or die;
178 return <$fh>;
179 }
5cde71d6
JH
180}
181
182my ($GIT_DIR) = run_cmd_pipe(qw(git rev-parse --git-dir));
183
184if (!defined $GIT_DIR) {
185 exit(1); # rev-parse would have already said "not a git repo"
186}
187chomp($GIT_DIR);
188
8851f480
JH
189my %cquote_map = (
190 "b" => chr(8),
191 "t" => chr(9),
192 "n" => chr(10),
193 "v" => chr(11),
194 "f" => chr(12),
195 "r" => chr(13),
196 "\\" => "\\",
197 "\042" => "\042",
198);
199
200sub unquote_path {
201 local ($_) = @_;
202 my ($retval, $remainder);
203 if (!/^\042(.*)\042$/) {
204 return $_;
205 }
206 ($_, $retval) = ($1, "");
207 while (/^([^\\]*)\\(.*)$/) {
208 $remainder = $2;
209 $retval .= $1;
210 for ($remainder) {
211 if (/^([0-3][0-7][0-7])(.*)$/) {
212 $retval .= chr(oct($1));
213 $_ = $2;
214 last;
215 }
216 if (/^([\\\042btnvfr])(.*)$/) {
217 $retval .= $cquote_map{$1};
218 $_ = $2;
219 last;
220 }
221 # This is malformed -- just return it as-is for now.
222 return $_[0];
223 }
224 $_ = $remainder;
225 }
226 $retval .= $_;
227 return $retval;
228}
229
5cde71d6
JH
230sub refresh {
231 my $fh;
21e9757e 232 open $fh, 'git update-index --refresh |'
5cde71d6
JH
233 or die;
234 while (<$fh>) {
235 ;# ignore 'needs update'
236 }
237 close $fh;
238}
239
240sub list_untracked {
241 map {
242 chomp $_;
8851f480 243 unquote_path($_);
5cde71d6 244 }
4c841684 245 run_cmd_pipe(qw(git ls-files --others --exclude-standard --), @ARGV);
5cde71d6
JH
246}
247
248my $status_fmt = '%12s %12s %s';
249my $status_head = sprintf($status_fmt, 'staged', 'unstaged', 'path');
250
18bc7616
JK
251{
252 my $initial;
253 sub is_initial_commit {
254 $initial = system('git rev-parse HEAD -- >/dev/null 2>&1') != 0
255 unless defined $initial;
256 return $initial;
257 }
258}
259
260sub get_empty_tree {
261 return '4b825dc642cb6eb9a060e54bf8d69288fbee4904';
262}
263
5cde71d6 264# Returns list of hashes, contents of each of which are:
5cde71d6
JH
265# VALUE: pathname
266# BINARY: is a binary path
267# INDEX: is index different from HEAD?
268# FILE: is file different from index?
269# INDEX_ADDDEL: is it add/delete between HEAD and index?
270# FILE_ADDDEL: is it add/delete between index and file?
4066bd67 271# UNMERGED: is the path unmerged
5cde71d6
JH
272
273sub list_modified {
274 my ($only) = @_;
275 my (%data, @return);
276 my ($add, $del, $adddel, $file);
4c841684
WC
277 my @tracked = ();
278
279 if (@ARGV) {
280 @tracked = map {
8851f480
JH
281 chomp $_;
282 unquote_path($_);
b145b211 283 } run_cmd_pipe(qw(git ls-files --), @ARGV);
4c841684
WC
284 return if (!@tracked);
285 }
5cde71d6 286
d002ef4d
TR
287 my $reference;
288 if (defined $patch_mode_revision and $patch_mode_revision ne 'HEAD') {
289 $reference = $patch_mode_revision;
290 } elsif (is_initial_commit()) {
291 $reference = get_empty_tree();
292 } else {
293 $reference = 'HEAD';
294 }
5cde71d6 295 for (run_cmd_pipe(qw(git diff-index --cached
18bc7616
JK
296 --numstat --summary), $reference,
297 '--', @tracked)) {
5cde71d6
JH
298 if (($add, $del, $file) =
299 /^([-\d]+) ([-\d]+) (.*)/) {
300 my ($change, $bin);
8851f480 301 $file = unquote_path($file);
5cde71d6
JH
302 if ($add eq '-' && $del eq '-') {
303 $change = 'binary';
304 $bin = 1;
305 }
306 else {
307 $change = "+$add/-$del";
308 }
309 $data{$file} = {
310 INDEX => $change,
311 BINARY => $bin,
312 FILE => 'nothing',
313 }
314 }
315 elsif (($adddel, $file) =
316 /^ (create|delete) mode [0-7]+ (.*)$/) {
8851f480 317 $file = unquote_path($file);
5cde71d6
JH
318 $data{$file}{INDEX_ADDDEL} = $adddel;
319 }
320 }
321
4066bd67 322 for (run_cmd_pipe(qw(git diff-files --numstat --summary --raw --), @tracked)) {
5cde71d6
JH
323 if (($add, $del, $file) =
324 /^([-\d]+) ([-\d]+) (.*)/) {
8851f480 325 $file = unquote_path($file);
5cde71d6
JH
326 my ($change, $bin);
327 if ($add eq '-' && $del eq '-') {
328 $change = 'binary';
329 $bin = 1;
330 }
331 else {
332 $change = "+$add/-$del";
333 }
334 $data{$file}{FILE} = $change;
335 if ($bin) {
336 $data{$file}{BINARY} = 1;
337 }
338 }
339 elsif (($adddel, $file) =
340 /^ (create|delete) mode [0-7]+ (.*)$/) {
8851f480 341 $file = unquote_path($file);
5cde71d6
JH
342 $data{$file}{FILE_ADDDEL} = $adddel;
343 }
4066bd67
JK
344 elsif (/^:[0-7]+ [0-7]+ [0-9a-f]+ [0-9a-f]+ (.) (.*)$/) {
345 $file = unquote_path($2);
346 if (!exists $data{$file}) {
347 $data{$file} = +{
348 INDEX => 'unchanged',
349 BINARY => 0,
350 };
351 }
352 if ($1 eq 'U') {
353 $data{$file}{UNMERGED} = 1;
354 }
355 }
5cde71d6
JH
356 }
357
358 for (sort keys %data) {
359 my $it = $data{$_};
360
361 if ($only) {
362 if ($only eq 'index-only') {
363 next if ($it->{INDEX} eq 'unchanged');
364 }
365 if ($only eq 'file-only') {
366 next if ($it->{FILE} eq 'nothing');
367 }
368 }
369 push @return, +{
370 VALUE => $_,
5cde71d6
JH
371 %$it,
372 };
373 }
374 return @return;
375}
376
377sub find_unique {
378 my ($string, @stuff) = @_;
379 my $found = undef;
380 for (my $i = 0; $i < @stuff; $i++) {
381 my $it = $stuff[$i];
382 my $hit = undef;
383 if (ref $it) {
384 if ((ref $it) eq 'ARRAY') {
385 $it = $it->[0];
386 }
387 else {
388 $it = $it->{VALUE};
389 }
390 }
391 eval {
392 if ($it =~ /^$string/) {
393 $hit = 1;
394 };
395 };
396 if (defined $hit && defined $found) {
397 return undef;
398 }
399 if ($hit) {
400 $found = $i + 1;
401 }
402 }
403 return $found;
404}
405
14cb5038
WC
406# inserts string into trie and updates count for each character
407sub update_trie {
408 my ($trie, $string) = @_;
409 foreach (split //, $string) {
410 $trie = $trie->{$_} ||= {COUNT => 0};
411 $trie->{COUNT}++;
412 }
413}
414
415# returns an array of tuples (prefix, remainder)
416sub find_unique_prefixes {
417 my @stuff = @_;
418 my @return = ();
419
420 # any single prefix exceeding the soft limit is omitted
421 # if any prefix exceeds the hard limit all are omitted
422 # 0 indicates no limit
423 my $soft_limit = 0;
424 my $hard_limit = 3;
425
426 # build a trie modelling all possible options
427 my %trie;
428 foreach my $print (@stuff) {
429 if ((ref $print) eq 'ARRAY') {
430 $print = $print->[0];
431 }
63320989 432 elsif ((ref $print) eq 'HASH') {
14cb5038
WC
433 $print = $print->{VALUE};
434 }
435 update_trie(\%trie, $print);
436 push @return, $print;
437 }
438
439 # use the trie to find the unique prefixes
440 for (my $i = 0; $i < @return; $i++) {
441 my $ret = $return[$i];
442 my @letters = split //, $ret;
443 my %search = %trie;
444 my ($prefix, $remainder);
445 my $j;
446 for ($j = 0; $j < @letters; $j++) {
447 my $letter = $letters[$j];
448 if ($search{$letter}{COUNT} == 1) {
449 $prefix = substr $ret, 0, $j + 1;
450 $remainder = substr $ret, $j + 1;
451 last;
452 }
453 else {
454 my $prefix = substr $ret, 0, $j;
455 return ()
456 if ($hard_limit && $j + 1 > $hard_limit);
457 }
458 %search = %{$search{$letter}};
459 }
8851f480
JH
460 if (ord($letters[0]) > 127 ||
461 ($soft_limit && $j + 1 > $soft_limit)) {
14cb5038
WC
462 $prefix = undef;
463 $remainder = $ret;
464 }
465 $return[$i] = [$prefix, $remainder];
466 }
467 return @return;
468}
469
63320989
WC
470# filters out prefixes which have special meaning to list_and_choose()
471sub is_valid_prefix {
472 my $prefix = shift;
473 return (defined $prefix) &&
474 !($prefix =~ /[\s,]/) && # separators
475 !($prefix =~ /^-/) && # deselection
476 !($prefix =~ /^\d+/) && # selection
7e018be2
WC
477 ($prefix ne '*') && # "all" wildcard
478 ($prefix ne '?'); # prompt help
63320989
WC
479}
480
14cb5038
WC
481# given a prefix/remainder tuple return a string with the prefix highlighted
482# for now use square brackets; later might use ANSI colors (underline, bold)
483sub highlight_prefix {
484 my $prefix = shift;
485 my $remainder = shift;
b4c61ed6
JH
486
487 if (!defined $prefix) {
488 return $remainder;
489 }
490
491 if (!is_valid_prefix($prefix)) {
492 return "$prefix$remainder";
493 }
494
f87e310d 495 if (!$menu_use_color) {
b4c61ed6
JH
496 return "[$prefix]$remainder";
497 }
498
499 return "$prompt_color$prefix$normal_color$remainder";
14cb5038
WC
500}
501
a3019736
TR
502sub error_msg {
503 print STDERR colored $error_color, @_;
504}
505
5cde71d6
JH
506sub list_and_choose {
507 my ($opts, @stuff) = @_;
508 my (@chosen, @return);
509 my $i;
14cb5038 510 my @prefixes = find_unique_prefixes(@stuff) unless $opts->{LIST_ONLY};
5cde71d6
JH
511
512 TOPLOOP:
513 while (1) {
514 my $last_lf = 0;
515
516 if ($opts->{HEADER}) {
517 if (!$opts->{LIST_FLAT}) {
518 print " ";
519 }
b4c61ed6 520 print colored $header_color, "$opts->{HEADER}\n";
5cde71d6
JH
521 }
522 for ($i = 0; $i < @stuff; $i++) {
523 my $chosen = $chosen[$i] ? '*' : ' ';
524 my $print = $stuff[$i];
63320989
WC
525 my $ref = ref $print;
526 my $highlighted = highlight_prefix(@{$prefixes[$i]})
527 if @prefixes;
528 if ($ref eq 'ARRAY') {
529 $print = $highlighted || $print->[0];
530 }
531 elsif ($ref eq 'HASH') {
532 my $value = $highlighted || $print->{VALUE};
533 $print = sprintf($status_fmt,
534 $print->{INDEX},
535 $print->{FILE},
536 $value);
537 }
538 else {
539 $print = $highlighted || $print;
5cde71d6
JH
540 }
541 printf("%s%2d: %s", $chosen, $i+1, $print);
542 if (($opts->{LIST_FLAT}) &&
543 (($i + 1) % ($opts->{LIST_FLAT}))) {
544 print "\t";
545 $last_lf = 0;
546 }
547 else {
548 print "\n";
549 $last_lf = 1;
550 }
551 }
552 if (!$last_lf) {
553 print "\n";
554 }
555
556 return if ($opts->{LIST_ONLY});
557
b4c61ed6 558 print colored $prompt_color, $opts->{PROMPT};
5cde71d6
JH
559 if ($opts->{SINGLETON}) {
560 print "> ";
561 }
562 else {
563 print ">> ";
564 }
565 my $line = <STDIN>;
c95c0248
JLH
566 if (!$line) {
567 print "\n";
568 $opts->{ON_EOF}->() if $opts->{ON_EOF};
569 last;
570 }
5cde71d6 571 chomp $line;
6a6eb3d0 572 last if $line eq '';
7e018be2
WC
573 if ($line eq '?') {
574 $opts->{SINGLETON} ?
575 singleton_prompt_help_cmd() :
576 prompt_help_cmd();
577 next TOPLOOP;
578 }
5cde71d6
JH
579 for my $choice (split(/[\s,]+/, $line)) {
580 my $choose = 1;
581 my ($bottom, $top);
582
583 # Input that begins with '-'; unchoose
584 if ($choice =~ s/^-//) {
585 $choose = 0;
586 }
1e5aaa6d
CM
587 # A range can be specified like 5-7 or 5-.
588 if ($choice =~ /^(\d+)-(\d*)$/) {
589 ($bottom, $top) = ($1, length($2) ? $2 : 1 + @stuff);
5cde71d6
JH
590 }
591 elsif ($choice =~ /^\d+$/) {
592 $bottom = $top = $choice;
593 }
594 elsif ($choice eq '*') {
595 $bottom = 1;
596 $top = 1 + @stuff;
597 }
598 else {
599 $bottom = $top = find_unique($choice, @stuff);
600 if (!defined $bottom) {
a3019736 601 error_msg "Huh ($choice)?\n";
5cde71d6
JH
602 next TOPLOOP;
603 }
604 }
605 if ($opts->{SINGLETON} && $bottom != $top) {
a3019736 606 error_msg "Huh ($choice)?\n";
5cde71d6
JH
607 next TOPLOOP;
608 }
609 for ($i = $bottom-1; $i <= $top-1; $i++) {
6a6eb3d0 610 next if (@stuff <= $i || $i < 0);
5cde71d6 611 $chosen[$i] = $choose;
5cde71d6
JH
612 }
613 }
12db334e 614 last if ($opts->{IMMEDIATE} || $line eq '*');
5cde71d6
JH
615 }
616 for ($i = 0; $i < @stuff; $i++) {
617 if ($chosen[$i]) {
618 push @return, $stuff[$i];
619 }
620 }
621 return @return;
622}
623
7e018be2 624sub singleton_prompt_help_cmd {
b4c61ed6 625 print colored $help_color, <<\EOF ;
7e018be2
WC
626Prompt help:
6271 - select a numbered item
628foo - select item based on unique prefix
629 - (empty) select nothing
630EOF
631}
632
633sub prompt_help_cmd {
b4c61ed6 634 print colored $help_color, <<\EOF ;
7e018be2
WC
635Prompt help:
6361 - select a single item
6373-5 - select a range of items
6382-3,6-9 - select multiple ranges
639foo - select item based on unique prefix
640-... - unselect specified items
641* - choose all items
642 - (empty) finish selecting
643EOF
644}
645
5cde71d6
JH
646sub status_cmd {
647 list_and_choose({ LIST_ONLY => 1, HEADER => $status_head },
648 list_modified());
649 print "\n";
650}
651
652sub say_n_paths {
653 my $did = shift @_;
654 my $cnt = scalar @_;
655 print "$did ";
656 if (1 < $cnt) {
657 print "$cnt paths\n";
658 }
659 else {
660 print "one path\n";
661 }
662}
663
664sub update_cmd {
665 my @mods = list_modified('file-only');
666 return if (!@mods);
667
668 my @update = list_and_choose({ PROMPT => 'Update',
669 HEADER => $status_head, },
670 @mods);
671 if (@update) {
a4f7112f 672 system(qw(git update-index --add --remove --),
5cde71d6
JH
673 map { $_->{VALUE} } @update);
674 say_n_paths('updated', @update);
675 }
676 print "\n";
677}
678
679sub revert_cmd {
680 my @update = list_and_choose({ PROMPT => 'Revert',
681 HEADER => $status_head, },
682 list_modified());
683 if (@update) {
18bc7616
JK
684 if (is_initial_commit()) {
685 system(qw(git rm --cached),
686 map { $_->{VALUE} } @update);
5cde71d6 687 }
18bc7616
JK
688 else {
689 my @lines = run_cmd_pipe(qw(git ls-tree HEAD --),
690 map { $_->{VALUE} } @update);
691 my $fh;
692 open $fh, '| git update-index --index-info'
693 or die;
694 for (@lines) {
695 print $fh $_;
696 }
697 close($fh);
698 for (@update) {
699 if ($_->{INDEX_ADDDEL} &&
700 $_->{INDEX_ADDDEL} eq 'create') {
701 system(qw(git update-index --force-remove --),
702 $_->{VALUE});
703 print "note: $_->{VALUE} is untracked now.\n";
704 }
5cde71d6
JH
705 }
706 }
707 refresh();
708 say_n_paths('reverted', @update);
709 }
710 print "\n";
711}
712
713sub add_untracked_cmd {
714 my @add = list_and_choose({ PROMPT => 'Add untracked' },
715 list_untracked());
716 if (@add) {
717 system(qw(git update-index --add --), @add);
718 say_n_paths('added', @add);
719 }
720 print "\n";
721}
722
8f0bef6d
TR
723sub run_git_apply {
724 my $cmd = shift;
725 my $fh;
933e44d3 726 open $fh, '| git ' . $cmd . " --recount --allow-overlap";
8f0bef6d
TR
727 print $fh @_;
728 return close $fh;
729}
730
5cde71d6
JH
731sub parse_diff {
732 my ($path) = @_;
8f0bef6d 733 my @diff_cmd = split(" ", $patch_mode_flavour{DIFF});
d002ef4d
TR
734 if (defined $patch_mode_revision) {
735 push @diff_cmd, $patch_mode_revision;
736 }
8f0bef6d 737 my @diff = run_cmd_pipe("git", @diff_cmd, "--", $path);
4af756f3
WC
738 my @colored = ();
739 if ($diff_use_color) {
8f0bef6d 740 @colored = run_cmd_pipe("git", @diff_cmd, qw(--color --), $path);
5cde71d6 741 }
0392513f 742 my (@hunk) = { TEXT => [], DISPLAY => [], TYPE => 'header' };
b4c61ed6 743
4af756f3
WC
744 for (my $i = 0; $i < @diff; $i++) {
745 if ($diff[$i] =~ /^@@ /) {
0392513f
JK
746 push @hunk, { TEXT => [], DISPLAY => [],
747 TYPE => 'hunk' };
b4c61ed6 748 }
4af756f3
WC
749 push @{$hunk[-1]{TEXT}}, $diff[$i];
750 push @{$hunk[-1]{DISPLAY}},
751 ($diff_use_color ? $colored[$i] : $diff[$i]);
b4c61ed6 752 }
4af756f3 753 return @hunk;
b4c61ed6
JH
754}
755
b717a627
JK
756sub parse_diff_header {
757 my $src = shift;
758
0392513f
JK
759 my $head = { TEXT => [], DISPLAY => [], TYPE => 'header' };
760 my $mode = { TEXT => [], DISPLAY => [], TYPE => 'mode' };
24ab81ae 761 my $deletion = { TEXT => [], DISPLAY => [], TYPE => 'deletion' };
b717a627
JK
762
763 for (my $i = 0; $i < @{$src->{TEXT}}; $i++) {
24ab81ae
JK
764 my $dest =
765 $src->{TEXT}->[$i] =~ /^(old|new) mode (\d+)$/ ? $mode :
766 $src->{TEXT}->[$i] =~ /^deleted file/ ? $deletion :
767 $head;
b717a627
JK
768 push @{$dest->{TEXT}}, $src->{TEXT}->[$i];
769 push @{$dest->{DISPLAY}}, $src->{DISPLAY}->[$i];
770 }
24ab81ae 771 return ($head, $mode, $deletion);
b717a627
JK
772}
773
835b2aeb
JH
774sub hunk_splittable {
775 my ($text) = @_;
776
777 my @s = split_hunk($text);
778 return (1 < @s);
779}
780
781sub parse_hunk_header {
782 my ($line) = @_;
783 my ($o_ofs, $o_cnt, $n_ofs, $n_cnt) =
7288ed8e
JLH
784 $line =~ /^@@ -(\d+)(?:,(\d+))? \+(\d+)(?:,(\d+))? @@/;
785 $o_cnt = 1 unless defined $o_cnt;
786 $n_cnt = 1 unless defined $n_cnt;
835b2aeb
JH
787 return ($o_ofs, $o_cnt, $n_ofs, $n_cnt);
788}
789
790sub split_hunk {
4af756f3 791 my ($text, $display) = @_;
835b2aeb 792 my @split = ();
4af756f3
WC
793 if (!defined $display) {
794 $display = $text;
795 }
835b2aeb
JH
796 # If there are context lines in the middle of a hunk,
797 # it can be split, but we would need to take care of
798 # overlaps later.
799
7b40a455 800 my ($o_ofs, undef, $n_ofs) = parse_hunk_header($text->[0]);
835b2aeb 801 my $hunk_start = 1;
835b2aeb
JH
802
803 OUTER:
804 while (1) {
805 my $next_hunk_start = undef;
806 my $i = $hunk_start - 1;
807 my $this = +{
808 TEXT => [],
4af756f3 809 DISPLAY => [],
0392513f 810 TYPE => 'hunk',
835b2aeb
JH
811 OLD => $o_ofs,
812 NEW => $n_ofs,
813 OCNT => 0,
814 NCNT => 0,
815 ADDDEL => 0,
816 POSTCTX => 0,
4af756f3 817 USE => undef,
835b2aeb
JH
818 };
819
820 while (++$i < @$text) {
821 my $line = $text->[$i];
4af756f3 822 my $display = $display->[$i];
835b2aeb
JH
823 if ($line =~ /^ /) {
824 if ($this->{ADDDEL} &&
825 !defined $next_hunk_start) {
826 # We have seen leading context and
827 # adds/dels and then here is another
828 # context, which is trailing for this
829 # split hunk and leading for the next
830 # one.
831 $next_hunk_start = $i;
832 }
833 push @{$this->{TEXT}}, $line;
4af756f3 834 push @{$this->{DISPLAY}}, $display;
835b2aeb
JH
835 $this->{OCNT}++;
836 $this->{NCNT}++;
837 if (defined $next_hunk_start) {
838 $this->{POSTCTX}++;
839 }
840 next;
841 }
842
843 # add/del
844 if (defined $next_hunk_start) {
845 # We are done with the current hunk and
846 # this is the first real change for the
847 # next split one.
848 $hunk_start = $next_hunk_start;
849 $o_ofs = $this->{OLD} + $this->{OCNT};
850 $n_ofs = $this->{NEW} + $this->{NCNT};
851 $o_ofs -= $this->{POSTCTX};
852 $n_ofs -= $this->{POSTCTX};
853 push @split, $this;
854 redo OUTER;
855 }
856 push @{$this->{TEXT}}, $line;
4af756f3 857 push @{$this->{DISPLAY}}, $display;
835b2aeb
JH
858 $this->{ADDDEL}++;
859 if ($line =~ /^-/) {
860 $this->{OCNT}++;
861 }
862 else {
863 $this->{NCNT}++;
864 }
865 }
866
867 push @split, $this;
868 last;
869 }
870
871 for my $hunk (@split) {
872 $o_ofs = $hunk->{OLD};
873 $n_ofs = $hunk->{NEW};
7b40a455
JLH
874 my $o_cnt = $hunk->{OCNT};
875 my $n_cnt = $hunk->{NCNT};
835b2aeb
JH
876
877 my $head = ("@@ -$o_ofs" .
878 (($o_cnt != 1) ? ",$o_cnt" : '') .
879 " +$n_ofs" .
880 (($n_cnt != 1) ? ",$n_cnt" : '') .
881 " @@\n");
4af756f3 882 my $display_head = $head;
835b2aeb 883 unshift @{$hunk->{TEXT}}, $head;
4af756f3
WC
884 if ($diff_use_color) {
885 $display_head = colored($fraginfo_color, $head);
886 }
887 unshift @{$hunk->{DISPLAY}}, $display_head;
835b2aeb 888 }
4af756f3 889 return @split;
835b2aeb
JH
890}
891
7a26e653
JH
892sub find_last_o_ctx {
893 my ($it) = @_;
894 my $text = $it->{TEXT};
895 my ($o_ofs, $o_cnt) = parse_hunk_header($text->[0]);
896 my $i = @{$text};
897 my $last_o_ctx = $o_ofs + $o_cnt;
898 while (0 < --$i) {
899 my $line = $text->[$i];
900 if ($line =~ /^ /) {
901 $last_o_ctx--;
902 next;
903 }
904 last;
905 }
906 return $last_o_ctx;
907}
908
909sub merge_hunk {
910 my ($prev, $this) = @_;
911 my ($o0_ofs, $o0_cnt, $n0_ofs, $n0_cnt) =
912 parse_hunk_header($prev->{TEXT}[0]);
913 my ($o1_ofs, $o1_cnt, $n1_ofs, $n1_cnt) =
914 parse_hunk_header($this->{TEXT}[0]);
915
916 my (@line, $i, $ofs, $o_cnt, $n_cnt);
917 $ofs = $o0_ofs;
918 $o_cnt = $n_cnt = 0;
919 for ($i = 1; $i < @{$prev->{TEXT}}; $i++) {
920 my $line = $prev->{TEXT}[$i];
921 if ($line =~ /^\+/) {
922 $n_cnt++;
923 push @line, $line;
924 next;
925 }
926
927 last if ($o1_ofs <= $ofs);
928
929 $o_cnt++;
930 $ofs++;
931 if ($line =~ /^ /) {
932 $n_cnt++;
933 }
934 push @line, $line;
935 }
936
937 for ($i = 1; $i < @{$this->{TEXT}}; $i++) {
938 my $line = $this->{TEXT}[$i];
939 if ($line =~ /^\+/) {
940 $n_cnt++;
941 push @line, $line;
942 next;
943 }
944 $ofs++;
945 $o_cnt++;
946 if ($line =~ /^ /) {
947 $n_cnt++;
948 }
949 push @line, $line;
950 }
951 my $head = ("@@ -$o0_ofs" .
952 (($o_cnt != 1) ? ",$o_cnt" : '') .
953 " +$n0_ofs" .
954 (($n_cnt != 1) ? ",$n_cnt" : '') .
955 " @@\n");
956 @{$prev->{TEXT}} = ($head, @line);
957}
958
959sub coalesce_overlapping_hunks {
960 my (@in) = @_;
961 my @out = ();
962
963 my ($last_o_ctx, $last_was_dirty);
964
965 for (grep { $_->{USE} } @in) {
3d792161
TR
966 if ($_->{TYPE} ne 'hunk') {
967 push @out, $_;
968 next;
969 }
7a26e653
JH
970 my $text = $_->{TEXT};
971 my ($o_ofs) = parse_hunk_header($text->[0]);
972 if (defined $last_o_ctx &&
973 $o_ofs <= $last_o_ctx &&
974 !$_->{DIRTY} &&
975 !$last_was_dirty) {
976 merge_hunk($out[-1], $_);
977 }
978 else {
979 push @out, $_;
980 }
981 $last_o_ctx = find_last_o_ctx($out[-1]);
982 $last_was_dirty = $_->{DIRTY};
983 }
984 return @out;
985}
835b2aeb 986
e1327ed5
JK
987sub reassemble_patch {
988 my $head = shift;
989 my @patch;
990
991 # Include everything in the header except the beginning of the diff.
992 push @patch, (grep { !/^[-+]{3}/ } @$head);
993
994 # Then include any headers from the hunk lines, which must
995 # come before any actual hunk.
996 while (@_ && $_[0] !~ /^@/) {
997 push @patch, shift;
998 }
999
1000 # Then begin the diff.
1001 push @patch, grep { /^[-+]{3}/ } @$head;
1002
1003 # And then the actual hunks.
1004 push @patch, @_;
1005
1006 return @patch;
1007}
1008
ac083c47
TR
1009sub color_diff {
1010 return map {
1011 colored((/^@/ ? $fraginfo_color :
1012 /^\+/ ? $diff_new_color :
1013 /^-/ ? $diff_old_color :
1014 $diff_plain_color),
1015 $_);
1016 } @_;
1017}
1018
1019sub edit_hunk_manually {
1020 my ($oldtext) = @_;
1021
1022 my $hunkfile = $repo->repo_path . "/addp-hunk-edit.diff";
1023 my $fh;
1024 open $fh, '>', $hunkfile
1025 or die "failed to open hunk edit file for writing: " . $!;
1026 print $fh "# Manual hunk edit mode -- see bottom for a quick guide\n";
1027 print $fh @$oldtext;
8f0bef6d 1028 my $participle = $patch_mode_flavour{PARTICIPLE};
7b8c7051
JDL
1029 my $is_reverse = $patch_mode_flavour{IS_REVERSE};
1030 my ($remove_plus, $remove_minus) = $is_reverse ? ('-', '+') : ('+', '-');
ac083c47
TR
1031 print $fh <<EOF;
1032# ---
7b8c7051
JDL
1033# To remove '$remove_minus' lines, make them ' ' lines (context).
1034# To remove '$remove_plus' lines, delete them.
ac083c47
TR
1035# Lines starting with # will be removed.
1036#
1037# If the patch applies cleanly, the edited hunk will immediately be
8f0bef6d 1038# marked for $participle. If it does not apply cleanly, you will be given
ac083c47
TR
1039# an opportunity to edit again. If all lines of the hunk are removed,
1040# then the edit is aborted and the hunk is left unchanged.
1041EOF
1042 close $fh;
1043
b4479f07 1044 chomp(my $editor = run_cmd_pipe(qw(git var GIT_EDITOR)));
ac083c47
TR
1045 system('sh', '-c', $editor.' "$@"', $editor, $hunkfile);
1046
1d398a03
DM
1047 if ($? != 0) {
1048 return undef;
1049 }
1050
ac083c47
TR
1051 open $fh, '<', $hunkfile
1052 or die "failed to open hunk edit file for reading: " . $!;
1053 my @newtext = grep { !/^#/ } <$fh>;
1054 close $fh;
1055 unlink $hunkfile;
1056
1057 # Abort if nothing remains
1058 if (!grep { /\S/ } @newtext) {
1059 return undef;
1060 }
1061
1062 # Reinsert the first hunk header if the user accidentally deleted it
1063 if ($newtext[0] !~ /^@/) {
1064 unshift @newtext, $oldtext->[0];
1065 }
1066 return \@newtext;
1067}
1068
1069sub diff_applies {
9dce8323 1070 return run_git_apply($patch_mode_flavour{APPLY_CHECK} . ' --check',
8f0bef6d 1071 map { @{$_->{TEXT}} } @_);
ac083c47
TR
1072}
1073
ca6ac7f1
TR
1074sub _restore_terminal_and_die {
1075 ReadMode 'restore';
1076 print "\n";
1077 exit 1;
1078}
1079
1080sub prompt_single_character {
1081 if ($use_readkey) {
1082 local $SIG{TERM} = \&_restore_terminal_and_die;
1083 local $SIG{INT} = \&_restore_terminal_and_die;
1084 ReadMode 'cbreak';
1085 my $key = ReadKey 0;
1086 ReadMode 'restore';
b5cc0032
TR
1087 if ($use_termcap and $key eq "\e") {
1088 while (!defined $term_escapes{$key}) {
1089 my $next = ReadKey 0.5;
1090 last if (!defined $next);
1091 $key .= $next;
1092 }
1093 $key =~ s/\e/^[/;
1094 }
ca6ac7f1
TR
1095 print "$key" if defined $key;
1096 print "\n";
1097 return $key;
1098 } else {
1099 return <STDIN>;
1100 }
1101}
1102
ac083c47
TR
1103sub prompt_yesno {
1104 my ($prompt) = @_;
1105 while (1) {
1106 print colored $prompt_color, $prompt;
ca6ac7f1 1107 my $line = prompt_single_character;
ac083c47
TR
1108 return 0 if $line =~ /^n/i;
1109 return 1 if $line =~ /^y/i;
1110 }
1111}
1112
1113sub edit_hunk_loop {
1114 my ($head, $hunk, $ix) = @_;
1115 my $text = $hunk->[$ix]->{TEXT};
1116
1117 while (1) {
1118 $text = edit_hunk_manually($text);
1119 if (!defined $text) {
1120 return undef;
1121 }
0392513f
JK
1122 my $newhunk = {
1123 TEXT => $text,
1124 TYPE => $hunk->[$ix]->{TYPE},
7a26e653
JH
1125 USE => 1,
1126 DIRTY => 1,
0392513f 1127 };
ac083c47
TR
1128 if (diff_applies($head,
1129 @{$hunk}[0..$ix-1],
1130 $newhunk,
1131 @{$hunk}[$ix+1..$#{$hunk}])) {
1132 $newhunk->{DISPLAY} = [color_diff(@{$text})];
1133 return $newhunk;
1134 }
1135 else {
1136 prompt_yesno(
1137 'Your edited hunk does not apply. Edit again '
1138 . '(saying "no" discards!) [y/n]? '
1139 ) or return undef;
1140 }
1141 }
1142}
1143
5cde71d6 1144sub help_patch_cmd {
8f0bef6d
TR
1145 my $verb = lc $patch_mode_flavour{VERB};
1146 my $target = $patch_mode_flavour{TARGET};
1147 print colored $help_color, <<EOF ;
1148y - $verb this hunk$target
1149n - do not $verb this hunk$target
74e42ce1
JN
1150q - quit; do not $verb this hunk nor any of the remaining ones
1151a - $verb this hunk and all later hunks in the file
1152d - do not $verb this hunk nor any of the later hunks in the file
070434d0 1153g - select a hunk to go to
dd971cc9 1154/ - search for a hunk matching the given regex
5cde71d6
JH
1155j - leave this hunk undecided, see next undecided hunk
1156J - leave this hunk undecided, see next hunk
1157k - leave this hunk undecided, see previous undecided hunk
1158K - leave this hunk undecided, see previous hunk
835b2aeb 1159s - split the current hunk into smaller hunks
ac083c47 1160e - manually edit the current hunk
280e50c7 1161? - print help
5cde71d6
JH
1162EOF
1163}
1164
8f0bef6d
TR
1165sub apply_patch {
1166 my $cmd = shift;
9dce8323 1167 my $ret = run_git_apply $cmd, @_;
8f0bef6d
TR
1168 if (!$ret) {
1169 print STDERR @_;
1170 }
1171 return $ret;
1172}
1173
4f353658
TR
1174sub apply_patch_for_checkout_commit {
1175 my $reverse = shift;
9dce8323
JH
1176 my $applies_index = run_git_apply 'apply '.$reverse.' --cached --check', @_;
1177 my $applies_worktree = run_git_apply 'apply '.$reverse.' --check', @_;
4f353658
TR
1178
1179 if ($applies_worktree && $applies_index) {
9dce8323
JH
1180 run_git_apply 'apply '.$reverse.' --cached', @_;
1181 run_git_apply 'apply '.$reverse, @_;
4f353658
TR
1182 return 1;
1183 } elsif (!$applies_index) {
1184 print colored $error_color, "The selected hunks do not apply to the index!\n";
1185 if (prompt_yesno "Apply them to the worktree anyway? ") {
9dce8323 1186 return run_git_apply 'apply '.$reverse, @_;
4f353658
TR
1187 } else {
1188 print colored $error_color, "Nothing was applied.\n";
1189 return 0;
1190 }
1191 } else {
1192 print STDERR @_;
1193 return 0;
1194 }
1195}
1196
5cde71d6 1197sub patch_update_cmd {
8f0bef6d 1198 my @all_mods = list_modified($patch_mode_flavour{FILTER});
4066bd67
JK
1199 error_msg "ignoring unmerged: $_->{VALUE}\n"
1200 for grep { $_->{UNMERGED} } @all_mods;
1201 @all_mods = grep { !$_->{UNMERGED} } @all_mods;
1202
9fe7a643 1203 my @mods = grep { !($_->{BINARY}) } @all_mods;
b63e9950 1204 my @them;
5cde71d6 1205
b63e9950 1206 if (!@mods) {
9fe7a643
TR
1207 if (@all_mods) {
1208 print STDERR "Only binary files changed.\n";
1209 } else {
1210 print STDERR "No changes.\n";
1211 }
b63e9950
WC
1212 return 0;
1213 }
1214 if ($patch_mode) {
1215 @them = @mods;
1216 }
1217 else {
1218 @them = list_and_choose({ PROMPT => 'Patch update',
1219 HEADER => $status_head, },
1220 @mods);
1221 }
12db334e 1222 for (@them) {
9a7a1e03 1223 return 0 if patch_update_file($_->{VALUE});
12db334e 1224 }
a7d9da6c 1225}
5cde71d6 1226
3f6aff68
WP
1227# Generate a one line summary of a hunk.
1228sub summarize_hunk {
1229 my $rhunk = shift;
1230 my $summary = $rhunk->{TEXT}[0];
1231
1232 # Keep the line numbers, discard extra context.
1233 $summary =~ s/@@(.*?)@@.*/$1 /s;
1234 $summary .= " " x (20 - length $summary);
1235
1236 # Add some user context.
1237 for my $line (@{$rhunk->{TEXT}}) {
1238 if ($line =~ m/^[+-].*\w/) {
1239 $summary .= $line;
1240 last;
1241 }
1242 }
1243
1244 chomp $summary;
1245 return substr($summary, 0, 80) . "\n";
1246}
1247
1248
1249# Print a one-line summary of each hunk in the array ref in
1250# the first argument, starting wih the index in the 2nd.
1251sub display_hunks {
1252 my ($hunks, $i) = @_;
1253 my $ctr = 0;
1254 $i ||= 0;
1255 for (; $i < @$hunks && $ctr < 20; $i++, $ctr++) {
1256 my $status = " ";
1257 if (defined $hunks->[$i]{USE}) {
1258 $status = $hunks->[$i]{USE} ? "+" : "-";
1259 }
1260 printf "%s%2d: %s",
1261 $status,
1262 $i + 1,
1263 summarize_hunk($hunks->[$i]);
1264 }
1265 return $i;
1266}
1267
a7d9da6c 1268sub patch_update_file {
9a7a1e03 1269 my $quit = 0;
5cde71d6 1270 my ($ix, $num);
a7d9da6c 1271 my $path = shift;
5cde71d6 1272 my ($head, @hunk) = parse_diff($path);
24ab81ae 1273 ($head, my $mode, my $deletion) = parse_diff_header($head);
4af756f3
WC
1274 for (@{$head->{DISPLAY}}) {
1275 print;
1276 }
ca724686
JK
1277
1278 if (@{$mode->{TEXT}}) {
0392513f 1279 unshift @hunk, $mode;
ca724686 1280 }
8947fdd5
JK
1281 if (@{$deletion->{TEXT}}) {
1282 foreach my $hunk (@hunk) {
1283 push @{$deletion->{TEXT}}, @{$hunk->{TEXT}};
1284 push @{$deletion->{DISPLAY}}, @{$hunk->{DISPLAY}};
1285 }
24ab81ae
JK
1286 @hunk = ($deletion);
1287 }
ca724686 1288
5cde71d6
JH
1289 $num = scalar @hunk;
1290 $ix = 0;
1291
1292 while (1) {
835b2aeb 1293 my ($prev, $next, $other, $undecided, $i);
5cde71d6
JH
1294 $other = '';
1295
1296 if ($num <= $ix) {
1297 $ix = 0;
1298 }
835b2aeb 1299 for ($i = 0; $i < $ix; $i++) {
5cde71d6
JH
1300 if (!defined $hunk[$i]{USE}) {
1301 $prev = 1;
57886bc7 1302 $other .= ',k';
5cde71d6
JH
1303 last;
1304 }
1305 }
1306 if ($ix) {
57886bc7 1307 $other .= ',K';
5cde71d6 1308 }
835b2aeb 1309 for ($i = $ix + 1; $i < $num; $i++) {
5cde71d6
JH
1310 if (!defined $hunk[$i]{USE}) {
1311 $next = 1;
57886bc7 1312 $other .= ',j';
5cde71d6
JH
1313 last;
1314 }
1315 }
1316 if ($ix < $num - 1) {
57886bc7 1317 $other .= ',J';
5cde71d6 1318 }
070434d0 1319 if ($num > 1) {
4404b2e3 1320 $other .= ',g';
070434d0 1321 }
835b2aeb 1322 for ($i = 0; $i < $num; $i++) {
5cde71d6
JH
1323 if (!defined $hunk[$i]{USE}) {
1324 $undecided = 1;
1325 last;
1326 }
1327 }
1328 last if (!$undecided);
1329
0392513f
JK
1330 if ($hunk[$ix]{TYPE} eq 'hunk' &&
1331 hunk_splittable($hunk[$ix]{TEXT})) {
57886bc7 1332 $other .= ',s';
835b2aeb 1333 }
0392513f
JK
1334 if ($hunk[$ix]{TYPE} eq 'hunk') {
1335 $other .= ',e';
1336 }
4af756f3
WC
1337 for (@{$hunk[$ix]{DISPLAY}}) {
1338 print;
1339 }
8f0bef6d 1340 print colored $prompt_color, $patch_mode_flavour{VERB},
24ab81ae
JK
1341 ($hunk[$ix]{TYPE} eq 'mode' ? ' mode change' :
1342 $hunk[$ix]{TYPE} eq 'deletion' ? ' deletion' :
1343 ' this hunk'),
8f0bef6d 1344 $patch_mode_flavour{TARGET},
a2fc8d65 1345 " [y,n,q,a,d,/$other,?]? ";
ca6ac7f1 1346 my $line = prompt_single_character;
5cde71d6
JH
1347 if ($line) {
1348 if ($line =~ /^y/i) {
1349 $hunk[$ix]{USE} = 1;
1350 }
1351 elsif ($line =~ /^n/i) {
1352 $hunk[$ix]{USE} = 0;
1353 }
1354 elsif ($line =~ /^a/i) {
1355 while ($ix < $num) {
1356 if (!defined $hunk[$ix]{USE}) {
1357 $hunk[$ix]{USE} = 1;
1358 }
1359 $ix++;
1360 }
1361 next;
1362 }
070434d0
WP
1363 elsif ($other =~ /g/ && $line =~ /^g(.*)/) {
1364 my $response = $1;
1365 my $no = $ix > 10 ? $ix - 10 : 0;
1366 while ($response eq '') {
1367 my $extra = "";
1368 $no = display_hunks(\@hunk, $no);
1369 if ($no < $num) {
1370 $extra = " (<ret> to see more)";
1371 }
1372 print "go to which hunk$extra? ";
1373 $response = <STDIN>;
68c02d7c
TR
1374 if (!defined $response) {
1375 $response = '';
1376 }
070434d0
WP
1377 chomp $response;
1378 }
1379 if ($response !~ /^\s*\d+\s*$/) {
a3019736 1380 error_msg "Invalid number: '$response'\n";
070434d0
WP
1381 } elsif (0 < $response && $response <= $num) {
1382 $ix = $response - 1;
1383 } else {
a3019736 1384 error_msg "Sorry, only $num hunks available.\n";
070434d0
WP
1385 }
1386 next;
1387 }
5cde71d6
JH
1388 elsif ($line =~ /^d/i) {
1389 while ($ix < $num) {
1390 if (!defined $hunk[$ix]{USE}) {
1391 $hunk[$ix]{USE} = 0;
1392 }
1393 $ix++;
1394 }
1395 next;
1396 }
9a7a1e03 1397 elsif ($line =~ /^q/i) {
f5ea3f2b
JH
1398 for ($i = 0; $i < $num; $i++) {
1399 if (!defined $hunk[$i]{USE}) {
1400 $hunk[$i]{USE} = 0;
9a7a1e03 1401 }
9a7a1e03
MM
1402 }
1403 $quit = 1;
f5ea3f2b 1404 last;
9a7a1e03 1405 }
dd971cc9 1406 elsif ($line =~ m|^/(.*)|) {
ca6ac7f1
TR
1407 my $regex = $1;
1408 if ($1 eq "") {
1409 print colored $prompt_color, "search for regex? ";
1410 $regex = <STDIN>;
1411 if (defined $regex) {
1412 chomp $regex;
1413 }
1414 }
dd971cc9
WP
1415 my $search_string;
1416 eval {
ca6ac7f1 1417 $search_string = qr{$regex}m;
dd971cc9
WP
1418 };
1419 if ($@) {
1420 my ($err,$exp) = ($@, $1);
1421 $err =~ s/ at .*git-add--interactive line \d+, <STDIN> line \d+.*$//;
a3019736 1422 error_msg "Malformed search regexp $exp: $err\n";
dd971cc9
WP
1423 next;
1424 }
1425 my $iy = $ix;
1426 while (1) {
1427 my $text = join ("", @{$hunk[$iy]{TEXT}});
1428 last if ($text =~ $search_string);
1429 $iy++;
1430 $iy = 0 if ($iy >= $num);
1431 if ($ix == $iy) {
a3019736 1432 error_msg "No hunk matches the given pattern\n";
dd971cc9
WP
1433 last;
1434 }
1435 }
1436 $ix = $iy;
1437 next;
1438 }
ace30ba8
WP
1439 elsif ($line =~ /^K/) {
1440 if ($other =~ /K/) {
1441 $ix--;
1442 }
1443 else {
a3019736 1444 error_msg "No previous hunk\n";
ace30ba8 1445 }
5cde71d6
JH
1446 next;
1447 }
ace30ba8
WP
1448 elsif ($line =~ /^J/) {
1449 if ($other =~ /J/) {
1450 $ix++;
1451 }
1452 else {
a3019736 1453 error_msg "No next hunk\n";
ace30ba8 1454 }
5cde71d6
JH
1455 next;
1456 }
ace30ba8
WP
1457 elsif ($line =~ /^k/) {
1458 if ($other =~ /k/) {
1459 while (1) {
1460 $ix--;
1461 last if (!$ix ||
1462 !defined $hunk[$ix]{USE});
1463 }
1464 }
1465 else {
a3019736 1466 error_msg "No previous hunk\n";
5cde71d6
JH
1467 }
1468 next;
1469 }
ace30ba8
WP
1470 elsif ($line =~ /^j/) {
1471 if ($other !~ /j/) {
a3019736 1472 error_msg "No next hunk\n";
ace30ba8 1473 next;
5cde71d6 1474 }
5cde71d6 1475 }
835b2aeb 1476 elsif ($other =~ /s/ && $line =~ /^s/) {
4af756f3 1477 my @split = split_hunk($hunk[$ix]{TEXT}, $hunk[$ix]{DISPLAY});
835b2aeb 1478 if (1 < @split) {
b4c61ed6 1479 print colored $header_color, "Split into ",
835b2aeb
JH
1480 scalar(@split), " hunks.\n";
1481 }
4af756f3 1482 splice (@hunk, $ix, 1, @split);
835b2aeb
JH
1483 $num = scalar @hunk;
1484 next;
1485 }
0392513f 1486 elsif ($other =~ /e/ && $line =~ /^e/) {
ac083c47
TR
1487 my $newhunk = edit_hunk_loop($head, \@hunk, $ix);
1488 if (defined $newhunk) {
1489 splice @hunk, $ix, 1, $newhunk;
1490 }
1491 }
5cde71d6
JH
1492 else {
1493 help_patch_cmd($other);
1494 next;
1495 }
1496 # soft increment
1497 while (1) {
1498 $ix++;
1499 last if ($ix >= $num ||
1500 !defined $hunk[$ix]{USE});
1501 }
1502 }
1503 }
1504
7a26e653
JH
1505 @hunk = coalesce_overlapping_hunks(@hunk);
1506
7b40a455 1507 my $n_lofs = 0;
5cde71d6
JH
1508 my @result = ();
1509 for (@hunk) {
8cbd4310
TR
1510 if ($_->{USE}) {
1511 push @result, @{$_->{TEXT}};
5cde71d6
JH
1512 }
1513 }
1514
1515 if (@result) {
e1327ed5 1516 my @patch = reassemble_patch($head->{TEXT}, @result);
8f0bef6d
TR
1517 my $apply_routine = $patch_mode_flavour{APPLY};
1518 &$apply_routine(@patch);
5cde71d6
JH
1519 refresh();
1520 }
1521
1522 print "\n";
9a7a1e03 1523 return $quit;
5cde71d6
JH
1524}
1525
1526sub diff_cmd {
1527 my @mods = list_modified('index-only');
1528 @mods = grep { !($_->{BINARY}) } @mods;
1529 return if (!@mods);
1530 my (@them) = list_and_choose({ PROMPT => 'Review diff',
1531 IMMEDIATE => 1,
1532 HEADER => $status_head, },
1533 @mods);
1534 return if (!@them);
18bc7616
JK
1535 my $reference = is_initial_commit() ? get_empty_tree() : 'HEAD';
1536 system(qw(git diff -p --cached), $reference, '--',
1537 map { $_->{VALUE} } @them);
5cde71d6
JH
1538}
1539
1540sub quit_cmd {
1541 print "Bye.\n";
1542 exit(0);
1543}
1544
1545sub help_cmd {
b4c61ed6 1546 print colored $help_color, <<\EOF ;
5cde71d6
JH
1547status - show paths with changes
1548update - add working tree state to the staged set of changes
1549revert - revert staged set of changes back to the HEAD version
1550patch - pick hunks and update selectively
1551diff - view diff between HEAD and index
1552add untracked - add contents of untracked files to the staged set of changes
1553EOF
1554}
1555
b63e9950
WC
1556sub process_args {
1557 return unless @ARGV;
1558 my $arg = shift @ARGV;
d002ef4d
TR
1559 if ($arg =~ /--patch(?:=(.*))?/) {
1560 if (defined $1) {
1561 if ($1 eq 'reset') {
1562 $patch_mode = 'reset_head';
1563 $patch_mode_revision = 'HEAD';
1564 $arg = shift @ARGV or die "missing --";
1565 if ($arg ne '--') {
1566 $patch_mode_revision = $arg;
1567 $patch_mode = ($arg eq 'HEAD' ?
1568 'reset_head' : 'reset_nothead');
1569 $arg = shift @ARGV or die "missing --";
1570 }
4f353658
TR
1571 } elsif ($1 eq 'checkout') {
1572 $arg = shift @ARGV or die "missing --";
1573 if ($arg eq '--') {
1574 $patch_mode = 'checkout_index';
1575 } else {
1576 $patch_mode_revision = $arg;
1577 $patch_mode = ($arg eq 'HEAD' ?
1578 'checkout_head' : 'checkout_nothead');
1579 $arg = shift @ARGV or die "missing --";
1580 }
dda1f2a5
TR
1581 } elsif ($1 eq 'stage' or $1 eq 'stash') {
1582 $patch_mode = $1;
d002ef4d
TR
1583 $arg = shift @ARGV or die "missing --";
1584 } else {
1585 die "unknown --patch mode: $1";
1586 }
1587 } else {
1588 $patch_mode = 'stage';
1589 $arg = shift @ARGV or die "missing --";
1590 }
b63e9950
WC
1591 die "invalid argument $arg, expecting --"
1592 unless $arg eq "--";
d002ef4d 1593 %patch_mode_flavour = %{$patch_modes{$patch_mode}};
b63e9950
WC
1594 }
1595 elsif ($arg ne "--") {
1596 die "invalid argument $arg, expecting --";
1597 }
1598}
1599
5cde71d6
JH
1600sub main_loop {
1601 my @cmd = ([ 'status', \&status_cmd, ],
1602 [ 'update', \&update_cmd, ],
1603 [ 'revert', \&revert_cmd, ],
1604 [ 'add untracked', \&add_untracked_cmd, ],
1605 [ 'patch', \&patch_update_cmd, ],
1606 [ 'diff', \&diff_cmd, ],
1607 [ 'quit', \&quit_cmd, ],
1608 [ 'help', \&help_cmd, ],
1609 );
1610 while (1) {
1611 my ($it) = list_and_choose({ PROMPT => 'What now',
1612 SINGLETON => 1,
1613 LIST_FLAT => 4,
1614 HEADER => '*** Commands ***',
c95c0248 1615 ON_EOF => \&quit_cmd,
5cde71d6
JH
1616 IMMEDIATE => 1 }, @cmd);
1617 if ($it) {
1618 eval {
1619 $it->[1]->();
1620 };
1621 if ($@) {
1622 print "$@";
1623 }
1624 }
1625 }
1626}
1627
b63e9950 1628process_args();
5cde71d6 1629refresh();
b63e9950
WC
1630if ($patch_mode) {
1631 patch_update_cmd();
1632}
1633else {
1634 status_cmd();
1635 main_loop();
1636}