Merge branch 'nd/cache-tree-ita'
[git.git] / git-add--interactive.perl
blob642cce1ac6e158207f4273d4e1bf1e7928865b18
1 #!/usr/bin/perl
3 use 5.008;
4 use strict;
5 use warnings;
6 use Git;
8 binmode(STDOUT, ":raw");
10 my $repo = Git->repository();
12 my $menu_use_color = $repo->get_colorbool('color.interactive');
13 my ($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 ) : ();
19 my $error_color = ();
20 if ($menu_use_color) {
21 my $help_color_spec = ($repo->config('color.interactive.help') or
22 'red bold');
23 $error_color = $repo->get_color('color.interactive.error',
24 $help_color_spec);
27 my $diff_use_color = $repo->get_colorbool('color.diff');
28 my ($fraginfo_color) =
29 $diff_use_color ? (
30 $repo->get_color('color.diff.frag', 'cyan'),
31 ) : ();
32 my ($diff_plain_color) =
33 $diff_use_color ? (
34 $repo->get_color('color.diff.plain', ''),
35 ) : ();
36 my ($diff_old_color) =
37 $diff_use_color ? (
38 $repo->get_color('color.diff.old', 'red'),
39 ) : ();
40 my ($diff_new_color) =
41 $diff_use_color ? (
42 $repo->get_color('color.diff.new', 'green'),
43 ) : ();
45 my $normal_color = $repo->get_color("", "reset");
47 my $diff_algorithm = $repo->config('diff.algorithm');
48 my $diff_compaction_heuristic = $repo->config_bool('diff.compactionheuristic');
49 my $diff_filter = $repo->config('interactive.difffilter');
51 my $use_readkey = 0;
52 my $use_termcap = 0;
53 my %term_escapes;
55 sub ReadMode;
56 sub ReadKey;
57 if ($repo->config_bool("interactive.singlekey")) {
58 eval {
59 require Term::ReadKey;
60 Term::ReadKey->import;
61 $use_readkey = 1;
63 if (!$use_readkey) {
64 print STDERR "missing Term::ReadKey, disabling interactive.singlekey\n";
66 eval {
67 require Term::Cap;
68 my $termcap = Term::Cap->Tgetent;
69 foreach (values %$termcap) {
70 $term_escapes{$_} = 1 if /^\e/;
72 $use_termcap = 1;
76 sub colored {
77 my $color = shift;
78 my $string = join("", @_);
80 if (defined $color) {
81 # Put a color code at the beginning of each line, a reset at the end
82 # color after newlines that are not at the end of the string
83 $string =~ s/(\n+)(.)/$1$color$2/g;
84 # reset before newlines
85 $string =~ s/(\n+)/$normal_color$1/g;
86 # codes at beginning and end (if necessary):
87 $string =~ s/^/$color/;
88 $string =~ s/$/$normal_color/ unless $string =~ /\n$/;
90 return $string;
93 # command line options
94 my $patch_mode;
95 my $patch_mode_revision;
97 sub apply_patch;
98 sub apply_patch_for_checkout_commit;
99 sub apply_patch_for_stash;
101 my %patch_modes = (
102 'stage' => {
103 DIFF => 'diff-files -p',
104 APPLY => sub { apply_patch 'apply --cached', @_; },
105 APPLY_CHECK => 'apply --cached',
106 VERB => 'Stage',
107 TARGET => '',
108 PARTICIPLE => 'staging',
109 FILTER => 'file-only',
110 IS_REVERSE => 0,
112 'stash' => {
113 DIFF => 'diff-index -p HEAD',
114 APPLY => sub { apply_patch 'apply --cached', @_; },
115 APPLY_CHECK => 'apply --cached',
116 VERB => 'Stash',
117 TARGET => '',
118 PARTICIPLE => 'stashing',
119 FILTER => undef,
120 IS_REVERSE => 0,
122 'reset_head' => {
123 DIFF => 'diff-index -p --cached',
124 APPLY => sub { apply_patch 'apply -R --cached', @_; },
125 APPLY_CHECK => 'apply -R --cached',
126 VERB => 'Unstage',
127 TARGET => '',
128 PARTICIPLE => 'unstaging',
129 FILTER => 'index-only',
130 IS_REVERSE => 1,
132 'reset_nothead' => {
133 DIFF => 'diff-index -R -p --cached',
134 APPLY => sub { apply_patch 'apply --cached', @_; },
135 APPLY_CHECK => 'apply --cached',
136 VERB => 'Apply',
137 TARGET => ' to index',
138 PARTICIPLE => 'applying',
139 FILTER => 'index-only',
140 IS_REVERSE => 0,
142 'checkout_index' => {
143 DIFF => 'diff-files -p',
144 APPLY => sub { apply_patch 'apply -R', @_; },
145 APPLY_CHECK => 'apply -R',
146 VERB => 'Discard',
147 TARGET => ' from worktree',
148 PARTICIPLE => 'discarding',
149 FILTER => 'file-only',
150 IS_REVERSE => 1,
152 'checkout_head' => {
153 DIFF => 'diff-index -p',
154 APPLY => sub { apply_patch_for_checkout_commit '-R', @_ },
155 APPLY_CHECK => 'apply -R',
156 VERB => 'Discard',
157 TARGET => ' from index and worktree',
158 PARTICIPLE => 'discarding',
159 FILTER => undef,
160 IS_REVERSE => 1,
162 'checkout_nothead' => {
163 DIFF => 'diff-index -R -p',
164 APPLY => sub { apply_patch_for_checkout_commit '', @_ },
165 APPLY_CHECK => 'apply',
166 VERB => 'Apply',
167 TARGET => ' to index and worktree',
168 PARTICIPLE => 'applying',
169 FILTER => undef,
170 IS_REVERSE => 0,
174 my %patch_mode_flavour = %{$patch_modes{stage}};
176 sub run_cmd_pipe {
177 if ($^O eq 'MSWin32') {
178 my @invalid = grep {m/[":*]/} @_;
179 die "$^O does not support: @invalid\n" if @invalid;
180 my @args = map { m/ /o ? "\"$_\"": $_ } @_;
181 return qx{@args};
182 } else {
183 my $fh = undef;
184 open($fh, '-|', @_) or die;
185 return <$fh>;
189 my ($GIT_DIR) = run_cmd_pipe(qw(git rev-parse --git-dir));
191 if (!defined $GIT_DIR) {
192 exit(1); # rev-parse would have already said "not a git repo"
194 chomp($GIT_DIR);
196 my %cquote_map = (
197 "b" => chr(8),
198 "t" => chr(9),
199 "n" => chr(10),
200 "v" => chr(11),
201 "f" => chr(12),
202 "r" => chr(13),
203 "\\" => "\\",
204 "\042" => "\042",
207 sub unquote_path {
208 local ($_) = @_;
209 my ($retval, $remainder);
210 if (!/^\042(.*)\042$/) {
211 return $_;
213 ($_, $retval) = ($1, "");
214 while (/^([^\\]*)\\(.*)$/) {
215 $remainder = $2;
216 $retval .= $1;
217 for ($remainder) {
218 if (/^([0-3][0-7][0-7])(.*)$/) {
219 $retval .= chr(oct($1));
220 $_ = $2;
221 last;
223 if (/^([\\\042btnvfr])(.*)$/) {
224 $retval .= $cquote_map{$1};
225 $_ = $2;
226 last;
228 # This is malformed -- just return it as-is for now.
229 return $_[0];
231 $_ = $remainder;
233 $retval .= $_;
234 return $retval;
237 sub refresh {
238 my $fh;
239 open $fh, 'git update-index --refresh |'
240 or die;
241 while (<$fh>) {
242 ;# ignore 'needs update'
244 close $fh;
247 sub list_untracked {
248 map {
249 chomp $_;
250 unquote_path($_);
252 run_cmd_pipe(qw(git ls-files --others --exclude-standard --), @ARGV);
255 my $status_fmt = '%12s %12s %s';
256 my $status_head = sprintf($status_fmt, 'staged', 'unstaged', 'path');
259 my $initial;
260 sub is_initial_commit {
261 $initial = system('git rev-parse HEAD -- >/dev/null 2>&1') != 0
262 unless defined $initial;
263 return $initial;
267 sub get_empty_tree {
268 return '4b825dc642cb6eb9a060e54bf8d69288fbee4904';
271 sub get_diff_reference {
272 my $ref = shift;
273 if (defined $ref and $ref ne 'HEAD') {
274 return $ref;
275 } elsif (is_initial_commit()) {
276 return get_empty_tree();
277 } else {
278 return 'HEAD';
282 # Returns list of hashes, contents of each of which are:
283 # VALUE: pathname
284 # BINARY: is a binary path
285 # INDEX: is index different from HEAD?
286 # FILE: is file different from index?
287 # INDEX_ADDDEL: is it add/delete between HEAD and index?
288 # FILE_ADDDEL: is it add/delete between index and file?
289 # UNMERGED: is the path unmerged
291 sub list_modified {
292 my ($only) = @_;
293 my (%data, @return);
294 my ($add, $del, $adddel, $file);
295 my @tracked = ();
297 if (@ARGV) {
298 @tracked = map {
299 chomp $_;
300 unquote_path($_);
301 } run_cmd_pipe(qw(git ls-files --), @ARGV);
302 return if (!@tracked);
305 my $reference = get_diff_reference($patch_mode_revision);
306 for (run_cmd_pipe(qw(git diff-index --cached
307 --numstat --summary), $reference,
308 '--', @tracked)) {
309 if (($add, $del, $file) =
310 /^([-\d]+) ([-\d]+) (.*)/) {
311 my ($change, $bin);
312 $file = unquote_path($file);
313 if ($add eq '-' && $del eq '-') {
314 $change = 'binary';
315 $bin = 1;
317 else {
318 $change = "+$add/-$del";
320 $data{$file} = {
321 INDEX => $change,
322 BINARY => $bin,
323 FILE => 'nothing',
326 elsif (($adddel, $file) =
327 /^ (create|delete) mode [0-7]+ (.*)$/) {
328 $file = unquote_path($file);
329 $data{$file}{INDEX_ADDDEL} = $adddel;
333 for (run_cmd_pipe(qw(git diff-files --numstat --summary --raw --), @tracked)) {
334 if (($add, $del, $file) =
335 /^([-\d]+) ([-\d]+) (.*)/) {
336 $file = unquote_path($file);
337 my ($change, $bin);
338 if ($add eq '-' && $del eq '-') {
339 $change = 'binary';
340 $bin = 1;
342 else {
343 $change = "+$add/-$del";
345 $data{$file}{FILE} = $change;
346 if ($bin) {
347 $data{$file}{BINARY} = 1;
350 elsif (($adddel, $file) =
351 /^ (create|delete) mode [0-7]+ (.*)$/) {
352 $file = unquote_path($file);
353 $data{$file}{FILE_ADDDEL} = $adddel;
355 elsif (/^:[0-7]+ [0-7]+ [0-9a-f]+ [0-9a-f]+ (.) (.*)$/) {
356 $file = unquote_path($2);
357 if (!exists $data{$file}) {
358 $data{$file} = +{
359 INDEX => 'unchanged',
360 BINARY => 0,
363 if ($1 eq 'U') {
364 $data{$file}{UNMERGED} = 1;
369 for (sort keys %data) {
370 my $it = $data{$_};
372 if ($only) {
373 if ($only eq 'index-only') {
374 next if ($it->{INDEX} eq 'unchanged');
376 if ($only eq 'file-only') {
377 next if ($it->{FILE} eq 'nothing');
380 push @return, +{
381 VALUE => $_,
382 %$it,
385 return @return;
388 sub find_unique {
389 my ($string, @stuff) = @_;
390 my $found = undef;
391 for (my $i = 0; $i < @stuff; $i++) {
392 my $it = $stuff[$i];
393 my $hit = undef;
394 if (ref $it) {
395 if ((ref $it) eq 'ARRAY') {
396 $it = $it->[0];
398 else {
399 $it = $it->{VALUE};
402 eval {
403 if ($it =~ /^$string/) {
404 $hit = 1;
407 if (defined $hit && defined $found) {
408 return undef;
410 if ($hit) {
411 $found = $i + 1;
414 return $found;
417 # inserts string into trie and updates count for each character
418 sub update_trie {
419 my ($trie, $string) = @_;
420 foreach (split //, $string) {
421 $trie = $trie->{$_} ||= {COUNT => 0};
422 $trie->{COUNT}++;
426 # returns an array of tuples (prefix, remainder)
427 sub find_unique_prefixes {
428 my @stuff = @_;
429 my @return = ();
431 # any single prefix exceeding the soft limit is omitted
432 # if any prefix exceeds the hard limit all are omitted
433 # 0 indicates no limit
434 my $soft_limit = 0;
435 my $hard_limit = 3;
437 # build a trie modelling all possible options
438 my %trie;
439 foreach my $print (@stuff) {
440 if ((ref $print) eq 'ARRAY') {
441 $print = $print->[0];
443 elsif ((ref $print) eq 'HASH') {
444 $print = $print->{VALUE};
446 update_trie(\%trie, $print);
447 push @return, $print;
450 # use the trie to find the unique prefixes
451 for (my $i = 0; $i < @return; $i++) {
452 my $ret = $return[$i];
453 my @letters = split //, $ret;
454 my %search = %trie;
455 my ($prefix, $remainder);
456 my $j;
457 for ($j = 0; $j < @letters; $j++) {
458 my $letter = $letters[$j];
459 if ($search{$letter}{COUNT} == 1) {
460 $prefix = substr $ret, 0, $j + 1;
461 $remainder = substr $ret, $j + 1;
462 last;
464 else {
465 my $prefix = substr $ret, 0, $j;
466 return ()
467 if ($hard_limit && $j + 1 > $hard_limit);
469 %search = %{$search{$letter}};
471 if (ord($letters[0]) > 127 ||
472 ($soft_limit && $j + 1 > $soft_limit)) {
473 $prefix = undef;
474 $remainder = $ret;
476 $return[$i] = [$prefix, $remainder];
478 return @return;
481 # filters out prefixes which have special meaning to list_and_choose()
482 sub is_valid_prefix {
483 my $prefix = shift;
484 return (defined $prefix) &&
485 !($prefix =~ /[\s,]/) && # separators
486 !($prefix =~ /^-/) && # deselection
487 !($prefix =~ /^\d+/) && # selection
488 ($prefix ne '*') && # "all" wildcard
489 ($prefix ne '?'); # prompt help
492 # given a prefix/remainder tuple return a string with the prefix highlighted
493 # for now use square brackets; later might use ANSI colors (underline, bold)
494 sub highlight_prefix {
495 my $prefix = shift;
496 my $remainder = shift;
498 if (!defined $prefix) {
499 return $remainder;
502 if (!is_valid_prefix($prefix)) {
503 return "$prefix$remainder";
506 if (!$menu_use_color) {
507 return "[$prefix]$remainder";
510 return "$prompt_color$prefix$normal_color$remainder";
513 sub error_msg {
514 print STDERR colored $error_color, @_;
517 sub list_and_choose {
518 my ($opts, @stuff) = @_;
519 my (@chosen, @return);
520 if (!@stuff) {
521 return @return;
523 my $i;
524 my @prefixes = find_unique_prefixes(@stuff) unless $opts->{LIST_ONLY};
526 TOPLOOP:
527 while (1) {
528 my $last_lf = 0;
530 if ($opts->{HEADER}) {
531 if (!$opts->{LIST_FLAT}) {
532 print " ";
534 print colored $header_color, "$opts->{HEADER}\n";
536 for ($i = 0; $i < @stuff; $i++) {
537 my $chosen = $chosen[$i] ? '*' : ' ';
538 my $print = $stuff[$i];
539 my $ref = ref $print;
540 my $highlighted = highlight_prefix(@{$prefixes[$i]})
541 if @prefixes;
542 if ($ref eq 'ARRAY') {
543 $print = $highlighted || $print->[0];
545 elsif ($ref eq 'HASH') {
546 my $value = $highlighted || $print->{VALUE};
547 $print = sprintf($status_fmt,
548 $print->{INDEX},
549 $print->{FILE},
550 $value);
552 else {
553 $print = $highlighted || $print;
555 printf("%s%2d: %s", $chosen, $i+1, $print);
556 if (($opts->{LIST_FLAT}) &&
557 (($i + 1) % ($opts->{LIST_FLAT}))) {
558 print "\t";
559 $last_lf = 0;
561 else {
562 print "\n";
563 $last_lf = 1;
566 if (!$last_lf) {
567 print "\n";
570 return if ($opts->{LIST_ONLY});
572 print colored $prompt_color, $opts->{PROMPT};
573 if ($opts->{SINGLETON}) {
574 print "> ";
576 else {
577 print ">> ";
579 my $line = <STDIN>;
580 if (!$line) {
581 print "\n";
582 $opts->{ON_EOF}->() if $opts->{ON_EOF};
583 last;
585 chomp $line;
586 last if $line eq '';
587 if ($line eq '?') {
588 $opts->{SINGLETON} ?
589 singleton_prompt_help_cmd() :
590 prompt_help_cmd();
591 next TOPLOOP;
593 for my $choice (split(/[\s,]+/, $line)) {
594 my $choose = 1;
595 my ($bottom, $top);
597 # Input that begins with '-'; unchoose
598 if ($choice =~ s/^-//) {
599 $choose = 0;
601 # A range can be specified like 5-7 or 5-.
602 if ($choice =~ /^(\d+)-(\d*)$/) {
603 ($bottom, $top) = ($1, length($2) ? $2 : 1 + @stuff);
605 elsif ($choice =~ /^\d+$/) {
606 $bottom = $top = $choice;
608 elsif ($choice eq '*') {
609 $bottom = 1;
610 $top = 1 + @stuff;
612 else {
613 $bottom = $top = find_unique($choice, @stuff);
614 if (!defined $bottom) {
615 error_msg "Huh ($choice)?\n";
616 next TOPLOOP;
619 if ($opts->{SINGLETON} && $bottom != $top) {
620 error_msg "Huh ($choice)?\n";
621 next TOPLOOP;
623 for ($i = $bottom-1; $i <= $top-1; $i++) {
624 next if (@stuff <= $i || $i < 0);
625 $chosen[$i] = $choose;
628 last if ($opts->{IMMEDIATE} || $line eq '*');
630 for ($i = 0; $i < @stuff; $i++) {
631 if ($chosen[$i]) {
632 push @return, $stuff[$i];
635 return @return;
638 sub singleton_prompt_help_cmd {
639 print colored $help_color, <<\EOF ;
640 Prompt help:
641 1 - select a numbered item
642 foo - select item based on unique prefix
643 - (empty) select nothing
647 sub prompt_help_cmd {
648 print colored $help_color, <<\EOF ;
649 Prompt help:
650 1 - select a single item
651 3-5 - select a range of items
652 2-3,6-9 - select multiple ranges
653 foo - select item based on unique prefix
654 -... - unselect specified items
655 * - choose all items
656 - (empty) finish selecting
660 sub status_cmd {
661 list_and_choose({ LIST_ONLY => 1, HEADER => $status_head },
662 list_modified());
663 print "\n";
666 sub say_n_paths {
667 my $did = shift @_;
668 my $cnt = scalar @_;
669 print "$did ";
670 if (1 < $cnt) {
671 print "$cnt paths\n";
673 else {
674 print "one path\n";
678 sub update_cmd {
679 my @mods = list_modified('file-only');
680 return if (!@mods);
682 my @update = list_and_choose({ PROMPT => 'Update',
683 HEADER => $status_head, },
684 @mods);
685 if (@update) {
686 system(qw(git update-index --add --remove --),
687 map { $_->{VALUE} } @update);
688 say_n_paths('updated', @update);
690 print "\n";
693 sub revert_cmd {
694 my @update = list_and_choose({ PROMPT => 'Revert',
695 HEADER => $status_head, },
696 list_modified());
697 if (@update) {
698 if (is_initial_commit()) {
699 system(qw(git rm --cached),
700 map { $_->{VALUE} } @update);
702 else {
703 my @lines = run_cmd_pipe(qw(git ls-tree HEAD --),
704 map { $_->{VALUE} } @update);
705 my $fh;
706 open $fh, '| git update-index --index-info'
707 or die;
708 for (@lines) {
709 print $fh $_;
711 close($fh);
712 for (@update) {
713 if ($_->{INDEX_ADDDEL} &&
714 $_->{INDEX_ADDDEL} eq 'create') {
715 system(qw(git update-index --force-remove --),
716 $_->{VALUE});
717 print "note: $_->{VALUE} is untracked now.\n";
721 refresh();
722 say_n_paths('reverted', @update);
724 print "\n";
727 sub add_untracked_cmd {
728 my @add = list_and_choose({ PROMPT => 'Add untracked' },
729 list_untracked());
730 if (@add) {
731 system(qw(git update-index --add --), @add);
732 say_n_paths('added', @add);
733 } else {
734 print "No untracked files.\n";
736 print "\n";
739 sub run_git_apply {
740 my $cmd = shift;
741 my $fh;
742 open $fh, '| git ' . $cmd . " --recount --allow-overlap";
743 print $fh @_;
744 return close $fh;
747 sub parse_diff {
748 my ($path) = @_;
749 my @diff_cmd = split(" ", $patch_mode_flavour{DIFF});
750 if (defined $diff_algorithm) {
751 splice @diff_cmd, 1, 0, "--diff-algorithm=${diff_algorithm}";
753 if ($diff_compaction_heuristic) {
754 splice @diff_cmd, 1, 0, "--compaction-heuristic";
756 if (defined $patch_mode_revision) {
757 push @diff_cmd, get_diff_reference($patch_mode_revision);
759 my @diff = run_cmd_pipe("git", @diff_cmd, "--", $path);
760 my @colored = ();
761 if ($diff_use_color) {
762 my @display_cmd = ("git", @diff_cmd, qw(--color --), $path);
763 if (defined $diff_filter) {
764 # quotemeta is overkill, but sufficient for shell-quoting
765 my $diff = join(' ', map { quotemeta } @display_cmd);
766 @display_cmd = ("$diff | $diff_filter");
769 @colored = run_cmd_pipe(@display_cmd);
771 my (@hunk) = { TEXT => [], DISPLAY => [], TYPE => 'header' };
773 for (my $i = 0; $i < @diff; $i++) {
774 if ($diff[$i] =~ /^@@ /) {
775 push @hunk, { TEXT => [], DISPLAY => [],
776 TYPE => 'hunk' };
778 push @{$hunk[-1]{TEXT}}, $diff[$i];
779 push @{$hunk[-1]{DISPLAY}},
780 (@colored ? $colored[$i] : $diff[$i]);
782 return @hunk;
785 sub parse_diff_header {
786 my $src = shift;
788 my $head = { TEXT => [], DISPLAY => [], TYPE => 'header' };
789 my $mode = { TEXT => [], DISPLAY => [], TYPE => 'mode' };
790 my $deletion = { TEXT => [], DISPLAY => [], TYPE => 'deletion' };
792 for (my $i = 0; $i < @{$src->{TEXT}}; $i++) {
793 my $dest =
794 $src->{TEXT}->[$i] =~ /^(old|new) mode (\d+)$/ ? $mode :
795 $src->{TEXT}->[$i] =~ /^deleted file/ ? $deletion :
796 $head;
797 push @{$dest->{TEXT}}, $src->{TEXT}->[$i];
798 push @{$dest->{DISPLAY}}, $src->{DISPLAY}->[$i];
800 return ($head, $mode, $deletion);
803 sub hunk_splittable {
804 my ($text) = @_;
806 my @s = split_hunk($text);
807 return (1 < @s);
810 sub parse_hunk_header {
811 my ($line) = @_;
812 my ($o_ofs, $o_cnt, $n_ofs, $n_cnt) =
813 $line =~ /^@@ -(\d+)(?:,(\d+))? \+(\d+)(?:,(\d+))? @@/;
814 $o_cnt = 1 unless defined $o_cnt;
815 $n_cnt = 1 unless defined $n_cnt;
816 return ($o_ofs, $o_cnt, $n_ofs, $n_cnt);
819 sub split_hunk {
820 my ($text, $display) = @_;
821 my @split = ();
822 if (!defined $display) {
823 $display = $text;
825 # If there are context lines in the middle of a hunk,
826 # it can be split, but we would need to take care of
827 # overlaps later.
829 my ($o_ofs, undef, $n_ofs) = parse_hunk_header($text->[0]);
830 my $hunk_start = 1;
832 OUTER:
833 while (1) {
834 my $next_hunk_start = undef;
835 my $i = $hunk_start - 1;
836 my $this = +{
837 TEXT => [],
838 DISPLAY => [],
839 TYPE => 'hunk',
840 OLD => $o_ofs,
841 NEW => $n_ofs,
842 OCNT => 0,
843 NCNT => 0,
844 ADDDEL => 0,
845 POSTCTX => 0,
846 USE => undef,
849 while (++$i < @$text) {
850 my $line = $text->[$i];
851 my $display = $display->[$i];
852 if ($line =~ /^ /) {
853 if ($this->{ADDDEL} &&
854 !defined $next_hunk_start) {
855 # We have seen leading context and
856 # adds/dels and then here is another
857 # context, which is trailing for this
858 # split hunk and leading for the next
859 # one.
860 $next_hunk_start = $i;
862 push @{$this->{TEXT}}, $line;
863 push @{$this->{DISPLAY}}, $display;
864 $this->{OCNT}++;
865 $this->{NCNT}++;
866 if (defined $next_hunk_start) {
867 $this->{POSTCTX}++;
869 next;
872 # add/del
873 if (defined $next_hunk_start) {
874 # We are done with the current hunk and
875 # this is the first real change for the
876 # next split one.
877 $hunk_start = $next_hunk_start;
878 $o_ofs = $this->{OLD} + $this->{OCNT};
879 $n_ofs = $this->{NEW} + $this->{NCNT};
880 $o_ofs -= $this->{POSTCTX};
881 $n_ofs -= $this->{POSTCTX};
882 push @split, $this;
883 redo OUTER;
885 push @{$this->{TEXT}}, $line;
886 push @{$this->{DISPLAY}}, $display;
887 $this->{ADDDEL}++;
888 if ($line =~ /^-/) {
889 $this->{OCNT}++;
891 else {
892 $this->{NCNT}++;
896 push @split, $this;
897 last;
900 for my $hunk (@split) {
901 $o_ofs = $hunk->{OLD};
902 $n_ofs = $hunk->{NEW};
903 my $o_cnt = $hunk->{OCNT};
904 my $n_cnt = $hunk->{NCNT};
906 my $head = ("@@ -$o_ofs" .
907 (($o_cnt != 1) ? ",$o_cnt" : '') .
908 " +$n_ofs" .
909 (($n_cnt != 1) ? ",$n_cnt" : '') .
910 " @@\n");
911 my $display_head = $head;
912 unshift @{$hunk->{TEXT}}, $head;
913 if ($diff_use_color) {
914 $display_head = colored($fraginfo_color, $head);
916 unshift @{$hunk->{DISPLAY}}, $display_head;
918 return @split;
921 sub find_last_o_ctx {
922 my ($it) = @_;
923 my $text = $it->{TEXT};
924 my ($o_ofs, $o_cnt) = parse_hunk_header($text->[0]);
925 my $i = @{$text};
926 my $last_o_ctx = $o_ofs + $o_cnt;
927 while (0 < --$i) {
928 my $line = $text->[$i];
929 if ($line =~ /^ /) {
930 $last_o_ctx--;
931 next;
933 last;
935 return $last_o_ctx;
938 sub merge_hunk {
939 my ($prev, $this) = @_;
940 my ($o0_ofs, $o0_cnt, $n0_ofs, $n0_cnt) =
941 parse_hunk_header($prev->{TEXT}[0]);
942 my ($o1_ofs, $o1_cnt, $n1_ofs, $n1_cnt) =
943 parse_hunk_header($this->{TEXT}[0]);
945 my (@line, $i, $ofs, $o_cnt, $n_cnt);
946 $ofs = $o0_ofs;
947 $o_cnt = $n_cnt = 0;
948 for ($i = 1; $i < @{$prev->{TEXT}}; $i++) {
949 my $line = $prev->{TEXT}[$i];
950 if ($line =~ /^\+/) {
951 $n_cnt++;
952 push @line, $line;
953 next;
956 last if ($o1_ofs <= $ofs);
958 $o_cnt++;
959 $ofs++;
960 if ($line =~ /^ /) {
961 $n_cnt++;
963 push @line, $line;
966 for ($i = 1; $i < @{$this->{TEXT}}; $i++) {
967 my $line = $this->{TEXT}[$i];
968 if ($line =~ /^\+/) {
969 $n_cnt++;
970 push @line, $line;
971 next;
973 $ofs++;
974 $o_cnt++;
975 if ($line =~ /^ /) {
976 $n_cnt++;
978 push @line, $line;
980 my $head = ("@@ -$o0_ofs" .
981 (($o_cnt != 1) ? ",$o_cnt" : '') .
982 " +$n0_ofs" .
983 (($n_cnt != 1) ? ",$n_cnt" : '') .
984 " @@\n");
985 @{$prev->{TEXT}} = ($head, @line);
988 sub coalesce_overlapping_hunks {
989 my (@in) = @_;
990 my @out = ();
992 my ($last_o_ctx, $last_was_dirty);
994 for (grep { $_->{USE} } @in) {
995 if ($_->{TYPE} ne 'hunk') {
996 push @out, $_;
997 next;
999 my $text = $_->{TEXT};
1000 my ($o_ofs) = parse_hunk_header($text->[0]);
1001 if (defined $last_o_ctx &&
1002 $o_ofs <= $last_o_ctx &&
1003 !$_->{DIRTY} &&
1004 !$last_was_dirty) {
1005 merge_hunk($out[-1], $_);
1007 else {
1008 push @out, $_;
1010 $last_o_ctx = find_last_o_ctx($out[-1]);
1011 $last_was_dirty = $_->{DIRTY};
1013 return @out;
1016 sub reassemble_patch {
1017 my $head = shift;
1018 my @patch;
1020 # Include everything in the header except the beginning of the diff.
1021 push @patch, (grep { !/^[-+]{3}/ } @$head);
1023 # Then include any headers from the hunk lines, which must
1024 # come before any actual hunk.
1025 while (@_ && $_[0] !~ /^@/) {
1026 push @patch, shift;
1029 # Then begin the diff.
1030 push @patch, grep { /^[-+]{3}/ } @$head;
1032 # And then the actual hunks.
1033 push @patch, @_;
1035 return @patch;
1038 sub color_diff {
1039 return map {
1040 colored((/^@/ ? $fraginfo_color :
1041 /^\+/ ? $diff_new_color :
1042 /^-/ ? $diff_old_color :
1043 $diff_plain_color),
1044 $_);
1045 } @_;
1048 sub edit_hunk_manually {
1049 my ($oldtext) = @_;
1051 my $hunkfile = $repo->repo_path . "/addp-hunk-edit.diff";
1052 my $fh;
1053 open $fh, '>', $hunkfile
1054 or die "failed to open hunk edit file for writing: " . $!;
1055 print $fh "# Manual hunk edit mode -- see bottom for a quick guide\n";
1056 print $fh @$oldtext;
1057 my $participle = $patch_mode_flavour{PARTICIPLE};
1058 my $is_reverse = $patch_mode_flavour{IS_REVERSE};
1059 my ($remove_plus, $remove_minus) = $is_reverse ? ('-', '+') : ('+', '-');
1060 print $fh <<EOF;
1061 # ---
1062 # To remove '$remove_minus' lines, make them ' ' lines (context).
1063 # To remove '$remove_plus' lines, delete them.
1064 # Lines starting with # will be removed.
1066 # If the patch applies cleanly, the edited hunk will immediately be
1067 # marked for $participle. If it does not apply cleanly, you will be given
1068 # an opportunity to edit again. If all lines of the hunk are removed,
1069 # then the edit is aborted and the hunk is left unchanged.
1071 close $fh;
1073 chomp(my $editor = run_cmd_pipe(qw(git var GIT_EDITOR)));
1074 system('sh', '-c', $editor.' "$@"', $editor, $hunkfile);
1076 if ($? != 0) {
1077 return undef;
1080 open $fh, '<', $hunkfile
1081 or die "failed to open hunk edit file for reading: " . $!;
1082 my @newtext = grep { !/^#/ } <$fh>;
1083 close $fh;
1084 unlink $hunkfile;
1086 # Abort if nothing remains
1087 if (!grep { /\S/ } @newtext) {
1088 return undef;
1091 # Reinsert the first hunk header if the user accidentally deleted it
1092 if ($newtext[0] !~ /^@/) {
1093 unshift @newtext, $oldtext->[0];
1095 return \@newtext;
1098 sub diff_applies {
1099 return run_git_apply($patch_mode_flavour{APPLY_CHECK} . ' --check',
1100 map { @{$_->{TEXT}} } @_);
1103 sub _restore_terminal_and_die {
1104 ReadMode 'restore';
1105 print "\n";
1106 exit 1;
1109 sub prompt_single_character {
1110 if ($use_readkey) {
1111 local $SIG{TERM} = \&_restore_terminal_and_die;
1112 local $SIG{INT} = \&_restore_terminal_and_die;
1113 ReadMode 'cbreak';
1114 my $key = ReadKey 0;
1115 ReadMode 'restore';
1116 if ($use_termcap and $key eq "\e") {
1117 while (!defined $term_escapes{$key}) {
1118 my $next = ReadKey 0.5;
1119 last if (!defined $next);
1120 $key .= $next;
1122 $key =~ s/\e/^[/;
1124 print "$key" if defined $key;
1125 print "\n";
1126 return $key;
1127 } else {
1128 return <STDIN>;
1132 sub prompt_yesno {
1133 my ($prompt) = @_;
1134 while (1) {
1135 print colored $prompt_color, $prompt;
1136 my $line = prompt_single_character;
1137 return 0 if $line =~ /^n/i;
1138 return 1 if $line =~ /^y/i;
1142 sub edit_hunk_loop {
1143 my ($head, $hunk, $ix) = @_;
1144 my $text = $hunk->[$ix]->{TEXT};
1146 while (1) {
1147 $text = edit_hunk_manually($text);
1148 if (!defined $text) {
1149 return undef;
1151 my $newhunk = {
1152 TEXT => $text,
1153 TYPE => $hunk->[$ix]->{TYPE},
1154 USE => 1,
1155 DIRTY => 1,
1157 if (diff_applies($head,
1158 @{$hunk}[0..$ix-1],
1159 $newhunk,
1160 @{$hunk}[$ix+1..$#{$hunk}])) {
1161 $newhunk->{DISPLAY} = [color_diff(@{$text})];
1162 return $newhunk;
1164 else {
1165 prompt_yesno(
1166 'Your edited hunk does not apply. Edit again '
1167 . '(saying "no" discards!) [y/n]? '
1168 ) or return undef;
1173 sub help_patch_cmd {
1174 my $verb = lc $patch_mode_flavour{VERB};
1175 my $target = $patch_mode_flavour{TARGET};
1176 print colored $help_color, <<EOF ;
1177 y - $verb this hunk$target
1178 n - do not $verb this hunk$target
1179 q - quit; do not $verb this hunk or any of the remaining ones
1180 a - $verb this hunk and all later hunks in the file
1181 d - do not $verb this hunk or any of the later hunks in the file
1182 g - select a hunk to go to
1183 / - search for a hunk matching the given regex
1184 j - leave this hunk undecided, see next undecided hunk
1185 J - leave this hunk undecided, see next hunk
1186 k - leave this hunk undecided, see previous undecided hunk
1187 K - leave this hunk undecided, see previous hunk
1188 s - split the current hunk into smaller hunks
1189 e - manually edit the current hunk
1190 ? - print help
1194 sub apply_patch {
1195 my $cmd = shift;
1196 my $ret = run_git_apply $cmd, @_;
1197 if (!$ret) {
1198 print STDERR @_;
1200 return $ret;
1203 sub apply_patch_for_checkout_commit {
1204 my $reverse = shift;
1205 my $applies_index = run_git_apply 'apply '.$reverse.' --cached --check', @_;
1206 my $applies_worktree = run_git_apply 'apply '.$reverse.' --check', @_;
1208 if ($applies_worktree && $applies_index) {
1209 run_git_apply 'apply '.$reverse.' --cached', @_;
1210 run_git_apply 'apply '.$reverse, @_;
1211 return 1;
1212 } elsif (!$applies_index) {
1213 print colored $error_color, "The selected hunks do not apply to the index!\n";
1214 if (prompt_yesno "Apply them to the worktree anyway? ") {
1215 return run_git_apply 'apply '.$reverse, @_;
1216 } else {
1217 print colored $error_color, "Nothing was applied.\n";
1218 return 0;
1220 } else {
1221 print STDERR @_;
1222 return 0;
1226 sub patch_update_cmd {
1227 my @all_mods = list_modified($patch_mode_flavour{FILTER});
1228 error_msg "ignoring unmerged: $_->{VALUE}\n"
1229 for grep { $_->{UNMERGED} } @all_mods;
1230 @all_mods = grep { !$_->{UNMERGED} } @all_mods;
1232 my @mods = grep { !($_->{BINARY}) } @all_mods;
1233 my @them;
1235 if (!@mods) {
1236 if (@all_mods) {
1237 print STDERR "Only binary files changed.\n";
1238 } else {
1239 print STDERR "No changes.\n";
1241 return 0;
1243 if ($patch_mode) {
1244 @them = @mods;
1246 else {
1247 @them = list_and_choose({ PROMPT => 'Patch update',
1248 HEADER => $status_head, },
1249 @mods);
1251 for (@them) {
1252 return 0 if patch_update_file($_->{VALUE});
1256 # Generate a one line summary of a hunk.
1257 sub summarize_hunk {
1258 my $rhunk = shift;
1259 my $summary = $rhunk->{TEXT}[0];
1261 # Keep the line numbers, discard extra context.
1262 $summary =~ s/@@(.*?)@@.*/$1 /s;
1263 $summary .= " " x (20 - length $summary);
1265 # Add some user context.
1266 for my $line (@{$rhunk->{TEXT}}) {
1267 if ($line =~ m/^[+-].*\w/) {
1268 $summary .= $line;
1269 last;
1273 chomp $summary;
1274 return substr($summary, 0, 80) . "\n";
1278 # Print a one-line summary of each hunk in the array ref in
1279 # the first argument, starting with the index in the 2nd.
1280 sub display_hunks {
1281 my ($hunks, $i) = @_;
1282 my $ctr = 0;
1283 $i ||= 0;
1284 for (; $i < @$hunks && $ctr < 20; $i++, $ctr++) {
1285 my $status = " ";
1286 if (defined $hunks->[$i]{USE}) {
1287 $status = $hunks->[$i]{USE} ? "+" : "-";
1289 printf "%s%2d: %s",
1290 $status,
1291 $i + 1,
1292 summarize_hunk($hunks->[$i]);
1294 return $i;
1297 sub patch_update_file {
1298 my $quit = 0;
1299 my ($ix, $num);
1300 my $path = shift;
1301 my ($head, @hunk) = parse_diff($path);
1302 ($head, my $mode, my $deletion) = parse_diff_header($head);
1303 for (@{$head->{DISPLAY}}) {
1304 print;
1307 if (@{$mode->{TEXT}}) {
1308 unshift @hunk, $mode;
1310 if (@{$deletion->{TEXT}}) {
1311 foreach my $hunk (@hunk) {
1312 push @{$deletion->{TEXT}}, @{$hunk->{TEXT}};
1313 push @{$deletion->{DISPLAY}}, @{$hunk->{DISPLAY}};
1315 @hunk = ($deletion);
1318 $num = scalar @hunk;
1319 $ix = 0;
1321 while (1) {
1322 my ($prev, $next, $other, $undecided, $i);
1323 $other = '';
1325 if ($num <= $ix) {
1326 $ix = 0;
1328 for ($i = 0; $i < $ix; $i++) {
1329 if (!defined $hunk[$i]{USE}) {
1330 $prev = 1;
1331 $other .= ',k';
1332 last;
1335 if ($ix) {
1336 $other .= ',K';
1338 for ($i = $ix + 1; $i < $num; $i++) {
1339 if (!defined $hunk[$i]{USE}) {
1340 $next = 1;
1341 $other .= ',j';
1342 last;
1345 if ($ix < $num - 1) {
1346 $other .= ',J';
1348 if ($num > 1) {
1349 $other .= ',g';
1351 for ($i = 0; $i < $num; $i++) {
1352 if (!defined $hunk[$i]{USE}) {
1353 $undecided = 1;
1354 last;
1357 last if (!$undecided);
1359 if ($hunk[$ix]{TYPE} eq 'hunk' &&
1360 hunk_splittable($hunk[$ix]{TEXT})) {
1361 $other .= ',s';
1363 if ($hunk[$ix]{TYPE} eq 'hunk') {
1364 $other .= ',e';
1366 for (@{$hunk[$ix]{DISPLAY}}) {
1367 print;
1369 print colored $prompt_color, $patch_mode_flavour{VERB},
1370 ($hunk[$ix]{TYPE} eq 'mode' ? ' mode change' :
1371 $hunk[$ix]{TYPE} eq 'deletion' ? ' deletion' :
1372 ' this hunk'),
1373 $patch_mode_flavour{TARGET},
1374 " [y,n,q,a,d,/$other,?]? ";
1375 my $line = prompt_single_character;
1376 last unless defined $line;
1377 if ($line) {
1378 if ($line =~ /^y/i) {
1379 $hunk[$ix]{USE} = 1;
1381 elsif ($line =~ /^n/i) {
1382 $hunk[$ix]{USE} = 0;
1384 elsif ($line =~ /^a/i) {
1385 while ($ix < $num) {
1386 if (!defined $hunk[$ix]{USE}) {
1387 $hunk[$ix]{USE} = 1;
1389 $ix++;
1391 next;
1393 elsif ($other =~ /g/ && $line =~ /^g(.*)/) {
1394 my $response = $1;
1395 my $no = $ix > 10 ? $ix - 10 : 0;
1396 while ($response eq '') {
1397 my $extra = "";
1398 $no = display_hunks(\@hunk, $no);
1399 if ($no < $num) {
1400 $extra = " (<ret> to see more)";
1402 print "go to which hunk$extra? ";
1403 $response = <STDIN>;
1404 if (!defined $response) {
1405 $response = '';
1407 chomp $response;
1409 if ($response !~ /^\s*\d+\s*$/) {
1410 error_msg "Invalid number: '$response'\n";
1411 } elsif (0 < $response && $response <= $num) {
1412 $ix = $response - 1;
1413 } else {
1414 error_msg "Sorry, only $num hunks available.\n";
1416 next;
1418 elsif ($line =~ /^d/i) {
1419 while ($ix < $num) {
1420 if (!defined $hunk[$ix]{USE}) {
1421 $hunk[$ix]{USE} = 0;
1423 $ix++;
1425 next;
1427 elsif ($line =~ /^q/i) {
1428 for ($i = 0; $i < $num; $i++) {
1429 if (!defined $hunk[$i]{USE}) {
1430 $hunk[$i]{USE} = 0;
1433 $quit = 1;
1434 last;
1436 elsif ($line =~ m|^/(.*)|) {
1437 my $regex = $1;
1438 if ($1 eq "") {
1439 print colored $prompt_color, "search for regex? ";
1440 $regex = <STDIN>;
1441 if (defined $regex) {
1442 chomp $regex;
1445 my $search_string;
1446 eval {
1447 $search_string = qr{$regex}m;
1449 if ($@) {
1450 my ($err,$exp) = ($@, $1);
1451 $err =~ s/ at .*git-add--interactive line \d+, <STDIN> line \d+.*$//;
1452 error_msg "Malformed search regexp $exp: $err\n";
1453 next;
1455 my $iy = $ix;
1456 while (1) {
1457 my $text = join ("", @{$hunk[$iy]{TEXT}});
1458 last if ($text =~ $search_string);
1459 $iy++;
1460 $iy = 0 if ($iy >= $num);
1461 if ($ix == $iy) {
1462 error_msg "No hunk matches the given pattern\n";
1463 last;
1466 $ix = $iy;
1467 next;
1469 elsif ($line =~ /^K/) {
1470 if ($other =~ /K/) {
1471 $ix--;
1473 else {
1474 error_msg "No previous hunk\n";
1476 next;
1478 elsif ($line =~ /^J/) {
1479 if ($other =~ /J/) {
1480 $ix++;
1482 else {
1483 error_msg "No next hunk\n";
1485 next;
1487 elsif ($line =~ /^k/) {
1488 if ($other =~ /k/) {
1489 while (1) {
1490 $ix--;
1491 last if (!$ix ||
1492 !defined $hunk[$ix]{USE});
1495 else {
1496 error_msg "No previous hunk\n";
1498 next;
1500 elsif ($line =~ /^j/) {
1501 if ($other !~ /j/) {
1502 error_msg "No next hunk\n";
1503 next;
1506 elsif ($other =~ /s/ && $line =~ /^s/) {
1507 my @split = split_hunk($hunk[$ix]{TEXT}, $hunk[$ix]{DISPLAY});
1508 if (1 < @split) {
1509 print colored $header_color, "Split into ",
1510 scalar(@split), " hunks.\n";
1512 splice (@hunk, $ix, 1, @split);
1513 $num = scalar @hunk;
1514 next;
1516 elsif ($other =~ /e/ && $line =~ /^e/) {
1517 my $newhunk = edit_hunk_loop($head, \@hunk, $ix);
1518 if (defined $newhunk) {
1519 splice @hunk, $ix, 1, $newhunk;
1522 else {
1523 help_patch_cmd($other);
1524 next;
1526 # soft increment
1527 while (1) {
1528 $ix++;
1529 last if ($ix >= $num ||
1530 !defined $hunk[$ix]{USE});
1535 @hunk = coalesce_overlapping_hunks(@hunk);
1537 my $n_lofs = 0;
1538 my @result = ();
1539 for (@hunk) {
1540 if ($_->{USE}) {
1541 push @result, @{$_->{TEXT}};
1545 if (@result) {
1546 my @patch = reassemble_patch($head->{TEXT}, @result);
1547 my $apply_routine = $patch_mode_flavour{APPLY};
1548 &$apply_routine(@patch);
1549 refresh();
1552 print "\n";
1553 return $quit;
1556 sub diff_cmd {
1557 my @mods = list_modified('index-only');
1558 @mods = grep { !($_->{BINARY}) } @mods;
1559 return if (!@mods);
1560 my (@them) = list_and_choose({ PROMPT => 'Review diff',
1561 IMMEDIATE => 1,
1562 HEADER => $status_head, },
1563 @mods);
1564 return if (!@them);
1565 my $reference = is_initial_commit() ? get_empty_tree() : 'HEAD';
1566 system(qw(git diff -p --cached), $reference, '--',
1567 map { $_->{VALUE} } @them);
1570 sub quit_cmd {
1571 print "Bye.\n";
1572 exit(0);
1575 sub help_cmd {
1576 print colored $help_color, <<\EOF ;
1577 status - show paths with changes
1578 update - add working tree state to the staged set of changes
1579 revert - revert staged set of changes back to the HEAD version
1580 patch - pick hunks and update selectively
1581 diff - view diff between HEAD and index
1582 add untracked - add contents of untracked files to the staged set of changes
1586 sub process_args {
1587 return unless @ARGV;
1588 my $arg = shift @ARGV;
1589 if ($arg =~ /--patch(?:=(.*))?/) {
1590 if (defined $1) {
1591 if ($1 eq 'reset') {
1592 $patch_mode = 'reset_head';
1593 $patch_mode_revision = 'HEAD';
1594 $arg = shift @ARGV or die "missing --";
1595 if ($arg ne '--') {
1596 $patch_mode_revision = $arg;
1597 $patch_mode = ($arg eq 'HEAD' ?
1598 'reset_head' : 'reset_nothead');
1599 $arg = shift @ARGV or die "missing --";
1601 } elsif ($1 eq 'checkout') {
1602 $arg = shift @ARGV or die "missing --";
1603 if ($arg eq '--') {
1604 $patch_mode = 'checkout_index';
1605 } else {
1606 $patch_mode_revision = $arg;
1607 $patch_mode = ($arg eq 'HEAD' ?
1608 'checkout_head' : 'checkout_nothead');
1609 $arg = shift @ARGV or die "missing --";
1611 } elsif ($1 eq 'stage' or $1 eq 'stash') {
1612 $patch_mode = $1;
1613 $arg = shift @ARGV or die "missing --";
1614 } else {
1615 die "unknown --patch mode: $1";
1617 } else {
1618 $patch_mode = 'stage';
1619 $arg = shift @ARGV or die "missing --";
1621 die "invalid argument $arg, expecting --"
1622 unless $arg eq "--";
1623 %patch_mode_flavour = %{$patch_modes{$patch_mode}};
1625 elsif ($arg ne "--") {
1626 die "invalid argument $arg, expecting --";
1630 sub main_loop {
1631 my @cmd = ([ 'status', \&status_cmd, ],
1632 [ 'update', \&update_cmd, ],
1633 [ 'revert', \&revert_cmd, ],
1634 [ 'add untracked', \&add_untracked_cmd, ],
1635 [ 'patch', \&patch_update_cmd, ],
1636 [ 'diff', \&diff_cmd, ],
1637 [ 'quit', \&quit_cmd, ],
1638 [ 'help', \&help_cmd, ],
1640 while (1) {
1641 my ($it) = list_and_choose({ PROMPT => 'What now',
1642 SINGLETON => 1,
1643 LIST_FLAT => 4,
1644 HEADER => '*** Commands ***',
1645 ON_EOF => \&quit_cmd,
1646 IMMEDIATE => 1 }, @cmd);
1647 if ($it) {
1648 eval {
1649 $it->[1]->();
1651 if ($@) {
1652 print "$@";
1658 process_args();
1659 refresh();
1660 if ($patch_mode) {
1661 patch_update_cmd();
1663 else {
1664 status_cmd();
1665 main_loop();