Doxyfile:

 * changed project name from 'vlc' to 'VLC'
 * excluded src/extras from the documentation
src/misc/variables.c, include/variables.h:
 * Doxygen-documented most of the vlc variables code
parent 7088ecec
...@@ -17,7 +17,7 @@ ...@@ -17,7 +17,7 @@
# The PROJECT_NAME tag is a single word (or a sequence of words surrounded # The PROJECT_NAME tag is a single word (or a sequence of words surrounded
# by quotes) that should identify the project. # by quotes) that should identify the project.
PROJECT_NAME = vlc PROJECT_NAME = VLC
# The PROJECT_NUMBER tag can be used to enter a project or revision number. # The PROJECT_NUMBER tag can be used to enter a project or revision number.
# This could be handy for archiving the generated documentation or # This could be handy for archiving the generated documentation or
...@@ -337,7 +337,7 @@ RECURSIVE = YES ...@@ -337,7 +337,7 @@ RECURSIVE = YES
# excluded from the INPUT source files. This way you can easily exclude a # excluded from the INPUT source files. This way you can easily exclude a
# subdirectory from a directory tree whose root is specified with the INPUT tag. # subdirectory from a directory tree whose root is specified with the INPUT tag.
EXCLUDE = EXCLUDE = ../src/extras
# The EXCLUDE_SYMLINKS tag can be used select whether or not files or directories # The EXCLUDE_SYMLINKS tag can be used select whether or not files or directories
# that are symbolic links (a Unix filesystem feature) are excluded from the input. # that are symbolic links (a Unix filesystem feature) are excluded from the input.
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* variables.h: variables handling * variables.h: variables handling
***************************************************************************** *****************************************************************************
* Copyright (C) 2002 VideoLAN * Copyright (C) 2002 VideoLAN
* $Id: variables.h,v 1.16 2003/09/07 22:45:16 fenrir Exp $ * $Id: variables.h,v 1.17 2003/09/29 15:45:19 sigmunau Exp $
* *
* Authors: Samuel Hocevar <sam@zoy.org> * Authors: Samuel Hocevar <sam@zoy.org>
* *
...@@ -21,47 +21,62 @@ ...@@ -21,47 +21,62 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA.
*****************************************************************************/ *****************************************************************************/
/**
* \defgroup variables Variables
*
* Functions for using the object variables in vlc.
*
* Vlc have a very powerful "object variable" infrastructure useful
* for many things.
*
* @{
*/
typedef struct callback_entry_t callback_entry_t; typedef struct callback_entry_t callback_entry_t;
/***************************************************************************** /**
* vlc_value_t is the common union for variable values; variable_t is the * The structure describing a variable.
* structure describing a variable. * \note vlc_value_t is the common union for variable values
*****************************************************************************/ */
struct variable_t struct variable_t
{ {
/* The variable's exported value */ /** The variable's exported value */
vlc_value_t val; vlc_value_t val;
/* The variable unique name, (almost) unique hashed value, and type */ char * psz_name; /**< The variable unique name */
char * psz_name; uint32_t i_hash; /**< (almost) unique hashed value */
uint32_t i_hash; int i_type; /**< The type of the variable */
int i_type;
/* The variable display name, mainly for use by the interfaces */ /** The variable display name, mainly for use by the interfaces */
char * psz_text; char * psz_text;
/* A pointer to a comparison function, a duplication function, and /** A pointer to a comparison function */
* a deallocation function */
int ( * pf_cmp ) ( vlc_value_t, vlc_value_t ); int ( * pf_cmp ) ( vlc_value_t, vlc_value_t );
/** A pointer to a duplication function */
void ( * pf_dup ) ( vlc_value_t * ); void ( * pf_dup ) ( vlc_value_t * );
/** A pointer to a deallocation function */
void ( * pf_free ) ( vlc_value_t * ); void ( * pf_free ) ( vlc_value_t * );
/* Creation count: we only destroy the variable if it reaches 0 */ /** Creation count: we only destroy the variable if it reaches 0 */
int i_usage; int i_usage;
/* If the variable has min/max/step values */ /** If the variable has min/max/step values */
vlc_value_t min, max, step; vlc_value_t min, max, step;
/* If the variable is to be chosen in a list */ /** Index of the default choice, if the variable is to be chosen in
* a list */
int i_default; int i_default;
/** List of choices */
vlc_list_t choices; vlc_list_t choices;
/** List of friendly names for the choices */
vlc_list_t choices_text; vlc_list_t choices_text;
/* Set to TRUE if the variable is in a callback */ /** Set to TRUE if the variable is in a callback */
vlc_bool_t b_incallback; vlc_bool_t b_incallback;
/* Registered callbacks */ /** Number of registered callbacks */
int i_entries; int i_entries;
/** Array of registered callbacks */
callback_entry_t * p_entries; callback_entry_t * p_entries;
}; };
...@@ -71,7 +86,11 @@ struct variable_t ...@@ -71,7 +86,11 @@ struct variable_t
#define VLC_VAR_TYPE 0x00ff #define VLC_VAR_TYPE 0x00ff
#define VLC_VAR_FLAGS 0xff00 #define VLC_VAR_FLAGS 0xff00
/* Different types */ /**
* \defgroup var_type Variable types
* These are the different types a vlc variable can have.
* @{
*/
#define VLC_VAR_VOID 0x0010 #define VLC_VAR_VOID 0x0010
#define VLC_VAR_BOOL 0x0020 #define VLC_VAR_BOOL 0x0020
#define VLC_VAR_INTEGER 0x0030 #define VLC_VAR_INTEGER 0x0030
...@@ -85,8 +104,12 @@ struct variable_t ...@@ -85,8 +104,12 @@ struct variable_t
#define VLC_VAR_ADDRESS 0x0070 #define VLC_VAR_ADDRESS 0x0070
#define VLC_VAR_MUTEX 0x0080 #define VLC_VAR_MUTEX 0x0080
#define VLC_VAR_LIST 0x0090 #define VLC_VAR_LIST 0x0090
/**@}*/
/* Additive flags */ /** \defgroup var_flags Additive flags
* These flags are added to the type field of the variable. Most as a result of
* a __var_Change() call, but some may be added at creation time
* @{
*/
#define VLC_VAR_HASCHOICE 0x0100 #define VLC_VAR_HASCHOICE 0x0100
#define VLC_VAR_HASMIN 0x0200 #define VLC_VAR_HASMIN 0x0200
#define VLC_VAR_HASMAX 0x0400 #define VLC_VAR_HASMAX 0x0400
...@@ -96,16 +119,37 @@ struct variable_t ...@@ -96,16 +119,37 @@ struct variable_t
#define VLC_VAR_ISCOMMAND 0x2000 #define VLC_VAR_ISCOMMAND 0x2000
#define VLC_VAR_ISCONFIG 0x2000 #define VLC_VAR_ISCONFIG 0x2000
/* Creation flag */ /** Creation flag */
#define VLC_VAR_DOINHERIT 0x8000 #define VLC_VAR_DOINHERIT 0x8000
/**@}*/
/***************************************************************************** /**
* Variable actions * \defgroup var_action Variable actions
*****************************************************************************/ * These are the different actions that can be used with __var_Change().
* The parameters given are the meaning of the two last parameters of
* __var_Change() when this action is being used.
* @{
*/
/**
* Set the minimum value of this variable
* \param p_val The new minimum value
* \param p_val2 Unused
*/
#define VLC_VAR_SETMIN 0x0010 #define VLC_VAR_SETMIN 0x0010
/**
* Set the maximum value of this variable
* \param p_val The new maximum value
* \param p_val2 Unused
*/
#define VLC_VAR_SETMAX 0x0011 #define VLC_VAR_SETMAX 0x0011
#define VLC_VAR_SETSTEP 0x0012 #define VLC_VAR_SETSTEP 0x0012
/**
* Set the value of this variable without triggering any callbacks
* \param p_val The new value
* \param p_val2 Unused
*/
#define VLC_VAR_SETVALUE 0x0013 #define VLC_VAR_SETVALUE 0x0013
#define VLC_VAR_SETTEXT 0x0014 #define VLC_VAR_SETTEXT 0x0014
...@@ -122,6 +166,7 @@ struct variable_t ...@@ -122,6 +166,7 @@ struct variable_t
#define VLC_VAR_CHOICESCOUNT 0x0028 #define VLC_VAR_CHOICESCOUNT 0x0028
#define VLC_VAR_INHERITVALUE 0x0030 #define VLC_VAR_INHERITVALUE 0x0030
/**@}*/
/***************************************************************************** /*****************************************************************************
* Prototypes * Prototypes
...@@ -135,13 +180,31 @@ VLC_EXPORT( int, __var_Type, ( vlc_object_t *, const char * ) ); ...@@ -135,13 +180,31 @@ VLC_EXPORT( int, __var_Type, ( vlc_object_t *, const char * ) );
VLC_EXPORT( int, __var_Set, ( vlc_object_t *, const char *, vlc_value_t ) ); VLC_EXPORT( int, __var_Set, ( vlc_object_t *, const char *, vlc_value_t ) );
VLC_EXPORT( int, __var_Get, ( vlc_object_t *, const char *, vlc_value_t * ) ); VLC_EXPORT( int, __var_Get, ( vlc_object_t *, const char *, vlc_value_t * ) );
/**
* __var_Create() with automatic casting.
*/
#define var_Create(a,b,c) __var_Create( VLC_OBJECT(a), b, c ) #define var_Create(a,b,c) __var_Create( VLC_OBJECT(a), b, c )
/**
* __var_Destroy() with automatic casting
*/
#define var_Destroy(a,b) __var_Destroy( VLC_OBJECT(a), b ) #define var_Destroy(a,b) __var_Destroy( VLC_OBJECT(a), b )
/**
* __var_Change() with automatic casting
*/
#define var_Change(a,b,c,d,e) __var_Change( VLC_OBJECT(a), b, c, d, e ) #define var_Change(a,b,c,d,e) __var_Change( VLC_OBJECT(a), b, c, d, e )
/**
* __var_Type() with automatic casting
*/
#define var_Type(a,b) __var_Type( VLC_OBJECT(a), b ) #define var_Type(a,b) __var_Type( VLC_OBJECT(a), b )
/**
* __var_Set() with automatic casting
*/
#define var_Set(a,b,c) __var_Set( VLC_OBJECT(a), b, c ) #define var_Set(a,b,c) __var_Set( VLC_OBJECT(a), b, c )
/**
* __var_Get() with automatic casting
*/
#define var_Get(a,b,c) __var_Get( VLC_OBJECT(a), b, c ) #define var_Get(a,b,c) __var_Get( VLC_OBJECT(a), b, c )
/***************************************************************************** /*****************************************************************************
...@@ -156,32 +219,68 @@ VLC_EXPORT( int, __var_Get, ( vlc_object_t *, const char *, vlc_value_t * ) ); ...@@ -156,32 +219,68 @@ VLC_EXPORT( int, __var_Get, ( vlc_object_t *, const char *, vlc_value_t * ) );
VLC_EXPORT( int, __var_AddCallback, ( vlc_object_t *, const char *, vlc_callback_t, void * ) ); VLC_EXPORT( int, __var_AddCallback, ( vlc_object_t *, const char *, vlc_callback_t, void * ) );
VLC_EXPORT( int, __var_DelCallback, ( vlc_object_t *, const char *, vlc_callback_t, void * ) ); VLC_EXPORT( int, __var_DelCallback, ( vlc_object_t *, const char *, vlc_callback_t, void * ) );
/**
* __var_AddCallback() with automatic casting
*/
#define var_AddCallback(a,b,c,d) __var_AddCallback( VLC_OBJECT(a), b, c, d ) #define var_AddCallback(a,b,c,d) __var_AddCallback( VLC_OBJECT(a), b, c, d )
/**
* __var_DelCallback() with automatic casting
*/
#define var_DelCallback(a,b,c,d) __var_DelCallback( VLC_OBJECT(a), b, c, d ) #define var_DelCallback(a,b,c,d) __var_DelCallback( VLC_OBJECT(a), b, c, d )
/***************************************************************************** /*****************************************************************************
* helpers functions * helpers functions
*****************************************************************************
*
*****************************************************************************/ *****************************************************************************/
/**
* Set the value of an integer variable
*
* \param p_obj The object that holds the variable
* \param psz_name The name of the variable
* \param i The new integer value of this variable
*/
static inline int __var_SetInteger( vlc_object_t *p_obj, const char *psz_name, int i ) static inline int __var_SetInteger( vlc_object_t *p_obj, const char *psz_name, int i )
{ {
vlc_value_t val; vlc_value_t val;
val.i_int = i; val.i_int = i;
return __var_Set( p_obj, psz_name, val ); return __var_Set( p_obj, psz_name, val );
} }
/**
* Set the value of a time variable
*
* \param p_obj The object that holds the variable
* \param psz_name The name of the variable
* \param i The new time value of this variable
*/
static inline int __var_SetTime( vlc_object_t *p_obj, const char *psz_name, signed long long i ) static inline int __var_SetTime( vlc_object_t *p_obj, const char *psz_name, signed long long i )
{ {
vlc_value_t val; vlc_value_t val;
val.i_time = i; val.i_time = i;
return __var_Set( p_obj, psz_name, val ); return __var_Set( p_obj, psz_name, val );
} }
/**
* Set the value of a float variable
*
* \param p_obj The object that holds the variable
* \param psz_name The name of the variable
* \param f The new float value of this variable
*/
static inline int __var_SetFloat( vlc_object_t *p_obj, const char *psz_name, float f ) static inline int __var_SetFloat( vlc_object_t *p_obj, const char *psz_name, float f )
{ {
vlc_value_t val; vlc_value_t val;
val.f_float = f; val.f_float = f;
return __var_Set( p_obj, psz_name, val ); return __var_Set( p_obj, psz_name, val );
} }
/**
* Trigger the callbacks on a void variable
*
* \param p_obj The object that holds the variable
* \param psz_name The name of the variable
*/
static inline int __var_SetVoid( vlc_object_t *p_obj, const char *psz_name ) static inline int __var_SetVoid( vlc_object_t *p_obj, const char *psz_name )
{ {
vlc_value_t val; vlc_value_t val;
...@@ -189,8 +288,24 @@ static inline int __var_SetVoid( vlc_object_t *p_obj, const char *psz_name ) ...@@ -189,8 +288,24 @@ static inline int __var_SetVoid( vlc_object_t *p_obj, const char *psz_name )
return __var_Set( p_obj, psz_name, val ); return __var_Set( p_obj, psz_name, val );
} }
/**
* __var_SetInteger() with automatic casting
*/
#define var_SetInteger(a,b,c) __var_SetInteger( VLC_OBJECT(a),b,c) #define var_SetInteger(a,b,c) __var_SetInteger( VLC_OBJECT(a),b,c)
/**
* __var_SetTime() with automatic casting
*/
#define var_SetTime(a,b,c) __var_SetTime( VLC_OBJECT(a),b,c) #define var_SetTime(a,b,c) __var_SetTime( VLC_OBJECT(a),b,c)
/**
* __var_SetFloat() with automatic casting
*/
#define var_SetFloat(a,b,c) __var_SetFloat( VLC_OBJECT(a),b,c) #define var_SetFloat(a,b,c) __var_SetFloat( VLC_OBJECT(a),b,c)
/**
* __var_SetVoid() with automatic casting
*/
#define var_SetVoid(a,b) __var_SetVoid( VLC_OBJECT(a),b) #define var_SetVoid(a,b) __var_SetVoid( VLC_OBJECT(a),b)
/**
* @}
*/
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* variables.c: routines for object variables handling * variables.c: routines for object variables handling
***************************************************************************** *****************************************************************************
* Copyright (C) 2002 VideoLAN * Copyright (C) 2002 VideoLAN
* $Id: variables.c,v 1.30 2003/09/07 22:51:11 fenrir Exp $ * $Id: variables.c,v 1.31 2003/09/29 15:45:19 sigmunau Exp $
* *
* Authors: Samuel Hocevar <sam@zoy.org> * Authors: Samuel Hocevar <sam@zoy.org>
* *
...@@ -132,13 +132,18 @@ static void CheckValue ( variable_t *, vlc_value_t * ); ...@@ -132,13 +132,18 @@ static void CheckValue ( variable_t *, vlc_value_t * );
static int InheritValue( vlc_object_t *, const char *, vlc_value_t *, static int InheritValue( vlc_object_t *, const char *, vlc_value_t *,
int ); int );
/***************************************************************************** /**
* var_Create: initialize a vlc variable * Initialize a vlc variable
***************************************************************************** *
* We hash the given string and insert it into the sorted list. The insertion * We hash the given string and insert it into the sorted list. The insertion
* may require slow memory copies, but think about what we gain in the log(n) * may require slow memory copies, but think about what we gain in the log(n)
* lookup phase when setting/getting the variable value! * lookup phase when setting/getting the variable value!
*****************************************************************************/ *
* \param p_this The object in which to create the variable
* \param psz_name The name of the variable
* \param i_type The variables type. Must be one of \ref var_type combined with
* zero or more \ref var_flags
*/
int __var_Create( vlc_object_t *p_this, const char *psz_name, int i_type ) int __var_Create( vlc_object_t *p_this, const char *psz_name, int i_type )
{ {
int i_new; int i_new;
...@@ -278,12 +283,15 @@ int __var_Create( vlc_object_t *p_this, const char *psz_name, int i_type ) ...@@ -278,12 +283,15 @@ int __var_Create( vlc_object_t *p_this, const char *psz_name, int i_type )
return VLC_SUCCESS; return VLC_SUCCESS;
} }
/***************************************************************************** /**
* var_Destroy: destroy a vlc variable * Destroy a vlc variable
***************************************************************************** *
* Look for the variable and destroy it if it is found. As in var_Create we * Look for the variable and destroy it if it is found. As in var_Create we
* do a call to memmove() but we have performance counterparts elsewhere. * do a call to memmove() but we have performance counterparts elsewhere.
*****************************************************************************/ *
* \param p_this The object that holds the variable
* \param psz_name The name of the variable
*/
int __var_Destroy( vlc_object_t *p_this, const char *psz_name ) int __var_Destroy( vlc_object_t *p_this, const char *psz_name )
{ {
int i_var, i; int i_var, i;
...@@ -349,11 +357,15 @@ int __var_Destroy( vlc_object_t *p_this, const char *psz_name ) ...@@ -349,11 +357,15 @@ int __var_Destroy( vlc_object_t *p_this, const char *psz_name )
return VLC_SUCCESS; return VLC_SUCCESS;
} }
/***************************************************************************** /**
* var_Change: perform an action on a variable * Perform an action on a variable
*****************************************************************************
* *
*****************************************************************************/ * \param p_this The object that holds the variable
* \param psz_name The name of the variable
* \param i_action The action to perform. Must be one of \ref var_action
* \param p_val First action parameter
* \param p_val2 Second action parameter
*/
int __var_Change( vlc_object_t *p_this, const char *psz_name, int __var_Change( vlc_object_t *p_this, const char *psz_name,
int i_action, vlc_value_t *p_val, vlc_value_t *p_val2 ) int i_action, vlc_value_t *p_val, vlc_value_t *p_val2 )
{ {
...@@ -600,12 +612,13 @@ int __var_Change( vlc_object_t *p_this, const char *psz_name, ...@@ -600,12 +612,13 @@ int __var_Change( vlc_object_t *p_this, const char *psz_name,
return VLC_SUCCESS; return VLC_SUCCESS;
} }
/***************************************************************************** /**
* var_Type: request a variable's type * Request a variable's type
***************************************************************************** *
* This function returns the variable type if it exists, or 0 if the * \return The variable type if it exists, or 0 if the
* variable could not be found. * variable could not be found.
*****************************************************************************/ * \see \ref var_type
*/
int __var_Type( vlc_object_t *p_this, const char *psz_name ) int __var_Type( vlc_object_t *p_this, const char *psz_name )
{ {
int i_var, i_type; int i_var, i_type;
...@@ -627,11 +640,13 @@ int __var_Type( vlc_object_t *p_this, const char *psz_name ) ...@@ -627,11 +640,13 @@ int __var_Type( vlc_object_t *p_this, const char *psz_name )
return i_type; return i_type;
} }
/***************************************************************************** /**
* var_Set: set a variable's value * Set a variable's value
*****************************************************************************
* *
*****************************************************************************/ * \param p_this The object that hold the variable
* \param psz_name The name of the variable
* \param val the value to set
*/
int __var_Set( vlc_object_t *p_this, const char *psz_name, vlc_value_t val ) int __var_Set( vlc_object_t *p_this, const char *psz_name, vlc_value_t val )
{ {
int i_var; int i_var;
...@@ -701,11 +716,14 @@ int __var_Set( vlc_object_t *p_this, const char *psz_name, vlc_value_t val ) ...@@ -701,11 +716,14 @@ int __var_Set( vlc_object_t *p_this, const char *psz_name, vlc_value_t val )
return VLC_SUCCESS; return VLC_SUCCESS;
} }
/***************************************************************************** /**
* var_Get: get a variable's value * Get a variable's value
*****************************************************************************
* *
*****************************************************************************/ * \param p_this The object that holds the variable
* \param psz_name The name of the variable
* \param p_val Pointer to a vlc_value_t that will hold the variable's value
* after the function is finished
*/
int __var_Get( vlc_object_t *p_this, const char *psz_name, vlc_value_t *p_val ) int __var_Get( vlc_object_t *p_this, const char *psz_name, vlc_value_t *p_val )
{ {
int i_var; int i_var;
...@@ -734,13 +752,22 @@ int __var_Get( vlc_object_t *p_this, const char *psz_name, vlc_value_t *p_val ) ...@@ -734,13 +752,22 @@ int __var_Get( vlc_object_t *p_this, const char *psz_name, vlc_value_t *p_val )
return VLC_SUCCESS; return VLC_SUCCESS;
} }
/***************************************************************************** /**
* var_AddCallback: register a callback in a variable * Register a callback in a variable
***************************************************************************** *
* We store a function pointer pf_callback that will be called upon variable * We store a function pointer that will be called upon variable
* modification. p_data is a generic pointer that will be passed as additional * modification.
* argument to the callback function. *
*****************************************************************************/ * \param p_this The object that holds the variable
* \param psz_name The name of the variable
* \param pf_callback The function pointer
* \param p_data A generic pointer that will be passed as the last
* argument to the callback function.
*
* \warning The callback function is run in the thread that calls var_Set on
* the variable. Use proper locking. This thread may not have much
* time to spare, so keep callback functions short.
*/
int __var_AddCallback( vlc_object_t *p_this, const char *psz_name, int __var_AddCallback( vlc_object_t *p_this, const char *psz_name,
vlc_callback_t pf_callback, void *p_data ) vlc_callback_t pf_callback, void *p_data )
{ {
...@@ -772,12 +799,12 @@ int __var_AddCallback( vlc_object_t *p_this, const char *psz_name, ...@@ -772,12 +799,12 @@ int __var_AddCallback( vlc_object_t *p_this, const char *psz_name,
return VLC_SUCCESS; return VLC_SUCCESS;
} }
/***************************************************************************** /**
* var_DelCallback: remove a callback from a variable * Remove a callback from a variable
***************************************************************************** *
* pf_callback and p_data have to be given again, because different objects * pf_callback and p_data have to be given again, because different objects
* might have registered the same callback function. * might have registered the same callback function.
*****************************************************************************/ */
int __var_DelCallback( vlc_object_t *p_this, const char *psz_name, int __var_DelCallback( vlc_object_t *p_this, const char *psz_name,
vlc_callback_t pf_callback, void *p_data ) vlc_callback_t pf_callback, void *p_data )
{ {
......
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