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