]> git.ipfire.org Git - thirdparty/git.git/blame - git-add--interactive.perl
Add / command in add --patch
[thirdparty/git.git] / git-add--interactive.perl
CommitLineData
5cde71d6
JH
1#!/usr/bin/perl -w
2
3use strict;
b4c61ed6
JH
4use Git;
5
b4c61ed6
JH
6my $repo = Git->repository();
7
f87e310d
JK
8my $menu_use_color = $repo->get_colorbool('color.interactive');
9my ($prompt_color, $header_color, $help_color) =
10 $menu_use_color ? (
11 $repo->get_color('color.interactive.prompt', 'bold blue'),
12 $repo->get_color('color.interactive.header', 'bold'),
13 $repo->get_color('color.interactive.help', 'red bold'),
14 ) : ();
b4c61ed6 15
f87e310d
JK
16my $diff_use_color = $repo->get_colorbool('color.diff');
17my ($fraginfo_color) =
18 $diff_use_color ? (
19 $repo->get_color('color.diff.frag', 'cyan'),
20 ) : ();
ac083c47
TR
21my ($diff_plain_color) =
22 $diff_use_color ? (
23 $repo->get_color('color.diff.plain', ''),
24 ) : ();
25my ($diff_old_color) =
26 $diff_use_color ? (
27 $repo->get_color('color.diff.old', 'red'),
28 ) : ();
29my ($diff_new_color) =
30 $diff_use_color ? (
31 $repo->get_color('color.diff.new', 'green'),
32 ) : ();
b4c61ed6 33
f87e310d 34my $normal_color = $repo->get_color("", "reset");
b4c61ed6
JH
35
36sub colored {
37 my $color = shift;
38 my $string = join("", @_);
39
f87e310d 40 if (defined $color) {
b4c61ed6
JH
41 # Put a color code at the beginning of each line, a reset at the end
42 # color after newlines that are not at the end of the string
43 $string =~ s/(\n+)(.)/$1$color$2/g;
44 # reset before newlines
45 $string =~ s/(\n+)/$normal_color$1/g;
46 # codes at beginning and end (if necessary):
47 $string =~ s/^/$color/;
48 $string =~ s/$/$normal_color/ unless $string =~ /\n$/;
49 }
50 return $string;
51}
5cde71d6 52
b63e9950
WC
53# command line options
54my $patch_mode;
55
5cde71d6 56sub run_cmd_pipe {
fdfd2008 57 if ($^O eq 'MSWin32' || $^O eq 'msys') {
21e9757e
AR
58 my @invalid = grep {m/[":*]/} @_;
59 die "$^O does not support: @invalid\n" if @invalid;
60 my @args = map { m/ /o ? "\"$_\"": $_ } @_;
61 return qx{@args};
62 } else {
63 my $fh = undef;
64 open($fh, '-|', @_) or die;
65 return <$fh>;
66 }
5cde71d6
JH
67}
68
69my ($GIT_DIR) = run_cmd_pipe(qw(git rev-parse --git-dir));
70
71if (!defined $GIT_DIR) {
72 exit(1); # rev-parse would have already said "not a git repo"
73}
74chomp($GIT_DIR);
75
76sub refresh {
77 my $fh;
21e9757e 78 open $fh, 'git update-index --refresh |'
5cde71d6
JH
79 or die;
80 while (<$fh>) {
81 ;# ignore 'needs update'
82 }
83 close $fh;
84}
85
86sub list_untracked {
87 map {
88 chomp $_;
89 $_;
90 }
4c841684 91 run_cmd_pipe(qw(git ls-files --others --exclude-standard --), @ARGV);
5cde71d6
JH
92}
93
94my $status_fmt = '%12s %12s %s';
95my $status_head = sprintf($status_fmt, 'staged', 'unstaged', 'path');
96
18bc7616
JK
97{
98 my $initial;
99 sub is_initial_commit {
100 $initial = system('git rev-parse HEAD -- >/dev/null 2>&1') != 0
101 unless defined $initial;
102 return $initial;
103 }
104}
105
106sub get_empty_tree {
107 return '4b825dc642cb6eb9a060e54bf8d69288fbee4904';
108}
109
5cde71d6 110# Returns list of hashes, contents of each of which are:
5cde71d6
JH
111# VALUE: pathname
112# BINARY: is a binary path
113# INDEX: is index different from HEAD?
114# FILE: is file different from index?
115# INDEX_ADDDEL: is it add/delete between HEAD and index?
116# FILE_ADDDEL: is it add/delete between index and file?
117
118sub list_modified {
119 my ($only) = @_;
120 my (%data, @return);
121 my ($add, $del, $adddel, $file);
4c841684
WC
122 my @tracked = ();
123
124 if (@ARGV) {
125 @tracked = map {
126 chomp $_; $_;
127 } run_cmd_pipe(qw(git ls-files --exclude-standard --), @ARGV);
128 return if (!@tracked);
129 }
5cde71d6 130
18bc7616 131 my $reference = is_initial_commit() ? get_empty_tree() : 'HEAD';
5cde71d6 132 for (run_cmd_pipe(qw(git diff-index --cached
18bc7616
JK
133 --numstat --summary), $reference,
134 '--', @tracked)) {
5cde71d6
JH
135 if (($add, $del, $file) =
136 /^([-\d]+) ([-\d]+) (.*)/) {
137 my ($change, $bin);
138 if ($add eq '-' && $del eq '-') {
139 $change = 'binary';
140 $bin = 1;
141 }
142 else {
143 $change = "+$add/-$del";
144 }
145 $data{$file} = {
146 INDEX => $change,
147 BINARY => $bin,
148 FILE => 'nothing',
149 }
150 }
151 elsif (($adddel, $file) =
152 /^ (create|delete) mode [0-7]+ (.*)$/) {
153 $data{$file}{INDEX_ADDDEL} = $adddel;
154 }
155 }
156
4c841684 157 for (run_cmd_pipe(qw(git diff-files --numstat --summary --), @tracked)) {
5cde71d6
JH
158 if (($add, $del, $file) =
159 /^([-\d]+) ([-\d]+) (.*)/) {
160 if (!exists $data{$file}) {
161 $data{$file} = +{
162 INDEX => 'unchanged',
163 BINARY => 0,
164 };
165 }
166 my ($change, $bin);
167 if ($add eq '-' && $del eq '-') {
168 $change = 'binary';
169 $bin = 1;
170 }
171 else {
172 $change = "+$add/-$del";
173 }
174 $data{$file}{FILE} = $change;
175 if ($bin) {
176 $data{$file}{BINARY} = 1;
177 }
178 }
179 elsif (($adddel, $file) =
180 /^ (create|delete) mode [0-7]+ (.*)$/) {
181 $data{$file}{FILE_ADDDEL} = $adddel;
182 }
183 }
184
185 for (sort keys %data) {
186 my $it = $data{$_};
187
188 if ($only) {
189 if ($only eq 'index-only') {
190 next if ($it->{INDEX} eq 'unchanged');
191 }
192 if ($only eq 'file-only') {
193 next if ($it->{FILE} eq 'nothing');
194 }
195 }
196 push @return, +{
197 VALUE => $_,
5cde71d6
JH
198 %$it,
199 };
200 }
201 return @return;
202}
203
204sub find_unique {
205 my ($string, @stuff) = @_;
206 my $found = undef;
207 for (my $i = 0; $i < @stuff; $i++) {
208 my $it = $stuff[$i];
209 my $hit = undef;
210 if (ref $it) {
211 if ((ref $it) eq 'ARRAY') {
212 $it = $it->[0];
213 }
214 else {
215 $it = $it->{VALUE};
216 }
217 }
218 eval {
219 if ($it =~ /^$string/) {
220 $hit = 1;
221 };
222 };
223 if (defined $hit && defined $found) {
224 return undef;
225 }
226 if ($hit) {
227 $found = $i + 1;
228 }
229 }
230 return $found;
231}
232
14cb5038
WC
233# inserts string into trie and updates count for each character
234sub update_trie {
235 my ($trie, $string) = @_;
236 foreach (split //, $string) {
237 $trie = $trie->{$_} ||= {COUNT => 0};
238 $trie->{COUNT}++;
239 }
240}
241
242# returns an array of tuples (prefix, remainder)
243sub find_unique_prefixes {
244 my @stuff = @_;
245 my @return = ();
246
247 # any single prefix exceeding the soft limit is omitted
248 # if any prefix exceeds the hard limit all are omitted
249 # 0 indicates no limit
250 my $soft_limit = 0;
251 my $hard_limit = 3;
252
253 # build a trie modelling all possible options
254 my %trie;
255 foreach my $print (@stuff) {
256 if ((ref $print) eq 'ARRAY') {
257 $print = $print->[0];
258 }
63320989 259 elsif ((ref $print) eq 'HASH') {
14cb5038
WC
260 $print = $print->{VALUE};
261 }
262 update_trie(\%trie, $print);
263 push @return, $print;
264 }
265
266 # use the trie to find the unique prefixes
267 for (my $i = 0; $i < @return; $i++) {
268 my $ret = $return[$i];
269 my @letters = split //, $ret;
270 my %search = %trie;
271 my ($prefix, $remainder);
272 my $j;
273 for ($j = 0; $j < @letters; $j++) {
274 my $letter = $letters[$j];
275 if ($search{$letter}{COUNT} == 1) {
276 $prefix = substr $ret, 0, $j + 1;
277 $remainder = substr $ret, $j + 1;
278 last;
279 }
280 else {
281 my $prefix = substr $ret, 0, $j;
282 return ()
283 if ($hard_limit && $j + 1 > $hard_limit);
284 }
285 %search = %{$search{$letter}};
286 }
287 if ($soft_limit && $j + 1 > $soft_limit) {
288 $prefix = undef;
289 $remainder = $ret;
290 }
291 $return[$i] = [$prefix, $remainder];
292 }
293 return @return;
294}
295
63320989
WC
296# filters out prefixes which have special meaning to list_and_choose()
297sub is_valid_prefix {
298 my $prefix = shift;
299 return (defined $prefix) &&
300 !($prefix =~ /[\s,]/) && # separators
301 !($prefix =~ /^-/) && # deselection
302 !($prefix =~ /^\d+/) && # selection
7e018be2
WC
303 ($prefix ne '*') && # "all" wildcard
304 ($prefix ne '?'); # prompt help
63320989
WC
305}
306
14cb5038
WC
307# given a prefix/remainder tuple return a string with the prefix highlighted
308# for now use square brackets; later might use ANSI colors (underline, bold)
309sub highlight_prefix {
310 my $prefix = shift;
311 my $remainder = shift;
b4c61ed6
JH
312
313 if (!defined $prefix) {
314 return $remainder;
315 }
316
317 if (!is_valid_prefix($prefix)) {
318 return "$prefix$remainder";
319 }
320
f87e310d 321 if (!$menu_use_color) {
b4c61ed6
JH
322 return "[$prefix]$remainder";
323 }
324
325 return "$prompt_color$prefix$normal_color$remainder";
14cb5038
WC
326}
327
5cde71d6
JH
328sub list_and_choose {
329 my ($opts, @stuff) = @_;
330 my (@chosen, @return);
331 my $i;
14cb5038 332 my @prefixes = find_unique_prefixes(@stuff) unless $opts->{LIST_ONLY};
5cde71d6
JH
333
334 TOPLOOP:
335 while (1) {
336 my $last_lf = 0;
337
338 if ($opts->{HEADER}) {
339 if (!$opts->{LIST_FLAT}) {
340 print " ";
341 }
b4c61ed6 342 print colored $header_color, "$opts->{HEADER}\n";
5cde71d6
JH
343 }
344 for ($i = 0; $i < @stuff; $i++) {
345 my $chosen = $chosen[$i] ? '*' : ' ';
346 my $print = $stuff[$i];
63320989
WC
347 my $ref = ref $print;
348 my $highlighted = highlight_prefix(@{$prefixes[$i]})
349 if @prefixes;
350 if ($ref eq 'ARRAY') {
351 $print = $highlighted || $print->[0];
352 }
353 elsif ($ref eq 'HASH') {
354 my $value = $highlighted || $print->{VALUE};
355 $print = sprintf($status_fmt,
356 $print->{INDEX},
357 $print->{FILE},
358 $value);
359 }
360 else {
361 $print = $highlighted || $print;
5cde71d6
JH
362 }
363 printf("%s%2d: %s", $chosen, $i+1, $print);
364 if (($opts->{LIST_FLAT}) &&
365 (($i + 1) % ($opts->{LIST_FLAT}))) {
366 print "\t";
367 $last_lf = 0;
368 }
369 else {
370 print "\n";
371 $last_lf = 1;
372 }
373 }
374 if (!$last_lf) {
375 print "\n";
376 }
377
378 return if ($opts->{LIST_ONLY});
379
b4c61ed6 380 print colored $prompt_color, $opts->{PROMPT};
5cde71d6
JH
381 if ($opts->{SINGLETON}) {
382 print "> ";
383 }
384 else {
385 print ">> ";
386 }
387 my $line = <STDIN>;
c95c0248
JLH
388 if (!$line) {
389 print "\n";
390 $opts->{ON_EOF}->() if $opts->{ON_EOF};
391 last;
392 }
5cde71d6 393 chomp $line;
6a6eb3d0 394 last if $line eq '';
7e018be2
WC
395 if ($line eq '?') {
396 $opts->{SINGLETON} ?
397 singleton_prompt_help_cmd() :
398 prompt_help_cmd();
399 next TOPLOOP;
400 }
5cde71d6
JH
401 for my $choice (split(/[\s,]+/, $line)) {
402 my $choose = 1;
403 my ($bottom, $top);
404
405 # Input that begins with '-'; unchoose
406 if ($choice =~ s/^-//) {
407 $choose = 0;
408 }
1e5aaa6d
CM
409 # A range can be specified like 5-7 or 5-.
410 if ($choice =~ /^(\d+)-(\d*)$/) {
411 ($bottom, $top) = ($1, length($2) ? $2 : 1 + @stuff);
5cde71d6
JH
412 }
413 elsif ($choice =~ /^\d+$/) {
414 $bottom = $top = $choice;
415 }
416 elsif ($choice eq '*') {
417 $bottom = 1;
418 $top = 1 + @stuff;
419 }
420 else {
421 $bottom = $top = find_unique($choice, @stuff);
422 if (!defined $bottom) {
423 print "Huh ($choice)?\n";
424 next TOPLOOP;
425 }
426 }
427 if ($opts->{SINGLETON} && $bottom != $top) {
428 print "Huh ($choice)?\n";
429 next TOPLOOP;
430 }
431 for ($i = $bottom-1; $i <= $top-1; $i++) {
6a6eb3d0 432 next if (@stuff <= $i || $i < 0);
5cde71d6 433 $chosen[$i] = $choose;
5cde71d6
JH
434 }
435 }
12db334e 436 last if ($opts->{IMMEDIATE} || $line eq '*');
5cde71d6
JH
437 }
438 for ($i = 0; $i < @stuff; $i++) {
439 if ($chosen[$i]) {
440 push @return, $stuff[$i];
441 }
442 }
443 return @return;
444}
445
7e018be2 446sub singleton_prompt_help_cmd {
b4c61ed6 447 print colored $help_color, <<\EOF ;
7e018be2
WC
448Prompt help:
4491 - select a numbered item
450foo - select item based on unique prefix
451 - (empty) select nothing
452EOF
453}
454
455sub prompt_help_cmd {
b4c61ed6 456 print colored $help_color, <<\EOF ;
7e018be2
WC
457Prompt help:
4581 - select a single item
4593-5 - select a range of items
4602-3,6-9 - select multiple ranges
461foo - select item based on unique prefix
462-... - unselect specified items
463* - choose all items
464 - (empty) finish selecting
465EOF
466}
467
5cde71d6
JH
468sub status_cmd {
469 list_and_choose({ LIST_ONLY => 1, HEADER => $status_head },
470 list_modified());
471 print "\n";
472}
473
474sub say_n_paths {
475 my $did = shift @_;
476 my $cnt = scalar @_;
477 print "$did ";
478 if (1 < $cnt) {
479 print "$cnt paths\n";
480 }
481 else {
482 print "one path\n";
483 }
484}
485
486sub update_cmd {
487 my @mods = list_modified('file-only');
488 return if (!@mods);
489
490 my @update = list_and_choose({ PROMPT => 'Update',
491 HEADER => $status_head, },
492 @mods);
493 if (@update) {
a4f7112f 494 system(qw(git update-index --add --remove --),
5cde71d6
JH
495 map { $_->{VALUE} } @update);
496 say_n_paths('updated', @update);
497 }
498 print "\n";
499}
500
501sub revert_cmd {
502 my @update = list_and_choose({ PROMPT => 'Revert',
503 HEADER => $status_head, },
504 list_modified());
505 if (@update) {
18bc7616
JK
506 if (is_initial_commit()) {
507 system(qw(git rm --cached),
508 map { $_->{VALUE} } @update);
5cde71d6 509 }
18bc7616
JK
510 else {
511 my @lines = run_cmd_pipe(qw(git ls-tree HEAD --),
512 map { $_->{VALUE} } @update);
513 my $fh;
514 open $fh, '| git update-index --index-info'
515 or die;
516 for (@lines) {
517 print $fh $_;
518 }
519 close($fh);
520 for (@update) {
521 if ($_->{INDEX_ADDDEL} &&
522 $_->{INDEX_ADDDEL} eq 'create') {
523 system(qw(git update-index --force-remove --),
524 $_->{VALUE});
525 print "note: $_->{VALUE} is untracked now.\n";
526 }
5cde71d6
JH
527 }
528 }
529 refresh();
530 say_n_paths('reverted', @update);
531 }
532 print "\n";
533}
534
535sub add_untracked_cmd {
536 my @add = list_and_choose({ PROMPT => 'Add untracked' },
537 list_untracked());
538 if (@add) {
539 system(qw(git update-index --add --), @add);
540 say_n_paths('added', @add);
541 }
542 print "\n";
543}
544
545sub parse_diff {
546 my ($path) = @_;
547 my @diff = run_cmd_pipe(qw(git diff-files -p --), $path);
4af756f3
WC
548 my @colored = ();
549 if ($diff_use_color) {
550 @colored = run_cmd_pipe(qw(git diff-files -p --color --), $path);
5cde71d6 551 }
4af756f3 552 my (@hunk) = { TEXT => [], DISPLAY => [] };
b4c61ed6 553
4af756f3
WC
554 for (my $i = 0; $i < @diff; $i++) {
555 if ($diff[$i] =~ /^@@ /) {
556 push @hunk, { TEXT => [], DISPLAY => [] };
b4c61ed6 557 }
4af756f3
WC
558 push @{$hunk[-1]{TEXT}}, $diff[$i];
559 push @{$hunk[-1]{DISPLAY}},
560 ($diff_use_color ? $colored[$i] : $diff[$i]);
b4c61ed6 561 }
4af756f3 562 return @hunk;
b4c61ed6
JH
563}
564
b717a627
JK
565sub parse_diff_header {
566 my $src = shift;
567
568 my $head = { TEXT => [], DISPLAY => [] };
569 my $mode = { TEXT => [], DISPLAY => [] };
570
571 for (my $i = 0; $i < @{$src->{TEXT}}; $i++) {
572 my $dest = $src->{TEXT}->[$i] =~ /^(old|new) mode (\d+)$/ ?
573 $mode : $head;
574 push @{$dest->{TEXT}}, $src->{TEXT}->[$i];
575 push @{$dest->{DISPLAY}}, $src->{DISPLAY}->[$i];
576 }
577 return ($head, $mode);
578}
579
835b2aeb
JH
580sub hunk_splittable {
581 my ($text) = @_;
582
583 my @s = split_hunk($text);
584 return (1 < @s);
585}
586
587sub parse_hunk_header {
588 my ($line) = @_;
589 my ($o_ofs, $o_cnt, $n_ofs, $n_cnt) =
7288ed8e
JLH
590 $line =~ /^@@ -(\d+)(?:,(\d+))? \+(\d+)(?:,(\d+))? @@/;
591 $o_cnt = 1 unless defined $o_cnt;
592 $n_cnt = 1 unless defined $n_cnt;
835b2aeb
JH
593 return ($o_ofs, $o_cnt, $n_ofs, $n_cnt);
594}
595
596sub split_hunk {
4af756f3 597 my ($text, $display) = @_;
835b2aeb 598 my @split = ();
4af756f3
WC
599 if (!defined $display) {
600 $display = $text;
601 }
835b2aeb
JH
602 # If there are context lines in the middle of a hunk,
603 # it can be split, but we would need to take care of
604 # overlaps later.
605
7b40a455 606 my ($o_ofs, undef, $n_ofs) = parse_hunk_header($text->[0]);
835b2aeb 607 my $hunk_start = 1;
835b2aeb
JH
608
609 OUTER:
610 while (1) {
611 my $next_hunk_start = undef;
612 my $i = $hunk_start - 1;
613 my $this = +{
614 TEXT => [],
4af756f3 615 DISPLAY => [],
835b2aeb
JH
616 OLD => $o_ofs,
617 NEW => $n_ofs,
618 OCNT => 0,
619 NCNT => 0,
620 ADDDEL => 0,
621 POSTCTX => 0,
4af756f3 622 USE => undef,
835b2aeb
JH
623 };
624
625 while (++$i < @$text) {
626 my $line = $text->[$i];
4af756f3 627 my $display = $display->[$i];
835b2aeb
JH
628 if ($line =~ /^ /) {
629 if ($this->{ADDDEL} &&
630 !defined $next_hunk_start) {
631 # We have seen leading context and
632 # adds/dels and then here is another
633 # context, which is trailing for this
634 # split hunk and leading for the next
635 # one.
636 $next_hunk_start = $i;
637 }
638 push @{$this->{TEXT}}, $line;
4af756f3 639 push @{$this->{DISPLAY}}, $display;
835b2aeb
JH
640 $this->{OCNT}++;
641 $this->{NCNT}++;
642 if (defined $next_hunk_start) {
643 $this->{POSTCTX}++;
644 }
645 next;
646 }
647
648 # add/del
649 if (defined $next_hunk_start) {
650 # We are done with the current hunk and
651 # this is the first real change for the
652 # next split one.
653 $hunk_start = $next_hunk_start;
654 $o_ofs = $this->{OLD} + $this->{OCNT};
655 $n_ofs = $this->{NEW} + $this->{NCNT};
656 $o_ofs -= $this->{POSTCTX};
657 $n_ofs -= $this->{POSTCTX};
658 push @split, $this;
659 redo OUTER;
660 }
661 push @{$this->{TEXT}}, $line;
4af756f3 662 push @{$this->{DISPLAY}}, $display;
835b2aeb
JH
663 $this->{ADDDEL}++;
664 if ($line =~ /^-/) {
665 $this->{OCNT}++;
666 }
667 else {
668 $this->{NCNT}++;
669 }
670 }
671
672 push @split, $this;
673 last;
674 }
675
676 for my $hunk (@split) {
677 $o_ofs = $hunk->{OLD};
678 $n_ofs = $hunk->{NEW};
7b40a455
JLH
679 my $o_cnt = $hunk->{OCNT};
680 my $n_cnt = $hunk->{NCNT};
835b2aeb
JH
681
682 my $head = ("@@ -$o_ofs" .
683 (($o_cnt != 1) ? ",$o_cnt" : '') .
684 " +$n_ofs" .
685 (($n_cnt != 1) ? ",$n_cnt" : '') .
686 " @@\n");
4af756f3 687 my $display_head = $head;
835b2aeb 688 unshift @{$hunk->{TEXT}}, $head;
4af756f3
WC
689 if ($diff_use_color) {
690 $display_head = colored($fraginfo_color, $head);
691 }
692 unshift @{$hunk->{DISPLAY}}, $display_head;
835b2aeb 693 }
4af756f3 694 return @split;
835b2aeb
JH
695}
696
835b2aeb 697
ac083c47
TR
698sub color_diff {
699 return map {
700 colored((/^@/ ? $fraginfo_color :
701 /^\+/ ? $diff_new_color :
702 /^-/ ? $diff_old_color :
703 $diff_plain_color),
704 $_);
705 } @_;
706}
707
708sub edit_hunk_manually {
709 my ($oldtext) = @_;
710
711 my $hunkfile = $repo->repo_path . "/addp-hunk-edit.diff";
712 my $fh;
713 open $fh, '>', $hunkfile
714 or die "failed to open hunk edit file for writing: " . $!;
715 print $fh "# Manual hunk edit mode -- see bottom for a quick guide\n";
716 print $fh @$oldtext;
717 print $fh <<EOF;
718# ---
719# To remove '-' lines, make them ' ' lines (context).
720# To remove '+' lines, delete them.
721# Lines starting with # will be removed.
722#
723# If the patch applies cleanly, the edited hunk will immediately be
724# marked for staging. If it does not apply cleanly, you will be given
725# an opportunity to edit again. If all lines of the hunk are removed,
726# then the edit is aborted and the hunk is left unchanged.
727EOF
728 close $fh;
729
730 my $editor = $ENV{GIT_EDITOR} || $repo->config("core.editor")
731 || $ENV{VISUAL} || $ENV{EDITOR} || "vi";
732 system('sh', '-c', $editor.' "$@"', $editor, $hunkfile);
733
734 open $fh, '<', $hunkfile
735 or die "failed to open hunk edit file for reading: " . $!;
736 my @newtext = grep { !/^#/ } <$fh>;
737 close $fh;
738 unlink $hunkfile;
739
740 # Abort if nothing remains
741 if (!grep { /\S/ } @newtext) {
742 return undef;
743 }
744
745 # Reinsert the first hunk header if the user accidentally deleted it
746 if ($newtext[0] !~ /^@/) {
747 unshift @newtext, $oldtext->[0];
748 }
749 return \@newtext;
750}
751
752sub diff_applies {
753 my $fh;
754 open $fh, '| git apply --recount --cached --check';
755 for my $h (@_) {
756 print $fh @{$h->{TEXT}};
757 }
758 return close $fh;
759}
760
761sub prompt_yesno {
762 my ($prompt) = @_;
763 while (1) {
764 print colored $prompt_color, $prompt;
765 my $line = <STDIN>;
766 return 0 if $line =~ /^n/i;
767 return 1 if $line =~ /^y/i;
768 }
769}
770
771sub edit_hunk_loop {
772 my ($head, $hunk, $ix) = @_;
773 my $text = $hunk->[$ix]->{TEXT};
774
775 while (1) {
776 $text = edit_hunk_manually($text);
777 if (!defined $text) {
778 return undef;
779 }
780 my $newhunk = { TEXT => $text, USE => 1 };
781 if (diff_applies($head,
782 @{$hunk}[0..$ix-1],
783 $newhunk,
784 @{$hunk}[$ix+1..$#{$hunk}])) {
785 $newhunk->{DISPLAY} = [color_diff(@{$text})];
786 return $newhunk;
787 }
788 else {
789 prompt_yesno(
790 'Your edited hunk does not apply. Edit again '
791 . '(saying "no" discards!) [y/n]? '
792 ) or return undef;
793 }
794 }
795}
796
5cde71d6 797sub help_patch_cmd {
b4c61ed6 798 print colored $help_color, <<\EOF ;
5cde71d6
JH
799y - stage this hunk
800n - do not stage this hunk
b63e9950
WC
801a - stage this and all the remaining hunks in the file
802d - do not stage this hunk nor any of the remaining hunks in the file
070434d0 803g - select a hunk to go to
dd971cc9 804/ - search for a hunk matching the given regex
5cde71d6
JH
805j - leave this hunk undecided, see next undecided hunk
806J - leave this hunk undecided, see next hunk
807k - leave this hunk undecided, see previous undecided hunk
808K - leave this hunk undecided, see previous hunk
835b2aeb 809s - split the current hunk into smaller hunks
ac083c47 810e - manually edit the current hunk
280e50c7 811? - print help
5cde71d6
JH
812EOF
813}
814
815sub patch_update_cmd {
9fe7a643
TR
816 my @all_mods = list_modified('file-only');
817 my @mods = grep { !($_->{BINARY}) } @all_mods;
b63e9950 818 my @them;
5cde71d6 819
b63e9950 820 if (!@mods) {
9fe7a643
TR
821 if (@all_mods) {
822 print STDERR "Only binary files changed.\n";
823 } else {
824 print STDERR "No changes.\n";
825 }
b63e9950
WC
826 return 0;
827 }
828 if ($patch_mode) {
829 @them = @mods;
830 }
831 else {
832 @them = list_and_choose({ PROMPT => 'Patch update',
833 HEADER => $status_head, },
834 @mods);
835 }
12db334e
JH
836 for (@them) {
837 patch_update_file($_->{VALUE});
838 }
a7d9da6c 839}
5cde71d6 840
3f6aff68
WP
841# Generate a one line summary of a hunk.
842sub summarize_hunk {
843 my $rhunk = shift;
844 my $summary = $rhunk->{TEXT}[0];
845
846 # Keep the line numbers, discard extra context.
847 $summary =~ s/@@(.*?)@@.*/$1 /s;
848 $summary .= " " x (20 - length $summary);
849
850 # Add some user context.
851 for my $line (@{$rhunk->{TEXT}}) {
852 if ($line =~ m/^[+-].*\w/) {
853 $summary .= $line;
854 last;
855 }
856 }
857
858 chomp $summary;
859 return substr($summary, 0, 80) . "\n";
860}
861
862
863# Print a one-line summary of each hunk in the array ref in
864# the first argument, starting wih the index in the 2nd.
865sub display_hunks {
866 my ($hunks, $i) = @_;
867 my $ctr = 0;
868 $i ||= 0;
869 for (; $i < @$hunks && $ctr < 20; $i++, $ctr++) {
870 my $status = " ";
871 if (defined $hunks->[$i]{USE}) {
872 $status = $hunks->[$i]{USE} ? "+" : "-";
873 }
874 printf "%s%2d: %s",
875 $status,
876 $i + 1,
877 summarize_hunk($hunks->[$i]);
878 }
879 return $i;
880}
881
a7d9da6c 882sub patch_update_file {
5cde71d6 883 my ($ix, $num);
a7d9da6c 884 my $path = shift;
5cde71d6 885 my ($head, @hunk) = parse_diff($path);
b717a627 886 ($head, my $mode) = parse_diff_header($head);
4af756f3
WC
887 for (@{$head->{DISPLAY}}) {
888 print;
889 }
ca724686
JK
890
891 if (@{$mode->{TEXT}}) {
892 while (1) {
893 print @{$mode->{DISPLAY}};
894 print colored $prompt_color,
895 "Stage mode change [y/n/a/d/?]? ";
896 my $line = <STDIN>;
897 if ($line =~ /^y/i) {
898 $mode->{USE} = 1;
899 last;
900 }
901 elsif ($line =~ /^n/i) {
902 $mode->{USE} = 0;
903 last;
904 }
905 elsif ($line =~ /^a/i) {
906 $_->{USE} = 1 foreach ($mode, @hunk);
907 last;
908 }
909 elsif ($line =~ /^d/i) {
910 $_->{USE} = 0 foreach ($mode, @hunk);
911 last;
912 }
913 else {
914 help_patch_cmd('');
915 next;
916 }
917 }
918 }
919
5cde71d6
JH
920 $num = scalar @hunk;
921 $ix = 0;
922
923 while (1) {
835b2aeb 924 my ($prev, $next, $other, $undecided, $i);
5cde71d6
JH
925 $other = '';
926
927 if ($num <= $ix) {
928 $ix = 0;
929 }
835b2aeb 930 for ($i = 0; $i < $ix; $i++) {
5cde71d6
JH
931 if (!defined $hunk[$i]{USE}) {
932 $prev = 1;
57886bc7 933 $other .= ',k';
5cde71d6
JH
934 last;
935 }
936 }
937 if ($ix) {
57886bc7 938 $other .= ',K';
5cde71d6 939 }
835b2aeb 940 for ($i = $ix + 1; $i < $num; $i++) {
5cde71d6
JH
941 if (!defined $hunk[$i]{USE}) {
942 $next = 1;
57886bc7 943 $other .= ',j';
5cde71d6
JH
944 last;
945 }
946 }
947 if ($ix < $num - 1) {
57886bc7 948 $other .= ',J';
5cde71d6 949 }
070434d0
WP
950 if ($num > 1) {
951 $other .= '/g';
952 }
835b2aeb 953 for ($i = 0; $i < $num; $i++) {
5cde71d6
JH
954 if (!defined $hunk[$i]{USE}) {
955 $undecided = 1;
956 last;
957 }
958 }
959 last if (!$undecided);
960
835b2aeb 961 if (hunk_splittable($hunk[$ix]{TEXT})) {
57886bc7 962 $other .= ',s';
835b2aeb 963 }
57886bc7 964 $other .= ',e';
4af756f3
WC
965 for (@{$hunk[$ix]{DISPLAY}}) {
966 print;
967 }
dd971cc9 968 print colored $prompt_color, "Stage this hunk [y,n,a,d,/$other,?]? ";
5cde71d6
JH
969 my $line = <STDIN>;
970 if ($line) {
971 if ($line =~ /^y/i) {
972 $hunk[$ix]{USE} = 1;
973 }
974 elsif ($line =~ /^n/i) {
975 $hunk[$ix]{USE} = 0;
976 }
977 elsif ($line =~ /^a/i) {
978 while ($ix < $num) {
979 if (!defined $hunk[$ix]{USE}) {
980 $hunk[$ix]{USE} = 1;
981 }
982 $ix++;
983 }
984 next;
985 }
070434d0
WP
986 elsif ($other =~ /g/ && $line =~ /^g(.*)/) {
987 my $response = $1;
988 my $no = $ix > 10 ? $ix - 10 : 0;
989 while ($response eq '') {
990 my $extra = "";
991 $no = display_hunks(\@hunk, $no);
992 if ($no < $num) {
993 $extra = " (<ret> to see more)";
994 }
995 print "go to which hunk$extra? ";
996 $response = <STDIN>;
997 chomp $response;
998 }
999 if ($response !~ /^\s*\d+\s*$/) {
1000 print STDERR "Invalid number: '$response'\n";
1001 } elsif (0 < $response && $response <= $num) {
1002 $ix = $response - 1;
1003 } else {
1004 print STDERR "Sorry, only $num hunks available.\n";
1005 }
1006 next;
1007 }
5cde71d6
JH
1008 elsif ($line =~ /^d/i) {
1009 while ($ix < $num) {
1010 if (!defined $hunk[$ix]{USE}) {
1011 $hunk[$ix]{USE} = 0;
1012 }
1013 $ix++;
1014 }
1015 next;
1016 }
dd971cc9
WP
1017 elsif ($line =~ m|^/(.*)|) {
1018 my $search_string;
1019 eval {
1020 $search_string = qr{$1}m;
1021 };
1022 if ($@) {
1023 my ($err,$exp) = ($@, $1);
1024 $err =~ s/ at .*git-add--interactive line \d+, <STDIN> line \d+.*$//;
1025 print STDERR "Malformed search regexp $exp: $err\n";
1026 next;
1027 }
1028 my $iy = $ix;
1029 while (1) {
1030 my $text = join ("", @{$hunk[$iy]{TEXT}});
1031 last if ($text =~ $search_string);
1032 $iy++;
1033 $iy = 0 if ($iy >= $num);
1034 if ($ix == $iy) {
1035 print STDERR "No hunk matches the given pattern\n";
1036 last;
1037 }
1038 }
1039 $ix = $iy;
1040 next;
1041 }
5cde71d6
JH
1042 elsif ($other =~ /K/ && $line =~ /^K/) {
1043 $ix--;
1044 next;
1045 }
1046 elsif ($other =~ /J/ && $line =~ /^J/) {
1047 $ix++;
1048 next;
1049 }
1050 elsif ($other =~ /k/ && $line =~ /^k/) {
1051 while (1) {
1052 $ix--;
1053 last if (!$ix ||
1054 !defined $hunk[$ix]{USE});
1055 }
1056 next;
1057 }
1058 elsif ($other =~ /j/ && $line =~ /^j/) {
1059 while (1) {
1060 $ix++;
1061 last if ($ix >= $num ||
1062 !defined $hunk[$ix]{USE});
1063 }
1064 next;
1065 }
835b2aeb 1066 elsif ($other =~ /s/ && $line =~ /^s/) {
4af756f3 1067 my @split = split_hunk($hunk[$ix]{TEXT}, $hunk[$ix]{DISPLAY});
835b2aeb 1068 if (1 < @split) {
b4c61ed6 1069 print colored $header_color, "Split into ",
835b2aeb
JH
1070 scalar(@split), " hunks.\n";
1071 }
4af756f3 1072 splice (@hunk, $ix, 1, @split);
835b2aeb
JH
1073 $num = scalar @hunk;
1074 next;
1075 }
ac083c47
TR
1076 elsif ($line =~ /^e/) {
1077 my $newhunk = edit_hunk_loop($head, \@hunk, $ix);
1078 if (defined $newhunk) {
1079 splice @hunk, $ix, 1, $newhunk;
1080 }
1081 }
5cde71d6
JH
1082 else {
1083 help_patch_cmd($other);
1084 next;
1085 }
1086 # soft increment
1087 while (1) {
1088 $ix++;
1089 last if ($ix >= $num ||
1090 !defined $hunk[$ix]{USE});
1091 }
1092 }
1093 }
1094
7b40a455 1095 my $n_lofs = 0;
5cde71d6 1096 my @result = ();
ca724686
JK
1097 if ($mode->{USE}) {
1098 push @result, @{$mode->{TEXT}};
1099 }
5cde71d6 1100 for (@hunk) {
8cbd4310
TR
1101 if ($_->{USE}) {
1102 push @result, @{$_->{TEXT}};
5cde71d6
JH
1103 }
1104 }
1105
1106 if (@result) {
1107 my $fh;
1108
8cbd4310 1109 open $fh, '| git apply --cached --recount';
5cde71d6
JH
1110 for (@{$head->{TEXT}}, @result) {
1111 print $fh $_;
1112 }
835b2aeb
JH
1113 if (!close $fh) {
1114 for (@{$head->{TEXT}}, @result) {
1115 print STDERR $_;
1116 }
1117 }
5cde71d6
JH
1118 refresh();
1119 }
1120
1121 print "\n";
1122}
1123
1124sub diff_cmd {
1125 my @mods = list_modified('index-only');
1126 @mods = grep { !($_->{BINARY}) } @mods;
1127 return if (!@mods);
1128 my (@them) = list_and_choose({ PROMPT => 'Review diff',
1129 IMMEDIATE => 1,
1130 HEADER => $status_head, },
1131 @mods);
1132 return if (!@them);
18bc7616
JK
1133 my $reference = is_initial_commit() ? get_empty_tree() : 'HEAD';
1134 system(qw(git diff -p --cached), $reference, '--',
1135 map { $_->{VALUE} } @them);
5cde71d6
JH
1136}
1137
1138sub quit_cmd {
1139 print "Bye.\n";
1140 exit(0);
1141}
1142
1143sub help_cmd {
b4c61ed6 1144 print colored $help_color, <<\EOF ;
5cde71d6
JH
1145status - show paths with changes
1146update - add working tree state to the staged set of changes
1147revert - revert staged set of changes back to the HEAD version
1148patch - pick hunks and update selectively
1149diff - view diff between HEAD and index
1150add untracked - add contents of untracked files to the staged set of changes
1151EOF
1152}
1153
b63e9950
WC
1154sub process_args {
1155 return unless @ARGV;
1156 my $arg = shift @ARGV;
1157 if ($arg eq "--patch") {
1158 $patch_mode = 1;
1159 $arg = shift @ARGV or die "missing --";
1160 die "invalid argument $arg, expecting --"
1161 unless $arg eq "--";
1162 }
1163 elsif ($arg ne "--") {
1164 die "invalid argument $arg, expecting --";
1165 }
1166}
1167
5cde71d6
JH
1168sub main_loop {
1169 my @cmd = ([ 'status', \&status_cmd, ],
1170 [ 'update', \&update_cmd, ],
1171 [ 'revert', \&revert_cmd, ],
1172 [ 'add untracked', \&add_untracked_cmd, ],
1173 [ 'patch', \&patch_update_cmd, ],
1174 [ 'diff', \&diff_cmd, ],
1175 [ 'quit', \&quit_cmd, ],
1176 [ 'help', \&help_cmd, ],
1177 );
1178 while (1) {
1179 my ($it) = list_and_choose({ PROMPT => 'What now',
1180 SINGLETON => 1,
1181 LIST_FLAT => 4,
1182 HEADER => '*** Commands ***',
c95c0248 1183 ON_EOF => \&quit_cmd,
5cde71d6
JH
1184 IMMEDIATE => 1 }, @cmd);
1185 if ($it) {
1186 eval {
1187 $it->[1]->();
1188 };
1189 if ($@) {
1190 print "$@";
1191 }
1192 }
1193 }
1194}
1195
b63e9950 1196process_args();
5cde71d6 1197refresh();
b63e9950
WC
1198if ($patch_mode) {
1199 patch_update_cmd();
1200}
1201else {
1202 status_cmd();
1203 main_loop();
1204}