]> git.sesse.net Git - vlc/blob - src/input/item.c
Add flags when adding an input item option
[vlc] / src / input / item.c
1 /*****************************************************************************
2  * item.c: input_item management
3  *****************************************************************************
4  * Copyright (C) 1998-2004 the VideoLAN team
5  * $Id$
6  *
7  * Authors: ClĂ©ment Stenac <zorglub@videolan.org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 #ifdef HAVE_CONFIG_H
25 # include "config.h"
26 #endif
27 #include <assert.h>
28
29 #include <vlc/vlc.h>
30 #include "vlc_playlist.h"
31 #include "vlc_interface.h"
32
33 #include "input_internal.h"
34
35 static void GuessType( input_item_t *p_item );
36
37 void input_item_SetMeta( input_item_t *p_i, vlc_meta_type_t meta_type, const char *psz_val )
38 {
39     vlc_event_t event;
40
41     vlc_mutex_lock( &p_i->lock );
42     if( !p_i->p_meta )
43         p_i->p_meta = vlc_meta_New();
44     vlc_meta_Set( p_i->p_meta, meta_type, psz_val );
45     vlc_mutex_unlock( &p_i->lock );
46
47     /* Notify interested third parties */
48     event.type = vlc_InputItemMetaChanged;
49     event.u.input_item_meta_changed.meta_type = meta_type;
50     vlc_event_send( &p_i->event_manager, &event );
51 }
52
53 /**
54  * Get the item from an input thread
55  */
56 input_item_t *input_GetItem( input_thread_t *p_input )
57 {
58     assert( p_input && p_input->p );
59     return p_input->p->input.p_item;
60 }
61
62 /**
63  * Get a info item from a given category in a given input item.
64  *
65  * \param p_i The input item to get info from
66  * \param psz_cat String representing the category for the info
67  * \param psz_name String representing the name of the desired info
68  * \return A pointer to the string with the given info if found, or an
69  *         empty string otherwise. The caller should free the returned
70  *         pointer.
71  */
72 char *input_ItemGetInfo( input_item_t *p_i,
73                               const char *psz_cat,
74                               const char *psz_name )
75 {
76     int i,j;
77
78     vlc_mutex_lock( &p_i->lock );
79
80     for( i = 0 ; i< p_i->i_categories  ; i++ )
81     {
82         info_category_t *p_cat = p_i->pp_categories[i];
83
84         if( !psz_cat || strcmp( p_cat->psz_name, psz_cat ) )
85             continue;
86
87         for( j = 0; j < p_cat->i_infos ; j++ )
88         {
89             if( !strcmp( p_cat->pp_infos[j]->psz_name, psz_name ) )
90             {
91                 char *psz_ret = strdup( p_cat->pp_infos[j]->psz_value );
92                 vlc_mutex_unlock( &p_i->lock );
93                 return psz_ret;
94             }
95         }
96     }
97     vlc_mutex_unlock( &p_i->lock );
98     return strdup( "" );
99 }
100
101 static void input_ItemDestroy ( gc_object_t *p_this )
102 {
103     vlc_object_t *p_obj = (vlc_object_t *)p_this->p_destructor_arg;
104     input_item_t *p_input = (input_item_t *) p_this;
105     int i;
106
107     playlist_t *p_playlist = pl_Yield( p_obj );
108     input_ItemClean( p_input );
109
110     ARRAY_BSEARCH( p_playlist->input_items,->i_id, int, p_input->i_id, i);
111     if( i != -1 )
112         ARRAY_REMOVE( p_playlist->input_items, i);
113
114     pl_Release( p_obj );
115     free( p_input );
116 }
117
118 void input_ItemAddOpt( input_item_t *p_input, const char *psz_option,
119                        unsigned flags )
120 {
121     if( psz_option == NULL )
122         return;
123
124     vlc_mutex_lock( &p_input->lock );
125     if (flags & VLC_INPUT_OPTION_UNIQUE)
126     {
127         for (int i = 0 ; i < p_input->i_options; i++)
128             if( !strcmp( p_input->ppsz_options[i], psz_option ) )
129                 goto out;
130     }
131
132     INSERT_ELEM( p_input->ppsz_options, p_input->i_options,
133                  p_input->i_options, strdup( psz_option ) );
134 out:
135     vlc_mutex_unlock( &p_input->lock );
136 }
137
138 int input_ItemAddInfo( input_item_t *p_i,
139                             const char *psz_cat,
140                             const char *psz_name,
141                             const char *psz_format, ... )
142 {
143     va_list args;
144     int i;
145     info_t *p_info = NULL;
146     info_category_t *p_cat = NULL ;
147
148     vlc_mutex_lock( &p_i->lock );
149
150     for( i = 0 ; i < p_i->i_categories ; i ++ )
151     {
152         if( !strcmp( p_i->pp_categories[i]->psz_name, psz_cat ) )
153         {
154             p_cat = p_i->pp_categories[i];
155             break;
156         }
157     }
158     if( !p_cat )
159     {
160         if( !(p_cat = (info_category_t *)malloc( sizeof(info_category_t) )) )
161         {
162             vlc_mutex_unlock( &p_i->lock );
163             return VLC_ENOMEM;
164         }
165         p_cat->psz_name = strdup( psz_cat );
166         p_cat->i_infos = 0;
167         p_cat->pp_infos = 0;
168         INSERT_ELEM( p_i->pp_categories, p_i->i_categories, p_i->i_categories,
169                      p_cat );
170     }
171
172     for( i = 0; i< p_cat->i_infos; i++ )
173     {
174         if( !strcmp( p_cat->pp_infos[i]->psz_name, psz_name ) )
175         {
176             p_info = p_cat->pp_infos[i];
177             break;
178         }
179     }
180
181     if( !p_info )
182     {
183         if( ( p_info = (info_t *)malloc( sizeof( info_t ) ) ) == NULL )
184         {
185             vlc_mutex_unlock( &p_i->lock );
186             return VLC_ENOMEM;
187         }
188         INSERT_ELEM( p_cat->pp_infos, p_cat->i_infos, p_cat->i_infos, p_info );
189         p_info->psz_name = strdup( psz_name );
190     }
191     else
192     {
193         free( p_info->psz_value );
194     }
195
196     va_start( args, psz_format );
197     if( vasprintf( &p_info->psz_value, psz_format, args) )
198         p_info->psz_value = NULL;
199     va_end( args );
200
201     vlc_mutex_unlock( &p_i->lock );
202
203     return p_info->psz_value ? VLC_SUCCESS : VLC_ENOMEM;
204 }
205
206 input_item_t *input_ItemGetById( playlist_t *p_playlist, int i_id )
207 {
208     int i;
209     ARRAY_BSEARCH( p_playlist->input_items, ->i_id, int, i_id, i);
210     if( i != -1 )
211         return ARRAY_VAL( p_playlist->input_items, i);
212     return NULL;
213 }
214
215 input_item_t *__input_ItemNewExt( vlc_object_t *p_obj, const char *psz_uri,
216                                   const char *psz_name,
217                                   int i_options,
218                                   const char *const *ppsz_options,
219                                   mtime_t i_duration )
220 {
221     return input_ItemNewWithType( p_obj, psz_uri, psz_name,
222                                   i_options, ppsz_options,
223                                   i_duration, ITEM_TYPE_UNKNOWN );
224 }
225
226
227 input_item_t *input_ItemNewWithType( vlc_object_t *p_obj, const char *psz_uri,
228                                 const char *psz_name,
229                                 int i_options,
230                                 const char *const *ppsz_options,
231                                 mtime_t i_duration,
232                                 int i_type )
233 {
234     playlist_t *p_playlist = pl_Yield( p_obj );
235     DECMALLOC_NULL( p_input, input_item_t );
236
237     input_ItemInit( p_obj, p_input );
238     vlc_gc_init( p_input, input_ItemDestroy, (void *)p_obj );
239
240     PL_LOCK;
241     p_input->i_id = ++p_playlist->i_last_input_id;
242     ARRAY_APPEND( p_playlist->input_items, p_input );
243     PL_UNLOCK;
244     pl_Release( p_obj );
245
246     p_input->b_fixed_name = VLC_FALSE;
247
248     if( psz_uri )
249         p_input->psz_uri = strdup( psz_uri );
250     else
251         p_input->psz_uri = NULL;
252
253     p_input->i_type = i_type;
254     p_input->b_prefers_tree = VLC_FALSE;
255
256     if( p_input->i_type == ITEM_TYPE_UNKNOWN )
257         GuessType( p_input );
258
259     if( psz_name != NULL )
260         p_input->psz_name = strdup( psz_name );
261     else if( p_input->i_type == ITEM_TYPE_FILE )
262     {
263         const char *psz_filename = strrchr( p_input->psz_uri, DIR_SEP_CHAR );
264         if( psz_filename && *psz_filename == DIR_SEP_CHAR )
265             psz_filename++;
266         p_input->psz_name = strdup( psz_filename && *psz_filename
267                                     ? psz_filename : p_input->psz_uri );
268     }
269     else
270         p_input->psz_name = strdup( p_input->psz_uri );
271
272     p_input->i_duration = i_duration;
273     p_input->ppsz_options = NULL;
274     p_input->i_options = 0;
275
276     for( int i = 0; i < i_options; i++ )
277         input_ItemAddOption( p_input, ppsz_options[i] );
278     return p_input;
279 }
280
281 /* Guess the type of the item using the beginning of the mrl */
282 static void GuessType( input_item_t *p_item)
283 {
284     int i;
285     static struct { const char *psz_search; int i_type; }  types_array[] =
286     {
287         { "http", ITEM_TYPE_NET },
288         { "dvd", ITEM_TYPE_DISC },
289         { "cdda", ITEM_TYPE_CDDA },
290         { "mms", ITEM_TYPE_NET },
291         { "rtsp", ITEM_TYPE_NET },
292         { "udp", ITEM_TYPE_NET },
293         { "rtp", ITEM_TYPE_NET },
294         { "vcd", ITEM_TYPE_DISC },
295         { "v4l", ITEM_TYPE_CARD },
296         { "dshow", ITEM_TYPE_CARD },
297         { "pvr", ITEM_TYPE_CARD },
298         { "dvb", ITEM_TYPE_CARD },
299         { "qpsk", ITEM_TYPE_CARD },
300         { "sdp", ITEM_TYPE_NET },
301         { NULL, 0 }
302     };
303
304     for( i = 0; types_array[i].psz_search != NULL; i++ )
305     {
306         if( !strncmp( p_item->psz_uri, types_array[i].psz_search,
307                       strlen( types_array[i].psz_search ) ) )
308         {
309             p_item->i_type = types_array[i].i_type;
310             return;
311         }
312     }
313     p_item->i_type = ITEM_TYPE_FILE;
314 }