]> git.sesse.net Git - vlc/blob - src/misc/objects.c
4afc08c83d4be6bf108b67713120ade78efd0503
[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     vlc_assert_locked (&structure_lock);
922
923     if (p_this->p_parent == NULL)
924         return;
925
926     vlc_object_internals_t *priv = vlc_internals( p_this->p_parent );
927
928     int i_index, i;
929
930     /* Remove p_this's parent */
931     p_this->p_parent = NULL;
932
933     /* Remove all of p_parent's children which are p_this */
934     for( i_index = priv->i_children ; i_index-- ; )
935     {
936         if( priv->pp_children[i_index] == p_this )
937         {
938             priv->i_children--;
939             for( i = i_index ; i < priv->i_children ; i++ )
940                 priv->pp_children[i] = priv->pp_children[i+1];
941         }
942     }
943
944     if( priv->i_children )
945     {
946         priv->pp_children = (vlc_object_t **)realloc( priv->pp_children,
947                                priv->i_children * sizeof(vlc_object_t *) );
948     }
949     else
950     {
951         /* Special case - don't realloc() to zero to avoid leaking */
952         free( priv->pp_children );
953         priv->pp_children = NULL;
954     }
955 }
956
957
958 /**
959  ****************************************************************************
960  * detach object from its parent
961  *****************************************************************************
962  * This function removes all links between an object and its parent.
963  *****************************************************************************/
964 void __vlc_object_detach( vlc_object_t *p_this )
965 {
966     if( !p_this ) return;
967
968     vlc_mutex_lock( &structure_lock );
969
970     if( !p_this->p_parent )
971     {
972         msg_Err( p_this, "object is not attached" );
973         vlc_mutex_unlock( &structure_lock );
974         return;
975     }
976
977     vlc_object_detach_unlocked( p_this );
978     vlc_mutex_unlock( &structure_lock );
979 }
980
981
982 /**
983  ****************************************************************************
984  * find a list typed objects and increment their refcount
985  *****************************************************************************
986  * This function recursively looks for a given object type. i_mode can be one
987  * of FIND_PARENT, FIND_CHILD or FIND_ANYWHERE.
988  *****************************************************************************/
989 vlc_list_t * __vlc_list_find( vlc_object_t *p_this, int i_type, int i_mode )
990 {
991     vlc_list_t *p_list;
992     int i_count = 0;
993
994     /* Look for the objects */
995     switch( i_mode & 0x000f )
996     {
997     case FIND_ANYWHERE:
998         return vlc_list_find (vlc_global (), i_type, FIND_CHILD);
999
1000     case FIND_CHILD:
1001         vlc_mutex_lock( &structure_lock );
1002         i_count = CountChildren( p_this, i_type );
1003         p_list = NewList( i_count );
1004
1005         /* Check allocation was successful */
1006         if( p_list->i_count != i_count )
1007         {
1008             msg_Err( p_this, "list allocation failed!" );
1009             p_list->i_count = 0;
1010             break;
1011         }
1012
1013         p_list->i_count = 0;
1014         ListChildren( p_list, p_this, i_type );
1015         vlc_mutex_unlock( &structure_lock );
1016         break;
1017
1018     default:
1019         msg_Err( p_this, "unimplemented!" );
1020         p_list = NewList( 0 );
1021         break;
1022     }
1023
1024     return p_list;
1025 }
1026
1027 /**
1028  * Gets the list of children of an objects, and increment their reference
1029  * count.
1030  * @return a list (possibly empty) or NULL in case of error.
1031  */
1032 vlc_list_t *__vlc_list_children( vlc_object_t *obj )
1033 {
1034     vlc_list_t *l;
1035     vlc_object_internals_t *priv = vlc_internals( obj );
1036
1037     vlc_mutex_lock( &structure_lock );
1038     l = NewList( priv->i_children );
1039     for (int i = 0; i < l->i_count; i++)
1040     {
1041         vlc_object_yield( priv->pp_children[i] );
1042         l->p_values[i].p_object = priv->pp_children[i];
1043     }
1044     vlc_mutex_unlock( &structure_lock );
1045     return l;
1046 }
1047
1048 /*****************************************************************************
1049  * DumpCommand: print the current vlc structure
1050  *****************************************************************************
1051  * This function prints either an ASCII tree showing the connections between
1052  * vlc objects, and additional information such as their refcount, thread ID,
1053  * etc. (command "tree"), or the same data as a simple list (command "list").
1054  *****************************************************************************/
1055 static int DumpCommand( vlc_object_t *p_this, char const *psz_cmd,
1056                         vlc_value_t oldval, vlc_value_t newval, void *p_data )
1057 {
1058     libvlc_global_data_t *p_libvlc_global = vlc_global();
1059
1060     (void)oldval; (void)p_data;
1061     if( *psz_cmd == 'l' )
1062     {
1063         vlc_mutex_lock( &structure_lock );
1064
1065         vlc_object_t **pp_current, **pp_end;
1066
1067         pp_current = p_libvlc_global->pp_objects;
1068         pp_end = pp_current + p_libvlc_global->i_objects;
1069
1070         for( ; pp_current < pp_end ; pp_current++ )
1071             PrintObject( *pp_current, "" );
1072
1073         vlc_mutex_unlock( &structure_lock );
1074     }
1075     else
1076     {
1077         vlc_object_t *p_object = NULL;
1078
1079         if( *newval.psz_string )
1080         {
1081             char *end;
1082             int i_id = strtol( newval.psz_string, &end, 0 );
1083             if( end != newval.psz_string )
1084                 p_object = vlc_object_get( i_id );
1085             else
1086             {
1087                 /* try using the object's name to find it */
1088                 vlc_object_t *p_libvlc = vlc_object_get( 1 );
1089                 if( p_libvlc )
1090                 {
1091                     /* Look in p_libvlc's children tree */
1092                     p_object = vlc_object_find_name( p_libvlc,
1093                                                      newval.psz_string,
1094                                                      FIND_CHILD );
1095                     vlc_object_release( p_libvlc );
1096                 }
1097                 if( !p_object )
1098                 {
1099                     /* If it's not in libvlc, look in libvlc_global (== p_this) */
1100                     p_object = vlc_object_find_name( p_this,
1101                                                      newval.psz_string,
1102                                                      FIND_CHILD );
1103                 }
1104             }
1105
1106             if( !p_object )
1107             {
1108                 return VLC_ENOOBJ;
1109             }
1110         }
1111
1112         vlc_mutex_lock( &structure_lock );
1113
1114         if( *psz_cmd == 't' )
1115         {
1116             char psz_foo[2 * MAX_DUMPSTRUCTURE_DEPTH + 1];
1117
1118             if( !p_object )
1119                 p_object = p_this->p_libvlc ? VLC_OBJECT(p_this->p_libvlc) : p_this;
1120
1121             psz_foo[0] = '|';
1122             DumpStructure( p_object, 0, psz_foo );
1123         }
1124         else if( *psz_cmd == 'v' )
1125         {
1126             int i;
1127
1128             if( !p_object )
1129                 p_object = p_this->p_libvlc ? VLC_OBJECT(p_this->p_libvlc) : p_this;
1130
1131             PrintObject( p_object, "" );
1132
1133             if( !vlc_internals( p_object )->i_vars )
1134                 printf( " `-o No variables\n" );
1135             for( i = 0; i < vlc_internals( p_object )->i_vars; i++ )
1136             {
1137                 variable_t *p_var = vlc_internals( p_object )->p_vars + i;
1138
1139                 const char *psz_type = "unknown";
1140                 switch( p_var->i_type & VLC_VAR_TYPE )
1141                 {
1142 #define MYCASE( type, nice )                \
1143                     case VLC_VAR_ ## type:  \
1144                         psz_type = nice;    \
1145                         break;
1146                     MYCASE( VOID, "void" );
1147                     MYCASE( BOOL, "bool" );
1148                     MYCASE( INTEGER, "integer" );
1149                     MYCASE( HOTKEY, "hotkey" );
1150                     MYCASE( STRING, "string" );
1151                     MYCASE( MODULE, "module" );
1152                     MYCASE( FILE, "file" );
1153                     MYCASE( DIRECTORY, "directory" );
1154                     MYCASE( VARIABLE, "variable" );
1155                     MYCASE( FLOAT, "float" );
1156                     MYCASE( TIME, "time" );
1157                     MYCASE( ADDRESS, "address" );
1158                     MYCASE( MUTEX, "mutex" );
1159                     MYCASE( LIST, "list" );
1160 #undef MYCASE
1161                 }
1162                 printf( " %c-o \"%s\" (%s",
1163                         i + 1 == vlc_internals( p_object )->i_vars ? '`' : '|',
1164                         p_var->psz_name, psz_type );
1165                 if( p_var->psz_text )
1166                     printf( ", %s", p_var->psz_text );
1167                 printf( ")" );
1168                 if( p_var->i_type & VLC_VAR_ISCOMMAND )
1169                     printf( ", command" );
1170                 if( p_var->i_entries )
1171                     printf( ", %d callbacks", p_var->i_entries );
1172                 switch( p_var->i_type & 0x00f0 )
1173                 {
1174                     case VLC_VAR_VOID:
1175                     case VLC_VAR_MUTEX:
1176                         break;
1177                     case VLC_VAR_BOOL:
1178                         printf( ": %s", p_var->val.b_bool ? "true" : "false" );
1179                         break;
1180                     case VLC_VAR_INTEGER:
1181                         printf( ": %d", p_var->val.i_int );
1182                         break;
1183                     case VLC_VAR_STRING:
1184                         printf( ": \"%s\"", p_var->val.psz_string );
1185                         break;
1186                     case VLC_VAR_FLOAT:
1187                         printf( ": %f", p_var->val.f_float );
1188                         break;
1189                     case VLC_VAR_TIME:
1190                         printf( ": %"PRIi64, (int64_t)p_var->val.i_time );
1191                         break;
1192                     case VLC_VAR_ADDRESS:
1193                         printf( ": %p", p_var->val.p_address );
1194                         break;
1195                     case VLC_VAR_LIST:
1196                         printf( ": TODO" );
1197                         break;
1198                 }
1199                 printf( "\n" );
1200             }
1201         }
1202
1203         vlc_mutex_unlock( &structure_lock );
1204
1205         if( *newval.psz_string )
1206         {
1207             vlc_object_release( p_object );
1208         }
1209     }
1210
1211     return VLC_SUCCESS;
1212 }
1213
1214 /*****************************************************************************
1215  * vlc_list_release: free a list previously allocated by vlc_list_find
1216  *****************************************************************************
1217  * This function decreases the refcount of all objects in the list and
1218  * frees the list.
1219  *****************************************************************************/
1220 void vlc_list_release( vlc_list_t *p_list )
1221 {
1222     int i_index;
1223
1224     for( i_index = 0; i_index < p_list->i_count; i_index++ )
1225     {
1226         vlc_object_release( p_list->p_values[i_index].p_object );
1227     }
1228
1229     free( p_list->p_values );
1230     free( p_list );
1231 }
1232
1233 /*****************************************************************************
1234  * dump an object. (Debug function)
1235  *****************************************************************************/
1236 void __vlc_object_dump( vlc_object_t *p_this )
1237 {
1238     vlc_mutex_lock( &structure_lock );
1239     char psz_foo[2 * MAX_DUMPSTRUCTURE_DEPTH + 1];
1240     psz_foo[0] = '|';
1241     DumpStructure( p_this, 0, psz_foo );
1242     vlc_mutex_unlock( &structure_lock );
1243 }
1244
1245 /* Following functions are local */
1246
1247 /*****************************************************************************
1248  * FindIndex: find the index of an object in an array of objects
1249  *****************************************************************************
1250  * This function assumes that p_this can be found in pp_objects. It will not
1251  * crash if p_this cannot be found, but will return a wrong value. It is your
1252  * duty to check the return value if you are not certain that the object could
1253  * be found for sure.
1254  *****************************************************************************/
1255 static int FindIndex( vlc_object_t *p_this,
1256                       vlc_object_t **pp_objects, int i_count )
1257 {
1258     int i_middle = i_count / 2;
1259
1260     if( i_count == 0 )
1261     {
1262         return 0;
1263     }
1264
1265     if( pp_objects[i_middle] == p_this )
1266     {
1267         return i_middle;
1268     }
1269
1270     if( i_count == 1 )
1271     {
1272         return 0;
1273     }
1274
1275     /* We take advantage of the sorted array */
1276     if( pp_objects[i_middle]->i_object_id < p_this->i_object_id )
1277     {
1278         return i_middle + FindIndex( p_this, pp_objects + i_middle,
1279                                              i_count - i_middle );
1280     }
1281     else
1282     {
1283         return FindIndex( p_this, pp_objects, i_middle );
1284     }
1285 }
1286
1287 static vlc_object_t * FindObject( vlc_object_t *p_this, int i_type, int i_mode )
1288 {
1289     int i;
1290     vlc_object_t *p_tmp;
1291
1292     switch( i_mode & 0x000f )
1293     {
1294     case FIND_PARENT:
1295         p_tmp = p_this->p_parent;
1296         if( p_tmp )
1297         {
1298             if( p_tmp->i_object_type == i_type )
1299             {
1300                 vlc_object_yield( p_tmp );
1301                 return p_tmp;
1302             }
1303             else
1304             {
1305                 return FindObject( p_tmp, i_type, i_mode );
1306             }
1307         }
1308         break;
1309
1310     case FIND_CHILD:
1311         for( i = vlc_internals( p_this )->i_children; i--; )
1312         {
1313             p_tmp = vlc_internals( p_this )->pp_children[i];
1314             if( p_tmp->i_object_type == i_type )
1315             {
1316                 vlc_object_yield( p_tmp );
1317                 return p_tmp;
1318             }
1319             else if( vlc_internals( p_tmp )->i_children )
1320             {
1321                 p_tmp = FindObject( p_tmp, i_type, i_mode );
1322                 if( p_tmp )
1323                 {
1324                     return p_tmp;
1325                 }
1326             }
1327         }
1328         break;
1329
1330     case FIND_ANYWHERE:
1331         /* Handled in vlc_object_find */
1332         break;
1333     }
1334
1335     return NULL;
1336 }
1337
1338 static vlc_object_t * FindObjectName( vlc_object_t *p_this,
1339                                       const char *psz_name,
1340                                       int i_mode )
1341 {
1342     int i;
1343     vlc_object_t *p_tmp;
1344
1345     switch( i_mode & 0x000f )
1346     {
1347     case FIND_PARENT:
1348         p_tmp = p_this->p_parent;
1349         if( p_tmp )
1350         {
1351             if( p_tmp->psz_object_name
1352                 && !strcmp( p_tmp->psz_object_name, psz_name ) )
1353             {
1354                 vlc_object_yield( p_tmp );
1355                 return p_tmp;
1356             }
1357             else
1358             {
1359                 return FindObjectName( p_tmp, psz_name, i_mode );
1360             }
1361         }
1362         break;
1363
1364     case FIND_CHILD:
1365         for( i = vlc_internals( p_this )->i_children; i--; )
1366         {
1367             p_tmp = vlc_internals( p_this )->pp_children[i];
1368             if( p_tmp->psz_object_name
1369                 && !strcmp( p_tmp->psz_object_name, psz_name ) )
1370             {
1371                 vlc_object_yield( p_tmp );
1372                 return p_tmp;
1373             }
1374             else if( vlc_internals( p_tmp )->i_children )
1375             {
1376                 p_tmp = FindObjectName( p_tmp, psz_name, i_mode );
1377                 if( p_tmp )
1378                 {
1379                     return p_tmp;
1380                 }
1381             }
1382         }
1383         break;
1384
1385     case FIND_ANYWHERE:
1386         /* Handled in vlc_object_find */
1387         break;
1388     }
1389
1390     return NULL;
1391 }
1392
1393
1394 static void PrintObject( vlc_object_t *p_this, const char *psz_prefix )
1395 {
1396     char psz_children[20], psz_refcount[20], psz_thread[30], psz_name[50],
1397          psz_parent[20];
1398
1399     memset( &psz_name, 0, sizeof(psz_name) );
1400     if( p_this->psz_object_name )
1401     {
1402         snprintf( psz_name, 49, " \"%s\"", p_this->psz_object_name );
1403         if( psz_name[48] )
1404             psz_name[48] = '\"';
1405     }
1406
1407     psz_children[0] = '\0';
1408     switch( vlc_internals( p_this )->i_children )
1409     {
1410         case 0:
1411             break;
1412         case 1:
1413             strcpy( psz_children, ", 1 child" );
1414             break;
1415         default:
1416             snprintf( psz_children, 19, ", %i children",
1417                       vlc_internals( p_this )->i_children );
1418             break;
1419     }
1420
1421     psz_refcount[0] = '\0';
1422     if( vlc_internals( p_this )->i_refcount > 0 )
1423         snprintf( psz_refcount, 19, ", refcount %u",
1424                   vlc_internals( p_this )->i_refcount );
1425
1426     psz_thread[0] = '\0';
1427     if( vlc_internals( p_this )->b_thread )
1428         snprintf( psz_thread, 29, " (thread %lu)",
1429                   (unsigned long)vlc_internals( p_this )->thread_id );
1430
1431     psz_parent[0] = '\0';
1432     if( p_this->p_parent )
1433         snprintf( psz_parent, 19, ", parent %i", p_this->p_parent->i_object_id );
1434
1435     printf( " %so %.8i %s%s%s%s%s%s\n", psz_prefix,
1436             p_this->i_object_id, p_this->psz_object_type,
1437             psz_name, psz_thread, psz_refcount, psz_children,
1438             psz_parent );
1439 }
1440
1441 static void DumpStructure( vlc_object_t *p_this, int i_level, char *psz_foo )
1442 {
1443     int i;
1444     char i_back = psz_foo[i_level];
1445     psz_foo[i_level] = '\0';
1446
1447     PrintObject( p_this, psz_foo );
1448
1449     psz_foo[i_level] = i_back;
1450
1451     if( i_level / 2 >= MAX_DUMPSTRUCTURE_DEPTH )
1452     {
1453         msg_Warn( p_this, "structure tree is too deep" );
1454         return;
1455     }
1456
1457     for( i = 0 ; i < vlc_internals( p_this )->i_children ; i++ )
1458     {
1459         if( i_level )
1460         {
1461             psz_foo[i_level-1] = ' ';
1462
1463             if( psz_foo[i_level-2] == '`' )
1464             {
1465                 psz_foo[i_level-2] = ' ';
1466             }
1467         }
1468
1469         if( i == vlc_internals( p_this )->i_children - 1 )
1470         {
1471             psz_foo[i_level] = '`';
1472         }
1473         else
1474         {
1475             psz_foo[i_level] = '|';
1476         }
1477
1478         psz_foo[i_level+1] = '-';
1479         psz_foo[i_level+2] = '\0';
1480
1481         DumpStructure( vlc_internals( p_this )->pp_children[i], i_level + 2,
1482                        psz_foo );
1483     }
1484 }
1485
1486 static vlc_list_t * NewList( int i_count )
1487 {
1488     vlc_list_t * p_list = (vlc_list_t *)malloc( sizeof( vlc_list_t ) );
1489     if( p_list == NULL )
1490     {
1491         return NULL;
1492     }
1493
1494     p_list->i_count = i_count;
1495
1496     if( i_count == 0 )
1497     {
1498         p_list->p_values = NULL;
1499         return p_list;
1500     }
1501
1502     p_list->p_values = malloc( i_count * sizeof( vlc_value_t ) );
1503     if( p_list->p_values == NULL )
1504     {
1505         p_list->i_count = 0;
1506         return p_list;
1507     }
1508
1509     return p_list;
1510 }
1511
1512 static void ListReplace( vlc_list_t *p_list, vlc_object_t *p_object,
1513                          int i_index )
1514 {
1515     if( p_list == NULL || i_index >= p_list->i_count )
1516     {
1517         return;
1518     }
1519
1520     vlc_object_yield( p_object );
1521
1522     p_list->p_values[i_index].p_object = p_object;
1523
1524     return;
1525 }
1526
1527 /*static void ListAppend( vlc_list_t *p_list, vlc_object_t *p_object )
1528 {
1529     if( p_list == NULL )
1530     {
1531         return;
1532     }
1533
1534     p_list->p_values = realloc( p_list->p_values, (p_list->i_count + 1)
1535                                 * sizeof( vlc_value_t ) );
1536     if( p_list->p_values == NULL )
1537     {
1538         p_list->i_count = 0;
1539         return;
1540     }
1541
1542     vlc_object_yield( p_object );
1543
1544     p_list->p_values[p_list->i_count].p_object = p_object;
1545     p_list->i_count++;
1546
1547     return;
1548 }*/
1549
1550 static int CountChildren( vlc_object_t *p_this, int i_type )
1551 {
1552     vlc_object_t *p_tmp;
1553     int i, i_count = 0;
1554
1555     for( i = 0; i < vlc_internals( p_this )->i_children; i++ )
1556     {
1557         p_tmp = vlc_internals( p_this )->pp_children[i];
1558
1559         if( p_tmp->i_object_type == i_type )
1560         {
1561             i_count++;
1562         }
1563         i_count += CountChildren( p_tmp, i_type );
1564     }
1565
1566     return i_count;
1567 }
1568
1569 static void ListChildren( vlc_list_t *p_list, vlc_object_t *p_this, int i_type )
1570 {
1571     vlc_object_t *p_tmp;
1572     int i;
1573
1574     for( i = 0; i < vlc_internals( p_this )->i_children; i++ )
1575     {
1576         p_tmp = vlc_internals( p_this )->pp_children[i];
1577
1578         if( p_tmp->i_object_type == i_type )
1579             ListReplace( p_list, p_tmp, p_list->i_count++ );
1580
1581         ListChildren( p_list, p_tmp, i_type );
1582     }
1583 }