annotate m_option.h @ 18258:96568be4bfdc

Doxygen attack!
author albeu
date Mon, 24 Apr 2006 19:20:04 +0000
parents 21123e349463
children 67d35fe89c8d
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
10594
57bdcdb061d7 Removed the historic cfgparser and switched full to the new config parser (altought some macros still remain for compatibility). As a side effect 90% of the warning messages are gone from the core. Things should be cleaner now and less confusing for newbies.
alex
parents: 10590
diff changeset
1 #ifndef _M_OPTION_H
57bdcdb061d7 Removed the historic cfgparser and switched full to the new config parser (altought some macros still remain for compatibility). As a side effect 90% of the warning messages are gone from the core. Things should be cleaner now and less confusing for newbies.
alex
parents: 10590
diff changeset
2 #define _M_OPTION_H
8164
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
3
18258
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
4 /// \defgroup Options
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
5 /// m_option allow to parse, print and copy data of various types.
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
6 /// It is the base of the \ref OptionsStruct, \ref Config and
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
7 /// \ref Properties APIs.
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
8 ///@{
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
9
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
10 /// \file m_option.h
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
11
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
12 /// \ingroup OptionTypes
8164
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
13 typedef struct m_option_type m_option_type_t;
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
14 typedef struct m_option m_option_t;
9793
b2bf632d37b5 10L forgot to fix the forward declaration too.
albeu
parents: 9791
diff changeset
15 struct m_struct_st;
8164
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
16
18258
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
17 /// \defgroup OptionTypes Options types
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
18 /// \ingroup Options
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
19 ///@{
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
20
8164
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
21 ///////////////////////////// Options types declarations ////////////////////////////
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
22
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
23 // Simple types
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
24 extern m_option_type_t m_option_type_flag;
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
25 extern m_option_type_t m_option_type_int;
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
26 extern m_option_type_t m_option_type_float;
11947
3ccd5dcf447c m_option_type_double
michael
parents: 10595
diff changeset
27 extern m_option_type_t m_option_type_double;
8164
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
28 extern m_option_type_t m_option_type_string;
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
29 extern m_option_type_t m_option_type_string_list;
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
30 extern m_option_type_t m_option_type_position;
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
31
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
32 extern m_option_type_t m_option_type_print;
8736
michael
parents: 8168
diff changeset
33 extern m_option_type_t m_option_type_print_indirect;
17470
21123e349463 New option type to print help text with a function.
albeu
parents: 17456
diff changeset
34 extern m_option_type_t m_option_type_print_func;
8164
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
35 extern m_option_type_t m_option_type_subconfig;
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
36 extern m_option_type_t m_option_type_imgfmt;
14246
474a40917f73 CONF_TYPE_AFMT similar to CONF_TYPE_IMGFMT
alex
parents: 11947
diff changeset
37 extern m_option_type_t m_option_type_afmt;
8164
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
38
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
39 // Func based types
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
40 extern m_option_type_t m_option_type_func_full;
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
41 extern m_option_type_t m_option_type_func_param;
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
42 extern m_option_type_t m_option_type_func;
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
43
18258
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
44 /// Callback used to reset func options.
8164
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
45 typedef void (*m_opt_default_func_t)(m_option_t *, char*);
18258
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
46
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
47 /// Callback used by m_option_type_func_full options.
8164
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
48 typedef int (*m_opt_func_full_t)(m_option_t *, char *, char *);
18258
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
49
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
50 /// Callback used by m_option_type_func_param options.
8164
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
51 typedef int (*m_opt_func_param_t)(m_option_t *, char *);
18258
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
52
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
53 /// Callback used by m_option_type_func options.
8164
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
54 typedef int (*m_opt_func_t)(m_option_t *);
18258
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
55
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
56 // Backward compat
8164
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
57 typedef m_opt_default_func_t cfg_default_func_t;
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
58 typedef m_opt_func_full_t cfg_func_arg_param_t;
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
59 typedef m_opt_func_param_t cfg_func_param_t;
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
60 typedef m_opt_func_t cfg_func_t;
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
61
18258
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
62 /// Extra definition needed for \ref m_option_type_obj_settings_list options.
9593
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 8736
diff changeset
63 typedef struct {
18258
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
64 /// Pointer to an array of pointer to some object type description struct.
9593
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 8736
diff changeset
65 void** list;
18258
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
66 /// Offset of the object type name (char*) in the description struct.
9593
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 8736
diff changeset
67 void* name_off;
18258
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
68 /// Offset of the object type info string (char*) in the description struct.
9593
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 8736
diff changeset
69 void* info_off;
18258
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
70 /// \brief Offset of the object type parameter description (\ref m_struct_st)
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
71 /// in the description struct.
9593
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 8736
diff changeset
72 void* desc_off;
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 8736
diff changeset
73 } m_obj_list_t;
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 8736
diff changeset
74
18258
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
75 /// The data type used by \ref m_option_type_obj_settings_list.
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
76 typedef struct m_obj_settings {
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
77 /// Type of the object.
9593
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 8736
diff changeset
78 char* name;
18258
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
79 /// NULL terminated array of parameter/value pairs.
9593
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 8736
diff changeset
80 char** attribs;
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 8736
diff changeset
81 } m_obj_settings_t;
18258
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
82
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
83 /// A parser to setup a list of objects.
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
84 /** It create a NULL terminated array \ref m_obj_settings. The option priv
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
85 * field (\ref m_option::priv) must point to a \ref m_obj_list_t describing
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
86 * the available object types.
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
87 */
9593
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 8736
diff changeset
88 extern m_option_type_t m_option_type_obj_settings_list;
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 8736
diff changeset
89
18258
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
90 /// Extra definition needed for \ref m_option_type_obj_presets options.
9593
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 8736
diff changeset
91 typedef struct {
18258
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
92 /// Description of the struct holding the presets.
9791
c5b63e88253d Fix some 10L typo in header (m_struct_s instead of m_struct_st).
albeu
parents: 9593
diff changeset
93 struct m_struct_st* in_desc;
18258
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
94 /// Description of the struct that should be set by the presets.
9791
c5b63e88253d Fix some 10L typo in header (m_struct_s instead of m_struct_st).
albeu
parents: 9593
diff changeset
95 struct m_struct_st* out_desc;
18258
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
96 /// Pointer to an array of struct defining the various presets.
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
97 void* presets;
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
98 /// Offset of the preset's name inside the in_struct.
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
99 void* name_off;
9593
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 8736
diff changeset
100 } m_obj_presets_t;
18258
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
101
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
102 /// Set several fields in a struct at once.
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
103 /** For this two struct description are used. One for the struct holding the
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
104 * preset and one for the struct beeing set. Every field present in both
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
105 * struct will be copied from the preset struct to the destination one.
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
106 * The option priv field (\ref m_option::priv) must point to a correctly
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
107 * filled \ref m_obj_presets_t.
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
108 */
9593
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 8736
diff changeset
109 extern m_option_type_t m_option_type_obj_presets;
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 8736
diff changeset
110
18258
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
111 /// Parse an URL into a struct.
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
112 /** The option priv field (\ref m_option::priv) must point to a
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
113 * \ref m_struct_st describing which fields of the URL must be used.
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
114 */
9791
c5b63e88253d Fix some 10L typo in header (m_struct_s instead of m_struct_st).
albeu
parents: 9593
diff changeset
115 extern m_option_type_t m_option_type_custom_url;
c5b63e88253d Fix some 10L typo in header (m_struct_s instead of m_struct_st).
albeu
parents: 9593
diff changeset
116
18258
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
117 /// Extra definition needed for \ref m_option_type_obj_params options.
9791
c5b63e88253d Fix some 10L typo in header (m_struct_s instead of m_struct_st).
albeu
parents: 9593
diff changeset
118 typedef struct {
18258
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
119 /// Fields description.
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
120 struct m_struct_st* desc;
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
121 /// Field separator to use.
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
122 char separator;
9791
c5b63e88253d Fix some 10L typo in header (m_struct_s instead of m_struct_st).
albeu
parents: 9593
diff changeset
123 } m_obj_params_t;
18258
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
124
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
125 /// Parse a set of parameters.
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
126 /** Parameters are separated by the given separator and each one
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
127 * successively set a field from the struct. The option priv field
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
128 * (\ref m_option::priv) must point to a \ref m_obj_params_t.
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
129 */
9791
c5b63e88253d Fix some 10L typo in header (m_struct_s instead of m_struct_st).
albeu
parents: 9593
diff changeset
130 extern m_option_type_t m_option_type_obj_params;
c5b63e88253d Fix some 10L typo in header (m_struct_s instead of m_struct_st).
albeu
parents: 9593
diff changeset
131
c5b63e88253d Fix some 10L typo in header (m_struct_s instead of m_struct_st).
albeu
parents: 9593
diff changeset
132 typedef struct {
c5b63e88253d Fix some 10L typo in header (m_struct_s instead of m_struct_st).
albeu
parents: 9593
diff changeset
133 int start;
c5b63e88253d Fix some 10L typo in header (m_struct_s instead of m_struct_st).
albeu
parents: 9593
diff changeset
134 int end;
c5b63e88253d Fix some 10L typo in header (m_struct_s instead of m_struct_st).
albeu
parents: 9593
diff changeset
135 } m_span_t;
18258
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
136 /// Ready made settings to parse a \ref m_span_t with a start-end syntax.
9791
c5b63e88253d Fix some 10L typo in header (m_struct_s instead of m_struct_st).
albeu
parents: 9593
diff changeset
137 extern m_obj_params_t m_span_params_def;
c5b63e88253d Fix some 10L typo in header (m_struct_s instead of m_struct_st).
albeu
parents: 9593
diff changeset
138
c5b63e88253d Fix some 10L typo in header (m_struct_s instead of m_struct_st).
albeu
parents: 9593
diff changeset
139
10594
57bdcdb061d7 Removed the historic cfgparser and switched full to the new config parser (altought some macros still remain for compatibility). As a side effect 90% of the warning messages are gone from the core. Things should be cleaner now and less confusing for newbies.
alex
parents: 10590
diff changeset
140 // FIXME: backward compatibility
8164
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
141 #define CONF_TYPE_FLAG (&m_option_type_flag)
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
142 #define CONF_TYPE_INT (&m_option_type_int)
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
143 #define CONF_TYPE_FLOAT (&m_option_type_float)
11947
3ccd5dcf447c m_option_type_double
michael
parents: 10595
diff changeset
144 #define CONF_TYPE_DOUBLE (&m_option_type_double)
10594
57bdcdb061d7 Removed the historic cfgparser and switched full to the new config parser (altought some macros still remain for compatibility). As a side effect 90% of the warning messages are gone from the core. Things should be cleaner now and less confusing for newbies.
alex
parents: 10590
diff changeset
145 #define CONF_TYPE_STRING (&m_option_type_string)
8164
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
146 #define CONF_TYPE_FUNC (&m_option_type_func)
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
147 #define CONF_TYPE_FUNC_PARAM (&m_option_type_func_param)
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
148 #define CONF_TYPE_PRINT (&m_option_type_print)
8736
michael
parents: 8168
diff changeset
149 #define CONF_TYPE_PRINT_INDIRECT (&m_option_type_print_indirect)
17470
21123e349463 New option type to print help text with a function.
albeu
parents: 17456
diff changeset
150 #define CONF_TYPE_PRINT_FUNC (&m_option_type_print_func)
8164
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
151 #define CONF_TYPE_FUNC_FULL (&m_option_type_func_full)
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
152 #define CONF_TYPE_SUBCONFIG (&m_option_type_subconfig)
10594
57bdcdb061d7 Removed the historic cfgparser and switched full to the new config parser (altought some macros still remain for compatibility). As a side effect 90% of the warning messages are gone from the core. Things should be cleaner now and less confusing for newbies.
alex
parents: 10590
diff changeset
153 #define CONF_TYPE_STRING_LIST (&m_option_type_string_list)
8164
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
154 #define CONF_TYPE_POSITION (&m_option_type_position)
10594
57bdcdb061d7 Removed the historic cfgparser and switched full to the new config parser (altought some macros still remain for compatibility). As a side effect 90% of the warning messages are gone from the core. Things should be cleaner now and less confusing for newbies.
alex
parents: 10590
diff changeset
155 #define CONF_TYPE_IMGFMT (&m_option_type_imgfmt)
14246
474a40917f73 CONF_TYPE_AFMT similar to CONF_TYPE_IMGFMT
alex
parents: 11947
diff changeset
156 #define CONF_TYPE_AFMT (&m_option_type_afmt)
8164
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
157 #define CONF_TYPE_SPAN (&m_option_type_span)
9593
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 8736
diff changeset
158 #define CONF_TYPE_OBJ_SETTINGS_LIST (&m_option_type_obj_settings_list)
10594
57bdcdb061d7 Removed the historic cfgparser and switched full to the new config parser (altought some macros still remain for compatibility). As a side effect 90% of the warning messages are gone from the core. Things should be cleaner now and less confusing for newbies.
alex
parents: 10590
diff changeset
159 #define CONF_TYPE_OBJ_PRESETS (&m_option_type_obj_presets)
57bdcdb061d7 Removed the historic cfgparser and switched full to the new config parser (altought some macros still remain for compatibility). As a side effect 90% of the warning messages are gone from the core. Things should be cleaner now and less confusing for newbies.
alex
parents: 10590
diff changeset
160 #define CONF_TYPE_CUSTOM_URL (&m_option_type_custom_url)
57bdcdb061d7 Removed the historic cfgparser and switched full to the new config parser (altought some macros still remain for compatibility). As a side effect 90% of the warning messages are gone from the core. Things should be cleaner now and less confusing for newbies.
alex
parents: 10590
diff changeset
161 #define CONF_TYPE_OBJ_PARAMS (&m_option_type_obj_params)
8164
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
162
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
163 /////////////////////////////////////////////////////////////////////////////////////////////
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
164
18258
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
165 /// Option type description
8164
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
166 struct m_option_type {
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
167 char* name;
18258
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
168 /// Syntax desc, etc
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
169 char* comments;
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
170 /// Size needed for the data.
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
171 unsigned int size;
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
172 /// See \ref OptionTypeFlags.
8164
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
173 unsigned int flags;
18258
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
174
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
175 /// Parse the data from a string.
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
176 /** It is the only required function, all others can be NULL.
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
177 *
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
178 * \param opt The option that is parsed.
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
179 * \param name The full option name.
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
180 * \param param The parameter to parse.
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
181 * \param dst Pointer to the memory where the data should be writen.
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
182 * If NULL the parameter validity should still be checked.
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
183 * \param src Source of the option, see \ref OptionParserModes.
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
184 * \return On error a negative value is returned, on success the number of argument
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
185 * consumed. For details see \ref OptionParserReturn.
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
186 */
8164
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
187 int (*parse)(m_option_t* opt,char *name, char *param, void* dst, int src);
18258
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
188
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
189 /// Print back a value in string form.
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
190 /** \param opt The option to print.
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
191 * \param val Pointer to the memory holding the data to be printed.
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
192 * \return An allocated string containing the text value or (void*)-1
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
193 * on error.
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
194 */
8164
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
195 char* (*print)(m_option_t* opt, void* val);
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
196
18258
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
197 /** \name
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
198 * These functions are called to save/set/restore the status of the
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
199 * variables. The difference between the 3 only matter for types like
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
200 * \ref m_option_type_func where 'setting' need to do more than just
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
201 * copying some data.
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
202 */
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
203 //@{
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
204
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
205 /// Update a save slot (dst) from the current value in the prog (src).
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
206 /** \param opt The option to copy.
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
207 * \param dst Pointer to the destination memory.
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
208 * \param src Pointer to the source memory.
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
209 */
8164
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
210 void (*save)(m_option_t* opt,void* dst, void* src);
18258
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
211
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
212 /// Set the value in the prog (dst) from a save slot.
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
213 /** \param opt The option to copy.
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
214 * \param dst Pointer to the destination memory.
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
215 * \param src Pointer to the source memory.
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
216 */
8164
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
217 void (*set)(m_option_t* opt,void* dst, void* src);
18258
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
218
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
219 /// Copy the data between two save slots. If NULL and size is > 0 a memcpy will be used.
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
220 /** \param opt The option to copy.
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
221 * \param dst Pointer to the destination memory.
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
222 * \param src Pointer to the source memory.
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
223 */
8164
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
224 void (*copy)(m_option_t* opt,void* dst, void* src);
18258
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
225 //@}
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
226
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
227 /// Free the data allocated for a save slot.
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
228 /** This is only needed for dynamic types like strings.
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
229 * \param dst Pointer to the data, usually a pointer that should be freed and
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
230 * set to NULL.
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
231 */
8164
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
232 void (*free)(void* dst);
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
233 };
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
234
18258
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
235 ///@}
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
236
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
237 /// Option description
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
238 /** \ingroup Options
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
239 */
8164
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
240 struct m_option {
18258
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
241 /// Option name.
8164
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
242 char *name;
18258
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
243
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
244 /// Reserved for higher level APIs, it shouldn't be used by parsers.
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
245 /** The suboption parser and func types do use it. They should instead
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
246 * use the priv field but this was herited from older versions of the
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
247 * config code.
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
248 */
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
249 void *p;
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
250
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
251 /// Option type.
8164
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
252 m_option_type_t* type;
18258
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
253
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
254 /// See \ref OptionFlags.
8164
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
255 unsigned int flags;
18258
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
256
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
257 /// \brief Mostly usefull for numeric types, the \ref M_OPT_MIN flags must
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
258 /// also be set.
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
259 double min;
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
260
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
261 /// \brief Mostly usefull for numeric types, the \ref M_OPT_MAX flags must
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
262 /// also be set.
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
263 double max;
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
264
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
265 /// Type dependent data (for all kind of extended setting).
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
266 /** This used to be function pointer to hold a 'reverse to defaults' func.
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
267 * Now it can be used to pass any type of extra args needed by the parser.
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
268 * Passing a 'default func' is still valid for all func based option types
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
269 */
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
270 void* priv;
8164
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
271 };
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
272
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
273
18258
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
274 /// \defgroup OptionFlags Option flags
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
275 ///@{
8164
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
276
18258
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
277 /// The option have a minimum set in \ref m_option::min.
8164
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
278 #define M_OPT_MIN (1<<0)
18258
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
279
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
280 /// The option have a maximum set in \ref m_option::max.
8164
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
281 #define M_OPT_MAX (1<<1)
18258
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
282
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
283 /// The option have a minimum and maximum in \ref m_option::min and \ref m_option::max.
8164
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
284 #define M_OPT_RANGE (M_OPT_MIN|M_OPT_MAX)
18258
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
285
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
286 /// The option is forbidden in config files.
8164
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
287 #define M_OPT_NOCFG (1<<2)
18258
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
288
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
289 /// The option is forbiden on the command line.
8164
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
290 #define M_OPT_NOCMD (1<<3)
18258
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
291
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
292 /// The option is global in the \ref Config.
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
293 /** It won't be saved on push and the command line parser will set it when
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
294 * it's parsed (ie. it won't be set later)
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
295 * e.g options : -v, -quiet
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
296 */
8164
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
297 #define M_OPT_GLOBAL (1<<4)
18258
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
298
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
299 /// The \ref Config won't save this option on push.
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
300 /** It won't be saved on push but the command line parser will put it with
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
301 * it's entry (ie : it may be set later)
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
302 * e.g options : -include
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
303 */
8164
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
304 #define M_OPT_NOSAVE (1<<5)
18258
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
305
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
306 /// \brief The \ref Config will emulate the old behaviour by pushing the
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
307 /// option only if it was set by the user.
8164
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
308 #define M_OPT_OLD (1<<6)
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
309
18258
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
310 /// \defgroup OldOptionFlags Backward compatibility
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
311 ///
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
312 /// Those are kept for compatibility with older code.
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
313 /// @{
10594
57bdcdb061d7 Removed the historic cfgparser and switched full to the new config parser (altought some macros still remain for compatibility). As a side effect 90% of the warning messages are gone from the core. Things should be cleaner now and less confusing for newbies.
alex
parents: 10590
diff changeset
314 #define CONF_MIN M_OPT_MIN
57bdcdb061d7 Removed the historic cfgparser and switched full to the new config parser (altought some macros still remain for compatibility). As a side effect 90% of the warning messages are gone from the core. Things should be cleaner now and less confusing for newbies.
alex
parents: 10590
diff changeset
315 #define CONF_MAX M_OPT_MAX
57bdcdb061d7 Removed the historic cfgparser and switched full to the new config parser (altought some macros still remain for compatibility). As a side effect 90% of the warning messages are gone from the core. Things should be cleaner now and less confusing for newbies.
alex
parents: 10590
diff changeset
316 #define CONF_RANGE M_OPT_RANGE
57bdcdb061d7 Removed the historic cfgparser and switched full to the new config parser (altought some macros still remain for compatibility). As a side effect 90% of the warning messages are gone from the core. Things should be cleaner now and less confusing for newbies.
alex
parents: 10590
diff changeset
317 #define CONF_NOCFG M_OPT_NOCFG
57bdcdb061d7 Removed the historic cfgparser and switched full to the new config parser (altought some macros still remain for compatibility). As a side effect 90% of the warning messages are gone from the core. Things should be cleaner now and less confusing for newbies.
alex
parents: 10590
diff changeset
318 #define CONF_NOCMD M_OPT_NOCMD
57bdcdb061d7 Removed the historic cfgparser and switched full to the new config parser (altought some macros still remain for compatibility). As a side effect 90% of the warning messages are gone from the core. Things should be cleaner now and less confusing for newbies.
alex
parents: 10590
diff changeset
319 #define CONF_GLOBAL M_OPT_GLOBAL
57bdcdb061d7 Removed the historic cfgparser and switched full to the new config parser (altought some macros still remain for compatibility). As a side effect 90% of the warning messages are gone from the core. Things should be cleaner now and less confusing for newbies.
alex
parents: 10590
diff changeset
320 #define CONF_NOSAVE M_OPT_NOSAVE
57bdcdb061d7 Removed the historic cfgparser and switched full to the new config parser (altought some macros still remain for compatibility). As a side effect 90% of the warning messages are gone from the core. Things should be cleaner now and less confusing for newbies.
alex
parents: 10590
diff changeset
321 #define CONF_OLD M_OPT_OLD
18258
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
322 ///@}
8164
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
323
18258
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
324 ///@}
8164
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
325
18258
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
326 /// \defgroup OptionTypeFlags Option type flags
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
327 /// \ingroup OptionTypes
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
328 ///
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
329 /// These flags are used to describe special parser capabilities or behaviour.
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
330 ///
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
331 ///@{
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
332
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
333 /// Suboption parser flag.
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
334 /** When this flag is set, m_option::p should point to another m_option
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
335 * array. Only the parse function will be called. If dst is set, it should
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
336 * create/update an array of char* containg opt/val pairs. The options in
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
337 * the child array will then be set automatically by the \ref Config.
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
338 * Also note that sub options may be directly accessed by using
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
339 * -option:subopt blah.
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
340 */
8164
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
341 #define M_OPT_TYPE_HAS_CHILD (1<<0)
18258
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
342
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
343 /// Wildcard matching flag.
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
344 /** If set the option type have a use for option name ending with a *
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
345 * (used for -aa*), this only affect the option name matching.
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
346 */
8164
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
347 #define M_OPT_TYPE_ALLOW_WILDCARD (1<<1)
18258
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
348
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
349 /// Dynamic data type.
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
350 /** This flag indicate that the data is dynamicly allocated (m_option::p point
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
351 * to a pointer). It enable a little hack in the \ref Config wich replace
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
352 * the initial value of such variables with a dynamic copy in case the
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
353 * initial value is staticaly allocated (pretty common with strings).
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
354 */
8164
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
355 #define M_OPT_TYPE_DYNAMIC (1<<2)
18258
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
356
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
357 /// Indirect option type.
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
358 /** If this is set the parse function doesn't directly return
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
359 * the wanted thing. Options use this if for some reasons they have to wait
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
360 * until the set call to be able to correctly set the target var.
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
361 * So for those types new values must first be parsed, then set to the target
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
362 * var. If this flag isn't set then new values can be parsed directly to the
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
363 * target var. It's used by the callback based option as the callback call
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
364 * may append later on.
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
365 */
8164
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
366 #define M_OPT_TYPE_INDIRECT (1<<3)
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
367
18258
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
368 ///@}
8164
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
369
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
370 ///////////////////////////// Parser flags ////////////////////////////////////////
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
371
18258
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
372 /// \defgroup OptionParserModes Option parser modes
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
373 /// \ingroup Options
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
374 ///
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
375 /// Some parser behave differently depending on the mode passed in the src
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
376 /// parameter of m_option_type::parse. For example the flag type doesn't take
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
377 /// an argument when parsing from the command line.
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
378 ///@{
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
379
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
380 /// Set when parsing from a config file.
8164
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
381 #define M_CONFIG_FILE 0
18258
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
382 /// Set when parsing command line arguments.
8164
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
383 #define M_COMMAND_LINE 1
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
384
18258
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
385 ///@}
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
386
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
387 /// \defgroup OptionParserReturn Option parser return code
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
388 /// \ingroup Options
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
389 ///
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
390 /// On sucess parsers return the number of arguments consumed: 0 or 1.
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
391 ///
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
392 /// To indicate that mplayer should exit without playing anything,
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
393 /// parsers return M_OPT_EXIT minus the number of parameters they
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
394 /// consumed: \ref M_OPT_EXIT or \ref M_OPT_EXIT-1.
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
395 ///
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
396 /// On error one of the following (negative) error code is returned:
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
397 ///@{
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
398
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
399 /// For use by higer level APIs when the option name is invalid.
10595
522afd56703c 100l to albeu for his english grammar, and 10l to me becouse I noticed that lately (my backward compatibilty macro uses M_OPT_UNKNOWN)
alex
parents: 10594
diff changeset
400 #define M_OPT_UNKNOWN -1
18258
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
401
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
402 /// Returned when a parameter is needed but wasn't provided.
8164
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
403 #define M_OPT_MISSING_PARAM -2
18258
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
404
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
405 /// Returned when the given parameter couldn't be parsed.
8164
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
406 #define M_OPT_INVALID -3
18258
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
407
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
408 /// \brief Returned if the value is "out of range". The exact meaning may
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
409 /// vary from type to type.
8164
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
410 #define M_OPT_OUT_OF_RANGE -4
18258
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
411
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
412 /// Returned if the parser failed for any other reason than a bad parameter.
10594
57bdcdb061d7 Removed the historic cfgparser and switched full to the new config parser (altought some macros still remain for compatibility). As a side effect 90% of the warning messages are gone from the core. Things should be cleaner now and less confusing for newbies.
alex
parents: 10590
diff changeset
413 #define M_OPT_PARSER_ERR -5
18258
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
414
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
415 /// Returned when MPlayer should exit. Used by various help stuff.
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
416 /** M_OPT_EXIT must be the lowest number on this list.
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
417 */
9791
c5b63e88253d Fix some 10L typo in header (m_struct_s instead of m_struct_st).
albeu
parents: 9593
diff changeset
418 #define M_OPT_EXIT -6
8164
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
419
18258
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
420 /// \defgroup OldOptionParserReturn Backward compatibility
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
421 ///
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
422 /// Those are kept for compatibility with older code.
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
423 ///
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
424 ///@{
10594
57bdcdb061d7 Removed the historic cfgparser and switched full to the new config parser (altought some macros still remain for compatibility). As a side effect 90% of the warning messages are gone from the core. Things should be cleaner now and less confusing for newbies.
alex
parents: 10590
diff changeset
425 #define ERR_NOT_AN_OPTION M_OPT_UNKNOWN
57bdcdb061d7 Removed the historic cfgparser and switched full to the new config parser (altought some macros still remain for compatibility). As a side effect 90% of the warning messages are gone from the core. Things should be cleaner now and less confusing for newbies.
alex
parents: 10590
diff changeset
426 #define ERR_MISSING_PARAM M_OPT_MISSING_PARAM
57bdcdb061d7 Removed the historic cfgparser and switched full to the new config parser (altought some macros still remain for compatibility). As a side effect 90% of the warning messages are gone from the core. Things should be cleaner now and less confusing for newbies.
alex
parents: 10590
diff changeset
427 #define ERR_OUT_OF_RANGE M_OPT_OUT_OF_RANGE
57bdcdb061d7 Removed the historic cfgparser and switched full to the new config parser (altought some macros still remain for compatibility). As a side effect 90% of the warning messages are gone from the core. Things should be cleaner now and less confusing for newbies.
alex
parents: 10590
diff changeset
428 #define ERR_FUNC_ERR M_OPT_PARSER_ERR
18258
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
429 ///@}
10594
57bdcdb061d7 Removed the historic cfgparser and switched full to the new config parser (altought some macros still remain for compatibility). As a side effect 90% of the warning messages are gone from the core. Things should be cleaner now and less confusing for newbies.
alex
parents: 10590
diff changeset
430
18258
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
431 ///@}
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
432
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
433 /// Find the option matching the given name in the list.
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
434 /** \ingroup Options
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
435 * This function take the possible wildcards in account (see
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
436 * \ref M_OPT_TYPE_ALLOW_WILDCARD).
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
437 *
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
438 * \param list Pointer to an array of \ref m_option.
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
439 * \param name Name of the option.
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
440 * \return The matching option or NULL.
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
441 */
9593
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 8736
diff changeset
442 m_option_t* m_option_list_find(m_option_t* list,char* name);
8164
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
443
18258
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
444 /// Helper to parse options, see \ref m_option_type::parse.
8164
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
445 inline static int
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
446 m_option_parse(m_option_t* opt,char *name, char *param, void* dst, int src) {
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
447 return opt->type->parse(opt,name,param,dst,src);
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
448 }
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
449
18258
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
450 /// Helper to print options, see \ref m_option_type::print.
8164
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
451 inline static char*
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
452 m_option_print(m_option_t* opt, void* val_ptr) {
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
453 if(opt->type->print)
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
454 return opt->type->print(opt,val_ptr);
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
455 else
8168
ff6a98628e6c Fix the Gui with NEW_CONFIG
albeu
parents: 8164
diff changeset
456 return (char*)-1;
8164
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
457 }
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
458
18258
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
459 /// Helper around \ref m_option_type::save.
8164
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
460 inline static void
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
461 m_option_save(m_option_t* opt,void* dst, void* src) {
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
462 if(opt->type->save)
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
463 opt->type->save(opt,dst,src);
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
464 }
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
465
18258
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
466 /// Helper around \ref m_option_type::set.
8164
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
467 inline static void
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
468 m_option_set(m_option_t* opt,void* dst, void* src) {
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
469 if(opt->type->set)
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
470 opt->type->set(opt,dst,src);
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
471 }
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
472
18258
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
473 /// Helper around \ref m_option_type::copy.
8164
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
474 inline static void
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
475 m_option_copy(m_option_t* opt,void* dst, void* src) {
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
476 if(opt->type->copy)
17456
b8ce59172e6a 100L m_option_copy should use the copy callback and not the set one.
albeu
parents: 16345
diff changeset
477 opt->type->copy(opt,dst,src);
8164
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
478 else if(opt->type->size > 0)
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
479 memcpy(dst,src,opt->type->size);
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
480 }
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
481
18258
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
482 /// Helper around \ref m_option_type::free.
8164
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
483 inline static void
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
484 m_option_free(m_option_t* opt,void* dst) {
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
485 if(opt->type->free)
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
486 opt->type->free(dst);
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
487 }
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents:
diff changeset
488
18258
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
489 /*@}*/
96568be4bfdc Doxygen attack!
albeu
parents: 17470
diff changeset
490
10594
57bdcdb061d7 Removed the historic cfgparser and switched full to the new config parser (altought some macros still remain for compatibility). As a side effect 90% of the warning messages are gone from the core. Things should be cleaner now and less confusing for newbies.
alex
parents: 10590
diff changeset
491 #endif /* _M_OPTION_H */