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