]> git.sesse.net Git - vlc/blob - include/configuration.h
* added config_GetFloatVariable() and config_PutFloatVariable() to the config
[vlc] / include / configuration.h
1 /*****************************************************************************
2  * 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, 2000 VideoLAN
7  * $Id: configuration.h,v 1.6 2002/04/21 11:23:03 gbazin Exp $
8  *
9  * Authors: Gildas Bazin <gbazin@netcourrier.com>
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 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 General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
24  *****************************************************************************/
25
26 /*****************************************************************************
27  * Macros used to build the configuration structure.
28  *****************************************************************************/
29
30 /* Configuration hint types */
31 #define MODULE_CONFIG_HINT_END              0x0001  /* End of config */
32 #define MODULE_CONFIG_HINT_CATEGORY         0x0002  /* Start of new category */
33 #define MODULE_CONFIG_HINT_SUBCATEGORY      0x0003  /* Start of sub-category */
34 #define MODULE_CONFIG_HINT_SUBCATEGORY_END  0x0004  /* End of sub-category */
35
36 #define MODULE_CONFIG_HINT                  0x000F
37
38 /* Configuration item types */
39 #define MODULE_CONFIG_ITEM_STRING           0x0010  /* String option */
40 #define MODULE_CONFIG_ITEM_FILE             0x0020  /* File option */
41 #define MODULE_CONFIG_ITEM_PLUGIN           0x0030  /* Plugin option */
42 #define MODULE_CONFIG_ITEM_INTEGER          0x0040  /* Integer option */
43 #define MODULE_CONFIG_ITEM_BOOL             0x0050  /* Bool option */
44 #define MODULE_CONFIG_ITEM_FLOAT            0x0060  /* Float option */
45
46 #define MODULE_CONFIG_ITEM                  0x00F0
47
48 typedef struct module_config_s
49 {
50     int         i_type;                                /* Configuration type */
51     char        *psz_name;                                    /* Option name */
52     char        *psz_text;      /* Short comment on the configuration option */
53     char        *psz_longtext;   /* Long comment on the configuration option */
54     char        *psz_value;                                  /* Option value */
55     int         i_value;                                     /* Option value */
56     float       f_value;                                     /* Option value */
57     void        *p_callback;     /* Function to call when commiting a change */
58     vlc_mutex_t *p_lock;            /* lock to use when modifying the config */
59     boolean_t   b_dirty;           /* Dirty flag to indicate a config change */
60
61 } module_config_t;
62
63 /*****************************************************************************
64  * Prototypes - these methods are used to get, set or manipulate configuration
65  * data.
66  *****************************************************************************/
67 #ifndef PLUGIN
68 int    config_GetIntVariable( const char *psz_name );
69 float  config_GetFloatVariable( const char *psz_name );
70 char * config_GetPszVariable( const char *psz_name );
71 void   config_PutIntVariable( const char *psz_name, int i_value );
72 void   config_PutFloatVariable( const char *psz_name, float f_value );
73 void   config_PutPszVariable( const char *psz_name, char *psz_value );
74
75 int config_LoadConfigFile( const char *psz_module_name );
76 int config_SaveConfigFile( const char *psz_module_name );
77 module_config_t *config_FindConfig( const char *psz_name );
78 module_config_t *config_Duplicate ( module_config_t * );
79 char *config_GetHomeDir( void );
80 int config_LoadCmdLine( int *pi_argc, char *ppsz_argv[],
81                         boolean_t b_ignore_errors );
82
83 #else
84 #   define config_GetIntVariable p_symbols->config_GetIntVariable
85 #   define config_PutIntVariable p_symbols->config_PutIntVariable
86 #   define config_GetFloatVariable p_symbols->config_GetFloatVariable
87 #   define config_PutFloatVariable p_symbols->config_PutFloatVariable
88 #   define config_GetPszVariable p_symbols->config_GetPszVariable
89 #   define config_PutPszVariable p_symbols->config_PutPszVariable
90 #   define config_Duplicate      p_symbols->config_Duplicate
91 #   define config_FindConfig     p_symbols->config_FindConfig
92 #   define config_LoadConfigFile p_symbols->config_LoadConfigFile
93 #   define config_SaveConfigFile p_symbols->config_SaveConfigFile
94 #endif
95
96 /*****************************************************************************
97  * Macros used to build the configuration structure.
98  *
99  * Note that internally we support only 2 types of config data: int and string.
100  *   The other types declared here just map to one of these 2 basic types but
101  *   have the advantage of also providing very good hints to a configuration
102  *   interface so as to make it more user friendly.
103  * The configuration structure also includes category hints. These hints can
104  *   provide a configuration inteface with some very useful data and also allow
105  *   for a more user friendly interface.
106  *****************************************************************************/
107
108 #define MODULE_CONFIG_START \
109     static module_config_t p_config[] = {
110
111 #define MODULE_CONFIG_STOP \
112     { MODULE_CONFIG_HINT_END, NULL, NULL, NULL, NULL, 0, 0, NULL, 0 } };
113
114 #define ADD_CATEGORY_HINT( text, longtext ) \
115     { MODULE_CONFIG_HINT_CATEGORY, NULL, text, longtext, NULL, 0, 0, NULL, \
116       NULL, 0 },
117 #define ADD_SUBCATEGORY_HINT( text, longtext ) \
118     { MODULE_CONFIG_HINT_SUBCATEGORY, NULL, text, longtext, NULL, 0, 0, NULL, \
119       NULL, 0 },
120 #define END_SUBCATEGORY_HINT \
121     { MODULE_CONFIG_HINT_SUBCATEGORY_END, NULL, NULL, NULL, NULL, 0, 0, NULL, \
122       NULL, 0 },
123 #define ADD_STRING( name, value, p_callback, text, longtext ) \
124     { MODULE_CONFIG_ITEM_STRING, name, text, longtext, value, 0, 0, \
125       p_callback, NULL, 0 },
126 #define ADD_FILE( name, psz_value, p_callback, text, longtext ) \
127     { MODULE_CONFIG_ITEM_FILE, name, text, longtext, psz_value, 0, 0, \
128       p_callback, NULL, 0 },
129 #define ADD_PLUGIN( name, i_capability, psz_value, p_callback, text, longtext)\
130     { MODULE_CONFIG_ITEM_PLUGIN, name, text, longtext, psz_value, \
131       i_capability, 0, p_callback, NULL, 0 },
132 #define ADD_INTEGER( name, i_value, p_callback, text, longtext ) \
133     { MODULE_CONFIG_ITEM_INTEGER, name, text, longtext, NULL, i_value, 0, \
134       p_callback, NULL, 0 },
135 #define ADD_FLOAT( name, f_value, p_callback, text, longtext ) \
136     { MODULE_CONFIG_ITEM_FLOAT, name, text, longtext, NULL, 0, f_value, \
137       p_callback, NULL, 0 },
138 #define ADD_BOOL( name, p_callback, text, longtext ) \
139     { MODULE_CONFIG_ITEM_BOOL, name, text, longtext, NULL, 0, 0, p_callback, \
140       NULL, 0 },