App-Cmd
view release on metacpan or search on metacpan
lib/App/Cmd/Subdispatch.pm view on Meta::CPAN
# The "experimental" below is not actually scary. The feature went on to be
# de-experimental-ized with no changes and is now on by default in perl v5.24
# and later. -- rjbs, 2021-03-14
use 5.020;
use warnings;
use experimental qw(postderef postderef_qq);
package App::Cmd::Subdispatch 0.340;
use App::Cmd;
use App::Cmd::Command;
BEGIN { our @ISA = qw(App::Cmd::Command App::Cmd) }
# ABSTRACT: an App::Cmd::Command that is also an App::Cmd
#pod =method new
#pod
#pod A hackish new that allows us to have an Command instance before they normally
#pod exist.
#pod
#pod =cut
sub new {
my ($inv, $fields, @args) = @_;
if (ref $inv) {
@{ $inv }{ keys %$fields } = values %$fields;
return $inv;
} else {
$inv->SUPER::new($fields, @args);
}
}
#pod =method prepare
#pod
#pod my $subcmd = $subdispatch->prepare($app, @args);
#pod
#pod An overridden version of L<App::Cmd::Command/prepare> that performs a new
#pod dispatch cycle.
#pod
#pod =cut
sub prepare {
my ($class, $app, @args) = @_;
my $self = $class->new({ app => $app });
my ($subcommand, $opt, @sub_args) = $self->get_command(@args);
$self->set_global_options($opt);
if (defined $subcommand) {
return $self->_prepare_command($subcommand, $opt, @sub_args);
} else {
if (@args) {
return $self->_bad_command(undef, $opt, @sub_args);
} else {
return $self->_prepare_default_command($opt, @sub_args);
}
}
}
sub _plugin_prepare {
my ($self, $plugin, @args) = @_;
return $plugin->prepare($self->choose_parent_app($self->app, $plugin), @args);
}
#pod =method app
#pod
#pod $subdispatch->app;
#pod
#pod This method returns the application that this subdispatch is a command of.
#pod
#pod =cut
sub app { $_[0]{app} }
#pod =method choose_parent_app
#pod
#pod $subcmd->prepare(
#pod $subdispatch->choose_parent_app($app, $opt, $plugin),
#pod @$args
#pod );
#pod
#pod A method that chooses whether the parent app or the subdispatch is going to be
#pod C<< $cmd->app >>.
#pod
#pod =cut
sub choose_parent_app {
( run in 0.458 second using v1.01-cache-2.11-cpan-0bb4e1dffa6 )