1 /*****************************************************************************
2 * core.c management of the modules configuration
3 *****************************************************************************
4 * Copyright (C) 2001-2007 the VideoLAN team
7 * Authors: Gildas Bazin <gbazin@videolan.org>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22 *****************************************************************************/
28 #include <vlc_common.h>
30 #include <vlc_modules.h>
32 #include "vlc_configuration.h"
36 #include "configuration.h"
37 #include "modules/modules.h"
39 vlc_rwlock_t config_lock;
41 static inline char *strdupnull (const char *src)
43 return src ? strdup (src) : NULL;
46 /* Item types that use a string value (i.e. serialized in the module cache) */
47 int IsConfigStringType (int type)
49 static const unsigned char config_types[] =
51 CONFIG_ITEM_STRING, CONFIG_ITEM_FILE, CONFIG_ITEM_MODULE,
52 CONFIG_ITEM_DIRECTORY, CONFIG_ITEM_MODULE_CAT, CONFIG_ITEM_PASSWORD,
53 CONFIG_ITEM_MODULE_LIST, CONFIG_ITEM_MODULE_LIST_CAT, CONFIG_ITEM_FONT
56 /* NOTE: this needs to be changed if we ever get more than 255 types */
57 return memchr (config_types, type, sizeof (config_types)) != NULL;
61 int IsConfigIntegerType (int type)
63 static const unsigned char config_types[] =
65 CONFIG_ITEM_INTEGER, CONFIG_ITEM_KEY, CONFIG_ITEM_BOOL,
66 CONFIG_CATEGORY, CONFIG_SUBCATEGORY
69 return memchr (config_types, type, sizeof (config_types)) != NULL;
73 /*****************************************************************************
74 * config_GetType: get the type of a variable (bool, int, float, string)
75 *****************************************************************************
76 * This function is used to get the type of a variable from its name.
77 * Beware, this is quite slow.
78 *****************************************************************************/
79 int config_GetType( vlc_object_t *p_this, const char *psz_name )
81 module_config_t *p_config;
84 p_config = config_FindConfig( p_this, psz_name );
92 switch( p_config->i_type )
94 case CONFIG_ITEM_BOOL:
95 i_type = VLC_VAR_BOOL;
98 case CONFIG_ITEM_INTEGER:
100 i_type = VLC_VAR_INTEGER;
103 case CONFIG_ITEM_FLOAT:
104 i_type = VLC_VAR_FLOAT;
107 case CONFIG_ITEM_MODULE:
108 case CONFIG_ITEM_MODULE_CAT:
109 case CONFIG_ITEM_MODULE_LIST:
110 case CONFIG_ITEM_MODULE_LIST_CAT:
111 i_type = VLC_VAR_MODULE;
114 case CONFIG_ITEM_STRING:
115 i_type = VLC_VAR_STRING;
118 case CONFIG_ITEM_PASSWORD:
119 i_type = VLC_VAR_STRING;
122 case CONFIG_ITEM_FILE:
123 i_type = VLC_VAR_FILE;
126 case CONFIG_ITEM_DIRECTORY:
127 i_type = VLC_VAR_DIRECTORY;
139 /*****************************************************************************
140 * config_GetInt: get the value of an int variable
141 *****************************************************************************
142 * This function is used to get the value of variables which are internally
143 * represented by an integer (CONFIG_ITEM_INTEGER and
145 *****************************************************************************/
146 int64_t config_GetInt( vlc_object_t *p_this, const char *psz_name )
148 module_config_t *p_config;
150 p_config = config_FindConfig( p_this, psz_name );
155 msg_Err( p_this, "option %s does not exist", psz_name );
159 if (!IsConfigIntegerType (p_config->i_type))
161 msg_Err( p_this, "option %s does not refer to an int", psz_name );
167 vlc_rwlock_rdlock (&config_lock);
168 val = p_config->value.i;
169 vlc_rwlock_unlock (&config_lock);
173 #undef config_GetFloat
174 /*****************************************************************************
175 * config_GetFloat: get the value of a float variable
176 *****************************************************************************
177 * This function is used to get the value of variables which are internally
178 * represented by a float (CONFIG_ITEM_FLOAT).
179 *****************************************************************************/
180 float config_GetFloat( vlc_object_t *p_this, const char *psz_name )
182 module_config_t *p_config;
184 p_config = config_FindConfig( p_this, psz_name );
189 msg_Err( p_this, "option %s does not exist", psz_name );
193 if (!IsConfigFloatType (p_config->i_type))
195 msg_Err( p_this, "option %s does not refer to a float", psz_name );
201 vlc_rwlock_rdlock (&config_lock);
202 val = p_config->value.f;
203 vlc_rwlock_unlock (&config_lock);
208 /*****************************************************************************
209 * config_GetPsz: get the string value of a string variable
210 *****************************************************************************
211 * This function is used to get the value of variables which are internally
212 * represented by a string (CONFIG_ITEM_STRING, CONFIG_ITEM_FILE,
213 * CONFIG_ITEM_DIRECTORY, CONFIG_ITEM_PASSWORD, and CONFIG_ITEM_MODULE).
215 * Important note: remember to free() the returned char* because it's a
216 * duplicate of the actual value. It isn't safe to return a pointer to the
217 * actual value as it can be modified at any time.
218 *****************************************************************************/
219 char * config_GetPsz( vlc_object_t *p_this, const char *psz_name )
221 module_config_t *p_config;
223 p_config = config_FindConfig( p_this, psz_name );
228 msg_Err( p_this, "option %s does not exist", psz_name );
232 if (!IsConfigStringType (p_config->i_type))
234 msg_Err( p_this, "option %s does not refer to a string", psz_name );
238 /* return a copy of the string */
239 vlc_rwlock_rdlock (&config_lock);
240 char *psz_value = strdupnull (p_config->value.psz);
241 vlc_rwlock_unlock (&config_lock);
247 /*****************************************************************************
248 * config_PutPsz: set the string value of a string variable
249 *****************************************************************************
250 * This function is used to set the value of variables which are internally
251 * represented by a string (CONFIG_ITEM_STRING, CONFIG_ITEM_FILE,
252 * CONFIG_ITEM_DIRECTORY, CONFIG_ITEM_PASSWORD, and CONFIG_ITEM_MODULE).
253 *****************************************************************************/
254 void config_PutPsz( vlc_object_t *p_this,
255 const char *psz_name, const char *psz_value )
257 module_config_t *p_config;
260 p_config = config_FindConfig( p_this, psz_name );
266 msg_Warn( p_this, "option %s does not exist", psz_name );
270 if (!IsConfigStringType (p_config->i_type))
272 msg_Err( p_this, "option %s does not refer to a string", psz_name );
277 if ((psz_value != NULL) && *psz_value)
278 str = strdup (psz_value);
282 vlc_rwlock_wrlock (&config_lock);
283 /* backup old value */
284 oldval.psz_string = (char *)p_config->value.psz;
286 p_config->value.psz = str;
287 p_config->b_dirty = true;
288 vlc_rwlock_unlock (&config_lock);
290 if( p_config->pf_callback )
294 val.psz_string = (char *)psz_value;
295 p_config->pf_callback( p_this, psz_name, oldval, val,
296 p_config->p_callback_data );
299 /* free old string */
300 free( oldval.psz_string );
304 /*****************************************************************************
305 * config_PutInt: set the integer value of an int variable
306 *****************************************************************************
307 * This function is used to set the value of variables which are internally
308 * represented by an integer (CONFIG_ITEM_INTEGER and
310 *****************************************************************************/
311 void config_PutInt( vlc_object_t *p_this, const char *psz_name,
314 module_config_t *p_config;
317 p_config = config_FindConfig( p_this, psz_name );
322 msg_Warn( p_this, "option %s does not exist", psz_name );
326 if (!IsConfigIntegerType (p_config->i_type))
328 msg_Err( p_this, "option %s does not refer to an int", psz_name );
332 if (i_value < p_config->min.i)
333 i_value = p_config->min.i;
334 if (i_value > p_config->max.i)
335 i_value = p_config->max.i;
337 vlc_rwlock_wrlock (&config_lock);
338 /* backup old value */
339 oldval.i_int = p_config->value.i;
341 p_config->value.i = i_value;
342 p_config->b_dirty = true;
343 vlc_rwlock_unlock (&config_lock);
345 if( p_config->pf_callback )
350 p_config->pf_callback( p_this, psz_name, oldval, val,
351 p_config->p_callback_data );
355 #undef config_PutFloat
356 /*****************************************************************************
357 * config_PutFloat: set the value of a float variable
358 *****************************************************************************
359 * This function is used to set the value of variables which are internally
360 * represented by a float (CONFIG_ITEM_FLOAT).
361 *****************************************************************************/
362 void config_PutFloat( vlc_object_t *p_this,
363 const char *psz_name, float f_value )
365 module_config_t *p_config;
368 p_config = config_FindConfig( p_this, psz_name );
373 msg_Warn( p_this, "option %s does not exist", psz_name );
377 if (!IsConfigFloatType (p_config->i_type))
379 msg_Err( p_this, "option %s does not refer to a float", psz_name );
383 /* if f_min == f_max == 0, then do not use them */
384 if ((p_config->min.f == 0) && (p_config->max.f == 0))
386 else if (f_value < p_config->min.f)
387 f_value = p_config->min.f;
388 else if (f_value > p_config->max.f)
389 f_value = p_config->max.f;
391 vlc_rwlock_wrlock (&config_lock);
392 /* backup old value */
393 oldval.f_float = p_config->value.f;
395 p_config->value.f = f_value;
396 p_config->b_dirty = true;
397 vlc_rwlock_unlock (&config_lock);
399 if( p_config->pf_callback )
403 val.f_float = f_value;
404 p_config->pf_callback( p_this, psz_name, oldval, val,
405 p_config->p_callback_data );
409 static int confcmp (const void *a, const void *b)
411 const module_config_t *const *ca = a, *const *cb = b;
413 return strcmp ((*ca)->psz_name, (*cb)->psz_name);
416 static int confnamecmp (const void *key, const void *elem)
418 const module_config_t *const *conf = elem;
420 return strcmp (key, (*conf)->psz_name);
425 module_config_t **list;
427 } config = { NULL, 0 };
430 * Index the configuration items by name for faster lookups.
432 int config_SortConfig (void)
435 module_t **mlist = module_list_get (&nmod);
436 if (unlikely(mlist == NULL))
440 for (size_t i = 0; i < nmod; i++)
441 nconf += mlist[i]->confsize;
443 module_config_t **clist = malloc (sizeof (*clist) * nconf);
444 if (unlikely(clist == NULL))
446 module_list_free (mlist);
451 for (size_t i = 0; i < nmod; i++)
453 module_t *parser = mlist[i];
454 module_config_t *item, *end;
456 for (item = parser->p_config, end = item + parser->confsize;
460 if (item->i_type & CONFIG_HINT)
461 continue; /* ignore hints */
462 clist[nconf++] = item;
465 module_list_free (mlist);
467 qsort (clist, nconf, sizeof (*clist), confcmp);
470 config.count = nconf;
474 void config_UnsortConfig (void)
476 module_config_t **clist;
485 /*****************************************************************************
486 * config_FindConfig: find the config structure associated with an option.
487 *****************************************************************************
488 * FIXME: remove p_this pointer parameter (or use it)
489 *****************************************************************************/
490 module_config_t *config_FindConfig (vlc_object_t *p_this, const char *name)
494 if (unlikely(name == NULL))
497 module_config_t *const *p;
498 p = bsearch (name, config.list, config.count, sizeof (*p), confnamecmp);
499 return p ? *p : NULL;
502 /*****************************************************************************
503 * config_Free: frees a duplicated module's configuration data.
504 *****************************************************************************
505 * This function frees all the data duplicated by config_Duplicate.
506 *****************************************************************************/
507 void config_Free( module_t *p_module )
511 for (size_t j = 0; j < p_module->confsize; j++)
513 module_config_t *p_item = p_module->p_config + j;
515 free( p_item->psz_type );
516 free( p_item->psz_name );
517 free( p_item->psz_text );
518 free( p_item->psz_longtext );
519 free( p_item->psz_oldname );
521 if (IsConfigStringType (p_item->i_type))
523 free (p_item->value.psz);
524 free (p_item->orig.psz);
525 free (p_item->saved.psz);
528 if( p_item->ppsz_list )
529 for( i = 0; i < p_item->i_list; i++ )
530 free( p_item->ppsz_list[i] );
531 if( p_item->ppsz_list_text )
532 for( i = 0; i < p_item->i_list; i++ )
533 free( p_item->ppsz_list_text[i] );
534 free( p_item->ppsz_list );
535 free( p_item->ppsz_list_text );
536 free( p_item->pi_list );
538 if( p_item->i_action )
540 for( i = 0; i < p_item->i_action; i++ )
542 free( p_item->ppsz_action_text[i] );
544 free( p_item->ppf_action );
545 free( p_item->ppsz_action_text );
549 free (p_module->p_config);
550 p_module->p_config = NULL;
553 #undef config_ResetAll
554 /*****************************************************************************
555 * config_ResetAll: reset the configuration data for all the modules.
556 *****************************************************************************/
557 void config_ResetAll( vlc_object_t *p_this )
561 module_t **list = module_list_get (NULL);
563 vlc_rwlock_wrlock (&config_lock);
564 for (size_t j = 0; (p_module = list[j]) != NULL; j++)
566 if( p_module->b_submodule ) continue;
568 for (size_t i = 0; i < p_module->confsize; i++ )
570 module_config_t *p_config = p_module->p_config + i;
572 if (IsConfigIntegerType (p_config->i_type))
573 p_config->value.i = p_config->orig.i;
575 if (IsConfigFloatType (p_config->i_type))
576 p_config->value.f = p_config->orig.f;
578 if (IsConfigStringType (p_config->i_type))
580 free ((char *)p_config->value.psz);
581 p_config->value.psz =
582 strdupnull (p_config->orig.psz);
586 vlc_rwlock_unlock (&config_lock);
588 module_list_free (list);