Commit b66d681a authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

A more space conservative module_config_t

parent 879312db
...@@ -57,6 +57,34 @@ ...@@ -57,6 +57,34 @@
#define CONFIG_ITEM 0x00F0 #define CONFIG_ITEM 0x00F0
/* Item types that use a string value (i.e. serialized in the module cache) */
#define CONFIG_STRING_TYPES \
{ \
CONFIG_ITEM_STRING, CONFIG_ITEM_FILE, CONFIG_ITEM_MODULE, \
CONFIG_ITEM_DIRECTORY, CONFIG_ITEM_MODULE_CAT, \
CONFIG_ITEM_MODULE_LIST, CONFIG_ITEM_MODULE_LIST_CAT \
}
static inline int IsConfigStringType (int type)
{
const unsigned char config_string_types[] = CONFIG_STRING_TYPES;
/* NOTE: this needs to be changed if we ever get more than 255 types */
return memchr (config_string_types, type, sizeof (config_string_types))
!= NULL;
}
static inline int IsConfigIntegerType (int type)
{
return (type == CONFIG_ITEM_INTEGER) || (type == CONFIG_ITEM_KEY)
|| (type == CONFIG_ITEM_BOOL);
}
static inline int IsConfigFloatType (int type)
{
return type == CONFIG_ITEM_FLOAT;
}
/******************************************************************* /*******************************************************************
* All predefined categories and subcategories * All predefined categories and subcategories
*******************************************************************/ *******************************************************************/
...@@ -117,6 +145,19 @@ struct config_category_t ...@@ -117,6 +145,19 @@ struct config_category_t
const char *psz_help; const char *psz_help;
}; };
typedef union
{
const char *psz;
int i;
float f;
} module_value_t;
typedef union
{
int i;
float f;
} module_nvalue_t;
struct module_config_t struct module_config_t
{ {
int i_type; /* Configuration type */ int i_type; /* Configuration type */
...@@ -125,13 +166,11 @@ struct module_config_t ...@@ -125,13 +166,11 @@ struct module_config_t
char i_short; /* Optional short option name */ char i_short; /* Optional short option name */
const char *psz_text; /* Short comment on the configuration option */ const char *psz_text; /* Short comment on the configuration option */
const char *psz_longtext; /* Long comment on the configuration option */ const char *psz_longtext; /* Long comment on the configuration option */
const char *psz_value; /* Option value */ module_value_t value; /* Option value */
int i_value; /* Option value */ module_value_t orig;
float f_value; /* Option value */ module_value_t saved;
int i_min; /* Option minimum value */ module_nvalue_t min;
int i_max; /* Option maximum value */ module_nvalue_t max;
float f_min; /* Option minimum value */
float f_max; /* Option maximum value */
/* Function to call when commiting a change */ /* Function to call when commiting a change */
vlc_callback_t pf_callback; vlc_callback_t pf_callback;
...@@ -148,9 +187,6 @@ struct module_config_t ...@@ -148,9 +187,6 @@ struct module_config_t
const char **ppsz_action_text; /* Friendly names for actions */ const char **ppsz_action_text; /* Friendly names for actions */
int i_action; /* actions list size */ int i_action; /* actions list size */
/* Deprecated */
const char *psz_current; /* Good option name */
vlc_bool_t b_strict; /* Transitionnal or strict */
/* Misc */ /* Misc */
vlc_mutex_t *p_lock; /* Lock to use when modifying the config */ vlc_mutex_t *p_lock; /* Lock to use when modifying the config */
vlc_bool_t b_dirty; /* Dirty flag to indicate a config change */ vlc_bool_t b_dirty; /* Dirty flag to indicate a config change */
...@@ -159,15 +195,11 @@ struct module_config_t ...@@ -159,15 +195,11 @@ struct module_config_t
vlc_bool_t b_restart; /* Flag to indicate the option need a restart */ vlc_bool_t b_restart; /* Flag to indicate the option need a restart */
/* to take effect */ /* to take effect */
/* Original option values */ /* Deprecated */
const char *psz_value_orig; const char *psz_current; /* Good option name */
int i_value_orig; vlc_bool_t b_strict; /* Transitionnal or strict */
float f_value_orig;
/* Option values loaded from config file */ /* Option values loaded from config file */
const char *psz_value_saved;
int i_value_saved;
float f_value_saved;
vlc_bool_t b_autosave; /* Config will be auto-saved at exit time */ vlc_bool_t b_autosave; /* Config will be auto-saved at exit time */
vlc_bool_t b_unsaveable; /* confg should be saved*/ vlc_bool_t b_unsaveable; /* confg should be saved*/
}; };
...@@ -256,22 +288,22 @@ int config_AutoSaveConfigFile( vlc_object_t * ); ...@@ -256,22 +288,22 @@ int config_AutoSaveConfigFile( vlc_object_t * );
p_config[i_config].psz_name = name; \ p_config[i_config].psz_name = name; \
p_config[i_config].pf_callback = cb p_config[i_config].pf_callback = cb
#define add_string_inner( type, name, text, longtext, advc, cb, value ) \ #define add_string_inner( type, name, text, longtext, advc, cb, v ) \
add_typename_inner( type, name, text, longtext, advc, cb ); \ add_typename_inner( type, name, text, longtext, advc, cb ); \
p_config[i_config].psz_value = value p_config[i_config].value.psz = v
#define add_int_inner( type, name, text, longtext, advc, cb, value ) \ #define add_int_inner( type, name, text, longtext, advc, cb, v ) \
add_typename_inner( type, name, text, longtext, advc, cb ); \ add_typename_inner( type, name, text, longtext, advc, cb ); \
p_config[i_config].i_value = value p_config[i_config].value.i = v
#define set_category( i_id ) \ #define set_category( i_id ) \
add_type_inner( CONFIG_CATEGORY ); \ add_type_inner( CONFIG_CATEGORY ); \
p_config[i_config].i_value = i_id p_config[i_config].value.i = i_id
#define set_subcategory( i_id ) \ #define set_subcategory( i_id ) \
add_type_inner( CONFIG_SUBCATEGORY ); \ add_type_inner( CONFIG_SUBCATEGORY ); \
p_config[i_config].i_value = i_id p_config[i_config].value.i = i_id
#define set_section( text, longtext ) \ #define set_section( text, longtext ) \
add_typedesc_inner( CONFIG_SECTION, text, longtext ) add_typedesc_inner( CONFIG_SECTION, text, longtext )
...@@ -303,7 +335,7 @@ int config_AutoSaveConfigFile( vlc_object_t * ); ...@@ -303,7 +335,7 @@ int config_AutoSaveConfigFile( vlc_object_t * );
#define add_module_cat( name, i_subcategory, value, p_callback, text, longtext, advc ) \ #define add_module_cat( name, i_subcategory, value, p_callback, text, longtext, advc ) \
add_string_inner( CONFIG_ITEM_MODULE_CAT, name, text, longtext, advc, p_callback, value ); \ add_string_inner( CONFIG_ITEM_MODULE_CAT, name, text, longtext, advc, p_callback, value ); \
p_config[i_config].i_min = i_subcategory /* gruik */ p_config[i_config].min.i = i_subcategory /* gruik */
#define add_module_list( name, psz_caps, value, p_callback, text, longtext, advc ) \ #define add_module_list( name, psz_caps, value, p_callback, text, longtext, advc ) \
add_string_inner( CONFIG_ITEM_MODULE_LIST, name, text, longtext, advc, p_callback, value ); \ add_string_inner( CONFIG_ITEM_MODULE_LIST, name, text, longtext, advc, p_callback, value ); \
...@@ -311,7 +343,7 @@ int config_AutoSaveConfigFile( vlc_object_t * ); ...@@ -311,7 +343,7 @@ int config_AutoSaveConfigFile( vlc_object_t * );
#define add_module_list_cat( name, i_subcategory, value, p_callback, text, longtext, advc ) \ #define add_module_list_cat( name, i_subcategory, value, p_callback, text, longtext, advc ) \
add_string_inner( CONFIG_ITEM_MODULE_LIST_CAT, name, text, longtext, advc, p_callback, value ); \ add_string_inner( CONFIG_ITEM_MODULE_LIST_CAT, name, text, longtext, advc, p_callback, value ); \
p_config[i_config].i_min = i_subcategory /* gruik */ p_config[i_config].min.i = i_subcategory /* gruik */
#define add_integer( name, value, p_callback, text, longtext, advc ) \ #define add_integer( name, value, p_callback, text, longtext, advc ) \
add_int_inner( CONFIG_ITEM_INTEGER, name, text, longtext, advc, p_callback, value ) add_int_inner( CONFIG_ITEM_INTEGER, name, text, longtext, advc, p_callback, value )
...@@ -323,17 +355,17 @@ int config_AutoSaveConfigFile( vlc_object_t * ); ...@@ -323,17 +355,17 @@ int config_AutoSaveConfigFile( vlc_object_t * );
add_integer( name, value, p_callback, text, longtext, advc ); \ add_integer( name, value, p_callback, text, longtext, advc ); \
change_integer_range( i_min, i_max ) change_integer_range( i_min, i_max )
#define add_float( name, value, p_callback, text, longtext, advc ) \ #define add_float( name, v, p_callback, text, longtext, advc ) \
add_typename_inner( CONFIG_ITEM_FLOAT, name, text, longtext, advc, p_callback ); \ add_typename_inner( CONFIG_ITEM_FLOAT, name, text, longtext, advc, p_callback ); \
p_config[i_config].f_value = value p_config[i_config].value.f = v
#define add_float_with_range( name, value, f_min, f_max, p_callback, text, longtext, advc ) \ #define add_float_with_range( name, value, f_min, f_max, p_callback, text, longtext, advc ) \
add_float( name, value, p_callback, text, longtext, advc ); \ add_float( name, value, p_callback, text, longtext, advc ); \
change_float_range( f_min, f_max ) change_float_range( f_min, f_max )
#define add_bool( name, value, p_callback, text, longtext, advc ) \ #define add_bool( name, v, p_callback, text, longtext, advc ) \
add_typename_inner( CONFIG_ITEM_BOOL, name, text, longtext, advc, p_callback ); \ add_typename_inner( CONFIG_ITEM_BOOL, name, text, longtext, advc, p_callback ); \
p_config[i_config].i_value = value p_config[i_config].value.i = v
/* For renamed option */ /* For renamed option */
#define add_deprecated( name, strict ) \ #define add_deprecated( name, strict ) \
...@@ -377,13 +409,13 @@ int config_AutoSaveConfigFile( vlc_object_t * ); ...@@ -377,13 +409,13 @@ int config_AutoSaveConfigFile( vlc_object_t * );
p_config[i_config].pi_list = (int *)list; \ p_config[i_config].pi_list = (int *)list; \
p_config[i_config].ppsz_list_text = list_text; p_config[i_config].ppsz_list_text = list_text;
#define change_integer_range( min, max ) \ #define change_integer_range( minv, maxv ) \
p_config[i_config].i_min = min; \ p_config[i_config].min.i = minv; \
p_config[i_config].i_max = max; p_config[i_config].max.i = maxv;
#define change_float_range( min, max ) \ #define change_float_range( minv, maxv ) \
p_config[i_config].f_min = min; \ p_config[i_config].min.f = minv; \
p_config[i_config].f_max = max; p_config[i_config].max.f = maxv;
#define change_action_add( pf_action, action_text ) \ #define change_action_add( pf_action, action_text ) \
if( !p_config[i_config].i_action ) \ if( !p_config[i_config].i_action ) \
......
...@@ -1488,7 +1488,7 @@ static void Usage( libvlc_int_t *p_this, char const *psz_module_name ) ...@@ -1488,7 +1488,7 @@ static void Usage( libvlc_int_t *p_this, char const *psz_module_name )
psz_bra = ""; psz_type = ""; psz_ket = ""; psz_bra = ""; psz_type = ""; psz_ket = "";
if( !b_help_module ) if( !b_help_module )
{ {
psz_suf = p_item->i_value ? _(" (default enabled)") : psz_suf = p_item->value.i ? _(" (default enabled)") :
_(" (default disabled)"); _(" (default disabled)");
} }
break; break;
......
This diff is collapsed.
...@@ -1714,7 +1714,6 @@ static void CacheLoad( vlc_object_t *p_this ) ...@@ -1714,7 +1714,6 @@ static void CacheLoad( vlc_object_t *p_this )
} else a = 0; \ } else a = 0; \
} while(0) } while(0)
for( i = 0; i < i_cache; i++ ) for( i = 0; i < i_cache; i++ )
{ {
int16_t i_size; int16_t i_size;
...@@ -1793,6 +1792,7 @@ static void CacheLoad( vlc_object_t *p_this ) ...@@ -1793,6 +1792,7 @@ static void CacheLoad( vlc_object_t *p_this )
return; return;
} }
int CacheLoadConfig( module_t *p_module, FILE *file ) int CacheLoadConfig( module_t *p_module, FILE *file )
{ {
int i, j, i_lines; int i, j, i_lines;
...@@ -1823,16 +1823,23 @@ int CacheLoadConfig( module_t *p_module, FILE *file ) ...@@ -1823,16 +1823,23 @@ int CacheLoadConfig( module_t *p_module, FILE *file )
LOAD_STRING( p_module->p_config[i].psz_text ); LOAD_STRING( p_module->p_config[i].psz_text );
LOAD_STRING( p_module->p_config[i].psz_longtext ); LOAD_STRING( p_module->p_config[i].psz_longtext );
LOAD_STRING( p_module->p_config[i].psz_current ); LOAD_STRING( p_module->p_config[i].psz_current );
LOAD_STRING( p_module->p_config[i].psz_value_orig );
if (IsConfigStringType (p_module->p_config[i].i_type))
p_module->p_config[i].psz_value = {
p_module->p_config[i].psz_value_orig ? LOAD_STRING (p_module->p_config[i].orig.psz);
strdup( p_module->p_config[i].psz_value_orig ) : 0; p_module->p_config[i].value.psz =
p_module->p_config[i].i_value = p_module->p_config[i].i_value_orig; (p_module->p_config[i].orig.psz != NULL)
p_module->p_config[i].f_value = p_module->p_config[i].f_value_orig; ? strdup (p_module->p_config[i].orig.psz) : NULL;
p_module->p_config[i].i_value_saved = p_module->p_config[i].i_value; p_module->p_config[i].saved.psz = NULL;
p_module->p_config[i].f_value_saved = p_module->p_config[i].f_value; }
p_module->p_config[i].psz_value_saved = 0; else
{
memcpy (&p_module->p_config[i].value, &p_module->p_config[i].orig,
sizeof (p_module->p_config[i].value));
memcpy (&p_module->p_config[i].saved, &p_module->p_config[i].orig,
sizeof (p_module->p_config[i].saved));
}
p_module->p_config[i].b_dirty = VLC_FALSE; p_module->p_config[i].b_dirty = VLC_FALSE;
p_module->p_config[i].p_lock = &p_module->object_lock; p_module->p_config[i].p_lock = &p_module->object_lock;
...@@ -2086,7 +2093,8 @@ void CacheSaveConfig( module_t *p_module, FILE *file ) ...@@ -2086,7 +2093,8 @@ void CacheSaveConfig( module_t *p_module, FILE *file )
SAVE_STRING( p_module->p_config[i].psz_text ); SAVE_STRING( p_module->p_config[i].psz_text );
SAVE_STRING( p_module->p_config[i].psz_longtext ); SAVE_STRING( p_module->p_config[i].psz_longtext );
SAVE_STRING( p_module->p_config[i].psz_current ); SAVE_STRING( p_module->p_config[i].psz_current );
SAVE_STRING( p_module->p_config[i].psz_value_orig ); if (IsConfigStringType (p_module->p_config[i].i_type))
SAVE_STRING( p_module->p_config[i].orig.psz );
if( p_module->p_config[i].i_list ) if( p_module->p_config[i].i_list )
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment