]> git.sesse.net Git - vlc/blob - src/misc/variables.c
No need to memset val to 0 because the variable is initialized just after (the
[vlc] / src / misc / variables.c
1 /*****************************************************************************
2  * variables.c: routines for object variables handling
3  *****************************************************************************
4  * Copyright (C) 2002-2006 the VideoLAN team
5  * $Id$
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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27 #ifdef HAVE_CONFIG_H
28 # include "config.h"
29 #endif
30
31 #include <vlc_common.h>
32 #include "variables.h"
33
34 #include "libvlc.h"
35
36 #include "vlc_interface.h"
37 #include <assert.h>
38
39 /*****************************************************************************
40  * Private types
41  *****************************************************************************/
42 struct callback_entry_t
43 {
44     vlc_callback_t pf_callback;
45     void *         p_data;
46 };
47
48 /*****************************************************************************
49  * Local comparison functions, returns 0 if v == w, < 0 if v < w, > 0 if v > w
50  *****************************************************************************/
51 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; }
52 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; }
53 static int CmpTime( vlc_value_t v, vlc_value_t w )
54 {
55     return v.i_time == w.i_time ? 0 : v.i_time > w.i_time ? 1 : -1;
56 }
57 static int CmpString( vlc_value_t v, vlc_value_t w )
58 {
59     if( !v.psz_string )
60         return !w.psz_string ? 0 : -1;
61     else
62         return !w.psz_string ? 1 : strcmp( v.psz_string, w.psz_string );
63 }
64 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; }
65 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; }
66
67 /*****************************************************************************
68  * Local duplication functions, and local deallocation functions
69  *****************************************************************************/
70 static void DupDummy( vlc_value_t *p_val ) { (void)p_val; /* unused */ }
71 static void DupString( vlc_value_t *p_val )
72 {
73     p_val->psz_string = strdup( p_val->psz_string ? p_val->psz_string :  "" );
74 }
75
76 static void DupList( vlc_value_t *p_val )
77 {
78     int i;
79     vlc_list_t *p_list = malloc( sizeof(vlc_list_t) );
80
81     p_list->i_count = p_val->p_list->i_count;
82     if( p_val->p_list->i_count )
83     {
84         p_list->p_values = malloc( p_list->i_count * sizeof(vlc_value_t) );
85         p_list->pi_types = malloc( p_list->i_count * sizeof(int) );
86     }
87     else
88     {
89         p_list->p_values = NULL;
90         p_list->pi_types = NULL;
91     }
92
93     for( i = 0; i < p_list->i_count; i++ )
94     {
95         p_list->p_values[i] = p_val->p_list->p_values[i];
96         p_list->pi_types[i] = p_val->p_list->pi_types[i];
97         switch( p_val->p_list->pi_types[i] & VLC_VAR_CLASS )
98         {
99         case VLC_VAR_STRING:
100
101             DupString( &p_list->p_values[i] );
102             break;
103         default:
104             break;
105         }
106     }
107
108     p_val->p_list = p_list;
109 }
110
111 static void FreeDummy( vlc_value_t *p_val ) { (void)p_val; /* unused */ }
112 static void FreeString( vlc_value_t *p_val ) { free( p_val->psz_string ); }
113 static void FreeMutex( vlc_value_t *p_val ) { vlc_mutex_destroy( (vlc_mutex_t*)p_val->p_address ); free( p_val->p_address ); }
114
115 static void FreeList( vlc_value_t *p_val )
116 {
117     int i;
118     for( i = 0; i < p_val->p_list->i_count; i++ )
119     {
120         switch( p_val->p_list->pi_types[i] & VLC_VAR_CLASS )
121         {
122         case VLC_VAR_STRING:
123             FreeString( &p_val->p_list->p_values[i] );
124             break;
125         case VLC_VAR_MUTEX:
126             FreeMutex( &p_val->p_list->p_values[i] );
127             break;
128         default:
129             break;
130         }
131     }
132
133     if( p_val->p_list->i_count )
134     {
135         free( p_val->p_list->p_values );
136         free( p_val->p_list->pi_types );
137     }
138     free( p_val->p_list );
139 }
140
141 static const struct variable_ops_t
142 void_ops   = { NULL,       DupDummy,  FreeDummy,  },
143 addr_ops   = { CmpAddress, DupDummy,  FreeDummy,  },
144 bool_ops   = { CmpBool,    DupDummy,  FreeDummy,  },
145 float_ops  = { CmpFloat,   DupDummy,  FreeDummy,  },
146 int_ops    = { CmpInt,     DupDummy,  FreeDummy,  },
147 list_ops   = { CmpAddress, DupList,   FreeList,   },
148 mutex_ops  = { CmpAddress, DupDummy,  FreeMutex,  },
149 string_ops = { CmpString,  DupString, FreeString, },
150 time_ops   = { CmpTime,    DupDummy,  FreeDummy,  };
151
152 /*****************************************************************************
153  * Local prototypes
154  *****************************************************************************/
155 static int      GetUnused   ( vlc_object_t *, const char * );
156 static uint32_t HashString  ( const char * );
157 static int      Insert      ( variable_t *, int, const char * );
158 static int      InsertInner ( variable_t *, int, uint32_t );
159 static int      Lookup      ( variable_t *, size_t, const char * );
160
161 static void     CheckValue  ( variable_t *, vlc_value_t * );
162
163 static int      InheritValue( vlc_object_t *, const char *, vlc_value_t *,
164                               int );
165 static int      TriggerCallback( vlc_object_t *, variable_t *, const char *,
166                                  vlc_value_t, vlc_value_t );
167
168 /**
169  * Initialize a vlc variable
170  *
171  * We hash the given string and insert it into the sorted list. The insertion
172  * may require slow memory copies, but think about what we gain in the log(n)
173  * lookup phase when setting/getting the variable value!
174  *
175  * \param p_this The object in which to create the variable
176  * \param psz_name The name of the variable
177  * \param i_type The variables type. Must be one of \ref var_type combined with
178  *               zero or more \ref var_flags
179  */
180 int __var_Create( vlc_object_t *p_this, const char *psz_name, int i_type )
181 {
182     int i_new;
183     variable_t *p_var;
184     static vlc_list_t dummy_null_list = {0, NULL, NULL};
185     vlc_object_internals_t *p_priv = vlc_internals( p_this );
186
187     vlc_mutex_lock( &p_priv->var_lock );
188
189     /* FIXME: if the variable already exists, we don't duplicate it. But we
190      * duplicate the lookups. It's not that serious, but if anyone finds some
191      * time to rework Insert() so that only one lookup has to be done, feel
192      * free to do so. */
193     i_new = Lookup( p_priv->p_vars, p_priv->i_vars, psz_name );
194
195     if( i_new >= 0 )
196     {
197         /* If the types differ, variable creation failed. */
198         if( (i_type & VLC_VAR_TYPE) != (p_priv->p_vars[i_new].i_type & VLC_VAR_TYPE) )
199         {
200             vlc_mutex_unlock( &p_priv->var_lock );
201             return VLC_EBADVAR;
202         }
203
204         p_priv->p_vars[i_new].i_usage++;
205         p_priv->p_vars[i_new].i_type |= ( i_type & VLC_VAR_ISCOMMAND );
206         p_priv->p_vars[i_new].i_type |= ( i_type & VLC_VAR_HASCHOICE );
207         vlc_mutex_unlock( &p_priv->var_lock );
208         return VLC_SUCCESS;
209     }
210
211     i_new = Insert( p_priv->p_vars, p_priv->i_vars, psz_name );
212
213     if( (p_priv->i_vars & 15) == 15 )
214     {
215         p_priv->p_vars = realloc( p_priv->p_vars,
216                                   (p_priv->i_vars+17) * sizeof(variable_t) );
217     }
218
219     memmove( p_priv->p_vars + i_new + 1,
220              p_priv->p_vars + i_new,
221              (p_priv->i_vars - i_new) * sizeof(variable_t) );
222
223     p_priv->i_vars++;
224
225     p_var = &p_priv->p_vars[i_new];
226     memset( p_var, 0, sizeof(*p_var) );
227
228     p_var->i_hash = HashString( psz_name );
229     p_var->psz_name = strdup( psz_name );
230     p_var->psz_text = NULL;
231
232     p_var->i_type = i_type & ~VLC_VAR_DOINHERIT;
233
234     p_var->i_usage = 1;
235
236     p_var->i_default = -1;
237     p_var->choices.i_count = 0;
238     p_var->choices.p_values = NULL;
239     p_var->choices_text.i_count = 0;
240     p_var->choices_text.p_values = NULL;
241
242     p_var->b_incallback = false;
243     p_var->i_entries = 0;
244     p_var->p_entries = NULL;
245
246     /* Always initialize the variable, even if it is a list variable; this
247      * will lead to errors if the variable is not initialized, but it will
248      * not cause crashes in the variable handling. */
249     switch( i_type & VLC_VAR_CLASS )
250     {
251         case VLC_VAR_BOOL:
252             p_var->ops = &bool_ops;
253             p_var->val.b_bool = false;
254             break;
255         case VLC_VAR_INTEGER:
256             p_var->ops = &int_ops;
257             p_var->val.i_int = 0;
258             break;
259         case VLC_VAR_STRING:
260             p_var->ops = &string_ops;
261             p_var->val.psz_string = NULL;
262             break;
263         case VLC_VAR_FLOAT:
264             p_var->ops = &float_ops;
265             p_var->val.f_float = 0.0;
266             break;
267         case VLC_VAR_TIME:
268             p_var->ops = &time_ops;
269             p_var->val.i_time = 0;
270             break;
271         case VLC_VAR_ADDRESS:
272             p_var->ops = &addr_ops;
273             p_var->val.p_address = NULL;
274             break;
275         case VLC_VAR_MUTEX:
276             p_var->ops = &mutex_ops;
277             p_var->val.p_address = malloc( sizeof(vlc_mutex_t) );
278             vlc_mutex_init( (vlc_mutex_t*)p_var->val.p_address );
279             break;
280         case VLC_VAR_LIST:
281             p_var->ops = &list_ops;
282             p_var->val.p_list = &dummy_null_list;
283             break;
284         default:
285             p_var->ops = &void_ops;
286             break;
287     }
288
289     /* Duplicate the default data we stored. */
290     p_var->ops->pf_dup( &p_var->val );
291
292     if( i_type & VLC_VAR_DOINHERIT )
293     {
294         vlc_value_t val;
295
296         if( InheritValue( p_this, psz_name, &val, p_var->i_type )
297             == VLC_SUCCESS )
298         {
299             /* Free data if needed */
300             p_var->ops->pf_free( &p_var->val );
301             /* Set the variable */
302             p_var->val = val;
303
304             if( i_type & VLC_VAR_HASCHOICE )
305             {
306                 /* We must add the inherited value to our choice list */
307                 p_var->i_default = 0;
308
309                 INSERT_ELEM( p_var->choices.p_values, p_var->choices.i_count,
310                              0, val );
311                 INSERT_ELEM( p_var->choices_text.p_values,
312                              p_var->choices_text.i_count, 0, val );
313                 p_var->ops->pf_dup( &p_var->choices.p_values[0] );
314                 p_var->choices_text.p_values[0].psz_string = NULL;
315             }
316         }
317     }
318
319     vlc_mutex_unlock( &p_priv->var_lock );
320
321     return VLC_SUCCESS;
322 }
323
324 /**
325  * Destroy a vlc variable
326  *
327  * Look for the variable and destroy it if it is found. As in var_Create we
328  * do a call to memmove() but we have performance counterparts elsewhere.
329  *
330  * \param p_this The object that holds the variable
331  * \param psz_name The name of the variable
332  */
333 int __var_Destroy( vlc_object_t *p_this, const char *psz_name )
334 {
335     int i_var, i;
336     variable_t *p_var;
337     vlc_object_internals_t *p_priv = vlc_internals( p_this );
338
339     vlc_mutex_lock( &p_priv->var_lock );
340
341     i_var = GetUnused( p_this, psz_name );
342     if( i_var < 0 )
343     {
344         vlc_mutex_unlock( &p_priv->var_lock );
345         return i_var;
346     }
347
348     p_var = &p_priv->p_vars[i_var];
349
350     if( p_var->i_usage > 1 )
351     {
352         p_var->i_usage--;
353         vlc_mutex_unlock( &p_priv->var_lock );
354         return VLC_SUCCESS;
355     }
356
357     /* Free value if needed */
358     p_var->ops->pf_free( &p_var->val );
359
360     /* Free choice list if needed */
361     if( p_var->choices.i_count )
362     {
363         for( i = 0 ; i < p_var->choices.i_count ; i++ )
364         {
365             p_var->ops->pf_free( &p_var->choices.p_values[i] );
366             free( p_var->choices_text.p_values[i].psz_string );
367         }
368         free( p_var->choices.p_values );
369         free( p_var->choices_text.p_values );
370     }
371
372     /* Free callbacks if needed */
373     if( p_var->p_entries )
374     {
375         free( p_var->p_entries );
376     }
377
378     free( p_var->psz_name );
379     free( p_var->psz_text );
380
381     memmove( p_priv->p_vars + i_var,
382              p_priv->p_vars + i_var + 1,
383              (p_priv->i_vars - i_var - 1) * sizeof(variable_t) );
384
385     if( (p_priv->i_vars & 15) == 0 )
386     {
387         p_priv->p_vars = realloc( p_priv->p_vars,
388                           (p_priv->i_vars) * sizeof( variable_t ) );
389     }
390
391     p_priv->i_vars--;
392
393     vlc_mutex_unlock( &p_priv->var_lock );
394
395     return VLC_SUCCESS;
396 }
397
398 /**
399  * Perform an action on a variable
400  *
401  * \param p_this The object that holds the variable
402  * \param psz_name The name of the variable
403  * \param i_action The action to perform. Must be one of \ref var_action
404  * \param p_val First action parameter
405  * \param p_val2 Second action parameter
406  */
407 int __var_Change( vlc_object_t *p_this, const char *psz_name,
408                   int i_action, vlc_value_t *p_val, vlc_value_t *p_val2 )
409 {
410     int i_var, i;
411     variable_t *p_var;
412     vlc_value_t oldval;
413     vlc_object_internals_t *p_priv = vlc_internals( p_this );
414
415     vlc_mutex_lock( &p_priv->var_lock );
416
417     i_var = Lookup( p_priv->p_vars, p_priv->i_vars, psz_name );
418
419     if( i_var < 0 )
420     {
421         vlc_mutex_unlock( &p_priv->var_lock );
422         return VLC_ENOVAR;
423     }
424
425     p_var = &p_priv->p_vars[i_var];
426
427     switch( i_action )
428     {
429         case VLC_VAR_SETMIN:
430             if( p_var->i_type & VLC_VAR_HASMIN )
431             {
432                 p_var->ops->pf_free( &p_var->min );
433             }
434             p_var->i_type |= VLC_VAR_HASMIN;
435             p_var->min = *p_val;
436             p_var->ops->pf_dup( &p_var->min );
437             CheckValue( p_var, &p_var->val );
438             break;
439         case VLC_VAR_GETMIN:
440             if( p_var->i_type & VLC_VAR_HASMIN )
441             {
442                 *p_val = p_var->min;
443             }
444             break;
445         case VLC_VAR_SETMAX:
446             if( p_var->i_type & VLC_VAR_HASMAX )
447             {
448                 p_var->ops->pf_free( &p_var->max );
449             }
450             p_var->i_type |= VLC_VAR_HASMAX;
451             p_var->max = *p_val;
452             p_var->ops->pf_dup( &p_var->max );
453             CheckValue( p_var, &p_var->val );
454             break;
455         case VLC_VAR_GETMAX:
456             if( p_var->i_type & VLC_VAR_HASMAX )
457             {
458                 *p_val = p_var->max;
459             }
460             break;
461         case VLC_VAR_SETSTEP:
462             if( p_var->i_type & VLC_VAR_HASSTEP )
463             {
464                 p_var->ops->pf_free( &p_var->step );
465             }
466             p_var->i_type |= VLC_VAR_HASSTEP;
467             p_var->step = *p_val;
468             p_var->ops->pf_dup( &p_var->step );
469             CheckValue( p_var, &p_var->val );
470             break;
471         case VLC_VAR_GETSTEP:
472             if( p_var->i_type & VLC_VAR_HASSTEP )
473             {
474                 *p_val = p_var->step;
475             }
476             break;
477         case VLC_VAR_ADDCHOICE:
478             i = p_var->choices.i_count;
479
480             INSERT_ELEM( p_var->choices.p_values, p_var->choices.i_count,
481                          i, *p_val );
482             INSERT_ELEM( p_var->choices_text.p_values,
483                          p_var->choices_text.i_count, i, *p_val );
484             p_var->ops->pf_dup( &p_var->choices.p_values[i] );
485             p_var->choices_text.p_values[i].psz_string =
486                 ( p_val2 && p_val2->psz_string ) ?
487                 strdup( p_val2->psz_string ) : NULL;
488
489             CheckValue( p_var, &p_var->val );
490             break;
491         case VLC_VAR_DELCHOICE:
492             for( i = 0 ; i < p_var->choices.i_count ; i++ )
493             {
494                 if( p_var->ops->pf_cmp( p_var->choices.p_values[i], *p_val ) == 0 )
495                 {
496                     break;
497                 }
498             }
499
500             if( i == p_var->choices.i_count )
501             {
502                 /* Not found */
503                 vlc_mutex_unlock( &p_priv->var_lock );
504                 return VLC_EGENERIC;
505             }
506
507             if( p_var->i_default > i )
508             {
509                 p_var->i_default--;
510             }
511             else if( p_var->i_default == i )
512             {
513                 p_var->i_default = -1;
514             }
515
516             p_var->ops->pf_free( &p_var->choices.p_values[i] );
517             free( p_var->choices_text.p_values[i].psz_string );
518             REMOVE_ELEM( p_var->choices.p_values, p_var->choices.i_count, i );
519             REMOVE_ELEM( p_var->choices_text.p_values,
520                          p_var->choices_text.i_count, i );
521
522             CheckValue( p_var, &p_var->val );
523             break;
524         case VLC_VAR_CHOICESCOUNT:
525             p_val->i_int = p_var->choices.i_count;
526             break;
527         case VLC_VAR_CLEARCHOICES:
528             for( i = 0 ; i < p_var->choices.i_count ; i++ )
529             {
530                 p_var->ops->pf_free( &p_var->choices.p_values[i] );
531             }
532             for( i = 0 ; i < p_var->choices_text.i_count ; i++ )
533                 free( p_var->choices_text.p_values[i].psz_string );
534
535             if( p_var->choices.i_count ) free( p_var->choices.p_values );
536             if( p_var->choices_text.i_count ) free( p_var->choices_text.p_values );
537
538             p_var->choices.i_count = 0;
539             p_var->choices.p_values = NULL;
540             p_var->choices_text.i_count = 0;
541             p_var->choices_text.p_values = NULL;
542             p_var->i_default = -1;
543             break;
544         case VLC_VAR_SETDEFAULT:
545             /* FIXME: the list is sorted, dude. Use something cleverer. */
546             for( i = 0 ; i < p_var->choices.i_count ; i++ )
547             {
548                 if( p_var->ops->pf_cmp( p_var->choices.p_values[i], *p_val ) == 0 )
549                 {
550                     break;
551                 }
552             }
553
554             if( i == p_var->choices.i_count )
555             {
556                 /* Not found */
557                 break;
558             }
559
560             p_var->i_default = i;
561             CheckValue( p_var, &p_var->val );
562             break;
563         case VLC_VAR_SETVALUE:
564             /* Duplicate data if needed */
565             p_var->ops->pf_dup( p_val );
566             /* Backup needed stuff */
567             oldval = p_var->val;
568             /* Check boundaries and list */
569             CheckValue( p_var, p_val );
570             /* Set the variable */
571             p_var->val = *p_val;
572             /* Free data if needed */
573             p_var->ops->pf_free( &oldval );
574             break;
575         case VLC_VAR_GETCHOICES:
576         case VLC_VAR_GETLIST:
577             p_val->p_list = malloc( sizeof(vlc_list_t) );
578             if( p_val2 ) p_val2->p_list = malloc( sizeof(vlc_list_t) );
579             if( p_var->choices.i_count )
580             {
581                 p_val->p_list->p_values = malloc( p_var->choices.i_count
582                                                   * sizeof(vlc_value_t) );
583                 p_val->p_list->pi_types = malloc( p_var->choices.i_count
584                                                   * sizeof(int) );
585                 if( p_val2 )
586                 {
587                     p_val2->p_list->p_values =
588                         malloc( p_var->choices.i_count * sizeof(vlc_value_t) );
589                     p_val2->p_list->pi_types =
590                         malloc( p_var->choices.i_count * sizeof(int) );
591                 }
592             }
593             p_val->p_list->i_count = p_var->choices.i_count;
594             if( p_val2 ) p_val2->p_list->i_count = p_var->choices.i_count;
595             for( i = 0 ; i < p_var->choices.i_count ; i++ )
596             {
597                 p_val->p_list->p_values[i] = p_var->choices.p_values[i];
598                 p_val->p_list->pi_types[i] = p_var->i_type;
599                 p_var->ops->pf_dup( &p_val->p_list->p_values[i] );
600                 if( p_val2 )
601                 {
602                     p_val2->p_list->p_values[i].psz_string =
603                         p_var->choices_text.p_values[i].psz_string ?
604                     strdup(p_var->choices_text.p_values[i].psz_string) : NULL;
605                     p_val2->p_list->pi_types[i] = VLC_VAR_STRING;
606                 }
607             }
608             break;
609         case VLC_VAR_SETTEXT:
610             free( p_var->psz_text );
611             if( p_val && p_val->psz_string )
612                 p_var->psz_text = strdup( p_val->psz_string );
613             else
614                 p_var->psz_text = NULL;
615             break;
616         case VLC_VAR_GETTEXT:
617             p_val->psz_string = NULL;
618             if( p_var->psz_text )
619             {
620                 p_val->psz_string = strdup( p_var->psz_text );
621             }
622             break;
623         case VLC_VAR_INHERITVALUE:
624             {
625                 vlc_value_t val;
626
627                 if( InheritValue( p_this,
628                                   p_val2 ? p_val2->psz_string :  psz_name,
629                                   &val, p_var->i_type )
630                     == VLC_SUCCESS )
631                 {
632                     /* Duplicate already done */
633
634                     /* Backup needed stuff */
635                     oldval = p_var->val;
636                     /* Check boundaries and list */
637                     CheckValue( p_var, &val );
638                     /* Set the variable */
639                     p_var->val = val;
640                     /* Free data if needed */
641                     p_var->ops->pf_free( &oldval );
642                 }
643
644                 if( p_val )
645                 {
646                     *p_val = p_var->val;
647                     p_var->ops->pf_dup( p_val );
648                 }
649             }
650             break;
651
652         case VLC_VAR_SETISCOMMAND:
653             p_var->i_type |= VLC_VAR_ISCOMMAND;
654             break;
655
656         default:
657             break;
658     }
659
660     vlc_mutex_unlock( &p_priv->var_lock );
661
662     return VLC_SUCCESS;
663 }
664
665 /**
666  * Request a variable's type
667  *
668  * \return The variable type if it exists, or 0 if the
669  * variable could not be found.
670  * \see \ref var_type
671  */
672 int __var_Type( vlc_object_t *p_this, const char *psz_name )
673 {
674     int i_var, i_type;
675     vlc_object_internals_t *p_priv = vlc_internals( p_this );
676
677     vlc_mutex_lock( &p_priv->var_lock );
678
679     i_var = Lookup( p_priv->p_vars, p_priv->i_vars, psz_name );
680
681     if( i_var < 0 )
682     {
683         vlc_mutex_unlock( &p_priv->var_lock );
684         return 0;
685     }
686
687     i_type = p_priv->p_vars[i_var].i_type;
688
689     vlc_mutex_unlock( &p_priv->var_lock );
690
691     return i_type;
692 }
693
694 int var_SetChecked( vlc_object_t *p_this, const char *psz_name,
695                     int expected_type, vlc_value_t val )
696 {
697     int i_var;
698     int i_ret = VLC_SUCCESS;
699     variable_t *p_var;
700     vlc_value_t oldval;
701     vlc_object_internals_t *p_priv = vlc_internals( p_this );
702
703     vlc_mutex_lock( &p_priv->var_lock );
704
705     i_var = GetUnused( p_this, psz_name );
706     if( i_var < 0 )
707     {
708         vlc_mutex_unlock( &p_priv->var_lock );
709         return i_var;
710     }
711
712     p_var = &p_priv->p_vars[i_var];
713     assert( (p_var->i_type & VLC_VAR_CLASS) == 0 || expected_type == 0 ||
714             (p_var->i_type & VLC_VAR_CLASS) == expected_type );
715
716     /* Duplicate data if needed */
717     p_var->ops->pf_dup( &val );
718
719     /* Backup needed stuff */
720     oldval = p_var->val;
721
722     /* Check boundaries and list */
723     CheckValue( p_var, &val );
724
725     /* Set the variable */
726     p_var->val = val;
727
728     /* Deal with callbacks. Tell we're in a callback, release the lock,
729      * call stored functions, retake the lock. */
730     if( p_var->i_entries )
731         i_ret = TriggerCallback( p_this, p_var, psz_name, oldval, val );
732
733     /* Free data if needed */
734     p_var->ops->pf_free( &oldval );
735
736     vlc_mutex_unlock( &p_priv->var_lock );
737
738     return i_ret;
739 }
740
741
742 /**
743  * Set a variable's value
744  *
745  * \param p_this The object that hold the variable
746  * \param psz_name The name of the variable
747  * \param val the value to set
748  */
749 int __var_Set( vlc_object_t *p_this, const char *psz_name, vlc_value_t val )
750 {
751     return var_SetChecked( p_this, psz_name, 0, val );
752 }
753
754 int var_GetChecked( vlc_object_t *p_this, const char *psz_name,
755                     int expected_type, vlc_value_t *p_val )
756 {
757     vlc_object_internals_t *p_priv = vlc_internals( p_this );
758     int i_var, err = VLC_SUCCESS;
759
760     vlc_mutex_lock( &p_priv->var_lock );
761
762     i_var = Lookup( p_priv->p_vars, p_priv->i_vars, psz_name );
763     if( i_var >= 0 )
764     {
765         variable_t *p_var = &p_priv->p_vars[i_var];
766
767         assert( (p_var->i_type & VLC_VAR_CLASS) == 0 || expected_type == 0 ||
768                 (p_var->i_type & VLC_VAR_CLASS) == expected_type );
769
770         /* Really get the variable */
771         *p_val = p_var->val;
772
773         /* Duplicate value if needed */
774         p_var->ops->pf_dup( p_val );
775     }
776     else
777         err = VLC_ENOVAR;
778
779     vlc_mutex_unlock( &p_priv->var_lock );
780     return err;
781 }
782
783 /**
784  * Get a variable's value
785  *
786  * \param p_this The object that holds the variable
787  * \param psz_name The name of the variable
788  * \param p_val Pointer to a vlc_value_t that will hold the variable's value
789  *              after the function is finished
790  */
791 int __var_Get( vlc_object_t *p_this, const char *psz_name, vlc_value_t *p_val )
792 {
793     return var_GetChecked( p_this, psz_name, 0, p_val );
794 }
795
796 /**
797  * Register a callback in a variable
798  *
799  * We store a function pointer that will be called upon variable
800  * modification.
801  *
802  * \param p_this The object that holds the variable
803  * \param psz_name The name of the variable
804  * \param pf_callback The function pointer
805  * \param p_data A generic pointer that will be passed as the last
806  *               argument to the callback function.
807  *
808  * \warning The callback function is run in the thread that calls var_Set on
809  *          the variable. Use proper locking. This thread may not have much
810  *          time to spare, so keep callback functions short.
811  */
812 int __var_AddCallback( vlc_object_t *p_this, const char *psz_name,
813                        vlc_callback_t pf_callback, void *p_data )
814 {
815     int i_var;
816     variable_t *p_var;
817     callback_entry_t entry;
818     vlc_object_internals_t *p_priv = vlc_internals( p_this );
819
820     entry.pf_callback = pf_callback;
821     entry.p_data = p_data;
822
823     vlc_mutex_lock( &p_priv->var_lock );
824
825     i_var = GetUnused( p_this, psz_name );
826     if( i_var < 0 )
827     {
828         vlc_mutex_unlock( &p_priv->var_lock );
829         return i_var;
830     }
831
832     p_var = &p_priv->p_vars[i_var];
833
834     INSERT_ELEM( p_var->p_entries,
835                  p_var->i_entries,
836                  p_var->i_entries,
837                  entry );
838
839     vlc_mutex_unlock( &p_priv->var_lock );
840
841     return VLC_SUCCESS;
842 }
843
844 /**
845  * Remove a callback from a variable
846  *
847  * pf_callback and p_data have to be given again, because different objects
848  * might have registered the same callback function.
849  */
850 int __var_DelCallback( vlc_object_t *p_this, const char *psz_name,
851                        vlc_callback_t pf_callback, void *p_data )
852 {
853     int i_entry, i_var;
854     variable_t *p_var;
855     vlc_object_internals_t *p_priv = vlc_internals( p_this );
856
857     vlc_mutex_lock( &p_priv->var_lock );
858
859     i_var = GetUnused( p_this, psz_name );
860     if( i_var < 0 )
861     {
862         vlc_mutex_unlock( &p_priv->var_lock );
863         return i_var;
864     }
865
866     p_var = &p_priv->p_vars[i_var];
867
868     for( i_entry = p_var->i_entries ; i_entry-- ; )
869     {
870         if( p_var->p_entries[i_entry].pf_callback == pf_callback
871             && p_var->p_entries[i_entry].p_data == p_data )
872         {
873             break;
874         }
875     }
876
877     if( i_entry < 0 )
878     {
879         vlc_mutex_unlock( &p_priv->var_lock );
880         return VLC_EGENERIC;
881     }
882
883     REMOVE_ELEM( p_var->p_entries, p_var->i_entries, i_entry );
884
885     vlc_mutex_unlock( &p_priv->var_lock );
886
887     return VLC_SUCCESS;
888 }
889
890 /**
891  * Trigger callback on a variable
892  *
893  * \param p_this The object that hold the variable
894  * \param psz_name The name of the variable
895  */
896 int __var_TriggerCallback( vlc_object_t *p_this, const char *psz_name )
897 {
898     int i_var;
899     int i_ret = VLC_SUCCESS;
900     variable_t *p_var;
901     vlc_value_t oldval;
902     vlc_object_internals_t *p_priv = vlc_internals( p_this );
903
904     vlc_mutex_lock( &p_priv->var_lock );
905
906     i_var = GetUnused( p_this, psz_name );
907     if( i_var < 0 )
908     {
909         vlc_mutex_unlock( &p_priv->var_lock );
910         return i_var;
911     }
912
913     p_var = &p_priv->p_vars[i_var];
914
915     /* Backup needed stuff */
916     oldval = p_var->val;
917
918     /* Deal with callbacks. Tell we're in a callback, release the lock,
919      * call stored functions, retake the lock. */
920     if( p_var->i_entries )
921         i_ret = TriggerCallback( p_this, p_var, psz_name, oldval, oldval );
922
923     vlc_mutex_unlock( &p_priv->var_lock );
924     return i_ret;
925 }
926
927 /** Parse a stringified option
928  * This function parse a string option and create the associated object
929  * variable
930  * The option must be of the form "[no[-]]foo[=bar]" where foo is the
931  * option name and bar is the value of the option.
932  * \param p_obj the object in which the variable must be created
933  * \param psz_option the option to parse
934  * \param trusted whether the option is set by a trusted input or not
935  * \return nothing
936  */
937 void var_OptionParse( vlc_object_t *p_obj, const char *psz_option,
938                       bool trusted )
939 {
940     char *psz_name, *psz_value;
941     int  i_type;
942     bool b_isno = false;
943     vlc_value_t val;
944
945     val.psz_string = NULL;
946
947     /* It's too much of a hassle to remove the ':' when we parse
948      * the cmd line :) */
949     if( psz_option[0] == ':' )
950         psz_option++;
951
952     if( !psz_option[0] )
953         return;
954
955     psz_name = strdup( psz_option );
956     if( psz_name == NULL )
957         return;
958
959     psz_value = strchr( psz_name, '=' );
960     if( psz_value != NULL )
961         *psz_value++ = '\0';
962
963     /* FIXME: :programs should be handled generically */
964     if( !strcmp( psz_name, "programs" ) )
965         i_type = VLC_VAR_LIST;
966     else
967         i_type = config_GetType( p_obj, psz_name );
968
969     if( !i_type && !psz_value )
970     {
971         /* check for "no-foo" or "nofoo" */
972         if( !strncmp( psz_name, "no-", 3 ) )
973         {
974             memmove( psz_name, psz_name + 3, strlen(psz_name) + 1 - 3 );
975         }
976         else if( !strncmp( psz_name, "no", 2 ) )
977         {
978             memmove( psz_name, psz_name + 2, strlen(psz_name) + 1 - 2 );
979         }
980         else goto cleanup;           /* Option doesn't exist */
981
982         b_isno = true;
983         i_type = config_GetType( p_obj, psz_name );
984     }
985     if( !i_type ) goto cleanup; /* Option doesn't exist */
986
987     if( ( i_type != VLC_VAR_BOOL ) &&
988         ( !psz_value || !*psz_value ) ) goto cleanup; /* Invalid value */
989
990     /* check if option is unsafe */
991     if( !trusted )
992     {
993         module_config_t *p_config = config_FindConfig( p_obj, psz_name );
994         if( !p_config || !p_config->b_safe )
995         {
996             msg_Err( p_obj, "unsafe option \"%s\" has been ignored for "
997                             "security reasons", psz_name );
998             free( psz_name );
999             return;
1000         }
1001     }
1002
1003     /* Create the variable in the input object.
1004      * Children of the input object will be able to retreive this value
1005      * thanks to the inheritance property of the object variables. */
1006     var_Create( p_obj, psz_name, i_type );
1007
1008     switch( i_type )
1009     {
1010     case VLC_VAR_BOOL:
1011         val.b_bool = !b_isno;
1012         break;
1013
1014     case VLC_VAR_INTEGER:
1015         val.i_int = strtol( psz_value, NULL, 0 );
1016         break;
1017
1018     case VLC_VAR_FLOAT:
1019         val.f_float = atof( psz_value );
1020         break;
1021
1022     case VLC_VAR_STRING:
1023     case VLC_VAR_MODULE:
1024     case VLC_VAR_FILE:
1025     case VLC_VAR_DIRECTORY:
1026         val.psz_string = psz_value;
1027         break;
1028
1029     case VLC_VAR_LIST:
1030     {
1031         char *psz_orig, *psz_var;
1032         vlc_list_t *p_list = malloc(sizeof(vlc_list_t));
1033         val.p_list = p_list;
1034         p_list->i_count = 0;
1035
1036         psz_var = psz_orig = strdup(psz_value);
1037         while( psz_var && *psz_var )
1038         {
1039             char *psz_item = psz_var;
1040             vlc_value_t val2;
1041             while( *psz_var && *psz_var != ',' ) psz_var++;
1042             if( *psz_var == ',' )
1043             {
1044                 *psz_var = '\0';
1045                 psz_var++;
1046             }
1047             val2.i_int = strtol( psz_item, NULL, 0 );
1048             INSERT_ELEM( p_list->p_values, p_list->i_count,
1049                          p_list->i_count, val2 );
1050             /* p_list->i_count is incremented twice by INSERT_ELEM */
1051             p_list->i_count--;
1052             INSERT_ELEM( p_list->pi_types, p_list->i_count,
1053                          p_list->i_count, VLC_VAR_INTEGER );
1054         }
1055         free( psz_orig );
1056         break;
1057     }
1058
1059     default:
1060         goto cleanup;
1061     }
1062
1063     var_Set( p_obj, psz_name, val );
1064
1065     /* If that's a list, remove all elements allocated */
1066     if( i_type == VLC_VAR_LIST )
1067         FreeList( &val );
1068
1069 cleanup:
1070     free( psz_name );
1071 }
1072
1073
1074 /* Following functions are local */
1075
1076 /*****************************************************************************
1077  * GetUnused: find an unused (not in callback) variable from its name
1078  *****************************************************************************
1079  * We do i_tries tries before giving up, just in case the variable is being
1080  * modified and called from a callback.
1081  *****************************************************************************/
1082 static int GetUnused( vlc_object_t *p_this, const char *psz_name )
1083 {
1084     vlc_object_internals_t *p_priv = vlc_internals( p_this );
1085
1086     while( true )
1087     {
1088         int i_var;
1089
1090         i_var = Lookup( p_priv->p_vars, p_priv->i_vars, psz_name );
1091         if( i_var < 0 )
1092         {
1093             return VLC_ENOVAR;
1094         }
1095
1096         if( ! p_priv->p_vars[i_var].b_incallback )
1097         {
1098             return i_var;
1099         }
1100
1101         mutex_cleanup_push( &p_priv->var_lock );
1102         vlc_cond_wait( &p_priv->var_wait, &p_priv->var_lock );
1103         vlc_cleanup_pop( );
1104     }
1105 }
1106
1107 /*****************************************************************************
1108  * HashString: our cool hash function
1109  *****************************************************************************
1110  * This function is not intended to be crypto-secure, we only want it to be
1111  * fast and not suck too much. This one is pretty fast and did 0 collisions
1112  * in wenglish's dictionary.
1113  *****************************************************************************/
1114 static uint32_t HashString( const char *psz_string )
1115 {
1116     uint32_t i_hash = 0;
1117
1118     while( *psz_string )
1119     {
1120         i_hash += *psz_string++;
1121         i_hash += i_hash << 10;
1122         i_hash ^= i_hash >> 8;
1123     }
1124
1125     return i_hash;
1126 }
1127
1128 /*****************************************************************************
1129  * Insert: find an empty slot to insert a new variable
1130  *****************************************************************************
1131  * We use a recursive inner function indexed on the hash. This function does
1132  * nothing in the rare cases where a collision may occur, see Lookup()
1133  * to see how we handle them.
1134  * XXX: does this really need to be written recursively?
1135  *****************************************************************************/
1136 static int Insert( variable_t *p_vars, int i_count, const char *psz_name )
1137 {
1138     if( i_count == 0 )
1139     {
1140         return 0;
1141     }
1142
1143     return InsertInner( p_vars, i_count, HashString( psz_name ) );
1144 }
1145
1146 static int InsertInner( variable_t *p_vars, int i_count, uint32_t i_hash )
1147 {
1148     int i_middle;
1149
1150     if( i_hash <= p_vars[0].i_hash )
1151     {
1152         return 0;
1153     }
1154
1155     if( i_hash >= p_vars[i_count - 1].i_hash )
1156     {
1157         return i_count;
1158     }
1159
1160     i_middle = i_count / 2;
1161
1162     /* We know that 0 < i_middle */
1163     if( i_hash < p_vars[i_middle].i_hash )
1164     {
1165         return InsertInner( p_vars, i_middle, i_hash );
1166     }
1167
1168     /* We know that i_middle + 1 < i_count */
1169     if( i_hash > p_vars[i_middle + 1].i_hash )
1170     {
1171         return i_middle + 1 + InsertInner( p_vars + i_middle + 1,
1172                                            i_count - i_middle - 1,
1173                                            i_hash );
1174     }
1175
1176     return i_middle + 1;
1177 }
1178
1179 static int u32cmp( const void *key, const void *data )
1180 {
1181     const variable_t *p_var = data;
1182     uint32_t hash = *(const uint32_t *)key ;
1183
1184     if( hash > p_var->i_hash )
1185         return 1;
1186     if( hash < p_var->i_hash )
1187         return -1;
1188     return 0;
1189 }
1190
1191 /*****************************************************************************
1192  * Lookup: find an existing variable given its name
1193  *****************************************************************************
1194  * We use a recursive inner function indexed on the hash. Care is taken of
1195  * possible hash collisions.
1196  *****************************************************************************/
1197 static int Lookup( variable_t *p_vars, size_t i_count, const char *psz_name )
1198 {
1199     variable_t *p_var;
1200     uint32_t i_hash;
1201
1202     i_hash = HashString( psz_name );
1203     p_var = bsearch( &i_hash, p_vars, i_count, sizeof( *p_var ), u32cmp );
1204
1205     /* Hash not found */
1206     if( p_var == NULL )
1207         return -1;
1208
1209     assert( i_count > 0 );
1210
1211     /* Find the first entry with the right hash */
1212     while( (p_var > p_vars) && (i_hash == p_var[-1].i_hash) )
1213         p_var--;
1214
1215     assert( p_var->i_hash == i_hash );
1216
1217     /* Hash collision should be very unlikely, but we cannot guarantee
1218      * it will never happen. So we do an exhaustive search amongst all
1219      * entries with the same hash. Typically, there is only one anyway. */
1220     for( variable_t *p_end = p_vars + i_count;
1221          (p_var < p_end) && (i_hash == p_var->i_hash);
1222          p_var++ )
1223     {
1224         if( !strcmp( psz_name, p_var->psz_name ) )
1225             return p_var - p_vars;
1226     }
1227
1228     /* Hash found, but entry not found */
1229     return -1;
1230 }
1231
1232 /*****************************************************************************
1233  * CheckValue: check that a value is valid wrt. a variable
1234  *****************************************************************************
1235  * This function checks p_val's value against p_var's limitations such as
1236  * minimal and maximal value, step, in-list position, and modifies p_val if
1237  * necessary.
1238  ****************************************************************************/
1239 static void CheckValue ( variable_t *p_var, vlc_value_t *p_val )
1240 {
1241     /* Check that our variable is in the list */
1242     if( p_var->i_type & VLC_VAR_HASCHOICE && p_var->choices.i_count )
1243     {
1244         int i;
1245
1246         /* FIXME: the list is sorted, dude. Use something cleverer. */
1247         for( i = p_var->choices.i_count ; i-- ; )
1248         {
1249             if( p_var->ops->pf_cmp( *p_val, p_var->choices.p_values[i] ) == 0 )
1250             {
1251                 break;
1252             }
1253         }
1254
1255         /* If not found, change it to anything vaguely valid */
1256         if( i < 0 )
1257         {
1258             /* Free the old variable, get the new one, dup it */
1259             p_var->ops->pf_free( p_val );
1260             *p_val = p_var->choices.p_values[p_var->i_default >= 0
1261                                           ? p_var->i_default : 0 ];
1262             p_var->ops->pf_dup( p_val );
1263         }
1264     }
1265
1266     /* Check that our variable is within the bounds */
1267     switch( p_var->i_type & VLC_VAR_TYPE )
1268     {
1269         case VLC_VAR_INTEGER:
1270             if( p_var->i_type & VLC_VAR_HASSTEP && p_var->step.i_int
1271                  && (p_val->i_int % p_var->step.i_int) )
1272             {
1273                 p_val->i_int = (p_val->i_int + (p_var->step.i_int / 2))
1274                                / p_var->step.i_int * p_var->step.i_int;
1275             }
1276             if( p_var->i_type & VLC_VAR_HASMIN
1277                  && p_val->i_int < p_var->min.i_int )
1278             {
1279                 p_val->i_int = p_var->min.i_int;
1280             }
1281             if( p_var->i_type & VLC_VAR_HASMAX
1282                  && p_val->i_int > p_var->max.i_int )
1283             {
1284                 p_val->i_int = p_var->max.i_int;
1285             }
1286             break;
1287         case VLC_VAR_FLOAT:
1288             if( p_var->i_type & VLC_VAR_HASSTEP && p_var->step.f_float )
1289             {
1290                 float f_round = p_var->step.f_float * (float)(int)( 0.5 +
1291                                         p_val->f_float / p_var->step.f_float );
1292                 if( p_val->f_float != f_round )
1293                 {
1294                     p_val->f_float = f_round;
1295                 }
1296             }
1297             if( p_var->i_type & VLC_VAR_HASMIN
1298                  && p_val->f_float < p_var->min.f_float )
1299             {
1300                 p_val->f_float = p_var->min.f_float;
1301             }
1302             if( p_var->i_type & VLC_VAR_HASMAX
1303                  && p_val->f_float > p_var->max.f_float )
1304             {
1305                 p_val->f_float = p_var->max.f_float;
1306             }
1307             break;
1308         case VLC_VAR_TIME:
1309             /* FIXME: TODO */
1310             break;
1311     }
1312 }
1313
1314 /*****************************************************************************
1315  * InheritValue: try to inherit the value of this variable from the same one
1316  * in our closest parent, libvlc or ultimately from the configuration.
1317  * The function should always be entered with the object var_lock locked.
1318  *****************************************************************************/
1319 static int InheritValue( vlc_object_t *p_this, const char *psz_name,
1320                          vlc_value_t *p_val, int i_type )
1321 {
1322     int i_var;
1323     variable_t *p_var;
1324
1325     if( p_this->p_parent || ( p_this->p_libvlc && p_this != (vlc_object_t*) p_this->p_libvlc ) )
1326     {
1327         vlc_object_internals_t *p_priv;
1328
1329         if( p_this->p_parent )
1330             p_priv = vlc_internals( p_this->p_parent );
1331         else
1332             p_priv = vlc_internals( p_this->p_libvlc );
1333
1334         i_var = Lookup( p_priv->p_vars, p_priv->i_vars, psz_name );
1335
1336         if( i_var >= 0 )
1337         {
1338             /* We found it! */
1339             p_var = &p_priv->p_vars[i_var];
1340
1341             /* Really get the variable */
1342             *p_val = p_var->val;
1343
1344             /* Duplicate value if needed */
1345             p_var->ops->pf_dup( p_val );
1346
1347             /*msg_Dbg( p_this, "Inherited value for var %s from object %s",
1348                      psz_name ? psz_name : "(null)",
1349                      p_this->psz_object_name
1350                          ? p_this->psz_object_name : "(Unknown)" );*/
1351             return VLC_SUCCESS;
1352         }
1353         else if ( p_this->p_parent ) /* We are still not there */
1354             return InheritValue( p_this->p_parent, psz_name, p_val, i_type );
1355
1356         /* else take value from config */
1357     }
1358
1359
1360     switch( i_type & VLC_VAR_CLASS )
1361     {
1362         case VLC_VAR_STRING:
1363             p_val->psz_string = config_GetPsz( p_this, psz_name );
1364             if( !p_val->psz_string ) p_val->psz_string = strdup("");
1365             break;
1366         case VLC_VAR_FLOAT:
1367             p_val->f_float = config_GetFloat( p_this, psz_name );
1368             break;
1369         case VLC_VAR_INTEGER:
1370             p_val->i_int = config_GetInt( p_this, psz_name );
1371             break;
1372         case VLC_VAR_BOOL:
1373             p_val->b_bool = config_GetInt( p_this, psz_name );
1374             break;
1375         case VLC_VAR_LIST:
1376         {
1377             char *psz_orig, *psz_var;
1378             vlc_list_t *p_list = malloc(sizeof(vlc_list_t));
1379             p_val->p_list = p_list;
1380             p_list->i_count = 0;
1381
1382             psz_var = psz_orig = config_GetPsz( p_this, psz_name );
1383             while( psz_var && *psz_var )
1384             {
1385                 char *psz_item = psz_var;
1386                 vlc_value_t val;
1387                 while( *psz_var && *psz_var != ',' ) psz_var++;
1388                 if( *psz_var == ',' )
1389                 {
1390                     *psz_var = '\0';
1391                     psz_var++;
1392                 }
1393                 val.i_int = strtol( psz_item, NULL, 0 );
1394                 INSERT_ELEM( p_list->p_values, p_list->i_count,
1395                              p_list->i_count, val );
1396                 /* p_list->i_count is incremented twice by INSERT_ELEM */
1397                 p_list->i_count--;
1398                 INSERT_ELEM( p_list->pi_types, p_list->i_count,
1399                              p_list->i_count, VLC_VAR_INTEGER );
1400             }
1401             free( psz_orig );
1402             break;
1403         }
1404         default:
1405             msg_Warn( p_this, "Could not inherit value for var %s "
1406                               "from config. Invalid Type", psz_name );
1407             return VLC_ENOOBJ;
1408             break;
1409     }
1410     /*msg_Dbg( p_this, "Inherited value for var %s from config", psz_name );*/
1411     return VLC_SUCCESS;
1412 }
1413
1414
1415 /**********************************************************************
1416  * Trigger the callbacks
1417  **********************************************************************/
1418 static int TriggerCallback( vlc_object_t *p_this, variable_t *p_var,
1419                             const char *psz_name, vlc_value_t oldval,
1420                             vlc_value_t newval )
1421 {
1422     int i_var;
1423     int i_entries = p_var->i_entries;
1424     callback_entry_t *p_entries = p_var->p_entries;
1425     vlc_object_internals_t *p_priv = vlc_internals( p_this );
1426
1427     p_var->b_incallback = true;
1428     vlc_mutex_unlock( &p_priv->var_lock );
1429
1430     /* The real calls */
1431     for( ; i_entries-- ; )
1432     {
1433         p_entries[i_entries].pf_callback( p_this, psz_name, oldval, newval,
1434                                           p_entries[i_entries].p_data );
1435     }
1436
1437     vlc_mutex_lock( &p_priv->var_lock );
1438
1439     i_var = Lookup( p_priv->p_vars, p_priv->i_vars, psz_name );
1440     if( i_var < 0 )
1441     {
1442         msg_Err( p_this, "variable %s has disappeared", psz_name );
1443         return VLC_ENOVAR;
1444      }
1445
1446      p_var = &p_priv->p_vars[i_var];
1447      p_var->b_incallback = false;
1448      vlc_cond_broadcast( &p_priv->var_wait );
1449
1450      return VLC_SUCCESS;
1451 }
1452
1453
1454 /**********************************************************************
1455  * Execute a var command on an object identified by its name
1456  **********************************************************************/
1457 int __var_Command( vlc_object_t *p_this, const char *psz_name,
1458                    const char *psz_cmd, const char *psz_arg, char **psz_msg )
1459 {
1460     vlc_object_t *p_obj = vlc_object_find_name( p_this->p_libvlc,
1461                                                 psz_name, FIND_CHILD );
1462     int i_type, i_ret;
1463
1464     if( !p_obj )
1465     {
1466         if( psz_msg )
1467             *psz_msg = strdup( "Unknown destination object." );
1468         return VLC_ENOOBJ;
1469     }
1470
1471     i_type = var_Type( p_obj, psz_cmd );
1472     if( !( i_type&VLC_VAR_ISCOMMAND ) )
1473     {
1474         vlc_object_release( p_obj );
1475         if( psz_msg )
1476             *psz_msg = strdup( "Variable doesn't exist or isn't a command." );
1477         return VLC_EGENERIC;
1478     }
1479
1480     i_type &= VLC_VAR_CLASS;
1481     switch( i_type )
1482     {
1483         case VLC_VAR_INTEGER:
1484             i_ret = var_SetInteger( p_obj, psz_cmd, atoi( psz_arg ) );
1485             break;
1486         case VLC_VAR_FLOAT:
1487             i_ret = var_SetFloat( p_obj, psz_cmd, atof( psz_arg ) );
1488             break;
1489         case VLC_VAR_STRING:
1490             i_ret = var_SetString( p_obj, psz_cmd, psz_arg );
1491             break;
1492         case VLC_VAR_BOOL:
1493             i_ret = var_SetBool( p_obj, psz_cmd, atoi( psz_arg ) );
1494             break;
1495         default:
1496             i_ret = VLC_EGENERIC;
1497             break;
1498     }
1499
1500     vlc_object_release( p_obj );
1501
1502     if( psz_msg )
1503     {
1504         if( asprintf( psz_msg, "%s on object %s returned %i (%s)",
1505                   psz_cmd, psz_name, i_ret, vlc_error( i_ret ) ) == -1)
1506             *psz_msg = NULL;
1507     }
1508
1509     return i_ret;
1510 }
1511
1512
1513 /**
1514  * Free a list and the associated strings
1515  * @param p_val: the list variable
1516  * @param p_val2: the variable associated or NULL
1517  */
1518 void var_FreeList( vlc_value_t *p_val, vlc_value_t *p_val2 )
1519 {
1520     FreeList( p_val );
1521     if( p_val2 && p_val2->p_list )
1522     {
1523         for( int i = 0; i < p_val2->p_list->i_count; i++ )
1524             free( p_val2->p_list->p_values[i].psz_string );
1525         if( p_val2->p_list->i_count )
1526         {
1527             free( p_val2->p_list->p_values );
1528             free( p_val2->p_list->pi_types );
1529         }
1530         free( p_val2->p_list );
1531     }
1532 }