/usr/share/perl5/MooseX/App.pm is in libmoosex-app-perl 1.22-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 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 | # ============================================================================«
package MooseX::App;
# ============================================================================«
use 5.010;
use utf8;
use strict;
use warnings;
our $AUTHORITY = 'cpan:MAROS';
our $VERSION = '1.22';
use MooseX::App::Meta::Role::Attribute::Option;
use MooseX::App::Exporter qw(app_base app_fuzzy app_strict option parameter);
use MooseX::App::Message::Envelope;
use Moose::Exporter;
use Scalar::Util qw(blessed);
my ($IMPORT,$UNIMPORT,$INIT_META) = Moose::Exporter->build_import_methods(
with_meta => [ qw(app_namespace app_base app_fuzzy app_command_name app_strict option parameter) ],
also => [ 'Moose' ],
as_is => [ 'new_with_command' ],
install => [ 'unimport','init_meta' ],
);
sub import {
my ( $class, @plugins ) = @_;
# Get caller
my ($caller_class) = caller();
# Process plugins
MooseX::App::Exporter->process_plugins($caller_class,@plugins);
# Call Moose-Exporter generated importer
return $class->$IMPORT( { into => $caller_class } );
}
sub init_meta {
my ($class,%args) = @_;
$args{roles} = ['MooseX::App::Role::Base'];
$args{metaroles} = {
class => ['MooseX::App::Meta::Role::Class::Base'],
attribute => ['MooseX::App::Meta::Role::Attribute::Option'],
};
return MooseX::App::Exporter->process_init_meta(%args);
}
sub app_command_name(&) {
my ( $meta, $namesub ) = @_;
return $meta->app_command_name($namesub);
}
sub app_namespace($) {
my ( $meta, $name ) = @_;
return $meta->app_namespace($name);
}
sub new_with_command {
my ($class,@args) = @_;
Moose->throw_error('new_with_command is a class method')
if ! defined $class || blessed($class);
my $meta = $class->meta;
Moose->throw_error('new_with_command may only be called from the application base package')
if $meta->meta->does_role('MooseX::App::Meta::Role::Class::Command');
# Extra args
my %args;
if (scalar @args == 1
&& ref($args[0]) eq 'HASH' ) {
%args = %{$args[0]};
} elsif (scalar @args % 2 == 0) {
%args = @args;
} else {
Moose->throw_error('new_with_command got invalid extra arguments');
}
# Get ARGV
my $parsed_argv = MooseX::App::ParsedArgv->new();
my $first_argv = $parsed_argv->first_argv;
# No args
if (! defined $first_argv
|| $first_argv =~ m/^\s*$/) {
return MooseX::App::Message::Envelope->new(
$meta->command_message(
header => "Missing command", # LOCALIZE
type => "error",
),
$meta->command_usage_global(),
);
# Requested help
} elsif (lc($first_argv) =~ m/^(help|h|\?|usage)$/) {
return MooseX::App::Message::Envelope->new(
$meta->command_usage_global(),
);
# Looks like a command
} else {
my $return = $meta->command_find($first_argv);
# Nothing found
if (blessed $return
&& $return->isa('MooseX::App::Message::Block')) {
return MooseX::App::Message::Envelope->new(
$return,
$meta->command_usage_global(),
);
# One command found
} else {
my $command_class = $meta->command_get($return);
return $class->initialize_command_class($command_class,%args);
}
}
}
no Moose;
1;
__END__
=encoding utf8
=head1 NAME
MooseX::App - Write user-friendly command line apps with even less suffering
=head1 SYNOPSIS
In your base class:
package MyApp;
use MooseX::App qw(Config Color);
option 'global_option' => (
is => 'rw',
isa => 'Bool',
documentation => q[Enable this to do fancy stuff],
); # Global option
has 'private' => (
is => 'rw',
); # not exposed
Write multiple command classes (If you have only a single command class
you should use L<MooseX::App::Simple> instead)
package MyApp::SomeCommand;
use MooseX::App::Command; # important
extends qw(MyApp); # purely optional, only if you want to use global options from base class
parameter 'some_parameter' => (
is => 'rw',
isa => 'Str',
required => 1,
documentation => q[Some parameter that you need to supply],
); # Positional parameter
option 'some_option' => (
is => 'rw',
isa => 'Int',
required => 1,
documentation => q[Very important option!],
); # Option
sub run {
my ($self) = @_;
# Do something
}
And then in some simple wrapper script:
#!/usr/bin/env perl
use MyApp;
MyApp->new_with_command->run;
On the command line:
bash$ myapp help
usage:
myapp <command> [long options...]
myapp help
global options:
--global_option Enable this to do fancy stuff [Flag]
--help --usage -? Prints this usage information. [Flag]
available commands:
some_command Description of some command
another_command Description of another command
help Prints this usage information
or
bash$ myapp some_command --help
usage:
myapp some_command <SOME_PARAMETER> [long options...]
myapp help
myapp some_command --help
parameters:
some_parameter Some parameter that you need to supply [Required]
options:
--global_option Enable this to do fancy stuff [Flag]
--some_option Very important option! [Int,Required]
--help --usage -? Prints this usage information. [Flag]
=head1 DESCRIPTION
MooseX-App is a highly customizeable helper to write user-friendly
command line applications without having to worry about most of the annoying
things usually involved. Just take any existing L<Moose> class, add a single
line (C<use MooseX-App qw(PluginA PluginB ...);>) and create one class
for each command in an underlying namespace.
MooseX-App will then take care of
=over
=item * Finding, loading and initializing the command classes
=item * Creating automated help and documentation from pod and attributes
=item * Reading, encoding and validating the command line options and positional parameters entered by the user
=item * Providing helpful error messages if user input cannot be validated
=back
Commandline options are defined using the 'option' keyword which accepts
the same attributes as Moose' 'has' keyword.
option 'some_option' => (
is => 'rw',
isa => 'Str',
);
This is equivalent to
has 'some_option' => (
is => 'rw',
isa => 'Str',
traits => ['AppOption'],
cmd_type => 'option',
);
Positional parameters are defined with the 'parameter' keyword
parameter 'some_option' => (
is => 'rw',
isa => 'Str',
);
This is equivalent to
has 'some_option' => (
is => 'rw',
isa => 'Str',
traits => ['AppOption'],
cmd_type => 'parameter',
);
Read the L<Tutorial|MooseX::App::Tutorial> for getting started with a simple
MooseX::App command line application.
=head1 METHODS
=head2 new_with_command
my $myapp_command = MyApp->new_with_command();
This method reads the command line arguments from the user and tries to create
a command object. If it fails it retuns a L<MooseX::App::Message::Envelope>
object holding an error message.
You can pass a hash of default params to new_with_command
MyApp->new_with_command(%default);
=head2 initialize_command_class
my $myapp_command = MyApp->initialize_command_class($command_name,%default);
Helper method to initialize the command class for the given command.
=head1 GLOBAL OPTIONS
=head2 app_base
app_base 'my_script';
Usually MooseX::App will take the name of the calling wrapper script to
construct the programm name in various help messages. This name can
be changed via the app_base function.
=head2 app_namespace
app_namespace 'MyApp::Commands';
Usually MooseX::App will take the package name of the base class as the
namespace for commands. This namespace can be changed.
=head2 app_fuzzy
app_fuzzy(1); # default
OR
app_fuzzy(0);
Enables fuzzy matching of commands and attributes. Is turned on by default.
=head2 app_strict
app_strict(0); # default
OR
app_strict(1);
If strict is enabled the programm will terminate with an error message if
superfluous/unknown positional parameters are supplied. If disabled all
extra parameters will be copied to the L<extra_argv> attribute.
=head2 app_command_name
app_command_name {
my ($package) = shift;
# munge package name;
return $command_name
};
This sub can be used to control how package names should be translated
to command names.
=head1 GLOBAL ATTRIBUTES
All MooseX::App classes will have two extra attributes/accessors
=head2 extra_argv
Carries all parameters from @ARGV that were not consumed.
=head2 help_flag
Help flag option
=head1 ATTRIBUTE OPTIONS
=over
=item * cmd_tags - Extra tags
=item * cmd_flag - Override option name
=item * cmd_aliases - Alternative option names
=item * cmd_split - Split values
=item * cmd_position - Option/Parameter order
=back
Refer to L<MooseX::App::Meta::Role::Attribute::Option> for detailed
documentation.
=head1 PLUGINS
The behaviour of MooseX-App can be customized with plugins. To load a
plugin just pass a list of plugin names after the C<use MooseX-App> statement.
use MooseX::App qw(PluginA PluginB);
Read the L<Writing MooseX-App Plugins|MooseX::App::WritingPlugins>
documentation on how to create your own plugins.
Currently the following plugins are shipped with MooseX::App
=over
=item * L<MooseX::App::Plugin::BashCompletion>
Adds a command that genereates a bash completion script for your application
=item * L<MooseX::App::Plugin::Color>
Colorful output for your MooseX::App applications
=item * L<MooseX::App::Plugin::Config>
Config files your MooseX::App applications
=item * L<MooseX::App::Plugin::ConfigHome>
Config files in users home directory
=item * L<MooseX::App::Plugin::Env>
Read options from environment
=item * L<MooseX::App::Plugin::Typo>
Handle typos in command names
=item * L<MooseX::App::Plugin::Version>
Adds a command to display the version and license of your application
=back
=head1 SEE ALSO
Read the L<Tutorial|MooseX::App::Tutorial> for getting started with a simple
MooseX::App command line application.
For alternatives you can check out
L<MooseX::App::Cmd>, L<MooseX::Getopt>, L<MooX::Options> and L<App::Cmd>
=head1 SUPPORT
Please report any bugs or feature requests to
C<bug-moosex-app@rt.cpan.org>, or through the web interface at
L<http://rt.cpan.org/Public/Bug/Report.html?Queue=MooseX-App>.
I will be notified, and then you'll automatically be notified of progress on
your report as I make changes.
=head1 AUTHOR
Maroš Kollár
CPAN ID: MAROS
maros [at] k-1.com
http://www.k-1.com
=head1 CONTRIBUTORS
In no particular order: Andrew Jones, George Hartzell, Steve Nolte,
Michael G, Thomas Klausner, Yanick Champoux, Edward Baudrez
=head1 COPYRIGHT
MooseX::App is Copyright (c) 2012 Maroš Kollár.
This library is free software and may be distributed under the same terms as
perl itself. The full text of the licence can be found in the LICENCE file
included with this module.
=cut
|