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