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