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