2 * \file subopt-helper.c
4 * \brief Compensates the suboption parsing code duplication a bit.
6 * The routines defined below are there to help you with the
7 * suboption parsing. Meaning extracting the options and their
8 * values for you and also outputting generic help message if
9 * a parse error is encountered.
11 * Most stuff happens in the subopt_parse function: if you call it
12 * it parses for the passed opts in the passed string. It calls some
13 * extra functions for explicit argument parsing ( where the option
14 * itself isn't the argument but a value given after the argument
15 * delimiter ('='). It also calls your test function if you supplied
20 #include "subopt-helper.h"
32 /* prototypes for argument parsing */
33 static char const * parse_int( char const * const str
, int * const valp
);
34 static char const * parse_str( char const * const str
, strarg_t
* const valp
);
35 static char const * parse_float( char const * const str
, float * const valp
);
38 * \brief Try to parse all options in str and fail if it was not possible.
40 * \param str Pointer to the zero terminated string to be parsed.
41 * \param opts Pointer to a options array. The array must be terminated
42 * with an element having set name to NULL in its opt_t structure.
44 * \return The return value is zero if the string could be parsed
45 * else a non-zero value is returned.
48 int subopt_parse( char const * const str
, opt_t
* opts
)
50 int parse_err
= 0, idx
;
51 unsigned int parse_pos
= 0;
53 /* Initialize set member to false. *
54 * It is set to true if it was found in str */
55 for ( idx
=0; opts
[idx
].name
; ++idx
)
62 while ( str
[parse_pos
] && !parse_err
)
66 idx
= 0; // reset index for the below loop
67 while ( opts
[idx
].name
)
72 // get length of the option we test against */
73 opt_len
= strlen( opts
[idx
].name
);
75 // get length of the current substring of str */
77 char * delim
, * arg_delim
;
79 /* search nearest delimiter ( option or argument delimiter ) */
80 delim
= strchr( &str
[parse_pos
], ':' );
81 arg_delim
= strchr( &str
[parse_pos
], '=' );
83 if ( ( delim
&& arg_delim
&& delim
> arg_delim
) ||
86 delim
= strchr( &str
[parse_pos
], '=' );
89 substr_len
= delim
? // is a delim present
90 delim
- &str
[parse_pos
] : // yes
91 strlen( &str
[parse_pos
] ); // no, end of string
94 //printf( "substr_len=%d, opt_len=%d\n", substr_len, opt_len );
96 /* Check if the length of the current option matches the *
97 * length of the option we want to test again. */
98 if ( substr_len
== opt_len
)
100 /* check if option was activated/deactivated */
101 if( strncmp( &str
[parse_pos
], opts
[idx
].name
, opt_len
) == 0 )
103 /* option was found */
104 opts
[idx
].set
= 1; next
= 1;
106 assert( opts
[idx
].valp
&& "Need a pointer to store the arg!" );
108 /* type specific code */
109 if ( opts
[idx
].type
== OPT_ARG_BOOL
)
111 /* Handle OPT_ARG_BOOL seperately so *
112 * the others can share code. */
114 /* set option to true */
115 *((int *)(opts
[idx
].valp
)) = 1;
117 /* increment position */
118 parse_pos
+= opt_len
;
122 /* Type is not OPT_ARG_BOOL, means we have to parse *
123 * for the arg delimiter character and eventually *
124 * call a test function. */
127 /* increment position to check for arg */
128 parse_pos
+= opt_len
;
130 if ( str
[parse_pos
] != '=' )
132 parse_err
= 1; break;
135 /* '=' char was there, so let's move after it */
138 switch ( opts
[idx
].type
)
141 last
= parse_int( &str
[parse_pos
],
142 (int *)opts
[idx
].valp
);
146 last
= parse_str( &str
[parse_pos
],
147 (strarg_t
*)opts
[idx
].valp
);
151 char **valp
= opts
[idx
].valp
;
155 last
= parse_str( &str
[parse_pos
], &tmp
);
159 if (tmp
.str
&& tmp
.len
> 0) {
160 *valp
= malloc(tmp
.len
+ 1);
161 memcpy(*valp
, tmp
.str
, tmp
.len
);
162 (*valp
)[tmp
.len
] = 0;
167 last
= parse_float( &str
[parse_pos
],
168 (float *)opts
[idx
].valp
);
171 assert( 0 && "Arg type of suboption doesn't exist!" );
172 last
= NULL
; // break parsing!
175 /* was the conversion succesful? */
178 parse_err
= 1; break;
181 /* make test if supplied */
182 if ( opts
[idx
].test
&& !opts
[idx
].test( opts
[idx
].valp
) )
184 parse_err
= 1; break;
187 /* we succeded, set position */
188 parse_pos
= last
- str
;
192 else if ( substr_len
== opt_len
+2 )
194 if ( opts
[idx
].type
== OPT_ARG_BOOL
&& // check for no<opt>
195 strncmp( &str
[parse_pos
], "no", 2 ) == 0 &&
196 strncmp( &str
[parse_pos
+2], opts
[idx
].name
, opt_len
) == 0 )
198 /* option was found but negated */
199 opts
[idx
].set
= 1; next
= 1;
201 /* set arg to false */
202 *((int *)(opts
[idx
].valp
)) = 0;
204 /* increment position */
205 parse_pos
+= opt_len
+2;
209 ++idx
; // test against next option
211 /* break out of the loop, if this subopt is processed */
212 if ( next
) { break; }
215 /* if we had a valid suboption the current pos should *
216 * equal the delimiter char, which should be ':' for *
218 if ( !parse_err
&& str
[parse_pos
] == ':' ) { ++parse_pos
; }
219 else if ( str
[parse_pos
] ) { parse_err
= 1; }
223 /* if an error was encountered */
227 mp_msg( MSGT_VO
, MSGL_FATAL
, "Could not parse arguments at the position indicated below:\n%s\n", str
);
228 for ( i
= 0; i
< parse_pos
; ++i
)
230 mp_msg(MSGT_VO
, MSGL_FATAL
, " ");
232 mp_msg(MSGT_VO
, MSGL_FATAL
, "^\n");
237 /* we could parse everything */
241 static char const * parse_int( char const * const str
, int * const valp
)
245 assert( str
&& "parse_int(): str == NULL" );
247 *valp
= (int)strtol( str
, &endp
, 0 );
249 /* nothing was converted */
250 if ( str
== endp
) { return NULL
; }
255 static char const * parse_float( char const * const str
, float * const valp
)
259 assert( str
&& "parse_float(): str == NULL" );
261 *valp
= strtod( str
, &endp
);
263 /* nothing was converted */
264 if ( str
== endp
) { return NULL
; }
269 #define QUOTE_CHAR '%'
270 static char const * parse_str( char const * str
, strarg_t
* const valp
)
272 char const * match
= strchr( str
, ':' );
274 if (str
[0] == QUOTE_CHAR
) {
277 len
= (int)strtol(str
, (char **)&str
, 0);
278 if (!str
|| str
[0] != QUOTE_CHAR
|| (len
> strlen(str
) - 1))
286 match
= strchr(str
, '"');
289 valp
->len
= match
- str
;
294 match
= &str
[strlen(str
)];
296 // empty string or too long
297 if ((match
== str
) || (match
- str
> INT_MAX
))
300 valp
->len
= match
- str
;
307 /*** common test functions ***/
309 /** \brief Test if i is not negative */
310 int int_non_neg( int * i
)
312 if ( *i
< 0 ) { return 0; }
316 /** \brief Test if i is positive. */
317 int int_pos( int * i
)
319 if ( *i
> 0 ) { return 1; }
324 /*** little helpers */
326 /** \brief compare the stings just as strcmp does */
327 int strargcmp(strarg_t
*arg
, const char *str
) {
328 int res
= strncmp(arg
->str
, str
, arg
->len
);
329 if (!res
&& arg
->len
!= strlen(str
))
330 res
= arg
->len
- strlen(str
);
334 /** \brief compare the stings just as strcasecmp does */
335 int strargcasecmp(strarg_t
*arg
, char *str
) {
336 int res
= strncasecmp(arg
->str
, str
, arg
->len
);
337 if (!res
&& arg
->len
!= strlen(str
))
338 res
= arg
->len
- strlen(str
);