]> git.sesse.net Git - vlc/blob - include/vlc_playlist.h
Initial Services discovery support
[vlc] / include / vlc_playlist.h
1 /*****************************************************************************
2  * vlc_playlist.h : Playlist functions
3  *****************************************************************************
4  * Copyright (C) 1999-2004 VideoLAN
5  * $Id$
6  *
7  * Authors: Samuel Hocevar <sam@zoy.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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
22  *****************************************************************************/
23
24 /**
25  *  \file
26  *  This file contain structures and function prototypes related
27  *  to the playlist in vlc
28  */
29
30 /**
31  * \defgroup vlc_playlist Playlist
32  * Brief description. Longer description
33  * @{
34  */
35
36 /**
37  * playlist export helper structure
38  */
39 struct playlist_export_t
40 {
41     char *psz_filename;
42     FILE *p_file;
43 };
44
45 struct item_parent_t
46 {
47     int i_view;
48     playlist_item_t *p_parent;
49 };
50
51 /**
52  * playlist item / node
53  * \see playlist_t
54  */
55 struct playlist_item_t
56 {
57     input_item_t           input;       /**< input item descriptor */
58
59     /* Tree specific fields */
60     int                    i_children;  /**< Number of children
61                                              -1 if not a node */
62     playlist_item_t      **pp_children; /**< Children nodes/items */
63     int                    i_parents;   /**< Number of parents */
64     struct item_parent_t **pp_parents;  /**< Parents */
65     int                    i_serial;    /**< Has this node been updated ? */
66
67     uint8_t                i_flags;     /**< Flags */
68
69
70     int        i_nb_played;       /**< How many times was this item played ? */
71     vlc_bool_t b_autodeletion;    /**< Indicates whther this item is to
72                                    * be deleted after playback. True mean
73                                    * that this item is to be deleted
74                                    * after playback, false otherwise */
75     vlc_bool_t b_enabled;         /**< Indicates whether this item is to be
76                                    * played or skipped */
77 };
78
79 #define PLAYLIST_SAVE_FLAG      0x1     /**< Must it be saved */
80 #define PLAYLIST_SKIP_FLAG      0x2     /**< Must playlist skip after it ? */
81 #define PLAYLIST_ENA_FLAG       0x4     /**< Is it enabled ? */
82 #define PLAYLIST_DEL_FLAG       0x8     /**< Autodelete ? */
83
84 /**
85  * playlist view
86  * \see playlist_t
87 */
88 struct playlist_view_t
89 {
90     char            *   psz_name;        /**< View name */
91     int                 i_id;            /**< Identifier for the view */
92     playlist_item_t *   p_root;          /**< Root node */
93 };
94
95
96 /**
97  * predefined views
98  *
99  */
100 #define VIEW_CATEGORY 1
101 #define VIEW_SIMPLE   2
102 #define VIEW_ALL      3
103 #define VIEW_FIRST_SORTED  4
104 #define VIEW_S_AUTHOR 4
105
106 #define VIEW_LAST_SORTED  4
107
108 #define VIEW_FIRST_CUSTOM 100
109
110 /**
111  * Playlist status
112  */
113 typedef enum { PLAYLIST_STOPPED,PLAYLIST_RUNNING,PLAYLIST_PAUSED } playlist_status_t;
114
115
116 struct services_discovery_t
117 {
118     VLC_COMMON_MEMBERS
119     const char *psz_module;
120
121     module_t *p_module;
122
123     services_discovery_sys_t *p_sys;
124     void (*pf_run) ( services_discovery_t *);
125 };
126
127
128 /**
129  * Structure containing information about the playlist
130  */
131 struct playlist_t
132 {
133     VLC_COMMON_MEMBERS
134 /**
135    \name playlist_t
136    These members are uniq to playlist_t
137 */
138 /*@{*/
139     int                   i_index;  /**< current index into the playlist */
140     int                   i_enabled; /**< How many items are enabled ? */
141
142     int                   i_size;   /**< total size of the list */
143     playlist_item_t **    pp_items; /**< array of pointers to the
144                                      * playlist items */
145
146     int                   i_views; /**< Number of views */
147     playlist_view_t **    pp_views; /**< array of pointers to the
148                                      * playlist views */
149
150     input_thread_t *      p_input;  /**< the input thread ascosiated
151                                      * with the current item */
152
153     mtime_t               request_date; /**< Used for profiling */
154
155     int                   i_last_id; /**< Last id to an item */
156     int                   i_sort; /**< Last sorting applied to the playlist */
157     int                   i_order; /**< Last ordering applied to the playlist */
158
159     playlist_item_t *    p_general; /**< Keep a pointer on the "general"
160                                         category */
161
162     services_discovery_t **pp_sds;
163     int                   i_sds;
164
165     vlc_bool_t          b_go_next; /*< Go further than the parent node ? */
166
167     struct {
168         /* Current status */
169         playlist_status_t   i_status;  /**< Current status of playlist */
170
171         /* R/O fields, don't touch if you aren't the playlist thread */
172         /* Use a request */
173         playlist_item_t *   p_item; /**< Currently playing/active item */
174         playlist_item_t *   p_node;   /**< Current node to play from */
175         int                 i_view;    /**< Current view */
176     } status;
177
178     struct {
179         /* Request */
180         /* Playlist thread uses this info to calculate the next position */
181         int                 i_view;   /**< requested view id */
182         playlist_item_t *   p_node;   /**< requested node to play from */
183         playlist_item_t *   p_item;   /**< requested item to play in the node */
184
185         int                 i_skip;   /**< Number of items to skip */
186         int                 i_goto;   /**< Direct index to go to (non-view)*/
187
188         vlc_bool_t          b_request; /**< Set to true by the requester
189                                             The playlist sets it back to false
190                                             when processing the request */
191         vlc_mutex_t        lock;      /**< Lock to protect request */
192     } request;
193
194     /*@}*/
195 };
196
197 #define SORT_ID 0
198 #define SORT_TITLE 1
199 #define SORT_AUTHOR 2
200 #define SORT_RANDOM 4
201 #define SORT_DURATION 5
202
203 #define ORDER_NORMAL 0
204 #define ORDER_REVERSE 1
205
206 /*****************************************************************************
207  * Prototypes
208  *****************************************************************************/
209
210 /* Creation/Deletion */
211 #define playlist_Create(a) __playlist_Create(VLC_OBJECT(a))
212 playlist_t * __playlist_Create   ( vlc_object_t * );
213 void           playlist_Destroy  ( playlist_t * );
214
215 /* Playlist control */
216 #define playlist_Play(p) playlist_Control(p,PLAYLIST_PLAY )
217 #define playlist_Pause(p) playlist_Control(p,PLAYLIST_PAUSE )
218 #define playlist_Stop(p) playlist_Control(p,PLAYLIST_STOP )
219 #define playlist_Next(p) playlist_Control(p,PLAYLIST_SKIP , 1)
220 #define playlist_Prev(p) playlist_Control(p,PLAYLIST_SKIP , -1)
221 #define playlist_Skip(p,i) playlist_Control(p,PLAYLIST_SKIP,i)
222 #define playlist_Goto(p,i) playlist_Control(p,PLAYLIST_GOTO,i)
223
224 VLC_EXPORT( int, playlist_Control, ( playlist_t *, int, ...  ) );
225
226 VLC_EXPORT( int,  playlist_Clear, ( playlist_t * ) );
227
228
229 /* Services discovery */
230
231 VLC_EXPORT( int, playlist_ServicesDiscoveryAdd, (playlist_t *, const char *));
232 VLC_EXPORT( void, playlist_ServicesDiscoveryRemove, (playlist_t *, const char *));
233 VLC_EXPORT( int, playlist_AddSDModules, (playlist_t *, char *));
234
235 /* Item management functions (act on items) */
236 #define playlist_AddItem(p,pi,i1,i2) playlist_ItemAdd(p,pi,i1,i2)
237 #define playlist_ItemNew( a , b, c ) __playlist_ItemNew(VLC_OBJECT(a) , b , c )
238 VLC_EXPORT( playlist_item_t* , __playlist_ItemNew, ( vlc_object_t *,const char *,const char * ) );
239 VLC_EXPORT( void, playlist_ItemDelete, ( playlist_item_t * ) );
240 VLC_EXPORT( void, playlist_ItemAddParent, ( playlist_item_t *, int,playlist_item_t *) );
241 VLC_EXPORT( void, playlist_CopyParents, ( playlist_item_t *,playlist_item_t *) );
242 /* Item informations accessors */
243 VLC_EXPORT( int, playlist_ItemSetName, (playlist_item_t *,  char * ) );
244 VLC_EXPORT( int, playlist_ItemSetDuration, (playlist_item_t *, mtime_t ) );
245
246
247 /* View management functions */
248 VLC_EXPORT( int, playlist_ViewInsert, (playlist_t *, int, char * ) );
249 VLC_EXPORT( void, playlist_ViewDelete, (playlist_t *,playlist_view_t* ) );
250 VLC_EXPORT( playlist_view_t *, playlist_ViewFind, (playlist_t *, int ) );
251 VLC_EXPORT( int, playlist_ViewUpdate, (playlist_t *, int ) );
252 VLC_EXPORT( void, playlist_ViewDump, (playlist_t *, playlist_view_t * ) );
253 VLC_EXPORT( int, playlist_ViewEmpty, (playlist_t *, int, vlc_bool_t ) );
254
255 /* Node management */
256 VLC_EXPORT( playlist_item_t *, playlist_NodeCreate, ( playlist_t *,int,char *, playlist_item_t * p_parent ) );
257 VLC_EXPORT( int, playlist_NodeAppend, (playlist_t *,int,playlist_item_t*,playlist_item_t *) );
258 VLC_EXPORT( int, playlist_NodeInsert, (playlist_t *,int,playlist_item_t*,playlist_item_t *, int) );
259 VLC_EXPORT( int, playlist_NodeRemoveItem, (playlist_t *,playlist_item_t*,playlist_item_t *) );
260 VLC_EXPORT( int, playlist_NodeChildrenCount, (playlist_t *,playlist_item_t* ) );
261 VLC_EXPORT( playlist_item_t *, playlist_ChildSearchName, (playlist_item_t*, const char* ) );
262 VLC_EXPORT( int, playlist_NodeDelete, ( playlist_t *, playlist_item_t *, vlc_bool_t ) );
263 VLC_EXPORT( int, playlist_NodeEmpty, ( playlist_t *, playlist_item_t *, vlc_bool_t ) );
264
265
266 /* Tree walking */
267 playlist_item_t *playlist_FindNextFromParent( playlist_t *p_playlist,
268                 int i_view,
269                 playlist_item_t *p_root,
270                 playlist_item_t *p_node,
271                 playlist_item_t *p_item );
272 playlist_item_t *playlist_FindPrevFromParent( playlist_t *p_playlist,
273                 int i_view,
274                 playlist_item_t *p_root,
275                 playlist_item_t *p_node,
276                 playlist_item_t *p_item );
277
278
279 /* Simple add/remove functions */
280 /* These functions add the item to the "simple" view (+all & category )*/
281 VLC_EXPORT( int,  playlist_Add,    ( playlist_t *, const char *, const char *, int, int ) );
282 VLC_EXPORT( int,  playlist_AddExt, ( playlist_t *, const char *, const char *, int, int, mtime_t, const char **,int ) );
283 VLC_EXPORT( int,  playlist_ItemAdd, ( playlist_t *, playlist_item_t *, int, int ) );
284 VLC_EXPORT(int, playlist_NodeAddItem, ( playlist_t *, playlist_item_t *,int,playlist_item_t *,int , int ) );
285
286 /* Misc item operations (act on item+playlist) */
287 VLC_EXPORT( int,  playlist_Delete, ( playlist_t *, int ) );
288 VLC_EXPORT( int,  playlist_Disable, ( playlist_t *, playlist_item_t * ) );
289 VLC_EXPORT( int,  playlist_Enable, ( playlist_t *, playlist_item_t * ) );
290 VLC_EXPORT( void, playlist_ItemToNode, (playlist_t *,playlist_item_t *) );
291
292
293 /* Item search functions */
294 VLC_EXPORT( playlist_item_t *, playlist_ItemGetById, (playlist_t *, int) );
295 VLC_EXPORT( playlist_item_t *, playlist_ItemGetByPos, (playlist_t *, int) );
296 VLC_EXPORT( int, playlist_GetPositionById, (playlist_t *,int ) );
297
298 /* Info functions */
299 VLC_EXPORT( char * , playlist_GetInfo, ( playlist_t * , int, const char *, const char *) );
300 VLC_EXPORT( char * , playlist_ItemGetInfo, ( playlist_item_t * , const char *, const char *) );
301
302 VLC_EXPORT( info_category_t*, playlist_ItemGetCategory, ( playlist_item_t *, const char *) );
303
304 VLC_EXPORT( info_category_t*, playlist_ItemCreateCategory, ( playlist_item_t *, const char *) );
305
306 VLC_EXPORT( int, playlist_AddInfo, (playlist_t *, int, const char * , const char *, const char *, ...) );
307 VLC_EXPORT( int, playlist_ItemAddInfo, (playlist_item_t *, const char * , const char *, const char *, ...) );
308 VLC_EXPORT( int, playlist_ItemAddOption, (playlist_item_t *, const char *) );
309
310 /* Playlist sorting */
311 #define playlist_SortID(p, i) playlist_Sort( p, SORT_ID, i)
312 #define playlist_SortTitle(p, i) playlist_Sort( p, SORT_TITLE, i)
313 #define playlist_SortAuthor(p, i) playlist_Sort( p, SORT_AUTHOR, i)
314 #define playlist_SortGroup(p, i) playlist_Sort( p, SORT_GROUP, i)
315 VLC_EXPORT( int,  playlist_Sort, ( playlist_t *, int, int) );
316 VLC_EXPORT( int,  playlist_Move, ( playlist_t *, int, int ) );
317 VLC_EXPORT( int,  playlist_NodeGroup, ( playlist_t *, int,playlist_item_t *,playlist_item_t **,int, int, int ) );
318
319 /* Load/Save */
320 VLC_EXPORT( int,  playlist_Import, ( playlist_t *, const char * ) );
321 VLC_EXPORT( int,  playlist_Export, ( playlist_t *, const char *, const char * ) );
322
323 /***********************************************************************
324  * Inline functions
325  ***********************************************************************/
326
327
328 /**
329  *  tell if a playlist is currently playing.
330  *  \param p_playlist the playlist to check
331  *  \return true if playlist is playing, false otherwise
332  */
333 static inline vlc_bool_t playlist_IsPlaying( playlist_t * p_playlist )
334 {
335     vlc_bool_t b_playing;
336
337     vlc_mutex_lock( &p_playlist->object_lock );
338     b_playing = p_playlist->status.i_status == PLAYLIST_RUNNING;
339     vlc_mutex_unlock( &p_playlist->object_lock );
340
341     return( b_playing );
342 }
343
344 /**
345  *  tell if a playlist is currently empty
346  *  \param p_playlist the playlist to check
347  *  \return true if the playlist is empty, false otherwise
348  */
349 static inline vlc_bool_t playlist_IsEmpty( playlist_t * p_playlist )
350 {
351     vlc_bool_t b_empty;
352
353     vlc_mutex_lock( &p_playlist->object_lock );
354     b_empty = p_playlist->i_size == 0;
355     vlc_mutex_unlock( &p_playlist->object_lock );
356
357     return( b_empty );
358 }
359
360 /**
361  * @}
362  */