1 package App::Rgit::Command;
8 use App::Rgit::Utils qw/:codes/;
12 App::Rgit::Command - Base class for App::Rgit commands.
20 our $VERSION = '0.06';
24 Base class for L<App::Rgit> commands.
26 This is an internal class to L<rgit>.
30 =head2 C<< new cmd => $cmd, args => \@args >>
32 Creates a new command object for C<$cmd> that is bound to be called with arguments C<@args>.
37 __PACKAGE__->action($_ => 'Once') for qw/daemon gui help init version/, ' ';
41 $class = ref $class || $class;
46 $cmd = ' ' unless defined $cmd;
48 my $action = $class->action($cmd);
50 if ($class eq __PACKAGE__) {
53 Carp::confess("Command $cmd should be executed as a $action")
54 unless $class->isa($action);
57 eval "require $action; 1" or Carp::confess("Couldn't load $action: $@");
61 args => $args{args} || [ ],
62 policy => $args{policy},
66 =head2 C<< action $cmd [ => $pkg ] >>
68 If C<$pkg> is supplied, handles command C<$cmd> with C<$pkg> objects.
69 Otherwise, returns the current class for C<$cmd>.
74 my ($self, $cmd, $pkg) = @_;
75 if (not defined $cmd) {
76 return unless defined $self and ref $self and $self->isa(__PACKAGE__);
79 unless (defined $pkg) {
80 return __PACKAGE__ . '::Each' unless defined $commands{$cmd};
81 return $commands{$cmd}
83 $pkg = __PACKAGE__ . '::' . $pkg unless $pkg =~ /:/;
84 $commands{$cmd} = $pkg;
87 =head2 C<report $conf, $repo, $status>
89 Reports that the execution of the command in C<$repo> exited with C<$status> to the current command's policy.
90 Returns what policy C<report> method returned, which should be one of the policy codes listed in C<App::Rgit::Utils>.
97 my $code = $self->policy->handle(@_);
99 return defined $code ? $code : NEXT;
113 eval "sub $_ { \$_[0]->{$_} }" for qw/cmd args policy/;
118 Runs the command with a L<App::Rgit::Config> configuration object.
119 Handles back the code to return to the system and the last policy.
120 Implemented in subclasses.
128 Vincent Pit, C<< <perl at profvince.com> >>, L<http://profvince.com>.
130 You can contact me by mail or on C<irc.perl.org> (vincent).
134 Please report any bugs or feature requests to C<bug-rgit at rt.cpan.org>, or through the web interface at L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=rgit>. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
138 You can find documentation for this module with the perldoc command.
140 perldoc App::Rgit::Command
142 =head1 COPYRIGHT & LICENSE
144 Copyright 2008-2009 Vincent Pit, all rights reserved.
146 This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
150 1; # End of App::Rgit::Command