2008-02-22 10:09:46 +01:00
|
|
|
#ifndef MPLAYER_SUBOPT_HELPER_H
|
|
|
|
#define MPLAYER_SUBOPT_HELPER_H
|
2004-12-31 12:11:24 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* \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 18:10:20 +01:00
|
|
|
#define OPT_ARG_MSTRZ 3 ///< A malloced, zero terminated string, use free()!
|
2005-10-10 14:56:44 +02:00
|
|
|
#define OPT_ARG_FLOAT 4
|
2004-12-31 12:11:24 +01:00
|
|
|
|
2004-12-31 15:57:12 +01:00
|
|
|
typedef int (*opt_test_f)(void *);
|
|
|
|
|
2004-12-31 12:11:24 +01:00
|
|
|
/** simple structure for defining the option name, type and storage location */
|
|
|
|
typedef struct opt_s
|
|
|
|
{
|
2006-07-27 19:35:06 +02:00
|
|
|
const char * name; ///< string that identifies the option
|
2004-12-31 12:11:24 +01: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 15:57:12 +01:00
|
|
|
opt_test_f test; ///< argument test func ( optional )
|
2004-12-31 12:11:24 +01:00
|
|
|
} opt_t;
|
|
|
|
|
|
|
|
/** parses the string for the options specified in opt */
|
2009-03-06 21:41:02 +01:00
|
|
|
int subopt_parse( char const * const str, const opt_t * opts );
|
2004-12-31 12:11:24 +01:00
|
|
|
|
|
|
|
|
|
|
|
/*------------------ arg specific types and declaration -------------------*/
|
|
|
|
typedef struct strarg_s
|
|
|
|
{
|
2005-01-19 18:10:20 +01:00
|
|
|
int len; ///< length of the string determined by the parser
|
2004-12-31 12:11:24 +01:00
|
|
|
char const * str; ///< pointer to position inside the parse string
|
|
|
|
} strarg_t;
|
|
|
|
|
2005-02-19 21:14:00 +01:00
|
|
|
|
|
|
|
int int_non_neg( int * i );
|
|
|
|
int int_pos( int * i );
|
|
|
|
|
2006-07-15 18:03:12 +02:00
|
|
|
int strargcmp(strarg_t *arg, const char *str);
|
2005-06-16 11:08:07 +02:00
|
|
|
int strargcasecmp(strarg_t *arg, char *str);
|
|
|
|
|
2008-02-22 10:09:46 +01:00
|
|
|
#endif /* MPLAYER_SUBOPT_HELPER_H */
|