}
`gfunc'
You must have this exactly thus.
`'
This must follow C syntax for variable names
`'
This should be about a half a line long. It is used as a
subsection title in this document.
`general_use:'
You must supply this unless you are an AutoGen maintainer and are
writing a function that queries or modifies the state of AutoGen.
`'
Normally, the FUNCTION-NAME string will be transformed into a
reasonable invocation name. However, that is not always true. If
the result does not suit your needs, then supply an alternate
string.
`exparg:'
You must supply one for each argument to your function. All
optional arguments must be last. The last of the optional
arguments may be a list, if you choose.
`doc:'
Please say something meaningful.
`[, ...]'
Do not actually specify an ANSI ellipsis here. You must provide
for all the arguments you specified with EXPARG.
See the Guile documentation for more details. More information is
also available in a large comment at the beginning of the
`agen5/snarf.tpl' template file.
4.4 AutoGen Macros
==================
There are two kinds those you define yourself and AutoGen native. The
user-defined macros may be defined in your templates, *Note DEFINE::.
As for AutoGen native macros, do not add any. It is easy to do, but I
won't like it. The basic functions needed to accomplish looping over
and selecting blocks of text have proved to be sufficient over a period
of several years. New text transformations can be easily added via any
of the AutoGen extension methods, as discussed above.
5 Invoking autogen
******************
AutoGen creates text files from templates using external definitions.
`AutoGen' is designed for generating program files that contain
repetitive text with varied substitutions. The goal is to simplify the
maintenance of programs that contain large amounts of repetitious text.
This is especially valuable if there are several blocks of such text
that must be kept synchronized.
One common example is the problem of maintaining the code required
for processing program options. Processing options requires a minimum
of four different constructs be kept in proper order in different places
in your program. You need at least: The flag character in the flag
string, code to process the flag when it is encountered, a global state
variable or two, and a line in the usage text. You will need more
things besides this if you choose to implement long option names,
configuration file processing, environment variables and so on.
All of this can be done mechanically; with the proper templates and
this program.
This chapter was generated by *AutoGen*, using the `agtexi-cmd'
template and the option descriptions for the `autogen' program. This
software is released under the GNU General Public License, version 3 or
later.
5.1 autogen help/usage (`--help')
=================================
This is the automatically generated usage text for autogen.
The text printed is the same whether selected with the `help' option
(`--help') or the `more-help' option (`--more-help'). `more-help' will
print the usage text by passing it through a pager program.
`more-help' is disabled on platforms without a working `fork(2)'
function. The `PAGER' environment variable is used to select the
program, defaulting to `more'. Both will exit with a status code of 0.
autogen (GNU AutoGen) - The Automated Program Generator - Ver. 5.18.6pre12
Usage: autogen [ - [] | --[{=| }] ]... [ ]
The following options select definitions, templates and scheme functions
to use:
Flg Arg Option-Name Description
-L Str templ-dirs Search for templates in DIR
- may appear multiple times
-T Str override-tpl Use TPL-FILE for the template
- may not be preset
Str definitions Read definitions from FILE
- disabled as '--no-definitions'
- enabled by default
- may not be preset
Str shell name or path name of shell to use
-m no no-fmemopen Do not use in-mem streams
Str equate characters considered equivalent
The following options modify how output is handled:
Flg Arg Option-Name Description
-b Str base-name Specify NAME as the base name for output
- may not be preset
no source-time set mod times to latest source
- disabled as '--no-source-time'
no writable Allow output files to be writable
- disabled as '--not-writable'
The following options are often useful while debugging new templates:
Flg Arg Option-Name Description
Num loop-limit Limit on increment loops
- is scalable with a suffix: k/K/m/M/g/G/t/T
- it must lie in one of the ranges:
-1 exactly, or
1 to 16777216
-t Num timeout Limit server shell operations to SECONDS
- it must be in the range:
0 to 3600
KWd trace tracing level of detail
Str trace-out tracing output file or filter
no show-defs Show the definition tree
- may not be preset
no used-defines Show the definitions used
- may not be preset
-C no core Leave a core dump on a failure exit
These options can be used to control what gets processed in the
definitions files and template files:
Flg Arg Option-Name Description
-s Str skip-suffix Skip the file with this SUFFIX
- prohibits the option 'select-suffix'
- may not be preset
- may appear multiple times
-o Str select-suffix specify this output suffix
- may not be preset
- may appear multiple times
-D Str define name to add to definition list
- may appear multiple times
-U Str undefine definition list removal pattern
- an alternate for 'define'
This option is used to automate dependency tracking:
Flg Arg Option-Name Description
-M opt make-dep emit make dependency file
- may not be preset
- may appear multiple times
help, version and option handling:
Flg Arg Option-Name Description
-R Str reset-option reset an option's state
-v opt version output version information and exit
-? no help display extended usage information and exit
-! no more-help extended usage information passed thru pager
-u no usage abbreviated usage to stdout
-> opt save-opts save the option state to a config file
-< Str load-opts load options from a config file - disabled as '--no-load-opts' - may appear multiple times Options are specified by doubled hyphens and their name or by a single hyphen and the flag character. AutoGen creates text files from templates using external definitions. The following option preset mechanisms are supported: - reading file $HOME - reading file ./.autogenrc - examining environment variables named AUTOGEN_* The valid "trace" option keywords are: nothing debug-message server-shell templates block-macros expressions everything or an integer from 0 through 6 AutoGen is a tool designed for generating program files that contain repetitive text with varied substitutions. Packaged by Bruce (2015-08-08) Report autogen bugs to bkorb@gnu.org 5.2 input-select options ======================== The following options select definitions, templates and scheme functions to use. templ-dirs option (-L). ----------------------- This is the "search for templates in `dir'" option. This option takes a string argument `DIR'. This option has some usage constraints. It: * may appear an unlimited number of times. Add a directory to the list of directories `autogen' searches when opening a template, either as the primary template or an included one. The last entry has the highest priority in the search list. That is to say, they are searched in reverse order. override-tpl option (-T). ------------------------- This is the "use `tpl-file' for the template" option. This option takes a string argument `TPL-FILE'. This option has some usage constraints. It: * may not be preset with environment variables or configuration (rc/ini) files. Definition files specify the standard template that is to be expanded. This option will override that name and expand a different template. lib-template option (-l). ------------------------- This is the "load autogen macros from `tpl-file'" option. This option takes a string argument `TPL-FILE'. This option has some usage constraints. It: * may appear an unlimited number of times. DEFINE macros are saved from this template file for use in processing the main macro file. Template text aside from the DEFINE macros is is ignored. Do not use this. Instead, use the INCLUDE macro in your template. *NOTE**: THIS OPTION IS DEPRECATED* definitions option. ------------------- This is the "read definitions from `file'" option. This option takes a string argument `FILE'. This option has some usage constraints. It: * can be disabled with -no-definitions. * It is enabled by default. * may not be preset with environment variables or configuration (rc/ini) files. Use this argument to specify the input definitions file with a command line option. If you do not specify this option, then there must be a command line argument that specifies the file, even if only to specify stdin with a hyphen (`-'). Specify, `--no-definitions' when you wish to process a template without any active AutoGen definitions. shell option. ------------- This is the "name or path name of shell to use" option. This option takes a string argument `shell'. This option has some usage constraints. It: * must be compiled in by defining `SHELL_ENABLED' during the compilation. By default, when AutoGen is built, the configuration is probed for a reasonable Bourne-like shell to use for shell script processing. If a particular template needs an alternate shell, it must be specified with this option on the command line, with an environment variable (`SHELL') or in the configuration/initialization file. no-fmemopen option (-m). ------------------------ This is the "do not use in-mem streams" option. If the local C library supports "`fopencookie(3GNU)'", or "`funopen(3BSD)'" then AutoGen prefers to use in-memory stream buffer opens instead of anonymous files. This may lead to problems if there is a shortage of virtual memory. If, for a particular application, you run out of memory, then specify this option. This is unlikely in a modern 64-bit virtual memory environment. On platforms without these functions, the option is accepted but ignored. `fmemopen(POSIX)' is not adequate because its string buffer is not reallocatable. `open_memstream(POSIX)' is also not adequate because the stream is only opened for output. AutoGen needs a reallocatable buffer available for both reading and writing. equate option. -------------- This is the "characters considered equivalent" option. This option takes a string argument `char-list'. This option will alter the list of characters considered equivalent. The default are the three characters, "_-^". (The last is conventional on a Tandem/HP-NonStop, and I used to do a lot of work on Tandems.) 5.3 out-handling options ======================== The following options modify how output is handled. base-name option (-b). ---------------------- This is the "specify `name' as the base name for output" option. This option takes a string argument `NAME'. This option has some usage constraints. It: * may not be preset with environment variables or configuration (rc/ini) files. A template may specify the exact name of the output file. Normally, it does not. Instead, the name is composed of the base name of the definitions file with suffixes appended. This option will override the base name derived from the definitions file name. This is required if there is no definitions file and advisable if definitions are being read from stdin. If the definitions are being read from standard in, the base name defaults to `stdin'. Any leading directory components in the name will be silently removed. If you wish the output file to appear in a particular directory, it is recommended that you "cd" into that directory first, or use directory names in the format specification for the output suffix lists, *Note pseudo macro::. source-time option. ------------------- This is the "set mod times to latest source" option. This option has some usage constraints. It: * can be disabled with -no-source-time. If you stamp your output files with the `DNE' macro output, then your output files will always be different, even if the content has not really changed. If you use this option, then the modification time of the output files will change only if the input files change. This will help reduce unneeded builds. writable option. ---------------- This is the "allow output files to be writable" option. This option has some usage constraints. It: * can be disabled with -not-writable. This option will leave output files writable. Normally, output files are read-only. 5.4 debug-tpl options ===================== The following options are often useful while debugging new templates. They specify limits that prevent the template from taking overly long or producing more output than expected. loop-limit option. ------------------ This is the "limit on increment loops" option. This option takes a number argument `lim'. This option prevents runaway loops. For example, if you accidentally specify, "FOR x (for-from 1) (for-to -1) (for-by 1)", it will take a long time to finish. If you do have more than 256 entries in tables, you will need to specify a new limit with this option. timeout option (-t). -------------------- This is the "limit server shell operations to `seconds'" option. This option takes a number argument `SECONDS'. This option has some usage constraints. It: * must be compiled in by defining `SHELL_ENABLED' during the compilation. AutoGen works with a shell server process. Most normal commands will complete in less than 10 seconds. If, however, your commands need more time than this, use this option. The valid range is 0 to 3600 seconds (1 hour). Zero will disable the server time limit. trace option. ------------- This is the "tracing level of detail" option. This option takes a keyword argument `level'. This option has some usage constraints. It: * This option takes a keyword as its argument. The argument sets an enumeration value that can be tested by comparing the option value macro (OPT_VALUE_TRACE). The available keywords are: nothing debug-message server-shell templates block-macros expressions everything or their numeric equivalent. This option will cause AutoGen to display a trace of its template processing. There are six levels, each level including messages from the previous levels: `nothing' Does no tracing at all (default) `debug-message' Print messages from the "DEBUG" AutoGen macro (*note DEBUG::). `server-shell' Traces all input and output to the server shell. This includes a shell "independent" initialization script about 30 lines long. Its output is discarded and not inserted into any template. `templates' Traces the invocation of `DEFINE'd macros and `INCLUDE's `block-macros' Traces all block macros. The above, plus `IF', `FOR', `CASE' and `WHILE'. `expressions' Displays the results of expression evaluations. `everything' Displays the invocation of every AutoGen macro, even `TEXT' macros (i.e. the text outside of macro quotes). Additionally, if you rebuild the "expr.ini" file with debugging enabled, then all calls to AutoGen defined scheme functions will also get logged: cd ${top_builddir}/agen5 DEBUG_ENABLED=true bash bootstrap.dir expr.ini make CFLAGS='-g -DDEBUG_ENABLED=1' Be aware that you cannot rebuild this source in this way without first having installed the `autogen' executable in your search path. Because of this, "expr.ini" is in the distributed source list, and not in the dependencies. trace-out option. ----------------- This is the "tracing output file or filter" option. This option takes a string argument `file'. The output specified may be a file name, a file that is appended to, or, if the option argument begins with the `pipe' operator (`|'), a command that will receive the tracing output as standard in. For example, `--traceout='| less'' will run the trace output through the `less' program. Appending to a file is specified by preceding the file name with two greater-than characters (`>>').
show-defs option.
-----------------
This is the "show the definition tree" option.
This option has some usage constraints. It:
* must be compiled in by defining `DEBUG_ENABLED' during the
compilation.
* may not be preset with environment variables or configuration
(rc/ini) files.
This will print out the complete definition tree before processing
the template.
used-defines option.
--------------------
This is the "show the definitions used" option.
This option has some usage constraints. It:
* may not be preset with environment variables or configuration
(rc/ini) files.
This will print out the names of definition values searched for
during the processing of the template, whether actually found or not.
There may be other referenced definitions in a template in portions of
the template not evaluated. Some of the names listed may be computed
names and others AutoGen macro arguments. This is not a means for
producing a definitive, all-encompassing list of all and only the
values used from a definition file. This is intended as an aid to
template documentation only.
core option (-C).
-----------------
This is the "leave a core dump on a failure exit" option.
This option has some usage constraints. It:
* must be compiled in by defining `HAVE_SYS_RESOURCE_H' during the
compilation.
Many systems default to a zero sized core limit. If the system has
the sys/resource.h header and if this option is supplied, then in the
failure exit path, autogen will attempt to set the soft core limit to
whatever the hard core limit is. If that does not work, then an
administrator must raise the hard core size limit.
5.5 processing options
======================
These options can be used to control what gets processed in the
definitions files and template files. They specify which outputs and
parts of outputs to produce.
skip-suffix option (-s).
------------------------
This is the "skip the file with this `suffix'" option. This option
takes a string argument `SUFFIX'.
This option has some usage constraints. It:
* may appear an unlimited number of times.
* may not be preset with environment variables or configuration
(rc/ini) files.
* must not appear in combination with any of the following options:
select-suffix.
Occasionally, it may not be desirable to produce all of the output
files specified in the template. (For example, only the `.h' header
file, but not the `.c' program text.) To do this specify
`--skip-suffix=c' on the command line.
select-suffix option (-o).
--------------------------
This is the "specify this output suffix" option. This option takes a
string argument `SUFFIX'.
This option has some usage constraints. It:
* may appear an unlimited number of times.
* may not be preset with environment variables or configuration
(rc/ini) files.
If you wish to override the suffix specifications in the template,
you can use one or more copies of this option. See the suffix
specification in the *note pseudo macro:: section of the info doc.
define option (-D).
-------------------
This is the "name to add to definition list" option. This option takes
a string argument `value'.
This option has some usage constraints. It:
* may appear an unlimited number of times.
The AutoGen define names are used for the following purposes:
1. Sections of the AutoGen definitions may be enabled or disabled by
using C-style #ifdef and #ifndef directives.
2. When defining a value for a name, you may specify the index for a
particular value. That index may be a literal value, a define
option or a value #define-d in the definitions themselves.
3. The name of a file may be prefixed with `$NAME/'. The `$NAME'
part of the name string will be replaced with the define-d value
for `NAME'.
4. When AutoGen is finished loading the definitions, the defined
values are exported to the environment with, `putenv(3)'. These
values can then be used in shell scripts with `${NAME}' references
and in templates with `(getenv "NAME")'.
5. While processing a template, you may specify an index to retrieve
a specific value. That index may also be a define-d value.
It is entirely equivalent to place this name in the exported
environment. Internally, that is what AutoGen actually does with this
option.
undefine option (-U).
---------------------
This is the "definition list removal pattern" option. This option
takes a string argument `name-pat'.
This option has some usage constraints. It:
* may appear an unlimited number of times.
* may not be preset with environment variables or configuration
(rc/ini) files.
Similar to 'C', AutoGen uses `#ifdef/#ifndef' preprocessing
directives. This option will cause the matching names to be removed
from the list of defined values.
5.6 dep-track options
=====================
This option is used to automate dependency tracking.
make-dep option (-M).
---------------------
This is the "emit make dependency file" option. This option takes an
optional string argument `type'.
This option has some usage constraints. It:
* may appear an unlimited number of times.
* may not be preset with environment variables or configuration
(rc/ini) files.
This option behaves fairly closely to the way the `-M' series of
options work with the gcc compiler, except that instead of just
emitting the predecessor dependencies, this also emits the successor
dependencies (output target files). By default, the output dependency
information will be placed in `.d', but may also be
specified with `-MF'. The time stamp on this file will be
manipulated so that it will be one second older than the oldest primary
output file.
The target in this dependency file will normally be the dependency
file name, but may also be overridden with `-MT'. AutoGen
will not alter the contents of that file, but it may create it and it
will adjust the modification time to match the start time.
*NB:* these second letters are part of the option argument, so `-MF
' must have the space character quoted or omitted, and `-M "F
"' is acceptable because the `F' is part of the option argument.
`-M' may be followed by any of the letters M, F, P, T, Q, D, or G.
However, only F, Q, T and P are meaningful. All but F have somewhat
different meanings. `-MT' is interpreted as meaning `' is
a sentinel file that will depend on all inputs (templates and
definition files) and all the output files will depend on this sentinel
file. It is suitable for use as a real make target. Q is treated
identically to T, except dollar characters ('$') are doubled. P causes
a special clean (clobber) phoney rule to be inserted into the make file
fragment. An empty rule is always created for building the list of
targets.
This is the recommended usage:
-MFwhatever-you-like.dep -MTyour-sentinel-file -MP
and then in your `Makefile', make the `autogen' rule:
-include whatever-you-like.dep
clean_targets += clean-your-sentinel-file
your-sentinel-file:
autogen -MT$@ -MF$*.d .....
local-clean :
rm -f $(clean_targets)
The modification time on the dependency file is adjusted to be one
second before the earliest time stamp of any other output file.
Consequently, it is suitable for use as the sentinel file testifying to
the fact the program was successfully run. (`-include' is the GNU make
way of specifying "include it if it exists". Your make must support
that feature or your bootstrap process must create the file.)
All of this may also be specified using the `DEPENDENCIES_OUTPUT' or
`AUTOGEN_MAKE_DEP' environment variables. If defined, dependency
information will be output. If defined with white space free text that
is something other than `true', `false', `yes', `no', `0' or `1', then
the string is taken to be an output file name. If it contains a string
of white space characters, the first token is as above and the second
token is taken to be the target (sentinel) file as `-MT' in the
paragraphs above. `DEPENDENCIES_OUTPUT' will be ignored if there are
multiple sequences of white space characters or if its contents are,
specifically, `false', `no' or `0'.
5.7 presetting/configuring autogen
==================================
Any option that is not marked as not presettable may be preset by
loading values from configuration ("rc" or "ini") files, and values
from environment variables named `AUTOGEN' and `AUTOGEN_'.
`' must be one of the options listed above in upper case
and segmented with underscores. The `AUTOGEN' variable will be
tokenized and parsed like the command line. The remaining variables
are tested for existence and their values are treated like option
arguments.
`libopts' will search in 2 places for configuration files:
* $HOME
* $PWD
The environment variables `HOME', and `PWD' are expanded and
replaced when `autogen' runs. For any of these that are plain files,
they are simply processed. For any that are directories, then a file
named `.autogenrc' is searched for within that directory and processed.
Configuration files may be in a wide variety of formats. The basic
format is an option name followed by a value (argument) on the same
line. Values may be separated from the option name with a colon, equal
sign or simply white space. Values may be continued across multiple
lines by escaping the newline with a backslash.
Multiple programs may also share the same initialization file.
Common options are collected at the top, followed by program specific
segments. The segments are separated by lines like:
[AUTOGEN]
or by
Do not mix these styles within one configuration file.
Compound values and carefully constructed string values may also be
specified using XML syntax:
...<...>...
yielding an `option-name.sub-opt' string value of
"...<...>..."
`AutoOpts' does not track suboptions. You simply note that it is a
hierarchicly valued option. `AutoOpts' does provide a means for
searching the associated name/value pair list (see: optionFindValue).
The command line options relating to configuration and/or usage help
are:
version (-v)
------------
Print the program version to standard out, optionally with licensing
information, then exit 0. The optional argument specifies how much
licensing detail to provide. The default is to print just the version.
The licensing infomation may be selected with an option argument. Only
the first letter of the argument is examined:
`version'
Only print the version. This is the default.
`copyright'
Name the copyright usage licensing terms.
`verbose'
Print the full copyright usage licensing terms.
usage (-u)
----------
Print abbreviated usage to standard out, then exit 0.
reset-option (-R)
-----------------
Resets the specified option to the compiled-in initial state. This
will undo anything that may have been set by configuration files. The
option argument may be either the option flag character or its long
name.
5.8 autogen exit status
=======================
One of the following exit values will be returned:
`0 (EXIT_SUCCESS)'
Successful program execution.
`1 (EXIT_OPTION_ERROR)'
The command options were misconfigured.
`2 (EXIT_BAD_TEMPLATE)'
An error was encountered processing the template.
`3 (EXIT_BAD_DEFINITIONS)'
The definitions could not be deciphered.
`4 (EXIT_LOAD_ERROR)'
An error was encountered during the load phase.
`5 (EXIT_FS_ERROR)'
a file system error stopped the program.
`6 (EXIT_NO_MEM)'
Insufficient memory to operate.
`128 (EXIT_SIGNAL)'
`autogen' exited due to catching a signal. If your template
includes string formatting, a number argument to a "%s" formatting
element will trigger a segmentation fault. Autogen will catch the
seg fault signal and exit with `AUTOGEN_EXIT_SIGNAL(5)'.
Alternatively, AutoGen may have been interrupted with a `kill(2)'
signal.
Subtract 128 from the actual exit code to detect the signal number.
`66 (EX_NOINPUT)'
A specified configuration file could not be loaded.
`70 (EX_SOFTWARE)'
libopts had an internal operational error. Please report it to
autogen-users@lists.sourceforge.net. Thank you.
5.9 autogen Examples
====================
Here is how the man page is produced:
autogen -Tagman-cmd.tpl -MFman-dep -MTstamp-man opts.def
This command produced this man page from the AutoGen option
definition file. It overrides the template specified in `opts.def'
(normally `options.tpl') and uses `agman-cmd.tpl'. It also sets the
make file dependency output to `man-dep' and the sentinel file (time
stamp file) to `man-stamp'. The base of the file name is derived from
the defined `prog-name'.
The texi invocation document is produced via:
autogen -Tagtexi-cmd.tpl -MFtexi-dep -MTtexi-stamp opts.def
6 Configuring and Installing
****************************
6.1 Configuring AutoGen
=======================
AutoGen is configured and built using Libtool, Automake and Autoconf.
Consequently, you can install it wherever you wish using the `--prefix'
and other options. To the various configuration options supplied by
these tools, AutoGen adds a few of its own:
`--disable-shell'
AutoGen is now capable of acting as a CGI forms server, *Note
AutoGen CGI::. As such, it will gather its definitions using
either `GET' or `POST' methods. All you need to do is have a
template named `cgi.tpl' handy or specify a different one with a
command line option.
However, doing this without disabling the server shell brings
considerable risk. If you were to pass user input to a script
that contained, say, the classic "``rm -rf /`'", you might have a
problem. This configuration option will cause shell template
commands to simply return the command string as the result. No
mistakes. Much safer. Strongly recommended. The default is to
have server shell scripting enabled.
Disabling the shell will have some build side effects, too.
* Many of the make check tests will fail, since they assume a
working server shell.
* The getdefs and columns programs are not built. The options
are distributed as definition files and they cannot be
expanded with a shell-disabled AutoGen.
* Similarly, the documentation cannot be regenerated because
the documentation templates depend on subshell functionality.
`--enable-debug'
Turning on AutoGen debugging enables very detailed inspection of
the input definitions and monitoring shell script processing.
These options are not particularly useful to anyone not directly
involved in maintaining AutoGen. If you do choose to enable
AutoGen debugging, be aware that the usage page was generated
without these options, so when the build process reaches the
documentation rebuild, there will be a failure. `cd' into the
`agen5' build directory, `make' the `autogen.texi' file and all
will be well thereafter.
`--with-regex-header'
`--with-header-path'
`--with-regex-lib'
These three work together to specify how to compile with and link
to a particular POSIX regular expression library. The value for
`--with-regex-header=value' must be the name of the relevant
header file. The AutoGen sources will attempt to include that
source with a `#include ' C preprocessing statement. The
PATH from the `--with-header-path=path' will be added to
`CPPFLAGS' as `-Ipath'. The LIB-SPECS from
`--with-regex-lib=lib-specs' will be added to `LDFLAGS' without
any adornment.
6.2 AutoGen as a CGI server
===========================
AutoGen is now capable of acting as a CGI forms server. It behaves as
a CGI server if the definitions input is from stdin and the environment
variable `REQUEST_METHOD' is defined and set to either "GET" or "POST".
If set to anything else, AutoGen will exit with a failure message.
When set to one of those values, the CGI data will be converted to
AutoGen definitions (*note Definitions File::) and the template named
"`cgi.tpl'" will be processed.
This works by including the name of the real template to process in
the form data and having the "`cgi.tpl'" template include that template
for processing. I do this for processing the form
`http://autogen.sourceforge.net/conftest.html'. The "`cgi.tpl'" looks
approximately like this:
AutoGen5 Template ?>
IF (not (exist? "template")) ?> form-error ?> ELIF (=* (get "template") "/") ?> form-error ?> ELIF (define tpl-file (string-append "cgi-tpl/" (get "template"))) (access? tpl-file R_OK) ?> INCLUDE (. tpl-file) ?> ELIF (set! tpl-file (string-append tpl-file ".tpl")) (access? tpl-file R_OK) ?> INCLUDE (. tpl-file) ?> ELSE ?> form-error ?> ENDIF ?>
This forces the template to be found in the "`cgi-tpl/'" directory.
Note also that there is no suffix specified in the pseudo macro (*note
pseudo macro::). That tells AutoGen to emit the output to `stdout'.
The output is actually spooled until it is complete so that, in the
case of an error, the output can be discarded and a proper error
message can be written in its stead.
*Please also note* that it is advisable, _especially_ for network
accessible machines, to configure AutoGen (*note configuring::) with
shell processing disabled (`--disable-shell'). That will make it
impossible for any referenced template to hand data to a subshell for
interpretation.
6.3 Signal Names
================
When AutoGen is first built, it tries to use `psignal(3)',
`sys_siglist', `strsigno(3)' and `strsignal(3)' from the host operating
system. If your system does not supply these, the AutoGen distribution
will. However, it will use the distributed mapping and this mapping is
unlikely to match what your system uses. This can be fixed. Once you
have installed autogen, the mapping can be rebuilt on the host
operating system. To do so, you must perform the following steps:
1. Build and install AutoGen in a place where it will be found in your
search path.
2. `cd ${top_srcdir}/compat'
3. `autogen strsignal.def'
4. Verify the results by examining the `strsignal.h' file produced.
5. Re-build and re-install AutoGen.
If you have any problems or peculiarities that cause this process to
fail on your platform, please send me copies of the header files
containing the signal names and numbers, along with the full path names
of these files. I will endeavor to fix it. There is a shell script
inside of `strsignal.def' that tries to hunt down the information.
6.4 Installing AutoGen
======================
There are several files that get installed. The number depend whether
or not both shared and archive libraries are to be installed. The
following assumes that everything is installed relative to `$prefix'.
You can, of course, use `configure' to place these files where you wish.
*NB* AutoGen does not contain any compiled-in path names. All
support directories are located via option processing, the environment
variable `HOME' or finding the directory where the executable came from.
The installed files are:
1. The executables in `bin' (autogen, getdefs and columns).
2. The AutoOpts link libraries as `lib/libopts.*'.
3. An include file in `include/options.h', needed for Automated
Option Processing (see next chapter).
4. Several template files and a scheme script in `share/autogen',
needed for Automated Option Processing (*note AutoOpts::), parsing
definitions written with scheme syntax (*note Dynamic Text::), the
templates for producing documentation for your program (*note
documentation attributes::), autoconf test macros, and AutoFSM.
5. Info-style help files as `info/autogen.info*'. These files
document AutoGen, the option processing library AutoOpts, and
several add-on components.
6. The three man pages for the three executables are installed in
man/man1.
This program, library and supporting files can be installed with
three commands:
* /configure [ ]
* make
* make install
However, you may wish to insert `make check' before the `make
install' command.
If you do perform a `make check' and there are any failures, you
will find the results in `/test/FAILURES'. Needless to say, I
would be interested in seeing the contents of those files and any
associated messages. If you choose to go on and analyze one of these
failures, you will need to invoke the test scripts individually. You
may do so by specifying the test (or list of test) in the TESTS make
variable, thus:
gmake TESTS=test-name.test check
I specify `gmake' because most makes will not let you override
internal definitions with command line arguments. `gmake' does.
All of the AutoGen tests are written to honor the contents of the
VERBOSE environment variable. Normally, any commentary generated
during a test run is discarded unless the VERBOSE environment variable
is set. So, to see what is happening during the test, you might invoke
the following with bash or ksh:
VERBOSE=1 gmake TESTS="for.test forcomma.test" check
Or equivalently with csh:
env VERBOSE=1 gmake TESTS="for.test forcomma.test" check
7 Automated Option Processing
*****************************
AutoOpts 41.1 is bundled with AutoGen. It is a tool that virtually
eliminates the hassle of processing options and keeping man pages, info
docs and usage text up to date. This package allows you to specify
several program attributes, thousands of option types and many option
attributes. From this, it then produces all the code necessary to
parse and handle the command line and configuration file options, and
the documentation that should go with your program as well.
All the features notwithstanding, some applications simply have
well-established command line interfaces. Even still, those programs
may use the configuration file parsing portion of the library. See the
"AutoOpts Features" and "Configuration File Format" sections.
7.1 AutoOpts Features
=====================
AutoOpts supports option processing; option state saving; and program
documentation with innumerable features. Here, we list a few obvious
ones and some important ones, but the full list is really defined by
all the attributes defined in the *note Option Definitions:: section.
1. POSIX-compliant short (flag) option processing.
2. GNU-style long options processing. Long options are recognized
without case sensitivity, and they may be abbreviated.
3. Environment variable initializations, *Note environrc::.
4. Initialization from configuration files (aka RC or INI files), and
saving the option state back into one, *Note loading rcfile::.
5. Config files may be partitioned. One config file may be used by
several programs by partitioning it with lines containing,
`[PROGRAM_NAME]' or `', *Note loading rcfile::.
6. Config files may contain AutoOpts directives. `' may be used to set `AutoOpts' option processing
options. Viz., GNU usage layout versus `AutoOpts' conventional
layout, and `misuse-usage' versus `no-misuse-usage', *Note usage
attributes::.
7. Options may be marked as `dis-abled' with a disablement prefix.
Such options may default to either an enabled or a disabled state.
You may also provide an enablement prefix, too, e.g.,
`--allow-mumble' and `--prevent-mumble' (*note Common
Attributes::).
8. Verify that required options are present between the minimum and
maximum number of times on the command line. Verify that
conflicting options do not appear together. Verify that options
requiring the presence of other options are, in fact, used in the
presence of other options. See *Note Common Attributes::, and
*Note Option Conflict Attributes::.
9. There are several *note automatically supported options: automatic
options. They will have short flags if any options have option
flags and the flags are not suppressed. The associated flag may
be altered or suppressed by specifying no value or an alternate
character for `xxx-value;' in the option definition file. `xxx'
is the name of the option below:
`--help'
`--more-help'
These are always available. `--more-help' will pass the full
usage text through a pager.
`--usage'
This is added to the option list if `usage-opt' is specified.
It yields the abbreviated usage to `stdout'.
`--version'
This is added to the option list if `version = xxx;' is
specified.
`--load-opts'
`--save-opts'
These are added to the option list if `homerc' is specified.
Mostly. If, `disable-save' is specified, then `--save-opts'
is disabled.
10. Various forms of main procedures can be added to the output, *Note
Generated main::. There are four basic forms:
a. A program that processes the arguments and writes to standard
out portable shell commands containing the digested options.
b. A program that will generate portable shell commands to parse
the defined options. The expectation is that this result
will be copied into a shell script and used there.
c. A `for-each' main that will invoke a named function once for
either each non-option argument on the command line or, if
there are none, then once for each non-blank, non-comment
input line read from stdin.
d. A main procedure of your own design. Its code can be
supplied in the option description template or by
incorporating another template.
11. There are several methods for handling option arguments.
* nothing (*note OPT_ARG::) option argument strings are
globally available.
* user supplied (*note Option Argument Handling::)
* stack option arguments (*note Option Argument Handling::)
* integer numbers (*note arg-type number::)
* true or false valued (*note arg-type boolean::)
* enumerated list of names (*note arg-type keyword::)
* an enumeration (membership) set (*note arg-type set
membership::)
* a list of name/value pairs (option `subopts') (*note arg-type
hierarchy::)
* a time duration or a specific time and date
* validated file name (*note arg-type file name::)
* optional option argument (*note arg-optional::)
12. The generated usage text can be emitted in either AutoOpts
standard format (maximizing the information about each option), or
GNU-ish normal form. The default form is selected by either
specifying or not specifying the `gnu-usage' attribute (*note
information attributes::). This can be overridden by the user
himself with the `AUTOOPTS_USAGE' environment variable. If it
exists and is set to the string `gnu', it will force GNU-ish style
format; if it is set to the string `autoopts', it will force
AutoOpts standard format; otherwise, it will have no effect.
13. The usage text and many other strings are stored in a single
character array (*note string table functions: SCM
string-table-new.). This reduces fixup costs when loading the
program or library. The downside is that if GCC detects that any
of these strings are used in a printf format, you may get the
warning, `embedded '0円' in format'. To eliminate the warning, you
must provide GCC with the `-Wno-format-contains-nul' option.
14. If you compile with `ENABLE_NLS' defined and `_()' defined to a
localization function (e.g. `gettext(3GNU)'), then the option
processing code will be localizable (*note i18n::). Provided also
that you do not define the `no-xlate' attribute to _anything_
(*note presentation attributes::).
You should also ensure that the `ATTRIBUTE_FORMAT_ARG()' gets
`#define'-ed to something useful. There is an autoconf macro
named `AG_COMPILE_FORMAT_ARG' in `ag_macros.m4' that will set it
appropriately for you. If you do not do this, then translated
formatting strings may trigger GCC compiler warnings.
15. Provides a callable routine to parse a text string as if it were
from one of the rc/ini/config files, hereafter referred to as a
configuration file.
16. By adding a `doc' and `arg-name' attributes to each option,
AutoGen will also be able to produce a man page and the `invoking'
section of a texinfo document.
17. Intermingled option processing. AutoOpts options may be
intermingled with command line operands and options processed with
other parsing techniques. This is accomplished by setting the
`allow-errors' (*note program attributes::) attribute. When
processing reaches a point where `optionProcess' (*note
libopts-optionProcess::) needs to be called again, the current
option can be set with `RESTART_OPT(n)' (*note RESTART_OPT::)
before calling `optionProcess'.
See: *Note library attributes::.
18. Library suppliers can specify command line options that their
client programs will accept. They specify option definitions that
get `#include'-d into the client option definitions and they
specify an "anchor" option that has a callback and must be invoked.
That will give the library access to the option state for their
options.
19. library options. An AutoOpt-ed library may export its options for
use in an AutoOpt-ed program. This is done by providing an option
definition file that client programs `#include' into their own
option definitions. See "AutoOpt-ed Library for AutoOpt-ed
Program" (*note lib and program::) for more details.
7.2 AutoOpts Licensing
======================
When AutoGen is installed, the AutoOpts project is installed with it.
AutoOpts includes various AutoGen templates and a pair of shared
libraries. These libraries may be used under the terms of version 3 of
the GNU Lesser General Public License (LGPL).
One of these libraries (`libopts') is needed by programs that are
built using AutoOpts generated code. This library is available as a
separate "tear-off" source tarball. It is redistributable for use
under either of two licenses: The above mentioned GNU Lesser General
Public License, and the advertising-clause-free BSD license. Both of
these license terms are incorporated into appropriate COPYING files
included with the `libopts' source tarball. This source may be
incorporated into your package with the following simple commands:
rm -rf libopts libopts-*
gunzip -c `autoopts-config libsrc` | \
tar -xvf -
mv libopts-*.*.* libopts
View the `libopts/README' file for further integration information.
7.3 Developer and User Notes
============================
The formatting of the usage message can be controlled with the use of
the `AUTOOPTS_USAGE' environment variable. If it contains any of five
possible comma separated values, it will affect `libopts' behavior.
Any extraneous or conflicting data will cause its value to be ignored.
If the program attributes `long-usage' and `short-usage' have been
specified (*note Usage and Version Info Display: usage attributes.),
these strings are used for displaying full usage and abbreviated usage.
"Full usage" is used when usage is requested, "abbreviated usage" when
a usage error is detected. If these strings are not provided, the
usage text is computed.
The `AUTOOPTS_USAGE' environment variable may be set to the comma
and/or white space separated list of the following strings:
`compute'
Ignore the provision of `long-usage' and `short-usage' attributes,
and compute the usage strings. This is useful, for example, if
you wish to regenerate the basic form of these strings and either
tweak them or translate them. The methods used to compute the
usage text are not suitable for translation.
`gnu'
The format of the usage text will be displayed in GNU-normal form.
The default display for `--version' will be to include a note on
licensing terms.
`autoopts'
The format of the extended usage will be in AutoOpts' native
layout. The default version display will be one line of text with
the last token the version. `gnu' and `autoopts' conflict and may
not be used together.
`no-misuse-usage'
When an option error is made on the command line, the abbreviated
usage text will be suppressed. An error message and the method
for getting full usage information will be displayed.
`misuse-usage'
When an option error is made on the command line, the abbreviated
usage text will be shown. `misuse-usage' and `no-misuse-usage'
conflict and may not be used together.
`misuse-usage' and `autoopts' are the defaults. These defaults may
be flipped to `no-misuse-usage' and `gnu' by specifying `gnu-usage' and
`no-misuse-usage' program attributes, respectively, in the option
definition file.
Note for developers:
The templates used to implement AutoOpts depend heavily upon token
pasting. That mens that if you name an option, `debug', for example,
the generated header will expect to be able to emit `#define' macros
such as this:
#define DESC(n) (autogenOptions.pOptDesc[INDEX_OPT_## n])
and expect `DESC(DEBUG)' to expand correctly into
`(autogenOptions.pOptDesc[INDEX_OPT_DEBUG])'. If `DEBUG' is `#defined'
to something else, then that something else will be in the above
expansion.
If you discover you are having strange problems like this, you may
wish to use some variation of the `guard-option-names' *Note program
attributes::.
7.4 Quick Start
===============
Since it is generally easier to start with a simple example than it is
to look at the options that AutoGen uses itself, here is a very simple
AutoOpts example. You can copy this example out of the Info file and
into a source file to try it. You can then embellish it into what you
really need. For more extensive examples, you can also examine the help
output and option definitions for the commands `columns', `getdefs' and
`autogen' itself.
If you are looking for a more extensive example, you may search the
autogen sources for files named `*opts.def'. `xml2ag' is ridiculous
and `autogen' is very lengthy, but `columns' and `getdefs' are not too
difficult. The `sharutils' sources are fairly reasonable, too.
7.4.1 Example option requirements
---------------------------------
For our simple example, assume you have a program named `check' that
takes two options:
1. A list of directories to check over for whatever it is `check'
does. You want this option available as a POSIX-style flag option
and a GNU long option. You want to allow as many of these as the
user wishes.
2. An option to show or not show the definition tree being used.
Only one occurrence is to be allowed, specifying one or the other.
7.4.2 Example option definitions
--------------------------------
First, specify your program attributes and its options to AutoOpts, as
with the following example.
AutoGen Definitions options;
prog-name = check;
prog-title = "Checkout Automated Options";
long-opts;
gnu-usage; /* GNU style preferred to default */
main = { main-type = shell-process; };
flag = {
name = check-dirs;
value = L; /* flag style option character */
arg-type = string; /* option argument indication */
max = NOLIMIT; /* occurrence limit (none) */
stack-arg; /* save opt args in a stack */
descrip = "Checkout directory list";
doc = 'name of each directory that is to be "checked out".';
};
flag = {
name = show_defs;
descrip = "Show the definition tree";
disable = dont; /* mark as enable/disable type */
/* option. Disable as `dont-' */
doc = 'disable, if you do not want to see the tree.';
};
7.4.3 Build the example options
-------------------------------
This program will produce a program that digests its options and writes
the values as shell script code to stdout. Run the following short
script to produce this program:
base=check
BASE=`echo $base | tr '[a-z-]' '[A-Z_]'`
cflags="-DTEST_${BASE} `autoopts-config cflags`"
ldflags="`autoopts-config ldflags`"
autogen ${base}.def
cc -o ${base} -g ${cflags} ${base}.c ${ldflags}
./${base} --help
7.4.4 Example option help text
------------------------------
Running the build commands yields:
exit 0
7.4.5 Using the example options
-------------------------------
Normally, however, you would not use the `main' clause. Instead, the
file would be named something like `checkopt.def', you would compile
`checkopt.c' the usual way, and link the object with the rest of your
program.
The options are processed by calling `optionProcess' (*note
libopts-optionProcess::):
main( int argc, char** argv )
{
{
int optct = optionProcess( &checkOptions, argc, argv );
argc -= optct;
argv += optct;
}
The options are tested and used as in the following fragment.
`ENABLED_OPT' is used instead of `HAVE_OPT' for the `--show-defs'
option because it is an enabled/disabled option type:
if ( ENABLED_OPT( SHOW_DEFS )
&& HAVE_OPT( CHECK_DIRS )) {
int dirct = STACKCT_OPT( CHECK_DIRS );
char** dirs = STACKLST_OPT( CHECK_DIRS );
while (dirct--> 0) {
char* dir = *dirs++;
...
7.4.6 Example option documentation
----------------------------------
The `doc' clauses are used in the flag stanzas for man pages and texinfo
invoking documentation. With the definition file described above, the
two following commands will produce the two documentation files
`check.1' and `invoke-check.texi'. The latter file will be generated
as a chapter, rather than a section or subsection.
autogen -Tagman-cmd check.def
autogen -DLEVEL=chapter -Tagtexi-cmd -binvoke-check.texi check.def
The result of which is left as an exercise for the reader.
A lot of magic happens to make this happen. The rest of this
chapter will describe the myriad of option attributes supported by
AutoOpts. However, keep in mind that, in general, you won't need much
more than what was described in this "quick start" section.
7.5 Option Definitions
======================
AutoOpts uses an AutoGen definitions file for the definitions of the
program options and overall configuration attributes. The complete
list of program and option attributes is quite extensive, so if you are
reading to understand how to use AutoOpts, I recommend reading the
"Quick Start" section (*note Quick Start::) and paying attention to the
following:
1. `prog-name', `prog-title', and `argument', program attributes,
*Note program attributes::.
2. `name' and `descrip' option attributes, *Note Required
Attributes::.
3. `value' (flag character) and `min' (occurrence counts) option
attributes, *Note Common Attributes::.
4. `arg-type' from the option argument specification section, *Note
Option Arguments::.
5. Read the overall how to, *Note Using AutoOpts::.
6. Highly recommended, but not required, are the several "man" and
"info" documentation attributes, *Note documentation attributes::.
Keep in mind that the majority are rarely used and can be safely
ignored. However, when you have special option processing requirements,
the flexibility is there.
7.5.1 Program Description Attributes
------------------------------------
The following global definitions are used to define attributes of the
entire program. These generally alter the configuration or global
behavior of the AutoOpts option parser. The first two are required of
every program. The third is required if there are to be any left over
arguments (operands) after option processing. The rest have been
grouped below. Except as noted, there may be only one copy of each of
these definitions:
`prog-name'
This attribute is required. Variable names derived from this name
are derived using `string->c_name!' (*note SCM string->c-name!::).
`prog-title'
This attribute is required and may be any descriptive text.
`argument'
This attribute is required if your program uses operand arguments.
It specifies the syntax of the arguments that *follow* the options.
It may not be empty, but if it is not supplied, then option
processing must consume all the arguments. If it is supplied and
starts with an open bracket (`['), then there is no requirement on
the presence or absence of command line arguments following the
options. Lastly, if it is supplied and does not start with an
open bracket, then option processing must *not* consume all of the
command line arguments.
`config-header'
If your build has a configuration header, it must be included
before anything else. Specifying the configuration header file
name with this attribute will cause that to happen.
7.5.1.1 Usage and Version Info Display
......................................
These will affect the way usage is seen and whether or not version
information gets displayed.
`full-usage'
If this attribute is provided, it may specify the full length
usage text, or a variable name assignable to a `char const *'
pointer, or it may be empty. The meanings are determined by the
length.
* If not provided, the text will be computed as normal.
* If the length is zero, then the usage text will be derived
from the current settings and inserted as text into the
generated .c file.
* If the length is 1 to 32 bytes, then it is presumed to be a
variable name that either points to or is an array of const
chars.
* If it is longer than that, it is presumed to be the help text
itself. This text will be inserted into the generated .c
file.
This string should be readily translatable. Provision will be made
to translate it if this is provided, if the source code is
compiled with `ENABLE_NLS' defined, and `no-xlate' has not been
set to the value _anything_. The untranslated text will be handed
to `dgettext("libopts", txt)' and then `gettext(txt)' for
translation, one paragraph at a time.
To facilitate the creation and maintenance of this text, you can
force the string to be ignored and recomputed by specifying
AUTOOPTS_USAGE=compute
in the environment and requesting help or usage information. See
*Note Developer and User Notes: Caveats.
`short-usage'
If this attribute is provided, it is used to specify an abbreviated
version of the usage text. This text is constructed in the same
way as the `full-usage', described above.
`gnu-usage'
AutoOpts normaly displays usage text in a format that provides more
information than the standard GNU layout, but that also means it is
not the standard GNU layout. This attribute changes the default to
GNU layout, with the `AUTOOPTS_USAGE' environment variable used to
request `autoopts' layout. See *Note Developer and User Notes:
Caveats.
`usage-opt'
I apologize for too many confusing usages of usage. This
attribute specifies that `--usage' and/or `-u' be supported. The
help (usage) text displayed will be abbreviated when compared to
the default help text.
`no-misuse-usage'
When there is a command line syntax error, by default AutoOpts will
display the abbreviated usage text, rather than just a one line
"you goofed it, ask for usage" message. You can change the default
behavior for your program by supplying this attribute. The user
may override this choice, again, with the `AUTOOPTS_USAGE'
environment variable. See *Note Developer and User Notes: Caveats.
`prog-group'
The version text in the `getopt.tpl' template will include this
text in parentheses after the program name, when this attribute is
specified. For example:
mumble (stumble) 1.0
says that the `mumble' program is version 1.0 and is part of the
`stumble' group of programs.
`usage'
If your program has some cleanup work that must be done before
exiting on usage mode issues, or if you have to customize the
usage message in some way, specify this procedure and it will be
called instead of the default `optionUsage()' function. For
example, if a program is using the curses library and needs to
invoke the usage display, then you must arrange to call `endwin()'
before invoking the library function `optionUsage()'. This can be
handled by specifying your own usage function, thus:
void
my_usage(tOptions * opts, int ex)
{
if (curses_window_active)
endwin();
optionUsage(opts, ex);
}
`version'
Specifies the program version and activates the VERSION option,
*Note automatic options::.
7.5.1.2 Program Configuration
.............................
Programs may be "pre-configured" before normal command line options are
processed (See *note Immediate Action Attributes: Immediate Action.).
How configuration files and environment variables are handled get
specified with these attributes.
`disable-load'
`disable-save'
Indicates that the command line usage of `--load-opts' and/or
`--save-opts' are disallowed.
`environrc'
Indicates looking in the environment for values of variables named,
`PROGRAM_OPTNAME' or `PROGRAM', where `PROGRAM' is the upper cased
C-NAME of the program and `OPTNAME' is the upper cased C-NAME of a
specific option. The contents of the `PROGRAM' variable, if
found, are tokenized and processed. The contents of
`PROGRAM_OPTNAME' environment variables are taken as the option
argument to the option nameed `--optname'.
`homerc'
Specifies that option settings may be loaded from and stored into
configuration files. Each instance of this attribute is either a
directory or a file using a specific path, a path based on an
environment variable or a path relative to installation
directories. The method used depends on the name. If the one
entry is empty, it enables the loading and storing of settings,
but no specific files are searched for. Otherwise, a series of
configuration files are hunted down and, if found, loaded.
If the first character of the `homerc' value is not the dollar
character (`$'), then it is presumed to be a path name based on the
current directory. Otherwise, the method depends on the second
character:
`$'
The path is relative to the directory where the executable
was found.
`@'
The path is relative to the package data directory, e.g.
`/usr/local/share/autogen'.
`[a-zA-Z]'
The path is derived from the named environment variable.
Use as many as you like. The presence of this attribute activates
the `--save-opts' and `--load-opts' options. However, saving into
a file may be disabled with the `disable-save'. *Note loading
rcfile::. See the `optionMakePath(3AGEN)' man page for
excruciating details.
`rcfile'
Specifies the configuration file name. This is only useful if you
have provided at least one `homerc' attribute.
default: .rc
`vendor-opt'
This option implements the `-W' vendor option command line option.
For POSIX specified utilities, the options are constrained to the
options that are specified by POSIX. Extensions should be handled
with `-W' command line options, the short flag form. Long option
name processing must be disabled. In fact, the `long-opts'
attribute must not be provided, and some options must be specified
without flag values.
The `-W long-name' is processed by looking up the long option name
that follows it. It cannot be a short flag because that would
conflict with the POSIX flag name space. It will be processed as
if long options were accepted and `--long-name' were found on the
command line.
7.5.1.3 Programming Details
...........................
These attributes affect some of the ways that the option data are used
and made available to the program.
`config-header'
The contents of this attribute should be just the name of the
configuration file. A "#include" naming this file will be
inserted at the top of the generated header.
`exit-name'
`exit-desc'
These values should be defined as indexed values, thus:
exit-name[0] = success;
exit-desc[0] = 'Successful program execution.';
exit-name[1] = failure;
exit-desc[1] = 'The operation failed or command syntax was not valid.';
By default, all programs have these effectively defined for them.
They may be overridden by explicitly defining any or all of these
values. Additional names and descriptions may be defined. They
will cause an enumeration to be emitted, like this one for
`getdefs':
typedef enum {
GETDEFS_EXIT_SUCCESS = 0,
GETDEFS_EXIT_FAILURE = 1
} getdefs_exit_code_t;
which will be augmented by any `exit-name' definitions beyond `1'.
Some of the generated code will exit non-zero if there is an
allocation error. This exit will always be code `1', unless there
is an exit named `no_mem' or `nomem'. In that case, that value
will be used. Additionally, if there is such a value, and if
`die-code' is specified, then a function `nomem_err(size_t len,
char const * what)' will be emitted as an inline function for
reporting out-of-memory conditions.
`usage-message'
This attribute will cause two procedures to be added to the code
file: `usage_message()' and `vusage_message()', with any
applicable prefix (see `prefix', below). They are declared in the
generated header, thus:
extern void vusage_message(char const * fmt, va_list ap);
extern void usage_message(char const * fmt, ...);
These functions print the message to `stderr' and invoke the usage
function with the exit code set to `1' (`EXIT_FAILURE').
`die-code'
This tells AutoOpts templates to emit code for `vdie()', `die()',
`fserr()', and, possibly the `nomem_err()' functions. The latter
is emitted if an exit name of `no-mem' or `nomem' is specified.
If the `die-code' is assigned a text value, then that code will be
inserted in the `vdie' function immediately before it prints the
death rattle message.
The profiles for these functions are:
extern void vdie( int exit_code, char const * fmt, va_list);
extern void die( int exit_code, char const * fmt, ...);
extern void fserr(int exit_code, char const * op, char const * fname);
static inline void
nomem_err(size_t sz, char const * what) {...}
`no-return'
If `usage-message' or `die-code' are specified, you may also
specify that the generated functions are marked as "noreturn" with
this attribute. If this attribute is not empty, then the
specified string is used instead of "noreturn". If "noreturn" has
not been defined before these functions are declared, then it will
be "#define"-d to the empty string. No such protection is made
for any non-default value. These functions will be declared
"extern noreturn void".
`export'
This string is inserted into the .h interface file. Generally
used for global variables or `#include' directives required by
`flag-code' text and shared with other program text. Do not
specify your configuration header (`config.h') in this attribute
or the `include' attribute, however. Instead, use
`config-header', above.
`guard-option-names'
AutoOpts generates macros that presume that there are no `cpp'
macros with the same name as the option name. For example, if you
have an option named, `--debug', then you must not use `#ifdef
DEBUG' in your code. If you specify this attribute, every option
name will be guarded. If the name is `#define'-d, then a warning
will be issued and the name undefined. If you do not specify this
and there is a conflict, you will get strange error messages.
This attribute may be set to any of four recognized states:
* Not defined. AutoOpts will behave as described above.
* Defined, but set to the empty string. Text will be emitted
into the header to undefine (`#undef') any conflicting
preprocessor macros. The code will include compiler warnings
(via `#warning'). Some compilers are not ANSI-C-99 compliant
yet and will error out on those warnings. You may compile
with `-DNO_OPTION_NAME_WARNINGS' to silence or mostly silence
them.
* Defined and set to the string, `no-warning'. All of the
needed `#undef's will be emitted, without any conflict
checking `#warning' directives emitted.
* Defined and set to the string, `full-enum'. The option
manipulation preprocessor macros will not token paste the
option names to the index enumeration prefix. e.g. you will
need to use `HAVE_OPT(INDEX_OPT_DEBUG)' instead of
`HAVE_OPT(DEBUG)'.
`include'
This string is inserted into the .c file. Generally used for
global variables required only by `flag-code' program text.
`no-libopts'
If you are going to handle your option processing with the
`getopt.tpl' template instead of using libopts, then specify this
attribute. It will suppress mention of `--more-help' in the
generated documentation. (`getopt_long' does not support
`--more-help'.)
`prefix'
This value is inserted into *all* global names. This will
disambiguate them if more than one set of options are to be
compiled into a single program.
7.5.1.4 User Presentation Attributes
....................................
Attributes that affect the user's experience.
`allow-errors'
The presence of this attribute indicates ignoring any command line
option errors. This may also be turned on and off by invoking the
macros `ERRSKIP_OPTERR' and `ERRSTOP_OPTERR' from the generated
interface file.
`long-opts'
Presence indicates GNU-standard long option processing. Partial
name matches are accepted, if they are at least two characters
long and the partial match is unique. The matching is not case
sensitive, and the underscore, hyphen and carat characters are all
equivalent (they match).
If any options do not have an option value (flag character)
specified, and least one does specify such a value, then you must
specify `long-opts'. If none of your options specify an option
value (flag character) and you do not specify `long-opts', then
command line arguments are processed in "named option mode". This
means that:
* Every command line argument must be a long option.
* The flag markers `-' and `--' are completely optional.
* The `argument' program attribute is disallowed.
* One of the options may be specified as the default (as long
as it has a required option argument).
`no-xlate'
Modifies when or whether option names get translated. If provided,
it must be assigned one of these values:
`opt-cfg'
to suppress option name translation for configuration file
and and environment variable processing.
`opt'
to suppress option name translation completely. The usage
text will always be translated if `ENABLE_NLS' is defined and
you have translations for that text.
`anything'
Specifies disabling all internationalization support for
option code, completely.
See also the various `XLAT' interface entries in the AutoOpts
Programmatic Interface section (*note AutoOpts API::).
`reorder-args'
Normally, POSIX compliant commands do not allow for options to be
interleaved with operands. If this is necessary for historical
reasons, there are two approaches available:
* Allow `optionProcess' to return the index of the operand like
it normally does and process the operand(s). When an operand
is encountered that starts with a hyphen, then set the
AutoOpts current index with the `RESTART_OPT' macro (see
*note RESTART_OPT::), and re-invoke `optionProcess'. This
will also allow you to process the operands in context.
* Specify this attribute. AutoOpts will re-order the command
arguments so that the operands appear (in the original order)
at the end of the argument list. Differing configuration
state is not possible to detect after all options have been
processed.
`resettable'
Specifies that the `--reset-option' command line option is to be
supported. This makes it possible to suppress any setting that
might be found in a configuration file or environment variable.
7.5.2 Options for Library Code
------------------------------
Some libraries provide their own code for processing command line
options, and this may be used by programs that utilize AutoOpts. You
may also wish to write a library that gets configured with AutoOpts
options and config files. Such a library may either supply its own
configury routine and process its own options, or it may export its
option descriptions to programs that also use AutoOpts. This section
will describe how to do all of these different things.
7.5.2.1 AutoOpt-ed Library for AutoOpt-ed Program
.................................................
The library source code must provide an option definition file that
consists of only the attribute `library' and `flag' entries. The
`library' attribute does not need any associated value, so it will
generally appeary by itself on a line folowed by a semi-colon. The
first `flag' entry must contain the following attributes:
`name'
This name is used in the construction of a global pointer of type
`tOptDesc const*'. It is always required.
`documentation'
It tells `AutoOpts' that this option serves no normal purpose. It
will be used to add usage clarity and to locate option descriptors
in the library code.
`descrip'
This is a string that is inserted in the extended usage display
before the options specific to the current library. It is always
required.
`lib-name'
This should match the name of the library. This string is also
used in the construction of the option descriptor pointer name.
In the end, it looks like this:
extern tOptDesc const* <>_<>_optDesc_p;
and is used in the macros generated for the library's `.h' file.
In order to compile this `AutoOpts' using library, you must create a
special header that is not used by the client program. This is
accomplished by creating an option definition file that contains
essentially exactly the following:
AutoGen definitions options;
prog-name = does-not-matter; // but is always required
prog-title = 'also does not matter'; // also required
config-header = 'config.h'; // optional, but common
library;
#include library-options-only.def
and nothing else. AutoGen will produce only the `.h' file. You may
now compile your library, referencing just this `.h' file. The macros
it creates will utilize a global variable that will be defined by the
`AutoOpts'-using client program. That program will need to have the
following `#include' in its option definition file:
#include library-options-only.def
All the right things will magically happen so that the global variables
named <>_<>_OPTDESC_P are initialized correctly. For
an example, please see the `AutoOpts' test script:
`autoopts/test/library.test'.
7.5.2.2 AutoOpt-ed Library for Regular Program
..............................................
In this case, your library must provide an option processing function
to a calling program. This is accomplished by setting the
`allow-errors' global option attribute. Each time your option handling
function is called, you must determine where your scan is to resume and
tell the AutoOpts library by invoking:
RESTART_OPT(next_arg_index);
and then invoke `not_opt_index = optionProcess(...)'. The
`not_opt_index' value can be used to set `optind', if that is the
global being used to scan the program argument array.
In this method, do *NOT* utilize the global `library' attribute.
Your library must specify its options as if it were a complete program.
You may choose to specify an alternate `usage()' function so that usage
for other parts of the option interface may be displayed as well. See
"Program Information Attributes" (*note information attributes::).
At the moment, there is no method for calling `optionUsage()' telling
it to produce just the information about the options and not the program
as a whole. Some later revision after somebody asks.
7.5.2.3 AutoOpt-ed Program Calls Regular Library
................................................
As with providing an `AutoOpt'-ed library to a non-`AutoOpt'-ed
program, you must write the option description file as if you were
writing all the options for the program, but you should specify the
`allow-errors' global option attribute and you will likely want an
alternate `usage()' function (see "Program Information Attributes"
*note information attributes::). In this case, though, when
`optionProcess()' returns, you need to test to see if there might be
library options. If there might be, then call the library's exported
routine for handling command line options, set the
next-option-to-process with the `RESTART_OPT()' macro, and recall
`optionProcess()'. Repeat until done.
7.5.3 Program Information Attributes
------------------------------------
These attributes are used to define how and what information is
displayed to the user of the program.
`copyright'
The `copyright' is a structured value containing three to five
values. If `copyright' is used, then the first three are required.
1. `date' - the list of applicable dates for the copyright.
2. `owner' - the name of the copyright holder.
3. `type' - specifies the type of distribution license.
AutoOpts/AutoGen supports the text of the GNU Public License
(`gpl'), the GNU Lesser General Public License with Library
extensions (`lgpl'), the Modified Free BSD license (`mbsd')
and a few others. Other licenses may be specified, but you
must provide your own license file. The list of license
files provided by AutoOpts may be seen by typing:
ls $(autoopts-config pkgdatadir)/*.lic
4. `text' - the text of the copyright notice. This must be
provided if `type' is set to `NOTE'.
5. `author' - in case the author name is to appear in the
documentation and is different from the copyright owner.
6. `eaddr' - email address for receiving praises and complaints.
Typically that of the author or copyright holder.
An example of this might be:
copyright = {
date = "1992-2015";
owner = "Bruce Korb";
eaddr = 'bkorb@gnu.org';
type = GPL;
};
`detail'
This string is added to the usage output when the HELP option is
selected.
`explain'
Gives additional information whenever the usage routine is invoked.
`package'
The name of the package the program belongs to. This will appear
parenthetically after the program name in the version and usage
output, e.g.: `autogen (GNU autogen) - The Automated Program
Generator'.
`preserve-case'
This attribute will not change anything except appearance.
Normally, the option names are all documented in lower case.
However, if you specify this attribute, then they will display in
the case used in their specification. Command line options will
still be matched without case sensitivity. This is useful for
specifying option names in camel-case.
`prog-desc *and*'
`opts-ptr'
These define global pointer variables that point to the program
descriptor and the first option descriptor for a library option.
This is intended for use by certain libraries that need command
line and/or initialization file option processing. These
definitions have no effect on the option template output, but are
used for creating a library interface file. Normally, the first
"option" for a library will be a documentation option that cannot
be specified on the command line, but is marked as `settable'.
The library client program will invoke the `SET_OPTION' macro
which will invoke a handler function that will finally set these
global variables.
`usage'
Optionally names the usage procedure, if the library routine
`optionUsage()' does not work for you. If you specify `my_usage'
as the value of this attribute, for example, you will use a
procedure by that name for displaying usage. Of course, you will
need to provide that procedure and it must conform to this profile:
void my_usage( tOptions* pOptions, int exitCode )
`gnu-usage'
Normally, the default format produced by the `optionUsage'
procedure is AutoOpts Standard. By specifying this attribute, the
default format will be GNU-ish style. Either default may be
overridden by the user with the `AUTOOPTS_USAGE' environment
variable. If it is set to `gnu' or `autoopts', it will alter the
style appropriately. This attribute will conflict with the
`usage' attribute.
`reorder-args'
Some applications traditionally require that the command operands
be intermixed with the command options. In order to handle that,
the arguments must be reordered. If you are writing such an
application, specify this global option. All of the options (and
any associated option arguments) will be brought to the beginning
of the argument list. New applications should not use this
feature, if at all possible. This feature is disabled if
`POSIXLY_CORRECT' is defined in the environment.
7.5.4 Generating main procedures
--------------------------------
When AutoOpts generates the code to parse the command line options, it
has the ability to produce any of several types of `main()' procedures.
This is done by specifying a global structured value for `main'. The
values that it contains are dependent on the value set for the one
value it must have: `main-type'.
The recognized values for `main-type' are `guile', `shell-process',
`shell-parser', `main', `include', `invoke', and `for-each'.
7.5.4.1 guile: main and inner_main procedures
.............................................
When the `main-type' is specified to be `guile', a `main()' procedure
is generated that calls `gh_enter()', providing it with a generated
`inner_main()' to invoke. If you must perform certain tasks before
calling `gh_enter()', you may specify such code in the value for the `before-guile-boot'
attribute.
The `inner_main()' procedure itself will process the command line
arguments (by calling `optionProcess()', *note
libopts-optionProcess::), and then either invoke the code specified
with the `guile-main' attribute, or else export the parsed options to
Guile symbols and invoke the `scm_shell()' function from the Guile
library. This latter will render the program nearly identical to the
stock `guile(1)' program.
7.5.4.2 shell-process: emit Bourne shell results
................................................
This will produce a `main()' procedure that parses the command line
options and emits to `stdout' Bourne shell commands that puts the
option state into environment variables. This can be used within a
shell script as follows:
unset OPTION_CT
eval "`opt_parser \"$@\"`"
test ${OPTION_CT} -gt 0 && shift ${OPTION_CT}
If the option parsing code detects an error or a request for usage
or version, it will emit a command to exit with an appropriate exit
code to `stdout'. This form of `main' will cause all messages,
including requested usage and version information, to be emitted to
`stderr'. Otherwise, a numeric value for `OPTION_CT' is guaranteed to
be emitted, along with assignments for all the options parsed,
something along the lines of the following will be written to `stdout'
for evaluation:
OPTION_CT=4
export OPTION_CT
MYPROG_SECOND='first'
export MYPROG_SECOND
MYPROG_ANOTHER=1 # 0x1
export MYPROG_ANOTHER
If the arguments are to be reordered, however, then the resulting set
of operands will be emitted and `OPTION_CT' will be set to zero. For
example, the following would be appended to the above:
set -- 'operand1' 'operand2' 'operand3'
OPTION_CT=0
`OPTION_CT' is set to zero since it is not necessary to shift off any
options.
7.5.4.3 shell-parser: emit Bourne shell script
..............................................
This will produce a `main()' procedure that emits a shell script that
will parse the command line options. That script can be emitted to
`stdout' or inserted or substituted into a pre-existing shell script
file. Improbable markers are used to identify previously inserted
parsing text:
# # # # # # # # # # -- do not modify this marker --
The program is also pretty insistent upon starting its parsing script
on the second line.
7.5.4.4 main: user supplied main procedure
..........................................
You must supply a value for the `main-text' attribute. You may also
supply a value for `option-code'. If you do, then the `optionProcess'
invocation will not be emitted into the code. AutoOpts will wrap the
`main-text' inside of:
int
main( int argc, char** argv )
{
int res = <>;
{ // replaced by option-code, if that exists
int ct = optionProcess( &<>Options, argc, argv);
argc -= ct;
argv += ct;
}
<>
return res;
}
so you can most conveniently set the value with a `here string' (*note
here-string::):
code = <<- _EndOfMainProc_ <>
_EndOfMainProc_;
7.5.4.5 include: code emitted from included template
....................................................
You must write a template to produce your main procedure. You specify
the name of the template with the `tpl' attribute and it will be
incorporated at the point where AutoOpts is ready to emit the `main()'
procedure.
This can be very useful if, in your working environment, you have
many programs with highly similar `main()' procedures. All you need to
do is parameterize the variations and specify which variant is needed
within the `main' AutoOpts specification. Since you are coding the
template for this, the attributes needed for this variation would be
dictated by your template.
Here is an example of an `include' variation:
main = {
main-type = include;
tpl = "main-template.tpl";
};
7.5.4.6 invoke: code emitted from AutoGen macro
...............................................
You must write a template to produce your main procedure. That template
must contain a definition for the function specified with the `func'
attribute to this `main()' procedure specification. This variation
operates in much the same way as `include' (*note main include::)
method.
7.5.4.7 for-each: perform function on each operand
..................................................
This produces a main procedure that invokes a procedure once for each
operand on the command line (non-option arguments), *OR* once for each
non-blank, non-comment `stdin' input line. Leading and trailing white
space is trimmed from the input line and comment lines are lines that
are empty or begin with a comment character, defaulting to a hash ('#')
character.
*NB*: The `argument' program attribute (*note program attributes::)
must begin with the `[' character, to indicate that there are command
operands, but that they are optional.
For an example of the produced main procedure, in the `autoopts/test'
build directory, type the following command and look at `main.c':
make verbose TESTS=main.test
procedure to handle each argument
.................................
The `handler-proc' attribute is required. It is used to name the
procedure to call. That procedure is presumed to be external, but if
you provide the code for it, then the procedure is emitted as a static
procedure in the generated code.
This procedure should return 0 on success, a cumulative error code
on warning and exit without returning on an unrecoverable error. As
the cumulative warning codes are or-ed together, the codes should be
some sort of bit mask in order to be ultimately decipherable (if you
need to do that).
If the called procedure needs to cause a fail-exit, it is expected
to call `exit(3)' directly. If you want to cause a warning exit code,
then this handler function should return a non-zero status. That value
will be *OR*-ed into a result integer for computing the final exit
code. E.g., here is part of the emitted code:
int res = 0;
if (argc> 0) {
do {
res |= MY_HANDLER( *(argv++) );
} while (--argc> 0);
} else { ...
handler procedure type
......................
If you do not supply the `handler-type' attribute, your handler
procedure must be the default type. The profile of the procedure must
be:
int MY_HANDLER(char const * pz_entry);
However, if you do supply this attribute, you may set the value to any
of four alternate flavors:
`name-of-file'
This is essentially the same as the default handler type, except
that before your procedure is invoked, the generated code has
verified that the string names an existing file. The profile is
unchanged.
`file-X'
Before calling your procedure, the file is f-opened according to
the `X', where `X' may be any of the legal modes for `fopen(3C)'.
In this case, the profile for your procedure must be:
int MY_HANDLER(char const * pz_fname, FILE * entry_fp);
When processing inputs as file pointer stream files, there are
several ways of treating standard input. It may be an ordinary
input file, or it may contain a list of files to operate on.
If the file handler type is more specifically set to `file-r' and
a command line operand consists of a single hyphen, then MY_HANDLER
will be called with `entry_fp' set to `stdin' and the `pz_fname'
set to the translatable string, "standard input". Consequently,
in this case, if the input list is being read from `stdin', a line
containing a hyphen by itself will be ignored.
`stdin-input'
This attribute specifies that standard input is a data input file.
By default, `for-each' main procedures will read standard input for
operands if no operands appear on the command line. If there are
operands after the command line options, then standard input is
typically ignored. It can always be processed as an input data
file, however, if a single bare hyphen is put on the command line.
`text-of-file'
`some-text-of-file'
Before calling your procedure, the contents of the file are read
or mapped into memory. (Excessively large files may cause
problems.) The `some-text-of-file' disallows empty files. Both
require regular files. In this case, the profile for your
procedure must be:
program_exit_code_t
MY_HANDLER(char const * fname, char * file_text,
size_t text_size);
Note that though the `file_text' is not `const', any changes made
to it are not written back to the original file. It is merely a
memory image of the file contents. Also, the memory allocated to
hold the text is `text_size + 1' bytes long and the final byte is
always `NUL'. The file contents need not be text, as the data are
read with the `read(2)' system call.
`file_text' is automatically freed, unless you specify a `handler-frees'
attribute. Then your code must `free(3)' the text.
If you select one of these file type handlers, then on access or
usage errors the `PROGRAM_EXIT_FAILURE' exit code will, by default, be
or-ed into the final exit code. This can be changed by specifying the
global `file-fail-code' attribute and naming a different value. That
is, something other than `failure'. You may choose `success', in which
case file access issues will not affect the exit code and the error
message will not be printed.
code for handler procedure
..........................
With the `MYHANDLER-code' attribute, you provide the code for your
handler procedure in the option definition file. Note that the
spelling of this attribute depends on the name provided with the
`handler-proc' attribute, so we represent it here with `MYHANDLER' as a
place holder. As an example, your `main()' procedure specification
might look something like this:
main = {
main-type = for-each;
handler-proc = MYHANDLER;
MYHANDLER-code = <<- EndOfMyCode /* whatever you want to do */ EndOfMyCode; }; and instead of an emitted external reference, a procedure will be emitted that looks like this: static int MYHANDLER( char const* pz_entry ) { int res = 0; <>
return res;
}
for-each main procedure options
...............................
These attributes affect the main procedure and how it processes each
argument or input line.
`interleaved'
If this attribute is specified, then options and operands may be
interleaved. Arguments or input lines beginning with a hyphen will
cause it to be passed through to an option processing function and
will take effect for the remainder of the operands (or input lines)
processed.
`main-init'
This is code that gets inserted after the options have been
processed, but before the handler procs get invoked.
`main-fini'
This is code that gets inserted after all the entries have been
processed, just before returning from `main()'.
`comment-char'
When reading operands from standard input, if you wish comment
lines to start with a character other than a hash (`#') character,
then specify one character with this attribute. If string value
is empty, then only blank lines will be considered comments.
7.5.5 Option Attributes
-----------------------
For each option you wish to specify, you must have a block macro named
`flag' defined. There are two required attributes: `name' and
`descrip'. If any options do not have a `value' (traditional flag
character) attribute, then the `long-opts' program attribute must also
be defined. As a special exception, if no options have a `value' *and*
`long-opts' is not defined *and* `argument' is not defined, then all
arguments to the program are named options. In this case, the `-' and
`--' command line option markers are optional.
7.5.5.1 Required Attributes
...........................
Every option must have exactly one copy of both of these attributes.
`name'
Long name for the option. Even if you are not accepting long
options and are only accepting flags, it must be provided.
AutoOpts generates private, named storage that requires this name.
This name also causes a `#define'-d name to be emitted. It must
not conflict with any other names you may be using in your program.
For example, if your option name is, `debug' or `munged-up', you
must not use the `#define' names `DEBUG' (or `MUNGED_UP') in your
program for non-AutoOpts related purposes. They are now used by
AutoOpts.
Sometimes (most especially under Windows), you may get a surprise.
For example, `INTERFACE' is apparently a user space name that one
should be free to use. Windows usurps this name. To solve this,
you must do one of the following:
1. Change the name of your option
2. add the program attribute (*note program attributes::):
export = '#undef INTERFACE';
3. add the program attribute:
guard-option-names;
`descrip'
Except for documentation options, a *very* brief description of the
option. About 40 characters on one line, maximum, not counting
any texinfo markups. Texinfo markups are stripped before printing
in the usage text. It appears on the `usage()' output next to the
option name.
If, however, the option is a documentation option, it will appear
on one or more lines by itself. It is thus used to visually
separate and comment upon groups of options in the usage text.
7.5.5.2 Common Option Attributes
................................
These option attributes are optional. Any that do appear in the
definition of a flag, may appear only once.
`value'
The flag character to specify for traditional option flags, e.g.,
`-L'.
`max'
Maximum occurrence count (invalid if DISABLE present). The
default maximum is 1. `NOLIMIT' can be used for the value,
otherwise it must be a number or a `#define' that evaluates to a
number.
`min'
Minimum occurrence count. If present, then the option *must*
appear on the command line. Do not define it with the value zero
(0).
`must-set'
If an option must be specified, but it need not be specified on
the command line, then specify this attribute for the option.
`deprecated'
There are two effects to this attribute: the usage text will not
show the option, and the generated documentation will mark it with:
_NOTE: THIS OPTION IS DEPRECATED_.
`disable'
Prefix for disabling (inverting sense of) the option. Only useful
if long option names are being processed. When an option has this
attribute, the test `ENABLED_OPT(OPTNAME)' is false when either of
the following is true:
* The option has not been specified and the `enable' attribute
has not been specified.
* The option has been specified with this disabling prefix.
To detect that the option has been specified with the disabling
prefix, you must use:
HAVE_OPT(OPTNAME) && ! ENABLED_OPT(OPTNAME)
`enable'
Long-name prefix for enabling the option (invalid if DISABLE *not*
present). Only useful if long option names are being processed.
`enabled'
If default is for option being enabled. (Otherwise, the
OPTST_DISABLED bit is set at compile time.) Only useful if the
option can be disabled.
`ifdef'
`ifndef'
`omitted-usage'
If an option is relevant on certain platforms or when certain
features are enabled or disabled, you can specify the compile time
flag used to indicate when the option should be compiled in or
out. For example, if you have a configurable feature, `mumble'
that is indicated with the compile time define, `WITH_MUMBLING',
then add:
ifdef = WITH_MUMBLING;
Take care when using these. There are several caveats:
* The case and spelling must match whatever is specified.
* Do not confuse these attributes with the AutoGen directives
of the same names, *Note Directives::. These cause C
preprocessing directives to be inserted into the generated C
text.
* Only one of `ifdef' and `ifndef' may apply to any one option.
* The `VALUE_OPT_' values are `#define'-d. If `WITH_MUMBLING'
is not defined, then the associated `VALUE_OPT_' value will
not be `#define'-d either. So, if you have an option named,
`MUMBLING' that is active only if `WITH_MUMBLING' is
`#define'-d, then `VALUE_OPT_MUMBLING' will be `#define'-d
iff `WITH_MUMBLING' is `#define'-d. Watch those switch
statements.
* If you specify `omitted-usage', then the option will be
recognized as disabled when it is configured out of the
build, but will yield the message, "This option has been
disabled." You may specify an alternate message by giving
`omitted-usage' a string value. e.g.:
omitted-usage = 'you cannot do this';
`no-command'
This option specifies that the option is not allowed on the
command line. Such an option may not take a `value' (flag
character) attribute. The program must have the `homerc' (*note
program attributes::) option set.
7.5.5.3 Immediate Action Attributes
...................................
Certain options may need to be processed early. For example, in order
to suppress the processing of configuration files, it is necessary to
process the command line option `--no-load-opts' *before* the config
files are processed. To accommodate this, certain options may have
their enabled or disabled forms marked for immediate processing. The
consequence of this is that they are processed ahead of all other
options in the reverse of normal order.
Normally, the first options processed are the options specified in
the first `homerc' file, followed by then next `homerc' file through to
the end of config file processing. Next, environment variables are
processed and finally, the command line options. The later options
override settings processed earlier. That actually gives them higher
priority. Command line immediate action options actually have the
lowest priority of all. They would be used only if they are to have an
effect on the processing of subsequent options.
`immediate'
Use this option attribute to specify that the enabled form of the
option is to be processed immediately. The `help' and `more-help'
options are so specified. They will also call `exit()' upon
completion, so they *do* have an effect on the processing of the
remaining options :-).
`immed-disable'
Use this option attribute to specify that the disabled form of the
option is to be processed immediately. The `load-opts' option is
so specified. The `--no-load-opts' command line option will
suppress the processing of config files and environment variables.
Contrariwise, the `--load-opts' command line option is processed
normally. That means that the options specified in that file will
be processed after all the `homerc' files and, in fact, after
options that precede it on the command line.
`also'
If either the `immediate' or the `immed-disable' attributes are
set to the string, `also', then the option will actually be
processed twice: first at the immediate processing phase and again
at the normal time.
7.5.5.4 Option Conflict Attributes
..................................
These attributes may be used as many times as you need. They are used
at the end of the option processing to verify that the context within
which each option is found does not conflict with the presence or
absence of other options.
This is not a complete cover of all possible conflicts and
requirements, but it simple to implement and covers the more common
situations.
`flags-must'
one entry for every option that *must* be present when this option
is present
`flags-cant'
one entry for every option that *cannot* be present when this
option is present
7.5.5.5 Program may set option
..............................
If the option can be set outside of option processing, specify
`settable'. If this attribute is defined, special macros for setting
this particular option will be inserted into the interface file. For
example, `TEMPL_DIRS' is a settable option for AutoGen, so a macro named
`SET_OPT_TEMPL_DIRS(a)' appears in the interface file. This attribute
interacts with the DOCUMENTATION attribute.
7.5.5.6 Option cannot be pre-configured
.......................................
If presetting this option is not allowed, specify `no-preset'. (Thus,
environment variables and values set in configuration files will be
ignored.)
7.5.5.7 Option Equivalence Class
................................
Generally, when several options are mutually exclusive and basically
serve the purpose of selecting one of several processing modes, specify
the `equivalence' attribute. These options will be considered an
equivalence class. Sometimes, it is just easier to deal with them as
such. All members of the equivalence class must contain the same
equivalenced-to option, including the equivalenced-to option itself.
Thus, it must be a class member.
For an option equivalence class, there is a single occurrence
counter for the class. It can be referenced with the interface macro,
`COUNT_OPT(BASE_OPTION)', where BASE_OPTION is the equivalenced-to
option name.
Also, please take careful note: since the options are mapped to the
equivalenced-to option descriptor, any option argument values are
mapped to that descriptor also. Be sure you know which "equivalent
option" was selected before getting an option argument value!
During the presetting phase of option processing (*note Presetting
Options::), equivalenced options may be specified. However, if
different equivalenced members are specified, only the last instance
will be recognized and the others will be discarded. A conflict error
is indicated only when multiple different members appear on the command
line itself.
As an example of where equivalenced options might be useful,
`cpio(1)' has three options `-o', `-i', and `-p' that define the
operational mode of the program (`create', `extract' and
`pass-through', respectively). They form an equivalence class from
which one and only one member must appear on the command line. If
`cpio' were an AutoOpt-ed program, then each of these option
definitions would contain:
equivalence = create;
and the program would be able to determine the operating mode with
code that worked something like this:
switch (WHICH_IDX_CREATE) {
case INDEX_OPT_CREATE: ...
case INDEX_OPT_EXTRACT: ...
case INDEX_OPT_PASS_THROUGH: ...
default: /* cannot happen */
}
7.5.5.8 Option Aliasing
.......................
Sometimes, for backwards compatibility or tradition or just plain
convenience, it works better to define one option as a pure alias for
another option. For such situations, provide the following pieces of
information:
flag = {
name = aliasing-option-name;
value = aliasing-flag-char; // optional !
aliases = aliased-to-option;
};
Do not provide anything else. The usage text for such an option
will be:
This is an alias for aliased-to-option
7.5.5.9 Default Option
......................
If your program processes its arguments in named option mode (See
`long-opts' in *note program attributes::), then you may select *one*
of your options to be the default option. Do so by using attribute
`default' with one of the options. The option so specified must have
an `arg-type' (*note Option Arguments::) specified, but not the
`arg-optional' (*note arg-optional::) attribute. That is to say, the
option argument must be required.
If you have done this, then any arguments that do not match an
option name and do not contain an equal sign (`=') will be interpreted
as an option argument to the default option.
7.5.5.10 Option Sectioning Comment
..................................
This attribute means the option exists for the purpose of separating
option description text in the usage output and texi documentation.
Without this attribute, every option is a separate node in the texi
docs. With this attribute, the documentation options become texi doc
nodes and the options are collected under them. Choose the name
attribute carefully because it will appear in the texi documentation.
Libraries may also choose to make it settable so that the library can
determine which command line option is the first one that pertains to
the library.
If the `documentation' attribute is present, then all other
attributes are disabled except `settable', `call-proc' and `flag-code'.
`settable' must be and is only specified if `call-proc', `extract-code'
or `flag-code' has been specified. When present, the `descrip'
attribute will be displayed only when the `--help' option has been
specified. It will be displayed flush to the left hand margin and may
consist of one or more lines of text, filled to 72 columns.
The name of the option will not be printed in the help text. It
will, however, be printed as section headers in the texi documentation.
If the attribute is given a non-empty value, this text will be
reproduced in the man page and texi doc immediately after the `descrip'
text.
7.5.5.11 Translator Notes
.........................
If you need to give the translators a special note about a particular
option, please use the `translators' attribute. The attribute text
will be emitted into the generated `.c' text where the option related
strings get defined. To make a general comment about all of the option
code, add comments to an `include' attribute (*note program
attributes::). Do *not* use this attribute globally, or it will get
emitted into every option definition block.
7.5.6 Option Argument Specification
-----------------------------------
Command line options come in three flavors: options that do not take
arguments, those that do and those that may. Without an "arg-type"
attribute, AutoOpts will not process an argument to an option. If
"arg-type" is specified and "arg-optional" is also specified, then the
next command line token will be taken to be an argument, unless it
looks like the name of another option.
If the argument type is specified to be anything other than
"str[ing]", then AutoOpts will specify a callback procedure to handle
the argument. Some of these procedures will be created and inserted
into the generated `.c' file, and others are already built into the
`libopts' library. Therefore, if you write your own callback procedure
(*note Option Argument Handling::), then you must either not specify an
"arg-type" attribute, or else specify it to be of type "str[ing]". Your
callback function will be able to place its own restrictions on what
that string may contain or represent.
Option argument handling attributes depend upon the value set for the `arg-type'
attribute. It specifies the type of argument the option will take. If
not present, the option cannot take an argument. If present, it must
be an entry in the following table. The first three letters is
sufficient.
7.5.6.1 Arg Type String
.......................
`arg-type = string;'
The argument may be any arbitrary string, though your program or
option callback procedure may place additional constraints upon it.
7.5.6.2 Arg Type Number
.......................
`arg-type = number;'
The argument must be a correctly formed integer, without any
trailing U's or L's. AutoOpts contains a library procedure to convert
the string to a number. If you specify range checking with `arg-range'
(see below), then AutoOpts produces a special purpose procedure for
this option.
`scaled'
`scaled' marks the option so that suffixes of `k', `K', `m', `M',
`g', `G', `t', and `T' will multiply the given number by a power
of 1000 or 1024. Lower case letters scale by a power of 1000 and
upper case scale by a power of 1024.
`arg-range'
`arg-range' is used to create a callback procedure for validating
the range of the option argument. It must match one of the range
entries. Each `arg-range' should consist of either an integer by
itself or an integer range. The integer range is specified by one
or two integers separated by the two character sequence, `->'. Be
sure to quote the entire range string. The definitions parser
will not accept the range syntax as a single string token.
The generated procedure imposes the range constraints as follows:
* A number by itself will match that one value.
* The high end of the range may not be `INT_MIN', both for
obvious reasons and because that value is used to indicate a
single-valued match.
* An omitted lower value implies a lower bound of INT_MIN.
* An omitted upper value implies a upper bound of INT_MAX.
* The argument value is required. It may not be optional.
* The value must match one of the entries. If it can match
more than one, then you have redundancies, but no harm will
come of it.
7.5.6.3 Arg Type Boolean
........................
`arg-type = boolean;'
The argument will be interpreted and always yield either AG_TRUE or
AG_FALSE. False values are the empty string, the number zero, or a
string that starts with `f', `F', `n' or `N' (representing False or
No). Anything else will be interpreted as True.
7.5.6.4 Arg Type Keyword
........................
`arg-type = keyword;'
The argument must match a specified list of strings (*note
arg-keyword::). Assuming you have named the option, `optn-name', the
strings will be converted into an enumeration of type `te_Optn_Name'
with the values `OPTN_NAME_KEYWORD'.* If you have *not* specified a
default value, the value `OPTN_NAME_UNDEFINED' will be inserted with
the value zero. The option will be initialized to that value. You may
now use this in your code as follows:
te_Optn_Name opt = OPT_VALUE_OPTN_NAME;
switch (opt) {
case OPTN_NAME_UNDEFINED: /* undefined things */ break;
case OPTN_NAME_KEYWORD: /* `keyword' things */ break;
default: /* utterly impossible */ ;
}
AutoOpts produces a special purpose procedure for this option. You
may not specify an alternate handling procedure.
If you have need for the string name of the selected keyword, you
may obtain this with the macro, `OPT_OPTN_NAME_VAL2STR(val)'. The
value you pass would normally be `OPT_VALUE_OPTN_NAME', but anything
with numeric value that is legal for `te_Optn_Name' may be passed.
Anything out of range will result in the string, `"*INVALID*"' being
returned. The strings are read only. It may be used as in:
te_Optn_Name opt = OPT_VALUE_OPTN_NAME;
printf( "you selected the %s keyword\n",
OPT_OPTN_NAME_VAL2STR(opt) );
* Note: you may replace the `OPTN_NAME' enumeration prefix with
another prefix by specifying a `prefix-enum' attribute.
Finally, users may specify the argument either by name or by number.
Since the numeric equivalents change by having new entries inserted
into the keyword list, this would not be a recommended practice.
However, either `-1' or `~0' will always be equivalent to specifying
the last keyword.
7.5.6.5 Arg Type Set Membership
...............................
`arg-type = set;'
The argument must be a list of names each of which must match the
strings "`all'", "`none'" or one of the keywords (*note arg-keyword::)
specified for this option. `all' will turn on all membership bits and
`none' will turn them all off. Specifying one of the keywords will set
the corresponding set membership bit on (or off, if negated) . Literal
numbers may also be used and may, thereby, set or clear more than one
bit.
The membership result starts with the previous (or initialized)
result. To clear previous results, either start the membership string
with `none +' or with the equals character (`='). To invert (bit flip)
the final result (regardless of whether the previous result is carried
over or not), start the string with a carat character (`^'). If you
wish to invert the result and start without a carried over value, use
one of the following: `=^' or `^none+'. These are equivalent.
The list of names or numbers must be separated by one of the
following characters: `+-|!,' or whitespace. The comma is equivalent to
whitespace, except that only one may appear between two entries and it
may not appear in conjunction with the OR bar (`|'). The `+|' leading
characters or unadorned name signify adding the next named bit to the
mask, and the `-!' leading characters indicate removing it.
The number of keywords allowed is constrained by the number of bits
in a pointer, as the bit set is kept in a `void *' pointer.
If, for example, you specified `first' in your list of keywords,
then you can use the following code to test to see if either `first' or
`all' was specified:
uintptr_t opt = OPT_VALUE_OPTN_NAME;
if (opt & OPTN_NAME_FIRST)
/* OPTN_NAME_FIRST bit was set */ ;
AutoOpts produces a special purpose procedure for this option. To
set multiple bits as the default (initial) value, you must specify an
initial numeric value (which might become inaccurate over time), or
else specify `arg-default' multiple times. Do not specify a series of
names conjoined with `+' symbols as the value for any of the
`arg-default' attributes. That works for option parsing, but not for
the option code generation.
7.5.6.6 Arg Type Hierarchical
.............................
`arg-type = hierarchy;'
`arg-type = nested;'
This denotes an option with a structure-valued argument, a.k.a.
`subopts' in `getopts' terminology. The argument is parsed and the
values made available to the program via the find and find next calls
(*Note libopts-optionFindValue::, *Note libopts-optionGetValue::, and
*note libopts-optionFindNextValue::).
tOptionValue * val = optionGetValue(VALUE_OPT_OPTN_NAME, "name");
while (val != NULL) {
process(val);
val = optionNextValue(VALUE_OPT_OPTN_NAME, val);
if (wrong_name(val, "name"))
break;
}
7.5.6.7 Arg Type File Name
..........................
`arg-type = file;'
This argument type will have some validations on the argument and,
optionally, actually open the file. You must specify several additonal
attributes for the option:
`file-exists'
If not specified or empty, then the directory portion of the name
is checked. The directory must exist or the argument is rejected
and the usage procedure is invoked.
Otherwise, both the directory as above and the full name is tested
for existence. If the value begins with the two letters `no',
then the file must not pre-exist. Otherwise, the file is expected
to exist.
`open-file'
If not specified or empty, the file is left alone. If the value
begins with the four letters `desc'[riptor], then `open(2)' is
used and `optArg.argFd' is set. Otherwise, the file is opened
with `fopen' and `optArg.argFp' is set.
`file-mode'
If `open-file' is set and not empty, then you must specify the
open mode. Set the value to the flag bits or mode string as
appropriate for the open type.
7.5.6.8 Arg Type Time Duration
..............................
`arg-type = time-duration;'
The argument will be converted into a number of seconds. It may be
a multi-part number with different parts being multiplied into a seconds
value and added into the final result. Valid forms are in the table
below. Upper cased letters represent numbers that must be used in the
expressions.
`[[HH:]MM:]SS'
`HH' is multiplied by `3600' and `MM' multiplied by `60' before
they are added to `SS'. This time specification may not be
followed by any other time specs. `HH' and `MM' are both optional,
though `HH' cannot be specified without `MM'.
`DAYS d'
`DAYS' is multiplied by the number of seconds in a day. This
value may be followed by (and added to) values specified by
`HH:MM:SS' or the suffixed values below. If present, it must
always be first.
`HRS h'
`HRS' is multiplied by the number of seconds in an hour. This
value may be followed by (and added to) values specified by
`MM:SS' or the suffixed values below.
`MINS m'
`MINS' is multiplied by the number of seconds in a minute. This
value may be followed by (and added to) a count of seconds.
`SECS s'
This value can only be the last value in a time specification.
The `s' suffix is optional.
5 d 1:10:05 ==> 5 days + 1 hour 10 minutes and 5 seconds
5 d 1 h 10 m 5 ==> yields: 436205 seconds
5d1h10m5s ==> same result -- spaces are optional.
When saved into a config file, the value will be stored as a simple
count of seconds. There are actually more (many) accepted time
duration strings. The full documentation can be found with ISO-8601
documentation and the more extedded documentation when
`parse_duration()' becomes more widely available.
7.5.6.9 Arg Type Time and Date
..............................
`arg-type = time-date;'
The argument will be converted into the number of seconds since the
epoch. The conversion rules are very complicated, please see the
`getdate_r(3GNU)' man page. There are some additional restrictions:
1. Your project must be compiled with `PKGDATADIR' defined and naming
a valid directory.
2. The `DATEMSK' environment variable will be set to the `datemsk'
file within that directory.
If that file is not accessible for any reason, the string will be
parsed as a time duration (*note arg-type time-duration::) instead of a
specific date and time.
7.5.6.10 Keyword list
.....................
If the `arg-type' is `keyword' (*note arg-type keyword::) or
`set-membership' (*note arg-type set membership::), then you must
specify the list of keywords by a series of `keyword' entries. The
interface file will contain values for `_' for each
keyword entry. `keyword' option types will have an enumeration and
`set-membership' option types will have a set of unsigned bits
`#define'-d.
If the `arg-type' is specifically `keyword', you may also add
special handling code with a `extra-code' attribute. After
`optionEnumerationVal' has converted the input string into an
enumeration, you may insert code to process this enumeration value
(`pOptDesc->optArg.argEnum').
7.5.6.11 Option Argument Optional
.................................
The `arg-optional' attribute indicates that the argument to the option
is optional (need not be specified on the command line). This is only
valid if the ARG-TYPE is `string' (*note arg-type string::) or
`keyword' (*note arg-type keyword::). If it is `keyword', then this
attribute may also specify the default keyword to assume when the
argument is not supplied. If left empty, ARG-DEFAULT (*note
arg-default::) or the zero-valued keyword will be used.
The syntax rules for identifying the option argument are:
* If the option is specified with a flag character and there is a
character following the flag character, then string following that
flag character is the option argument.
* If the flag character is the last character in an argument, then
the first character of the next argument is examined. If it is a
hyphen, then the option is presumed to not have an argument.
Otherwise, the entire next argument is the argument for the option.
* If the option is specified with a long option name and that name
is ended with an equal sign character (`='), then everything after
that character is the option argument.
* If the long name is ended by the end of the argument, then the
first character of the next argument is examined, just as with the
flag character ending an argument string.
This is overridden and the options are required if the libopts
library gets configured with `--disable-optional-args'.
7.5.6.12 Default Option Argument Value
......................................
This specifies the default option argument value to be used when the
option is not specified or preset. You may specify multiple
`arg-default' values if the argument type is `set membership'.
7.5.7 Option Argument Handling
------------------------------
AutoOpts will either specify or automatically generate callback
procedures for options that take specialized arguments. The only
option argument types that are not specialized are plain string
arguments and no argument at all. For options that fall into one of
those two categories, you may specify your own callback function, as
specified below. If you do this and if you specify that options are
resettable (*note automatic options::), then your option handling code
*must* look for the `OPTST_RESET' bit in the `fOptState' field of the
option descriptor.
If the option takes a string argument, then the `stack-arg'
attribute can be used to specify that the option is to be handled by
the `libopts' `stackOptArg()' and `unstackOptArg()' library procedures
(see below). In this case, you may not provide option handling code.
Finally, `documentation' options (*note opt-attr documentation::) may
also be marked as `settable' (*note opt-attr settable::) and have
special callback functions (either `flag-code', `extract-code', or
`call-proc').
`flag-code'
statements to execute when the option is encountered. This may be
used in conjunction with option argument types that cause AutoOpts
to emit handler code. If you do this, the `flag-code' with index
zero (0) is emitted into the handler code _before_ the argument is
handled, and the entry with index one (1) is handled afterward.
The generated procedure will be laid out something like this:
static void
doOpt(tOptions* pOptions, tOptDesc* pOptDesc)
{
}
Only certain fields within the `tOptions' and `tOptDesc'
structures may be accessed. *Note Option Processing Data::. When
writing this code, you must be very careful with the `pOptions'
pointer. The handler code is called with this pointer set to
special values for handling special situations. Your code must
handle them. As an example, look at `optionEnumerationVal' in
`enum.c'.
`extract-code'
This is effectively identical to `flag-code', except that the
source is kept in the output file instead of the definitions file
and you cannot use this in conjunction with options with arguments,
other than string arguments.
A long comment is used to demarcate the code. You must not modify
that marker. Before regenerating the option code file, the old
file is renamed from MUMBLE.c to MUMBLE.c.save. The template will
be looking there for the text to copy into the new output file.
`call-proc'
external procedure to call when option is encountered. The calling
sequence must conform to the sequence defined above for the
generated procedure, `doOpt'. It has the same restrictions
regarding the fields within the structures passed in as arguments.
*Note Option Processing Data::.
`flag-proc'
Name of another option whose `flag-code' can be executed when this
option is encountered.
`stack-arg'
Call a special library routine to stack the option's arguments.
Special macros in the interface file are provided for determining
how many of the options were found (`STACKCT_OPT(NAME)') and to
obtain a pointer to a list of pointers to the argument values
(`STACKLST_OPT(NAME)'). Obviously, for a stackable argument, the
`max' attribute (*note Common Attributes::) needs to be set higher
than `1'.
If this stacked argument option has a disablement prefix, then the
entire stack of arguments will be cleared by specifying the option
with that disablement prefix.
`unstack-arg'
Call a special library routine to remove (`unstack') strings from
a `stack-arg' option stack. This attribute must name the option
that is to be `unstacked'. Neither this option nor the stacked
argument option it references may be equivalenced to another
option.
7.5.8 Internationalizing Options
--------------------------------
Normally, AutoOpts produces usage text that is difficult to translate.
It is pieced together on the fly using words and phrases scattered
around here and there, piecing together toe document. This does not
translate well.
Incorporated into this package are some ways around the problem.
First, you should specify the `full-usage' and `short-usage' program
attributes (*note program attributes::). This will enable your
translators to translate the usage text as a whole.
Your translators will also be able to translate long option names.
The option name translations will then become the names searched for
both on the command line and in configuration files. However, it will
not affect the names of environment variable names used to configure
your program.
If it is considered desireable to keep configuration files in the `C'
locale, then several macros are available to suppress or delay the
translations of option names at run time. These are all disabled if
`ENABLE_NLS' is not defined at compile time or if `no-xlate' has been
set to the value _anything_. These macros *must* be invoked before the
first invocation of `optionProcess'.
`OPT_NO_XLAT_CFG_NAMES;'
`OPT_XLAT_CFG_NAMES;'
Disable (or enable) the translations of option names for
configuration files. If you enable translation for config files,
then they will be translated for command line options.
`OPT_NO_XLAT_OPT_NAMES;'
`OPT_XLAT_OPT_NAMES;'
Disable (or enable) the translations of option names for command
line processing. If you disable the translation for command line
processing, you will also disable it for configuration file
processing. Once translated, the option names will remain
translated.
7.5.9 Man and Info doc Attributes
---------------------------------
AutoOpts includes AutoGen templates for producing abbreviated man pages
and for producing the invoking section of an info document. To take
advantage of these templates, you must add several attributes to your
option definitions.
7.5.9.1 Per option documentation attributes
...........................................
These attributes are sub-attributes (sub-stanzas) of the `flag' stanzas.
`arg-name'
If an option has an argument, the argument should have a name for
documentation purposes. It will default to `arg-type', but it
will likely be clearer with something else like, `file-name'
instead of `string' (the type).
`doc'
First, every `flag' definition _other than_ `documentation'
definitions, must have a `doc' attribute defined. If the option
takes an argument, then it will need an `arg-name' attribute as
well. The `doc' text should be in plain sentences with minimal
formatting. The Texinfo commands `@code', and `@var' will have
its enclosed text made into *\fB* entries in the man page, and the
`@file' text will be made into *\fI* entries. The `arg-name'
attribute is used to display the option's argument in the man page.
Options marked with the `documentation' attribute are for
documenting the usage text. All other options should have the
`doc' attribute in order to document the usage of the option in
the generated man pages.
Since these blocks of text are inserted into all output forms, any
markup text included in these blocks must be massaged for each
output format. By default, it is presumed to be `texi' format.
7.5.9.2 Global documentation attributes
.......................................
`cmd-section'
If your command is a game or a system management command, specify
this attribute with the value `5' or `8', respectively. The
default is a user command (section 1).
`detail'
This attribute is used to add a very short explanation about what
a program is used for when the `title' attribute is insufficient.
If there is no `doc-section' stanza of type `DESCRIPTION', then
this text is used for the man page DESCRIPTION section, too.
`addtogroup'
This attribute tells the template that the generated code should be
surrounded with the following doxygen comments:
/** @file
* @addtogroup
* @{
*/
and
/** @} */
`option-format'
Specify the default markup style for the `doc' stanzas. By
default, it is `texi', but `man' and `mdoc' may also be selected.
There are nine converter programs that do a partial job of
converting one form of markup into another. `texi2texi',
`man2man' and `mdoc2mdoc' work pretty well.
You may also post process the document by using `doc-sub' stanzas,
see below.
`option-info'
This text will be inserted as a lead-in paragraph in the `OPTIONS'
section of the generated man page.
`doc-section'
This is a compound attribute that requires three subattributes:
ds-format
This describes the format of the associated `ds-text' section.
`man', `mdoc' and `texi' formats are supported. Regardless
of the chosen format, the formatting tags in the output text
will be converted to `man' macros for `man' pages, `mdoc'
macros for `mdoc' pages, and `texi' macros for `texinfo'
pages.
ds-text
This is the descriptive text, written according to the rules
for `ds-format' documents.
ds-type
This describes the section type. Basically, the title of the
section that will be added to all output documentation.
There may be only one `doc-section' for any given `ds-type'.
If there are duplicates, the results are undefined (it might
work, it might not).
There are five categories of `ds-type' sections. They are
those that the documentation templates would otherwise:
1. always create itself, ignoring any `ds-type's by this
name. These are marked, below, as `ao-only'.
2. create, if none was provided. These are marked,
`alternate'.
3. create, but augment if the `doc-section' was provided.
These are marked, `augments'.
4. do nothing, but inserts them into the output in a
prescribed order. These are marked, `known'
5. knows nothing about them. They will be alphabetized and
inserted after the list of leading sections and before
the list of trailing sections. These are not marked
because I don't know their names.
Some of these are emitted by the documentation templates only
if certain conditions are met. If there are conditions, they
are explained below. If there are no conditions, then you
will always see the named section in the output.
The output sections will appear in this order:
`NAME'
`ao-only'.
`SYNOPSIS'
`alternate'.
`DESCRIPTION'
`augments'.
`OPTIONS'
`ao-only'.
`OPTION PRESETS'
`ao-only', if environment presets or configuration file
processing has been specified.
`unknown'
At this point, the unknown, alphabetized sections are
inserted.
`IMPLEMENTATION NOTES'
`known'
`ENVIRONMENT'
`augments', if environment presets have been specified.
`FILES'
`augments', if configuration file processing has been
specified.
`EXAMPLES'
`known'
`EXIT STATUS'
`augments'.
`ERRORS'
`known'
`COMPATIBILITY'
`known'
`SEE ALSO'
`known'
`CONFORMING TO'
`known'
`HISTORY'
`known'
`AUTHORS'
`alternate', if the `copyright' stanza has either an
`author' or an `owner' attribute.
`COPYRIGHT'
`alternate', if there is a `copyright' stanza.
`BUGS'
`augments', if the `copyright' stanza has an `eaddr'
attribute.
`NOTES'
`augments'.
Here is an example of a `doc-section' for a `SEE ALSO' type.
doc-section = {
ds-type = 'SEE ALSO'; // or anything else
ds-format = 'man'; // or texi or mdoc format
ds-text = <<-_eotext_ text relevant to this section type, in the chosen format _EOText_; }; `doc-sub' This attribute will cause the resulting documentation to be post-processed. This is normally with `sed', see `doc-sub-cmd' below. This attribute has several sub-attributes: `sub-name' This is the name of an autogen text definition value, like `prog-name' or `version'. In the `sub-text' field, occurrences of this name preceded by two less than characters and followed by two greater than characters will be replaced by the text value of the definition, e.g. `<>'.
`sub-text'
The text that gets added to the command file for the post
processing program.
`sub-type'
If this command only applies to certain types of output,
specify this with a regular expression that will match one of
the valid output format types, e.g. `man|mdoc' will match
those two kinds, but not `texi' output. If omitted, it will
always apply.
For example, if you want to reference the program name in the `doc'
text for an option common to two programs, put `#PROG#' into the
text. The following will replace all occrrences of `#PROG#' with
the current value for `prog':
doc-sub = {
sub-name = prog-name;
sub-text = 's/#PROG#/<>/g';
};
`doc-sub-cmd'
A formatting string for constructing the post-processing command.
The first parameter is the name of the file with editing commands
in it, and the second is the file containing the unprocessed
document. The default value is:
sed -f %s %s
7.5.10 Automatically Supported Options
--------------------------------------
AutoOpts provides automated support for several options. `help' and
`more-help' are always provided. The others are conditional upon
various global program attributes being defined *Note program
attributes::.
Below are the option names and default flag values. The flags are
activated if and only if at least one user-defined option also uses a
flag value. The long names are supported as option names if
`long-opts' has been specified. These option flags may be deleted or
changed to characters of your choosing by specifying `xxx-value =
"y";', where `xxx' is one of the option names below and `y' is either
empty or the character of your choice. For example, to change the help
flag from `?' to `h', specify `help-value = "h";'; and to require that
`save-opts' be specified only with its long option name, specify `save-opts-value
= "";'.
Additionally, the procedure that prints out the program version may
be replaced by specifying `version-proc'. This procedure must be
defined to be of external scope (non-static). By default, the AutoOpts
library provides `optionPrintVersion' and it will be the specified
callback function in the option definition structure.
With the exception of the `load-opts' option, none of these
automatically supported options will be recognized in configuration
files or environment variables.
`help -?'
This option will immediately invoke the `USAGE()' procedure and
display the usage line, a description of each option with its
description and option usage information. This is followed by the
contents of the definition of the `detail' text macro.
`more-help -!'
This option is identical to the `help' option, except that the
output is passed through a pager program. (`more' by default, or
the program identified by the `PAGER' environment variable.)
`usage -u'
This option must be requested by specifying, `usage-opt' in the
option definition file. It will produce abbreviated help text to
`stdout' and exit with zero status (`EXIT_SUCCESS').
`version -v'
This will print the program name, title and version. If it is
followed by the letter `c' and a value for `copyright' and `owner'
have been provided, then the copyright will be printed, too. If
it is followed by the letter `n', then the full copyright notice
(if available) will be printed. The `version' attribute must be
specified in the option definition file.
`load-opts -<' This option will load options from the named file. They will be treated exactly as if they were loaded from the normally found configuration files, but will not be loaded until the option is actually processed. This can also be used within another configuration file, causing them to nest. This is the *only* automatically supported option that can be activated inside of config files or with environment variables. Specifying the negated form of the option (`--no-load-opts') will suppress the processing of configuration files and environment variables. This option is activated by specifying one or more `homerc' attributes. `save-opts ->'
This option will cause the option state to be printed in the
configuration file format when option processing is done but not
yet verified for consistency. The program will terminate
successfully without running when this has completed. Note that
for most shells you will have to quote or escape the flag
character to restrict special meanings to the shell.
The output file will be the configuration file name (default or
provided by `rcfile') in the last directory named in a `homerc'
definition.
This option may be set from within your program by invoking the
"`SET_OPT_SAVE_OPTS(filename)'" macro (*note SET_OPT_name::).
Invoking this macro will set the file name for saving the option
processing state, but the state will *not* actually be saved. You
must call `optionSaveFile' to do that (*note
libopts-optionSaveFile::). *CAVEAT:* if, after invoking this
macro, you call `optionProcess', the option processing state will
be saved to this file and `optionProcess' will not return. You
may wish to invoke `CLEAR_OPT( SAVE_OPTS )' (*note CLEAR_OPT::)
beforehand if you do need to reinvoke `optionProcess'.
This option is activated by specifying one or more `homerc'
attributes.
`reset-option -R'
This option takes the name of an option for the current program
and resets its state such that it is set back to its original,
compile-time initialized value. If the option state is
subsequently stored (via `--save-opts'), the named option will not
appear in that file.
This option is activated by specifying the `resettable' attribute.
*BEWARE*: If the `resettable' attribute is specified, all option
callbacks *must* look for the `OPTST_RESET' bit in the `fOptState'
field of the option descriptor. If set, the `optCookie' and
`optArg' fields will be unchanged from their last setting. When
the callback returns, these fields will be set to their original
values. If you use this feature and you have allocated data
hanging off of the cookie, you need to deallocate it.
7.5.11 Library of Standard Options
----------------------------------
AutoOpts has developed a set of standardized options. You may
incorporate these options in your program simply by _first_ adding a
`#define' for the options you want, and then the line,
#include stdoptions.def
in your option definitions. The supported options are specified thus:
#define DEBUG
#define DIRECTORY
#define DRY_RUN
#define INPUT
#define INTERACTIVE
#define OUTPUT
#define WARN
#define SILENT
#define QUIET
#define BRIEF
#define VERBOSE
By default, only the long form of the option will be available. To
specify the short (flag) form, suffix these names with `_FLAG'. e.g.,
#define DEBUG_FLAG
`--silent', `--quiet', `--brief' and `--verbose' are related in that
they all indicate some level of diagnostic output. These options are
all designed to conflict with each other. Instead of four different
options, however, several levels can be incorporated by `#define'-ing
`VERBOSE_ENUM'. In conjunction with `VERBOSE', it incorporates the
notion of 5 levels in an enumeration: `silent', `quiet', `brief',
`informative' and `verbose'; with the default being `brief'.
Here is an example program that uses the following set of
definitions:
AutoGen Definitions options;
prog-name = default-test;
prog-title = 'Default Option Example';
homerc = '$$/../share/default-test', '$HOME', '.';
environrc;
long-opts;
gnu-usage;
usage-opt;
version = '1.0';
main = {
main-type = shell-process;
};
#define DEBUG_FLAG
#define WARN_FLAG
#define WARN_LEVEL
#define VERBOSE_FLAG
#define VERBOSE_ENUM
#define DRY_RUN_FLAG
#define OUTPUT_FLAG
#define INPUT_FLAG
#define DIRECTORY_FLAG
#define INTERACTIVE_FLAG
#include stdoptions.def
Running a few simple commands on that definition file:
autogen default-test.def
copts="-DTEST_DEFAULT_TEST_OPTS `autoopts-config cflags`"
lopts="`autoopts-config ldflags`"
cc -o default-test ${copts} default-test.c ${lopts}
Yields a program which, when run with `--help', prints out:
exit 0
7.6 Programmatic Interface
==========================
The user interface for access to the argument information is completely
defined in the generated header file and in the portions of the
distributed file "options.h" that are marked "public".
In the following macros, text marked or NAME is the name of
the option *in upper case* and *segmented with underscores `_'*. The
macros and enumerations defined in the options header (interface) file
are used as follows:
To see how these `#define' macros are used in a program, the reader
is referred to the several `opts.h' files included with the AutoGen
sources.
7.6.1 Data for Option Processing
--------------------------------
This section describes the data that may be accessed from within the
option processing callback routines. The following fields may be used
in the following ways and may be used for read only. The first set is
addressed from the `tOptDesc*' pointer:
`optIndex'
`optValue'
These may be used by option procedures to determine which option
they are working on (in case they handle several options).
`optActualIndex'
`optActualValue'
These may be used by option procedures to determine which option
was used to set the current option. This may be different from
the above if the options are members of an equivalence class.
`optOccCt'
If AutoOpts is processing command line arguments, then this value
will contain the current occurrence count. During the option
preset phase (reading configuration files and examining
environment variables), the value is zero.
`fOptState'
The field may be tested for the following bit values (prefix each
name with `OPTST_', e.g. `OPTST_INIT'):
`INIT'
Initial compiled value. As a bit test, it will always yield
FALSE.
`SET'
The option was set via the `SET_OPT()' macro.
`PRESET'
The option was set via a configuration file.
`DEFINED'
The option was set via a command line option.
`SET_MASK'
This is a mask of flags that show the set state, one of the
above four values.
`EQUIVALENCE'
This bit is set when the option was selected by an
equivalenced option.
`DISABLED'
This bit is set if the option is to be disabled. (Meaning it
was a long option prefixed by the disablement prefix, or the
option has not been specified yet and initializes as
`disabled'.)
As an example of how this might be used, in AutoGen I want to allow
template writers to specify that the template output can be left
in a writable or read-only state. To support this, there is a
Guile function named `set-writable' (*note SCM set-writable::).
Also, I provide for command options `--writable' and
`--not-writable'. I give precedence to command line and RC file
options, thus:
switch (STATE_OPT( WRITABLE )) {
case OPTST_DEFINED:
case OPTST_PRESET:
fprintf(stderr, zOverrideWarn, pCurTemplate->pzFileName,
pCurMacro->lineNo);
break;
default:
if (gh_boolean_p( set ) && (set == SCM_BOOL_F))
CLEAR_OPT( WRITABLE );
else
SET_OPT_WRITABLE;
}
`pzLastArg'
Pointer to the latest argument string. BEWARE If the argument type
is numeric, an enumeration or a bit mask, then this will be the
argument *value* and not a pointer to a string.
The following two fields are addressed from the `tOptions*' pointer:
`pzProgName'
Points to a NUL-terminated string containing the current program
name, as retrieved from the argument vector.
`pzProgPath'
Points to a NUL-terminated string containing the full path of the
current program, as retrieved from the argument vector. (If
available on your system.)
Note these fields get filled in during the first call to
`optionProcess()'. All other fields are private, for the exclusive use
of AutoOpts code and are subject to change.
7.6.2 CLEAR_OPT( ) - Clear Option Markings
-------------------------------------------------
Make as if the option had never been specified. `HAVE_OPT()'
will yield `FALSE' after invoking this macro.
7.6.3 COUNT_OPT( ) - Definition Count
--------------------------------------------
This macro will tell you how many times the option was specified on the
command line. It does not include counts of preset options.
if (COUNT_OPT( NAME ) != desired-count) {
make-an-undesirable-message.
}
7.6.4 DESC( ) - Option Descriptor
----------------------------------------
This macro is used internally by other AutoOpt macros. It is not for
general use. It is used to obtain the option description corresponding
to its *UPPER CASED* option name argument. This is primarily used in
other macro definitions.
7.6.5 DISABLE_OPT_name - Disable an option
------------------------------------------
This macro is emitted if it is both settable and it can be disabled.
If it cannot be disabled, it may always be CLEAR-ed (see above).
The form of the macro will actually depend on whether the option is
equivalenced to another, and/or has an assigned handler procedure.
Unlike the `SET_OPT' macro, this macro does not allow an option
argument.
DISABLE_OPT_NAME;
7.6.6 ENABLED_OPT( ) - Is Option Enabled?
------------------------------------------------
Yields true if the option defaults to disabled and `ISUNUSED_OPT()'
would yield true. It also yields true if the option has been specified
with a disablement prefix, disablement value or the `DISABLE_OPT_NAME'
macro was invoked.
7.6.7 ERRSKIP_OPTERR - Ignore Option Errors
-------------------------------------------
When it is necessary to continue (return to caller) on option errors,
invoke this option. It is reversible. *Note ERRSTOP_OPTERR::.
7.6.8 ERRSTOP_OPTERR - Stop on Errors
-------------------------------------
After invoking this macro, if `optionProcess()' encounters an error, it
will call `exit(1)' rather than return. This is the default processing
mode. It can be overridden by specifying `allow-errors' in the
definitions file, or invoking the macro *Note ERRSKIP_OPTERR::.
7.6.9 HAVE_OPT( ) - Have this option?
--------------------------------------------
This macro yields true if the option has been specified in any fashion
at all. It is used thus:
if (HAVE_OPT( NAME )) {
;
}
7.6.10 ISSEL_OPT( ) - Is Option Selected?
------------------------------------------------
This macro yields true if the option has been specified either on the
command line or via a SET/DISABLE macro.
7.6.11 ISUNUSED_OPT( ) - Never Specified?
------------------------------------------------
This macro yields true if the option has never been specified, or has
been cleared via the `CLEAR_OPT()' macro.
7.6.12 OPTION_CT - Full Count of Options
----------------------------------------
The full count of all options, both those defined and those generated
automatically by AutoOpts. This is primarily used to initialize the
program option descriptor structure.
7.6.13 OPT_ARG( ) - Option Argument String
-------------------------------------------------
The option argument value as a pointer to string. Note that argument
values that have been specified as numbers are stored as numbers or
keywords. For such options, use instead the `OPT_VALUE_name' define.
It is used thus:
if (HAVE_OPT( NAME )) {
char* p = OPT_ARG( NAME );
;
}
7.6.14 OPT_NO_XLAT_CFG_NAMES - option name xlation
--------------------------------------------------
Invoking this macro will disable the translation of option names only
while processing configuration files and environment variables. This
must be invoked before the first call to `optionProcess'.. You need
not invoke this if your option definition file contains the attribute
assignment, `no-xlate = opt-cfg;'.
7.6.15 OPT_NO_XLAT_OPT_NAMES - option name xlation
--------------------------------------------------
Invoking this macro will completely disable the translation of option
names. This must be invoked before the first call to `optionProcess'.
You need not invoke this if your option definition file contains the
attribute assignment, `no-xlate = opt;'.
7.6.16 OPT_VALUE_name - Option Argument Value
---------------------------------------------
This macro gets emitted only for options that take numeric, keyword or
set membership arguments. The macro yields a word-sized integer
containing the enumeration, bit set or numeric value for the option
argument.
int opt_val = OPT_VALUE_name;
7.6.17 OPT_XLAT_CFG_NAMES - option name xlation
-----------------------------------------------
If `ENABLE_NLS' is defined and `no-xlate' has been not set to the value
_anything_, this macro will cause the translation of option names to
happen before starting the processing of configuration files and
environment variables. This will change the recognition of options
within the `$PROGRAMNAME' environment variable, but will not alter the
names used for setting options via `$PROGRAMNAME_name' environment
variables.
This must be invoked before the first call to `optionProcess'. You
might need to use this macro if your option definition file contains
the attribute assignment, `no-xlate = opt;' or `no-xlate = opt-cfg;',
and you have determined in some way that you wish to override that.
7.6.18 OPT_XLAT_OPT_NAMES - option name xlation
-----------------------------------------------
If `ENABLE_NLS' is defined and `no-xlate' has been not set to the value
_anything_, translate the option names before processing the command
line options. Long option names may thus be localized. (If the names
were translated before configuration processing, they will not be
re-translated.)
This must be invoked before the first call to `optionProcess'. You
might need to use this macro if your option definition file contains
the attribute assignment, `no-xlate = opt;' and you have determined in
some way that you wish to override that.
7.6.19 RESTART_OPT( n ) - Resume Option Processing
--------------------------------------------------
If option processing has stopped (either because of an error or
something was encountered that looked like a program argument), it can
be resumed by providing this macro with the index `n' of the next
option to process and calling `optionProcess()' again.
int main(int argc, char ** argv) {
for (int ai = 0; ai < argc ;) { restart: ai = optionProcess(&progOptions, argc, argv); for (; ai < argc; ai++) { char * arg = arg[ai]; if (*arg == '-') { RESTART_OPT(ai); goto restart; } process(arg); } } } If you want a program to operate this way, you might consider specifying a `for-each' main function (*note for-each main procedure: main for-each.) with the `interleaved' attribute. It will allow you to process interleaved operands and options from either the command line or when reading them from standard input. 7.6.20 SET_OPT_name - Force an option to be set ----------------------------------------------- This macro gets emitted only when the given option has the `settable' attribute specified. The form of the macro will actually depend on whether the option is equivalenced to another, has an option argument and/or has an assigned handler procedure. If the option has an argument, then this macro will too. Beware that the argument is not reallocated, so the value must not be on the stack or deallocated in any other way for as long as the value might get referenced. If you have supplied at least one `homerc' file (*note program attributes::), this macro will be emitted for the `--save-opts' option. SET_OPT_SAVE_OPTS( "filename" ); *Note automatic options::, for a discussion of the implications of using this particular example. 7.6.21 STACKCT_OPT( ) - Stacked Arg Count
------------------------------------------------
When the option handling attribute is specified as `stack_arg', this
macro may be used to determine how many of them actually got stacked.
Do not use this on options that have not been stacked or has not been
specified (the `stack_arg' attribute must have been specified, and
`HAVE_OPT()' must yield TRUE). Otherwise, you will likely seg
fault.
if (HAVE_OPT( NAME )) {
int ct = STACKCT_OPT( NAME );
char** pp = STACKLST_OPT( NAME );
do {
char* p = *pp++;
do-things-with-p;
} while (--ct> 0);
}
7.6.22 STACKLST_OPT( ) - Argument Stack
----------------------------------------------
The address of the list of pointers to the option arguments. The
pointers are ordered by the order in which they were encountered in the
option presets and command line processing.
Do not use this on options that have not been stacked or has not been
specified (the `stack_arg' attribute must have been specified, and
`HAVE_OPT(