X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=bin%2Frgit;h=6e5c3d2ad891f887cb554d2857e926f0ce92ad3b;hb=76ba389e3711e8f254aea83f9b3b7b221c0517a8;hp=b8393759bba312dab136a3d6ad077bf268967c1c;hpb=c86be01d791b2919e100f9a7357597dfdfe1e273;p=perl%2Fmodules%2Frgit.git diff --git a/bin/rgit b/bin/rgit index b839375..6e5c3d2 100755 --- a/bin/rgit +++ b/bin/rgit @@ -8,12 +8,13 @@ use Config qw/%Config/; use Cwd qw/cwd/; use File::Spec::Functions qw/catfile path/; -use App::Rgit::Utils qw/:codes :levels/; use App::Rgit; +use App::Rgit::Utils qw/:levels/; +use App::Rgit::Policy; our $VERSION; BEGIN { - $VERSION = '0.05'; + $VERSION = '0.06'; } my %opts; @@ -28,26 +29,17 @@ BEGIN { $cmd = ' ' unless defined $cmd; } -my $shell; +my $policy; -BEGIN { - if (-t && $opts{I}) { - if (eval "require Term::ReadKey; 1") { - Term::ReadKey->import; - *policy = \&policy_interactive; - for (grep defined, $ENV{SHELL}, '/bin/sh') { - if (-x $_) { - $shell = $_; - last; - } - } - } else { - warn "You have to install Term::ReadKey to use the interactive mode.\n"; - } - } - *policy = $opts{K} ? \&policy_keep - : \&policy_default - unless defined *policy{CODE}; +if (-t && $opts{I}) { + $policy = 'Interactive'; +} elsif ($opts{K}) { + $policy = 'Keep'; +} +$policy = eval { App::Rgit::Policy->new(name => $policy) }; +if (not defined $policy) { + print STDERR $@ if $@; + $policy = App::Rgit::Policy->new(name => 'Default'); } setpgrp 0, 0 if $Config{d_setpgrp}; @@ -72,7 +64,7 @@ my $ar = App::Rgit->new( root => $root, cmd => $cmd, args => \@ARGV, - policy => \&policy, + policy => $policy, debug => $opts{D} ? INFO : WARN, ); @@ -80,52 +72,6 @@ print STDOUT "rgit $VERSION\n" if $opts{V}; exit $ar->run; -sub policy_default { - my ($cmd, $conf, $repo, $status, $signal) = @_; - return NEXT unless $status; - return LAST; -} - -sub policy_keep { NEXT } - -sub policy_interactive { - my ($cmd, $conf, $repo, $status, $signal) = @_; - return NEXT unless $status; - my %codes = ( - 'a' => [ LAST, 'aborting' ], - 'i' => [ NEXT, 'ignoring' ], - 'I' => [ NEXT | SAVE, 'ignoring all' ], - 'r' => [ REDO, 'retrying' ], - ); - my $int = { GetControlChars() }->{INTERRUPT}; - while (1) { - $conf->warn("[a]bort, [i]gnore, [I]gnore all, [r]etry, open [s]hell ?"); - ReadMode(4); - my $key = ReadKey(0); - ReadMode(1); - print STDERR "\n"; - next unless defined $key; - if ($key eq $int) { - $conf->warn("Interrupted, aborting\n"); - return LAST; - } elsif ($key eq 's') { - if (defined $shell) { - $conf->info('Opening shell in ', $repo->work, "\n"); - my $cwd = cwd; - $repo->chdir; - system { $shell } $shell; - chdir $cwd; - } else { - $conf->err("Couldn't find any shell\n"); - } - } elsif (exists $codes{$key}) { - my $code = $codes{$key}; - $conf->info('Okay, ', $code->[1], "\n"); - return $code->[0]; - } - } -} - __END__ =head1 NAME @@ -134,7 +80,7 @@ rgit - Recursively execute a command on all the git repositories in a directory =head1 VERSION -Version 0.05 +Version 0.06 =head1 SYNOPSIS @@ -245,8 +191,6 @@ Add a remote to all repositories in "/foo/bar" to their bare counterpart in C, L, L, L, L, L and L. -L. - =head1 AUTHOR Vincent Pit, C<< >>, L.