📄 configuration.c
字号:
/***************************************************************************** * configuration.c management of the modules configuration ***************************************************************************** * Copyright (C) 2001-2004 VideoLAN * $Id: configuration.c 11173 2005-05-26 17:55:42Z xtophe $ * * 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., 59 Temple Place - Suite 330, Boston, MA 02111, USA. *****************************************************************************/#include <vlc/vlc.h>#include "vlc_keys.h"#include <stdio.h> /* sprintf() */#include <stdlib.h> /* free(), strtol() */#include <string.h> /* strdup() */#include <errno.h> /* errno */#ifdef HAVE_UNISTD_H# include <unistd.h> /* getuid() */#endif#ifdef HAVE_GETOPT_LONG# ifdef HAVE_GETOPT_H# include <getopt.h> /* getopt() */# endif#else# include "../extras/getopt.h"#endif#if defined(HAVE_GETPWUID)# include <pwd.h> /* getpwuid() */#endif#if defined( HAVE_SYS_STAT_H )# include <sys/stat.h>#endif#if defined( HAVE_SYS_TYPES_H )# include <sys/types.h>#endif#if defined( WIN32 )# if !defined( UNDER_CE )# include <direct.h># endif#include <tchar.h>#endifstatic int ConfigStringToKey( char * );static char *ConfigKeyToString( int );/***************************************************************************** * 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: 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_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( (p_config->i_type!=CONFIG_ITEM_INTEGER) && (p_config->i_type!=CONFIG_ITEM_KEY) && (p_config->i_type!=CONFIG_ITEM_BOOL) ) { msg_Err( p_this, "option %s does not refer to an int", psz_name ); return -1; } return p_config->i_value;}/***************************************************************************** * 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( p_config->i_type != CONFIG_ITEM_FLOAT ) { msg_Err( p_this, "option %s does not refer to a float", psz_name ); return -1; } return p_config->f_value;}/***************************************************************************** * 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, 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; char *psz_value = NULL; 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( (p_config->i_type!=CONFIG_ITEM_STRING) && (p_config->i_type!=CONFIG_ITEM_FILE) && (p_config->i_type!=CONFIG_ITEM_DIRECTORY) && (p_config->i_type!=CONFIG_ITEM_MODULE_LIST) && (p_config->i_type!=CONFIG_ITEM_MODULE_LIST_CAT) && (p_config->i_type!=CONFIG_ITEM_MODULE_CAT) && (p_config->i_type!=CONFIG_ITEM_MODULE) ) { 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 ); if( p_config->psz_value ) psz_value = strdup( p_config->psz_value ); 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, 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( (p_config->i_type!=CONFIG_ITEM_STRING) && (p_config->i_type!=CONFIG_ITEM_FILE) && (p_config->i_type!=CONFIG_ITEM_DIRECTORY) && (p_config->i_type!=CONFIG_ITEM_MODULE_LIST) && (p_config->i_type!=CONFIG_ITEM_MODULE_CAT) && (p_config->i_type!=CONFIG_ITEM_MODULE_LIST_CAT) && (p_config->i_type!=CONFIG_ITEM_MODULE) ) { 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 = p_config->psz_value; if( psz_value && *psz_value ) p_config->psz_value = strdup( psz_value ); else p_config->psz_value = NULL; p_config->b_dirty = VLC_TRUE; val.psz_string = p_config->psz_value; 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 */ if( oldval.psz_string ) free( oldval.psz_string );}/***************************************************************************** * config_PutInt: set the integer value of an int variable ***************************************************************************** * This function is used to set the value of variables which are internally * represented by an integer (CONFIG_ITEM_INTEGER and * CONFIG_ITEM_BOOL). *****************************************************************************/void __config_PutInt( vlc_object_t *p_this, const char *psz_name, int i_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( (p_config->i_type!=CONFIG_ITEM_INTEGER) && (p_config->i_type!=CONFIG_ITEM_KEY) && (p_config->i_type!=CONFIG_ITEM_BOOL) ) { msg_Err( p_this, "option %s does not refer to an int", psz_name ); return; } /* backup old value */ oldval.i_int = p_config->i_value; /* if i_min == i_max == 0, then do not use them */ if ((p_config->i_min == 0) && (p_config->i_max == 0)) { p_config->i_value = i_value; } else if (i_value < p_config->i_min) { p_config->i_value = p_config->i_min; } else if (i_value > p_config->i_max) { p_config->i_value = p_config->i_max; } else { p_config->i_value = i_value; } p_config->b_dirty = VLC_TRUE; val.i_int = p_config->i_value; if( p_config->pf_callback ) { p_config->pf_callback( p_this, psz_name, oldval, val, p_config->p_callback_data ); }}/***************************************************************************** * config_PutFloat: set the value of a float variable ***************************************************************************** * This function is used to set the value of variables which are internally * represented by a float (CONFIG_ITEM_FLOAT). *****************************************************************************/void __config_PutFloat( vlc_object_t *p_this, const char *psz_name, float f_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( p_config->i_type != CONFIG_ITEM_FLOAT ) { msg_Err( p_this, "option %s does not refer to a float", psz_name ); return; } /* backup old value */ oldval.f_float = p_config->f_value;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -