]> git.sesse.net Git - vlc/blob - include/vlc_input_item.h
vlc core: single storage playlist
[vlc] / include / vlc_input_item.h
1 /*****************************************************************************
2  * vlc_input_item.h: Core input item
3  *****************************************************************************
4  * Copyright (C) 1999-2009 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Christophe Massiot <massiot@via.ecp.fr>
8  *          Laurent Aimar <fenrir@via.ecp.fr>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23  *****************************************************************************/
24
25 #ifndef VLC__INPUT_ITEM_H
26 #define VLC__INPUT_ITEM_H 1
27
28 /**
29  * \file
30  * This file defines functions, structures and enums for input items in vlc
31  */
32
33 #include <vlc_meta.h>
34 #include <vlc_epg.h>
35
36 #include <string.h>
37
38 /*****************************************************************************
39  * input_item_t: Describes an input and is used to spawn input_thread_t objects
40  *****************************************************************************/
41 struct info_t
42 {
43     char *psz_name;            /**< Name of this info */
44     char *psz_value;           /**< Value of the info */
45 };
46
47 struct info_category_t
48 {
49     char   *psz_name;      /**< Name of this category */
50     int    i_infos;        /**< Number of infos in the category */
51     struct info_t **pp_infos;     /**< Pointer to an array of infos */
52 };
53
54 struct input_item_t
55 {
56     VLC_GC_MEMBERS
57     int        i_id;                 /**< Identifier of the item */
58
59     char       *psz_name;            /**< text describing this item */
60     char       *psz_uri;             /**< mrl of this item */
61
62     int        i_options;            /**< Number of input options */
63     char       **ppsz_options;       /**< Array of input options */
64     uint8_t    *optflagv;            /**< Some flags of input options */
65     unsigned   optflagc;
66
67     mtime_t    i_duration;           /**< Duration in microseconds */
68
69
70     int        i_categories;         /**< Number of info categories */
71     info_category_t **pp_categories; /**< Pointer to the first info category */
72
73     int         i_es;                /**< Number of es format descriptions */
74     es_format_t **es;                /**< Es formats */
75
76     input_stats_t *p_stats;          /**< Statistics */
77     int           i_nb_played;       /**< Number of times played */
78
79     vlc_meta_t *p_meta;
80
81     int         i_epg;               /**< Number of EPG entries */
82     vlc_epg_t   **pp_epg;            /**< EPG entries */
83
84     vlc_event_manager_t event_manager;
85
86     vlc_mutex_t lock;                 /**< Lock for the item */
87
88     uint8_t     i_type;              /**< Type (file, disc, ... see input_item_type_e) */
89     bool        b_prefers_tree;      /**< Do we prefer being displayed as tree*/
90     bool        b_fixed_name;        /**< Can the interface change the name ?*/
91     bool        b_error_when_reading;/**< Error When Reading */
92 };
93
94 enum input_item_type_e
95 {
96     ITEM_TYPE_UNKNOWN,
97     ITEM_TYPE_FILE,
98     ITEM_TYPE_DIRECTORY,
99     ITEM_TYPE_DISC,
100     ITEM_TYPE_CDDA,
101     ITEM_TYPE_CARD,
102     ITEM_TYPE_NET,
103     ITEM_TYPE_PLAYLIST,
104     ITEM_TYPE_NODE,
105
106     /* This one is not a real type but the number of input_item types. */
107     ITEM_TYPE_NUMBER
108 };
109
110 struct input_item_node_t
111 {
112     input_item_t *         p_item;
113     int                    i_children;
114     input_item_node_t      **pp_children;
115     input_item_node_t      *p_parent;
116 };
117
118 VLC_EXPORT( void, input_item_CopyOptions, ( input_item_t *p_parent, input_item_t *p_child ) );
119 VLC_EXPORT( void, input_item_SetName, ( input_item_t *p_item, const char *psz_name ) );
120
121 /* This won't hold the item, but can tell to interested third parties
122  * Like the playlist, that there is a new sub item. With this design
123  * It is not the input item's responsability to keep all the ref of
124  * the input item children. */
125 VLC_EXPORT( void, input_item_AddSubItem, ( input_item_t *p_parent, input_item_t *p_child ) );
126
127 VLC_EXPORT( void, input_item_AddSubItemTree, ( input_item_node_t *p_root ) );
128
129 /* Will send vlc_InputItemSubItemTreeAdded event, just as input_item_AddSubItemTree */
130 VLC_EXPORT( void, input_item_AddSubItem2, ( input_item_t *p_parent, input_item_t *p_child ) );
131
132
133 /**
134  * Option flags
135  */
136 enum input_item_option_e
137 {
138     /* Allow VLC to trust the given option.
139      * By default options are untrusted */
140     VLC_INPUT_OPTION_TRUSTED = 0x2,
141
142     /* Change the value associated to an option if already present, otherwise
143      * add the option */
144     VLC_INPUT_OPTION_UNIQUE  = 0x100,
145 };
146
147 /**
148  * This function allows to add an option to an existing input_item_t.
149  */
150 VLC_EXPORT( int,  input_item_AddOption, (input_item_t *, const char *, unsigned i_flags ) );
151
152 /* */
153 VLC_EXPORT( bool, input_item_HasErrorWhenReading, ( input_item_t * ) );
154 VLC_EXPORT( void, input_item_SetMeta, ( input_item_t *, vlc_meta_type_t meta_type, const char *psz_val ));
155 VLC_EXPORT( bool, input_item_MetaMatch, ( input_item_t *p_i, vlc_meta_type_t meta_type, const char *psz ) );
156 VLC_EXPORT( char *, input_item_GetMeta, ( input_item_t *p_i, vlc_meta_type_t meta_type ) );
157 VLC_EXPORT( char *, input_item_GetName, ( input_item_t * p_i ) );
158 VLC_EXPORT( char *, input_item_GetTitleFbName, ( input_item_t * p_i ) );
159 VLC_EXPORT( char *, input_item_GetURI, ( input_item_t * p_i ) );
160 VLC_EXPORT( void,   input_item_SetURI, ( input_item_t * p_i, const char *psz_uri ));
161 VLC_EXPORT(mtime_t, input_item_GetDuration, ( input_item_t * p_i ) );
162 VLC_EXPORT( void,   input_item_SetDuration, ( input_item_t * p_i, mtime_t i_duration ));
163 VLC_EXPORT( bool,   input_item_IsPreparsed, ( input_item_t *p_i ));
164 VLC_EXPORT( bool,   input_item_IsArtFetched, ( input_item_t *p_i ));
165
166
167 #define input_item_SetTitle( item, b )       input_item_SetMeta( item, vlc_meta_Title, b )
168 #define input_item_SetArtist( item, b )      input_item_SetMeta( item, vlc_meta_Artist, b )
169 #define input_item_SetGenre( item, b )       input_item_SetMeta( item, vlc_meta_Genre, b )
170 #define input_item_SetCopyright( item, b )   input_item_SetMeta( item, vlc_meta_Copyright, b )
171 #define input_item_SetAlbum( item, b )       input_item_SetMeta( item, vlc_meta_Album, b )
172 #define input_item_SetTrackNum( item, b )    input_item_SetMeta( item, vlc_meta_TrackNumber, b )
173 #define input_item_SetDescription( item, b ) input_item_SetMeta( item, vlc_meta_Description, b )
174 #define input_item_SetRating( item, b )      input_item_SetMeta( item, vlc_meta_Rating, b )
175 #define input_item_SetDate( item, b )        input_item_SetMeta( item, vlc_meta_Date, b )
176 #define input_item_SetSetting( item, b )     input_item_SetMeta( item, vlc_meta_Setting, b )
177 #define input_item_SetURL( item, b )         input_item_SetMeta( item, vlc_meta_URL, b )
178 #define input_item_SetLanguage( item, b )    input_item_SetMeta( item, vlc_meta_Language, b )
179 #define input_item_SetNowPlaying( item, b )  input_item_SetMeta( item, vlc_meta_NowPlaying, b )
180 #define input_item_SetPublisher( item, b )   input_item_SetMeta( item, vlc_meta_Publisher, b )
181 #define input_item_SetEncodedBy( item, b )   input_item_SetMeta( item, vlc_meta_EncodedBy, b )
182 #define input_item_SetArtURL( item, b )      input_item_SetMeta( item, vlc_meta_ArtworkURL, b )
183 #define input_item_SetTrackID( item, b )     input_item_SetMeta( item, vlc_meta_TrackID, b )
184
185 #define input_item_GetTitle( item )          input_item_GetMeta( item, vlc_meta_Title )
186 #define input_item_GetArtist( item )         input_item_GetMeta( item, vlc_meta_Artist )
187 #define input_item_GetGenre( item )          input_item_GetMeta( item, vlc_meta_Genre )
188 #define input_item_GetCopyright( item )      input_item_GetMeta( item, vlc_meta_Copyright )
189 #define input_item_GetAlbum( item )          input_item_GetMeta( item, vlc_meta_Album )
190 #define input_item_GetTrackNum( item )       input_item_GetMeta( item, vlc_meta_TrackNumber )
191 #define input_item_GetDescription( item )    input_item_GetMeta( item, vlc_meta_Description )
192 #define input_item_GetRating( item )         input_item_GetMeta( item, vlc_meta_Rating )
193 #define input_item_GetDate( item )           input_item_GetMeta( item, vlc_meta_Date )
194 #define input_item_GetGetting( item )        input_item_GetMeta( item, vlc_meta_Getting )
195 #define input_item_GetURL( item )            input_item_GetMeta( item, vlc_meta_URL )
196 #define input_item_GetLanguage( item )       input_item_GetMeta( item, vlc_meta_Language )
197 #define input_item_GetNowPlaying( item )     input_item_GetMeta( item, vlc_meta_NowPlaying )
198 #define input_item_GetPublisher( item )      input_item_GetMeta( item, vlc_meta_Publisher )
199 #define input_item_GetEncodedBy( item )      input_item_GetMeta( item, vlc_meta_EncodedBy )
200 #define input_item_GetArtURL( item )         input_item_GetMeta( item, vlc_meta_ArtworkURL )
201 #define input_item_GetTrackID( item )        input_item_GetMeta( item, vlc_meta_TrackID )
202 #define input_item_GetSetting( item )        input_item_GetMeta( item, vlc_meta_Setting )
203
204 VLC_EXPORT( char *, input_item_GetInfo, ( input_item_t *p_i, const char *psz_cat,const char *psz_name ) );
205 VLC_EXPORT( int, input_item_AddInfo, ( input_item_t *p_i, const char *psz_cat, const char *psz_name, const char *psz_format, ... ) LIBVLC_FORMAT( 4, 5 ) );
206 VLC_EXPORT( int, input_item_DelInfo, ( input_item_t *p_i, const char *psz_cat, const char *psz_name ) );
207
208 /**
209  * This function creates a new input_item_t with the provided informations.
210  *
211  * XXX You may also use input_item_New or input_item_NewExt as they need
212  * less arguments.
213  */
214 VLC_EXPORT( input_item_t *, input_item_NewWithType, ( vlc_object_t *, const char *psz_uri, const char *psz_name, int i_options, const char *const *ppsz_options, unsigned i_option_flags, mtime_t i_duration, int i_type ) );
215
216 /**
217  * This function creates a new input_item_t with the provided informations.
218  *
219  * Provided for convenience.
220  */
221 #define input_item_NewExt(a,b,c,d,e,f,g) __input_item_NewExt( VLC_OBJECT(a),b,c,d,e,f,g)
222 VLC_EXPORT( input_item_t *, __input_item_NewExt, (vlc_object_t *, const char *psz_uri, const char *psz_name, int i_options, const char *const *ppsz_options, unsigned i_option_flags, mtime_t i_duration ) );
223
224 /**
225  * This function creates a new input_item_t with the provided informations.
226  *
227  * Provided for convenience.
228  */
229 #define input_item_New( a,b,c ) input_item_NewExt( a, b, c, 0, NULL, 0, -1 )
230
231 VLC_EXPORT( input_item_node_t *, input_item_node_Create, ( input_item_t *p_input ) );
232
233 VLC_EXPORT( void, input_item_node_Delete, ( input_item_node_t *p_node ) );
234
235 VLC_EXPORT( input_item_node_t *, input_item_node_AppendItem, ( input_item_node_t *p_node, input_item_t *p_item ) );
236
237 VLC_EXPORT( void, input_item_node_AppendNode, ( input_item_node_t *p_node, input_item_node_t *p_item ) );
238
239 /******************
240  * Input stats
241  ******************/
242 struct input_stats_t
243 {
244     vlc_mutex_t         lock;
245
246     /* Input */
247     int i_read_packets;
248     int i_read_bytes;
249     float f_input_bitrate;
250     float f_average_input_bitrate;
251
252     /* Demux */
253     int i_demux_read_packets;
254     int i_demux_read_bytes;
255     float f_demux_bitrate;
256     float f_average_demux_bitrate;
257     int i_demux_corrupted;
258     int i_demux_discontinuity;
259
260     /* Decoders */
261     int i_decoded_audio;
262     int i_decoded_video;
263
264     /* Vout */
265     int i_displayed_pictures;
266     int i_lost_pictures;
267
268     /* Sout */
269     int i_sent_packets;
270     int i_sent_bytes;
271     float f_send_bitrate;
272
273     /* Aout */
274     int i_played_abuffers;
275     int i_lost_abuffers;
276 };
277
278 #endif