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 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596
|
package CLI::Osprey;
use strict;
use warnings;
# ABSTRACT: MooX::Options + MooX::Cmd + Sanity
our $VERSION = '0.08'; # VERSION
our $AUTHORITY = 'cpan:ARODLAND'; # AUTHORITY
use Carp 'croak';
use Module::Runtime 'use_module';
use Scalar::Util qw(reftype);
use Moo::Role qw(); # only want class methods, not setting up a role
use CLI::Osprey::InlineSubcommand ();
my @OPTIONS_ATTRIBUTES = qw(
option option_name format short repeatable negatable spacer_before spacer_after doc long_doc format_doc order hidden
);
sub import {
my (undef, @import_options) = @_;
my $target = caller;
for my $method (qw(with around has)) {
next if $target->can($method);
croak "Can't find the method '$method' in package '$target'. CLI::Osprey requires a Role::Tiny-compatible object system like Moo or Moose.";
}
my $with = $target->can('with');
my $around = $target->can('around');
my $has = $target->can('has');
if ( ! Moo::Role->is_role( $target ) ) { # not in a role
eval "package $target;\n" . q{
sub _osprey_options {
my $class = shift;
return $class->maybe::next::method(@_);
}
sub _osprey_config {
my $class = shift;
return $class->maybe::next::method(@_);
}
sub _osprey_subcommands {
my $class = shift;
return $class->maybe::next::method(@_);
}
1;
} || croak($@);
}
my $osprey_config = {
preserve_argv => 1,
abbreviate => 1,
prefer_commandline => 1,
@import_options,
};
$around->(_osprey_config => sub {
my ($orig, $self) = (shift, shift);
return $self->$orig(@_), %$osprey_config;
});
my $options_data = { };
my $subcommands = { };
my $apply_modifiers = sub {
return if $target->can('new_with_options');
$with->('CLI::Osprey::Role');
$around->(_osprey_options => sub {
my ($orig, $self) = (shift, shift);
return $self->$orig(@_), %$options_data;
});
$around->(_osprey_subcommands => sub {
my ($orig, $self) = (shift, shift);
return $self->$orig(@_), %$subcommands;
});
};
my $added_order = 0;
my $option = sub {
my ($name, %attributes) = @_;
$has->($name => _non_option_attributes(%attributes));
$options_data->{$name} = _option_attributes($name, %attributes);
$options_data->{$name}{added_order} = ++$added_order;
$apply_modifiers->();
};
my $subcommand = sub {
my ($name, $subobject) = @_;
if (ref($subobject) && reftype($subobject) eq 'CODE') {
my @args = @_[2 .. $#_];
$subobject = CLI::Osprey::InlineSubcommand->new(
name => $name,
method => $subobject,
@args,
);
}
else {
use_module($subobject) unless $osprey_config->{on_demand};
}
$subcommands->{$name} = $subobject;
$apply_modifiers->();
};
if (my $info = $Role::Tiny::INFO{$target}) {
$info->{not_methods}{$option} = $option;
$info->{not_methods}{$subcommand} = $subcommand;
}
{
no strict 'refs';
*{"${target}::option"} = $option;
*{"${target}::subcommand"} = $subcommand;
}
$apply_modifiers->();
return;
}
sub _non_option_attributes {
my (%attributes) = @_;
my %filter_out;
@filter_out{@OPTIONS_ATTRIBUTES} = ();
return map {
$_ => $attributes{$_}
} grep {
!exists $filter_out{$_}
} keys %attributes;
}
sub _option_attributes {
my ($name, %attributes) = @_;
unless (defined $attributes{option}) {
($attributes{option} = $name) =~ tr/_/-/;
}
my $ret = {};
for (@OPTIONS_ATTRIBUTES) {
$ret->{$_} = $attributes{$_} if exists $attributes{$_};
}
return $ret;
}
1;
__END__
=pod
=encoding UTF-8
=head1 NAME
CLI::Osprey - MooX::Options + MooX::Cmd + Sanity
=head1 VERSION
version 0.08
=head1 SYNOPSIS
in Hello.pm
package Hello;
use Moo;
use CLI::Osprey;
option 'message' => (
is => 'ro',
format => 's',
doc => 'The message to display',
default => 'Hello world!',
);
sub run {
my ($self) = @_;
print $self->message, "\n";
}
In hello.pl
use Hello;
Hello->new_with_options->run;
=head1 DESCRIPTION
CLI::Osprey is a module to assist in writing commandline applications with M*
OO modules (Moose, Moo, Mo). With it, you structure your app as one or more
modules, which get instantiated with the commandline arguments as attributes.
Arguments are parsed using L<Getopt::Long::Descriptive>, and both long and
short help messages as well as complete manual pages are automatically
generated. An app can be a single command with options, or have sub-commands
(like C<git>). Sub-commands can be defined as modules (with options of their
own) or as simple coderefs.
=head2 Differences from MooX::Options
Osprey is deliberately similar to L<MooX::Options>, and porting an app that
uses MooX::Options to Osprey should be fairly simple in most cases. However
there are a few important differences:
=over 4
=item *
Osprey is pure-perl, without any mandatory XS dependencies, meaning it can be
used in fatpacked scripts, and other situations where you may need to run on
diverse machines, where a C compiler and control over the ennvironment aren't
guaranteed.
=item *
Osprey's support for sub-commands is built-in from the beginning. We think this
makes for a better experience than MooX::Options + MooX::Cmd.
=item *
While MooX::Options requires an option's primary name to be the same as the
attribute that holds it, and MooX::Cmd derives a sub-command's name from the
name of the module that implements it, Osprey separates these, so that Perl
identifier naming conventions don't dictate your command line interface.
=item *
Osprey doesn't use an automatic module finder (like L<Module::Pluggable>) to
locate modules for sub-commands; their names are given explicitly. This small
amount of additional typing gives you more control and less fragility.
=back
There are also a few things MooX::Options has that Osprey lacks. While they may
be added in the future, I haven't seen the need yet. Currently known missing
feeatures are JSON options, C<config_from_file> support, C<autosplit>, and C<autorange>.
For JSON support, you can use a coercion on the attribute, turning it from a
string to a ref via C<decode_json>.
To default an app's options from a config file, you may want to do something
like this in your script file:
use JSON 'decode_json';
use Path::Tiny;
MyApp->new_with_options(
map decode_json(path($_)->slurp),
grep -f,
"$ENV{HOME}/.myapprc"
)->run;
Provided that C<prefer_commandline> is true (which is the default), any
options in C<.myapprc> will be used as defaults if that file exists, but will
still be overrideable from the commandline.
=head1 IMPORTED METHODS
The following methods, will be imported into a class that uses CLI::Osprey:
=head2 new_with_options
Parses commandline arguments, validates them, and calls the C<new> method with
the resulting parameters. Any parameters passed to C<new_with_options> will
also be passed to C<new>; the C<prefer_commandline> import option controls
which overrides which.
=head2 option
The C<option> keyword acts like C<has> (and accepts all of the arguments that
C<has> does), but also registers the attribute as a commandline option. See
L</OPTION PARAMETERS> for usage.
=head2 osprey_usage($code, @messages)
Displays a short usage message, the same as if the app was invoked with the
C<-h> option. Also displays the lines of text in C<@messages> if any are
passed. If C<$code> is passed a defined value, exits with that as a status.
=head2 osprey_help($code)
Displays a more substantial usage message, the same as if the app was invoked
with the C<--help> option. If C<$code> is passed a defined value, exits with
that as a status.
=head2 osprey_man
Displays a manual page for the app, containing long descriptive text (if
provided) about each command and option, then exits.
=for comment osprey_man has parameters, the first one is for internal usage only and the
second one is obscure... just ignore them until I sort it out.
=head1 IMPORT PARAMETERS
The parameters to C<use CLI::Osprey> serve two roles: to customize Osprey's
behavior, and to provide information about the app and its options for use in
the usage messages. They are:
=head2 abbreviate
Default: true.
If C<abbreviate> is set to a true value, then long options can be abbreviated to
the point of uniqueness. That is, C<--long-option-name> can be called as
C<--lon> as long as there are no other options starting with those letters. An
option can always be called by its full name, even if it is a prefix of some
longer option's name. If C<abbreviate> is false, options must always be called
by their full names (or by a defined short name).
=head2 added_order
Default: true.
If C<added_order> is set to a true value, then two options with the same
C<order> (or none at all) will appear in the help text in the same order as
their C<option> keywords were executed. If it is false, they will appear in
alphabetical order instead.
=head2 desc
Default: none.
A short description of the command, to be shown at the top of the manual
page, and in the listing of subcommands if this command is a subcommand.
=head2 description_pod
Default: none.
A description, of any length, in POD format, to be included as the
C<DESCRIPTION> section of the command's manual page.
=head2 extra_pod
Default: none.
Arbitrary extra POD to be included between the C<DESCRIPTION> and
C<OPTIONS> sections of the manual page.
=head2 getopt_options
Default: C<['require_order']>.
Contains a list of options to control option parsing behavior (see
L<Getopt::Long/"Configuring Getopt::Long">). Note, however, that many of these
are not helpful with Osprey, and that using C<permute> will likely break
subcommands entirely. MooX::Options calls this parameter C<flavour>.
=head2 prefer_commandline
Default: true.
If true, command-line options override key/value pairs passed to
C<new_with_options>. If false, the reverse is true.
=head2 preserve_argv
Default: false.
If true, the C<@ARGV> array will be localized for the duration of
C<new_with_options>, and will be left in the same state after option parsing as
it was before. If false, the C<@ARGV> array will be modified by option parsing,
removing any recognized options, values, and subcommands, and leaving behind
any positional parameters or anything after and including a C<--> separator.
=head2 usage_string
Default: C<"USAGE: $program_name %o">
Provides the header of the usage message printed in response to the C<-h>
option or an error in option processing. The format of the string is described
in L<Getopt::Long::Descriptive/"$usage_desc">.
=head2 on_demand
Default: false
If set to a true value, the commands' modules won't be loaded
at compile time, but if the command is invoked. This is useful for
minimizing compile time if the application has a lot of commands or
the commands are on the heavy side. Note that enabling the feature
may interfere with the ability to fatpack the application.
=head1 OPTION PARAMETERS
=head2 doc
Default: None.
Documentation for the option, used in C<--help> output. For best results, should
be no more than a short paragraph.
=head2 format
Default: None (i.e. boolean).
The format of the option argument, same as L<Getopt::Long>. An option with no
format is a boolean, not taking an additional argument. Other formats are:
=over
=item s
string
=item i
decimal integer
=item o
integer (supports C<0x> for hex, C<0b> for binary, and C<0> for octal).
=item f
floating-point number
=back
=head2 format_doc
Default: depends on L</format>.
Describes the type of an option's argument. For example, if the string option
C<copy-to> specifies a hostname, you can give it C<< format_doc => "hostname" >>
and it will display as S<< "B<--copy-to> I<hostname>" >> in the help text,
instead of S<< "B<--copy-to> I<string>" >>.
=head2 hidden
Default: B<false>.
A C<hidden> option will be recognized, but not listed in automatically generated
documentation.
=head2 negatable
Default: B<false>.
Adds the C<--no-> version of the option, which sets it to a false value.
Equivalent to C<!> in L<Getopt::Long>.
=head2 option
Default: Same as the attribute name, with underscores replaced by hyphens.
Allows the command-line option for an attribute to differ from the attribute
name -- like C<init_arg> except for the commandline.
=head2 long_doc
Default: none.
Long documentation of the option for the manual page. This is POD, so POD
formatting is available, and paragraphs need to be separated by C<"\n\n">. If
not provided, the short documentation will be used instead.
=head2 order
Default: None.
Allows controlling the order that options are listed in the help text. Options
without an order attribute are sorted by the order their C<option> statements
are executed, if L</added_order> is true, and by alphabetical order otherwise.
They are placed as though they had order 9999, so use small values to sort
before automaticall-sorted options, and values of 10000 and up to sort at the
end.
=head2 repeatable
Default: B<false>.
Allows an option to be specified more than once. When used on a "boolean"
option with no L</format>, each appearace of the option will increment the value
by 1 (equivalent to C<+> in L<Getopt::Long>. When used on an option with
arguments, produces an arrayref, one value per appearance of the option.
=head2 required
Default: B<false>.
This is a Moo/Moose feature honored by Osprey. A C<required> attribute must be
passed on the commandline unless it's passed to the constructor. Generated
documentation will show the option as non-optional.
=head2 short
Default: None.
Gives an option a single-character "short" form, e.g. C<-v> for C<--verbose>.
=head2 spacer_before
Default: B<false>.
Causes a blank line to appear before this option in help output.
=head2 spacer_after
Default: B<false>.
Causes a blank line to appear after this option in help output.
=head1 SUBCOMMANDS
An Osprey command can have subcommands with their own options, documentation,
etc., allowing for complicated applications under the roof of a single command.
Osprey will parse the options for all of the commands in the chain, and
construct them in top-to-bottom order, with each subcommand receiving a
reference to its parent.
=head2 Subcommand Classes
A subcommand can be another class, which also uses C<CLI::Osprey>. For example:
package MyApp;
use Moo;
use CLI::Osprey;
option verbose => (
is => 'ro',
short => 'v',
);
subcommand frobnicate => 'MyApp::Frobnicate';
package MyApp::Frobnicate;
use Moo;
use CLI::Osprey;
option target => (
is => 'ro',
format => 's',
);
sub run {
my ($self) = @_;
if ($self->parent_command->verbose) {
say "Be dangerous, and unpredictable... and make a lot of noise.";
}
$self->do_something_with($self->target);
}
=head2 Inline Subcommands
A subcommand can also be specified as a coderef, for when a separate class
would be excessive. For example:
package Greet;
use Moo;
use CLI::Osprey;
option target => (
is => 'ro',
default => "world",
);
subcommand hello => sub {
my ($self, $parent) = @_;
say "Hello ", $parent->target;
};
subcommand goodbye => sub {
my ($self, $parent) = @_;
say "Goodbye ", $parent->target;
};
which can be invoked as C<greet --target world hello>. Inline subcommands are
implemented using L<CLI::Osprey::InlineSubcommand>.
=head1 THANKS
This module is based heavily on code from L<MooX::Options> and takes strong
inspiration from L<MooX::Cmd> and L<MooX::Options::Actions>. Thanks to
celogeek, Jens Reshack, Getty, Tom Bloor, and all contributors to those
modules. Thanks to mst for prodding me to do this. Thanks Grinnz for helping
me update my dzillage.
=head1 AUTHOR
Andrew Rodland <arodland@cpan.org>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2020 by Andrew Rodland.
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
|