/usr/share/perl5/App/Cmd/Command.pm is in libapp-cmd-perl 0.331-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 | use strict;
use warnings;
package App::Cmd::Command;
$App::Cmd::Command::VERSION = '0.331';
use App::Cmd::ArgProcessor;
BEGIN { our @ISA = 'App::Cmd::ArgProcessor' };
# ABSTRACT: a base class for App::Cmd commands
use Carp ();
#pod =method prepare
#pod
#pod my ($cmd, $opt, $args) = $class->prepare($app, @args);
#pod
#pod This method is the primary way in which App::Cmd::Command objects are built.
#pod Given the remaining command line arguments meant for the command, it returns
#pod the Command object, parsed options (as a hashref), and remaining arguments (as
#pod an arrayref).
#pod
#pod In the usage above, C<$app> is the App::Cmd object that is invoking the
#pod command.
#pod
#pod =cut
sub prepare {
my ($class, $app, @args) = @_;
my ($opt, $args, %fields)
= $class->_process_args(\@args, $class->_option_processing_params($app));
return (
$class->new({ app => $app, %fields }),
$opt,
@$args,
);
}
sub _option_processing_params {
my ($class, @args) = @_;
return (
$class->usage_desc(@args),
$class->opt_spec(@args),
);
}
#pod =method new
#pod
#pod This returns a new instance of the command plugin. Probably only C<prepare>
#pod should use this.
#pod
#pod =cut
sub new {
my ($class, $arg) = @_;
bless $arg => $class;
}
#pod =method execute
#pod
#pod $command_plugin->execute(\%opt, \@args);
#pod
#pod This method does whatever it is the command should do! It is passed a hash
#pod reference of the parsed command-line options and an array reference of left
#pod over arguments.
#pod
#pod If no C<execute> method is defined, it will try to call C<run> -- but it will
#pod warn about this behavior during testing, to remind you to fix the method name!
#pod
#pod =cut
sub execute {
my $class = shift;
if (my $run = $class->can('run')) {
warn "App::Cmd::Command subclasses should implement ->execute not ->run"
if $ENV{HARNESS_ACTIVE};
return $class->$run(@_);
}
Carp::croak ref($class) . " does not implement mandatory method 'execute'\n";
}
#pod =method app
#pod
#pod This method returns the App::Cmd object into which this command is plugged.
#pod
#pod =cut
sub app { $_[0]->{app}; }
#pod =method usage
#pod
#pod This method returns the usage object for this command. (See
#pod L<Getopt::Long::Descriptive>).
#pod
#pod =cut
sub usage { $_[0]->{usage}; }
#pod =method command_names
#pod
#pod This method returns a list of command names handled by this plugin. The
#pod first item returned is the 'canonical' name of the command.
#pod
#pod If this method is not overridden by an App::Cmd::Command subclass, it will
#pod return the last part of the plugin's package name, converted to lowercase.
#pod For example, YourApp::Cmd::Command::Init will, by default, handle the command
#pod "init".
#pod
#pod Subclasses should generally get the superclass value of C<command_names>
#pod and then append aliases.
#pod
#pod =cut
sub command_names {
# from UNIVERSAL::moniker
(ref( $_[0] ) || $_[0]) =~ /([^:]+)$/;
return lc $1;
}
#pod =method usage_desc
#pod
#pod This method should be overridden to provide a usage string. (This is the first
#pod argument passed to C<describe_options> from Getopt::Long::Descriptive.)
#pod
#pod If not overridden, it returns "%c COMMAND %o"; COMMAND is the first item in
#pod the result of the C<command_names> method.
#pod
#pod =cut
sub usage_desc {
my ($self) = @_;
my ($command) = $self->command_names;
return "%c $command %o"
}
#pod =method opt_spec
#pod
#pod This method should be overridden to provide option specifications. (This is
#pod list of arguments passed to C<describe_options> from Getopt::Long::Descriptive,
#pod after the first.)
#pod
#pod If not overridden, it returns an empty list.
#pod
#pod =cut
sub opt_spec {
return;
}
#pod =method validate_args
#pod
#pod $command_plugin->validate_args(\%opt, \@args);
#pod
#pod This method is passed a hashref of command line options (as processed by
#pod Getopt::Long::Descriptive) and an arrayref of leftover arguments. It may throw
#pod an exception (preferably by calling C<usage_error>, below) if they are invalid,
#pod or it may do nothing to allow processing to continue.
#pod
#pod =cut
sub validate_args { }
#pod =method usage_error
#pod
#pod $self->usage_error("This command must not be run by root!");
#pod
#pod This method should be called to die with human-friendly usage output, during
#pod C<validate_args>.
#pod
#pod =cut
sub usage_error {
my ( $self, $error ) = @_;
die "Error: $error\nUsage: " . $self->_usage_text;
}
sub _usage_text {
my ($self) = @_;
local $@;
join "\n", eval { $self->app->_usage_text }, eval { $self->usage->text };
}
#pod =method abstract
#pod
#pod This method returns a short description of the command's purpose. If this
#pod method is not overridden, it will return the abstract from the module's Pod.
#pod If it can't find the abstract, it will look for a comment starting with
#pod "ABSTRACT:" like the ones used by L<Pod::Weaver::Section::Name>.
#pod
#pod =cut
# stolen from ExtUtils::MakeMaker
sub abstract {
my ($class) = @_;
$class = ref $class if ref $class;
my $result;
my $weaver_abstract;
# classname to filename
(my $pm_file = $class) =~ s!::!/!g;
$pm_file .= '.pm';
$pm_file = $INC{$pm_file} or return "(unknown)";
# if the pm file exists, open it and parse it
open my $fh, "<", $pm_file or return "(unknown)";
local $/ = "\n";
my $inpod;
while (local $_ = <$fh>) {
# =cut toggles, it doesn't end :-/
$inpod = /^=cut/ ? !$inpod : $inpod || /^=(?!cut)/;
if (/#+\s*ABSTRACT: (.*)/){
# takes ABSTRACT: ... if no POD defined yet
$weaver_abstract = $1;
}
next unless $inpod;
chomp;
next unless /^(?:$class\s-\s)(.*)/;
$result = $1;
last;
}
return $result || $weaver_abstract || "(unknown)";
}
#pod =method description
#pod
#pod This method can be overridden to provide full option description. It
#pod is used by the built-in L<help|App::Cmd::Command::help> command.
#pod
#pod If not overridden, it uses L<Pod::Usage> to extract the description
#pod from the module's Pod DESCRIPTION section or the empty string.
#pod
#pod =cut
sub description {
my ($class) = @_;
$class = ref $class if ref $class;
# classname to filename
(my $pm_file = $class) =~ s!::!/!g;
$pm_file .= '.pm';
$pm_file = $INC{$pm_file} or return '';
open my $input, "<", $pm_file or return '';
my $descr = "";
open my $output, ">", \$descr;
require Pod::Usage;
Pod::Usage::pod2usage( -input => $input,
-output => $output,
-exit => "NOEXIT",
-verbose => 99,
-sections => "DESCRIPTION",
indent => 0
);
$descr =~ s/Description:\n//m;
chomp $descr;
return $descr;
}
1;
__END__
=pod
=encoding UTF-8
=head1 NAME
App::Cmd::Command - a base class for App::Cmd commands
=head1 VERSION
version 0.331
=head1 METHODS
=head2 prepare
my ($cmd, $opt, $args) = $class->prepare($app, @args);
This method is the primary way in which App::Cmd::Command objects are built.
Given the remaining command line arguments meant for the command, it returns
the Command object, parsed options (as a hashref), and remaining arguments (as
an arrayref).
In the usage above, C<$app> is the App::Cmd object that is invoking the
command.
=head2 new
This returns a new instance of the command plugin. Probably only C<prepare>
should use this.
=head2 execute
$command_plugin->execute(\%opt, \@args);
This method does whatever it is the command should do! It is passed a hash
reference of the parsed command-line options and an array reference of left
over arguments.
If no C<execute> method is defined, it will try to call C<run> -- but it will
warn about this behavior during testing, to remind you to fix the method name!
=head2 app
This method returns the App::Cmd object into which this command is plugged.
=head2 usage
This method returns the usage object for this command. (See
L<Getopt::Long::Descriptive>).
=head2 command_names
This method returns a list of command names handled by this plugin. The
first item returned is the 'canonical' name of the command.
If this method is not overridden by an App::Cmd::Command subclass, it will
return the last part of the plugin's package name, converted to lowercase.
For example, YourApp::Cmd::Command::Init will, by default, handle the command
"init".
Subclasses should generally get the superclass value of C<command_names>
and then append aliases.
=head2 usage_desc
This method should be overridden to provide a usage string. (This is the first
argument passed to C<describe_options> from Getopt::Long::Descriptive.)
If not overridden, it returns "%c COMMAND %o"; COMMAND is the first item in
the result of the C<command_names> method.
=head2 opt_spec
This method should be overridden to provide option specifications. (This is
list of arguments passed to C<describe_options> from Getopt::Long::Descriptive,
after the first.)
If not overridden, it returns an empty list.
=head2 validate_args
$command_plugin->validate_args(\%opt, \@args);
This method is passed a hashref of command line options (as processed by
Getopt::Long::Descriptive) and an arrayref of leftover arguments. It may throw
an exception (preferably by calling C<usage_error>, below) if they are invalid,
or it may do nothing to allow processing to continue.
=head2 usage_error
$self->usage_error("This command must not be run by root!");
This method should be called to die with human-friendly usage output, during
C<validate_args>.
=head2 abstract
This method returns a short description of the command's purpose. If this
method is not overridden, it will return the abstract from the module's Pod.
If it can't find the abstract, it will look for a comment starting with
"ABSTRACT:" like the ones used by L<Pod::Weaver::Section::Name>.
=head2 description
This method can be overridden to provide full option description. It
is used by the built-in L<help|App::Cmd::Command::help> command.
If not overridden, it uses L<Pod::Usage> to extract the description
from the module's Pod DESCRIPTION section or the empty string.
=head1 AUTHOR
Ricardo Signes <rjbs@cpan.org>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2016 by Ricardo Signes.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut
|