2018-10-11 16:48:46 +08:00
|
|
|
/*******************************************************************************
|
2020-01-10 02:26:12 +08:00
|
|
|
* argtable3: Declares the main interfaces of the library
|
|
|
|
*
|
2018-10-11 16:48:46 +08:00
|
|
|
* This file is part of the argtable3 library.
|
|
|
|
*
|
|
|
|
* Copyright (C) 1998-2001,2003-2011,2013 Stewart Heitmann
|
|
|
|
* <sheitmann@users.sourceforge.net>
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are met:
|
|
|
|
* * Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* * Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* * Neither the name of STEWART HEITMANN nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL STEWART HEITMANN BE LIABLE FOR ANY DIRECT,
|
|
|
|
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
|
|
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
|
|
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
|
|
|
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
|
|
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
#ifndef ARGTABLE3
|
|
|
|
#define ARGTABLE3
|
|
|
|
|
2020-05-07 06:59:40 +08:00
|
|
|
#include <stdio.h> /* FILE */
|
|
|
|
#include <time.h> /* struct tm */
|
2020-10-04 23:41:04 +08:00
|
|
|
#include <stdint.h>
|
2018-10-11 16:48:46 +08:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define ARG_REX_ICASE 1
|
2020-01-10 02:26:12 +08:00
|
|
|
#define ARG_DSTR_SIZE 200
|
|
|
|
#define ARG_CMD_NAME_LEN 100
|
|
|
|
#define ARG_CMD_DESCRIPTION_LEN 256
|
|
|
|
|
|
|
|
#ifndef ARG_REPLACE_GETOPT
|
|
|
|
#define ARG_REPLACE_GETOPT 1 /* use the embedded getopt as the system getopt(3) */
|
|
|
|
#endif /* ARG_REPLACE_GETOPT */
|
2019-03-09 15:59:13 +08:00
|
|
|
|
2018-10-11 16:48:46 +08:00
|
|
|
/* bit masks for arg_hdr.flag */
|
2020-05-07 06:59:40 +08:00
|
|
|
enum {
|
|
|
|
ARG_TERMINATOR = 0x1,
|
|
|
|
ARG_HASVALUE = 0x2,
|
|
|
|
ARG_HASOPTVALUE = 0x4
|
|
|
|
};
|
2018-10-11 16:48:46 +08:00
|
|
|
|
2020-05-07 06:59:40 +08:00
|
|
|
typedef void (arg_resetfn)(void *parent);
|
|
|
|
typedef int (arg_scanfn)(void *parent, const char *argval);
|
|
|
|
typedef int (arg_checkfn)(void *parent);
|
|
|
|
typedef void (arg_errorfn)(void *parent, FILE *fp, int error, const char *argval, const char *progname);
|
2018-10-11 16:48:46 +08:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
2020-05-07 06:59:40 +08:00
|
|
|
* The arg_hdr struct defines properties that are common to all arg_xxx structs.
|
|
|
|
* The argtable library requires each arg_xxx struct to have an arg_hdr
|
|
|
|
* struct as its first data member.
|
|
|
|
* The argtable library functions then use this data to identify the
|
|
|
|
* properties of the command line option, such as its option tags,
|
|
|
|
* datatype string, and glossary strings, and so on.
|
|
|
|
* Moreover, the arg_hdr struct contains pointers to custom functions that
|
|
|
|
* are provided by each arg_xxx struct which perform the tasks of parsing
|
|
|
|
* that particular arg_xxx arguments, performing post-parse checks, and
|
|
|
|
* reporting errors.
|
|
|
|
* These functions are private to the individual arg_xxx source code
|
|
|
|
* and are the pointer to them are initiliased by that arg_xxx struct's
|
|
|
|
* constructor function. The user could alter them after construction
|
|
|
|
* if desired, but the original intention is for them to be set by the
|
|
|
|
* constructor and left unaltered.
|
|
|
|
*/
|
2019-03-10 07:00:59 +08:00
|
|
|
struct arg_hdr {
|
2020-05-07 06:59:40 +08:00
|
|
|
char flag; /* Modifier flags: ARG_TERMINATOR, ARG_HASVALUE. */
|
|
|
|
const char *shortopts; /* String defining the short options */
|
|
|
|
const char *longopts; /* String defiing the long options */
|
|
|
|
const char *datatype; /* Description of the argument data type */
|
|
|
|
const char *glossary; /* Description of the option as shown by arg_print_glossary function */
|
|
|
|
int mincount; /* Minimum number of occurences of this option accepted */
|
|
|
|
int maxcount; /* Maximum number of occurences if this option accepted */
|
|
|
|
void *parent; /* Pointer to parent arg_xxx struct */
|
|
|
|
arg_resetfn *resetfn; /* Pointer to parent arg_xxx reset function */
|
|
|
|
arg_scanfn *scanfn; /* Pointer to parent arg_xxx scan function */
|
|
|
|
arg_checkfn *checkfn; /* Pointer to parent arg_xxx check function */
|
|
|
|
arg_errorfn *errorfn; /* Pointer to parent arg_xxx error function */
|
|
|
|
void *priv; /* Pointer to private header data for use by arg_xxx functions */
|
2018-10-11 16:48:46 +08:00
|
|
|
};
|
|
|
|
|
2019-03-10 07:00:59 +08:00
|
|
|
struct arg_rem {
|
2020-05-07 06:59:40 +08:00
|
|
|
struct arg_hdr hdr; /* The mandatory argtable header struct */
|
2018-10-11 16:48:46 +08:00
|
|
|
};
|
|
|
|
|
2019-03-10 07:00:59 +08:00
|
|
|
struct arg_lit {
|
2020-05-07 06:59:40 +08:00
|
|
|
struct arg_hdr hdr; /* The mandatory argtable header struct */
|
|
|
|
int count; /* Number of matching command line args */
|
2018-10-11 16:48:46 +08:00
|
|
|
};
|
|
|
|
|
2019-03-10 07:00:59 +08:00
|
|
|
struct arg_int {
|
2020-05-07 06:59:40 +08:00
|
|
|
struct arg_hdr hdr; /* The mandatory argtable header struct */
|
|
|
|
int count; /* Number of matching command line args */
|
|
|
|
int *ival; /* Array of parsed argument values */
|
2018-10-11 16:48:46 +08:00
|
|
|
};
|
|
|
|
|
2020-10-04 23:41:04 +08:00
|
|
|
struct arg_u64 {
|
|
|
|
struct arg_hdr hdr; /* The mandatory argtable header struct */
|
|
|
|
int count; /* Number of matching command line args */
|
|
|
|
uint64_t *uval; /* Array of parsed argument values */
|
|
|
|
};
|
|
|
|
|
2019-03-10 07:00:59 +08:00
|
|
|
struct arg_dbl {
|
2020-05-07 06:59:40 +08:00
|
|
|
struct arg_hdr hdr; /* The mandatory argtable header struct */
|
|
|
|
int count; /* Number of matching command line args */
|
|
|
|
double *dval; /* Array of parsed argument values */
|
2018-10-11 16:48:46 +08:00
|
|
|
};
|
|
|
|
|
2019-03-10 07:00:59 +08:00
|
|
|
struct arg_str {
|
2020-05-07 06:59:40 +08:00
|
|
|
struct arg_hdr hdr; /* The mandatory argtable header struct */
|
|
|
|
int count; /* Number of matching command line args */
|
|
|
|
const char **sval; /* Array of parsed argument values */
|
2018-10-11 16:48:46 +08:00
|
|
|
};
|
|
|
|
|
2019-03-10 07:00:59 +08:00
|
|
|
struct arg_rex {
|
2020-05-07 06:59:40 +08:00
|
|
|
struct arg_hdr hdr; /* The mandatory argtable header struct */
|
|
|
|
int count; /* Number of matching command line args */
|
|
|
|
const char **sval; /* Array of parsed argument values */
|
2018-10-11 16:48:46 +08:00
|
|
|
};
|
|
|
|
|
2019-03-10 07:00:59 +08:00
|
|
|
struct arg_file {
|
2020-05-07 06:59:40 +08:00
|
|
|
struct arg_hdr hdr; /* The mandatory argtable header struct */
|
|
|
|
int count; /* Number of matching command line args*/
|
|
|
|
const char **filename; /* Array of parsed filenames (eg: /home/foo.bar) */
|
|
|
|
const char **basename; /* Array of parsed basenames (eg: foo.bar) */
|
|
|
|
const char **extension; /* Array of parsed extensions (eg: .bar) */
|
2018-10-11 16:48:46 +08:00
|
|
|
};
|
|
|
|
|
2019-03-10 07:00:59 +08:00
|
|
|
struct arg_date {
|
2020-05-07 06:59:40 +08:00
|
|
|
struct arg_hdr hdr; /* The mandatory argtable header struct */
|
|
|
|
const char *format; /* strptime format string used to parse the date */
|
|
|
|
int count; /* Number of matching command line args */
|
|
|
|
struct tm *tmval; /* Array of parsed time values */
|
2018-10-11 16:48:46 +08:00
|
|
|
};
|
|
|
|
|
2020-05-07 06:59:40 +08:00
|
|
|
enum {ARG_ELIMIT = 1, ARG_EMALLOC, ARG_ENOMATCH, ARG_ELONGOPT, ARG_EMISSARG};
|
2019-03-10 07:00:59 +08:00
|
|
|
struct arg_end {
|
2020-05-07 06:59:40 +08:00
|
|
|
struct arg_hdr hdr; /* The mandatory argtable header struct */
|
|
|
|
int count; /* Number of errors encountered */
|
|
|
|
int *error; /* Array of error codes */
|
|
|
|
void **parent; /* Array of pointers to offending arg_xxx struct */
|
|
|
|
const char **argval; /* Array of pointers to offending argv[] string */
|
2018-10-11 16:48:46 +08:00
|
|
|
};
|
|
|
|
|
2020-05-07 06:59:40 +08:00
|
|
|
/*
|
2020-01-10 02:26:12 +08:00
|
|
|
typedef struct arg_cmd_info {
|
|
|
|
char name[ARG_CMD_NAME_LEN];
|
|
|
|
char description[ARG_CMD_DESCRIPTION_LEN];
|
|
|
|
arg_cmdfn* proc;
|
|
|
|
} arg_cmd_info_t;
|
2020-05-07 06:59:40 +08:00
|
|
|
*/
|
2018-10-11 16:48:46 +08:00
|
|
|
|
|
|
|
/**** arg_xxx constructor functions *********************************/
|
|
|
|
|
2020-05-07 06:59:40 +08:00
|
|
|
struct arg_rem *arg_rem(const char *datatype, const char *glossary);
|
2020-05-07 02:32:08 +08:00
|
|
|
|
2020-05-07 06:59:40 +08:00
|
|
|
struct arg_lit *arg_lit0(const char *shortopts,
|
|
|
|
const char *longopts,
|
|
|
|
const char *glossary);
|
|
|
|
struct arg_lit *arg_lit1(const char *shortopts,
|
|
|
|
const char *longopts,
|
|
|
|
const char *glossary);
|
|
|
|
struct arg_lit *arg_litn(const char *shortopts,
|
|
|
|
const char *longopts,
|
|
|
|
int mincount,
|
|
|
|
int maxcount,
|
|
|
|
const char *glossary);
|
2020-05-07 02:32:08 +08:00
|
|
|
|
2020-10-04 23:41:04 +08:00
|
|
|
struct arg_key *arg_key0(const char *keyword, int flags, const char *glossary);
|
|
|
|
struct arg_key *arg_key1(const char *keyword, int flags, const char *glossary);
|
|
|
|
struct arg_key *arg_keyn(const char *keyword, int flags, int mincount, int maxcount, const char *glossary);
|
2020-05-07 06:59:40 +08:00
|
|
|
|
2020-10-04 23:41:04 +08:00
|
|
|
struct arg_int *arg_int0(const char *shortopts, const char *longopts, const char *datatype, const char *glossary);
|
|
|
|
struct arg_int *arg_int1(const char *shortopts, const char *longopts, const char *datatype, const char *glossary);
|
|
|
|
struct arg_int *arg_intn(const char *shortopts, const char *longopts, const char *datatype, int mincount, int maxcount, const char *glossary);
|
|
|
|
|
|
|
|
struct arg_u64 *arg_u64_0(const char *shortopts,
|
2020-10-07 00:00:00 +08:00
|
|
|
const char *longopts,
|
|
|
|
const char *datatype,
|
|
|
|
const char *glossary);
|
2020-10-04 23:41:04 +08:00
|
|
|
struct arg_u64 *arg_u64_1(const char *shortopts,
|
2020-10-07 00:00:00 +08:00
|
|
|
const char *longopts,
|
|
|
|
const char *datatype,
|
|
|
|
const char *glossary);
|
2020-10-04 23:41:04 +08:00
|
|
|
struct arg_u64 *arg_u64_n(const char *shortopts,
|
2020-10-07 00:00:00 +08:00
|
|
|
const char *longopts,
|
|
|
|
const char *datatype,
|
|
|
|
int mincount,
|
|
|
|
int maxcount,
|
|
|
|
const char *glossary);
|
2020-05-07 06:59:40 +08:00
|
|
|
|
2020-10-04 23:41:04 +08:00
|
|
|
|
2020-05-07 06:59:40 +08:00
|
|
|
struct arg_dbl *arg_dbl0(const char *shortopts,
|
|
|
|
const char *longopts,
|
|
|
|
const char *datatype,
|
|
|
|
const char *glossary);
|
|
|
|
struct arg_dbl *arg_dbl1(const char *shortopts,
|
|
|
|
const char *longopts,
|
|
|
|
const char *datatype,
|
|
|
|
const char *glossary);
|
|
|
|
struct arg_dbl *arg_dbln(const char *shortopts,
|
|
|
|
const char *longopts,
|
|
|
|
const char *datatype,
|
|
|
|
int mincount,
|
|
|
|
int maxcount,
|
|
|
|
const char *glossary);
|
|
|
|
|
|
|
|
struct arg_str *arg_str0(const char *shortopts,
|
|
|
|
const char *longopts,
|
|
|
|
const char *datatype,
|
|
|
|
const char *glossary);
|
|
|
|
struct arg_str *arg_str1(const char *shortopts,
|
|
|
|
const char *longopts,
|
|
|
|
const char *datatype,
|
|
|
|
const char *glossary);
|
|
|
|
struct arg_str *arg_strn(const char *shortopts,
|
|
|
|
const char *longopts,
|
|
|
|
const char *datatype,
|
|
|
|
int mincount,
|
|
|
|
int maxcount,
|
|
|
|
const char *glossary);
|
2020-05-07 02:32:08 +08:00
|
|
|
|
2020-05-07 06:59:40 +08:00
|
|
|
struct arg_rex *arg_rex0(const char *shortopts,
|
|
|
|
const char *longopts,
|
|
|
|
const char *pattern,
|
|
|
|
const char *datatype,
|
|
|
|
int flags,
|
|
|
|
const char *glossary);
|
|
|
|
struct arg_rex *arg_rex1(const char *shortopts,
|
|
|
|
const char *longopts,
|
|
|
|
const char *pattern,
|
|
|
|
const char *datatype,
|
|
|
|
int flags,
|
|
|
|
const char *glossary);
|
|
|
|
struct arg_rex *arg_rexn(const char *shortopts,
|
|
|
|
const char *longopts,
|
|
|
|
const char *pattern,
|
|
|
|
const char *datatype,
|
2019-03-10 07:00:59 +08:00
|
|
|
int mincount,
|
|
|
|
int maxcount,
|
|
|
|
int flags,
|
2020-05-07 06:59:40 +08:00
|
|
|
const char *glossary);
|
|
|
|
|
|
|
|
struct arg_file *arg_file0(const char *shortopts,
|
|
|
|
const char *longopts,
|
|
|
|
const char *datatype,
|
|
|
|
const char *glossary);
|
|
|
|
struct arg_file *arg_file1(const char *shortopts,
|
|
|
|
const char *longopts,
|
|
|
|
const char *datatype,
|
|
|
|
const char *glossary);
|
|
|
|
struct arg_file *arg_filen(const char *shortopts,
|
|
|
|
const char *longopts,
|
|
|
|
const char *datatype,
|
|
|
|
int mincount,
|
|
|
|
int maxcount,
|
|
|
|
const char *glossary);
|
|
|
|
|
|
|
|
struct arg_date *arg_date0(const char *shortopts,
|
|
|
|
const char *longopts,
|
|
|
|
const char *format,
|
|
|
|
const char *datatype,
|
|
|
|
const char *glossary);
|
|
|
|
struct arg_date *arg_date1(const char *shortopts,
|
|
|
|
const char *longopts,
|
|
|
|
const char *format,
|
|
|
|
const char *datatype,
|
|
|
|
const char *glossary);
|
|
|
|
struct arg_date *arg_daten(const char *shortopts,
|
|
|
|
const char *longopts,
|
|
|
|
const char *format,
|
|
|
|
const char *datatype,
|
|
|
|
int mincount,
|
|
|
|
int maxcount,
|
|
|
|
const char *glossary);
|
|
|
|
|
|
|
|
struct arg_end *arg_end(int maxcount);
|
2018-10-11 16:48:46 +08:00
|
|
|
|
|
|
|
|
|
|
|
/**** other functions *******************************************/
|
2020-05-07 06:59:40 +08:00
|
|
|
int arg_nullcheck(void **argtable);
|
|
|
|
int arg_parse(int argc, char **argv, void **argtable);
|
|
|
|
void arg_print_option(FILE *fp, const char *shortopts, const char *longopts, const char *datatype, const char *suffix);
|
|
|
|
void arg_print_syntax(FILE *fp, void **argtable, const char *suffix);
|
|
|
|
void arg_print_syntaxv(FILE *fp, void **argtable, const char *suffix);
|
|
|
|
void arg_print_glossary(FILE *fp, void **argtable, const char *format);
|
|
|
|
void arg_print_glossary_gnu(FILE *fp, void **argtable);
|
|
|
|
void arg_print_errors(FILE *fp, struct arg_end *end, const char *progname);
|
|
|
|
void arg_freetable(void **argtable, size_t n);
|
2018-10-11 16:48:46 +08:00
|
|
|
|
|
|
|
/**** deprecated functions, for back-compatibility only ********/
|
2020-05-07 06:59:40 +08:00
|
|
|
void arg_free(void **argtable);
|
2018-10-11 16:48:46 +08:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif
|