2 * This file is part of MPlayer.
4 * MPlayer is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * MPlayer is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License along
15 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 #ifndef MPLAYER_M_OPTION_H
20 #define MPLAYER_M_OPTION_H
28 /// m_option allows to parse, print and copy data of various types.
29 /// It is the base of the \ref OptionsStruct, \ref Config and
30 /// \ref Properties APIs.
35 /// \ingroup OptionTypes
36 typedef struct m_option_type m_option_type_t
;
37 typedef struct m_option m_option_t
;
40 /// \defgroup OptionTypes Options types
44 ///////////////////////////// Options types declarations ////////////////////////////
47 extern const m_option_type_t m_option_type_flag
;
48 extern const m_option_type_t m_option_type_int
;
49 extern const m_option_type_t m_option_type_int64
;
50 extern const m_option_type_t m_option_type_intpair
;
51 extern const m_option_type_t m_option_type_float
;
52 extern const m_option_type_t m_option_type_double
;
53 extern const m_option_type_t m_option_type_string
;
54 extern const m_option_type_t m_option_type_string_list
;
55 extern const m_option_type_t m_option_type_position
;
56 extern const m_option_type_t m_option_type_time
;
57 extern const m_option_type_t m_option_type_time_size
;
58 extern const m_option_type_t m_option_type_choice
;
60 extern const m_option_type_t m_option_type_print
;
61 extern const m_option_type_t m_option_type_print_indirect
;
62 extern const m_option_type_t m_option_type_print_func
;
63 extern const m_option_type_t m_option_type_subconfig
;
64 extern const m_option_type_t m_option_type_imgfmt
;
65 extern const m_option_type_t m_option_type_afmt
;
68 extern const m_option_type_t m_option_type_func_param
;
69 extern const m_option_type_t m_option_type_func
;
71 /// Callback used to reset func options.
72 typedef void (*m_opt_default_func_t
)(const m_option_t
*, const char*);
74 /// Callback used by m_option_type_func_full options.
75 typedef int (*m_opt_func_full_t
)(const m_option_t
*, const char *, const char *);
77 /// Callback used by m_option_type_func_param options.
78 typedef int (*m_opt_func_param_t
)(const m_option_t
*, const char *);
80 /// Callback used by m_option_type_func options.
81 typedef int (*m_opt_func_t
)(const m_option_t
*);
83 // Backwards compatibility
84 typedef m_opt_default_func_t cfg_default_func_t
;
85 typedef m_opt_func_full_t cfg_func_arg_param_t
;
86 typedef m_opt_func_param_t cfg_func_param_t
;
87 typedef m_opt_func_t cfg_func_t
;
97 /// Extra definition needed for \ref m_option_type_obj_settings_list options.
99 /// Pointer to an array of pointer to some object type description struct.
101 /// Offset of the object type name (char*) in the description struct.
103 /// Offset of the object type info string (char*) in the description struct.
105 /// \brief Offset of the object type parameter description (\ref m_struct_st)
106 /// in the description struct.
110 /// The data type used by \ref m_option_type_obj_settings_list.
111 typedef struct m_obj_settings
{
112 /// Type of the object.
114 /// NULL terminated array of parameter/value pairs.
118 /// A parser to set up a list of objects.
119 /** It creates a NULL terminated array \ref m_obj_settings. The option priv
120 * field (\ref m_option::priv) must point to a \ref m_obj_list_t describing
121 * the available object types.
123 extern const m_option_type_t m_option_type_obj_settings_list
;
125 /// Extra definition needed for \ref m_option_type_obj_presets options.
127 /// Description of the struct holding the presets.
128 struct m_struct_st
* in_desc
;
129 /// Description of the struct that should be set by the presets.
130 struct m_struct_st
* out_desc
;
131 /// Pointer to an array of structs defining the various presets.
133 /// Offset of the preset's name inside the in_struct.
137 /// Set several fields in a struct at once.
138 /** For this two struct descriptions are used. One for the struct holding the
139 * preset and one for the struct beeing set. Every field present in both
140 * structs will be copied from the preset struct to the destination one.
141 * The option priv field (\ref m_option::priv) must point to a correctly
142 * filled \ref m_obj_presets_t.
144 extern const m_option_type_t m_option_type_obj_presets
;
146 /// Parse an URL into a struct.
147 /** The option priv field (\ref m_option::priv) must point to a
148 * \ref m_struct_st describing which fields of the URL must be used.
150 extern const m_option_type_t m_option_type_custom_url
;
152 /// Extra definition needed for \ref m_option_type_obj_params options.
154 /// Field descriptions.
155 const struct m_struct_st
* desc
;
156 /// Field separator to use.
160 /// Parse a set of parameters.
161 /** Parameters are separated by the given separator and each one
162 * successively sets a field from the struct. The option priv field
163 * (\ref m_option::priv) must point to a \ref m_obj_params_t.
165 extern const m_option_type_t m_option_type_obj_params
;
171 /// Ready made settings to parse a \ref m_span_t with a start-end syntax.
172 extern const m_obj_params_t m_span_params_def
;
174 struct m_opt_choice_alternatives
{
180 // FIXME: backward compatibility
181 #define CONF_TYPE_FLAG (&m_option_type_flag)
182 #define CONF_TYPE_INT (&m_option_type_int)
183 #define CONF_TYPE_INT64 (&m_option_type_int64)
184 #define CONF_TYPE_FLOAT (&m_option_type_float)
185 #define CONF_TYPE_DOUBLE (&m_option_type_double)
186 #define CONF_TYPE_STRING (&m_option_type_string)
187 #define CONF_TYPE_FUNC (&m_option_type_func)
188 #define CONF_TYPE_FUNC_PARAM (&m_option_type_func_param)
189 #define CONF_TYPE_PRINT (&m_option_type_print)
190 #define CONF_TYPE_PRINT_INDIRECT (&m_option_type_print_indirect)
191 #define CONF_TYPE_PRINT_FUNC (&m_option_type_print_func)
192 #define CONF_TYPE_SUBCONFIG (&m_option_type_subconfig)
193 #define CONF_TYPE_STRING_LIST (&m_option_type_string_list)
194 #define CONF_TYPE_POSITION (&m_option_type_position)
195 #define CONF_TYPE_IMGFMT (&m_option_type_imgfmt)
196 #define CONF_TYPE_AFMT (&m_option_type_afmt)
197 #define CONF_TYPE_SPAN (&m_option_type_span)
198 #define CONF_TYPE_OBJ_SETTINGS_LIST (&m_option_type_obj_settings_list)
199 #define CONF_TYPE_OBJ_PRESETS (&m_option_type_obj_presets)
200 #define CONF_TYPE_CUSTOM_URL (&m_option_type_custom_url)
201 #define CONF_TYPE_OBJ_PARAMS (&m_option_type_obj_params)
202 #define CONF_TYPE_TIME (&m_option_type_time)
203 #define CONF_TYPE_TIME_SIZE (&m_option_type_time_size)
205 /////////////////////////////////////////////////////////////////////////////////////////////
207 /// Option type description
208 struct m_option_type
{
210 /// Syntax description, etc
211 const char* comments
;
212 /// Size needed for the data.
214 /// See \ref OptionTypeFlags.
217 /// Parse the data from a string.
218 /** It is the only required function, all others can be NULL.
220 * \param opt The option that is parsed.
221 * \param name The full option name.
222 * \param param The parameter to parse.
223 * \param dst Pointer to the memory where the data should be written.
224 * If NULL the parameter validity should still be checked.
225 * \param src Source of the option, see \ref OptionParserModes.
226 * \return On error a negative value is returned, on success the number of arguments
227 * consumed. For details see \ref OptionParserReturn.
229 int (*parse
)(const m_option_t
* opt
,const char *name
, const char *param
, void* dst
, int src
);
231 /// Print back a value in string form.
232 /** \param opt The option to print.
233 * \param val Pointer to the memory holding the data to be printed.
234 * \return An allocated string containing the text value or (void*)-1
237 char* (*print
)(const m_option_t
* opt
, const void* val
);
240 * These functions are called to save/set/restore the status of the
241 * variables. The difference between the 3 only matters for types like
242 * \ref m_option_type_func where 'setting' needs to do more than just
247 /// Update a save slot (dst) from the current value in the program (src).
248 /** \param opt The option to copy.
249 * \param dst Pointer to the destination memory.
250 * \param src Pointer to the source memory.
252 void (*save
)(const m_option_t
* opt
,void* dst
, const void* src
);
254 /// Set the value in the program (dst) from a save slot.
255 /** \param opt The option to copy.
256 * \param dst Pointer to the destination memory.
257 * \param src Pointer to the source memory.
259 void (*set
)(const m_option_t
* opt
,void* dst
, const void* src
);
261 /// Copy the data between two save slots. If NULL and size is > 0 a memcpy will be used.
262 /** \param opt The option to copy.
263 * \param dst Pointer to the destination memory.
264 * \param src Pointer to the source memory.
266 void (*copy
)(const m_option_t
* opt
,void* dst
, const void* src
);
269 /// Free the data allocated for a save slot.
270 /** This is only needed for dynamic types like strings.
271 * \param dst Pointer to the data, usually a pointer that should be freed and
274 void (*free
)(void* dst
);
279 /// Option description
286 /// Reserved for higher level APIs, it shouldn't be used by parsers.
287 /** The suboption parser and func types do use it. They should instead
288 * use the priv field but this was inherited from older versions of the
294 const m_option_type_t
* type
;
296 /// See \ref OptionFlags.
299 /// \brief Mostly useful for numeric types, the \ref M_OPT_MIN flags must
303 /// \brief Mostly useful for numeric types, the \ref M_OPT_MAX flags must
307 /// Type dependent data (for all kinds of extended settings).
308 /** This used to be a function pointer to hold a 'reverse to defaults' func.
309 * Now it can be used to pass any type of extra args needed by the parser.
310 * Passing a 'default func' is still valid for all func based option types.
320 /// \defgroup OptionFlags Option flags
323 /// The option has a minimum set in \ref m_option::min.
324 #define M_OPT_MIN (1<<0)
326 /// The option has a maximum set in \ref m_option::max.
327 #define M_OPT_MAX (1<<1)
329 /// The option has a minimum and maximum in \ref m_option::min and \ref m_option::max.
330 #define M_OPT_RANGE (M_OPT_MIN|M_OPT_MAX)
332 /// The option is forbidden in config files.
333 #define M_OPT_NOCFG (1<<2)
335 /// The option is forbidden on the command line.
336 #define M_OPT_NOCMD (1<<3)
338 /// The option is global in the \ref Config.
339 /** It won't be saved on push and the command line parser will set it when
340 * it's parsed (i.e. it won't be set later)
341 * e.g options : -v, -quiet
343 #define M_OPT_GLOBAL (1<<4)
345 /// The \ref Config won't save this option on push.
346 /** It won't be saved on push but the command line parser will add it with
347 * its entry (i.e. it may be set later)
348 * e.g options : -include
350 #define M_OPT_NOSAVE (1<<5)
352 /// The option should be set during command line pre-parsing
353 #define M_OPT_PRE_PARSE (1<<6)
355 /// \defgroup OldOptionFlags Backward compatibility
357 /// These are kept for compatibility with older code.
359 #define CONF_MIN M_OPT_MIN
360 #define CONF_MAX M_OPT_MAX
361 #define CONF_RANGE M_OPT_RANGE
362 #define CONF_NOCFG M_OPT_NOCFG
363 #define CONF_NOCMD M_OPT_NOCMD
364 #define CONF_GLOBAL M_OPT_GLOBAL
365 #define CONF_NOSAVE M_OPT_NOSAVE
366 #define CONF_PRE_PARSE M_OPT_PRE_PARSE
371 /// \defgroup OptionTypeFlags Option type flags
372 /// \ingroup OptionTypes
374 /// These flags are used to describe special parser capabilities or behavior.
378 /// Suboption parser flag.
379 /** When this flag is set, m_option::p should point to another m_option
380 * array. Only the parse function will be called. If dst is set, it should
381 * create/update an array of char* containg opt/val pairs. The options in
382 * the child array will then be set automatically by the \ref Config.
383 * Also note that suboptions may be directly accessed by using
384 * -option:subopt blah.
386 #define M_OPT_TYPE_HAS_CHILD (1<<0)
388 /// Wildcard matching flag.
389 /** If set the option type has a use for option names ending with a *
390 * (used for -aa*), this only affects the option name matching.
392 #define M_OPT_TYPE_ALLOW_WILDCARD (1<<1)
394 /// Dynamic data type.
395 /** This flag indicates that the data is dynamically allocated (m_option::p
396 * points to a pointer). It enables a little hack in the \ref Config wich
397 * replaces the initial value of such variables with a dynamic copy in case
398 * the initial value is statically allocated (pretty common with strings).
400 #define M_OPT_TYPE_DYNAMIC (1<<2)
402 /// Indirect option type.
403 /** If this is set the parse function doesn't directly return
404 * the wanted thing. Options use this if for some reasons they have to wait
405 * until the set call to be able to correctly set the target var.
406 * So for those types new values must first be parsed, then set to the target
407 * var. If this flag isn't set then new values can be parsed directly to the
408 * target var. It's used by the callback-based options as the callback call
409 * may append later on.
411 #define M_OPT_TYPE_INDIRECT (1<<3)
415 ///////////////////////////// Parser flags ////////////////////////////////////////
417 /// \defgroup OptionParserModes Option parser modes
420 /// Some parsers behave differently depending on the mode passed in the src
421 /// parameter of m_option_type::parse. For example the flag type doesn't take
422 /// an argument when parsing from the command line.
425 /// Set when parsing from a config file.
426 #define M_CONFIG_FILE 0
427 /// Set when parsing command line arguments.
428 #define M_COMMAND_LINE 1
429 /// Set when pre-parsing the command line
430 #define M_COMMAND_LINE_PRE_PARSE 2
434 /// \defgroup OptionParserReturn Option parser return code
437 /// On success parsers return the number of arguments consumed: 0 or 1.
439 /// To indicate that MPlayer should exit without playing anything,
440 /// parsers return M_OPT_EXIT minus the number of parameters they
441 /// consumed: \ref M_OPT_EXIT or \ref M_OPT_EXIT-1.
443 /// On error one of the following (negative) error codes is returned:
446 /// For use by higher level APIs when the option name is invalid.
447 #define M_OPT_UNKNOWN -1
449 /// Returned when a parameter is needed but wasn't provided.
450 #define M_OPT_MISSING_PARAM -2
452 /// Returned when the given parameter couldn't be parsed.
453 #define M_OPT_INVALID -3
455 /// \brief Returned if the value is "out of range". The exact meaning may
456 /// vary from type to type.
457 #define M_OPT_OUT_OF_RANGE -4
459 /// Returned if the parser failed for any other reason than a bad parameter.
460 #define M_OPT_PARSER_ERR -5
462 /// Returned when MPlayer should exit. Used by various help stuff.
463 /** M_OPT_EXIT must be the lowest number on this list.
465 #define M_OPT_EXIT -6
467 /// \defgroup OldOptionParserReturn Backward compatibility
469 /// These are kept for compatibility with older code.
472 #define ERR_NOT_AN_OPTION M_OPT_UNKNOWN
473 #define ERR_MISSING_PARAM M_OPT_MISSING_PARAM
474 #define ERR_OUT_OF_RANGE M_OPT_OUT_OF_RANGE
475 #define ERR_FUNC_ERR M_OPT_PARSER_ERR
480 /// Find the option matching the given name in the list.
482 * This function takes the possible wildcards into account (see
483 * \ref M_OPT_TYPE_ALLOW_WILDCARD).
485 * \param list Pointer to an array of \ref m_option.
486 * \param name Name of the option.
487 * \return The matching option or NULL.
489 const m_option_t
* m_option_list_find(const m_option_t
* list
,const char* name
);
491 static inline void *m_option_get_ptr(const struct m_option
*opt
,
494 return opt
->new ? (char *) optstruct
+ opt
->offset
: opt
->p
;
497 /// Helper to parse options, see \ref m_option_type::parse.
499 m_option_parse(const m_option_t
* opt
,const char *name
, const char *param
, void* dst
, int src
) {
500 return opt
->type
->parse(opt
,name
,param
,dst
,src
);
503 /// Helper to print options, see \ref m_option_type::print.
505 m_option_print(const m_option_t
* opt
, const void* val_ptr
) {
507 return opt
->type
->print(opt
,val_ptr
);
512 /// Helper around \ref m_option_type::copy.
514 m_option_copy(const m_option_t
* opt
,void* dst
, const void* src
) {
516 opt
->type
->copy(opt
,dst
,src
);
517 else if(opt
->type
->size
> 0)
518 memcpy(dst
,src
,opt
->type
->size
);
521 /// Helper around \ref m_option_type::free.
523 m_option_free(const m_option_t
* opt
,void* dst
) {
525 opt
->type
->free(dst
);
531 * Parse a string as a timestamp.
533 * @param[in] str the string to parse.
534 * @param[out] time parsed time.
535 * @param[in] endchar return an error of the next character after the
536 * timestamp is neither nul nor endchar.
537 * @return Number of chars in the timestamp.
539 int parse_timestring(const char *str
, double *time
, char endchar
);
541 #define OPTION_LIST_SEPARATOR ','
544 #define OPTION_PATH_SEPARATOR ';'
546 #define OPTION_PATH_SEPARATOR ':'
549 #define OPT_FLAG_ON(optname, varname, flags) {optname, NULL, &m_option_type_flag, flags, 0, 1, NULL, 1, offsetof(struct MPOpts, varname)}
550 #define OPT_FLAG_OFF(optname, varname, flags) {optname, NULL, &m_option_type_flag, flags, 1, 0, NULL, 1, offsetof(struct MPOpts, varname)}
551 #define OPT_MAKE_FLAGS(optname, varname, flags) OPT_FLAG_ON(optname, varname, flags), OPT_FLAG_OFF("no" optname, varname, flags)
552 #define OPT_FLAG_CONSTANTS(optname, varname, flags, offvalue, value) {optname, NULL, &m_option_type_flag, flags, offvalue, value, NULL, 1, offsetof(struct MPOpts, varname)}
553 #define OPT_STRINGLIST(optname, varname, flags) {optname, NULL, &m_option_type_string_list, flags, 0, 0, NULL, 1, offsetof(struct MPOpts, varname)}
554 #define OPT_PATHLIST(optname, varname, flags) {optname, NULL, &m_option_type_string_list, flags, 0, 0, (void *)&(const char){OPTION_PATH_SEPARATOR}, 1, offsetof(struct MPOpts, varname)}
555 #define OPT_INT(optname, varname, flags) {optname, NULL, &m_option_type_int, flags, 0, 0, NULL, 1, offsetof(struct MPOpts, varname)}
556 #define OPT_INTRANGE(optname, varname, flags, min, max) {optname, NULL, &m_option_type_int, (flags)|CONF_RANGE, min, max, NULL, 1, offsetof(struct MPOpts, varname)}
557 #define OPT_INTPAIR(optname, varname, flags) {optname, NULL, &m_option_type_intpair, (flags), 0, 0, NULL, 1, offsetof(struct MPOpts, varname)}
558 #define OPT_FLOATRANGE(optname, varname, flags, min, max) {optname, NULL, &m_option_type_float, (flags)|CONF_RANGE, min, max, NULL, 1, offsetof(struct MPOpts, varname)}
559 #define OPT_STRING(optname, varname, flags) {optname, NULL, &m_option_type_string, flags, 0, 0, NULL, 1, offsetof(struct MPOpts, varname)}
560 #define OPT_SETTINGSLIST(optname, varname, flags, objlist) {optname, NULL, &m_option_type_obj_settings_list, flags, 0, 0, objlist, 1, offsetof(struct MPOpts, varname)}
561 #define OPT_AUDIOFORMAT(optname, varname, flags) {optname, NULL, &m_option_type_afmt, flags, 0, 0, NULL, 1, offsetof(struct MPOpts, varname)}
562 #define OPT_HELPER_REMOVEPAREN(...) __VA_ARGS__
563 #define OPT_CHOICE(optname, varname, flags, choices) {optname, NULL, &m_option_type_choice, flags, 0, 0, &(const struct m_opt_choice_alternatives[]){OPT_HELPER_REMOVEPAREN choices, {NULL}}, 1, offsetof(struct MPOpts, varname)}
565 #endif /* MPLAYER_M_OPTION_H */