]> git.sesse.net Git - vlc/blob - src/misc/objects.c
Improve the still really dumb reference checker
[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_PTRHEAD)
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  * If the object already has a signal pending, this function will return
531  * immediately. It is asserted that the caller holds the object lock.
532  *
533  * @return true if the object is dying and should terminate.
534  */
535 bool __vlc_object_wait( vlc_object_t *obj )
536 {
537     vlc_assert_locked( &obj->object_lock );
538     vlc_cond_wait( &obj->object_wait, &obj->object_lock );
539     return obj->b_die;
540 }
541
542
543 /**
544  * Waits for the object to be signaled (using vlc_object_signal()), or for
545  * a timer to expire.
546  * If the object already has a signal pending, this function will return
547  * immediately. It is asserted that the caller holds the object lock.
548  *
549  * @return negative if the object is dying and should terminate,
550  * positive if the the object has been signaled but is not dying,
551  * 0 if timeout has been reached.
552  */
553 int __vlc_object_timedwait( vlc_object_t *obj, mtime_t deadline )
554 {
555     int v;
556
557     vlc_assert_locked( &obj->object_lock );
558     v = vlc_cond_timedwait( &obj->object_wait, &obj->object_lock, deadline );
559     if( v == 0 ) /* signaled */
560         return obj->b_die ? -1 : 1;
561     return 0;
562 }
563
564
565 /**
566  * Checks whether an object has been "killed".
567  * The object lock must be held.
568  *
569  * Typical code for an object thread could be:
570  *
571    vlc_object_lock (self);
572    ...initialization...
573    while (vlc_object_alive (self))
574    {
575        ...preprocessing...
576
577        if (vlc_object_wait (self))
578            continue;
579
580        ...postprocessing...
581    }
582    ...deinitialization...
583    vlc_object_unlock (self);
584  *
585  *
586  * @return true iff the object has not been killed yet
587  */
588 bool __vlc_object_alive( vlc_object_t *obj )
589 {
590     vlc_assert_locked( &obj->object_lock );
591     return !obj->b_die;
592 }
593
594
595 /**
596  * Signals an object for which the lock is held.
597  */
598 void __vlc_object_signal_unlocked( vlc_object_t *obj )
599 {
600     vlc_assert_locked (&obj->object_lock);
601     vlc_cond_signal( &obj->object_wait );
602 }
603
604
605 /**
606  * Requests termination of an object.
607  * If the object is LibVLC, also request to terminate all its children.
608  */
609 void __vlc_object_kill( vlc_object_t *p_this )
610 {
611     vlc_object_internals_t *internals = vlc_internals( p_this );
612     int fd;
613
614     vlc_mutex_lock( &p_this->object_lock );
615     p_this->b_die = true;
616
617     vlc_spin_lock (&internals->spin);
618     fd = internals->pipes[1];
619     internals->pipes[1] = -1;
620     vlc_spin_unlock (&internals->spin);
621
622     if( fd != -1 )
623     {
624         msg_Dbg (p_this, "waitpipe: object killed");
625         close (fd);
626     }
627
628     if( p_this->i_object_type == VLC_OBJECT_LIBVLC )
629         for( int i = 0; i < internals->i_children ; i++ )
630             vlc_object_kill( internals->pp_children[i] );
631
632     vlc_object_signal_unlocked( p_this );
633     vlc_mutex_unlock( &p_this->object_lock );
634 }
635
636
637 /**
638  * Find an object given its ID.
639  *
640  * This function looks for the object whose i_object_id field is i_id.
641  * This function is slow, and often used to hide bugs. Do not use it.
642  * If you need to retain reference to an object, yield the object pointer with
643  * vlc_object_yield(), use the pointer as your reference, and call
644  * vlc_object_release() when you're done.
645  */
646 void * vlc_object_get( int i_id )
647 {
648     libvlc_global_data_t *p_libvlc_global = vlc_global();
649     vlc_object_t *obj = NULL;
650
651     vlc_mutex_lock( &structure_lock );
652
653     for( obj = vlc_internals (p_libvlc_global)->next;
654          obj != VLC_OBJECT (p_libvlc_global);
655          obj = vlc_internals (obj)->next )
656     {
657         if( obj->i_object_id == i_id )
658         {
659             vlc_object_yield( obj );
660             goto out;
661         }
662     }
663     obj = NULL;
664
665 out:
666     vlc_mutex_unlock( &structure_lock );
667     return obj;
668 }
669
670 /**
671  ****************************************************************************
672  * find a typed object and increment its refcount
673  *****************************************************************************
674  * This function recursively looks for a given object type. i_mode can be one
675  * of FIND_PARENT, FIND_CHILD or FIND_ANYWHERE.
676  *****************************************************************************/
677 void * __vlc_object_find( vlc_object_t *p_this, int i_type, int i_mode )
678 {
679     vlc_object_t *p_found;
680
681     /* If we are of the requested type ourselves, don't look further */
682     if( !(i_mode & FIND_STRICT) && p_this->i_object_type == i_type )
683     {
684         vlc_object_yield( p_this );
685         return p_this;
686     }
687
688     /* Otherwise, recursively look for the object */
689     if ((i_mode & 0x000f) == FIND_ANYWHERE)
690     {
691 #ifndef NDEBUG
692         if (i_type == VLC_OBJECT_PLAYLIST)
693             msg_Warn (p_this, "using vlc_object_find(VLC_OBJECT_PLAYLIST) "
694                       "instead of pl_Yield()");
695 #endif
696         return vlc_object_find (p_this->p_libvlc, i_type,
697                                 (i_mode & ~0x000f)|FIND_CHILD);
698     }
699
700     vlc_mutex_lock( &structure_lock );
701     p_found = FindObject( p_this, i_type, i_mode );
702     vlc_mutex_unlock( &structure_lock );
703     return p_found;
704 }
705
706 /**
707  ****************************************************************************
708  * find a named object and increment its refcount
709  *****************************************************************************
710  * This function recursively looks for a given object name. i_mode can be one
711  * of FIND_PARENT, FIND_CHILD or FIND_ANYWHERE.
712  *****************************************************************************/
713 void * __vlc_object_find_name( vlc_object_t *p_this, const char *psz_name,
714                                int i_mode )
715 {
716     vlc_object_t *p_found;
717
718     /* If have the requested name ourselves, don't look further */
719     if( !(i_mode & FIND_STRICT)
720         && p_this->psz_object_name
721         && !strcmp( p_this->psz_object_name, psz_name ) )
722     {
723         vlc_object_yield( p_this );
724         return p_this;
725     }
726
727     vlc_mutex_lock( &structure_lock );
728
729     /* Otherwise, recursively look for the object */
730     if( (i_mode & 0x000f) == FIND_ANYWHERE )
731     {
732         vlc_object_t *p_root = p_this;
733
734         /* Find the root */
735         while( p_root->p_parent != NULL &&
736                p_root != VLC_OBJECT( p_this->p_libvlc ) )
737         {
738             p_root = p_root->p_parent;
739         }
740
741         p_found = FindObjectName( p_root, psz_name,
742                                  (i_mode & ~0x000f)|FIND_CHILD );
743         if( p_found == NULL && p_root != VLC_OBJECT( p_this->p_libvlc ) )
744         {
745             p_found = FindObjectName( VLC_OBJECT( p_this->p_libvlc ),
746                                       psz_name, (i_mode & ~0x000f)|FIND_CHILD );
747         }
748     }
749     else
750     {
751         p_found = FindObjectName( p_this, psz_name, i_mode );
752     }
753
754     vlc_mutex_unlock( &structure_lock );
755
756     return p_found;
757 }
758
759 /**
760  * Increment an object reference counter.
761  */
762 void __vlc_object_yield( vlc_object_t *p_this )
763 {
764     vlc_object_internals_t *internals = vlc_internals( p_this );
765
766     vlc_spin_lock( &internals->ref_spin );
767     /* Avoid obvious freed object uses */
768     assert( internals->i_refcount > 0 );
769     /* Increment the counter */
770     internals->i_refcount++;
771     vlc_spin_unlock( &internals->ref_spin );
772 }
773
774 /*****************************************************************************
775  * decrement an object refcount
776  * And destroy the object if its refcount reach zero.
777  *****************************************************************************/
778 void __vlc_object_release( vlc_object_t *p_this )
779 {
780     vlc_object_internals_t *internals = vlc_internals( p_this );
781     bool b_should_destroy;
782
783     vlc_spin_lock( &internals->ref_spin );
784     assert( internals->i_refcount > 0 );
785
786     if( internals->i_refcount > 1 )
787     {
788         /* Fast path */
789         /* There are still other references to the object */
790         internals->i_refcount--;
791         vlc_spin_unlock( &internals->ref_spin );
792         return;
793     }
794     vlc_spin_unlock( &internals->ref_spin );
795
796     /* Slow path */
797     /* Remember that we cannot hold the spin while waiting on the mutex */
798     vlc_mutex_lock( &structure_lock );
799     /* Take the spin again. Note that another thread may have yielded the
800      * object in the (very short) mean time. */
801     vlc_spin_lock( &internals->ref_spin );
802     b_should_destroy = --internals->i_refcount == 0;
803     vlc_spin_unlock( &internals->ref_spin );
804
805     if( b_should_destroy )
806     {
807         /* Remove the object from object list
808          * so that it cannot be encountered by vlc_object_get() */
809         vlc_internals (internals->next)->prev = internals->prev;
810         vlc_internals (internals->prev)->next = internals->next;
811
812         /* Detach from parent to protect against FIND_CHILDREN */
813         vlc_object_detach_unlocked (p_this);
814         /* Detach from children to protect against FIND_PARENT */
815         for (int i = 0; i < internals->i_children; i++)
816             internals->pp_children[i]->p_parent = NULL;
817     }
818
819     vlc_mutex_unlock( &structure_lock );
820
821     if( b_should_destroy )
822     {
823         free( internals->pp_children );
824         internals->pp_children = NULL;
825         internals->i_children = 0;
826         vlc_object_destroy( p_this );
827     }
828 }
829
830 /**
831  ****************************************************************************
832  * attach object to a parent object
833  *****************************************************************************
834  * This function sets p_this as a child of p_parent, and p_parent as a parent
835  * of p_this. This link can be undone using vlc_object_detach.
836  *****************************************************************************/
837 void __vlc_object_attach( vlc_object_t *p_this, vlc_object_t *p_parent )
838 {
839     if( !p_this ) return;
840
841     vlc_mutex_lock( &structure_lock );
842
843     /* Attach the parent to its child */
844     assert (!p_this->p_parent);
845     p_this->p_parent = p_parent;
846
847     /* Attach the child to its parent */
848     vlc_object_internals_t *priv = vlc_internals( p_parent );
849     INSERT_ELEM( priv->pp_children, priv->i_children, priv->i_children,
850                  p_this );
851
852     /* Kill the object if parent is already dead.
853      * Note: We should surely lock parent here, but that would
854      * create quite a few dead lock case. Hopefully, it
855      * is perfectly safe to do it that way. We only risk
856      * receiving kill event twice. But given current API
857      * it is ok. */
858     if( p_this->p_parent->b_die )
859         vlc_object_kill( p_this );
860
861     vlc_mutex_unlock( &structure_lock );
862 }
863
864
865 static void vlc_object_detach_unlocked (vlc_object_t *p_this)
866 {
867     vlc_assert_locked (&structure_lock);
868
869     if (p_this->p_parent == NULL)
870         return;
871
872     vlc_object_internals_t *priv = vlc_internals( p_this->p_parent );
873
874     int i_index, i;
875
876     /* Remove p_this's parent */
877     p_this->p_parent = NULL;
878
879     /* Remove all of p_parent's children which are p_this */
880     for( i_index = priv->i_children ; i_index-- ; )
881     {
882         if( priv->pp_children[i_index] == p_this )
883         {
884             priv->i_children--;
885             for( i = i_index ; i < priv->i_children ; i++ )
886                 priv->pp_children[i] = priv->pp_children[i+1];
887         }
888     }
889
890     if( priv->i_children )
891     {
892         priv->pp_children = (vlc_object_t **)realloc( priv->pp_children,
893                                priv->i_children * sizeof(vlc_object_t *) );
894     }
895     else
896     {
897         /* Special case - don't realloc() to zero to avoid leaking */
898         free( priv->pp_children );
899         priv->pp_children = NULL;
900     }
901 }
902
903
904 /**
905  ****************************************************************************
906  * detach object from its parent
907  *****************************************************************************
908  * This function removes all links between an object and its parent.
909  *****************************************************************************/
910 void __vlc_object_detach( vlc_object_t *p_this )
911 {
912     if( !p_this ) return;
913
914     vlc_mutex_lock( &structure_lock );
915     if( !p_this->p_parent )
916         msg_Err( p_this, "object is not attached" );
917     else
918         vlc_object_detach_unlocked( p_this );
919     vlc_mutex_unlock( &structure_lock );
920 }
921
922
923 /**
924  ****************************************************************************
925  * find a list typed objects and increment their refcount
926  *****************************************************************************
927  * This function recursively looks for a given object type. i_mode can be one
928  * of FIND_PARENT, FIND_CHILD or FIND_ANYWHERE.
929  *****************************************************************************/
930 vlc_list_t * __vlc_list_find( vlc_object_t *p_this, int i_type, int i_mode )
931 {
932     vlc_list_t *p_list;
933     int i_count = 0;
934
935     /* Look for the objects */
936     switch( i_mode & 0x000f )
937     {
938     case FIND_ANYWHERE:
939         /* Modules should probably not be object, and the module should perhaps
940          * not be shared across LibVLC instances. In the mean time, this ugly
941          * hack is brought to you by Courmisch. */
942         if (i_type == VLC_OBJECT_MODULE)
943             return vlc_list_find ((vlc_object_t *)vlc_global ()->p_module_bank,
944                                   i_type, FIND_CHILD);
945         return vlc_list_find (p_this->p_libvlc, i_type, FIND_CHILD);
946
947     case FIND_CHILD:
948         vlc_mutex_lock( &structure_lock );
949         i_count = CountChildren( p_this, i_type );
950         p_list = NewList( i_count );
951
952         /* Check allocation was successful */
953         if( p_list->i_count != i_count )
954         {
955             vlc_mutex_unlock( &structure_lock );
956             msg_Err( p_this, "list allocation failed!" );
957             p_list->i_count = 0;
958             break;
959         }
960
961         p_list->i_count = 0;
962         ListChildren( p_list, p_this, i_type );
963         vlc_mutex_unlock( &structure_lock );
964         break;
965
966     default:
967         msg_Err( p_this, "unimplemented!" );
968         p_list = NewList( 0 );
969         break;
970     }
971
972     return p_list;
973 }
974
975 /**
976  * Gets the list of children of an objects, and increment their reference
977  * count.
978  * @return a list (possibly empty) or NULL in case of error.
979  */
980 vlc_list_t *__vlc_list_children( vlc_object_t *obj )
981 {
982     vlc_list_t *l;
983     vlc_object_internals_t *priv = vlc_internals( obj );
984
985     vlc_mutex_lock( &structure_lock );
986     l = NewList( priv->i_children );
987     for (int i = 0; i < l->i_count; i++)
988     {
989         vlc_object_yield( priv->pp_children[i] );
990         l->p_values[i].p_object = priv->pp_children[i];
991     }
992     vlc_mutex_unlock( &structure_lock );
993     return l;
994 }
995
996 /*****************************************************************************
997  * DumpCommand: print the current vlc structure
998  *****************************************************************************
999  * This function prints either an ASCII tree showing the connections between
1000  * vlc objects, and additional information such as their refcount, thread ID,
1001  * etc. (command "tree"), or the same data as a simple list (command "list").
1002  *****************************************************************************/
1003 static int DumpCommand( vlc_object_t *p_this, char const *psz_cmd,
1004                         vlc_value_t oldval, vlc_value_t newval, void *p_data )
1005 {
1006     (void)oldval; (void)p_data;
1007     if( *psz_cmd == 'l' )
1008     {
1009         vlc_object_t *root = VLC_OBJECT (vlc_global ()), *cur = root; 
1010
1011         vlc_mutex_lock( &structure_lock );
1012         do
1013         {
1014             PrintObject (cur, "");
1015             cur = vlc_internals (cur)->next;
1016         }
1017         while (cur != root);
1018         vlc_mutex_unlock( &structure_lock );
1019     }
1020     else
1021     {
1022         vlc_object_t *p_object = NULL;
1023
1024         if( *newval.psz_string )
1025         {
1026             char *end;
1027             int i_id = strtol( newval.psz_string, &end, 0 );
1028             if( end != newval.psz_string )
1029                 p_object = vlc_object_get( i_id );
1030             else
1031             {
1032                 /* try using the object's name to find it */
1033                 vlc_object_t *p_libvlc = vlc_object_get( 1 );
1034                 if( p_libvlc )
1035                 {
1036                     /* Look in p_libvlc's children tree */
1037                     p_object = vlc_object_find_name( p_libvlc,
1038                                                      newval.psz_string,
1039                                                      FIND_CHILD );
1040                     vlc_object_release( p_libvlc );
1041                 }
1042                 if( !p_object )
1043                 {
1044                     /* If it's not in libvlc, look in libvlc_global (== p_this) */
1045                     p_object = vlc_object_find_name( p_this,
1046                                                      newval.psz_string,
1047                                                      FIND_CHILD );
1048                 }
1049             }
1050
1051             if( !p_object )
1052             {
1053                 return VLC_ENOOBJ;
1054             }
1055         }
1056
1057         vlc_mutex_lock( &structure_lock );
1058
1059         if( *psz_cmd == 't' )
1060         {
1061             char psz_foo[2 * MAX_DUMPSTRUCTURE_DEPTH + 1];
1062
1063             if( !p_object )
1064                 p_object = p_this->p_libvlc ? VLC_OBJECT(p_this->p_libvlc) : p_this;
1065
1066             psz_foo[0] = '|';
1067             DumpStructure( p_object, 0, psz_foo );
1068         }
1069         else if( *psz_cmd == 'v' )
1070         {
1071             int i;
1072
1073             if( !p_object )
1074                 p_object = p_this->p_libvlc ? VLC_OBJECT(p_this->p_libvlc) : p_this;
1075
1076             PrintObject( p_object, "" );
1077
1078             if( !vlc_internals( p_object )->i_vars )
1079                 printf( " `-o No variables\n" );
1080             for( i = 0; i < vlc_internals( p_object )->i_vars; i++ )
1081             {
1082                 variable_t *p_var = vlc_internals( p_object )->p_vars + i;
1083
1084                 const char *psz_type = "unknown";
1085                 switch( p_var->i_type & VLC_VAR_TYPE )
1086                 {
1087 #define MYCASE( type, nice )                \
1088                     case VLC_VAR_ ## type:  \
1089                         psz_type = nice;    \
1090                         break;
1091                     MYCASE( VOID, "void" );
1092                     MYCASE( BOOL, "bool" );
1093                     MYCASE( INTEGER, "integer" );
1094                     MYCASE( HOTKEY, "hotkey" );
1095                     MYCASE( STRING, "string" );
1096                     MYCASE( MODULE, "module" );
1097                     MYCASE( FILE, "file" );
1098                     MYCASE( DIRECTORY, "directory" );
1099                     MYCASE( VARIABLE, "variable" );
1100                     MYCASE( FLOAT, "float" );
1101                     MYCASE( TIME, "time" );
1102                     MYCASE( ADDRESS, "address" );
1103                     MYCASE( MUTEX, "mutex" );
1104                     MYCASE( LIST, "list" );
1105 #undef MYCASE
1106                 }
1107                 printf( " %c-o \"%s\" (%s",
1108                         i + 1 == vlc_internals( p_object )->i_vars ? '`' : '|',
1109                         p_var->psz_name, psz_type );
1110                 if( p_var->psz_text )
1111                     printf( ", %s", p_var->psz_text );
1112                 printf( ")" );
1113                 if( p_var->i_type & VLC_VAR_ISCOMMAND )
1114                     printf( ", command" );
1115                 if( p_var->i_entries )
1116                     printf( ", %d callbacks", p_var->i_entries );
1117                 switch( p_var->i_type & 0x00f0 )
1118                 {
1119                     case VLC_VAR_VOID:
1120                     case VLC_VAR_MUTEX:
1121                         break;
1122                     case VLC_VAR_BOOL:
1123                         printf( ": %s", p_var->val.b_bool ? "true" : "false" );
1124                         break;
1125                     case VLC_VAR_INTEGER:
1126                         printf( ": %d", p_var->val.i_int );
1127                         break;
1128                     case VLC_VAR_STRING:
1129                         printf( ": \"%s\"", p_var->val.psz_string );
1130                         break;
1131                     case VLC_VAR_FLOAT:
1132                         printf( ": %f", p_var->val.f_float );
1133                         break;
1134                     case VLC_VAR_TIME:
1135                         printf( ": %"PRIi64, (int64_t)p_var->val.i_time );
1136                         break;
1137                     case VLC_VAR_ADDRESS:
1138                         printf( ": %p", p_var->val.p_address );
1139                         break;
1140                     case VLC_VAR_LIST:
1141                         printf( ": TODO" );
1142                         break;
1143                 }
1144                 printf( "\n" );
1145             }
1146         }
1147
1148         vlc_mutex_unlock( &structure_lock );
1149
1150         if( *newval.psz_string )
1151         {
1152             vlc_object_release( p_object );
1153         }
1154     }
1155
1156     return VLC_SUCCESS;
1157 }
1158
1159 /*****************************************************************************
1160  * vlc_list_release: free a list previously allocated by vlc_list_find
1161  *****************************************************************************
1162  * This function decreases the refcount of all objects in the list and
1163  * frees the list.
1164  *****************************************************************************/
1165 void vlc_list_release( vlc_list_t *p_list )
1166 {
1167     int i_index;
1168
1169     for( i_index = 0; i_index < p_list->i_count; i_index++ )
1170     {
1171         vlc_object_release( p_list->p_values[i_index].p_object );
1172     }
1173
1174     free( p_list->p_values );
1175     free( p_list );
1176 }
1177
1178 /*****************************************************************************
1179  * dump an object. (Debug function)
1180  *****************************************************************************/
1181 void __vlc_object_dump( vlc_object_t *p_this )
1182 {
1183     vlc_mutex_lock( &structure_lock );
1184     char psz_foo[2 * MAX_DUMPSTRUCTURE_DEPTH + 1];
1185     psz_foo[0] = '|';
1186     DumpStructure( p_this, 0, psz_foo );
1187     vlc_mutex_unlock( &structure_lock );
1188 }
1189
1190 /* Following functions are local */
1191
1192 static vlc_object_t * FindObject( vlc_object_t *p_this, int i_type, int i_mode )
1193 {
1194     int i;
1195     vlc_object_t *p_tmp;
1196
1197     switch( i_mode & 0x000f )
1198     {
1199     case FIND_PARENT:
1200         p_tmp = p_this->p_parent;
1201         if( p_tmp )
1202         {
1203             if( p_tmp->i_object_type == i_type )
1204             {
1205                 vlc_object_yield( p_tmp );
1206                 return p_tmp;
1207             }
1208             else
1209             {
1210                 return FindObject( p_tmp, i_type, i_mode );
1211             }
1212         }
1213         break;
1214
1215     case FIND_CHILD:
1216         for( i = vlc_internals( p_this )->i_children; i--; )
1217         {
1218             p_tmp = vlc_internals( p_this )->pp_children[i];
1219             if( p_tmp->i_object_type == i_type )
1220             {
1221                 vlc_object_yield( p_tmp );
1222                 return p_tmp;
1223             }
1224             else if( vlc_internals( p_tmp )->i_children )
1225             {
1226                 p_tmp = FindObject( p_tmp, i_type, i_mode );
1227                 if( p_tmp )
1228                 {
1229                     return p_tmp;
1230                 }
1231             }
1232         }
1233         break;
1234
1235     case FIND_ANYWHERE:
1236         /* Handled in vlc_object_find */
1237         break;
1238     }
1239
1240     return NULL;
1241 }
1242
1243 static vlc_object_t * FindObjectName( vlc_object_t *p_this,
1244                                       const char *psz_name,
1245                                       int i_mode )
1246 {
1247     int i;
1248     vlc_object_t *p_tmp;
1249
1250     switch( i_mode & 0x000f )
1251     {
1252     case FIND_PARENT:
1253         p_tmp = p_this->p_parent;
1254         if( p_tmp )
1255         {
1256             if( p_tmp->psz_object_name
1257                 && !strcmp( p_tmp->psz_object_name, psz_name ) )
1258             {
1259                 vlc_object_yield( p_tmp );
1260                 return p_tmp;
1261             }
1262             else
1263             {
1264                 return FindObjectName( p_tmp, psz_name, i_mode );
1265             }
1266         }
1267         break;
1268
1269     case FIND_CHILD:
1270         for( i = vlc_internals( p_this )->i_children; i--; )
1271         {
1272             p_tmp = vlc_internals( p_this )->pp_children[i];
1273             if( p_tmp->psz_object_name
1274                 && !strcmp( p_tmp->psz_object_name, psz_name ) )
1275             {
1276                 vlc_object_yield( p_tmp );
1277                 return p_tmp;
1278             }
1279             else if( vlc_internals( p_tmp )->i_children )
1280             {
1281                 p_tmp = FindObjectName( p_tmp, psz_name, i_mode );
1282                 if( p_tmp )
1283                 {
1284                     return p_tmp;
1285                 }
1286             }
1287         }
1288         break;
1289
1290     case FIND_ANYWHERE:
1291         /* Handled in vlc_object_find */
1292         break;
1293     }
1294
1295     return NULL;
1296 }
1297
1298
1299 static void PrintObject( vlc_object_t *p_this, const char *psz_prefix )
1300 {
1301     char psz_children[20], psz_refcount[20], psz_thread[30], psz_name[50],
1302          psz_parent[20];
1303
1304     memset( &psz_name, 0, sizeof(psz_name) );
1305     if( p_this->psz_object_name )
1306     {
1307         snprintf( psz_name, 49, " \"%s\"", p_this->psz_object_name );
1308         if( psz_name[48] )
1309             psz_name[48] = '\"';
1310     }
1311
1312     psz_children[0] = '\0';
1313     switch( vlc_internals( p_this )->i_children )
1314     {
1315         case 0:
1316             break;
1317         case 1:
1318             strcpy( psz_children, ", 1 child" );
1319             break;
1320         default:
1321             snprintf( psz_children, 19, ", %i children",
1322                       vlc_internals( p_this )->i_children );
1323             break;
1324     }
1325
1326     psz_refcount[0] = '\0';
1327     if( vlc_internals( p_this )->i_refcount > 0 )
1328         snprintf( psz_refcount, 19, ", refcount %u",
1329                   vlc_internals( p_this )->i_refcount );
1330
1331     psz_thread[0] = '\0';
1332     if( vlc_internals( p_this )->b_thread )
1333         snprintf( psz_thread, 29, " (thread %lu)",
1334                   (unsigned long)vlc_internals( p_this )->thread_id );
1335
1336     psz_parent[0] = '\0';
1337     if( p_this->p_parent )
1338         snprintf( psz_parent, 19, ", parent %i", p_this->p_parent->i_object_id );
1339
1340     printf( " %so %.8i %s%s%s%s%s%s\n", psz_prefix,
1341             p_this->i_object_id, p_this->psz_object_type,
1342             psz_name, psz_thread, psz_refcount, psz_children,
1343             psz_parent );
1344 }
1345
1346 static void DumpStructure( vlc_object_t *p_this, int i_level, char *psz_foo )
1347 {
1348     int i;
1349     char i_back = psz_foo[i_level];
1350     psz_foo[i_level] = '\0';
1351
1352     PrintObject( p_this, psz_foo );
1353
1354     psz_foo[i_level] = i_back;
1355
1356     if( i_level / 2 >= MAX_DUMPSTRUCTURE_DEPTH )
1357     {
1358         msg_Warn( p_this, "structure tree is too deep" );
1359         return;
1360     }
1361
1362     for( i = 0 ; i < vlc_internals( p_this )->i_children ; i++ )
1363     {
1364         if( i_level )
1365         {
1366             psz_foo[i_level-1] = ' ';
1367
1368             if( psz_foo[i_level-2] == '`' )
1369             {
1370                 psz_foo[i_level-2] = ' ';
1371             }
1372         }
1373
1374         if( i == vlc_internals( p_this )->i_children - 1 )
1375         {
1376             psz_foo[i_level] = '`';
1377         }
1378         else
1379         {
1380             psz_foo[i_level] = '|';
1381         }
1382
1383         psz_foo[i_level+1] = '-';
1384         psz_foo[i_level+2] = '\0';
1385
1386         DumpStructure( vlc_internals( p_this )->pp_children[i], i_level + 2,
1387                        psz_foo );
1388     }
1389 }
1390
1391 static vlc_list_t * NewList( int i_count )
1392 {
1393     vlc_list_t * p_list = (vlc_list_t *)malloc( sizeof( vlc_list_t ) );
1394     if( p_list == NULL )
1395     {
1396         return NULL;
1397     }
1398
1399     p_list->i_count = i_count;
1400
1401     if( i_count == 0 )
1402     {
1403         p_list->p_values = NULL;
1404         return p_list;
1405     }
1406
1407     p_list->p_values = malloc( i_count * sizeof( vlc_value_t ) );
1408     if( p_list->p_values == NULL )
1409     {
1410         p_list->i_count = 0;
1411         return p_list;
1412     }
1413
1414     return p_list;
1415 }
1416
1417 static void ListReplace( vlc_list_t *p_list, vlc_object_t *p_object,
1418                          int i_index )
1419 {
1420     if( p_list == NULL || i_index >= p_list->i_count )
1421     {
1422         return;
1423     }
1424
1425     vlc_object_yield( p_object );
1426
1427     p_list->p_values[i_index].p_object = p_object;
1428
1429     return;
1430 }
1431
1432 /*static void ListAppend( vlc_list_t *p_list, vlc_object_t *p_object )
1433 {
1434     if( p_list == NULL )
1435     {
1436         return;
1437     }
1438
1439     p_list->p_values = realloc( p_list->p_values, (p_list->i_count + 1)
1440                                 * sizeof( vlc_value_t ) );
1441     if( p_list->p_values == NULL )
1442     {
1443         p_list->i_count = 0;
1444         return;
1445     }
1446
1447     vlc_object_yield( p_object );
1448
1449     p_list->p_values[p_list->i_count].p_object = p_object;
1450     p_list->i_count++;
1451
1452     return;
1453 }*/
1454
1455 static int CountChildren( vlc_object_t *p_this, int i_type )
1456 {
1457     vlc_object_t *p_tmp;
1458     int i, i_count = 0;
1459
1460     for( i = 0; i < vlc_internals( p_this )->i_children; i++ )
1461     {
1462         p_tmp = vlc_internals( p_this )->pp_children[i];
1463
1464         if( p_tmp->i_object_type == i_type )
1465         {
1466             i_count++;
1467         }
1468         i_count += CountChildren( p_tmp, i_type );
1469     }
1470
1471     return i_count;
1472 }
1473
1474 static void ListChildren( vlc_list_t *p_list, vlc_object_t *p_this, int i_type )
1475 {
1476     vlc_object_t *p_tmp;
1477     int i;
1478
1479     for( i = 0; i < vlc_internals( p_this )->i_children; i++ )
1480     {
1481         p_tmp = vlc_internals( p_this )->pp_children[i];
1482
1483         if( p_tmp->i_object_type == i_type )
1484             ListReplace( p_list, p_tmp, p_list->i_count++ );
1485
1486         ListChildren( p_list, p_tmp, i_type );
1487     }
1488 }
1489
1490 #ifndef NDEBUG
1491 # ifdef __GLIBC__
1492 #  include <execinfo.h>
1493 # endif
1494
1495 void vlc_refcheck (vlc_object_t *obj)
1496 {
1497     static unsigned errors = 0;
1498     if (errors > 100)
1499         return;
1500
1501     /* Anyone can use the root object (though it should not exist) */
1502     if (obj == VLC_OBJECT (vlc_global ()))
1503         return;
1504
1505     /* Anyone can use its libvlc instance object */
1506     if (obj == VLC_OBJECT (obj->p_libvlc))
1507         return;
1508
1509     /* The thread that created the object holds the initial reference */
1510     vlc_object_internals_t *priv = vlc_internals (obj);
1511 #if defined (LIBVLC_USE_PTHREAD)
1512     if (pthread_equal (priv->creator_id, pthread_self ()))
1513 #elif defined WIN32
1514     if (priv->creator_id == GetCurrentThreadId ())
1515 #else
1516     if (0)
1517 #endif
1518         return;
1519
1520     /* A thread can use its own object without reference! */
1521     vlc_object_t *caller = vlc_threadobj ();
1522     if (caller == obj)
1523         return;
1524
1525     /* The calling thread is younger than the object.
1526      * Access could be valid through cross-thread synchronization;
1527      * we would need better accounting. */
1528     if (caller && (caller->i_object_id > obj->i_object_id))
1529         return;
1530
1531     int refs;
1532     vlc_spin_lock (&priv->ref_spin);
1533     refs = priv->i_refcount;
1534     vlc_spin_unlock (&priv->ref_spin);
1535
1536     /* Object has more than one reference.
1537      * The current thread could be holding a valid reference. */
1538     if (refs > 1)
1539         return;
1540
1541     fprintf (stderr, "The %s %s thread object is accessing...\n"
1542              "the %s %s object in a suspicous manner.\n",
1543              caller && caller->psz_object_name
1544                      ? caller->psz_object_name : "unnamed",
1545              caller ? caller->psz_object_type : "main",
1546              obj->psz_object_name ? obj->psz_object_name : "unnamed",
1547              obj->psz_object_type);
1548     fflush (stderr);
1549
1550 #ifdef __GLIBC__
1551     void *stack[20];
1552     int stackdepth = backtrace (stack, sizeof (stack) / sizeof (stack[0]));
1553     backtrace_symbols_fd (stack, stackdepth, 2);
1554 #endif
1555
1556     if (++errors == 100)
1557         fprintf (stderr, "Too many reference errors!\n");
1558 }
1559 #endif