X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=lib%2FApp%2FRgit%2FCommand%2FEach.pm;h=b50e18040c60df1f202878cb5179dedef3f91e4d;hb=2e8121b94bf4847686087060a709fa3bb433f4ee;hp=155e9744ac37ffa1417b22537f3e294072c1f44c;hpb=4c6f2bc56bc50a662b2c2625bcc012d4757f9abf;p=perl%2Fmodules%2Frgit.git diff --git a/lib/App/Rgit/Command/Each.pm b/lib/App/Rgit/Command/Each.pm index 155e974..b50e180 100644 --- a/lib/App/Rgit/Command/Each.pm +++ b/lib/App/Rgit/Command/Each.pm @@ -5,17 +5,20 @@ use warnings; use base qw/App::Rgit::Command/; +use App::Rgit::Guard; +use App::Rgit::Utils qw/:codes/; + =head1 NAME App::Rgit::Command::Each - Class for commands to execute for each repository. =head1 VERSION -Version 0.02 +Version 0.08 =cut -our $VERSION = '0.02'; +our $VERSION = '0.08'; =head1 DESCRIPTION @@ -35,20 +38,39 @@ It implements : sub run { my $self = shift; + my $conf = shift; + my $status = 0; - for (@{$self->repos}) { + my $code; + + my $repos = 0; + my $guard = App::Rgit::Guard->new(sub { $conf->cwd_repo->chdir if $repos }); + + for (@{$conf->repos}) { $_->chdir or next; - $status = $_->run($_[0], @{$self->args}); - last if $status; + ++$repos; + + ($status, my $signal) = $_->run($conf, @{$self->args}); + + $code = $self->report($conf, $_, $status, $signal) unless defined $code; + + last if $code & LAST; + if ($code & REDO) { + undef $code; # Don't save it, that would be very dumb + redo; + } + undef $code unless $code & SAVE; } - $self->cwd_as_repo->chdir; - return $status; + + return wantarray ? ($status, $code) : $status; } =head1 SEE ALSO L. +L. + =head1 AUTHOR Vincent Pit, C<< >>, L. @@ -57,7 +79,8 @@ You can contact me by mail or on C (vincent). =head1 BUGS -Please report any bugs or feature requests to C, or through the web interface at L. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes. +Please report any bugs or feature requests to C, or through the web interface at L. +I will be notified, and then you'll automatically be notified of progress on your bug as I make changes. =head1 SUPPORT @@ -67,7 +90,7 @@ You can find documentation for this module with the perldoc command. =head1 COPYRIGHT & LICENSE -Copyright 2008 Vincent Pit, all rights reserved. +Copyright 2008,2009,2010 Vincent Pit, all rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.