NAME

Getopt::O2 - Command line argument processing and automated help generation, object oriented

SYNOPSIS

package MyPackage;
use base 'Getopt::O2';

# return a short descriptive string about the program (appears in --help)
sub getProgramDescription
    {
        'A sample program'
    }

# return rules about parameters
sub getOptionRules
    {
        shift->SUPER::getOptionRules(),
            'length=i' => ['A numeric argument', 'default' => 33],
            'file=s'   => ['A text argument'],
            'quiet'    => ['A "flag" argument'];
    }

# read options
new MyPackage->getopt(\%options);

DESCRIPTION

The Getopt::O2 module implements an extended Getopt class which parses the command line from @ARGV, recognizing and removing specified options and their possible values.

This function adheres to the POSIX syntax for command line options, with GNU extensions. In general, this means that options have long names instead of single letters, and are introduced with a double dash "--". Support for bundling of command line options, as was the case with the more traditional single-letter approach, is provided.

Methods

Writing Rules

Command line options are processed using rules returned the getOptionsRules() implementation. Rules are expressed much like with Getopt::Long. A rule expression is followed by the rule's help string and possible options.

The options must be represented as either a string (used as help string) or an ARRAYREF. The first element of the latter is used as the options' help string. Its second element can be a CODEREF which is called when the option was seen. The rest are key-value-pairs that are coerced to a hash. A single undef can be used to separate option categories (used in usage()).

# Short variant. Define flag and its help string
'q|quiet' => 'Suppresses informational program output'

# Actual implementation of "--help" parameter
'h|help' => ['Display this help message', sub {
    $self->usage()
}]

# Use callback return value as option value
'l|limit=i' => ['Limit amount of things', sub {
    my ($arg, $key) = @_;
    $arg = 100 if $arg > 100;
    return $arg; # make sure --limit is not larger than 100
}]

# Enumeration with allowed values
'o|output=?' => ['Use ARG as output format', 'values' => [qw(xml html json)]]

Rule syntax

TODO

DEPENDENCIES

None special. Uses core perl libraries.

AUTHOR

Oliver Schieche schiecheo@cpan.org

http://perfect-co.de/

$Id: O2.pm 888 2019-09-01 20:36:34Z schieche $

LICENSE AND COPYRIGHT

Copyright 2013-2019 Oliver Schieche.

This software is a free library. You can modify and/or distribute it under the same terms as Perl itself.