forked from videolan/vlc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathitem.c
1900 lines (1595 loc) · 55.9 KB
/
item.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
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*****************************************************************************
* item.c: input_item management
*****************************************************************************
* Copyright (C) 1998-2004 VLC authors and VideoLAN
*
* Authors: Clément Stenac <[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.
*****************************************************************************/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <assert.h>
#include <time.h>
#include <limits.h>
#include <ctype.h>
#include <vlc_common.h>
#include <vlc_url.h>
#include <vlc_interface.h>
#include <vlc_charset.h>
#include <vlc_strings.h>
#include "item.h"
#include "info.h"
#include "input_internal.h"
struct input_item_opaque
{
struct input_item_opaque *next;
void *value;
char name[1];
};
static enum input_item_type_e GuessType( const input_item_t *p_item, bool *p_net );
void input_item_SetErrorWhenReading( input_item_t *p_i, bool b_error )
{
bool b_changed;
vlc_mutex_lock( &p_i->lock );
b_changed = p_i->b_error_when_reading != b_error;
p_i->b_error_when_reading = b_error;
vlc_mutex_unlock( &p_i->lock );
if( b_changed )
{
vlc_event_send( &p_i->event_manager, &(vlc_event_t) {
.type = vlc_InputItemErrorWhenReadingChanged,
.u.input_item_error_when_reading_changed.new_value = b_error } );
}
}
void input_item_SetPreparsed( input_item_t *p_i, bool b_preparsed )
{
bool b_send_event = false;
vlc_mutex_lock( &p_i->lock );
int status = vlc_meta_GetStatus(p_i->p_meta);
int new_status;
if( b_preparsed )
new_status = status | ITEM_PREPARSED;
else
new_status = status & ~ITEM_PREPARSED;
if( status != new_status )
{
vlc_meta_SetStatus(p_i->p_meta, new_status);
b_send_event = true;
}
vlc_mutex_unlock( &p_i->lock );
if( b_send_event )
{
vlc_event_send( &p_i->event_manager, &(vlc_event_t) {
.type = vlc_InputItemPreparsedChanged,
.u.input_item_preparsed_changed.new_status = new_status } );
}
}
void input_item_SetArtNotFound( input_item_t *p_i, bool b_not_found )
{
vlc_mutex_lock( &p_i->lock );
int status = vlc_meta_GetStatus(p_i->p_meta);
if( b_not_found )
status |= ITEM_ART_NOTFOUND;
else
status &= ~ITEM_ART_NOTFOUND;
vlc_meta_SetStatus(p_i->p_meta, status);
vlc_mutex_unlock( &p_i->lock );
}
void input_item_SetArtFetched( input_item_t *p_i, bool b_art_fetched )
{
vlc_mutex_lock( &p_i->lock );
int status = vlc_meta_GetStatus(p_i->p_meta);
if( b_art_fetched )
status |= ITEM_ART_FETCHED;
else
status &= ~ITEM_ART_FETCHED;
vlc_meta_SetStatus(p_i->p_meta, status);
vlc_mutex_unlock( &p_i->lock );
}
void input_item_SetMeta( input_item_t *p_i, vlc_meta_type_t meta_type, const char *psz_val )
{
vlc_mutex_lock( &p_i->lock );
vlc_meta_Set( p_i->p_meta, meta_type, psz_val );
vlc_mutex_unlock( &p_i->lock );
/* Notify interested third parties */
vlc_event_send( &p_i->event_manager, &(vlc_event_t) {
.type = vlc_InputItemMetaChanged,
.u.input_item_meta_changed.meta_type = meta_type } );
}
void input_item_CopyOptions( input_item_t *p_child,
input_item_t *p_parent )
{
char **optv = NULL;
uint8_t *flagv = NULL;
int optc = 0;
char **optv_realloc = NULL;
uint8_t *flagv_realloc = NULL;
vlc_mutex_lock( &p_parent->lock );
if( p_parent->i_options > 0 )
{
optv = vlc_alloc( p_parent->i_options, sizeof (*optv) );
if( likely(optv) )
flagv = vlc_alloc( p_parent->i_options, sizeof (*flagv) );
if( likely(flagv) )
{
for( int i = 0; i < p_parent->i_options; i++ )
{
char *psz_dup = strdup( p_parent->ppsz_options[i] );
if( likely(psz_dup) )
{
flagv[optc] = p_parent->optflagv[i];
optv[optc++] = psz_dup;
}
}
}
}
vlc_mutex_unlock( &p_parent->lock );
if( likely(optv && flagv && optc ) )
{
vlc_mutex_lock( &p_child->lock );
if( INT_MAX - p_child->i_options >= optc &&
SIZE_MAX / sizeof (*flagv) >= (size_t) (p_child->i_options + optc) )
flagv_realloc = realloc( p_child->optflagv,
(p_child->i_options + optc) * sizeof (*flagv) );
if( likely(flagv_realloc) )
{
p_child->optflagv = flagv_realloc;
if( SIZE_MAX / sizeof (*optv) >= (size_t) (p_child->i_options + optc) )
optv_realloc = realloc( p_child->ppsz_options,
(p_child->i_options + optc) * sizeof (*optv) );
if( likely(optv_realloc) )
{
p_child->ppsz_options = optv_realloc;
memcpy( p_child->ppsz_options + p_child->i_options, optv,
optc * sizeof (*optv) );
memcpy( p_child->optflagv + p_child->i_options, flagv,
optc * sizeof (*flagv) );
p_child->i_options += optc;
p_child->optflagc += optc;
}
}
vlc_mutex_unlock( &p_child->lock );
}
if( unlikely(!flagv_realloc || !optv_realloc) )
{
/* Didn't copy pointers, so need to free the strdup() */
for( int i=0; i<optc; i++ )
free( optv[i] );
}
free( flagv );
free( optv );
}
bool input_item_HasErrorWhenReading( input_item_t *p_item )
{
vlc_mutex_lock( &p_item->lock );
bool b_error = p_item->b_error_when_reading;
vlc_mutex_unlock( &p_item->lock );
return b_error;
}
bool input_item_MetaMatch( input_item_t *p_i,
vlc_meta_type_t meta_type, const char *psz )
{
vlc_mutex_lock( &p_i->lock );
const char *psz_meta = vlc_meta_Get( p_i->p_meta, meta_type );
bool b_ret = psz_meta && strcasestr( psz_meta, psz );
vlc_mutex_unlock( &p_i->lock );
return b_ret;
}
const char *input_item_GetMetaLocked(input_item_t *item,
vlc_meta_type_t meta_type)
{
vlc_mutex_assert(&item->lock);
return vlc_meta_Get(item->p_meta, meta_type);
}
char *input_item_GetMeta( input_item_t *p_i, vlc_meta_type_t meta_type )
{
vlc_mutex_lock( &p_i->lock );
const char *value = input_item_GetMetaLocked( p_i, meta_type );
char *psz = value ? strdup( value ) : NULL;
vlc_mutex_unlock( &p_i->lock );
return psz;
}
/* Get the title of a given item or fallback to the name if the title is empty */
char *input_item_GetTitleFbName( input_item_t *p_item )
{
char *psz_ret;
vlc_mutex_lock( &p_item->lock );
const char *psz_title = vlc_meta_Get( p_item->p_meta, vlc_meta_Title );
if( !EMPTY_STR( psz_title ) )
psz_ret = strdup( psz_title );
else
psz_ret = p_item->psz_name ? strdup( p_item->psz_name ) : NULL;
vlc_mutex_unlock( &p_item->lock );
return psz_ret;
}
char *input_item_GetName( input_item_t *p_item )
{
vlc_mutex_lock( &p_item->lock );
char *psz_name = p_item->psz_name ? strdup( p_item->psz_name ) : NULL;
vlc_mutex_unlock( &p_item->lock );
return psz_name;
}
void input_item_SetName( input_item_t *p_item, const char *psz_name )
{
vlc_mutex_lock( &p_item->lock );
free( p_item->psz_name );
p_item->psz_name = strdup( psz_name );
vlc_mutex_unlock( &p_item->lock );
}
char *input_item_GetURI( input_item_t *p_i )
{
vlc_mutex_lock( &p_i->lock );
char *psz_s = p_i->psz_uri ? strdup( p_i->psz_uri ) : NULL;
vlc_mutex_unlock( &p_i->lock );
return psz_s;
}
void input_item_SetURI( input_item_t *p_i, const char *psz_uri )
{
assert( psz_uri );
#ifndef NDEBUG
if( !strstr( psz_uri, "://" )
|| strchr( psz_uri, ' ' ) || strchr( psz_uri, '"' ) )
fprintf( stderr, "Warning: %s(\"%s\"): file path instead of URL.\n",
__func__, psz_uri );
#endif
vlc_mutex_lock( &p_i->lock );
free( p_i->psz_uri );
p_i->psz_uri = strdup( psz_uri );
p_i->i_type = GuessType( p_i, &p_i->b_net );
if( p_i->psz_name )
;
else
if( p_i->i_type == ITEM_TYPE_FILE || p_i->i_type == ITEM_TYPE_DIRECTORY )
{
const char *psz_filename = strrchr( p_i->psz_uri, '/' );
if( psz_filename && *psz_filename == '/' )
psz_filename++;
if( psz_filename && *psz_filename )
p_i->psz_name = strdup( psz_filename );
/* Make the name more readable */
if( p_i->psz_name )
{
vlc_uri_decode( p_i->psz_name );
EnsureUTF8( p_i->psz_name );
}
}
else
{ /* Strip login and password from title */
int r;
vlc_url_t url;
vlc_UrlParse( &url, psz_uri );
if( url.psz_protocol )
{
if( url.i_port > 0 )
r=asprintf( &p_i->psz_name, "%s://%s:%u%s", url.psz_protocol,
url.psz_host, url.i_port,
url.psz_path ? url.psz_path : "" );
else
r=asprintf( &p_i->psz_name, "%s://%s%s", url.psz_protocol,
url.psz_host ? url.psz_host : "",
url.psz_path ? url.psz_path : "" );
}
else
{
if( url.i_port > 0 )
r=asprintf( &p_i->psz_name, "%s:%u%s", url.psz_host, url.i_port,
url.psz_path ? url.psz_path : "" );
else
r=asprintf( &p_i->psz_name, "%s%s", url.psz_host,
url.psz_path ? url.psz_path : "" );
}
vlc_UrlClean( &url );
if( -1==r )
p_i->psz_name=NULL; /* recover from undefined value */
}
vlc_mutex_unlock( &p_i->lock );
}
vlc_tick_t input_item_GetDuration( input_item_t *p_i )
{
vlc_mutex_lock( &p_i->lock );
vlc_tick_t i_duration = p_i->i_duration;
vlc_mutex_unlock( &p_i->lock );
if (i_duration == INPUT_DURATION_INDEFINITE)
i_duration = 0;
else if (i_duration == INPUT_DURATION_UNSET)
i_duration = 0;
return i_duration;
}
void input_item_SetDuration( input_item_t *p_i, vlc_tick_t i_duration )
{
bool b_send_event = false;
vlc_mutex_lock( &p_i->lock );
if( p_i->i_duration != i_duration )
{
p_i->i_duration = i_duration;
b_send_event = true;
}
vlc_mutex_unlock( &p_i->lock );
if( b_send_event )
{
vlc_event_send( &p_i->event_manager, &(vlc_event_t) {
.type = vlc_InputItemDurationChanged,
.u.input_item_duration_changed.new_duration = i_duration } );
}
}
char *input_item_GetNowPlayingFb( input_item_t *p_item )
{
char *psz_meta = input_item_GetMeta( p_item, vlc_meta_NowPlaying );
if( !psz_meta || strlen( psz_meta ) == 0 )
{
free( psz_meta );
return input_item_GetMeta( p_item, vlc_meta_ESNowPlaying );
}
return psz_meta;
}
bool input_item_IsPreparsed( input_item_t *p_item )
{
vlc_mutex_lock( &p_item->lock );
bool b_preparsed = vlc_meta_GetStatus(p_item->p_meta) & ITEM_PREPARSED;
vlc_mutex_unlock( &p_item->lock );
return b_preparsed;
}
bool input_item_IsArtFetched( input_item_t *p_item )
{
vlc_mutex_lock( &p_item->lock );
bool b_fetched = vlc_meta_GetStatus(p_item->p_meta) & ITEM_ART_FETCHED;
vlc_mutex_unlock( &p_item->lock );
return b_fetched;
}
bool input_item_ShouldPreparseSubItems( input_item_t *p_item )
{
bool b_ret;
vlc_mutex_lock( &p_item->lock );
b_ret = p_item->i_preparse_depth == -1 ? true : p_item->i_preparse_depth > 0;
vlc_mutex_unlock( &p_item->lock );
return b_ret;
}
input_item_t *input_item_Hold( input_item_t *p_item )
{
input_item_owner_t *owner = item_owner(p_item);
vlc_atomic_rc_inc( &owner->rc );
return p_item;
}
void input_item_Release( input_item_t *p_item )
{
input_item_owner_t *owner = item_owner(p_item);
if( !vlc_atomic_rc_dec( &owner->rc ) )
return;
vlc_event_manager_fini( &p_item->event_manager );
free( p_item->psz_name );
free( p_item->psz_uri );
free( p_item->p_stats );
vlc_meta_Delete( p_item->p_meta );
for( input_item_opaque_t *o = p_item->opaques, *next; o != NULL; o = next )
{
next = o->next;
free( o );
}
for( int i = 0; i < p_item->i_options; i++ )
free( p_item->ppsz_options[i] );
TAB_CLEAN( p_item->i_options, p_item->ppsz_options );
free( p_item->optflagv );
for( int i = 0; i < p_item->i_es; i++ )
{
es_format_Clean( p_item->es[i] );
free( p_item->es[i] );
}
TAB_CLEAN( p_item->i_es, p_item->es );
for( int i = 0; i < p_item->i_epg; i++ )
vlc_epg_Delete( p_item->pp_epg[i] );
TAB_CLEAN( p_item->i_epg, p_item->pp_epg );
for( int i = 0; i < p_item->i_categories; i++ )
info_category_Delete( p_item->pp_categories[i] );
TAB_CLEAN( p_item->i_categories, p_item->pp_categories );
for( int i = 0; i < p_item->i_slaves; i++ )
input_item_slave_Delete( p_item->pp_slaves[i] );
TAB_CLEAN( p_item->i_slaves, p_item->pp_slaves );
free( owner );
}
int input_item_AddOption( input_item_t *p_input, const char *psz_option,
unsigned flags )
{
int err = VLC_SUCCESS;
if( psz_option == NULL )
return VLC_EGENERIC;
vlc_mutex_lock( &p_input->lock );
if (flags & VLC_INPUT_OPTION_UNIQUE)
{
for (int i = 0 ; i < p_input->i_options; i++)
if( !strcmp( p_input->ppsz_options[i], psz_option ) )
goto out;
}
uint8_t *flagv = realloc (p_input->optflagv, p_input->optflagc + 1);
if (flagv == NULL)
{
err = VLC_ENOMEM;
goto out;
}
p_input->optflagv = flagv;
char* psz_option_dup = strdup( psz_option );
if( unlikely( !psz_option_dup ) )
{
err = VLC_ENOMEM;
goto out;
}
TAB_APPEND(p_input->i_options, p_input->ppsz_options, psz_option_dup);
flagv[p_input->optflagc++] = flags;
out:
vlc_mutex_unlock( &p_input->lock );
return err;
}
int input_item_AddOptions( input_item_t *p_item, int i_options,
const char *const *ppsz_options,
unsigned i_flags )
{
int i_ret = VLC_SUCCESS;
for( int i = 0; i < i_options && i_ret == VLC_SUCCESS; i++ )
i_ret = input_item_AddOption( p_item, ppsz_options[i], i_flags );
return i_ret;
}
int input_item_AddOpaque(input_item_t *item, const char *name, void *value)
{
assert(name != NULL);
size_t namelen = strlen(name);
input_item_opaque_t *entry = malloc(sizeof (*entry) + namelen);
if (unlikely(entry == NULL))
return VLC_ENOMEM;
memcpy(entry->name, name, namelen + 1);
entry->value = value;
vlc_mutex_lock(&item->lock);
entry->next = item->opaques;
item->opaques = entry;
vlc_mutex_unlock(&item->lock);
return VLC_SUCCESS;
}
void input_item_ApplyOptions(vlc_object_t *obj, input_item_t *item)
{
vlc_mutex_lock(&item->lock);
assert(item->optflagc == (unsigned)item->i_options);
for (unsigned i = 0; i < (unsigned)item->i_options; i++)
var_OptionParse(obj, item->ppsz_options[i],
!!(item->optflagv[i] & VLC_INPUT_OPTION_TRUSTED));
for (const input_item_opaque_t *o = item->opaques; o != NULL; o = o->next)
{
var_Create(obj, o->name, VLC_VAR_ADDRESS);
var_SetAddress(obj, o->name, o->value);
}
vlc_mutex_unlock(&item->lock);
}
static int bsearch_strcmp_cb(const void *a, const void *b)
{
const char *const *entry = b;
return strcasecmp(a, *entry);
}
static bool input_item_IsMaster(const char *psz_filename)
{
static const char *const ppsz_master_exts[] = { MASTER_EXTENSIONS };
const char *psz_ext = strrchr(psz_filename, '.');
if (psz_ext == NULL || *(++psz_ext) == '\0')
return false;
return bsearch(psz_ext, ppsz_master_exts, ARRAY_SIZE(ppsz_master_exts),
sizeof(const char *), bsearch_strcmp_cb) != NULL;
}
bool input_item_slave_GetType(const char *psz_filename,
enum slave_type *p_slave_type)
{
static const char *const ppsz_sub_exts[] = { SLAVE_SPU_EXTENSIONS };
static const char *const ppsz_audio_exts[] = { SLAVE_AUDIO_EXTENSIONS };
static struct {
enum slave_type i_type;
const char *const *ppsz_exts;
size_t nmemb;
} p_slave_list[] = {
{ SLAVE_TYPE_SPU, ppsz_sub_exts, ARRAY_SIZE(ppsz_sub_exts) },
{ SLAVE_TYPE_AUDIO, ppsz_audio_exts, ARRAY_SIZE(ppsz_audio_exts) },
};
const char *psz_ext = strrchr(psz_filename, '.');
if (psz_ext == NULL || *(++psz_ext) == '\0')
return false;
for (unsigned int i = 0; i < sizeof(p_slave_list) / sizeof(*p_slave_list); ++i)
{
if (bsearch(psz_ext, p_slave_list[i].ppsz_exts, p_slave_list[i].nmemb,
sizeof(const char *), bsearch_strcmp_cb))
{
*p_slave_type = p_slave_list[i].i_type;
return true;
}
}
return false;
}
input_item_slave_t *input_item_slave_New(const char *psz_uri, enum slave_type i_type,
enum slave_priority i_priority)
{
if( !psz_uri )
return NULL;
input_item_slave_t *p_slave = malloc( sizeof( *p_slave ) + strlen( psz_uri ) + 1 );
if( !p_slave )
return NULL;
p_slave->i_type = i_type;
p_slave->i_priority = i_priority;
p_slave->b_forced = false;
strcpy( p_slave->psz_uri, psz_uri );
return p_slave;
}
int input_item_AddSlave(input_item_t *p_item, input_item_slave_t *p_slave)
{
if( p_item == NULL || p_slave == NULL
|| p_slave->i_priority < SLAVE_PRIORITY_MATCH_NONE )
return VLC_EGENERIC;
vlc_mutex_lock( &p_item->lock );
TAB_APPEND(p_item->i_slaves, p_item->pp_slaves, p_slave);
vlc_mutex_unlock( &p_item->lock );
return VLC_SUCCESS;
}
static info_category_t *InputItemFindCat( input_item_t *p_item,
int *pi_index, const char *psz_cat )
{
vlc_mutex_assert( &p_item->lock );
for( int i = 0; i < p_item->i_categories && psz_cat; i++ )
{
info_category_t *p_cat = p_item->pp_categories[i];
if( !strcmp( p_cat->psz_name, psz_cat ) )
{
if( pi_index )
*pi_index = i;
return p_cat;
}
}
return NULL;
}
/**
* Get a info item from a given category in a given input item.
*
* \param p_i The input item to get info from
* \param psz_cat String representing the category for the info
* \param psz_name String representing the name of the desired info
* \return A pointer to the string with the given info if found, or an
* empty string otherwise. The caller should free the returned
* pointer.
*/
char *input_item_GetInfo( input_item_t *p_i,
const char *psz_cat,
const char *psz_name )
{
vlc_mutex_lock( &p_i->lock );
const info_category_t *p_cat = InputItemFindCat( p_i, NULL, psz_cat );
if( p_cat )
{
info_t *p_info = info_category_FindInfo( p_cat, psz_name );
if( p_info && p_info->psz_value )
{
char *psz_ret = strdup( p_info->psz_value );
vlc_mutex_unlock( &p_i->lock );
return psz_ret;
}
}
vlc_mutex_unlock( &p_i->lock );
return strdup( "" );
}
static int InputItemVaAddInfo( input_item_t *p_i,
const char *psz_cat,
const char *psz_name,
const char *psz_format, va_list args )
{
vlc_mutex_assert( &p_i->lock );
info_category_t *p_cat = InputItemFindCat( p_i, NULL, psz_cat );
if( !p_cat )
{
p_cat = info_category_New( psz_cat );
if( !p_cat )
return VLC_ENOMEM;
TAB_APPEND(p_i->i_categories, p_i->pp_categories, p_cat);
}
info_t *p_info = info_category_VaAddInfo( p_cat, psz_name, psz_format, args );
if( !p_info || !p_info->psz_value )
return VLC_EGENERIC;
return VLC_SUCCESS;
}
int input_item_AddInfo( input_item_t *p_i,
const char *psz_cat,
const char *psz_name,
const char *psz_format, ... )
{
va_list args;
vlc_mutex_lock( &p_i->lock );
va_start( args, psz_format );
const int i_ret = InputItemVaAddInfo( p_i, psz_cat, psz_name, psz_format, args );
va_end( args );
vlc_mutex_unlock( &p_i->lock );
if( !i_ret )
vlc_event_send( &p_i->event_manager, &(vlc_event_t) {
.type = vlc_InputItemInfoChanged } );
return i_ret;
}
int input_item_DelInfo( input_item_t *p_i,
const char *psz_cat,
const char *psz_name )
{
vlc_mutex_lock( &p_i->lock );
int i_cat;
info_category_t *p_cat = InputItemFindCat( p_i, &i_cat, psz_cat );
if( !p_cat )
{
vlc_mutex_unlock( &p_i->lock );
return VLC_EGENERIC;
}
if( psz_name )
{
/* Remove a specific info */
int i_ret = info_category_DeleteInfo( p_cat, psz_name );
if( i_ret )
{
vlc_mutex_unlock( &p_i->lock );
return VLC_EGENERIC;
}
}
else
{
/* Remove the complete categorie */
info_category_Delete( p_cat );
TAB_ERASE(p_i->i_categories, p_i->pp_categories, i_cat);
}
vlc_mutex_unlock( &p_i->lock );
vlc_event_send( &p_i->event_manager,
&(vlc_event_t) { .type = vlc_InputItemInfoChanged } );
return VLC_SUCCESS;
}
void input_item_ReplaceInfos( input_item_t *p_item, info_category_t *p_cat )
{
vlc_mutex_lock( &p_item->lock );
int i_cat;
info_category_t *p_old = InputItemFindCat( p_item, &i_cat, p_cat->psz_name );
if( p_old )
{
info_category_Delete( p_old );
p_item->pp_categories[i_cat] = p_cat;
}
else
TAB_APPEND(p_item->i_categories, p_item->pp_categories, p_cat);
vlc_mutex_unlock( &p_item->lock );
vlc_event_send( &p_item->event_manager,
&(vlc_event_t) { .type = vlc_InputItemInfoChanged } );
}
void input_item_MergeInfos( input_item_t *p_item, info_category_t *p_cat )
{
vlc_mutex_lock( &p_item->lock );
info_category_t *p_old = InputItemFindCat( p_item, NULL, p_cat->psz_name );
if( p_old )
{
info_t *info;
info_foreach(info, &p_cat->infos)
info_category_ReplaceInfo( p_old, info );
vlc_list_init( &p_cat->infos );
info_category_Delete( p_cat );
}
else
TAB_APPEND(p_item->i_categories, p_item->pp_categories, p_cat);
vlc_mutex_unlock( &p_item->lock );
vlc_event_send( &p_item->event_manager,
&(vlc_event_t) { .type = vlc_InputItemInfoChanged } );
}
void input_item_SetEpgEvent( input_item_t *p_item, const vlc_epg_event_t *p_epg_evt )
{
bool b_changed = false;
vlc_mutex_lock( &p_item->lock );
for( int i = 0; i < p_item->i_epg; i++ )
{
vlc_epg_t *p_epg = p_item->pp_epg[i];
for( size_t j = 0; j < p_epg->i_event; j++ )
{
/* Same event can exist in more than one table */
if( p_epg->pp_event[j]->i_id == p_epg_evt->i_id )
{
vlc_epg_event_t *p_dup = vlc_epg_event_Duplicate( p_epg_evt );
if( p_dup )
{
if( p_epg->p_current == p_epg->pp_event[j] )
p_epg->p_current = p_dup;
vlc_epg_event_Delete( p_epg->pp_event[j] );
p_epg->pp_event[j] = p_dup;
b_changed = true;
}
break;
}
}
}
vlc_mutex_unlock( &p_item->lock );
if ( b_changed )
{
vlc_event_send( &p_item->event_manager,
&(vlc_event_t) { .type = vlc_InputItemInfoChanged } );
}
}
//#define EPG_DEBUG
#ifdef EPG_DEBUG
static int InputItemAddInfo( input_item_t *p_i,
const char *psz_cat,
const char *psz_name,
const char *psz_format, ... )
{
va_list args;
va_start( args, psz_format );
const int i_ret = InputItemVaAddInfo( p_i, psz_cat, psz_name, psz_format, args );
va_end( args );
return i_ret;
}
#endif
void input_item_SetEpg( input_item_t *p_item, const vlc_epg_t *p_update, bool b_current_source )
{
vlc_epg_t *p_epg = vlc_epg_Duplicate( p_update );
if( !p_epg )
return;
vlc_mutex_lock( &p_item->lock );
/* */
vlc_epg_t **pp_epg = NULL;
for( int i = 0; i < p_item->i_epg; i++ )
{
if( p_item->pp_epg[i]->i_source_id == p_update->i_source_id &&
p_item->pp_epg[i]->i_id == p_update->i_id )
{
pp_epg = &p_item->pp_epg[i];
break;
}
}
/* replace with new version */
if( pp_epg )
{
vlc_epg_Delete( *pp_epg );
if( *pp_epg == p_item->p_epg_table ) /* current table can have changed */
p_item->p_epg_table = NULL;
*pp_epg = p_epg;
}
else
{
TAB_APPEND( p_item->i_epg, p_item->pp_epg, p_epg );
}
if( b_current_source && p_epg->b_present )
p_item->p_epg_table = p_epg;
vlc_mutex_unlock( &p_item->lock );
#ifdef EPG_DEBUG
char *psz_epg;
if( asprintf( &psz_epg, "EPG %s", p_epg->psz_name ? p_epg->psz_name : "unknown" ) < 0 )
goto signal;
input_item_DelInfo( p_item, psz_epg, NULL );
vlc_mutex_lock( &p_item->lock );
for( size_t i = 0; i < p_epg->i_event; i++ )
{
const vlc_epg_event_t *p_evt = p_epg->pp_event[i];
time_t t_start = (time_t)p_evt->i_start;
struct tm tm_start;
char psz_start[128];
localtime_r( &t_start, &tm_start );
snprintf( psz_start, sizeof(psz_start), "%4.4d-%2.2d-%2.2d %2.2d:%2.2d:%2.2d",
1900 + tm_start.tm_year, 1 + tm_start.tm_mon, tm_start.tm_mday,
tm_start.tm_hour, tm_start.tm_min, tm_start.tm_sec );
if( p_evt->psz_short_description || p_evt->psz_description )
InputItemAddInfo( p_item, psz_epg, psz_start, "%s (%2.2d:%2.2d) - %s %s",
p_evt->psz_name,
p_evt->i_duration/60/60, (p_evt->i_duration/60)%60,
p_evt->psz_short_description ? p_evt->psz_short_description : "" ,
p_evt->psz_description ? p_evt->psz_description : "" );
else
InputItemAddInfo( p_item, psz_epg, psz_start, "%s (%2.2d:%2.2d)",
p_evt->psz_name,
p_evt->i_duration/60/60, (p_evt->i_duration/60)%60 );
}
vlc_mutex_unlock( &p_item->lock );
free( psz_epg );
signal:
#endif
vlc_event_send( &p_item->event_manager,
&(vlc_event_t){ .type = vlc_InputItemInfoChanged, } );
}
void input_item_ChangeEPGSource( input_item_t *p_item, int i_source_id )
{
vlc_mutex_lock( &p_item->lock );
p_item->p_epg_table = NULL;
if( i_source_id > 0 )
{
/* Update pointer to current/next table in the full schedule */
for( int i = 0; i < p_item->i_epg; i++ )
{
if( p_item->pp_epg[i]->i_source_id == i_source_id &&
p_item->pp_epg[i]->b_present )
{
p_item->p_epg_table = p_item->pp_epg[i];
break;
}
}
}
vlc_mutex_unlock( &p_item->lock );
}
void input_item_SetEpgTime( input_item_t *p_item, int64_t i_time )
{
vlc_mutex_lock( &p_item->lock );
p_item->i_epg_time = i_time;
vlc_mutex_unlock( &p_item->lock );
}
void input_item_SetEpgOffline( input_item_t *p_item )
{
input_item_ChangeEPGSource( p_item, -1 );
#ifdef EPG_DEBUG
vlc_mutex_lock( &p_item->lock );
const int i_epg_info = p_item->i_epg;
if( i_epg_info > 0 )
{
char *ppsz_epg_info[i_epg_info];
for( int i = 0; i < p_item->i_epg; i++ )