VLC  3.0.15
vlc_configuration.h
Go to the documentation of this file.
1 /*****************************************************************************
2  * vlc_configuration.h : configuration management module
3  * This file describes the programming interface for the configuration module.
4  * It includes functions allowing to declare, get or set configuration options.
5  *****************************************************************************
6  * Copyright (C) 1999-2006 VLC authors and VideoLAN
7  * $Id: 209168615be2a7bc5db889282b32389093ab262e $
8  *
9  * Authors: Gildas Bazin <gbazin@videolan.org>
10  *
11  * This program is free software; you can redistribute it and/or modify it
12  * under the terms of the GNU Lesser General Public License as published by
13  * the Free Software Foundation; either version 2.1 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19  * GNU Lesser General Public License for more details.
20  *
21  * You should have received a copy of the GNU Lesser General Public License
22  * along with this program; if not, write to the Free Software Foundation,
23  * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
24  *****************************************************************************/
25 
26 #ifndef VLC_CONFIGURATION_H
27 #define VLC_CONFIGURATION_H 1
28 
29 /**
30  * \file
31  * This file describes the programming interface for the configuration module.
32  * It includes functions allowing to declare, get or set configuration options.
33  */
34 
35 #include <sys/types.h> /* for ssize_t */
36 
37 # ifdef __cplusplus
38 extern "C" {
39 # endif
40 
42 {
43  int i_id;
44  const char *psz_name;
45  const char *psz_help;
46 };
47 
48 typedef union
49 {
50  char *psz;
51  int64_t i;
52  float f;
54 
55 typedef int (*vlc_string_list_cb)(vlc_object_t *, const char *,
56  char ***, char ***);
57 typedef int (*vlc_integer_list_cb)(vlc_object_t *, const char *,
58  int64_t **, char ***);
59 
61 {
62  uint8_t i_type; /* Configuration type */
63  char i_short; /* Optional short option name */
64  unsigned b_advanced:1; /* Advanced option */
65  unsigned b_internal:1; /* Hidden from prefs and help */
66  unsigned b_unsaveable:1; /* Not stored in configuration */
67  unsigned b_safe:1; /* Safe in web plugins and playlists */
68  unsigned b_removed:1; /* Deprecated */
69 
70  const char *psz_type; /* Configuration subtype */
71  const char *psz_name; /* Option name */
72  const char *psz_text; /* Short comment on the configuration option */
73  const char *psz_longtext; /* Long comment on the configuration option */
74 
75  module_value_t value; /* Option value */
79 
80  /* Values list */
81  uint16_t list_count; /* Options list size */
82  union
83  {
84  const char **psz; /* List of possible values for the option */
85  const int *i;
88  } list;
89  const char **list_text; /* Friendly names for list values */
90  const char *list_cb_name;
91  void *owner;
92 };
93 
94 /*****************************************************************************
95  * Prototypes - these methods are used to get, set or manipulate configuration
96  * data.
97  *****************************************************************************/
98 VLC_API int config_GetType(const char *) VLC_USED;
99 VLC_API int64_t config_GetInt(vlc_object_t *, const char *) VLC_USED;
100 VLC_API void config_PutInt(vlc_object_t *, const char *, int64_t);
101 VLC_API float config_GetFloat(vlc_object_t *, const char *) VLC_USED;
102 VLC_API void config_PutFloat(vlc_object_t *, const char *, float);
103 VLC_API char * config_GetPsz(vlc_object_t *, const char *) VLC_USED VLC_MALLOC;
104 VLC_API void config_PutPsz(vlc_object_t *, const char *, const char *);
105 VLC_API ssize_t config_GetIntChoices(vlc_object_t *, const char *,
106  int64_t **, char ***) VLC_USED;
107 VLC_API ssize_t config_GetPszChoices(vlc_object_t *, const char *,
108  char ***, char ***) VLC_USED;
109 
111 #define config_SaveConfigFile(a) config_SaveConfigFile(VLC_OBJECT(a))
112 
114 #define config_ResetAll(a) config_ResetAll(VLC_OBJECT(a))
115 
118 VLC_API char *config_GetLibDir(void) VLC_USED;
119 
120 typedef enum vlc_userdir
121 {
122  VLC_HOME_DIR, /* User's home */
123  VLC_CONFIG_DIR, /* VLC-specific configuration directory */
124  VLC_DATA_DIR, /* VLC-specific data directory */
125  VLC_CACHE_DIR, /* VLC-specific user cached data directory */
126  /* Generic directories (same as XDG) */
135 } vlc_userdir_t;
136 
138 
139 VLC_API void config_AddIntf( vlc_object_t *, const char * );
140 VLC_API void config_RemoveIntf( vlc_object_t *, const char * );
141 VLC_API bool config_ExistIntf( vlc_object_t *, const char * ) VLC_USED;
142 
143 #define config_GetInt(a,b) config_GetInt(VLC_OBJECT(a),b)
144 #define config_PutInt(a,b,c) config_PutInt(VLC_OBJECT(a),b,c)
145 #define config_GetFloat(a,b) config_GetFloat(VLC_OBJECT(a),b)
146 #define config_PutFloat(a,b,c) config_PutFloat(VLC_OBJECT(a),b,c)
147 #define config_GetPsz(a,b) config_GetPsz(VLC_OBJECT(a),b)
148 #define config_PutPsz(a,b,c) config_PutPsz(VLC_OBJECT(a),b,c)
149 
150 #define config_AddIntf(a,b) config_AddIntf(VLC_OBJECT(a),b)
151 #define config_RemoveIntf(a,b) config_RemoveIntf(VLC_OBJECT(a),b)
152 #define config_ExistIntf(a,b) config_ExistIntf(VLC_OBJECT(a),b)
153 
154 /****************************************************************************
155  * config_chain_t:
156  ****************************************************************************/
157 struct config_chain_t
158 {
159  config_chain_t *p_next; /**< Pointer on the next config_chain_t element */
160 
161  char *psz_name; /**< Option name */
162  char *psz_value; /**< Option value */
163 };
164 
165 /**
166  * This function will
167  * - create all options in the array ppsz_options (var_Create).
168  * - parse the given linked list of config_chain_t and set the value (var_Set).
169  *
170  * The option names will be created by adding the psz_prefix prefix.
171  */
172 VLC_API void config_ChainParse( vlc_object_t *, const char *psz_prefix, const char *const *ppsz_options, config_chain_t * );
173 #define config_ChainParse( a, b, c, d ) config_ChainParse( VLC_OBJECT(a), b, c, d )
174 
175 /**
176  * This function will parse a configuration string (psz_opts) and
177  * - set all options for this module in a chained list (*pp_cfg)
178  * - returns a pointer on the next module if any.
179  *
180  * The string format is
181  * module{option=*,option=*}
182  *
183  * The options values are unescaped using config_StringUnescape.
184  */
185 VLC_API const char *config_ChainParseOptions( config_chain_t **pp_cfg, const char *ppsz_opts );
186 
187 /**
188  * This function will parse a configuration string (psz_string) and
189  * - set the module name (*ppsz_name)
190  * - set all options for this module in a chained list (*pp_cfg)
191  * - returns a pointer on the next module if any.
192  *
193  * The string format is
194  * module{option=*,option=*}[:modulenext{option=*,...}]
195  *
196  * The options values are unescaped using config_StringUnescape.
197  */
198 VLC_API char *config_ChainCreate( char **ppsz_name, config_chain_t **pp_cfg, const char *psz_string ) VLC_USED VLC_MALLOC;
199 
200 /**
201  * This function will release a linked list of config_chain_t
202  * (Including the head)
203  */
205 
206 /**
207  * This function will duplicate a linked list of config_chain_t
208  */
210 
211 /**
212  * This function will unescape a string in place and will return a pointer on
213  * the given string.
214  * No memory is allocated by it (unlike config_StringEscape).
215  * If NULL is given as parameter nothing will be done (NULL will be returned).
216  *
217  * The following sequences will be unescaped (only one time):
218  * \\ \' and \"
219  */
220 VLC_API char * config_StringUnescape( char *psz_string );
221 
222 /**
223  * This function will escape a string that can be unescaped by
224  * config_StringUnescape.
225  * The returned value is allocated by it. You have to free it once you
226  * do not need it anymore (unlike config_StringUnescape).
227  * If NULL is given as parameter nothing will be done (NULL will be returned).
228  *
229  * The escaped characters are ' " and \
230  */
231 VLC_API char * config_StringEscape( const char *psz_string ) VLC_USED VLC_MALLOC;
232 
233 # ifdef __cplusplus
234 }
235 # endif
236 
237 #endif /* _VLC_CONFIGURATION_H */
module_config_t::psz_name
const char * psz_name
Definition: vlc_configuration.h:71
VLC_HOME_DIR
Definition: vlc_configuration.h:121
config_category_t
Definition: vlc_configuration.h:41
VLC_API
#define VLC_API
Definition: fourcc_gen.c:30
config_chain_t::p_next
config_chain_t * p_next
Pointer on the next config_chain_t element.
Definition: vlc_configuration.h:158
config_category_t::i_id
int i_id
Definition: vlc_configuration.h:43
VLC_VIDEOS_DIR
Definition: vlc_configuration.h:133
config_ChainDestroy
void config_ChainDestroy(config_chain_t *)
This function will release a linked list of config_chain_t (Including the head)
Definition: chain.c:253
config_StringEscape
char * config_StringEscape(const char *psz_string)
This function will escape a string that can be unescaped by config_StringUnescape.
Definition: chain.c:473
vlc_common.h
config_GetDataDir
char * config_GetDataDir(void)
Determines the shared data directory.
Definition: dirs.c:94
module_config_t::psz_text
const char * psz_text
Definition: vlc_configuration.h:72
module_value_t
Definition: vlc_configuration.h:48
VLC_PUBLICSHARE_DIR
Definition: vlc_configuration.h:129
module_config_t::list_text
const char ** list_text
Definition: vlc_configuration.h:89
module_config_t::i
const int * i
Definition: vlc_configuration.h:85
module_config_t::b_internal
unsigned b_internal
Definition: vlc_configuration.h:65
module_config_t::orig
module_value_t orig
Definition: vlc_configuration.h:76
config_chain_t::psz_name
char * psz_name
Option name.
Definition: vlc_configuration.h:160
VLC_MUSIC_DIR
Definition: vlc_configuration.h:131
config_GetPszChoices
ssize_t config_GetPszChoices(vlc_object_t *, const char *, char ***, char ***)
module_value_t::psz
char * psz
Definition: vlc_configuration.h:50
config_PutInt
#define config_PutInt(a, b, c)
Definition: vlc_configuration.h:143
module_config_t::i_cb
vlc_integer_list_cb i_cb
Definition: vlc_configuration.h:87
VLC_DESKTOP_DIR
Definition: vlc_configuration.h:126
vlc_string_list_cb
int(* vlc_string_list_cb)(vlc_object_t *, const char *, char ***, char ***)
Definition: vlc_configuration.h:55
config_GetInt
#define config_GetInt(a, b)
Definition: vlc_configuration.h:142
config_GetPsz
#define config_GetPsz(a, b)
Definition: vlc_configuration.h:146
config_PutFloat
#define config_PutFloat(a, b, c)
Definition: vlc_configuration.h:145
VLC_DOWNLOAD_DIR
Definition: vlc_configuration.h:127
config_SaveConfigFile
#define config_SaveConfigFile(a)
Definition: vlc_configuration.h:110
config_ChainParseOptions
const char * config_ChainParseOptions(config_chain_t **pp_cfg, const char *ppsz_opts)
This function will parse a configuration string (psz_opts) and.
Definition: chain.c:180
VLC_CONFIG_DIR
Definition: vlc_configuration.h:122
module_config_t::owner
void * owner
Definition: vlc_configuration.h:91
module_config_t::psz_cb
vlc_string_list_cb psz_cb
Definition: vlc_configuration.h:86
vlc_userdir_t
enum vlc_userdir vlc_userdir_t
config_category_t::psz_help
const char * psz_help
Definition: vlc_configuration.h:45
config_GetType
int config_GetType(const char *)
Definition: core.c:52
config_AddIntf
#define config_AddIntf(a, b)
Definition: vlc_configuration.h:149
vlc_userdir
vlc_userdir
Definition: vlc_configuration.h:119
config_chain_t
Definition: vlc_configuration.h:155
module_config_t::b_unsaveable
unsigned b_unsaveable
Definition: vlc_configuration.h:66
module_config_t::max
module_value_t max
Definition: vlc_configuration.h:78
config_ResetAll
#define config_ResetAll(a)
Definition: vlc_configuration.h:113
config_ChainCreate
char * config_ChainCreate(char **ppsz_name, config_chain_t **pp_cfg, const char *psz_string)
This function will parse a configuration string (psz_string) and.
Definition: chain.c:225
config_chain_t::psz_value
char * psz_value
Option value.
Definition: vlc_configuration.h:161
config_ExistIntf
#define config_ExistIntf(a, b)
Definition: vlc_configuration.h:151
config_StringUnescape
char * config_StringUnescape(char *psz_string)
This function will unescape a string in place and will return a pointer on the given string.
Definition: chain.c:455
VLC_DATA_DIR
Definition: vlc_configuration.h:123
config_GetUserDir
char * config_GetUserDir(vlc_userdir_t)
Definition: specific.c:272
config_GetIntChoices
ssize_t config_GetIntChoices(vlc_object_t *, const char *, int64_t **, char ***)
config_GetLibDir
char * config_GetLibDir(void)
Determines the architecture-dependent data directory.
Definition: dirs.c:38
VLC_DOCUMENTS_DIR
Definition: vlc_configuration.h:130
vlc_object_t
The main vlc_object_t structure.
Definition: vlc_objects.h:39
module_config_t
Definition: vlc_configuration.h:60
module_config_t::b_removed
unsigned b_removed
Definition: vlc_configuration.h:68
module_config_t::psz_type
const char * psz_type
Definition: vlc_configuration.h:70
module_config_t::min
module_value_t min
Definition: vlc_configuration.h:77
config_RemoveIntf
#define config_RemoveIntf(a, b)
Definition: vlc_configuration.h:150
VLC_USED
#define VLC_USED
Definition: fourcc_gen.c:31
module_config_t::list
union module_config_t::@147 list
VLC_TEMPLATES_DIR
Definition: vlc_configuration.h:128
VLC_PICTURES_DIR
Definition: vlc_configuration.h:132
VLC_CACHE_DIR
Definition: vlc_configuration.h:124
VLC_MALLOC
#define VLC_MALLOC
Definition: vlc_common.h:102
config_category_t::psz_name
const char * psz_name
Definition: vlc_configuration.h:44
module_config_t::b_advanced
unsigned b_advanced
Definition: vlc_configuration.h:64
module_value_t::i
int64_t i
Definition: vlc_configuration.h:51
module_config_t::value
module_value_t value
Definition: vlc_configuration.h:75
module_value_t::f
float f
Definition: vlc_configuration.h:52
module_config_t::list_count
uint16_t list_count
Definition: vlc_configuration.h:81
module_config_t::psz_longtext
const char * psz_longtext
Definition: vlc_configuration.h:73
module_config_t::i_type
uint8_t i_type
Definition: vlc_configuration.h:62
module_config_t::psz
const char ** psz
Definition: vlc_configuration.h:84
config_ChainParse
#define config_ChainParse(a, b, c, d)
Definition: vlc_configuration.h:171
module_config_t::list_cb_name
const char * list_cb_name
Definition: vlc_configuration.h:90
config_PutPsz
#define config_PutPsz(a, b, c)
Definition: vlc_configuration.h:147
module_config_t::i_short
char i_short
Definition: vlc_configuration.h:63
config_ChainDuplicate
config_chain_t * config_ChainDuplicate(const config_chain_t *)
This function will duplicate a linked list of config_chain_t.
Definition: chain.c:435
config_GetFloat
#define config_GetFloat(a, b)
Definition: vlc_configuration.h:144
vlc_integer_list_cb
int(* vlc_integer_list_cb)(vlc_object_t *, const char *, int64_t **, char ***)
Definition: vlc_configuration.h:57
config_FindConfig
module_config_t * config_FindConfig(const char *)
Definition: core.c:514
module_config_t::b_safe
unsigned b_safe
Definition: vlc_configuration.h:67