| Getopt-Chain documentation | Contained in the Getopt-Chain distribution. |
Getopt::Chain::v005 - Command-line processing like svn and git
Version 0.005
#!/usr/bin/perl -w
use strict;
use Getopt::Chain::v005;
# A partial, pseudo-reimplementation of git(1):
Getopt::Chain::v005->process(
options => [qw/ version bare git-dir=s /]
run => sub {
my $context = shift;
my @arguments = @_; # Remaining, unparsed arguments
# ... do stuff before any subcommand ...
}
commands => {
init => {
options => [qw/ quiet|q --template=s /]
run => sub {
my $context = shift;
my @arguments = @_; # Again, remaining unparsed arguments
# ... do init stuff ...
}
}
commit => {
options => [qw/ all|a message|m=s /]
run => sub {
my $context = shift;
# ... do commit stuff ..
}
}
add => ...
help => ...
...
}
)
# The above will allow the following (example) usage:
#
# ./script --version
# ./script --git-dir path/to/repository init
# ./script --git-dir path/to/repository commit -a --message '...'
# ./script commit -m '~'
Getopt::Chain::v005 can be used to provide svn(1)- and git(1)-style option and subcommand processing. Any option specification
covered by Getopt::Long is fair game.
CAVEAT: Unfortunately, Getopt::Long slurps up the entire arguments array at once. Usually, this isn't a problem (as Getopt::Chain::v005 uses pass_through). However, if a subcommand has an option with the same name or alias as an option for a parent, then that option won't be available for the subcommand. For example:
./script --verbose --revision 36 edit --revision 48 --file xyzzy.c
# Getopt::Chain::v005 will not associate the second --revision with "edit"
So, for now, try to use distinct option names/aliases :)
Finally, this code fairly new so aspects of the API *might* change (particularly abort/error-handling). Let me know if you're using it and have any suggestions.
TODO: Default values, option descriptions (like Getopt::Long::Descriptive) and constraints (validation).
A Getopt::Chain::v005 configuration is pretty straightforward
Essentially you declare a command, which consists of (optional) <options> and an (optional) <run> subroutine (a CODE reference)
<options> should be an ARRAY reference consisting of a Getopt::Long specification
<run> should be a CODE reference which is a subroutine that accepts a Getopt::Chain::v005::Context as the first argument and any remaining command-line arguments (left after option parsing) as the rest of @_
A third parameter exists, <commands> in which you associate a <name> with a command, consisting (recursively) of <options>, <run>, and <commands>
The <name> indicates what should be typed on the command-line to "trigger" the command. All-in-all, a configuration looks something like this:
options => [ ... ]
run => sub {}
commands => {
<name1> => {
options => [ ... ]
run => sub {}
commands => ...
},
<name2> => {
...
},
... Rinse, repeat, etc.
}
See SYNPOSIS for an example
Alongside <options>, <run>, and <commands>, you can designate a third parameter, <error> which is a either a CODE or HASH reference
This is an error handler for dealing with the following situations:
option_processing_error A Getopt::Long parsing error
have_remainder When a dash or dash-dash string remains on the argument stack without being processed
unknown_command When you've indicated that you want to accept a command but the user entered an unknown one
You can either give a single subroutine to deal with all three, or give a HASH with:
For more detail (for now), look at the source:
perldoc -m Getopt::Chain::v005
<arguments> should be an ARRAY reference
... should consist of a Getopt::Chain::v005 configuration
@ARGV will be used for <arguments>
... should consist of a Getopt::Chain::v005 configuration
Robert Krimen, <rkrimen at cpan.org>
You can contribute or fork this project via GitHub:
http://github.com/robertkrimen/Getopt-Chain/tree/master
git clone git://github.com/robertkrimen/Getopt-Chain.git Getopt-Chain
Please report any bugs or feature requests to bug-Getopt-Chain at rt.cpan.org, or through
the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Getopt-Chain. I will be notified, and then you'll
automatically be notified of progress on your bug as I make changes.
You can find documentation for this module with the perldoc command.
perldoc Getopt::Chain::v005
You can also look for information at:
Copyright 2008 Robert Krimen, all rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| Getopt-Chain documentation | Contained in the Getopt-Chain distribution. |
package Getopt::Chain::v005; use warnings; use strict;
our $VERSION = '0.005';
use Moose; use Getopt::Chain::v005::Carp; use Getopt::Chain::v005::Context; use Getopt::Long qw/GetOptionsFromArray/; has options => qw/is ro/; has schema => qw/is ro isa Maybe[HashRef]/; has _getopt_long_options => qw/is rw isa ArrayRef/; has commands => qw/is rw isa Maybe[HashRef]/; has run => qw/is ro isa Maybe[CodeRef]/; has validate => qw/is ro isa Maybe[CodeRef]/; has error => qw/is ro/; sub BUILD { my $self = shift; my $given = shift; my $commands = $self->_parse_commands($self->commands); my ($schema, $getopt_long_options) = $self->_parse_schema($self->options); $self->{commands} = $commands; $self->{schema} = $schema; $self->_getopt_long_options($getopt_long_options); } sub _parse_commands { my $self = shift; my $commands = shift; return unless $commands; my $class = ref $self; my %commands; while (my ($name, $command) = each %$commands) { $commands{$name} = $class->new(inherit => $self, ref $command eq "CODE" ? (run => $command) : %$command); } return \%commands; } sub _parse_schema { my $self = shift; my $schema = shift; my %schema; my @getopt_long_options; $schema = { map { $_ => undef } @$schema } if ref $schema eq "ARRAY"; while (my ($specification, $more) = each %$schema) { my (%option, %ParseOptionSpec); my ($key, $name) = Getopt::Long::ParseOptionSpec($specification, \%ParseOptionSpec); $option{key} = $key; $option{name} = $name; $option{aliases} = [ keys %ParseOptionSpec ]; $schema{$key} = \%option; push @getopt_long_options, $specification; } return (\%schema, \@getopt_long_options); } sub process { my $self = shift; unless (ref $self) { my @process; push @process, shift if ref $_[0] eq "ARRAY"; return $self->new(@_)->process(@process); } my $arguments = shift; my %given = 1 == @_ && ref $_[0] eq "HASH" ? %{ $_[0] } : @_; my %options; $arguments = [ @ARGV ] unless $arguments; my $remaining_arguments = [ @$arguments ]; # This array will eventually contain leftover arguments my $context = $given{context} ||= Getopt::Chain::v005::Context->new; $context->push(processor => $self, command => $given{command}, arguments => $arguments, remaining_arguments => $remaining_arguments, options => \%options); eval { if (my $getopt_long_options = $self->_getopt_long_options) { Getopt::Long::Configure(qw/pass_through/); GetOptionsFromArray($remaining_arguments, \%options, @$getopt_long_options); } }; $self->_handle_option_processing_error($@, $context) if $@; $context->update; if (@$remaining_arguments && $remaining_arguments->[0] =~ m/^--\w/) { $self->_handle_have_remainder('Have remainder "' . $remaining_arguments->[0] . '"', $context); } $context->valid($self->validate->($context)) if $self->validate; $self->run->($context, @$remaining_arguments) if $self->run; if (my $commands = $self->commands) { my @arguments = @$remaining_arguments; my $command = shift @arguments; my $processor = $commands->{defined $command ? $command : 'DEFAULT'} || $commands->{DEFAULT}; if ($processor) { return $processor->process(\@arguments, command => $command, context => $context); } elsif (defined $command) { $self->_handle_unknown_command("Unknown command \"$command\"", $context); } } return $context->options; } sub _handle_option_processing_error { my $self = shift; return $self->_handle_error(option_processing_error => @_); } sub _handle_have_remainder { my $self = shift; return $self->_handle_error(have_remainder => @_); } sub _handle_unknown_command { my $self = shift; return $self->_handle_error(unknown_command => @_); } sub _handle_error { my $self = shift; my $event = shift; my $description = shift; my $error = $self->error; if (ref $error eq "CODE") { return $error->($event, $description, @_); } elsif (ref $error eq "HASH") { goto _handle_error_croak unless defined (my $response = $error->{$event}); if (ref $response eq "CODE") { return $response->($event, $description, @_); } elsif ($response) { goto _handle_error_croak; } else { # Ignore the error return; } } croak "Don't understand error handler ($error)" if $error; _handle_error_croak: croak "$description ($event)"; } use MooseX::MakeImmutable; MooseX::MakeImmutable->lock_down;
1; # End of Getopt::Chain::v005