forked from videolan/vlc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathobjects.c
812 lines (698 loc) · 24.4 KB
/
objects.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
/*****************************************************************************
* objects.c: vlc_object_t handling
*****************************************************************************
* Copyright (C) 2004-2008 VLC authors and VideoLAN
* Copyright (C) 2006-2010 Rémi Denis-Courmont
*
* Authors: Samuel Hocevar <[email protected]>
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; either version 2.1 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
/**
* \file
* This file contains the functions to handle the vlc_object_t type
*
* Unless otherwise stated, functions in this file are not cancellation point.
* All functions in this file are safe w.r.t. deferred cancellation.
*/
/*****************************************************************************
* Preamble
*****************************************************************************/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <vlc_common.h>
#include "../libvlc.h"
#include <vlc_aout.h>
#include "audio_output/aout_internal.h"
#include "vlc_interface.h"
#include "vlc_codec.h"
#include "variables.h"
#ifdef HAVE_SEARCH_H
# include <search.h>
#endif
#ifdef __OS2__
# include <sys/socket.h>
# include <netinet/in.h>
# include <unistd.h> // close(), write()
#elif defined(_WIN32)
# include <io.h>
# include <winsock2.h>
# include <ws2tcpip.h>
# undef read
# define read( a, b, c ) recv (a, b, c, 0)
# undef write
# define write( a, b, c ) send (a, b, c, 0)
# undef close
# define close( a ) closesocket (a)
#else
# include <vlc_fs.h>
# include <unistd.h>
#endif
#include <limits.h>
#include <assert.h>
#if defined (HAVE_SYS_EVENTFD_H)
# include <sys/eventfd.h>
# ifndef EFD_CLOEXEC
# define EFD_CLOEXEC 0
# warning EFD_CLOEXEC missing. Consider updating libc.
# endif
#endif
/*****************************************************************************
* Local prototypes
*****************************************************************************/
static int DumpCommand( vlc_object_t *, char const *,
vlc_value_t, vlc_value_t, void * );
static vlc_object_t * FindName ( vlc_object_internals_t *, const char * );
static void PrintObject( vlc_object_internals_t *, const char * );
static void DumpStructure( vlc_object_internals_t *, unsigned, char * );
static vlc_list_t * NewList ( int );
static void vlc_object_destroy( vlc_object_t *p_this );
/*****************************************************************************
* Local structure lock
*****************************************************************************/
static void libvlc_lock (libvlc_int_t *p_libvlc)
{
vlc_mutex_lock (&(libvlc_priv (p_libvlc)->structure_lock));
}
static void libvlc_unlock (libvlc_int_t *p_libvlc)
{
vlc_mutex_unlock (&(libvlc_priv (p_libvlc)->structure_lock));
}
#undef vlc_custom_create
void *vlc_custom_create (vlc_object_t *parent, size_t length,
const char *typename)
{
/* NOTE:
* VLC objects are laid out as follow:
* - first the LibVLC-private per-object data,
* - then VLC_COMMON members from vlc_object_t,
* - finally, the type-specific data (if any).
*
* This function initializes the LibVLC and common data,
* and zeroes the rest.
*/
assert (length >= sizeof (vlc_object_t));
vlc_object_internals_t *priv = malloc (sizeof (*priv) + length);
if (unlikely(priv == NULL))
return NULL;
priv->psz_name = NULL;
priv->var_root = NULL;
vlc_mutex_init (&priv->var_lock);
vlc_cond_init (&priv->var_wait);
priv->pipes[0] = priv->pipes[1] = -1;
atomic_init (&priv->alive, true);
atomic_init (&priv->refs, 1);
priv->pf_destructor = NULL;
priv->prev = NULL;
priv->first = NULL;
vlc_object_t *obj = (vlc_object_t *)(priv + 1);
obj->psz_object_type = typename;
obj->psz_header = NULL;
obj->b_force = false;
memset (obj + 1, 0, length - sizeof (*obj)); /* type-specific stuff */
if (likely(parent != NULL))
{
vlc_object_internals_t *papriv = vlc_internals (parent);
obj->i_flags = parent->i_flags;
obj->p_libvlc = parent->p_libvlc;
/* Attach the child to its parent (no lock needed) */
obj->p_parent = vlc_object_hold (parent);
/* Attach the parent to its child (structure lock needed) */
libvlc_lock (obj->p_libvlc);
priv->next = papriv->first;
if (priv->next != NULL)
priv->next->prev = priv;
papriv->first = priv;
libvlc_unlock (obj->p_libvlc);
}
else
{
libvlc_int_t *self = (libvlc_int_t *)obj;
obj->i_flags = 0;
obj->p_libvlc = self;
obj->p_parent = NULL;
priv->next = NULL;
vlc_mutex_init (&(libvlc_priv (self)->structure_lock));
/* TODO: should be in src/libvlc.c */
int canc = vlc_savecancel ();
var_Create (obj, "tree", VLC_VAR_STRING | VLC_VAR_ISCOMMAND);
var_AddCallback (obj, "tree", DumpCommand, obj);
var_Create (obj, "vars", VLC_VAR_STRING | VLC_VAR_ISCOMMAND);
var_AddCallback (obj, "vars", DumpCommand, obj);
vlc_restorecancel (canc);
}
return obj;
}
#undef vlc_object_create
/**
* Allocates and initializes a vlc object.
*
* @param i_size object byte size
*
* @return the new object, or NULL on error.
*/
void *vlc_object_create( vlc_object_t *p_this, size_t i_size )
{
return vlc_custom_create( p_this, i_size, "generic" );
}
#undef vlc_object_set_destructor
/**
****************************************************************************
* Set the destructor of a vlc object
*
* This function sets the destructor of the vlc object. It will be called
* when the object is destroyed when the its refcount reaches 0.
* (It is called by the internal function vlc_object_destroy())
*****************************************************************************/
void vlc_object_set_destructor( vlc_object_t *p_this,
vlc_destructor_t pf_destructor )
{
vlc_object_internals_t *p_priv = vlc_internals(p_this );
p_priv->pf_destructor = pf_destructor;
}
static vlc_mutex_t name_lock = VLC_STATIC_MUTEX;
#undef vlc_object_set_name
int vlc_object_set_name(vlc_object_t *obj, const char *name)
{
vlc_object_internals_t *priv = vlc_internals(obj);
char *newname = name ? strdup (name) : NULL;
char *oldname;
vlc_mutex_lock (&name_lock);
oldname = priv->psz_name;
priv->psz_name = newname;
vlc_mutex_unlock (&name_lock);
free (oldname);
return (priv->psz_name || !name) ? VLC_SUCCESS : VLC_ENOMEM;
}
#undef vlc_object_get_name
char *vlc_object_get_name(const vlc_object_t *obj)
{
vlc_object_internals_t *priv = vlc_internals(obj);
char *name;
vlc_mutex_lock (&name_lock);
name = priv->psz_name ? strdup (priv->psz_name) : NULL;
vlc_mutex_unlock (&name_lock);
return name;
}
/**
* Destroys a VLC object once it has no more references.
*
* This function must be called with cancellation disabled (currently).
*/
static void vlc_object_destroy( vlc_object_t *p_this )
{
vlc_object_internals_t *p_priv = vlc_internals( p_this );
/* Call the custom "subclass" destructor */
if( p_priv->pf_destructor )
p_priv->pf_destructor( p_this );
if (unlikely(p_this == VLC_OBJECT(p_this->p_libvlc)))
{
/* TODO: should be in src/libvlc.c */
var_DelCallback (p_this, "tree", DumpCommand, p_this);
var_DelCallback (p_this, "vars", DumpCommand, p_this);
}
/* Destroy the associated variables. */
var_DestroyAll( p_this );
vlc_cond_destroy( &p_priv->var_wait );
vlc_mutex_destroy( &p_priv->var_lock );
free( p_this->psz_header );
free( p_priv->psz_name );
if( p_priv->pipes[1] != -1 && p_priv->pipes[1] != p_priv->pipes[0] )
close( p_priv->pipes[1] );
if( p_priv->pipes[0] != -1 )
close( p_priv->pipes[0] );
if( VLC_OBJECT(p_this->p_libvlc) == p_this )
vlc_mutex_destroy (&(libvlc_priv ((libvlc_int_t *)p_this)->structure_lock));
free( p_priv );
}
#if defined(_WIN32) || defined(__OS2__)
/**
* select()-able pipes emulated using Winsock
*/
# define vlc_pipe selectable_pipe
static int selectable_pipe (int fd[2])
{
struct sockaddr_in addr;
int addrlen = sizeof (addr);
int l = socket (PF_INET, SOCK_STREAM, IPPROTO_TCP),
c = socket (PF_INET, SOCK_STREAM, IPPROTO_TCP);
if (l == -1 || c == -1)
goto error;
memset (&addr, 0, sizeof (addr));
addr.sin_family = AF_INET;
addr.sin_addr.s_addr = htonl (INADDR_LOOPBACK);
if (bind (l, (struct sockaddr *)&addr, sizeof (addr))
|| getsockname (l, (struct sockaddr *)&addr, &addrlen)
|| listen (l, 1)
|| connect (c, (struct sockaddr *)&addr, addrlen))
goto error;
int a = accept (l, NULL, NULL);
if (a == -1)
goto error;
close (l);
//shutdown (a, 0);
//shutdown (c, 1);
fd[0] = c;
fd[1] = a;
return 0;
error:
if (l != -1)
close (l);
if (c != -1)
close (c);
return -1;
}
#endif /* _WIN32 || __OS2__ */
static vlc_mutex_t pipe_lock = VLC_STATIC_MUTEX;
/**
* Returns the readable end of a pipe that becomes readable once termination
* of the object is requested (vlc_object_kill()).
* This can be used to wake-up out of a select() or poll() event loop, such
* typically when doing network I/O.
*
* Note that the pipe will remain the same for the lifetime of the object.
* DO NOT read the pipe nor close it yourself. Ever.
*
* @param obj object that would be "killed"
* @return a readable pipe descriptor, or -1 on error.
*/
int vlc_object_waitpipe( vlc_object_t *obj )
{
vlc_object_internals_t *internals = vlc_internals( obj );
vlc_mutex_lock (&pipe_lock);
if (internals->pipes[0] == -1)
{
/* This can only ever happen if someone killed us without locking: */
assert (internals->pipes[1] == -1);
/* pipe() is not a cancellation point, but write() is and eventfd() is
* unspecified (not in POSIX). */
int canc = vlc_savecancel ();
#if defined (HAVE_SYS_EVENTFD_H)
internals->pipes[0] = internals->pipes[1] = eventfd (0, EFD_CLOEXEC);
if (internals->pipes[0] == -1)
#endif
{
if (vlc_pipe (internals->pipes))
internals->pipes[0] = internals->pipes[1] = -1;
}
if (internals->pipes[0] != -1 && !atomic_load (&internals->alive))
{ /* Race condition: vlc_object_kill() already invoked! */
msg_Dbg (obj, "waitpipe: object already dying");
write (internals->pipes[1], &(uint64_t){ 1 }, sizeof (uint64_t));
}
vlc_restorecancel (canc);
}
vlc_mutex_unlock (&pipe_lock);
return internals->pipes[0];
}
/**
* Hack for input objects. Should be removed eventually.
*/
void ObjectKillChildrens( vlc_object_t *p_obj )
{
/* FIXME ObjectKillChildrens seems a very bad idea in fact */
/*if( p_obj == VLC_OBJECT(p_input->p->p_sout) ) return;*/
vlc_object_internals_t *priv = vlc_internals (p_obj);
if (atomic_exchange (&priv->alive, false))
{
int fd;
vlc_mutex_lock (&pipe_lock);
fd = priv->pipes[1];
vlc_mutex_unlock (&pipe_lock);
if (fd != -1)
{
write (fd, &(uint64_t){ 1 }, sizeof (uint64_t));
msg_Dbg (p_obj, "object waitpipe triggered");
}
}
vlc_list_t *p_list = vlc_list_children( p_obj );
for( int i = 0; i < p_list->i_count; i++ )
ObjectKillChildrens( p_list->p_values[i].p_address );
vlc_list_release( p_list );
}
#undef vlc_object_find_name
/**
* Finds a named object and increment its reference count.
* Beware that objects found in this manner can be "owned" by another thread,
* be of _any_ type, and be attached to any module (if any). With such an
* object reference, you can set or get object variables, emit log messages,
* and read write-once object parameters (psz_object_type, etc).
* You CANNOT cast the object to a more specific object type, and you
* definitely cannot invoke object type-specific callbacks with this.
*
* @param p_this object to search from
* @param psz_name name of the object to search for
*
* @return a matching object (must be released by the caller),
* or NULL on error.
*/
vlc_object_t *vlc_object_find_name( vlc_object_t *p_this, const char *psz_name )
{
vlc_object_t *p_found;
/* The object name is not thread-safe, provides no warranty that the
* object is fully initialized and still active, and that its owner can
* deal with asynchronous and external state changes. There may be multiple
* objects with the same name, and the function may fail even if a matching
* object exists. DO NOT USE THIS IN NEW CODE. */
#ifndef NDEBUG
/* This was officially deprecated on August 19 2009. For the convenience of
* wannabe code janitors, this is the list of names that remain used
* and unfixed since then. */
static const char bad[][11] = { "adjust", "clone", "colorthres",
"erase", "extract", "gradient", "logo", "marq", "motionblur", "puzzle",
"rotate", "sharpen", "transform", "v4l2", "wall" };
static const char poor[][13] = { "invert", "magnify", "motiondetect",
"psychedelic", "ripple", "wave" };
if( bsearch( psz_name, bad, 15, 11, (void *)strcmp ) == NULL
&& bsearch( psz_name, poor, 6, 13, (void *)strcmp ) == NULL )
return NULL;
msg_Err( p_this, "looking for object \"%s\"... FIXME XXX", psz_name );
#endif
libvlc_lock (p_this->p_libvlc);
vlc_mutex_lock (&name_lock);
p_found = FindName (vlc_internals (p_this), psz_name);
vlc_mutex_unlock (&name_lock);
libvlc_unlock (p_this->p_libvlc);
return p_found;
}
#undef vlc_object_hold
/**
* Increment an object reference counter.
*/
void * vlc_object_hold( vlc_object_t *p_this )
{
vlc_object_internals_t *internals = vlc_internals( p_this );
#ifndef NDEBUG
unsigned refs = atomic_fetch_add (&internals->refs, 1);
assert (refs > 0); /* Avoid obvious freed object uses */
#else
atomic_fetch_add (&internals->refs, 1);
#endif
return p_this;
}
#undef vlc_object_release
/**
* Drops a reference to an object (decrements the reference count).
* If the count reaches zero, the object is destroyed.
*/
void vlc_object_release( vlc_object_t *p_this )
{
vlc_object_internals_t *internals = vlc_internals( p_this );
vlc_object_t *parent = NULL;
unsigned refs = atomic_load (&internals->refs);
/* Fast path */
while (refs > 1)
{
if (atomic_compare_exchange_weak (&internals->refs, &refs, refs - 1))
return; /* There are still other references to the object */
assert (refs > 0);
}
/* Slow path */
libvlc_lock (p_this->p_libvlc);
refs = atomic_fetch_sub (&internals->refs, 1);
assert (refs > 0);
if (likely(refs == 1))
{
/* Detach from parent to protect against vlc_object_find_name() */
parent = p_this->p_parent;
if (likely(parent))
{
/* Unlink */
vlc_object_internals_t *prev = internals->prev;
vlc_object_internals_t *next = internals->next;
if (prev != NULL)
prev->next = next;
else
vlc_internals (parent)->first = next;
if (next != NULL)
next->prev = prev;
}
/* We have no children */
assert (internals->first == NULL);
}
libvlc_unlock (p_this->p_libvlc);
if (likely(refs == 1))
{
int canc = vlc_savecancel ();
vlc_object_destroy( p_this );
vlc_restorecancel (canc);
if (parent)
vlc_object_release (parent);
}
}
#undef vlc_object_alive
/**
* This function returns true, except when it returns false.
* \warning Do not use this function. Ever. You were warned.
*/
bool vlc_object_alive(vlc_object_t *obj)
{
vlc_object_internals_t *internals = vlc_internals (obj);
return atomic_load (&internals->alive);
}
#undef vlc_list_children
/**
* Gets the list of children of an object, and increment their reference
* count.
* @return a list (possibly empty) or NULL in case of error.
*/
vlc_list_t *vlc_list_children( vlc_object_t *obj )
{
vlc_list_t *l;
vlc_object_internals_t *priv;
unsigned count = 0;
libvlc_lock (obj->p_libvlc);
for (priv = vlc_internals (obj)->first; priv; priv = priv->next)
count++;
l = NewList (count);
if (likely(l != NULL))
{
unsigned i = 0;
for (priv = vlc_internals (obj)->first; priv; priv = priv->next)
l->p_values[i++].p_address = vlc_object_hold (vlc_externals (priv));
}
libvlc_unlock (obj->p_libvlc);
return l;
}
static void DumpVariable (const void *data, const VISIT which, const int depth)
{
if (which != postorder && which != leaf)
return;
(void) depth;
const variable_t *p_var = *(const variable_t **)data;
const char *psz_type = "unknown";
switch( p_var->i_type & VLC_VAR_TYPE )
{
#define MYCASE( type, nice ) \
case VLC_VAR_ ## type: \
psz_type = nice; \
break;
MYCASE( VOID, "void" );
MYCASE( BOOL, "bool" );
MYCASE( INTEGER, "integer" );
MYCASE( HOTKEY, "hotkey" );
MYCASE( STRING, "string" );
MYCASE( VARIABLE, "variable" );
MYCASE( FLOAT, "float" );
MYCASE( TIME, "time" );
MYCASE( COORDS, "coords" );
MYCASE( ADDRESS, "address" );
#undef MYCASE
}
printf( " *-o \"%s\" (%s", p_var->psz_name, psz_type );
if( p_var->psz_text )
printf( ", %s", p_var->psz_text );
fputc( ')', stdout );
if( p_var->i_type & VLC_VAR_HASCHOICE )
fputs( ", has choices", stdout );
if( p_var->i_type & VLC_VAR_ISCOMMAND )
fputs( ", command", stdout );
if( p_var->value_callbacks.i_entries )
printf( ", %d callbacks", p_var->value_callbacks.i_entries );
switch( p_var->i_type & VLC_VAR_CLASS )
{
case VLC_VAR_VOID:
break;
case VLC_VAR_BOOL:
printf( ": %s", p_var->val.b_bool ? "true" : "false" );
break;
case VLC_VAR_INTEGER:
printf( ": %"PRId64, p_var->val.i_int );
break;
case VLC_VAR_STRING:
printf( ": \"%s\"", p_var->val.psz_string );
break;
case VLC_VAR_FLOAT:
printf( ": %f", p_var->val.f_float );
break;
case VLC_VAR_TIME:
printf( ": %"PRIi64, (int64_t)p_var->val.i_time );
break;
case VLC_VAR_COORDS:
printf( ": %"PRId32"x%"PRId32,
p_var->val.coords.x, p_var->val.coords.y );
break;
case VLC_VAR_ADDRESS:
printf( ": %p", p_var->val.p_address );
break;
}
fputc( '\n', stdout );
}
/*****************************************************************************
* DumpCommand: print the current vlc structure
*****************************************************************************
* This function prints either an ASCII tree showing the connections between
* vlc objects, and additional information such as their refcount, thread ID,
* etc. (command "tree"), or the same data as a simple list (command "list").
*****************************************************************************/
static int DumpCommand( vlc_object_t *p_this, char const *psz_cmd,
vlc_value_t oldval, vlc_value_t newval, void *p_data )
{
(void)oldval;
vlc_object_t *p_object = NULL;
if( *newval.psz_string )
{
/* try using the object's name to find it */
p_object = vlc_object_find_name( p_data, newval.psz_string );
if( !p_object )
return VLC_ENOOBJ;
}
libvlc_lock (p_this->p_libvlc);
if( *psz_cmd == 't' )
{
char psz_foo[2 * MAX_DUMPSTRUCTURE_DEPTH + 1];
if( !p_object )
p_object = VLC_OBJECT(p_this->p_libvlc);
psz_foo[0] = '|';
DumpStructure( vlc_internals(p_object), 0, psz_foo );
}
else if( *psz_cmd == 'v' )
{
if( !p_object )
p_object = p_this->p_libvlc ? VLC_OBJECT(p_this->p_libvlc) : p_this;
PrintObject( vlc_internals(p_object), "" );
vlc_mutex_lock( &vlc_internals( p_object )->var_lock );
if( vlc_internals( p_object )->var_root == NULL )
puts( " `-o No variables" );
else
twalk( vlc_internals( p_object )->var_root, DumpVariable );
vlc_mutex_unlock( &vlc_internals( p_object )->var_lock );
}
libvlc_unlock (p_this->p_libvlc);
if( *newval.psz_string )
{
vlc_object_release( p_object );
}
return VLC_SUCCESS;
}
/*****************************************************************************
* vlc_list_release: free a list previously allocated by vlc_list_find
*****************************************************************************
* This function decreases the refcount of all objects in the list and
* frees the list.
*****************************************************************************/
void vlc_list_release( vlc_list_t *p_list )
{
for( int i = 0; i < p_list->i_count; i++ )
vlc_object_release( p_list->p_values[i].p_address );
free( p_list->p_values );
free( p_list );
}
/* Following functions are local */
static vlc_object_t *FindName (vlc_object_internals_t *priv, const char *name)
{
if (priv->psz_name != NULL && !strcmp (priv->psz_name, name))
return vlc_object_hold (vlc_externals (priv));
for (priv = priv->first; priv != NULL; priv = priv->next)
{
vlc_object_t *found = FindName (priv, name);
if (found != NULL)
return found;
}
return NULL;
}
static void PrintObject( vlc_object_internals_t *priv,
const char *psz_prefix )
{
char psz_refcount[20], psz_name[50], psz_parent[20];
int canc = vlc_savecancel ();
memset( &psz_name, 0, sizeof(psz_name) );
vlc_mutex_lock (&name_lock);
if (priv->psz_name != NULL)
{
snprintf( psz_name, 49, " \"%s\"", priv->psz_name );
if( psz_name[48] )
psz_name[48] = '\"';
}
vlc_mutex_unlock (&name_lock);
snprintf( psz_refcount, 19, ", %u refs", atomic_load( &priv->refs ) );
psz_parent[0] = '\0';
/* FIXME: need structure lock!!! */
if( vlc_externals(priv)->p_parent )
snprintf( psz_parent, 19, ", parent %p",
vlc_externals(priv)->p_parent );
printf( " %so %p %s%s%s%s\n", psz_prefix,
vlc_externals(priv), vlc_externals(priv)->psz_object_type,
psz_name, psz_refcount, psz_parent );
vlc_restorecancel (canc);
}
static void DumpStructure (vlc_object_internals_t *priv, unsigned i_level,
char *psz_foo)
{
char i_back = psz_foo[i_level];
psz_foo[i_level] = '\0';
PrintObject (priv, psz_foo);
psz_foo[i_level] = i_back;
if( i_level / 2 >= MAX_DUMPSTRUCTURE_DEPTH )
{
msg_Warn( vlc_externals(priv), "structure tree is too deep" );
return;
}
for (priv = priv->first; priv != NULL; priv = priv->next)
{
if( i_level )
{
psz_foo[i_level-1] = ' ';
if( psz_foo[i_level-2] == '`' )
{
psz_foo[i_level-2] = ' ';
}
}
psz_foo[i_level] = priv->next ? '|' : '`';
psz_foo[i_level+1] = '-';
psz_foo[i_level+2] = '\0';
DumpStructure (priv, i_level + 2, psz_foo);
}
}
static vlc_list_t * NewList( int i_count )
{
vlc_list_t * p_list = malloc( sizeof( vlc_list_t ) );
if( p_list == NULL )
return NULL;
p_list->i_count = i_count;
if( i_count == 0 )
{
p_list->p_values = NULL;
return p_list;
}
p_list->p_values = malloc( i_count * sizeof( vlc_value_t ) );
if( p_list->p_values == NULL )
{
p_list->i_count = 0;
return p_list;
}
return p_list;
}