root/src/misc/variables.c

Revision 5bd06c4b174082d6062e267565342c568ba6454d, 48.1 kB (checked in by Rémi Denis-Courmont <rdenis@simphalempin.com>, 1 week ago)

Remove the broken reference checker

  • Property mode set to 100644
Line 
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
38 /*****************************************************************************
39  * Private types
40  *****************************************************************************/
41 struct callback_entry_t
42 {
43     vlc_callback_t pf_callback;
44     void *         p_data;
45 };
46
47 /*****************************************************************************
48  * Local comparison functions, returns 0 if v == w, < 0 if v < w, > 0 if v > w
49  *****************************************************************************/
50 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; }
51 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; }
52 static int CmpTime( vlc_value_t v, vlc_value_t w )
53 {
54     return v.i_time == w.i_time ? 0 : v.i_time > w.i_time ? 1 : -1;
55 }
56 static int CmpString( vlc_value_t v, vlc_value_t w )
57 {
58     if( !v.psz_string )
59         return !w.psz_string ? 0 : -1;
60     else
61         return !w.psz_string ? 1 : strcmp( v.psz_string, w.psz_string );
62 }
63 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; }
64 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; }
65
66 /*****************************************************************************
67  * Local duplication functions, and local deallocation functions
68  *****************************************************************************/
69 static void DupDummy( vlc_value_t *p_val ) { (void)p_val; /* unused */ }
70 static void DupString( vlc_value_t *p_val ) { if( p_val->psz_string ) p_val->psz_string = strdup( p_val->psz_string ); }
71
72 static void DupList( vlc_value_t *p_val )
73 {
74     int i;
75     vlc_list_t *p_list = malloc( sizeof(vlc_list_t) );
76
77     p_list->i_count = p_val->p_list->i_count;
78     if( p_val->p_list->i_count )
79     {
80         p_list->p_values = malloc( p_list->i_count * sizeof(vlc_value_t) );
81         p_list->pi_types = malloc( p_list->i_count * sizeof(int) );
82     }
83     else
84     {
85         p_list->p_values = NULL;
86         p_list->pi_types = NULL;
87     }
88
89     for( i = 0; i < p_list->i_count; i++ )
90     {
91         p_list->p_values[i] = p_val->p_list->p_values[i];
92         p_list->pi_types[i] = p_val->p_list->pi_types[i];
93         switch( p_val->p_list->pi_types[i] & VLC_VAR_TYPE )
94         {
95         case VLC_VAR_STRING:
96
97             DupString( &p_list->p_values[i] );
98             break;
99         default:
100             break;
101         }
102     }
103
104     p_val->p_list = p_list;
105 }
106
107 static void FreeDummy( vlc_value_t *p_val ) { (void)p_val; /* unused */ }
108 static void FreeString( vlc_value_t *p_val ) { free( p_val->psz_string ); }
109 static void FreeMutex( vlc_value_t *p_val ) { vlc_mutex_destroy( (vlc_mutex_t*)p_val->p_address ); free( p_val->p_address ); }
110
111 static void FreeList( vlc_value_t *p_val )
112 {
113     int i;
114     for( i = 0; i < p_val->p_list->i_count; i++ )
115     {
116         switch( p_val->p_list->pi_types[i] & VLC_VAR_TYPE )
117         {
118         case VLC_VAR_STRING:
119             FreeString( &p_val->p_list->p_values[i] );
120             break;
121         case VLC_VAR_MUTEX:
122             FreeMutex( &p_val->p_list->p_values[i] );
123             break;
124         default:
125             break;
126         }
127     }
128
129     if( p_val->p_list->i_count )
130     {
131         free( p_val->p_list->p_values );
132         free( p_val->p_list->pi_types );
133     }
134     free( p_val->p_list );
135 }
136
137 /*****************************************************************************
138  * Local prototypes
139  *****************************************************************************/
140 static int      GetUnused   ( vlc_object_t *, const char * );
141 static uint32_t HashString  ( const char * );
142 static int      Insert      ( variable_t *, int, const char * );
143 static int      InsertInner ( variable_t *, int, uint32_t );
144 static int      Lookup      ( variable_t *, int, const char * );
145 static int      LookupInner ( variable_t *, int, uint32_t );
146
147 static void     CheckValue  ( variable_t *, vlc_value_t * );
148
149 static int      InheritValue( vlc_object_t *, const char *, vlc_value_t *,
150                               int );
151
152 /**
153  * Initialize a vlc variable
154  *
155  * We hash the given string and insert it into the sorted list. The insertion
156  * may require slow memory copies, but think about what we gain in the log(n)
157  * lookup phase when setting/getting the variable value!
158  *
159  * \param p_this The object in which to create the variable
160  * \param psz_name The name of the variable
161  * \param i_type The variables type. Must be one of \ref var_type combined with
162  *               zero or more \ref var_flags
163  */
164 int __var_Create( vlc_object_t *p_this, const char *psz_name, int i_type )
165 {
166     int i_new;
167     variable_t *p_var;
168     static vlc_list_t dummy_null_list = {0, NULL, NULL};
169     vlc_object_internals_t *p_priv = vlc_internals( p_this );
170
171     vlc_mutex_lock( &p_priv->var_lock );
172
173     /* FIXME: if the variable already exists, we don't duplicate it. But we
174      * duplicate the lookups. It's not that serious, but if anyone finds some
175      * time to rework Insert() so that only one lookup has to be done, feel
176      * free to do so. */
177     i_new = Lookup( p_priv->p_vars, p_priv->i_vars, psz_name );
178
179     if( i_new >= 0 )
180     {
181         /* If the types differ, variable creation failed. */
182         if( (i_type & ~(VLC_VAR_DOINHERIT|VLC_VAR_ISCOMMAND)) != p_priv->p_vars[i_new].i_type )
183         {
184             vlc_mutex_unlock( &p_priv->var_lock );
185             return VLC_EBADVAR;
186         }
187
188         p_priv->p_vars[i_new].i_usage++;
189         if( i_type & VLC_VAR_ISCOMMAND )
190             p_priv->p_vars[i_new].i_type |= VLC_VAR_ISCOMMAND;
191         vlc_mutex_unlock( &p_priv->var_lock );
192         return VLC_SUCCESS;
193     }
194
195     i_new = Insert( p_priv->p_vars, p_priv->i_vars, psz_name );
196
197     if( (p_priv->i_vars & 15) == 15 )
198     {
199         p_priv->p_vars = realloc( p_priv->p_vars,
200                                   (p_priv->i_vars+17) * sizeof(variable_t) );
201     }
202
203     memmove( p_priv->p_vars + i_new + 1,
204              p_priv->p_vars + i_new,
205              (p_priv->i_vars - i_new) * sizeof(variable_t) );
206
207     p_priv->i_vars++;
208
209     p_var = &p_priv->p_vars[i_new];
210     memset( p_var, 0, sizeof(*p_var) );
211
212     p_var->i_hash = HashString( psz_name );
213     p_var->psz_name = strdup( psz_name );
214     p_var->psz_text = NULL;
215
216     p_var->i_type = i_type & ~VLC_VAR_DOINHERIT;
217     memset( &p_var->val, 0, sizeof(vlc_value_t) );
218
219     p_var->pf_dup = DupDummy;
220     p_var->pf_free = FreeDummy;
221
222     p_var->i_usage = 1;
223
224     p_var->i_default = -1;
225     p_var->choices.i_count = 0;
226     p_var->choices.p_values = NULL;
227     p_var->choices_text.i_count = 0;
228     p_var->choices_text.p_values = NULL;
229
230     p_var->b_incallback = false;
231     p_var->i_entries = 0;
232     p_var->p_entries = NULL;
233
234     /* Always initialize the variable, even if it is a list variable; this
235      * will lead to errors if the variable is not initialized, but it will
236      * not cause crashes in the variable handling. */
237     switch( i_type & VLC_VAR_TYPE )
238     {
239         case VLC_VAR_BOOL:
240             p_var->pf_cmp = CmpBool;
241             p_var->val.b_bool = false;
242             break;
243         case VLC_VAR_INTEGER:
244         case VLC_VAR_HOTKEY:
245             p_var->pf_cmp = CmpInt;
246             p_var->val.i_int = 0;
247             break;
248         case VLC_VAR_STRING:
249         case VLC_VAR_MODULE:
250         case VLC_VAR_FILE:
251         case VLC_VAR_DIRECTORY:
252         case VLC_VAR_VARIABLE:
253             p_var->pf_cmp = CmpString;
254             p_var->pf_dup = DupString;
255             p_var->pf_free = FreeString;
256             p_var->val.psz_string = NULL;
257             break;
258         case VLC_VAR_FLOAT:
259             p_var->pf_cmp = CmpFloat;
260             p_var->val.f_float = 0.0;
261             break;
262         case VLC_VAR_TIME:
263             p_var->pf_cmp = CmpTime;
264             p_var->val.i_time = 0;
265             break;
266         case VLC_VAR_ADDRESS:
267             p_var->pf_cmp = CmpAddress;
268             p_var->val.p_address = NULL;
269             break;
270         case VLC_VAR_MUTEX:
271             p_var->pf_cmp = CmpAddress;
272             p_var->pf_free = FreeMutex;
273             p_var->val.p_address = malloc( sizeof(vlc_mutex_t) );
274             vlc_mutex_init( (vlc_mutex_t*)p_var->val.p_address );
275             break;
276         case VLC_VAR_LIST:
277             p_var->pf_cmp = CmpAddress;
278             p_var->pf_dup = DupList;
279             p_var->pf_free = FreeList;
280             p_var->val.p_list = &dummy_null_list;
281             break;
282     }
283
284     /* Duplicate the default data we stored. */
285     p_var->pf_dup( &p_var->val );
286
287     if( i_type & VLC_VAR_DOINHERIT )
288     {
289         vlc_value_t val;
290
291         if( InheritValue( p_this, psz_name, &val, p_var->i_type )
292             == VLC_SUCCESS )
293         {
294             /* Free data if needed */
295             p_var->pf_free( &p_var->val );
296             /* Set the variable */
297             p_var->val = val;
298
299             if( i_type & VLC_VAR_HASCHOICE )
300             {
301                 /* We must add the inherited value to our choice list */
302                 p_var->i_default = 0;
303
304                 INSERT_ELEM( p_var->choices.p_values, p_var->choices.i_count,
305                              0, val );
306                 INSERT_ELEM( p_var->choices_text.p_values,
307                              p_var->choices_text.i_count, 0, val );
308                 p_var->pf_dup( &p_var->choices.p_values[0] );
309                 p_var->choices_text.p_values[0].psz_string = NULL;
310             }
311         }
312     }
313
314     vlc_mutex_unlock( &p_priv->var_lock );
315
316     return VLC_SUCCESS;
317 }
318
319 /**
320  * Destroy a vlc variable
321  *
322  * Look for the variable and destroy it if it is found. As in var_Create we
323  * do a call to memmove() but we have performance counterparts elsewhere.
324  *
325  * \param p_this The object that holds the variable
326  * \param psz_name The name of the variable
327  */
328 int __var_Destroy( vlc_object_t *p_this, const char *psz_name )
329 {
330     int i_var, i;
331     variable_t *p_var;
332     vlc_object_internals_t *p_priv = vlc_internals( p_this );
333
334     vlc_mutex_lock( &p_priv->var_lock );
335
336     i_var = GetUnused( p_this, psz_name );
337     if( i_var < 0 )
338     {
339         vlc_mutex_unlock( &p_priv->var_lock );
340         return i_var;
341     }
342
343     p_var = &p_priv->p_vars[i_var];
344
345     if( p_var->i_usage > 1 )
346     {
347         p_var->i_usage--;
348         vlc_mutex_unlock( &p_priv->var_lock );
349         return VLC_SUCCESS;
350     }
351
352     /* Free value if needed */
353     p_var->pf_free( &p_var->val );
354
355     /* Free choice list if needed */
356     if( p_var->choices.i_count )
357     {
358         for( i = 0 ; i < p_var->choices.i_count ; i++ )
359         {
360             p_var->pf_free( &p_var->choices.p_values[i] );
361             free( p_var->choices_text.p_values[i].psz_string );
362         }
363         free( p_var->choices.p_values );
364         free( p_var->choices_text.p_values );
365     }
366
367     /* Free callbacks if needed */
368     if( p_var->p_entries )
369     {
370         free( p_var->p_entries );
371     }
372
373     free( p_var->psz_name );
374     free( p_var->psz_text );
375
376     memmove( p_priv->p_vars + i_var,
377              p_priv->p_vars + i_var + 1,
378              (p_priv->i_vars - i_var - 1) * sizeof(variable_t) );
379
380     if( (p_priv->i_vars & 15) == 0 )
381     {
382         p_priv->p_vars = realloc( p_priv->p_vars,
383                           (p_priv->i_vars) * sizeof( variable_t ) );
384     }
385
386     p_priv->i_vars--;
387
388     vlc_mutex_unlock( &p_priv->var_lock );
389
390     return VLC_SUCCESS;
391 }
392
393 /**
394  * Perform an action on a variable
395  *
396  * \param p_this The object that holds the variable
397  * \param psz_name The name of the variable
398  * \param i_action The action to perform. Must be one of \ref var_action
399  * \param p_val First action parameter
400  * \param p_val2 Second action parameter
401  */
402 int __var_Change( vlc_object_t *p_this, const char *psz_name,
403                   int i_action, vlc_value_t *p_val, vlc_value_t *p_val2 )
404 {
405     int i_var, i;
406     variable_t *p_var;
407     vlc_value_t oldval;
408     vlc_object_internals_t *p_priv = vlc_internals( p_this );
409
410     vlc_mutex_lock( &p_priv->var_lock );
411
412     i_var = Lookup( p_priv->p_vars, p_priv->i_vars, psz_name );
413
414     if( i_var < 0 )
415     {
416         vlc_mutex_unlock( &p_priv->var_lock );
417         return VLC_ENOVAR;
418     }
419
420     p_var = &p_priv->p_vars[i_var];
421
422     switch( i_action )
423     {
424         case VLC_VAR_SETMIN:
425             if( p_var->i_type & VLC_VAR_HASMIN )
426             {
427                 p_var->pf_free( &p_var->min );
428             }
429             p_var->i_type |= VLC_VAR_HASMIN;
430             p_var->min = *p_val;
431             p_var->pf_dup( &p_var->min );
432             CheckValue( p_var, &p_var->val );
433             break;
434         case VLC_VAR_GETMIN:
435             if( p_var->i_type & VLC_VAR_HASMIN )
436             {
437                 *p_val = p_var->min;
438             }
439             break;
440         case VLC_VAR_SETMAX:
441             if( p_var->i_type & VLC_VAR_HASMAX )
442             {
443                 p_var->pf_free( &p_var->max );
444             }
445             p_var->i_type |= VLC_VAR_HASMAX;
446             p_var->max = *p_val;
447             p_var->pf_dup( &p_var->max );
448             CheckValue( p_var, &p_var->val );
449             break;
450         case VLC_VAR_GETMAX:
451             if( p_var->i_type & VLC_VAR_HASMAX )
452             {
453                 *p_val = p_var->max;
454             }
455             break;
456         case VLC_VAR_SETSTEP:
457             if( p_var->i_type & VLC_VAR_HASSTEP )
458             {
459                 p_var->pf_free( &p_var->step );
460             }
461             p_var->i_type |= VLC_VAR_HASSTEP;
462             p_var->step = *p_val;
463             p_var->pf_dup( &p_var->step );
464             CheckValue( p_var, &p_var->val );
465             break;
466         case VLC_VAR_GETSTEP:
467             if( p_var->i_type & VLC_VAR_HASSTEP )
468             {
469                 *p_val = p_var->step;
470             }
471             break;
472         case VLC_VAR_ADDCHOICE:
473             i = p_var->choices.i_count;
474
475             INSERT_ELEM( p_var->choices.p_values, p_var->choices.i_count,
476                          i, *p_val );
477             INSERT_ELEM( p_var->choices_text.p_values,
478                          p_var->choices_text.i_count, i, *p_val );
479             p_var->pf_dup( &p_var->choices.p_values[i] );
480             p_var->choices_text.p_values[i].psz_string =
481                 ( p_val2 && p_val2->psz_string ) ?
482                 strdup( p_val2->psz_string ) : NULL;
483
484             CheckValue( p_var, &p_var->val );
485             break;
486         case VLC_VAR_DELCHOICE:
487             for( i = 0 ; i < p_var->choices.i_count ; i++ )
488             {
489                 if( p_var->pf_cmp( p_var->choices.p_values[i], *p_val ) == 0 )
490                 {
491                     break;
492                 }
493             }
494
495             if( i == p_var->choices.i_count )
496             {
497                 /* Not found */
498                 vlc_mutex_unlock( &p_priv->var_lock );
499                 return VLC_EGENERIC;
500             }
501
502             if( p_var->i_default > i )
503             {
504                 p_var->i_default--;
505             }
506             else if( p_var->i_default == i )
507             {
508                 p_var->i_default = -1;
509             }
510
511             p_var->pf_free( &p_var->choices.p_values[i] );
512             free( p_var->choices_text.p_values[i].psz_string );
513             REMOVE_ELEM( p_var->choices.p_values, p_var->choices.i_count, i );
514             REMOVE_ELEM( p_var->choices_text.p_values,
515                          p_var->choices_text.i_count, i );
516
517             CheckValue( p_var, &p_var->val );
518             break;
519         case VLC_VAR_CHOICESCOUNT:
520             p_val->i_int = p_var->choices.i_count;
521             break;
522         case VLC_VAR_CLEARCHOICES:
523             for( i = 0 ; i < p_var->choices.i_count ; i++ )
524             {
525                 p_var->pf_free( &p_var->choices.p_values[i] );
526             }
527             for( i = 0 ; i < p_var->choices_text.i_count ; i++ )
528                 free( p_var->choices_text.p_values[i].psz_string );
529
530             if( p_var->choices.i_count ) free( p_var->choices.p_values );
531             if( p_var->choices_text.i_count ) free( p_var->choices_text.p_values );
532
533             p_var->choices.i_count = 0;
534             p_var->choices.p_values = NULL;
535             p_var->choices_text.i_count = 0;
536             p_var->choices_text.p_values = NULL;
537             p_var->i_default = -1;
538             break;
539         case VLC_VAR_SETDEFAULT:
540             /* FIXME: the list is sorted, dude. Use something cleverer. */
541             for( i = 0 ; i < p_var->choices.i_count ; i++ )
542             {
543                 if( p_var->pf_cmp( p_var->choices.p_values[i], *p_val ) == 0 )
544                 {
545                     break;
546                 }
547             }
548
549             if( i == p_var->choices.i_count )
550             {
551                 /* Not found */
552                 break;
553             }
554
555             p_var->i_default = i;
556             CheckValue( p_var, &p_var->val );
557             break;
558         case VLC_VAR_SETVALUE:
559             /* Duplicate data if needed */
560             p_var->pf_dup( p_val );
561             /* Backup needed stuff */
562             oldval = p_var->val;
563             /* Check boundaries and list */
564             CheckValue( p_var, p_val );
565             /* Set the variable */
566             p_var->val = *p_val;
567             /* Free data if needed */
568             p_var->pf_free( &oldval );
569             break;
570         case VLC_VAR_GETCHOICES:
571         case VLC_VAR_GETLIST:
572             p_val->p_list = malloc( sizeof(vlc_list_t) );
573             if( p_val2 ) p_val2->p_list = malloc( sizeof(vlc_list_t) );
574             if( p_var->choices.i_count )
575             {
576                 p_val->p_list->p_values = malloc( p_var->choices.i_count
577                                                   * sizeof(vlc_value_t) );
578                 p_val->p_list->pi_types = malloc( p_var->choices.i_count
579                                                   * sizeof(int) );
580                 if( p_val2 )
581                 {
582                     p_val2->p_list->p_values =
583                         malloc( p_var->choices.i_count * sizeof(vlc_value_t) );
584                     p_val2->p_list->pi_types =
585                         malloc( p_var->choices.i_count * sizeof(int) );
586                 }
587             }
588             p_val->p_list->i_count = p_var->choices.i_count;
589             if( p_val2 ) p_val2->p_list->i_count = p_var->choices.i_count;
590             for( i = 0 ; i < p_var->choices.i_count ; i++ )
591             {
592                 p_val->p_list->p_values[i] = p_var->choices.p_values[i];
593                 p_val->p_list->pi_types[i] = p_var->i_type;
594                 p_var->pf_dup( &p_val->p_list->p_values[i] );
595                 if( p_val2 )
596                 {
597                     p_val2->p_list->p_values[i].psz_string =
598                         p_var->choices_text.p_values[i].psz_string ?
599                     strdup(p_var->choices_text.p_values[i].psz_string) : NULL;
600                     p_val2->p_list->pi_types[i] = VLC_VAR_STRING;
601                 }
602             }
603             break;
604         case VLC_VAR_FREELIST:
605             FreeList( p_val );
606             if( p_val2 && p_val2->p_list )
607             {
608                 for( i = 0; i < p_val2->p_list->i_count; i++ )
609                     free( p_val2->p_list->p_values[i].psz_string );
610                 if( p_val2->p_list->i_count )
611                 {
612                     free( p_val2->p_list->p_values );
613                     free( p_val2->p_list->pi_types );
614                 }
615                 free( p_val2->p_list );
616             }
617             break;
618         case VLC_VAR_SETTEXT:
619             free( p_var->psz_text );
620             if( p_val && p_val->psz_string )
621                 p_var->psz_text = strdup( p_val->psz_string );
622             break;
623         case VLC_VAR_GETTEXT:
624             p_val->psz_string = NULL;
625             if( p_var->psz_text )
626             {
627                 p_val->psz_string = strdup( p_var->psz_text );
628             }
629             break;
630         case VLC_VAR_INHERITVALUE:
631             {
632                 vlc_value_t val;
633
634                 if( InheritValue( p_this,
635                                   p_val2 ? p_val2->psz_string :  psz_name,
636                                   &val, p_var->i_type )
637                     == VLC_SUCCESS )
638                 {
639                     /* Duplicate already done */
640
641                     /* Backup needed stuff */
642                     oldval = p_var->val;
643                     /* Check boundaries and list */
644                     CheckValue( p_var, &val );
645                     /* Set the variable */
646                     p_var->val = val;
647                     /* Free data if needed */
648                     p_var->pf_free( &oldval );
649                 }
650
651                 if( p_val )
652                 {
653                     *p_val = p_var->val;
654                     p_var->pf_dup( p_val );
655                 }
656             }
657             break;
658         case VLC_VAR_TRIGGER_CALLBACKS:
659             {
660                 /* Deal with callbacks. Tell we're in a callback, release the lock,
661                  * call stored functions, retake the lock. */
662                 if( p_var->i_entries )
663                 {
664                     int i_var;
665                     int i_entries = p_var->i_entries;
666                     callback_entry_t *p_entries = p_var->p_entries;
667
668                     p_var->b_incallback = true;
669                     vlc_mutex_unlock( &p_priv->var_lock );
670
671                     /* The real calls */
672                     for( ; i_entries-- ; )
673                     {
674                         p_entries[i_entries].pf_callback( p_this, psz_name, p_var->val, p_var->val,
675                                                           p_entries[i_entries].p_data );
676                     }
677
678                     vlc_mutex_lock( &p_priv->var_lock );
679
680                     i_var = Lookup( p_priv->p_vars, p_priv->i_vars, psz_name );
681                     if( i_var < 0 )
682                     {
683                         msg_Err( p_this, "variable %s has disappeared", psz_name );
684                         vlc_mutex_unlock( &p_priv->var_lock );
685                         return VLC_ENOVAR;
686                     }
687
688                     p_var = &p_priv->p_vars[i_var];
689                     p_var->b_incallback = false;
690                 }
691             }
692             break;
693
694         case VLC_VAR_SETISCOMMAND:
695             p_var->i_type |= VLC_VAR_ISCOMMAND;
696             break;
697
698         default:
699             break;
700     }
701
702     vlc_mutex_unlock( &p_priv->var_lock );
703
704     return VLC_SUCCESS;
705 }
706
707 /**
708  * Request a variable's type
709  *
710  * \return The variable type if it exists, or 0 if the
711  * variable could not be found.
712  * \see \ref var_type
713  */
714 int __var_Type( vlc_object_t *p_this, const char *psz_name )
715 {
716     int i_var, i_type;
717     vlc_object_internals_t *p_priv = vlc_internals( p_this );
718
719     vlc_mutex_lock( &p_priv->var_lock );
720
721     i_var = Lookup( p_priv->p_vars, p_priv->i_vars, psz_name );
722
723     if( i_var < 0 )
724     {
725         vlc_mutex_unlock( &p_priv->var_lock );
726         return 0;
727     }
728
729     i_type = p_priv->p_vars[i_var].i_type;
730
731     vlc_mutex_unlock( &p_priv->var_lock );
732
733     return i_type;
734 }
735
736 /**
737  * Set a variable's value
738  *
739  * \param p_this The object that hold the variable
740  * \param psz_name The name of the variable
741  * \param val the value to set
742  */
743 int __var_Set( vlc_object_t *p_this, const char *psz_name, vlc_value_t val )
744 {
745     int i_var;
746     variable_t *p_var;
747     vlc_value_t oldval;
748     vlc_object_internals_t *p_priv = vlc_internals( p_this );
749
750     vlc_mutex_lock( &p_priv->var_lock );
751
752     i_var = GetUnused( p_this, psz_name );
753     if( i_var < 0 )
754     {
755         vlc_mutex_unlock( &p_priv->var_lock );
756         return i_var;
757     }
758
759     p_var = &p_priv->p_vars[i_var];
760
761     /* Duplicate data if needed */
762     p_var->pf_dup( &val );
763
764     /* Backup needed stuff */
765     oldval = p_var->val;
766
767     /* Check boundaries and list */
768     CheckValue( p_var, &val );
769
770     /* Set the variable */
771     p_var->val = val;
772
773     /* Deal with callbacks. Tell we're in a callback, release the lock,
774      * call stored functions, retake the lock. */
775     if( p_var->i_entries )
776     {
777         int i_var;
778         int i_entries = p_var->i_entries;
779         callback_entry_t *p_entries = p_var->p_entries;
780
781         p_var->b_incallback = true;
782         vlc_mutex_unlock( &p_priv->var_lock );
783
784         /* The real calls */
785         for( ; i_entries-- ; )
786         {
787             p_entries[i_entries].pf_callback( p_this, psz_name, oldval, val,
788                                               p_entries[i_entries].p_data );
789         }
790
791         vlc_mutex_lock( &p_priv->var_lock );
792
793         i_var = Lookup( p_priv->p_vars, p_priv->i_vars, psz_name );
794         if( i_var < 0 )
795         {
796             msg_Err( p_this, "variable %s has disappeared", psz_name );
797             vlc_mutex_unlock( &p_priv->var_lock );
798             return VLC_ENOVAR;
799         }
800
801         p_var = &p_priv->p_vars[i_var];
802         p_var->b_incallback = false;
803     }
804
805     /* Free data if needed */
806     p_var->pf_free( &oldval );
807
808     vlc_mutex_unlock( &p_priv->var_lock );
809
810     return VLC_SUCCESS;
811 }
812
813 /**
814  * Get a variable's value
815  *
816  * \param p_this The object that holds the variable
817  * \param psz_name The name of the variable
818  * \param p_val Pointer to a vlc_value_t that will hold the variable's value
819  *              after the function is finished
820  */
821 int __var_Get( vlc_object_t *p_this, const char *psz_name, vlc_value_t *p_val )
822 {
823     int i_var;
824     variable_t *p_var;
825     vlc_object_internals_t *p_priv = vlc_internals( p_this );
826
827     vlc_mutex_lock( &p_priv->var_lock );
828
829     i_var = Lookup( p_priv->p_vars, p_priv->i_vars, psz_name );
830
831     if( i_var < 0 )
832     {
833         vlc_mutex_unlock( &p_priv->var_lock );
834         return VLC_ENOVAR;
835     }
836
837     p_var = &p_priv->p_vars[i_var];
838
839     /* Really get the variable */
840     *p_val = p_var->val;
841
842     /* Duplicate value if needed */
843     p_var->pf_dup( p_val );
844
845     vlc_mutex_unlock( &p_priv->var_lock );
846
847     return VLC_SUCCESS;
848 }
849
850
851 /**
852  * Finds a process-wide mutex, creates it if needed, and locks it.
853  * Unlock with vlc_mutex_unlock().
854  */
855 vlc_mutex_t *var_AcquireMutex( const char *name )
856 {
857     libvlc_global_data_t *p_global = vlc_global();
858     vlc_value_t val;
859
860     if( var_Create( p_global, name, VLC_VAR_MUTEX ) )
861         return NULL;
862
863     var_Get( p_global, name, &val );
864     vlc_mutex_lock( val.p_address );
865     return val.p_address;
866 }
867
868
869 /**
870  * Register a callback in a variable
871  *
872  * We store a function pointer that will be called upon variable
873  * modification.
874  *
875  * \param p_this The object that holds the variable
876  * \param psz_name The name of the variable
877  * \param pf_callback The function pointer
878  * \param p_data A generic pointer that will be passed as the last
879  *               argument to the callback function.
880  *
881  * \warning The callback function is run in the thread that calls var_Set on
882  *          the variable. Use proper locking. This thread may not have much
883  *          time to spare, so keep callback functions short.
884  */
885 int __var_AddCallback( vlc_object_t *p_this, const char *psz_name,
886                        vlc_callback_t pf_callback, void *p_data )
887 {
888     int i_var;
889     variable_t *p_var;
890     callback_entry_t entry;
891     vlc_object_internals_t *p_priv = vlc_internals( p_this );
892
893     entry.pf_callback = pf_callback;
894     entry.p_data = p_data;
895
896     vlc_mutex_lock( &p_priv->var_lock );
897
898     i_var = GetUnused( p_this, psz_name );
899     if( i_var < 0 )
900     {
901         vlc_mutex_unlock( &p_priv->var_lock );
902         return i_var;
903     }
904
905     p_var = &p_priv->p_vars[i_var];
906
907     INSERT_ELEM( p_var->p_entries,
908                  p_var->i_entries,
909                  p_var->i_entries,
910                  entry );
911
912     vlc_mutex_unlock( &p_priv->var_lock );
913
914     return VLC_SUCCESS;
915 }
916
917 /**
918  * Remove a callback from a variable
919  *
920  * pf_callback and p_data have to be given again, because different objects
921  * might have registered the same callback function.
922  */