📄 core.c
字号:
/***************************************************************************** * core.c management of the modules configuration ***************************************************************************** * Copyright (C) 2001-2007 the VideoLAN team * $Id$ * * Authors: Gildas Bazin <gbazin@videolan.org> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. *****************************************************************************/#ifdef HAVE_CONFIG_H# include "config.h"#endif#include <vlc_common.h>#include "../libvlc.h"#include "vlc_keys.h"#include "vlc_charset.h"#include "vlc_configuration.h"#include <assert.h>#include "configuration.h"#include "modules/modules.h"static inline char *strdupnull (const char *src){ return src ? strdup (src) : NULL;}/* Item types that use a string value (i.e. serialized in the module cache) */int IsConfigStringType (int type){ static const unsigned char config_types[] = { CONFIG_ITEM_STRING, CONFIG_ITEM_FILE, CONFIG_ITEM_MODULE, CONFIG_ITEM_DIRECTORY, CONFIG_ITEM_MODULE_CAT, CONFIG_ITEM_PASSWORD, CONFIG_ITEM_MODULE_LIST, CONFIG_ITEM_MODULE_LIST_CAT }; /* NOTE: this needs to be changed if we ever get more than 255 types */ return memchr (config_types, type, sizeof (config_types)) != NULL;}int IsConfigIntegerType (int type){ static const unsigned char config_types[] = { CONFIG_ITEM_INTEGER, CONFIG_ITEM_KEY, CONFIG_ITEM_BOOL, CONFIG_CATEGORY, CONFIG_SUBCATEGORY }; return memchr (config_types, type, sizeof (config_types)) != NULL;}/***************************************************************************** * config_GetType: get the type of a variable (bool, int, float, string) ***************************************************************************** * This function is used to get the type of a variable from its name. * Beware, this is quite slow. *****************************************************************************/int __config_GetType( vlc_object_t *p_this, const char *psz_name ){ module_config_t *p_config; int i_type; p_config = config_FindConfig( p_this, psz_name ); /* sanity checks */ if( !p_config ) { return 0; } switch( p_config->i_type ) { case CONFIG_ITEM_BOOL: i_type = VLC_VAR_BOOL; break; case CONFIG_ITEM_INTEGER: case CONFIG_ITEM_KEY: i_type = VLC_VAR_INTEGER; break; case CONFIG_ITEM_FLOAT: i_type = VLC_VAR_FLOAT; break; case CONFIG_ITEM_MODULE: case CONFIG_ITEM_MODULE_CAT: case CONFIG_ITEM_MODULE_LIST: case CONFIG_ITEM_MODULE_LIST_CAT: i_type = VLC_VAR_MODULE; break; case CONFIG_ITEM_STRING: i_type = VLC_VAR_STRING; break; case CONFIG_ITEM_PASSWORD: i_type = VLC_VAR_STRING; break; case CONFIG_ITEM_FILE: i_type = VLC_VAR_FILE; break; case CONFIG_ITEM_DIRECTORY: i_type = VLC_VAR_DIRECTORY; break; default: i_type = 0; break; } return i_type;}/***************************************************************************** * config_GetInt: get the value of an int variable ***************************************************************************** * This function is used to get the value of variables which are internally * represented by an integer (CONFIG_ITEM_INTEGER and * CONFIG_ITEM_BOOL). *****************************************************************************/int __config_GetInt( vlc_object_t *p_this, const char *psz_name ){ module_config_t *p_config; p_config = config_FindConfig( p_this, psz_name ); /* sanity checks */ if( !p_config ) { msg_Err( p_this, "option %s does not exist", psz_name ); return -1; } if (!IsConfigIntegerType (p_config->i_type)) { msg_Err( p_this, "option %s does not refer to an int", psz_name ); return -1; } return p_config->value.i;}/***************************************************************************** * config_GetFloat: get the value of a float variable ***************************************************************************** * This function is used to get the value of variables which are internally * represented by a float (CONFIG_ITEM_FLOAT). *****************************************************************************/float __config_GetFloat( vlc_object_t *p_this, const char *psz_name ){ module_config_t *p_config; p_config = config_FindConfig( p_this, psz_name ); /* sanity checks */ if( !p_config ) { msg_Err( p_this, "option %s does not exist", psz_name ); return -1; } if (!IsConfigFloatType (p_config->i_type)) { msg_Err( p_this, "option %s does not refer to a float", psz_name ); return -1; } return p_config->value.f;}/***************************************************************************** * config_GetPsz: get the string value of a string variable ***************************************************************************** * This function is used to get the value of variables which are internally * represented by a string (CONFIG_ITEM_STRING, CONFIG_ITEM_FILE, * CONFIG_ITEM_DIRECTORY, CONFIG_ITEM_PASSWORD, and CONFIG_ITEM_MODULE). * * Important note: remember to free() the returned char* because it's a * duplicate of the actual value. It isn't safe to return a pointer to the * actual value as it can be modified at any time. *****************************************************************************/char * __config_GetPsz( vlc_object_t *p_this, const char *psz_name ){ module_config_t *p_config; p_config = config_FindConfig( p_this, psz_name ); /* sanity checks */ if( !p_config ) { msg_Err( p_this, "option %s does not exist", psz_name ); return NULL; } if (!IsConfigStringType (p_config->i_type)) { msg_Err( p_this, "option %s does not refer to a string", psz_name ); return NULL; } /* return a copy of the string */ vlc_mutex_lock( p_config->p_lock ); char *psz_value = strdupnull (p_config->value.psz); vlc_mutex_unlock( p_config->p_lock ); return psz_value;}/***************************************************************************** * config_PutPsz: set the string value of a string variable ***************************************************************************** * This function is used to set the value of variables which are internally * represented by a string (CONFIG_ITEM_STRING, CONFIG_ITEM_FILE, * CONFIG_ITEM_DIRECTORY, CONFIG_ITEM_PASSWORD, and CONFIG_ITEM_MODULE). *****************************************************************************/void __config_PutPsz( vlc_object_t *p_this, const char *psz_name, const char *psz_value ){ module_config_t *p_config; vlc_value_t oldval, val; p_config = config_FindConfig( p_this, psz_name ); /* sanity checks */ if( !p_config ) { msg_Warn( p_this, "option %s does not exist", psz_name ); return; } if (!IsConfigStringType (p_config->i_type)) { msg_Err( p_this, "option %s does not refer to a string", psz_name ); return; } vlc_mutex_lock( p_config->p_lock ); /* backup old value */ oldval.psz_string = (char *)p_config->value.psz; if ((psz_value != NULL) && *psz_value) p_config->value.psz = strdup (psz_value); else p_config->value.psz = NULL; p_config->b_dirty = true; val.psz_string = (char *)p_config->value.psz; vlc_mutex_unlock( p_config->p_lock ); if( p_config->pf_callback ) { p_config->pf_callback( p_this, psz_name, oldval, val, p_config->p_callback_data ); } /* free old string */ free( oldval.psz_string );}/*****************************************************************************
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -