Sophie

Sophie

distrib > Mandriva > 2010.0 > i586 > media > contrib-release > by-pkgid > cd14cddf3b3ceaf1193157472227757a > files > 50

parrot-doc-1.6.0-1mdv2010.0.i586.rpm

# Copyright (C) 2001-2006, Parrot Foundation.
# $Id: longopt.pod 37201 2009-03-08 12:07:48Z fperrad $

=head1 NAME

docs/dev/longopt.pod - Long option parsing

=head1 SUMMARY

The files F<longopt.c> and F<longopt.h> implement rudimentary long option
parsing.  They have little to do with Parrot itself, other than that the parrot
binary and imcc both needed long options. So this gives it to them.

=head1 USAGE

To use longopt, you first need to #include "parrot/longopt.h" (it comes with
parrot/parrot.h, too).  Then you need to set up the options table, which is an
array of C<struct longopt_opt_decl>s.

Each element of this array has four components:  the short option, the option
id (generally the same as the short option), some flags, and finally a list of
up to nine long options (all for this one behavior), terminated with a NULL
pointer.

There is currently one possible flag: OPTION_required_FLAG, which states that
this option has a required argument.  Optional arguments are not supported, and
they should be.

The array should be terminated with an element that has 0 for the option id.
So, for example:

    struct longopt_opt_decl options[] = {
        { 'f', 'f', 0,                    { "--foo", NULL } },
        { 'b', 'b', OPTION_required_FLAG, { "--bar", NULL } },
        {   0, 128, 0,                    { "--baz", "--bazbar", NULL } },
        {   0,   0, 0,                    { NULL } }
    };

This is a structure that specifies three options.

Some various ways you could give these options on the command line follow:

    program --baz --bar=arg --foo somefile
    program --bar arg -f somefile
    program -f -b arg --bazbar somefile
    program -barg -f somefile
    program -fbarg somefile

So it basically behaves how most GNU programs do.  It accepts - as a real
argument, and -- as a non argument, but that specifies that only non-flags will
follow.  Again, just like GNU.

No options can follow a non-option, however.  This is because programs that
this is written for, like parrot, usually want to pass options given after the
file to the file they're executing.

=head1 BUGS

It won't complain if you don't give it an argument to an option expecting one.
It will just set the opt_arg pointer to NULL.

It won't complain if you give an argument to an option not expecting one.  It
will just ignore it (this only applies to the --foo=bar style).

=head1 AUTHOR

    Luke Palmer  C<fibonaci@babylonia.flatirons.org>