2004-12-31 11:11:24 +00:00
|
|
|
#ifndef SUBOPT_HELPER_H
|
|
|
|
#define SUBOPT_HELPER_H
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \file subopt-helper.h
|
|
|
|
*
|
|
|
|
* \brief Datatype and functions declarations for usage
|
|
|
|
* of the suboption parser.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define OPT_ARG_BOOL 0
|
|
|
|
#define OPT_ARG_INT 1
|
|
|
|
#define OPT_ARG_STR 2
|
2005-01-19 17:10:20 +00:00
|
|
|
#define OPT_ARG_MSTRZ 3 ///< A malloced, zero terminated string, use free()!
|
2005-10-10 12:56:44 +00:00
|
|
|
#define OPT_ARG_FLOAT 4
|
2004-12-31 11:11:24 +00:00
|
|
|
|
2004-12-31 14:57:12 +00:00
|
|
|
typedef int (*opt_test_f)(void *);
|
|
|
|
|
2004-12-31 11:11:24 +00:00
|
|
|
/** simple structure for defining the option name, type and storage location */
|
|
|
|
typedef struct opt_s
|
|
|
|
{
|
2006-07-27 17:35:06 +00:00
|
|
|
const char * name; ///< string that identifies the option
|
2004-12-31 11:11:24 +00:00
|
|
|
int type; ///< option type as defined in subopt-helper.h
|
|
|
|
void * valp; ///< pointer to the mem where the value should be stored
|
2004-12-31 14:57:12 +00:00
|
|
|
opt_test_f test; ///< argument test func ( optional )
|
2004-12-31 11:11:24 +00:00
|
|
|
int set; ///< Is set internally by the parser if the option was found.
|
|
|
|
///< Don't use it at initialization of your opts, it will be
|
|
|
|
///< overriden anyway!
|
|
|
|
} opt_t;
|
|
|
|
|
|
|
|
/** parses the string for the options specified in opt */
|
|
|
|
int subopt_parse( char const * const str, opt_t * opts );
|
|
|
|
|
|
|
|
|
|
|
|
/*------------------ arg specific types and declaration -------------------*/
|
|
|
|
typedef struct strarg_s
|
|
|
|
{
|
2005-01-19 17:10:20 +00:00
|
|
|
int len; ///< length of the string determined by the parser
|
2004-12-31 11:11:24 +00:00
|
|
|
char const * str; ///< pointer to position inside the parse string
|
|
|
|
} strarg_t;
|
|
|
|
|
2005-02-19 20:14:00 +00:00
|
|
|
|
|
|
|
int int_non_neg( int * i );
|
|
|
|
int int_pos( int * i );
|
|
|
|
|
2006-07-15 16:03:12 +00:00
|
|
|
int strargcmp(strarg_t *arg, const char *str);
|
2005-06-16 09:08:07 +00:00
|
|
|
int strargcasecmp(strarg_t *arg, char *str);
|
|
|
|
|
2004-12-31 11:11:24 +00:00
|
|
|
#endif
|