]> git.sesse.net Git - vlc/blob - src/misc/objects.c
Hide i_children and pp_children away
[vlc] / src / misc / objects.c
1 /*****************************************************************************
2  * objects.c: vlc_object_t handling
3  *****************************************************************************
4  * Copyright (C) 2004-2008 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  * \file
26  * This file contains the functions to handle the vlc_object_t type
27  */
28
29
30 /*****************************************************************************
31  * Preamble
32  *****************************************************************************/
33 #ifdef HAVE_CONFIG_H
34 # include "config.h"
35 #endif
36
37 #include <vlc/vlc.h>
38
39 #include "../libvlc.h"
40 #include <vlc_vout.h>
41 #include <vlc_aout.h>
42 #include "audio_output/aout_internal.h"
43
44 #include <vlc_access.h>
45 #include <vlc_demux.h>
46 #include <vlc_stream.h>
47
48 #include <vlc_sout.h>
49 #include "stream_output/stream_output.h"
50
51 #include "vlc_interface.h"
52 #include "vlc_codec.h"
53 #include "vlc_filter.h"
54
55 #include "variables.h"
56 #ifndef WIN32
57 # include <unistd.h>
58 #else
59 # include <io.h>
60 # include <fcntl.h>
61 # include <errno.h> /* ENOSYS */
62 #endif
63 #include <assert.h>
64
65 /*****************************************************************************
66  * Local prototypes
67  *****************************************************************************/
68 static int  DumpCommand( vlc_object_t *, char const *,
69                          vlc_value_t, vlc_value_t, void * );
70
71 static vlc_object_t * FindObject    ( vlc_object_t *, int, int );
72 static vlc_object_t * FindObjectName( vlc_object_t *, const char *, int );
73 static void           PrintObject   ( vlc_object_t *, const char * );
74 static void           DumpStructure ( vlc_object_t *, int, char * );
75 static int            FindIndex     ( vlc_object_t *, vlc_object_t **, int );
76
77 static vlc_list_t   * NewList       ( int );
78 static void           ListReplace   ( vlc_list_t *, vlc_object_t *, int );
79 /*static void           ListAppend    ( vlc_list_t *, vlc_object_t * );*/
80 static int            CountChildren ( vlc_object_t *, int );
81 static void           ListChildren  ( vlc_list_t *, vlc_object_t *, int );
82
83 static void vlc_object_destroy( vlc_object_t *p_this );
84 static void vlc_object_detach_unlocked (vlc_object_t *p_this);
85
86 /*****************************************************************************
87  * Local structure lock
88  *****************************************************************************/
89 static vlc_mutex_t    structure_lock;
90
91 void *vlc_custom_create( vlc_object_t *p_this, size_t i_size,
92                          int i_type, const char *psz_type )
93 {
94     vlc_object_t *p_new;
95     vlc_object_internals_t *p_priv;
96
97     /* NOTE:
98      * VLC objects are laid out as follow:
99      * - first the LibVLC-private per-object data,
100      * - then VLC_COMMON members from vlc_object_t,
101      * - finally, the type-specific data (if any).
102      *
103      * This function initializes the LibVLC and common data,
104      * and zeroes the rest.
105      */
106     p_priv = calloc( 1, sizeof( *p_priv ) + i_size );
107     if( p_priv == NULL )
108         return NULL;
109
110     assert (i_size >= sizeof (vlc_object_t));
111     p_new = (vlc_object_t *)(p_priv + 1);
112
113     p_new->i_object_type = i_type;
114     p_new->psz_object_type = psz_type;
115     p_new->psz_object_name = NULL;
116
117     p_new->b_die = false;
118     p_new->b_error = false;
119     p_new->b_dead = false;
120     p_new->b_force = false;
121
122     p_new->psz_header = NULL;
123
124     if (p_this)
125         p_new->i_flags = p_this->i_flags
126             & (OBJECT_FLAGS_NODBG|OBJECT_FLAGS_QUIET|OBJECT_FLAGS_NOINTERACT);
127
128     p_priv->p_vars = calloc( sizeof( variable_t ), 16 );
129
130     if( !p_priv->p_vars )
131     {
132         free( p_priv );
133         return NULL;
134     }
135
136     libvlc_global_data_t *p_libvlc_global;
137     if( p_this == NULL )
138     {
139         /* Only the global root object is created out of the blue */
140         p_libvlc_global = (libvlc_global_data_t *)p_new;
141         p_new->p_libvlc = NULL;
142
143         p_libvlc_global->i_counter = 0;
144         p_libvlc_global->i_objects = 0;
145         p_libvlc_global->pp_objects = NULL;
146         vlc_mutex_init( &structure_lock );
147     }
148     else
149     {
150         p_libvlc_global = vlc_global();
151         if( i_type == VLC_OBJECT_LIBVLC )
152             p_new->p_libvlc = (libvlc_int_t*)p_new;
153         else
154             p_new->p_libvlc = p_this->p_libvlc;
155     }
156
157     vlc_spin_init( &p_priv->ref_spin );
158     p_priv->i_refcount = 1;
159     p_priv->pf_destructor = NULL;
160     p_priv->b_thread = false;
161     p_new->p_parent = NULL;
162     p_priv->pp_children = NULL;
163     p_priv->i_children = 0;
164
165     p_new->p_private = NULL;
166
167     /* Initialize mutexes and condvars */
168     vlc_mutex_init( &p_new->object_lock );
169     vlc_cond_init( p_new, &p_new->object_wait );
170     vlc_mutex_init( &p_priv->var_lock );
171     vlc_spin_init( &p_priv->spin );
172     p_priv->pipes[0] = p_priv->pipes[1] = -1;
173
174     vlc_mutex_lock( &structure_lock );
175     p_new->i_object_id = p_libvlc_global->i_counter++;
176     /* Wooohaa! If *this* fails, we're in serious trouble! Anyway it's
177      * useless to try and recover anything if pp_objects gets smashed. */
178     TAB_APPEND( p_libvlc_global->i_objects, p_libvlc_global->pp_objects,
179                 p_new );
180     vlc_mutex_unlock( &structure_lock );
181
182     if( i_type == VLC_OBJECT_LIBVLC )
183     {
184         var_Create( p_new, "list", VLC_VAR_STRING | VLC_VAR_ISCOMMAND );
185         var_AddCallback( p_new, "list", DumpCommand, NULL );
186         var_Create( p_new, "tree", VLC_VAR_STRING | VLC_VAR_ISCOMMAND );
187         var_AddCallback( p_new, "tree", DumpCommand, NULL );
188         var_Create( p_new, "vars", VLC_VAR_STRING | VLC_VAR_ISCOMMAND );
189         var_AddCallback( p_new, "vars", DumpCommand, NULL );
190     }
191
192     return p_new;
193 }
194
195
196 /**
197  * Allocates and initializes a vlc object.
198  *
199  * @param i_type known object type (all of them are negative integer values),
200  *               or object byte size (always positive).
201  *
202  * @return the new object, or NULL on error.
203  */
204 void * __vlc_object_create( vlc_object_t *p_this, int i_type )
205 {
206     const char   * psz_type;
207     size_t         i_size;
208
209     switch( i_type )
210     {
211         case VLC_OBJECT_LIBVLC:
212             i_size = sizeof(libvlc_int_t);
213             psz_type = "libvlc";
214             break;
215         case VLC_OBJECT_INTF:
216             i_size = sizeof(intf_thread_t);
217             psz_type = "interface";
218             break;
219         case VLC_OBJECT_DIALOGS:
220             i_size = sizeof(intf_thread_t);
221             psz_type = "dialogs";
222             break;
223         case VLC_OBJECT_DEMUX:
224             i_size = sizeof(demux_t);
225             psz_type = "demux";
226             break;
227         case VLC_OBJECT_ACCESS:
228             i_size = sizeof(access_t);
229             psz_type = "access";
230             break;
231         case VLC_OBJECT_DECODER:
232             i_size = sizeof(decoder_t);
233             psz_type = "decoder";
234             break;
235         case VLC_OBJECT_PACKETIZER:
236             i_size = sizeof(decoder_t);
237             psz_type = "packetizer";
238             break;
239         case VLC_OBJECT_ENCODER:
240             i_size = sizeof(encoder_t);
241             psz_type = "encoder";
242             break;
243         case VLC_OBJECT_FILTER:
244             i_size = sizeof(filter_t);
245             psz_type = "filter";
246             break;
247         case VLC_OBJECT_VOUT:
248             i_size = sizeof(vout_thread_t);
249             psz_type = "video output";
250             break;
251         case VLC_OBJECT_AOUT:
252             i_size = sizeof(aout_instance_t);
253             psz_type = "audio output";
254             break;
255         case VLC_OBJECT_SOUT:
256             i_size = sizeof(sout_instance_t);
257             psz_type = "stream output";
258             break;
259         case VLC_OBJECT_OPENGL:
260             i_size = sizeof( vout_thread_t );
261             psz_type = "opengl";
262             break;
263         case VLC_OBJECT_ANNOUNCE:
264             i_size = sizeof( announce_handler_t );
265             psz_type = "announce";
266             break;
267         case VLC_OBJECT_INTERACTION:
268             i_size = sizeof( interaction_t );
269             psz_type = "interaction";
270             break;
271         default:
272             i_size = i_type > (int)sizeof(vlc_object_t)
273                          ? i_type : (int)sizeof(vlc_object_t);
274             i_type = VLC_OBJECT_GENERIC;
275             psz_type = "generic";
276             break;
277     }
278
279     return vlc_custom_create( p_this, i_size, i_type, psz_type );
280 }
281
282
283 /**
284  ****************************************************************************
285  * Set the destructor of a vlc object
286  *
287  * This function sets the destructor of the vlc object. It will be called
288  * when the object is destroyed when the its refcount reaches 0.
289  * (It is called by the internal function vlc_object_destroy())
290  *****************************************************************************/
291 void __vlc_object_set_destructor( vlc_object_t *p_this,
292                                   vlc_destructor_t pf_destructor )
293 {
294     vlc_object_internals_t *p_priv = vlc_internals(p_this );
295     p_priv->pf_destructor = pf_destructor;
296 }
297
298 /**
299  ****************************************************************************
300  * Destroy a vlc object (Internal)
301  *
302  * This function destroys an object that has been previously allocated with
303  * vlc_object_create. The object's refcount must be zero and it must not be
304  * attached to other objects in any way.
305  *****************************************************************************/
306 static void vlc_object_destroy( vlc_object_t *p_this )
307 {
308     vlc_object_internals_t *p_priv = vlc_internals( p_this );
309
310     /* Objects are always detached beforehand */
311     assert( !p_this->p_parent );
312
313     /* Send a kill to the object's thread if applicable */
314     vlc_object_kill( p_this );
315
316     /* If we are running on a thread, wait until it ends */
317     if( p_priv->b_thread )
318         vlc_thread_join( p_this );
319
320     /* Call the custom "subclass" destructor */
321     if( p_priv->pf_destructor )
322         p_priv->pf_destructor( p_this );
323
324     /* Sanity checks */
325     if( p_priv->i_children )
326     {
327         int i;
328
329         fprintf( stderr,
330                  "ERROR: cannot delete object (%i, %s) with %d children\n",
331                  p_this->i_object_id, p_this->psz_object_name,
332                  p_priv->i_children );
333
334         for( i = 0; i < p_priv->i_children; i++ )
335         {
336             fprintf( stderr,
337                      "ERROR: Remaining children object "
338                      "(id:%i, type:%s, name:%s)\n",
339                      p_priv->pp_children[i]->i_object_id,
340                      p_priv->pp_children[i]->psz_object_type,
341                      p_priv->pp_children[i]->psz_object_name );
342         }
343         fflush(stderr);
344
345         /* Dump libvlc object to ease debugging */
346         vlc_object_dump( p_this->p_libvlc );
347
348         abort();
349     }
350
351     /* Destroy the associated variables, starting from the end so that
352      * no memmove calls have to be done. */
353     while( p_priv->i_vars )
354     {
355         var_Destroy( p_this, p_priv->p_vars[p_priv->i_vars - 1].psz_name );
356     }
357
358     free( p_priv->p_vars );
359     vlc_mutex_destroy( &p_priv->var_lock );
360
361     free( p_this->psz_header );
362
363     if( p_this->p_libvlc == NULL )
364     {
365         libvlc_global_data_t *p_global = (libvlc_global_data_t *)p_this;
366
367 #ifndef NDEBUG
368         assert( p_global == vlc_global() );
369         /* Test for leaks */
370         if( p_global->i_objects > 0 )
371         {
372             int i;
373             for( i = 0; i < p_global->i_objects; i++ )
374             {
375                 /* We are leaking this object */
376                 fprintf( stderr,
377                          "ERROR: leaking object (id:%i, type:%s, name:%s)\n",
378                          p_global->pp_objects[i]->i_object_id,
379                          p_global->pp_objects[i]->psz_object_type,
380                          p_global->pp_objects[i]->psz_object_name );
381
382                 /* Dump libvlc object to ease debugging */
383                 vlc_object_dump( p_global->pp_objects[i] );
384
385                 fflush(stderr);
386             }
387
388             /* Dump libvlc object to ease debugging */
389             vlc_object_dump( p_this );
390
391             /* Strongly abort, cause we want these to be fixed */
392             abort();
393         }
394 #endif
395
396         /* We are the global object ... no need to lock. */
397         free( p_global->pp_objects );
398         p_global->pp_objects = NULL;
399
400         vlc_mutex_destroy( &structure_lock );
401     }
402
403     FREENULL( p_this->psz_object_name );
404
405 #if defined(WIN32) || defined(UNDER_CE)
406     /* if object has an associated thread, close it now */
407     if( p_priv->thread_id )
408        CloseHandle(p_priv->thread_id);
409 #endif
410
411     vlc_spin_destroy( &p_priv->ref_spin );
412     vlc_mutex_destroy( &p_this->object_lock );
413     vlc_cond_destroy( &p_this->object_wait );
414     vlc_spin_destroy( &p_priv->spin );
415     if( p_priv->pipes[1] != -1 )
416         close( p_priv->pipes[1] );
417     if( p_priv->pipes[0] != -1 )
418         close( p_priv->pipes[0] );
419
420     free( p_priv );
421 }
422
423
424 /** Inter-object signaling */
425
426 void __vlc_object_lock( vlc_object_t *obj )
427 {
428     vlc_mutex_lock( &obj->object_lock );
429 }
430
431 void __vlc_object_unlock( vlc_object_t *obj )
432 {
433     vlc_assert_locked( &obj->object_lock );
434     vlc_mutex_unlock( &obj->object_lock );
435 }
436
437 #ifdef WIN32
438 # include <winsock2.h>
439 # include <ws2tcpip.h>
440
441 /**
442  * select()-able pipes emulated using Winsock
443  */
444 static int pipe (int fd[2])
445 {
446     SOCKADDR_IN addr;
447     int addrlen = sizeof (addr);
448
449     SOCKET l = socket (PF_INET, SOCK_STREAM, IPPROTO_TCP), a,
450            c = socket (PF_INET, SOCK_STREAM, IPPROTO_TCP);
451     if ((l == INVALID_SOCKET) || (c == INVALID_SOCKET))
452         goto error;
453
454     memset (&addr, 0, sizeof (addr));
455     addr.sin_family = AF_INET;
456     addr.sin_addr.s_addr = htonl (INADDR_LOOPBACK);
457     if (bind (l, (PSOCKADDR)&addr, sizeof (addr))
458      || getsockname (l, (PSOCKADDR)&addr, &addrlen)
459      || listen (l, 1)
460      || connect (c, (PSOCKADDR)&addr, addrlen))
461         goto error;
462
463     a = accept (l, NULL, NULL);
464     if (a == INVALID_SOCKET)
465         goto error;
466
467     closesocket (l);
468     //shutdown (a, 0);
469     //shutdown (c, 1);
470     fd[0] = c;
471     fd[1] = a;
472     return 0;
473
474 error:
475     if (l != INVALID_SOCKET)
476         closesocket (l);
477     if (c != INVALID_SOCKET)
478         closesocket (c);
479     return -1;
480 }
481
482 #undef  read
483 #define read( a, b, c )  recv (a, b, c, 0)
484 #undef  write
485 #define write( a, b, c ) send (a, b, c, 0)
486 #undef  close
487 #define close( a )       closesocket (a)
488 #endif /* WIN32 */
489
490 /**
491  * Returns the readable end of a pipe that becomes readable once termination
492  * of the object is requested (vlc_object_kill()).
493  * This can be used to wake-up out of a select() or poll() event loop, such
494  * typically when doing network I/O.
495  *
496  * Note that the pipe will remain the same for the lifetime of the object.
497  * DO NOT read the pipe nor close it yourself. Ever.
498  *
499  * @param obj object that would be "killed"
500  * @return a readable pipe descriptor, or -1 on error.
501  */
502 int __vlc_object_waitpipe( vlc_object_t *obj )
503 {
504     int pfd[2] = { -1, -1 };
505     vlc_object_internals_t *internals = vlc_internals( obj );
506     bool killed = false;
507
508     vlc_spin_lock (&internals->spin);
509     if (internals->pipes[0] == -1)
510     {
511         /* This can only ever happen if someone killed us without locking: */
512         assert (internals->pipes[1] == -1);
513         vlc_spin_unlock (&internals->spin);
514
515         if (pipe (pfd))
516             return -1;
517
518         vlc_spin_lock (&internals->spin);
519         if (internals->pipes[0] == -1)
520         {
521             internals->pipes[0] = pfd[0];
522             internals->pipes[1] = pfd[1];
523             pfd[0] = pfd[1] = -1;
524         }
525         killed = obj->b_die;
526     }
527     vlc_spin_unlock (&internals->spin);
528
529     if (killed)
530     {
531         /* Race condition: vlc_object_kill() already invoked! */
532         int fd;
533
534         vlc_spin_lock (&internals->spin);
535         fd = internals->pipes[1];
536         internals->pipes[1] = -1;
537         vlc_spin_unlock (&internals->spin);
538
539         msg_Dbg (obj, "waitpipe: object already dying");
540         if (fd != -1)
541             close (fd);
542     }
543
544     /* Race condition: two threads call pipe() - unlikely */
545     if (pfd[0] != -1)
546         close (pfd[0]);
547     if (pfd[1] != -1)
548         close (pfd[1]);
549
550     return internals->pipes[0];
551 }
552
553
554 /**
555  * Waits for the object to be signaled (using vlc_object_signal()).
556  * If the object already has a signal pending, this function will return
557  * immediately. It is asserted that the caller holds the object lock.
558  *
559  * @return true if the object is dying and should terminate.
560  */
561 bool __vlc_object_wait( vlc_object_t *obj )
562 {
563     vlc_assert_locked( &obj->object_lock );
564     vlc_cond_wait( &obj->object_wait, &obj->object_lock );
565     return obj->b_die;
566 }
567
568
569 /**
570  * Waits for the object to be signaled (using vlc_object_signal()), or for
571  * a timer to expire.
572  * If the object already has a signal pending, this function will return
573  * immediately. It is asserted that the caller holds the object lock.
574  *
575  * @return negative if the object is dying and should terminate,
576  * positive if the the object has been signaled but is not dying,
577  * 0 if timeout has been reached.
578  */
579 int __vlc_object_timedwait( vlc_object_t *obj, mtime_t deadline )
580 {
581     int v;
582
583     vlc_assert_locked( &obj->object_lock );
584     v = vlc_cond_timedwait( &obj->object_wait, &obj->object_lock, deadline );
585     if( v == 0 ) /* signaled */
586         return obj->b_die ? -1 : 1;
587     return 0;
588 }
589
590
591 /**
592  * Checks whether an object has been "killed".
593  * The object lock must be held.
594  *
595  * Typical code for an object thread could be:
596  *
597    vlc_object_lock (self);
598    ...initialization...
599    while (vlc_object_alive (self))
600    {
601        ...preprocessing...
602
603        if (vlc_object_wait (self))
604            continue;
605
606        ...postprocessing...
607    }
608    ...deinitialization...
609    vlc_object_unlock (self);
610  *
611  *
612  * @return true iff the object has not been killed yet
613  */
614 bool __vlc_object_alive( vlc_object_t *obj )
615 {
616     vlc_assert_locked( &obj->object_lock );
617     return !obj->b_die;
618 }
619
620
621 /**
622  * Signals an object for which the lock is held.
623  */
624 void __vlc_object_signal_unlocked( vlc_object_t *obj )
625 {
626     vlc_assert_locked (&obj->object_lock);
627     vlc_cond_signal( &obj->object_wait );
628 }
629
630
631 /**
632  * Requests termination of an object.
633  * If the object is LibVLC, also request to terminate all its children.
634  */
635 void __vlc_object_kill( vlc_object_t *p_this )
636 {
637     vlc_object_internals_t *internals = vlc_internals( p_this );
638     int fd;
639
640     vlc_mutex_lock( &p_this->object_lock );
641     p_this->b_die = true;
642
643     vlc_spin_lock (&internals->spin);
644     fd = internals->pipes[1];
645     internals->pipes[1] = -1;
646     vlc_spin_unlock (&internals->spin);
647
648     if( fd != -1 )
649     {
650         msg_Dbg (p_this, "waitpipe: object killed");
651         close (fd);
652     }
653
654     if( p_this->i_object_type == VLC_OBJECT_LIBVLC )
655         for( int i = 0; i < internals->i_children ; i++ )
656             vlc_object_kill( internals->pp_children[i] );
657
658     vlc_object_signal_unlocked( p_this );
659     vlc_mutex_unlock( &p_this->object_lock );
660 }
661
662
663 /**
664  * find an object given its ID
665  *
666  * This function looks for the object whose i_object_id field is i_id. We
667  * use a dichotomy so that lookups are in log2(n).
668  *****************************************************************************/
669 void * vlc_object_get( int i_id )
670 {
671     int i_max, i_middle;
672     vlc_object_t **pp_objects;
673     libvlc_global_data_t *p_libvlc_global = vlc_global();
674     vlc_object_t *obj = NULL;
675
676     vlc_mutex_lock( &structure_lock );
677
678     pp_objects = p_libvlc_global->pp_objects;
679
680     /* Perform our dichotomy */
681     for( i_max = p_libvlc_global->i_objects - 1 ; ; )
682     {
683         i_middle = i_max / 2;
684
685         if( pp_objects[i_middle]->i_object_id > i_id )
686         {
687             i_max = i_middle;
688         }
689         else if( pp_objects[i_middle]->i_object_id < i_id )
690         {
691             if( i_middle )
692             {
693                 pp_objects += i_middle;
694                 i_max -= i_middle;
695             }
696             else
697             {
698                 /* This happens when there are only two remaining objects */
699                 if( pp_objects[i_middle+1]->i_object_id == i_id )
700                 {
701                     vlc_object_yield( pp_objects[i_middle+1] );
702                     obj = pp_objects[i_middle+1];
703                 }
704                 break;
705             }
706         }
707         else
708         {
709             vlc_object_yield( pp_objects[i_middle] );
710             obj = pp_objects[i_middle];
711             break;
712         }
713     }
714
715     vlc_mutex_unlock( &structure_lock );
716     return obj;
717 }
718
719 /**
720  ****************************************************************************
721  * find a typed object and increment its refcount
722  *****************************************************************************
723  * This function recursively looks for a given object type. i_mode can be one
724  * of FIND_PARENT, FIND_CHILD or FIND_ANYWHERE.
725  *****************************************************************************/
726 void * __vlc_object_find( vlc_object_t *p_this, int i_type, int i_mode )
727 {
728     vlc_object_t *p_found;
729
730     /* If we are of the requested type ourselves, don't look further */
731     if( !(i_mode & FIND_STRICT) && p_this->i_object_type == i_type )
732     {
733         vlc_object_yield( p_this );
734         return p_this;
735     }
736
737     vlc_mutex_lock( &structure_lock );
738
739     /* Otherwise, recursively look for the object */
740     if( (i_mode & 0x000f) == FIND_ANYWHERE )
741     {
742         vlc_object_t *p_root = p_this;
743
744         /* Find the root */
745         while( p_root->p_parent != NULL &&
746                p_root != VLC_OBJECT( p_this->p_libvlc ) )
747         {
748             p_root = p_root->p_parent;
749         }
750
751         p_found = FindObject( p_root, i_type, (i_mode & ~0x000f)|FIND_CHILD );
752         if( p_found == NULL && p_root != VLC_OBJECT( p_this->p_libvlc ) )
753         {
754             p_found = FindObject( VLC_OBJECT( p_this->p_libvlc ),
755                                   i_type, (i_mode & ~0x000f)|FIND_CHILD );
756         }
757     }
758     else
759     {
760         p_found = FindObject( p_this, i_type, i_mode );
761     }
762
763     vlc_mutex_unlock( &structure_lock );
764
765     return p_found;
766 }
767
768 /**
769  ****************************************************************************
770  * find a named object and increment its refcount
771  *****************************************************************************
772  * This function recursively looks for a given object name. i_mode can be one
773  * of FIND_PARENT, FIND_CHILD or FIND_ANYWHERE.
774  *****************************************************************************/
775 void * __vlc_object_find_name( vlc_object_t *p_this, const char *psz_name,
776                                int i_mode )
777 {
778     vlc_object_t *p_found;
779
780     /* If have the requested name ourselves, don't look further */
781     if( !(i_mode & FIND_STRICT)
782         && p_this->psz_object_name
783         && !strcmp( p_this->psz_object_name, psz_name ) )
784     {
785         vlc_object_yield( p_this );
786         return p_this;
787     }
788
789     vlc_mutex_lock( &structure_lock );
790
791     /* Otherwise, recursively look for the object */
792     if( (i_mode & 0x000f) == FIND_ANYWHERE )
793     {
794         vlc_object_t *p_root = p_this;
795
796         /* Find the root */
797         while( p_root->p_parent != NULL &&
798                p_root != VLC_OBJECT( p_this->p_libvlc ) )
799         {
800             p_root = p_root->p_parent;
801         }
802
803         p_found = FindObjectName( p_root, psz_name,
804                                  (i_mode & ~0x000f)|FIND_CHILD );
805         if( p_found == NULL && p_root != VLC_OBJECT( p_this->p_libvlc ) )
806         {
807             p_found = FindObjectName( VLC_OBJECT( p_this->p_libvlc ),
808                                       psz_name, (i_mode & ~0x000f)|FIND_CHILD );
809         }
810     }
811     else
812     {
813         p_found = FindObjectName( p_this, psz_name, i_mode );
814     }
815
816     vlc_mutex_unlock( &structure_lock );
817
818     return p_found;
819 }
820
821 /**
822  * Increment an object reference counter.
823  */
824 void __vlc_object_yield( vlc_object_t *p_this )
825 {
826     vlc_object_internals_t *internals = vlc_internals( p_this );
827
828     vlc_spin_lock( &internals->ref_spin );
829     /* Avoid obvious freed object uses */
830     assert( internals->i_refcount > 0 );
831     /* Increment the counter */
832     internals->i_refcount++;
833     vlc_spin_unlock( &internals->ref_spin );
834 }
835
836 /*****************************************************************************
837  * decrement an object refcount
838  * And destroy the object if its refcount reach zero.
839  *****************************************************************************/
840 void __vlc_object_release( vlc_object_t *p_this )
841 {
842     vlc_object_internals_t *internals = vlc_internals( p_this );
843     bool b_should_destroy;
844
845     vlc_spin_lock( &internals->ref_spin );
846     assert( internals->i_refcount > 0 );
847
848     if( internals->i_refcount > 1 )
849     {
850         /* Fast path */
851         /* There are still other references to the object */
852         internals->i_refcount--;
853         vlc_spin_unlock( &internals->ref_spin );
854         return;
855     }
856     vlc_spin_unlock( &internals->ref_spin );
857
858     /* Slow path */
859     /* Remember that we cannot hold the spin while waiting on the mutex */
860     vlc_mutex_lock( &structure_lock );
861     /* Take the spin again. Note that another thread may have yielded the
862      * object in the (very short) mean time. */
863     vlc_spin_lock( &internals->ref_spin );
864     b_should_destroy = --internals->i_refcount == 0;
865     vlc_spin_unlock( &internals->ref_spin );
866
867     if( b_should_destroy )
868     {
869         /* Remove the object from the table
870          * so that it cannot be encountered by vlc_object_get() */
871         libvlc_global_data_t *p_libvlc_global = vlc_global();
872         int i_index;
873
874         i_index = FindIndex( p_this, p_libvlc_global->pp_objects,
875                              p_libvlc_global->i_objects );
876         REMOVE_ELEM( p_libvlc_global->pp_objects,
877                      p_libvlc_global->i_objects, i_index );
878
879         /* Detach from parent to protect against FIND_CHILDREN */
880         if (p_this->p_parent)
881             vlc_object_detach_unlocked (p_this);
882         /* Detach from children to protect against FIND_PARENT */
883         for (int i = 0; i < internals->i_children; i++)
884             internals->pp_children[i]->p_parent = NULL;
885     }
886
887     vlc_mutex_unlock( &structure_lock );
888
889     if( b_should_destroy )
890         vlc_object_destroy( p_this );
891 }
892
893 /**
894  ****************************************************************************
895  * attach object to a parent object
896  *****************************************************************************
897  * This function sets p_this as a child of p_parent, and p_parent as a parent
898  * of p_this. This link can be undone using vlc_object_detach.
899  *****************************************************************************/
900 void __vlc_object_attach( vlc_object_t *p_this, vlc_object_t *p_parent )
901 {
902     if( !p_this ) return;
903
904     vlc_mutex_lock( &structure_lock );
905
906     /* Attach the parent to its child */
907     assert (!p_this->p_parent);
908     p_this->p_parent = p_parent;
909
910     /* Attach the child to its parent */
911     vlc_object_internals_t *priv = vlc_internals( p_parent );
912     INSERT_ELEM( priv->pp_children, priv->i_children, priv->i_children,
913                  p_this );
914
915     vlc_mutex_unlock( &structure_lock );
916 }
917
918
919 static void vlc_object_detach_unlocked (vlc_object_t *p_this)
920 {
921     assert (p_this->p_parent);
922
923     vlc_object_internals_t *priv = vlc_internals( p_this->p_parent );
924
925     int i_index, i;
926
927     /* Remove p_this's parent */
928     p_this->p_parent = NULL;
929
930     /* Remove all of p_parent's children which are p_this */
931     for( i_index = priv->i_children ; i_index-- ; )
932     {
933         if( priv->pp_children[i_index] == p_this )
934         {
935             priv->i_children--;
936             for( i = i_index ; i < priv->i_children ; i++ )
937                 priv->pp_children[i] = priv->pp_children[i+1];
938         }
939     }
940
941     if( priv->i_children )
942     {
943         priv->pp_children = (vlc_object_t **)realloc( priv->pp_children,
944                                priv->i_children * sizeof(vlc_object_t *) );
945     }
946     else
947     {
948         /* Special case - don't realloc() to zero to avoid leaking */
949         free( priv->pp_children );
950         priv->pp_children = NULL;
951     }
952 }
953
954
955 /**
956  ****************************************************************************
957  * detach object from its parent
958  *****************************************************************************
959  * This function removes all links between an object and its parent.
960  *****************************************************************************/
961 void __vlc_object_detach( vlc_object_t *p_this )
962 {
963     if( !p_this ) return;
964
965     vlc_mutex_lock( &structure_lock );
966
967     if( !p_this->p_parent )
968     {
969         msg_Err( p_this, "object is not attached" );
970         vlc_mutex_unlock( &structure_lock );
971         return;
972     }
973
974     vlc_object_detach_unlocked( p_this );
975     vlc_mutex_unlock( &structure_lock );
976 }
977
978
979 /**
980  ****************************************************************************
981  * find a list typed objects and increment their refcount
982  *****************************************************************************
983  * This function recursively looks for a given object type. i_mode can be one
984  * of FIND_PARENT, FIND_CHILD or FIND_ANYWHERE.
985  *****************************************************************************/
986 vlc_list_t * __vlc_list_find( vlc_object_t *p_this, int i_type, int i_mode )
987 {
988     vlc_list_t *p_list;
989     int i_count = 0;
990
991     /* Look for the objects */
992     switch( i_mode & 0x000f )
993     {
994     case FIND_ANYWHERE:
995         return vlc_list_find (vlc_global (), i_type, FIND_CHILD);
996
997     case FIND_CHILD:
998         vlc_mutex_lock( &structure_lock );
999         i_count = CountChildren( p_this, i_type );
1000         p_list = NewList( i_count );
1001
1002         /* Check allocation was successful */
1003         if( p_list->i_count != i_count )
1004         {
1005             msg_Err( p_this, "list allocation failed!" );
1006             p_list->i_count = 0;
1007             break;
1008         }
1009
1010         p_list->i_count = 0;
1011         ListChildren( p_list, p_this, i_type );
1012         vlc_mutex_unlock( &structure_lock );
1013         break;
1014
1015     default:
1016         msg_Err( p_this, "unimplemented!" );
1017         p_list = NewList( 0 );
1018         break;
1019     }
1020
1021     return p_list;
1022 }
1023
1024 /**
1025  * Gets the list of children of an objects, and increment their reference
1026  * count.
1027  * @return a list (possibly empty) or NULL in case of error.
1028  */
1029 vlc_list_t *__vlc_list_children( vlc_object_t *obj )
1030 {
1031     vlc_list_t *l;
1032     vlc_object_internals_t *priv = vlc_internals( obj );
1033
1034     vlc_mutex_lock( &structure_lock );
1035     l = NewList( priv->i_children );
1036     for (int i = 0; i < l->i_count; i++)
1037     {
1038         vlc_object_yield( priv->pp_children[i] );
1039         l->p_values[i].p_object = priv->pp_children[i];
1040     }
1041     vlc_mutex_unlock( &structure_lock );
1042     return l;
1043 }
1044
1045 /*****************************************************************************
1046  * DumpCommand: print the current vlc structure
1047  *****************************************************************************
1048  * This function prints either an ASCII tree showing the connections between
1049  * vlc objects, and additional information such as their refcount, thread ID,
1050  * etc. (command "tree"), or the same data as a simple list (command "list").
1051  *****************************************************************************/
1052 static int DumpCommand( vlc_object_t *p_this, char const *psz_cmd,
1053                         vlc_value_t oldval, vlc_value_t newval, void *p_data )
1054 {
1055     libvlc_global_data_t *p_libvlc_global = vlc_global();
1056
1057     (void)oldval; (void)p_data;
1058     if( *psz_cmd == 'l' )
1059     {
1060         vlc_mutex_lock( &structure_lock );
1061
1062         vlc_object_t **pp_current, **pp_end;
1063
1064         pp_current = p_libvlc_global->pp_objects;
1065         pp_end = pp_current + p_libvlc_global->i_objects;
1066
1067         for( ; pp_current < pp_end ; pp_current++ )
1068             PrintObject( *pp_current, "" );
1069
1070         vlc_mutex_unlock( &structure_lock );
1071     }
1072     else
1073     {
1074         vlc_object_t *p_object = NULL;
1075
1076         if( *newval.psz_string )
1077         {
1078             char *end;
1079             int i_id = strtol( newval.psz_string, &end, 0 );
1080             if( end != newval.psz_string )
1081                 p_object = vlc_object_get( i_id );
1082             else
1083             {
1084                 /* try using the object's name to find it */
1085                 vlc_object_t *p_libvlc = vlc_object_get( 1 );
1086                 if( p_libvlc )
1087                 {
1088                     /* Look in p_libvlc's children tree */
1089                     p_object = vlc_object_find_name( p_libvlc,
1090                                                      newval.psz_string,
1091                                                      FIND_CHILD );
1092                     vlc_object_release( p_libvlc );
1093                 }
1094                 if( !p_object )
1095                 {
1096                     /* If it's not in libvlc, look in libvlc_global (== p_this) */
1097                     p_object = vlc_object_find_name( p_this,
1098                                                      newval.psz_string,
1099                                                      FIND_CHILD );
1100                 }
1101             }
1102
1103             if( !p_object )
1104             {
1105                 return VLC_ENOOBJ;
1106             }
1107         }
1108
1109         vlc_mutex_lock( &structure_lock );
1110
1111         if( *psz_cmd == 't' )
1112         {
1113             char psz_foo[2 * MAX_DUMPSTRUCTURE_DEPTH + 1];
1114
1115             if( !p_object )
1116                 p_object = p_this->p_libvlc ? VLC_OBJECT(p_this->p_libvlc) : p_this;
1117
1118             psz_foo[0] = '|';
1119             DumpStructure( p_object, 0, psz_foo );
1120         }
1121         else if( *psz_cmd == 'v' )
1122         {
1123             int i;
1124
1125             if( !p_object )
1126                 p_object = p_this->p_libvlc ? VLC_OBJECT(p_this->p_libvlc) : p_this;
1127
1128             PrintObject( p_object, "" );
1129
1130             if( !vlc_internals( p_object )->i_vars )
1131                 printf( " `-o No variables\n" );
1132             for( i = 0; i < vlc_internals( p_object )->i_vars; i++ )
1133             {
1134                 variable_t *p_var = vlc_internals( p_object )->p_vars + i;
1135
1136                 const char *psz_type = "unknown";
1137                 switch( p_var->i_type & VLC_VAR_TYPE )
1138                 {
1139 #define MYCASE( type, nice )                \
1140                     case VLC_VAR_ ## type:  \
1141                         psz_type = nice;    \
1142                         break;
1143                     MYCASE( VOID, "void" );
1144                     MYCASE( BOOL, "bool" );
1145                     MYCASE( INTEGER, "integer" );
1146                     MYCASE( HOTKEY, "hotkey" );
1147                     MYCASE( STRING, "string" );
1148                     MYCASE( MODULE, "module" );
1149                     MYCASE( FILE, "file" );
1150                     MYCASE( DIRECTORY, "directory" );
1151                     MYCASE( VARIABLE, "variable" );
1152                     MYCASE( FLOAT, "float" );
1153                     MYCASE( TIME, "time" );
1154                     MYCASE( ADDRESS, "address" );
1155                     MYCASE( MUTEX, "mutex" );
1156                     MYCASE( LIST, "list" );
1157 #undef MYCASE
1158                 }
1159                 printf( " %c-o \"%s\" (%s",
1160                         i + 1 == vlc_internals( p_object )->i_vars ? '`' : '|',
1161                         p_var->psz_name, psz_type );
1162                 if( p_var->psz_text )
1163                     printf( ", %s", p_var->psz_text );
1164                 printf( ")" );
1165                 if( p_var->i_type & VLC_VAR_ISCOMMAND )
1166                     printf( ", command" );
1167                 if( p_var->i_entries )
1168                     printf( ", %d callbacks", p_var->i_entries );
1169                 switch( p_var->i_type & 0x00f0 )
1170                 {
1171                     case VLC_VAR_VOID:
1172                     case VLC_VAR_MUTEX:
1173                         break;
1174                     case VLC_VAR_BOOL:
1175                         printf( ": %s", p_var->val.b_bool ? "true" : "false" );
1176                         break;
1177                     case VLC_VAR_INTEGER:
1178                         printf( ": %d", p_var->val.i_int );
1179                         break;
1180                     case VLC_VAR_STRING:
1181                         printf( ": \"%s\"", p_var->val.psz_string );
1182                         break;
1183                     case VLC_VAR_FLOAT:
1184                         printf( ": %f", p_var->val.f_float );
1185                         break;
1186                     case VLC_VAR_TIME:
1187                         printf( ": %"PRIi64, (int64_t)p_var->val.i_time );
1188                         break;
1189                     case VLC_VAR_ADDRESS:
1190                         printf( ": %p", p_var->val.p_address );
1191                         break;
1192                     case VLC_VAR_LIST:
1193                         printf( ": TODO" );
1194                         break;
1195                 }
1196                 printf( "\n" );
1197             }
1198         }
1199
1200         vlc_mutex_unlock( &structure_lock );
1201
1202         if( *newval.psz_string )
1203         {
1204             vlc_object_release( p_object );
1205         }
1206     }
1207
1208     return VLC_SUCCESS;
1209 }
1210
1211 /*****************************************************************************
1212  * vlc_list_release: free a list previously allocated by vlc_list_find
1213  *****************************************************************************
1214  * This function decreases the refcount of all objects in the list and
1215  * frees the list.
1216  *****************************************************************************/
1217 void vlc_list_release( vlc_list_t *p_list )
1218 {
1219     int i_index;
1220
1221     for( i_index = 0; i_index < p_list->i_count; i_index++ )
1222     {
1223         vlc_object_release( p_list->p_values[i_index].p_object );
1224     }
1225
1226     free( p_list->p_values );
1227     free( p_list );
1228 }
1229
1230 /*****************************************************************************
1231  * dump an object. (Debug function)
1232  *****************************************************************************/
1233 void __vlc_object_dump( vlc_object_t *p_this )
1234 {
1235     vlc_mutex_lock( &structure_lock );
1236     char psz_foo[2 * MAX_DUMPSTRUCTURE_DEPTH + 1];
1237     psz_foo[0] = '|';
1238     DumpStructure( p_this, 0, psz_foo );
1239     vlc_mutex_unlock( &structure_lock );
1240 }
1241
1242 /* Following functions are local */
1243
1244 /*****************************************************************************
1245  * FindIndex: find the index of an object in an array of objects
1246  *****************************************************************************
1247  * This function assumes that p_this can be found in pp_objects. It will not
1248  * crash if p_this cannot be found, but will return a wrong value. It is your
1249  * duty to check the return value if you are not certain that the object could
1250  * be found for sure.
1251  *****************************************************************************/
1252 static int FindIndex( vlc_object_t *p_this,
1253                       vlc_object_t **pp_objects, int i_count )
1254 {
1255     int i_middle = i_count / 2;
1256
1257     if( i_count == 0 )
1258     {
1259         return 0;
1260     }
1261
1262     if( pp_objects[i_middle] == p_this )
1263     {
1264         return i_middle;
1265     }
1266
1267     if( i_count == 1 )
1268     {
1269         return 0;
1270     }
1271
1272     /* We take advantage of the sorted array */
1273     if( pp_objects[i_middle]->i_object_id < p_this->i_object_id )
1274     {
1275         return i_middle + FindIndex( p_this, pp_objects + i_middle,
1276                                              i_count - i_middle );
1277     }
1278     else
1279     {
1280         return FindIndex( p_this, pp_objects, i_middle );
1281     }
1282 }
1283
1284 static vlc_object_t * FindObject( vlc_object_t *p_this, int i_type, int i_mode )
1285 {
1286     int i;
1287     vlc_object_t *p_tmp;
1288
1289     switch( i_mode & 0x000f )
1290     {
1291     case FIND_PARENT:
1292         p_tmp = p_this->p_parent;
1293         if( p_tmp )
1294         {
1295             if( p_tmp->i_object_type == i_type )
1296             {
1297                 vlc_object_yield( p_tmp );
1298                 return p_tmp;
1299             }
1300             else
1301             {
1302                 return FindObject( p_tmp, i_type, i_mode );
1303             }
1304         }
1305         break;
1306
1307     case FIND_CHILD:
1308         for( i = vlc_internals( p_this )->i_children; i--; )
1309         {
1310             p_tmp = vlc_internals( p_this )->pp_children[i];
1311             if( p_tmp->i_object_type == i_type )
1312             {
1313                 vlc_object_yield( p_tmp );
1314                 return p_tmp;
1315             }
1316             else if( vlc_internals( p_tmp )->i_children )
1317             {
1318                 p_tmp = FindObject( p_tmp, i_type, i_mode );
1319                 if( p_tmp )
1320                 {
1321                     return p_tmp;
1322                 }
1323             }
1324         }
1325         break;
1326
1327     case FIND_ANYWHERE:
1328         /* Handled in vlc_object_find */
1329         break;
1330     }
1331
1332     return NULL;
1333 }
1334
1335 static vlc_object_t * FindObjectName( vlc_object_t *p_this,
1336                                       const char *psz_name,
1337                                       int i_mode )
1338 {
1339     int i;
1340     vlc_object_t *p_tmp;
1341
1342     switch( i_mode & 0x000f )
1343     {
1344     case FIND_PARENT:
1345         p_tmp = p_this->p_parent;
1346         if( p_tmp )
1347         {
1348             if( p_tmp->psz_object_name
1349                 && !strcmp( p_tmp->psz_object_name, psz_name ) )
1350             {
1351                 vlc_object_yield( p_tmp );
1352                 return p_tmp;
1353             }
1354             else
1355             {
1356                 return FindObjectName( p_tmp, psz_name, i_mode );
1357             }
1358         }
1359         break;
1360
1361     case FIND_CHILD:
1362         for( i = vlc_internals( p_this )->i_children; i--; )
1363         {
1364             p_tmp = vlc_internals( p_this )->pp_children[i];
1365             if( p_tmp->psz_object_name
1366                 && !strcmp( p_tmp->psz_object_name, psz_name ) )
1367             {
1368                 vlc_object_yield( p_tmp );
1369                 return p_tmp;
1370             }
1371             else if( vlc_internals( p_tmp )->i_children )
1372             {
1373                 p_tmp = FindObjectName( p_tmp, psz_name, i_mode );
1374                 if( p_tmp )
1375                 {
1376                     return p_tmp;
1377                 }
1378             }
1379         }
1380         break;
1381
1382     case FIND_ANYWHERE:
1383         /* Handled in vlc_object_find */
1384         break;
1385     }
1386
1387     return NULL;
1388 }
1389
1390
1391 static void PrintObject( vlc_object_t *p_this, const char *psz_prefix )
1392 {
1393     char psz_children[20], psz_refcount[20], psz_thread[30], psz_name[50],
1394          psz_parent[20];
1395
1396     memset( &psz_name, 0, sizeof(psz_name) );
1397     if( p_this->psz_object_name )
1398     {
1399         snprintf( psz_name, 49, " \"%s\"", p_this->psz_object_name );
1400         if( psz_name[48] )
1401             psz_name[48] = '\"';
1402     }
1403
1404     psz_children[0] = '\0';
1405     switch( vlc_internals( p_this )->i_children )
1406     {
1407         case 0:
1408             break;
1409         case 1:
1410             strcpy( psz_children, ", 1 child" );
1411             break;
1412         default:
1413             snprintf( psz_children, 19, ", %i children",
1414                       vlc_internals( p_this )->i_children );
1415             break;
1416     }
1417
1418     psz_refcount[0] = '\0';
1419     if( vlc_internals( p_this )->i_refcount > 0 )
1420         snprintf( psz_refcount, 19, ", refcount %u",
1421                   vlc_internals( p_this )->i_refcount );
1422
1423     psz_thread[0] = '\0';
1424     if( vlc_internals( p_this )->b_thread )
1425         snprintf( psz_thread, 29, " (thread %lu)",
1426                   (unsigned long)vlc_internals( p_this )->thread_id );
1427
1428     psz_parent[0] = '\0';
1429     if( p_this->p_parent )
1430         snprintf( psz_parent, 19, ", parent %i", p_this->p_parent->i_object_id );
1431
1432     printf( " %so %.8i %s%s%s%s%s%s\n", psz_prefix,
1433             p_this->i_object_id, p_this->psz_object_type,
1434             psz_name, psz_thread, psz_refcount, psz_children,
1435             psz_parent );
1436 }
1437
1438 static void DumpStructure( vlc_object_t *p_this, int i_level, char *psz_foo )
1439 {
1440     int i;
1441     char i_back = psz_foo[i_level];
1442     psz_foo[i_level] = '\0';
1443
1444     PrintObject( p_this, psz_foo );
1445
1446     psz_foo[i_level] = i_back;
1447
1448     if( i_level / 2 >= MAX_DUMPSTRUCTURE_DEPTH )
1449     {
1450         msg_Warn( p_this, "structure tree is too deep" );
1451         return;
1452     }
1453
1454     for( i = 0 ; i < vlc_internals( p_this )->i_children ; i++ )
1455     {
1456         if( i_level )
1457         {
1458             psz_foo[i_level-1] = ' ';
1459
1460             if( psz_foo[i_level-2] == '`' )
1461             {
1462                 psz_foo[i_level-2] = ' ';
1463             }
1464         }
1465
1466         if( i == vlc_internals( p_this )->i_children - 1 )
1467         {
1468             psz_foo[i_level] = '`';
1469         }
1470         else
1471         {
1472             psz_foo[i_level] = '|';
1473         }
1474
1475         psz_foo[i_level+1] = '-';
1476         psz_foo[i_level+2] = '\0';
1477
1478         DumpStructure( vlc_internals( p_this )->pp_children[i], i_level + 2,
1479                        psz_foo );
1480     }
1481 }
1482
1483 static vlc_list_t * NewList( int i_count )
1484 {
1485     vlc_list_t * p_list = (vlc_list_t *)malloc( sizeof( vlc_list_t ) );
1486     if( p_list == NULL )
1487     {
1488         return NULL;
1489     }
1490
1491     p_list->i_count = i_count;
1492
1493     if( i_count == 0 )
1494     {
1495         p_list->p_values = NULL;
1496         return p_list;
1497     }
1498
1499     p_list->p_values = malloc( i_count * sizeof( vlc_value_t ) );
1500     if( p_list->p_values == NULL )
1501     {
1502         p_list->i_count = 0;
1503         return p_list;
1504     }
1505
1506     return p_list;
1507 }
1508
1509 static void ListReplace( vlc_list_t *p_list, vlc_object_t *p_object,
1510                          int i_index )
1511 {
1512     if( p_list == NULL || i_index >= p_list->i_count )
1513     {
1514         return;
1515     }
1516
1517     vlc_object_yield( p_object );
1518
1519     p_list->p_values[i_index].p_object = p_object;
1520
1521     return;
1522 }
1523
1524 /*static void ListAppend( vlc_list_t *p_list, vlc_object_t *p_object )
1525 {
1526     if( p_list == NULL )
1527     {
1528         return;
1529     }
1530
1531     p_list->p_values = realloc( p_list->p_values, (p_list->i_count + 1)
1532                                 * sizeof( vlc_value_t ) );
1533     if( p_list->p_values == NULL )
1534     {
1535         p_list->i_count = 0;
1536         return;
1537     }
1538
1539     vlc_object_yield( p_object );
1540
1541     p_list->p_values[p_list->i_count].p_object = p_object;
1542     p_list->i_count++;
1543
1544     return;
1545 }*/
1546
1547 static int CountChildren( vlc_object_t *p_this, int i_type )
1548 {
1549     vlc_object_t *p_tmp;
1550     int i, i_count = 0;
1551
1552     for( i = 0; i < vlc_internals( p_this )->i_children; i++ )
1553     {
1554         p_tmp = vlc_internals( p_this )->pp_children[i];
1555
1556         if( p_tmp->i_object_type == i_type )
1557         {
1558             i_count++;
1559         }
1560         i_count += CountChildren( p_tmp, i_type );
1561     }
1562
1563     return i_count;
1564 }
1565
1566 static void ListChildren( vlc_list_t *p_list, vlc_object_t *p_this, int i_type )
1567 {
1568     vlc_object_t *p_tmp;
1569     int i;
1570
1571     for( i = 0; i < vlc_internals( p_this )->i_children; i++ )
1572     {
1573         p_tmp = vlc_internals( p_this )->pp_children[i];
1574
1575         if( p_tmp->i_object_type == i_type )
1576             ListReplace( p_list, p_tmp, p_list->i_count++ );
1577
1578         ListChildren( p_list, p_tmp, i_type );
1579     }
1580 }