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