X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=lib%2FApp%2FRgit%2FCommand.pm;h=7fbba531a4a4e17cdda8bcf08efc806601ed44ef;hb=df425e04a0fe374b7e1906e417f8238af257742f;hp=645d5c33c67123617bb1e507c97e3e4de42d9044;hpb=dc668e3c302569ed2b5eb2ed893247308f22528a;p=perl%2Fmodules%2Frgit.git diff --git a/lib/App/Rgit/Command.pm b/lib/App/Rgit/Command.pm index 645d5c3..7fbba53 100644 --- a/lib/App/Rgit/Command.pm +++ b/lib/App/Rgit/Command.pm @@ -3,11 +3,9 @@ package App::Rgit::Command; use strict; use warnings; -use Carp qw/croak/; +use Carp (); -use Object::Tiny qw/cmd args policy/; - -use App::Rgit::Utils qw/validate :codes/; +use App::Rgit::Utils qw/:codes/; =head1 NAME @@ -39,22 +37,30 @@ my %commands; __PACKAGE__->action($_ => 'Once') for qw/daemon gui help init version/, ' '; sub new { - my ($class, %args) = &validate; + my $class = shift; + $class = ref $class || $class; + + my %args = @_; + my $cmd = $args{cmd}; $cmd = ' ' unless defined $cmd; + my $action = $class->action($cmd); + if ($class eq __PACKAGE__) { $class = $action; } else { - croak "Command $cmd should be executed as a $action" - unless $class->isa($action); + Carp::confess("Command $cmd should be executed as a $action") + unless $class->isa($action); } - eval "require $action; 1" or croak "Couldn't load $action: $@"; - $class->SUPER::new( + + eval "require $action; 1" or Carp::confess("Couldn't load $action: $@"); + + bless { cmd => $cmd, args => $args{args} || [ ], policy => $args{policy}, - ); + }, $class; } =head2 C<< action $cmd [ => $pkg ] >> @@ -88,7 +94,7 @@ Returns what policy C method returned, which should be one of the policy sub report { my ($self) = @_; - my $code = $self->policy->report(@_); + my $code = $self->policy->handle(@_); return defined $code ? $code : NEXT; } @@ -99,7 +105,13 @@ sub report { =head2 C -Accessors. +Read-only accessors. + +=cut + +BEGIN { + eval "sub $_ { \$_[0]->{$_} }" for qw/cmd args policy/; +} =head2 C @@ -114,12 +126,13 @@ L. =head1 AUTHOR Vincent Pit, C<< >>, L. - + 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 @@ -129,7 +142,7 @@ You can find documentation for this module with the perldoc command. =head1 COPYRIGHT & LICENSE -Copyright 2008-2009 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.