variables.c
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:40k
源码类别:

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * variables.c: routines for object variables handling
  3.  *****************************************************************************
  4.  * Copyright (C) 2002-2004 VideoLAN
  5.  * $Id: variables.c 9119 2004-11-02 23:40:20Z gbazin $
  6.  *
  7.  * Authors: Samuel Hocevar <sam@zoy.org>
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  22.  *****************************************************************************/
  23. /*****************************************************************************
  24.  * Preamble
  25.  *****************************************************************************/
  26. #include <vlc/vlc.h>
  27. #ifdef HAVE_STDLIB_H
  28. #   include <stdlib.h>                                          /* realloc() */
  29. #endif
  30. /*****************************************************************************
  31.  * Private types
  32.  *****************************************************************************/
  33. struct callback_entry_t
  34. {
  35.     vlc_callback_t pf_callback;
  36.     void *         p_data;
  37. };
  38. /*****************************************************************************
  39.  * Local comparison functions, returns 0 if v == w, < 0 if v < w, > 0 if v > w
  40.  *****************************************************************************/
  41. static int CmpBool( vlc_value_t v, vlc_value_t w ) { return v.b_bool ? w.b_bool ? 0 : 1 : w.b_bool ? -1 : 0; }
  42. static int CmpInt( vlc_value_t v, vlc_value_t w ) { return v.i_int == w.i_int ? 0 : v.i_int > w.i_int ? 1 : -1; }
  43. static int CmpTime( vlc_value_t v, vlc_value_t w )
  44. {
  45.     return v.i_time == w.i_time ? 0 : v.i_time > w.i_time ? 1 : -1;
  46. }
  47. static int CmpString( vlc_value_t v, vlc_value_t w ) { return strcmp( v.psz_string, w.psz_string ); }
  48. static int CmpFloat( vlc_value_t v, vlc_value_t w ) { return v.f_float == w.f_float ? 0 : v.f_float > w.f_float ? 1 : -1; }
  49. static int CmpAddress( vlc_value_t v, vlc_value_t w ) { return v.p_address == w.p_address ? 0 : v.p_address > w.p_address ? 1 : -1; }
  50. /*****************************************************************************
  51.  * Local duplication functions, and local deallocation functions
  52.  *****************************************************************************/
  53. static void DupDummy( vlc_value_t *p_val ) { (void)p_val; /* unused */ }
  54. static void DupString( vlc_value_t *p_val ) { p_val->psz_string = strdup( p_val->psz_string ); }
  55. static void DupList( vlc_value_t *p_val )
  56. {
  57.     int i;
  58.     vlc_list_t *p_list = malloc( sizeof(vlc_list_t) );
  59.     p_list->i_count = p_val->p_list->i_count;
  60.     if( p_val->p_list->i_count )
  61.     {
  62.         p_list->p_values = malloc( p_list->i_count * sizeof(vlc_value_t) );
  63.         p_list->pi_types = malloc( p_list->i_count * sizeof(int) );
  64.     }
  65.     else
  66.     {
  67.         p_list->p_values = NULL;
  68.         p_list->pi_types = NULL;
  69.     }
  70.     for( i = 0; i < p_list->i_count; i++ )
  71.     {
  72.         p_list->p_values[i] = p_val->p_list->p_values[i];
  73.         p_list->pi_types[i] = p_val->p_list->pi_types[i];
  74.         switch( p_val->p_list->pi_types[i] & VLC_VAR_TYPE )
  75.         {
  76.         case VLC_VAR_STRING:
  77.             DupString( &p_list->p_values[i] );
  78.             break;
  79.         default:
  80.             break;
  81.         }
  82.     }
  83.     p_val->p_list = p_list;
  84. }
  85. static void FreeDummy( vlc_value_t *p_val ) { (void)p_val; /* unused */ }
  86. static void FreeString( vlc_value_t *p_val ) { free( p_val->psz_string ); }
  87. static void FreeMutex( vlc_value_t *p_val ) { vlc_mutex_destroy( (vlc_mutex_t*)p_val->p_address ); free( p_val->p_address ); }
  88. static void FreeList( vlc_value_t *p_val )
  89. {
  90.     int i;
  91.     for( i = 0; i < p_val->p_list->i_count; i++ )
  92.     {
  93.         switch( p_val->p_list->pi_types[i] & VLC_VAR_TYPE )
  94.         {
  95.         case VLC_VAR_STRING:
  96.             FreeString( &p_val->p_list->p_values[i] );
  97.             break;
  98.         case VLC_VAR_MUTEX:
  99.             FreeMutex( &p_val->p_list->p_values[i] );
  100.             break;
  101.         default:
  102.             break;
  103.         }
  104.     }
  105.     if( p_val->p_list->i_count )
  106.     {
  107.         free( p_val->p_list->p_values );
  108.         free( p_val->p_list->pi_types );
  109.     }
  110.     free( p_val->p_list );
  111. }
  112. /*****************************************************************************
  113.  * Local prototypes
  114.  *****************************************************************************/
  115. static int      GetUnused   ( vlc_object_t *, const char * );
  116. static uint32_t HashString  ( const char * );
  117. static int      Insert      ( variable_t *, int, const char * );
  118. static int      InsertInner ( variable_t *, int, uint32_t );
  119. static int      Lookup      ( variable_t *, int, const char * );
  120. static int      LookupInner ( variable_t *, int, uint32_t );
  121. static void     CheckValue  ( variable_t *, vlc_value_t * );
  122. static int      InheritValue( vlc_object_t *, const char *, vlc_value_t *,
  123.                               int );
  124. /**
  125.  * Initialize a vlc variable
  126.  *
  127.  * We hash the given string and insert it into the sorted list. The insertion
  128.  * may require slow memory copies, but think about what we gain in the log(n)
  129.  * lookup phase when setting/getting the variable value!
  130.  *
  131.  * param p_this The object in which to create the variable
  132.  * param psz_name The name of the variable
  133.  * param i_type The variables type. Must be one of ref var_type combined with
  134.  *               zero or more ref var_flags
  135.  */
  136. int __var_Create( vlc_object_t *p_this, const char *psz_name, int i_type )
  137. {
  138.     int i_new;
  139.     variable_t *p_var;
  140.     static vlc_list_t dummy_null_list = {0, NULL, NULL};
  141.     vlc_mutex_lock( &p_this->var_lock );
  142.     /* FIXME: if the variable already exists, we don't duplicate it. But we
  143.      * duplicate the lookups. It's not that serious, but if anyone finds some
  144.      * time to rework Insert() so that only one lookup has to be done, feel
  145.      * free to do so. */
  146.     i_new = Lookup( p_this->p_vars, p_this->i_vars, psz_name );
  147.     if( i_new >= 0 )
  148.     {
  149.         /* If the types differ, variable creation failed. */
  150.         if( (i_type & ~VLC_VAR_DOINHERIT) != p_this->p_vars[i_new].i_type )
  151.         {
  152.             vlc_mutex_unlock( &p_this->var_lock );
  153.             return VLC_EBADVAR;
  154.         }
  155.         p_this->p_vars[i_new].i_usage++;
  156.         vlc_mutex_unlock( &p_this->var_lock );
  157.         return VLC_SUCCESS;
  158.     }
  159.     i_new = Insert( p_this->p_vars, p_this->i_vars, psz_name );
  160.     if( (p_this->i_vars & 15) == 15 )
  161.     {
  162.         p_this->p_vars = realloc( p_this->p_vars,
  163.                                   (p_this->i_vars+17) * sizeof(variable_t) );
  164.     }
  165.     memmove( p_this->p_vars + i_new + 1,
  166.              p_this->p_vars + i_new,
  167.              (p_this->i_vars - i_new) * sizeof(variable_t) );
  168.     p_this->i_vars++;
  169.     p_var = &p_this->p_vars[i_new];
  170.     p_var->i_hash = HashString( psz_name );
  171.     p_var->psz_name = strdup( psz_name );
  172.     p_var->psz_text = NULL;
  173.     p_var->i_type = i_type & ~VLC_VAR_DOINHERIT;
  174.     memset( &p_var->val, 0, sizeof(vlc_value_t) );
  175.     p_var->pf_dup = DupDummy;
  176.     p_var->pf_free = FreeDummy;
  177.     p_var->i_usage = 1;
  178.     p_var->i_default = -1;
  179.     p_var->choices.i_count = 0;
  180.     p_var->choices.p_values = NULL;
  181.     p_var->choices_text.i_count = 0;
  182.     p_var->choices_text.p_values = NULL;
  183.     p_var->b_incallback = VLC_FALSE;
  184.     p_var->i_entries = 0;
  185.     p_var->p_entries = NULL;
  186.     /* Always initialize the variable, even if it is a list variable; this
  187.      * will lead to errors if the variable is not initialized, but it will
  188.      * not cause crashes in the variable handling. */
  189.     switch( i_type & VLC_VAR_TYPE )
  190.     {
  191.         case VLC_VAR_BOOL:
  192.             p_var->pf_cmp = CmpBool;
  193.             p_var->val.b_bool = VLC_FALSE;
  194.             break;
  195.         case VLC_VAR_INTEGER:
  196.         case VLC_VAR_HOTKEY:
  197.             p_var->pf_cmp = CmpInt;
  198.             p_var->val.i_int = 0;
  199.             break;
  200.         case VLC_VAR_STRING:
  201.         case VLC_VAR_MODULE:
  202.         case VLC_VAR_FILE:
  203.         case VLC_VAR_DIRECTORY:
  204.         case VLC_VAR_VARIABLE:
  205.             p_var->pf_cmp = CmpString;
  206.             p_var->pf_dup = DupString;
  207.             p_var->pf_free = FreeString;
  208.             p_var->val.psz_string = "";
  209.             break;
  210.         case VLC_VAR_FLOAT:
  211.             p_var->pf_cmp = CmpFloat;
  212.             p_var->val.f_float = 0.0;
  213.             break;
  214.         case VLC_VAR_TIME:
  215.             p_var->pf_cmp = CmpTime;
  216.             p_var->val.i_time = 0;
  217.             break;
  218.         case VLC_VAR_ADDRESS:
  219.             p_var->pf_cmp = CmpAddress;
  220.             p_var->val.p_address = NULL;
  221.             break;
  222.         case VLC_VAR_MUTEX:
  223.             p_var->pf_cmp = CmpAddress;
  224.             p_var->pf_free = FreeMutex;
  225.             p_var->val.p_address = malloc( sizeof(vlc_mutex_t) );
  226.             vlc_mutex_init( p_this, (vlc_mutex_t*)p_var->val.p_address );
  227.             break;
  228.         case VLC_VAR_LIST:
  229.             p_var->pf_cmp = CmpAddress;
  230.             p_var->pf_dup = DupList;
  231.             p_var->pf_free = FreeList;
  232.             p_var->val.p_list = &dummy_null_list;
  233.             break;
  234.     }
  235.     /* Duplicate the default data we stored. */
  236.     p_var->pf_dup( &p_var->val );
  237.     if( i_type & VLC_VAR_DOINHERIT )
  238.     {
  239.         vlc_value_t val;
  240.         if( InheritValue( p_this, psz_name, &val, p_var->i_type )
  241.             == VLC_SUCCESS );
  242.         {
  243.             /* Free data if needed */
  244.             p_var->pf_free( &p_var->val );
  245.             /* Set the variable */
  246.             p_var->val = val;
  247.             if( i_type & VLC_VAR_HASCHOICE )
  248.             {
  249.                 /* We must add the inherited value to our choice list */
  250.                 p_var->i_default = 0;
  251.                 INSERT_ELEM( p_var->choices.p_values, p_var->choices.i_count,
  252.                              0, val );
  253.                 INSERT_ELEM( p_var->choices_text.p_values,
  254.                              p_var->choices_text.i_count, 0, val );
  255.                 p_var->pf_dup( &p_var->choices.p_values[0] );
  256.                 p_var->choices_text.p_values[0].psz_string = NULL;
  257.             }
  258.         }
  259.     }
  260.     vlc_mutex_unlock( &p_this->var_lock );
  261.     return VLC_SUCCESS;
  262. }
  263. /**
  264.  * Destroy a vlc variable
  265.  *
  266.  * Look for the variable and destroy it if it is found. As in var_Create we
  267.  * do a call to memmove() but we have performance counterparts elsewhere.
  268.  *
  269.  * param p_this The object that holds the variable
  270.  * param psz_name The name of the variable
  271.  */
  272. int __var_Destroy( vlc_object_t *p_this, const char *psz_name )
  273. {
  274.     int i_var, i;
  275.     variable_t *p_var;
  276.     vlc_mutex_lock( &p_this->var_lock );
  277.     i_var = GetUnused( p_this, psz_name );
  278.     if( i_var < 0 )
  279.     {
  280.         vlc_mutex_unlock( &p_this->var_lock );
  281.         return i_var;
  282.     }
  283.     p_var = &p_this->p_vars[i_var];
  284.     if( p_var->i_usage > 1 )
  285.     {
  286.         p_var->i_usage--;
  287.         vlc_mutex_unlock( &p_this->var_lock );
  288.         return VLC_SUCCESS;
  289.     }
  290.     /* Free value if needed */
  291.     p_var->pf_free( &p_var->val );
  292.     /* Free choice list if needed */
  293.     if( p_var->choices.i_count )
  294.     {
  295.         for( i = 0 ; i < p_var->choices.i_count ; i++ )
  296.         {
  297.             p_var->pf_free( &p_var->choices.p_values[i] );
  298.             if( p_var->choices_text.p_values[i].psz_string )
  299.                 free( p_var->choices_text.p_values[i].psz_string );
  300.         }
  301.         free( p_var->choices.p_values );
  302.         free( p_var->choices_text.p_values );
  303.     }
  304.     /* Free callbacks if needed */
  305.     if( p_var->p_entries )
  306.     {
  307.         free( p_var->p_entries );
  308.     }
  309.     free( p_var->psz_name );
  310.     if( p_var->psz_text ) free( p_var->psz_text );
  311.     memmove( p_this->p_vars + i_var,
  312.              p_this->p_vars + i_var + 1,
  313.              (p_this->i_vars - i_var - 1) * sizeof(variable_t) );
  314.     if( (p_this->i_vars & 15) == 0 )
  315.     {
  316.         p_this->p_vars = realloc( p_this->p_vars,
  317.                           (p_this->i_vars) * sizeof( variable_t ) );
  318.     }
  319.     p_this->i_vars--;
  320.     vlc_mutex_unlock( &p_this->var_lock );
  321.     return VLC_SUCCESS;
  322. }
  323. /**
  324.  * Perform an action on a variable
  325.  *
  326.  * param p_this The object that holds the variable
  327.  * param psz_name The name of the variable
  328.  * param i_action The action to perform. Must be one of ref var_action
  329.  * param p_val First action parameter
  330.  * param p_val2 Second action parameter
  331.  */
  332. int __var_Change( vlc_object_t *p_this, const char *psz_name,
  333.                   int i_action, vlc_value_t *p_val, vlc_value_t *p_val2 )
  334. {
  335.     int i_var, i;
  336.     variable_t *p_var;
  337.     vlc_value_t oldval;
  338.     vlc_mutex_lock( &p_this->var_lock );
  339.     i_var = Lookup( p_this->p_vars, p_this->i_vars, psz_name );
  340.     if( i_var < 0 )
  341.     {
  342.         vlc_mutex_unlock( &p_this->var_lock );
  343.         return VLC_ENOVAR;
  344.     }
  345.     p_var = &p_this->p_vars[i_var];
  346.     switch( i_action )
  347.     {
  348.         case VLC_VAR_SETMIN:
  349.             if( p_var->i_type & VLC_VAR_HASMIN )
  350.             {
  351.                 p_var->pf_free( &p_var->min );
  352.             }
  353.             p_var->i_type |= VLC_VAR_HASMIN;
  354.             p_var->min = *p_val;
  355.             p_var->pf_dup( &p_var->min );
  356.             CheckValue( p_var, &p_var->val );
  357.             break;
  358.         case VLC_VAR_SETMAX:
  359.             if( p_var->i_type & VLC_VAR_HASMAX )
  360.             {
  361.                 p_var->pf_free( &p_var->max );
  362.             }
  363.             p_var->i_type |= VLC_VAR_HASMAX;
  364.             p_var->max = *p_val;
  365.             p_var->pf_dup( &p_var->max );
  366.             CheckValue( p_var, &p_var->val );
  367.             break;
  368.         case VLC_VAR_SETSTEP:
  369.             if( p_var->i_type & VLC_VAR_HASSTEP )
  370.             {
  371.                 p_var->pf_free( &p_var->step );
  372.             }
  373.             p_var->i_type |= VLC_VAR_HASSTEP;
  374.             p_var->step = *p_val;
  375.             p_var->pf_dup( &p_var->step );
  376.             CheckValue( p_var, &p_var->val );
  377.             break;
  378.         case VLC_VAR_ADDCHOICE:
  379.             /* FIXME: the list is sorted, dude. Use something cleverer. */
  380.             for( i = p_var->choices.i_count ; i-- ; )
  381.             {
  382.                 if( p_var->pf_cmp( p_var->choices.p_values[i], *p_val ) < 0 )
  383.                 {
  384.                     break;
  385.                 }
  386.             }
  387.             /* The new place is i+1 */
  388.             i++;
  389.             if( p_var->i_default >= i )
  390.             {
  391.                 p_var->i_default++;
  392.             }
  393.             INSERT_ELEM( p_var->choices.p_values, p_var->choices.i_count,
  394.                          i, *p_val );
  395.             INSERT_ELEM( p_var->choices_text.p_values,
  396.                          p_var->choices_text.i_count, i, *p_val );
  397.             p_var->pf_dup( &p_var->choices.p_values[i] );
  398.             p_var->choices_text.p_values[i].psz_string =
  399.                 ( p_val2 && p_val2->psz_string ) ?
  400.                 strdup( p_val2->psz_string ) : NULL;
  401.             CheckValue( p_var, &p_var->val );
  402.             break;
  403.         case VLC_VAR_DELCHOICE:
  404.             /* FIXME: the list is sorted, dude. Use something cleverer. */
  405.             for( i = 0 ; i < p_var->choices.i_count ; i++ )
  406.             {
  407.                 if( p_var->pf_cmp( p_var->choices.p_values[i], *p_val ) == 0 )
  408.                 {
  409.                     break;
  410.                 }
  411.             }
  412.             if( i == p_var->choices.i_count )
  413.             {
  414.                 /* Not found */
  415.                 vlc_mutex_unlock( &p_this->var_lock );
  416.                 return VLC_EGENERIC;
  417.             }
  418.             if( p_var->i_default > i )
  419.             {
  420.                 p_var->i_default--;
  421.             }
  422.             else if( p_var->i_default == i )
  423.             {
  424.                 p_var->i_default = -1;
  425.             }
  426.             p_var->pf_free( &p_var->choices.p_values[i] );
  427.             if( p_var->choices_text.p_values[i].psz_string )
  428.                 free( p_var->choices_text.p_values[i].psz_string );
  429.             REMOVE_ELEM( p_var->choices.p_values, p_var->choices.i_count, i );
  430.             REMOVE_ELEM( p_var->choices_text.p_values,
  431.                          p_var->choices_text.i_count, i );
  432.             CheckValue( p_var, &p_var->val );
  433.             break;
  434.         case VLC_VAR_CHOICESCOUNT:
  435.             p_val->i_int = p_var->choices.i_count;
  436.             break;
  437.         case VLC_VAR_CLEARCHOICES:
  438.             for( i = 0 ; i < p_var->choices.i_count ; i++ )
  439.             {
  440.                 p_var->pf_free( &p_var->choices.p_values[i] );
  441.             }
  442.             for( i = 0 ; i < p_var->choices_text.i_count ; i++ )
  443.             {
  444.                 if( p_var->choices_text.p_values[i].psz_string )
  445.                     free( p_var->choices_text.p_values[i].psz_string );
  446.             }
  447.             if( p_var->choices.i_count ) free( p_var->choices.p_values );
  448.             if( p_var->choices_text.i_count ) free( p_var->choices_text.p_values );
  449.             p_var->choices.i_count = 0;
  450.             p_var->choices.p_values = NULL;
  451.             p_var->choices_text.i_count = 0;
  452.             p_var->choices_text.p_values = NULL;
  453.             p_var->i_default = -1;
  454.             break;
  455.         case VLC_VAR_SETDEFAULT:
  456.             /* FIXME: the list is sorted, dude. Use something cleverer. */
  457.             for( i = 0 ; i < p_var->choices.i_count ; i++ )
  458.             {
  459.                 if( p_var->pf_cmp( p_var->choices.p_values[i], *p_val ) == 0 )
  460.                 {
  461.                     break;
  462.                 }
  463.             }
  464.             if( i == p_var->choices.i_count )
  465.             {
  466.                 /* Not found */
  467.                 break;
  468.             }
  469.             p_var->i_default = i;
  470.             CheckValue( p_var, &p_var->val );
  471.             break;
  472.         case VLC_VAR_SETVALUE:
  473.             /* Duplicate data if needed */
  474.             p_var->pf_dup( p_val );
  475.             /* Backup needed stuff */
  476.             oldval = p_var->val;
  477.             /* Check boundaries and list */
  478.             CheckValue( p_var, p_val );
  479.             /* Set the variable */
  480.             p_var->val = *p_val;
  481.             /* Free data if needed */
  482.             p_var->pf_free( &oldval );
  483.             break;
  484.         case VLC_VAR_GETCHOICES:
  485.         case VLC_VAR_GETLIST:
  486.             p_val->p_list = malloc( sizeof(vlc_list_t) );
  487.             if( p_val2 ) p_val2->p_list = malloc( sizeof(vlc_list_t) );
  488.             if( p_var->choices.i_count )
  489.             {
  490.                 p_val->p_list->p_values = malloc( p_var->choices.i_count
  491.                                                   * sizeof(vlc_value_t) );
  492.                 p_val->p_list->pi_types = malloc( p_var->choices.i_count
  493.                                                   * sizeof(int) );
  494.                 if( p_val2 )
  495.                 {
  496.                     p_val2->p_list->p_values =
  497.                         malloc( p_var->choices.i_count * sizeof(vlc_value_t) );
  498.                     p_val2->p_list->pi_types =
  499.                         malloc( p_var->choices.i_count * sizeof(int) );
  500.                 }
  501.             }
  502.             p_val->p_list->i_count = p_var->choices.i_count;
  503.             if( p_val2 ) p_val2->p_list->i_count = p_var->choices.i_count;
  504.             for( i = 0 ; i < p_var->choices.i_count ; i++ )
  505.             {
  506.                 p_val->p_list->p_values[i] = p_var->choices.p_values[i];
  507.                 p_val->p_list->pi_types[i] = p_var->i_type;
  508.                 p_var->pf_dup( &p_val->p_list->p_values[i] );
  509.                 if( p_val2 )
  510.                 {
  511.                     p_val2->p_list->p_values[i].psz_string =
  512.                         p_var->choices_text.p_values[i].psz_string ?
  513.                     strdup(p_var->choices_text.p_values[i].psz_string) : NULL;
  514.                     p_val2->p_list->pi_types[i] = VLC_VAR_STRING;
  515.                 }
  516.             }
  517.             break;
  518.         case VLC_VAR_FREELIST:
  519.             FreeList( p_val );
  520.             if( p_val2 && p_val2->p_list )
  521.             {
  522.                 for( i = 0; i < p_val2->p_list->i_count; i++ )
  523.                     if( p_val2->p_list->p_values[i].psz_string )
  524.                         free( p_val2->p_list->p_values[i].psz_string );
  525.                 if( p_val2->p_list->i_count )
  526.                 {
  527.                     free( p_val2->p_list->p_values );
  528.                     free( p_val2->p_list->pi_types );
  529.                 }
  530.                 free( p_val2->p_list );
  531.             }
  532.             break;
  533.         case VLC_VAR_SETTEXT:
  534.             if( p_var->psz_text ) free( p_var->psz_text );
  535.             if( p_val && p_val->psz_string )
  536.                 p_var->psz_text = strdup( p_val->psz_string );
  537.             break;
  538.         case VLC_VAR_GETTEXT:
  539.             p_val->psz_string = NULL;
  540.             if( p_var->psz_text )
  541.             {
  542.                 p_val->psz_string = strdup( p_var->psz_text );
  543.             }
  544.             break;
  545.         case VLC_VAR_INHERITVALUE:
  546.             {
  547.                 vlc_value_t val;
  548.                 if( InheritValue( p_this, psz_name, &val, p_var->i_type )
  549.                     == VLC_SUCCESS );
  550.                 {
  551.                     /* Duplicate already done */
  552.                     /* Backup needed stuff */
  553.                     oldval = p_var->val;
  554.                     /* Check boundaries and list */
  555.                     CheckValue( p_var, &val );
  556.                     /* Set the variable */
  557.                     p_var->val = val;
  558.                     /* Free data if needed */
  559.                     p_var->pf_free( &oldval );
  560.                 }
  561.                 if( p_val )
  562.                 {
  563.                     *p_val = p_var->val;
  564.                     p_var->pf_dup( p_val );
  565.                 }
  566.             }
  567.             break;
  568.         case VLC_VAR_TRIGGER_CALLBACKS:
  569.             {
  570.                 /* Deal with callbacks. Tell we're in a callback, release the lock,
  571.                  * call stored functions, retake the lock. */
  572.                 if( p_var->i_entries )
  573.                 {
  574.                     int i_var;
  575.                     int i_entries = p_var->i_entries;
  576.                     callback_entry_t *p_entries = p_var->p_entries;
  577.                     p_var->b_incallback = VLC_TRUE;
  578.                     vlc_mutex_unlock( &p_this->var_lock );
  579.                     /* The real calls */
  580.                     for( ; i_entries-- ; )
  581.                     {
  582.                         p_entries[i_entries].pf_callback( p_this, psz_name, p_var->val, p_var->val,
  583.                                                           p_entries[i_entries].p_data );
  584.                     }
  585.                     vlc_mutex_lock( &p_this->var_lock );
  586.                     i_var = Lookup( p_this->p_vars, p_this->i_vars, psz_name );
  587.                     if( i_var < 0 )
  588.                     {
  589.                         msg_Err( p_this, "variable %s has disappeared", psz_name );
  590.                         vlc_mutex_unlock( &p_this->var_lock );
  591.                         return VLC_ENOVAR;
  592.                     }
  593.                     p_var = &p_this->p_vars[i_var];
  594.                     p_var->b_incallback = VLC_FALSE;
  595.                 }
  596.             }
  597.             break;
  598.         default:
  599.             break;
  600.     }
  601.     vlc_mutex_unlock( &p_this->var_lock );
  602.     return VLC_SUCCESS;
  603. }
  604. /**
  605.  * Request a variable's type
  606.  *
  607.  * return The variable type if it exists, or 0 if the
  608.  * variable could not be found.
  609.  * see ref var_type
  610.  */
  611. int __var_Type( vlc_object_t *p_this, const char *psz_name )
  612. {
  613.     int i_var, i_type;
  614.     vlc_mutex_lock( &p_this->var_lock );
  615.     i_var = Lookup( p_this->p_vars, p_this->i_vars, psz_name );
  616.     if( i_var < 0 )
  617.     {
  618.         vlc_mutex_unlock( &p_this->var_lock );
  619.         return 0;
  620.     }
  621.     i_type = p_this->p_vars[i_var].i_type;
  622.     vlc_mutex_unlock( &p_this->var_lock );
  623.     return i_type;
  624. }
  625. /**
  626.  * Set a variable's value
  627.  *
  628.  * param p_this The object that hold the variable
  629.  * param psz_name The name of the variable
  630.  * param val the value to set
  631.  */
  632. int __var_Set( vlc_object_t *p_this, const char *psz_name, vlc_value_t val )
  633. {
  634.     int i_var;
  635.     variable_t *p_var;
  636.     vlc_value_t oldval;
  637.     vlc_mutex_lock( &p_this->var_lock );
  638.     i_var = GetUnused( p_this, psz_name );
  639.     if( i_var < 0 )
  640.     {
  641.         vlc_mutex_unlock( &p_this->var_lock );
  642.         return i_var;
  643.     }
  644.     p_var = &p_this->p_vars[i_var];
  645.     /* Duplicate data if needed */
  646.     p_var->pf_dup( &val );
  647.     /* Backup needed stuff */
  648.     oldval = p_var->val;
  649.     /* Check boundaries and list */
  650.     CheckValue( p_var, &val );
  651.     /* Set the variable */
  652.     p_var->val = val;
  653.     /* Deal with callbacks. Tell we're in a callback, release the lock,
  654.      * call stored functions, retake the lock. */
  655.     if( p_var->i_entries )
  656.     {
  657.         int i_var;
  658.         int i_entries = p_var->i_entries;
  659.         callback_entry_t *p_entries = p_var->p_entries;
  660.         p_var->b_incallback = VLC_TRUE;
  661.         vlc_mutex_unlock( &p_this->var_lock );
  662.         /* The real calls */
  663.         for( ; i_entries-- ; )
  664.         {
  665.             p_entries[i_entries].pf_callback( p_this, psz_name, oldval, val,
  666.                                               p_entries[i_entries].p_data );
  667.         }
  668.         vlc_mutex_lock( &p_this->var_lock );
  669.         i_var = Lookup( p_this->p_vars, p_this->i_vars, psz_name );
  670.         if( i_var < 0 )
  671.         {
  672.             msg_Err( p_this, "variable %s has disappeared", psz_name );
  673.             vlc_mutex_unlock( &p_this->var_lock );
  674.             return VLC_ENOVAR;
  675.         }
  676.         p_var = &p_this->p_vars[i_var];
  677.         p_var->b_incallback = VLC_FALSE;
  678.     }
  679.     /* Free data if needed */
  680.     p_var->pf_free( &oldval );
  681.     vlc_mutex_unlock( &p_this->var_lock );
  682.     return VLC_SUCCESS;
  683. }
  684. /**
  685.  * Get a variable's value
  686.  *
  687.  * param p_this The object that holds the variable
  688.  * param psz_name The name of the variable
  689.  * param p_val Pointer to a vlc_value_t that will hold the variable's value
  690.  *              after the function is finished
  691.  */
  692. int __var_Get( vlc_object_t *p_this, const char *psz_name, vlc_value_t *p_val )
  693. {
  694.     int i_var;
  695.     variable_t *p_var;
  696.     vlc_mutex_lock( &p_this->var_lock );
  697.     i_var = Lookup( p_this->p_vars, p_this->i_vars, psz_name );
  698.     if( i_var < 0 )
  699.     {
  700.         vlc_mutex_unlock( &p_this->var_lock );
  701.         return VLC_ENOVAR;
  702.     }
  703.     p_var = &p_this->p_vars[i_var];
  704.     /* Really get the variable */
  705.     *p_val = p_var->val;
  706.     /* Duplicate value if needed */
  707.     p_var->pf_dup( p_val );
  708.     vlc_mutex_unlock( &p_this->var_lock );
  709.     return VLC_SUCCESS;
  710. }
  711. /**
  712.  * Register a callback in a variable
  713.  *
  714.  * We store a function pointer that will be called upon variable
  715.  * modification.
  716.  *
  717.  * param p_this The object that holds the variable
  718.  * param psz_name The name of the variable
  719.  * param pf_callback The function pointer
  720.  * param p_data A generic pointer that will be passed as the last
  721.  *               argument to the callback function.
  722.  *
  723.  * warning The callback function is run in the thread that calls var_Set on
  724.  *          the variable. Use proper locking. This thread may not have much
  725.  *          time to spare, so keep callback functions short.
  726.  */
  727. int __var_AddCallback( vlc_object_t *p_this, const char *psz_name,
  728.                        vlc_callback_t pf_callback, void *p_data )
  729. {
  730.     int i_var;
  731.     variable_t *p_var;
  732.     callback_entry_t entry;
  733.     entry.pf_callback = pf_callback;
  734.     entry.p_data = p_data;
  735.     vlc_mutex_lock( &p_this->var_lock );
  736.     i_var = GetUnused( p_this, psz_name );
  737.     if( i_var < 0 )
  738.     {
  739.         vlc_mutex_unlock( &p_this->var_lock );
  740.         return i_var;
  741.     }
  742.     p_var = &p_this->p_vars[i_var];
  743.     INSERT_ELEM( p_var->p_entries,
  744.                  p_var->i_entries,
  745.                  p_var->i_entries,
  746.                  entry );
  747.     vlc_mutex_unlock( &p_this->var_lock );
  748.     return VLC_SUCCESS;
  749. }
  750. /**
  751.  * Remove a callback from a variable
  752.  *
  753.  * pf_callback and p_data have to be given again, because different objects
  754.  * might have registered the same callback function.
  755.  */
  756. int __var_DelCallback( vlc_object_t *p_this, const char *psz_name,
  757.                        vlc_callback_t pf_callback, void *p_data )
  758. {
  759.     int i_entry, i_var;
  760.     variable_t *p_var;
  761.     vlc_mutex_lock( &p_this->var_lock );
  762.     i_var = GetUnused( p_this, psz_name );
  763.     if( i_var < 0 )
  764.     {
  765.         vlc_mutex_unlock( &p_this->var_lock );
  766.         return i_var;
  767.     }
  768.     p_var = &p_this->p_vars[i_var];
  769.     for( i_entry = p_var->i_entries ; i_entry-- ; )
  770.     {
  771.         if( p_var->p_entries[i_entry].pf_callback == pf_callback
  772.             && p_var->p_entries[i_entry].p_data == p_data )
  773.         {
  774.             break;
  775.         }
  776.     }
  777.     if( i_entry < 0 )
  778.     {
  779.         vlc_mutex_unlock( &p_this->var_lock );
  780.         return VLC_EGENERIC;
  781.     }
  782.     REMOVE_ELEM( p_var->p_entries, p_var->i_entries, i_entry );
  783.     vlc_mutex_unlock( &p_this->var_lock );
  784.     return VLC_SUCCESS;
  785. }
  786. /* Following functions are local */
  787. /*****************************************************************************
  788.  * GetUnused: find an unused variable from its name
  789.  *****************************************************************************
  790.  * We do i_tries tries before giving up, just in case the variable is being
  791.  * modified and called from a callback.
  792.  *****************************************************************************/
  793. static int GetUnused( vlc_object_t *p_this, const char *psz_name )
  794. {
  795.     int i_var, i_tries = 0;
  796.     while( VLC_TRUE )
  797.     {
  798.         i_var = Lookup( p_this->p_vars, p_this->i_vars, psz_name );
  799.         if( i_var < 0 )
  800.         {
  801.             return VLC_ENOVAR;
  802.         }
  803.         if( ! p_this->p_vars[i_var].b_incallback )
  804.         {
  805.             return i_var;
  806.         }
  807.         if( i_tries++ > 100 )
  808.         {
  809.             msg_Err( p_this, "caught in a callback deadlock?" );
  810.             return VLC_ETIMEOUT;
  811.         }
  812.         vlc_mutex_unlock( &p_this->var_lock );
  813.         msleep( THREAD_SLEEP );
  814.         vlc_mutex_lock( &p_this->var_lock );
  815.     }
  816. }
  817. /*****************************************************************************
  818.  * HashString: our cool hash function
  819.  *****************************************************************************
  820.  * This function is not intended to be crypto-secure, we only want it to be
  821.  * fast and not suck too much. This one is pretty fast and did 0 collisions
  822.  * in wenglish's dictionary.
  823.  *****************************************************************************/
  824. static uint32_t HashString( const char *psz_string )
  825. {
  826.     uint32_t i_hash = 0;
  827.     while( *psz_string )
  828.     {
  829.         i_hash += *psz_string++;
  830.         i_hash += i_hash << 10;
  831.         i_hash ^= i_hash >> 8;
  832.     }
  833.     return i_hash;
  834. }
  835. /*****************************************************************************
  836.  * Insert: find an empty slot to insert a new variable
  837.  *****************************************************************************
  838.  * We use a recursive inner function indexed on the hash. This function does
  839.  * nothing in the rare cases where a collision may occur, see Lookup()
  840.  * to see how we handle them.
  841.  * XXX: does this really need to be written recursively?
  842.  *****************************************************************************/
  843. static int Insert( variable_t *p_vars, int i_count, const char *psz_name )
  844. {
  845.     if( i_count == 0 )
  846.     {
  847.         return 0;
  848.     }
  849.     return InsertInner( p_vars, i_count, HashString( psz_name ) );
  850. }
  851. static int InsertInner( variable_t *p_vars, int i_count, uint32_t i_hash )
  852. {
  853.     int i_middle;
  854.     if( i_hash <= p_vars[0].i_hash )
  855.     {
  856.         return 0;
  857.     }
  858.     if( i_hash >= p_vars[i_count - 1].i_hash )
  859.     {
  860.         return i_count;
  861.     }
  862.     i_middle = i_count / 2;
  863.     /* We know that 0 < i_middle */
  864.     if( i_hash < p_vars[i_middle].i_hash )
  865.     {
  866.         return InsertInner( p_vars, i_middle, i_hash );
  867.     }
  868.     /* We know that i_middle + 1 < i_count */
  869.     if( i_hash > p_vars[i_middle + 1].i_hash )
  870.     {
  871.         return i_middle + 1 + InsertInner( p_vars + i_middle + 1,
  872.                                            i_count - i_middle - 1,
  873.                                            i_hash );
  874.     }
  875.     return i_middle + 1;
  876. }
  877. /*****************************************************************************
  878.  * Lookup: find an existing variable given its name
  879.  *****************************************************************************
  880.  * We use a recursive inner function indexed on the hash. Care is taken of
  881.  * possible hash collisions.
  882.  * XXX: does this really need to be written recursively?
  883.  *****************************************************************************/
  884. static int Lookup( variable_t *p_vars, int i_count, const char *psz_name )
  885. {
  886.     uint32_t i_hash;
  887.     int i, i_pos;
  888.     if( i_count == 0 )
  889.     {
  890.         return -1;
  891.     }
  892.     i_hash = HashString( psz_name );
  893.     i_pos = LookupInner( p_vars, i_count, i_hash );
  894.     /* Hash not found */
  895.     if( i_hash != p_vars[i_pos].i_hash )
  896.     {
  897.         return -1;
  898.     }
  899.     /* Hash found, entry found */
  900.     if( !strcmp( psz_name, p_vars[i_pos].psz_name ) )
  901.     {
  902.         return i_pos;
  903.     }
  904.     /* Hash collision! This should be very rare, but we cannot guarantee
  905.      * it will never happen. Just do an exhaustive search amongst all
  906.      * entries with the same hash. */
  907.     for( i = i_pos - 1 ; i > 0 && i_hash == p_vars[i].i_hash ; i-- )
  908.     {
  909.         if( !strcmp( psz_name, p_vars[i].psz_name ) )
  910.         {
  911.             return i;
  912.         }
  913.     }
  914.     for( i = i_pos + 1 ; i < i_count && i_hash == p_vars[i].i_hash ; i++ )
  915.     {
  916.         if( !strcmp( psz_name, p_vars[i].psz_name ) )
  917.         {
  918.             return i;
  919.         }
  920.     }
  921.     /* Hash found, but entry not found */
  922.     return -1;
  923. }
  924. static int LookupInner( variable_t *p_vars, int i_count, uint32_t i_hash )
  925. {
  926.     int i_middle;
  927.     if( i_hash <= p_vars[0].i_hash )
  928.     {
  929.         return 0;
  930.     }
  931.     if( i_hash >= p_vars[i_count-1].i_hash )
  932.     {
  933.         return i_count - 1;
  934.     }
  935.     i_middle = i_count / 2;
  936.     /* We know that 0 < i_middle */
  937.     if( i_hash < p_vars[i_middle].i_hash )
  938.     {
  939.         return LookupInner( p_vars, i_middle, i_hash );
  940.     }
  941.     /* We know that i_middle + 1 < i_count */
  942.     if( i_hash > p_vars[i_middle].i_hash )
  943.     {
  944.         return i_middle + LookupInner( p_vars + i_middle,
  945.                                        i_count - i_middle,
  946.                                        i_hash );
  947.     }
  948.     return i_middle;
  949. }
  950. /*****************************************************************************
  951.  * CheckValue: check that a value is valid wrt. a variable
  952.  *****************************************************************************
  953.  * This function checks p_val's value against p_var's limitations such as
  954.  * minimal and maximal value, step, in-list position, and modifies p_val if
  955.  * necessary.
  956.  *****************************************************************************/
  957. static void CheckValue ( variable_t *p_var, vlc_value_t *p_val )
  958. {
  959.     /* Check that our variable is in the list */
  960.     if( p_var->i_type & VLC_VAR_HASCHOICE && p_var->choices.i_count )
  961.     {
  962.         int i;
  963.         /* FIXME: the list is sorted, dude. Use something cleverer. */
  964.         for( i = p_var->choices.i_count ; i-- ; )
  965.         {
  966.             if( p_var->pf_cmp( *p_val, p_var->choices.p_values[i] ) == 0 )
  967.             {
  968.                 break;
  969.             }
  970.         }
  971.         /* If not found, change it to anything vaguely valid */
  972.         if( i < 0 )
  973.         {
  974.             /* Free the old variable, get the new one, dup it */
  975.             p_var->pf_free( p_val );
  976.             *p_val = p_var->choices.p_values[p_var->i_default >= 0
  977.                                           ? p_var->i_default : 0 ];
  978.             p_var->pf_dup( p_val );
  979.         }
  980.     }
  981.     /* Check that our variable is within the bounds */
  982.     switch( p_var->i_type & VLC_VAR_TYPE )
  983.     {
  984.         case VLC_VAR_INTEGER:
  985.             if( p_var->i_type & VLC_VAR_HASSTEP && p_var->step.i_int
  986.                  && (p_val->i_int % p_var->step.i_int) )
  987.             {
  988.                 p_val->i_int = (p_val->i_int + (p_var->step.i_int / 2))
  989.                                / p_var->step.i_int * p_var->step.i_int;
  990.             }
  991.             if( p_var->i_type & VLC_VAR_HASMIN
  992.                  && p_val->i_int < p_var->min.i_int )
  993.             {
  994.                 p_val->i_int = p_var->min.i_int;
  995.             }
  996.             if( p_var->i_type & VLC_VAR_HASMAX
  997.                  && p_val->i_int > p_var->max.i_int )
  998.             {
  999.                 p_val->i_int = p_var->max.i_int;
  1000.             }
  1001.             break;
  1002.         case VLC_VAR_FLOAT:
  1003.             if( p_var->i_type & VLC_VAR_HASSTEP && p_var->step.f_float )
  1004.             {
  1005.                 float f_round = p_var->step.f_float * (float)(int)( 0.5 +
  1006.                                         p_val->f_float / p_var->step.f_float );
  1007.                 if( p_val->f_float != f_round )
  1008.                 {
  1009.                     p_val->f_float = f_round;
  1010.                 }
  1011.             }
  1012.             if( p_var->i_type & VLC_VAR_HASMIN
  1013.                  && p_val->f_float < p_var->min.f_float )
  1014.             {
  1015.                 p_val->f_float = p_var->min.f_float;
  1016.             }
  1017.             if( p_var->i_type & VLC_VAR_HASMAX
  1018.                  && p_val->f_float > p_var->max.f_float )
  1019.             {
  1020.                 p_val->f_float = p_var->max.f_float;
  1021.             }
  1022.             break;
  1023.         case VLC_VAR_TIME:
  1024.             /* FIXME: TODO */
  1025.             break;
  1026.     }
  1027. }
  1028. /*****************************************************************************
  1029.  * InheritValue: try to inherit the value of this variable from the same one
  1030.  *               in our closest parent.
  1031.  *****************************************************************************/
  1032. static int InheritValue( vlc_object_t *p_this, const char *psz_name,
  1033.                          vlc_value_t *p_val, int i_type )
  1034. {
  1035.     int i_var;
  1036.     variable_t *p_var;
  1037.     /* No need to take the structure lock,
  1038.      * we are only looking for our parents */
  1039.     if( !p_this->p_parent )
  1040.     {
  1041.         switch( i_type & VLC_VAR_TYPE )
  1042.         {
  1043.         case VLC_VAR_FILE:
  1044.         case VLC_VAR_DIRECTORY:
  1045.         case VLC_VAR_STRING:
  1046.         case VLC_VAR_MODULE:
  1047.             p_val->psz_string = config_GetPsz( p_this, psz_name );
  1048.             if( !p_val->psz_string ) p_val->psz_string = strdup("");
  1049.             break;
  1050.         case VLC_VAR_FLOAT:
  1051.             p_val->f_float = config_GetFloat( p_this, psz_name );
  1052.             break;
  1053.         case VLC_VAR_INTEGER:
  1054.         case VLC_VAR_HOTKEY:
  1055.             p_val->i_int = config_GetInt( p_this, psz_name );
  1056.             break;
  1057.         case VLC_VAR_BOOL:
  1058.             p_val->b_bool = config_GetInt( p_this, psz_name );
  1059.             break;
  1060.         case VLC_VAR_LIST:
  1061.         {
  1062.             char *psz_orig, *psz_var;
  1063.             vlc_list_t *p_list = malloc(sizeof(vlc_list_t));
  1064.             p_val->p_list = p_list;
  1065.             p_list->i_count = 0;
  1066.             psz_var = psz_orig = config_GetPsz( p_this, psz_name );
  1067.             while( psz_var && *psz_var )
  1068.             {
  1069.                 char *psz_item = psz_var;
  1070.                 vlc_value_t val;
  1071.                 while( *psz_var && *psz_var != ',' ) psz_var++;
  1072.                 if( *psz_var == ',' )
  1073.                 {
  1074.                     *psz_var = '';
  1075.                     psz_var++;
  1076.                 }
  1077.                 val.i_int = strtol( psz_item, NULL, 0 );
  1078.                 INSERT_ELEM( p_list->p_values, p_list->i_count,
  1079.                              p_list->i_count, val );
  1080.                 /* p_list->i_count is incremented twice by INSERT_ELEM */
  1081.                 p_list->i_count--;
  1082.                 INSERT_ELEM( p_list->pi_types, p_list->i_count,
  1083.                              p_list->i_count, VLC_VAR_INTEGER );
  1084.             }
  1085.             if( psz_orig ) free( psz_orig );
  1086.             break;
  1087.         }
  1088.         default:
  1089.             return VLC_ENOOBJ;
  1090.             break;
  1091.         }
  1092.         return VLC_SUCCESS;
  1093.     }
  1094.     /* Look for the variable */
  1095.     vlc_mutex_lock( &p_this->p_parent->var_lock );
  1096.     i_var = Lookup( p_this->p_parent->p_vars, p_this->p_parent->i_vars,
  1097.                     psz_name );
  1098.     if( i_var >= 0 )
  1099.     {
  1100.         /* We found it! */
  1101.         p_var = &p_this->p_parent->p_vars[i_var];
  1102.         /* Really get the variable */
  1103.         *p_val = p_var->val;
  1104.         /* Duplicate value if needed */
  1105.         p_var->pf_dup( p_val );
  1106.         vlc_mutex_unlock( &p_this->p_parent->var_lock );
  1107.         return VLC_SUCCESS;
  1108.     }
  1109.     vlc_mutex_unlock( &p_this->p_parent->var_lock );
  1110.     /* We're still not there */
  1111.     return InheritValue( p_this->p_parent, psz_name, p_val, i_type );
  1112. }