commands: change property mechanism to use talloc strings
[mplayer.git] / m_option.h
blobb2f201c7123fbea2f4acd988b359156670056b94
1 /*
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
22 #include <string.h>
23 #include <stddef.h>
25 #include "config.h"
27 // m_option allows to parse, print and copy data of various types.
29 typedef struct m_option_type m_option_type_t;
30 typedef struct m_option m_option_t;
31 struct m_struct_st;
33 ///////////////////////////// Options types declarations ////////////////////
35 // Simple types
36 extern const m_option_type_t m_option_type_flag;
37 extern const m_option_type_t m_option_type_int;
38 extern const m_option_type_t m_option_type_int64;
39 extern const m_option_type_t m_option_type_intpair;
40 extern const m_option_type_t m_option_type_float;
41 extern const m_option_type_t m_option_type_double;
42 extern const m_option_type_t m_option_type_string;
43 extern const m_option_type_t m_option_type_string_list;
44 extern const m_option_type_t m_option_type_position;
45 extern const m_option_type_t m_option_type_time;
46 extern const m_option_type_t m_option_type_time_size;
47 extern const m_option_type_t m_option_type_choice;
49 extern const m_option_type_t m_option_type_print;
50 extern const m_option_type_t m_option_type_print_indirect;
51 extern const m_option_type_t m_option_type_print_func;
52 extern const m_option_type_t m_option_type_subconfig;
53 extern const m_option_type_t m_option_type_imgfmt;
54 extern const m_option_type_t m_option_type_afmt;
56 // Func-based types
57 extern const m_option_type_t m_option_type_func_param;
58 extern const m_option_type_t m_option_type_func;
60 // Callback used to reset func options.
61 typedef void (*m_opt_default_func_t)(const m_option_t *, const char *);
63 // Callback used by m_option_type_func_full options.
64 typedef int (*m_opt_func_full_t)(const m_option_t *, const char *, const char *);
66 // Callback used by m_option_type_func_param options.
67 typedef int (*m_opt_func_param_t)(const m_option_t *, const char *);
69 // Callback used by m_option_type_func options.
70 typedef int (*m_opt_func_t)(const m_option_t *);
72 // Backwards compatibility
73 typedef m_opt_default_func_t cfg_default_func_t;
74 typedef m_opt_func_full_t cfg_func_arg_param_t;
75 typedef m_opt_func_param_t cfg_func_param_t;
76 typedef m_opt_func_t cfg_func_t;
78 #define END_AT_NONE 0
79 #define END_AT_TIME 1
80 #define END_AT_SIZE 2
81 typedef struct {
82 double pos;
83 int type;
84 } m_time_size_t;
86 // Extra definition needed for \ref m_option_type_obj_settings_list options.
87 typedef struct {
88 // Pointer to an array of pointer to some object type description struct.
89 void **list;
90 // Offset of the object type name (char*) in the description struct.
91 void *name_off;
92 // Offset of the object type info string (char*) in the description struct.
93 void *info_off;
94 // Offset of the object type parameter description (\ref m_struct_st)
95 // in the description struct.
96 void *desc_off;
97 } m_obj_list_t;
99 // The data type used by \ref m_option_type_obj_settings_list.
100 typedef struct m_obj_settings {
101 // Type of the object.
102 char *name;
103 // NULL terminated array of parameter/value pairs.
104 char **attribs;
105 } m_obj_settings_t;
107 // A parser to set up a list of objects.
108 /** It creates a NULL terminated array \ref m_obj_settings. The option priv
109 * field (\ref m_option::priv) must point to a \ref m_obj_list_t describing
110 * the available object types.
112 extern const m_option_type_t m_option_type_obj_settings_list;
114 // Extra definition needed for \ref m_option_type_obj_presets options.
115 typedef struct {
116 // Description of the struct holding the presets.
117 const struct m_struct_st *in_desc;
118 // Description of the struct that should be set by the presets.
119 const struct m_struct_st *out_desc;
120 // Pointer to an array of structs defining the various presets.
121 const void *presets;
122 // Offset of the preset's name inside the in_struct.
123 void *name_off;
124 } m_obj_presets_t;
126 // Set several fields in a struct at once.
127 /** For this two struct descriptions are used. One for the struct holding the
128 * preset and one for the struct beeing set. Every field present in both
129 * structs will be copied from the preset struct to the destination one.
130 * The option priv field (\ref m_option::priv) must point to a correctly
131 * filled \ref m_obj_presets_t.
133 extern const m_option_type_t m_option_type_obj_presets;
135 // Parse an URL into a struct.
136 /** The option priv field (\ref m_option::priv) must point to a
137 * \ref m_struct_st describing which fields of the URL must be used.
139 extern const m_option_type_t m_option_type_custom_url;
141 // Extra definition needed for \ref m_option_type_obj_params options.
142 typedef struct {
143 // Field descriptions.
144 const struct m_struct_st *desc;
145 // Field separator to use.
146 char separator;
147 } m_obj_params_t;
149 // Parse a set of parameters.
150 /** Parameters are separated by the given separator and each one
151 * successively sets a field from the struct. The option priv field
152 * (\ref m_option::priv) must point to a \ref m_obj_params_t.
154 extern const m_option_type_t m_option_type_obj_params;
156 typedef struct {
157 int start;
158 int end;
159 } m_span_t;
160 // Ready made settings to parse a \ref m_span_t with a start-end syntax.
161 extern const m_obj_params_t m_span_params_def;
163 struct m_opt_choice_alternatives {
164 char *name;
165 int value;
169 // FIXME: backward compatibility
170 #define CONF_TYPE_FLAG (&m_option_type_flag)
171 #define CONF_TYPE_INT (&m_option_type_int)
172 #define CONF_TYPE_INT64 (&m_option_type_int64)
173 #define CONF_TYPE_FLOAT (&m_option_type_float)
174 #define CONF_TYPE_DOUBLE (&m_option_type_double)
175 #define CONF_TYPE_STRING (&m_option_type_string)
176 #define CONF_TYPE_FUNC (&m_option_type_func)
177 #define CONF_TYPE_FUNC_PARAM (&m_option_type_func_param)
178 #define CONF_TYPE_PRINT (&m_option_type_print)
179 #define CONF_TYPE_PRINT_INDIRECT (&m_option_type_print_indirect)
180 #define CONF_TYPE_PRINT_FUNC (&m_option_type_print_func)
181 #define CONF_TYPE_SUBCONFIG (&m_option_type_subconfig)
182 #define CONF_TYPE_STRING_LIST (&m_option_type_string_list)
183 #define CONF_TYPE_POSITION (&m_option_type_position)
184 #define CONF_TYPE_IMGFMT (&m_option_type_imgfmt)
185 #define CONF_TYPE_AFMT (&m_option_type_afmt)
186 #define CONF_TYPE_SPAN (&m_option_type_span)
187 #define CONF_TYPE_OBJ_SETTINGS_LIST (&m_option_type_obj_settings_list)
188 #define CONF_TYPE_OBJ_PRESETS (&m_option_type_obj_presets)
189 #define CONF_TYPE_CUSTOM_URL (&m_option_type_custom_url)
190 #define CONF_TYPE_OBJ_PARAMS (&m_option_type_obj_params)
191 #define CONF_TYPE_TIME (&m_option_type_time)
192 #define CONF_TYPE_TIME_SIZE (&m_option_type_time_size)
194 ////////////////////////////////////////////////////////////////////////////
196 // Option type description
197 struct m_option_type {
198 const char *name;
199 // Syntax description, etc
200 const char *comments;
201 // Size needed for the data.
202 unsigned int size;
203 // See \ref OptionTypeFlags.
204 unsigned int flags;
206 // Parse the data from a string.
207 /** It is the only required function, all others can be NULL.
209 * \param opt The option that is parsed.
210 * \param name The full option name.
211 * \param param The parameter to parse.
212 * \param dst Pointer to the memory where the data should be written.
213 * If NULL the parameter validity should still be checked.
214 * \param src Source of the option, see \ref OptionParserModes.
215 * \return On error a negative value is returned, on success the number of arguments
216 * consumed. For details see \ref OptionParserReturn.
218 int (*parse)(const m_option_t *opt, const char *name, const char *param, void *dst, int src);
220 // Print back a value in string form.
221 /** \param opt The option to print.
222 * \param val Pointer to the memory holding the data to be printed.
223 * \return An allocated string containing the text value or (void*)-1
224 * on error.
226 char *(*print)(const m_option_t *opt, const void *val);
228 /** \name
229 * These functions are called to save/set/restore the status of the
230 * variables. The difference between the 3 only matters for types like
231 * \ref m_option_type_func where 'setting' needs to do more than just
232 * copying some data.
234 //@{
236 // Update a save slot (dst) from the current value in the program (src).
237 /** \param opt The option to copy.
238 * \param dst Pointer to the destination memory.
239 * \param src Pointer to the source memory.
241 void (*save)(const m_option_t *opt, void *dst, const void *src);
243 // Set the value in the program (dst) from a save slot.
244 /** \param opt The option to copy.
245 * \param dst Pointer to the destination memory.
246 * \param src Pointer to the source memory.
248 void (*set)(const m_option_t *opt, void *dst, const void *src);
250 // Copy the data between two save slots. If NULL and size is > 0 a memcpy will be used.
251 /** \param opt The option to copy.
252 * \param dst Pointer to the destination memory.
253 * \param src Pointer to the source memory.
255 void (*copy)(const m_option_t *opt, void *dst, const void *src);
256 //@}
258 // Free the data allocated for a save slot.
259 /** This is only needed for dynamic types like strings.
260 * \param dst Pointer to the data, usually a pointer that should be freed and
261 * set to NULL.
263 void (*free)(void *dst);
266 // Option description
267 struct m_option {
268 // Option name.
269 const char *name;
271 // Reserved for higher level APIs, it shouldn't be used by parsers.
272 /** The suboption parser and func types do use it. They should instead
273 * use the priv field but this was inherited from older versions of the
274 * config code.
276 void *p;
278 // Option type.
279 const m_option_type_t *type;
281 // See \ref OptionFlags.
282 unsigned int flags;
284 // \brief Mostly useful for numeric types, the \ref M_OPT_MIN flags must
285 // also be set.
286 double min;
288 // \brief Mostly useful for numeric types, the \ref M_OPT_MAX flags must
289 // also be set.
290 double max;
292 // Type dependent data (for all kinds of extended settings).
293 /** This used to be a function pointer to hold a 'reverse to defaults' func.
294 * Now it can be used to pass any type of extra args needed by the parser.
295 * Passing a 'default func' is still valid for all func based option types.
297 void *priv;
299 int new;
301 int offset;
305 // The option has a minimum set in \ref m_option::min.
306 #define M_OPT_MIN (1 << 0)
308 // The option has a maximum set in \ref m_option::max.
309 #define M_OPT_MAX (1 << 1)
311 // The option has a minimum and maximum in m_option::min and m_option::max.
312 #define M_OPT_RANGE (M_OPT_MIN | M_OPT_MAX)
314 // The option is forbidden in config files.
315 #define M_OPT_NOCFG (1 << 2)
317 // The option is forbidden on the command line.
318 #define M_OPT_NOCMD (1 << 3)
320 // The option is global in the \ref Config.
321 /** It won't be saved on push and the command line parser will set it when
322 * it's parsed (i.e. it won't be set later)
323 * e.g options : -v, -quiet
325 #define M_OPT_GLOBAL (1 << 4)
327 // The \ref Config won't save this option on push.
328 /** It won't be saved on push but the command line parser will add it with
329 * its entry (i.e. it may be set later)
330 * e.g options : -include
332 #define M_OPT_NOSAVE (1 << 5)
334 // The option should be set during command line pre-parsing
335 #define M_OPT_PRE_PARSE (1 << 6)
337 // These are kept for compatibility with older code.
338 #define CONF_MIN M_OPT_MIN
339 #define CONF_MAX M_OPT_MAX
340 #define CONF_RANGE M_OPT_RANGE
341 #define CONF_NOCFG M_OPT_NOCFG
342 #define CONF_NOCMD M_OPT_NOCMD
343 #define CONF_GLOBAL M_OPT_GLOBAL
344 #define CONF_NOSAVE M_OPT_NOSAVE
345 #define CONF_PRE_PARSE M_OPT_PRE_PARSE
347 // These flags are used to describe special parser capabilities or behavior.
349 // Suboption parser flag.
350 /** When this flag is set, m_option::p should point to another m_option
351 * array. Only the parse function will be called. If dst is set, it should
352 * create/update an array of char* containg opt/val pairs. The options in
353 * the child array will then be set automatically by the \ref Config.
354 * Also note that suboptions may be directly accessed by using
355 * -option:subopt blah.
357 #define M_OPT_TYPE_HAS_CHILD (1 << 0)
359 // Wildcard matching flag.
360 /** If set the option type has a use for option names ending with a *
361 * (used for -aa*), this only affects the option name matching.
363 #define M_OPT_TYPE_ALLOW_WILDCARD (1 << 1)
365 // Dynamic data type.
366 /** This flag indicates that the data is dynamically allocated (m_option::p
367 * points to a pointer). It enables a little hack in the \ref Config wich
368 * replaces the initial value of such variables with a dynamic copy in case
369 * the initial value is statically allocated (pretty common with strings).
371 #define M_OPT_TYPE_DYNAMIC (1 << 2)
373 // Indirect option type.
374 /** If this is set the parse function doesn't directly return
375 * the wanted thing. Options use this if for some reasons they have to wait
376 * until the set call to be able to correctly set the target var.
377 * So for those types new values must first be parsed, then set to the target
378 * var. If this flag isn't set then new values can be parsed directly to the
379 * target var. It's used by the callback-based options as the callback call
380 * may append later on.
382 #define M_OPT_TYPE_INDIRECT (1 << 3)
384 ///////////////////////////// Parser flags /////////////////////////////////
386 // Some parsers behave differently depending on the mode passed in the src
387 // parameter of m_option_type::parse. For example the flag type doesn't take
388 // an argument when parsing from the command line.
390 // Set when parsing from a config file.
391 #define M_CONFIG_FILE 0
392 // Set when parsing command line arguments.
393 #define M_COMMAND_LINE 1
394 // Set when pre-parsing the command line
395 #define M_COMMAND_LINE_PRE_PARSE 2
397 // On success parsers return the number of arguments consumed: 0 or 1.
399 // To indicate that MPlayer should exit without playing anything,
400 // parsers return M_OPT_EXIT minus the number of parameters they
401 // consumed: \ref M_OPT_EXIT or \ref M_OPT_EXIT-1.
403 // On error one of the following (negative) error codes is returned:
405 // For use by higher level APIs when the option name is invalid.
406 #define M_OPT_UNKNOWN -1
408 // Returned when a parameter is needed but wasn't provided.
409 #define M_OPT_MISSING_PARAM -2
411 // Returned when the given parameter couldn't be parsed.
412 #define M_OPT_INVALID -3
414 // Returned if the value is "out of range". The exact meaning may
415 // vary from type to type.
416 #define M_OPT_OUT_OF_RANGE -4
418 // Returned if the parser failed for any other reason than a bad parameter.
419 #define M_OPT_PARSER_ERR -5
421 // Returned when MPlayer should exit. Used by various help stuff.
422 /** M_OPT_EXIT must be the lowest number on this list.
424 #define M_OPT_EXIT -6
426 // These are kept for compatibility with older code.
428 #define ERR_NOT_AN_OPTION M_OPT_UNKNOWN
429 #define ERR_MISSING_PARAM M_OPT_MISSING_PARAM
430 #define ERR_OUT_OF_RANGE M_OPT_OUT_OF_RANGE
431 #define ERR_FUNC_ERR M_OPT_PARSER_ERR
433 // Find the option matching the given name in the list.
434 /** \ingroup Options
435 * This function takes the possible wildcards into account (see
436 * \ref M_OPT_TYPE_ALLOW_WILDCARD).
438 * \param list Pointer to an array of \ref m_option.
439 * \param name Name of the option.
440 * \return The matching option or NULL.
442 const m_option_t *m_option_list_find(const m_option_t *list, const char *name);
444 static inline void *m_option_get_ptr(const struct m_option *opt,
445 void *optstruct)
447 return opt->new ? (char *) optstruct + opt->offset : opt->p;
450 // Helper to parse options, see \ref m_option_type::parse.
451 static inline int m_option_parse(const m_option_t *opt, const char *name,
452 const char *param, void *dst, int src)
454 return opt->type->parse(opt, name, param, dst, src);
457 // Helper to print options, see \ref m_option_type::print.
458 static inline char *m_option_print(const m_option_t *opt, const void *val_ptr)
460 if (opt->type->print)
461 return opt->type->print(opt, val_ptr);
462 else
463 return NULL;
466 // Helper around \ref m_option_type::copy.
467 static inline void m_option_copy(const m_option_t *opt, void *dst,
468 const void *src)
470 if (opt->type->copy)
471 opt->type->copy(opt, dst, src);
472 else if (opt->type->size > 0)
473 memcpy(dst, src, opt->type->size);
476 // Helper around \ref m_option_type::free.
477 static inline void m_option_free(const m_option_t *opt, void *dst)
479 if (opt->type->free)
480 opt->type->free(dst);
483 /*@}*/
486 * Parse a string as a timestamp.
488 * @param[in] str the string to parse.
489 * @param[out] time parsed time.
490 * @param[in] endchar return an error of the next character after the
491 * timestamp is neither nul nor endchar.
492 * @return Number of chars in the timestamp.
494 int parse_timestring(const char *str, double *time, char endchar);
496 #define OPTION_LIST_SEPARATOR ','
498 #if HAVE_DOS_PATHS
499 #define OPTION_PATH_SEPARATOR ';'
500 #else
501 #define OPTION_PATH_SEPARATOR ':'
502 #endif
504 #define OPT_FLAG_ON(optname, varname, flags) {optname, NULL, &m_option_type_flag, flags, 0, 1, NULL, 1, offsetof(struct MPOpts, varname)}
505 #define OPT_FLAG_OFF(optname, varname, flags) {optname, NULL, &m_option_type_flag, flags, 1, 0, NULL, 1, offsetof(struct MPOpts, varname)}
506 #define OPT_MAKE_FLAGS(optname, varname, flags) OPT_FLAG_ON(optname, varname, flags), OPT_FLAG_OFF("no" optname, varname, flags)
507 #define OPT_FLAG_CONSTANTS(optname, varname, flags, offvalue, value) {optname, NULL, &m_option_type_flag, flags, offvalue, value, NULL, 1, offsetof(struct MPOpts, varname)}
508 #define OPT_STRINGLIST(optname, varname, flags) {optname, NULL, &m_option_type_string_list, flags, 0, 0, NULL, 1, offsetof(struct MPOpts, varname)}
509 #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)}
510 #define OPT_INT(optname, varname, flags) {optname, NULL, &m_option_type_int, flags, 0, 0, NULL, 1, offsetof(struct MPOpts, varname)}
511 #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)}
512 #define OPT_INTPAIR(optname, varname, flags) {optname, NULL, &m_option_type_intpair, (flags), 0, 0, NULL, 1, offsetof(struct MPOpts, varname)}
513 #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)}
514 #define OPT_STRING(optname, varname, flags) {optname, NULL, &m_option_type_string, flags, 0, 0, NULL, 1, offsetof(struct MPOpts, varname)}
515 #define OPT_SETTINGSLIST(optname, varname, flags, objlist) {optname, NULL, &m_option_type_obj_settings_list, flags, 0, 0, objlist, 1, offsetof(struct MPOpts, varname)}
516 #define OPT_AUDIOFORMAT(optname, varname, flags) {optname, NULL, &m_option_type_afmt, flags, 0, 0, NULL, 1, offsetof(struct MPOpts, varname)}
517 #define OPT_HELPER_REMOVEPAREN(...) __VA_ARGS__
518 #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)}
520 #endif /* MPLAYER_M_OPTION_H */