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