]> git.sesse.net Git - vlc/blob - include/vlc_playlist.h
Removes trailing spaces. Removes tabs.
[vlc] / include / vlc_playlist.h
1 /*****************************************************************************
2  * vlc_playlist.h : Playlist functions
3  *****************************************************************************
4  * Copyright (C) 1999-2004 the VideoLAN team
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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 #if !defined( __LIBVLC__ )
25   #error You are not libvlc or one of its plugins. You cannot include this file
26 #endif
27
28 #ifndef _VLC_PLAYLIST_H_
29 #define _VLC_PLAYLIST_H_
30
31 # ifdef __cplusplus
32 extern "C" {
33 # endif
34
35 #include <assert.h>
36 #include <vlc_input.h>
37 #include <vlc_events.h>
38 #include <stdio.h>
39 #include <stdlib.h>
40
41 TYPEDEF_ARRAY(playlist_item_t*, playlist_item_array_t);
42 TYPEDEF_ARRAY(input_item_t*, input_item_array_t);
43
44 /**
45  * \file
46  * This file contain structures and function prototypes related
47  * to the playlist in vlc
48  *
49  * \defgroup vlc_playlist Playlist
50  *
51  * The VLC playlist system has a tree structure. This allows advanced
52  * categorization, like for SAP streams (which are grouped by "sap groups").
53  *
54  * The base structure for all playlist operations is the input_item_t. This
55  * contains all information needed to play a stream and get info, ie, mostly,
56  * mrl and metadata. This structure contains a unique i_id field. ids are
57  * not recycled when an item is destroyed.
58  *
59  * Input items are not used directly, but through playlist items.
60  * The playlist items are themselves in a tree structure. They only contain
61  * a link to the input item, a unique id and a few flags. the playlist
62  * item id is NOT the same as the input item id.
63  * Several playlist items can be attached to a single input item. The input
64  * item is refcounted and is automatically destroyed when it is not used
65  * anymore.
66  *
67  * In the playlist itself, there are two trees, that should always be kept
68  * in sync. The "category" tree contains the whole tree structure with
69  * several levels, while the onelevel tree contains only one level :), ie
70  * it only contains "real" items, not nodes
71  * For example, if you open a directory, you will have
72  *\verbatim
73  * Category tree:               Onelevel tree:
74  * Playlist                     Playlist
75  *  - Dir                         - item1
76  *    - Subdir                    - item2
77  *      - item1
78  *      - item2
79  *\endverbatim
80  * The top-level items of both tree are the same, and they are reproduced
81  * in the left-part of the playlist GUIs, they are the "sources" from the
82  * source selectors. Top-level items include: playlist, media library, SAP,
83  * Shoutcast, devices, ...
84  *
85  * It is envisioned that a third tree will appear: VLM, but it's not done yet
86  *
87  * The playlist also stores, for utility purposes, an array of all input
88  * items, an array of all playlist items and an array of all playlist items
89  * and nodes (both are represented by the same structure).
90  *
91  * So, here is an example:
92  * \verbatim
93  * Inputs array
94  *  - input 1 -> name = foo 1 uri = ...
95  *  - input 2 -> name = foo 2 uri = ...
96  *
97  * Category tree                        Onelevel tree
98  * - playlist (id 1)                    - playlist (id 3)
99  *    - category 1 (id 2)                - foo 2 (id 8 - input 2)
100  *      - foo 2 (id 6 - input 2)       - media library (id 4)
101  * - media library (id 2)                - foo 1 (id6 - input 1)
102  *    - foo 1 (id 5 - input 1)
103  * \endverbatim
104  * Sometimes, an item must be transformed to a node. This happens for the
105  * directory access for example. In that case, the item is removed from
106  * the onelevel tree, as it is not a real item anymore.
107  *
108  * For "standard" item addition, you can use playlist_Add, playlist_AddExt
109  * (more options) or playlist_AddInput if you already created your input
110  * item. This will add the item at the root of "Playlist" or of "Media library"
111  * in each of the two trees.
112  *
113  * If you want more control (like, adding the item as the child of a given
114  * node in the category tree, use playlist_BothAddInput. You'll have to provide
115  * the node in the category tree. The item will be added as a child of
116  * this node in the category tree, and as a child of the matching top-level
117  * node in the onelevel tree. (Nodes are created with playlist_NodeCreate)
118  *
119  * Generally speaking, playlist_NodeAddInput should not be used in newer code, it
120  * will maybe become useful again when we merge VLM;
121  *
122  * To delete an item, use playlist_DeleteFromInput( input_id ) which will
123  * remove all occurences of the input in both trees
124  *
125  * @{
126  */
127
128 /** Helper structure to export to file part of the playlist */
129 struct playlist_export_t
130 {
131     char *psz_filename;
132     FILE *p_file;
133     playlist_item_t *p_root;
134 };
135
136 /** playlist item / node */
137 struct playlist_item_t
138 {
139     input_item_t           *p_input;    /**< Linked input item */
140     /** Number of children, -1 if not a node */
141     int                    i_children;
142     playlist_item_t      **pp_children; /**< Children nodes/items */
143     playlist_item_t       *p_parent;    /**< Item parent */
144
145     int                    i_id;        /**< Playlist item specific id */
146     uint8_t                i_flags;     /**< Flags */
147     playlist_t            *p_playlist;  /**< Parent playlist */
148 };
149
150 #define PLAYLIST_SAVE_FLAG      0x0001    /**< Must it be saved */
151 #define PLAYLIST_SKIP_FLAG      0x0002    /**< Must playlist skip after it ? */
152 #define PLAYLIST_DBL_FLAG       0x0004    /**< Is it disabled ? */
153 #define PLAYLIST_RO_FLAG        0x0008    /**< Write-enabled ? */
154 #define PLAYLIST_REMOVE_FLAG    0x0010    /**< Remove this item at the end */
155 #define PLAYLIST_EXPANDED_FLAG  0x0020    /**< Expanded node */
156
157 /** Playlist status */
158 typedef enum
159 { PLAYLIST_STOPPED,PLAYLIST_RUNNING,PLAYLIST_PAUSED } playlist_status_t;
160
161
162 struct services_discovery_t
163 {
164     VLC_COMMON_MEMBERS
165     char *              psz_module;
166     module_t *          p_module;
167
168     char *              psz_localized_name; /* Accessed through Setters for non class function */
169     vlc_event_manager_t event_manager;      /* Accessed through Setters for non class function */
170
171     services_discovery_sys_t *p_sys;
172     void (*pf_run) ( services_discovery_t *);
173 };
174
175 /** Structure containing information about the playlist */
176 struct playlist_t
177 {
178     VLC_COMMON_MEMBERS
179     struct playlist_internal_t * p_internal; /**< Internal members */
180
181     int                   i_enabled; /**< How many items are enabled ? */
182
183     playlist_item_array_t items; /**< Arrays of items */
184     playlist_item_array_t all_items; /**< Array of items and nodes */
185
186     input_item_array_t    input_items; /**< Array of input items */
187
188     playlist_item_array_t current; /**< Items currently being played */
189     int                   i_current_index; /**< Index in current array */
190     /** Reset current item array */
191     vlc_bool_t            b_reset_currently_playing;
192     mtime_t               last_rebuild_date;
193
194     int                   i_last_playlist_id; /**< Last id to an item */
195     int                   i_last_input_id ; /**< Last id on an input */
196
197     /* Predefined items */
198     playlist_item_t *     p_root_category; /**< Root of category tree */
199     playlist_item_t *     p_root_onelevel; /**< Root of onelevel tree */
200     playlist_item_t *     p_local_category; /** < "Playlist" in CATEGORY view */
201     playlist_item_t *     p_ml_category; /** < "Library" in CATEGORY view */
202     playlist_item_t *     p_local_onelevel; /** < "Playlist" in ONELEVEL view */
203     playlist_item_t *     p_ml_onelevel; /** < "Library" in ONELEVEL view */
204
205     vlc_bool_t            b_always_tree;/**< Always display as tree */
206     vlc_bool_t            b_never_tree;/**< Never display as tree */
207
208     vlc_bool_t            b_doing_ml; /**< Doing media library stuff,
209                                        * get quicker */
210     vlc_bool_t            b_auto_preparse;
211
212     /* Runtime */
213     input_thread_t *      p_input;  /**< the input thread associated
214                                      * with the current item */
215     int                   i_sort; /**< Last sorting applied to the playlist */
216     int                   i_order; /**< Last ordering applied to the playlist */
217     mtime_t               gc_date;
218     vlc_bool_t            b_cant_sleep;
219     playlist_preparse_t  *p_preparse; /**< Preparser object */
220     playlist_fetcher_t   *p_fetcher;/**< Meta and art fetcher object */
221
222     vlc_mutex_t gc_lock;         /**< Lock to protect the garbage collection */
223
224     struct {
225         /* Current status. These fields are readonly, only the playlist
226          * main loop can touch it*/
227         playlist_status_t   i_status;  /**< Current status of playlist */
228         playlist_item_t *   p_item; /**< Currently playing/active item */
229         playlist_item_t *   p_node; /**< Current node to play from */
230     } status;
231
232     struct {
233         /* Request. Use this to give orders to the playlist main loop  */
234         int                 i_status; /**< requested playlist status */
235         playlist_item_t *   p_node;   /**< requested node to play from */
236         playlist_item_t *   p_item;   /**< requested item to play in the node */
237
238         int                 i_skip;   /**< Number of items to skip */
239
240         vlc_bool_t          b_request;/**< Set to true by the requester
241                                            The playlist sets it back to false
242                                            when processing the request */
243         vlc_mutex_t         lock;     /**< Lock to protect request */
244     } request;
245
246     // Playlist-unrelated fields
247     interaction_t       *p_interaction;    /**< Interaction manager */
248     input_thread_t      *p_stats_computer; /**< Input thread computing stats */
249     global_stats_t      *p_stats;          /**< Global statistics */
250 };
251
252 /** Helper to add an item */
253 struct playlist_add_t
254 {
255     int i_node;
256     int i_item;
257     int i_position;
258 };
259
260 #define SORT_ID 0
261 #define SORT_TITLE 1
262 #define SORT_TITLE_NODES_FIRST 2
263 #define SORT_ARTIST 3
264 #define SORT_GENRE 4
265 #define SORT_RANDOM 5
266 #define SORT_DURATION 6
267 #define SORT_TITLE_NUMERIC 7
268 #define SORT_ALBUM 8
269
270 #define ORDER_NORMAL 0
271 #define ORDER_REVERSE 1
272
273 /*****************************************************************************
274  * Prototypes
275  *****************************************************************************/
276
277 /* Helpers */
278 #define PL_LOCK vlc_mutex_lock( &p_playlist->object_lock );
279 #define PL_UNLOCK vlc_mutex_unlock( &p_playlist->object_lock );
280
281 #define pl_Get( a ) a->p_libvlc->p_playlist
282 #define pl_Yield( a ) __pl_Yield( VLC_OBJECT(a) )
283 static inline playlist_t *__pl_Yield( vlc_object_t *p_this )
284 {
285     assert( p_this->p_libvlc->p_playlist );
286     vlc_object_yield( p_this->p_libvlc->p_playlist );
287     return p_this->p_libvlc->p_playlist;
288 }
289 #define pl_Release(a) vlc_object_release( a->p_libvlc->p_playlist );
290
291 /* Playlist control */
292 #define playlist_Play(p) playlist_Control(p,PLAYLIST_PLAY, VLC_FALSE )
293 #define playlist_Pause(p) playlist_Control(p,PLAYLIST_PAUSE, VLC_FALSE )
294 #define playlist_Stop(p) playlist_Control(p,PLAYLIST_STOP, VLC_FALSE )
295 #define playlist_Next(p) playlist_Control(p,PLAYLIST_SKIP, VLC_FALSE, 1)
296 #define playlist_Prev(p) playlist_Control(p,PLAYLIST_SKIP, VLC_FALSE, -1)
297 #define playlist_Skip(p,i) playlist_Control(p,PLAYLIST_SKIP, VLC_FALSE,  i)
298
299 /**
300  * Do a playlist action.
301  * If there is something in the playlist then you can do playlist actions.
302  * Possible queries are listed in vlc_common.h
303  * \param p_playlist the playlist to do the command on
304  * \param i_query the command to do
305  * \param b_locked TRUE if playlist is locked when entering this function
306  * \param variable number of arguments
307  * \return VLC_SUCCESS or an error
308  */
309 VLC_EXPORT( int, playlist_Control, ( playlist_t *p_playlist, int i_query, vlc_bool_t b_locked, ...  ) );
310
311 /** Clear the playlist
312  * \param b_locked TRUE if playlist is locked when entering this function
313  */
314 VLC_EXPORT( void,  playlist_Clear, ( playlist_t *, vlc_bool_t ) );
315
316 /** Enqueue an input item for preparsing */
317 VLC_EXPORT( int, playlist_PreparseEnqueue, (playlist_t *, input_item_t *) );
318
319 /** Enqueue a playlist item and all of its children if any for preparsing */
320 VLC_EXPORT( int, playlist_PreparseEnqueueItem, (playlist_t *, playlist_item_t *) );
321 /** Request the art for an input item to be fetched */
322 VLC_EXPORT( int, playlist_AskForArtEnqueue, (playlist_t *, input_item_t *) );
323
324 /********************** Services discovery ***********************/
325
326 /** Add a list of comma-separated service discovery modules */
327 VLC_EXPORT( int, playlist_ServicesDiscoveryAdd, (playlist_t *, const char *));
328 /** Remove a services discovery module by name */
329 VLC_EXPORT( int, playlist_ServicesDiscoveryRemove, (playlist_t *, const char *));
330 /** Check whether a given SD is loaded */
331 VLC_EXPORT( vlc_bool_t, playlist_IsServicesDiscoveryLoaded, ( playlist_t *,const char *));
332
333 /* Playlist sorting */
334 VLC_EXPORT( int,  playlist_TreeMove, ( playlist_t *, playlist_item_t *, playlist_item_t *, int ) );
335 VLC_EXPORT( int,  playlist_RecursiveNodeSort, ( playlist_t *, playlist_item_t *,int, int ) );
336
337 /**
338  * Export a node of the playlist to a certain type of playlistfile
339  * \param p_playlist the playlist to export
340  * \param psz_filename the location where the exported file will be saved
341  * \param p_export_root the root node to export
342  * \param psz_type the type of playlist file to create (m3u, pls, ..)
343  * \return VLC_SUCCESS on success
344  */
345 VLC_EXPORT( int,  playlist_Export, ( playlist_t *p_playlist, const char *psz_name, playlist_item_t *p_export_root, const char *psz_type ) );
346
347 /********************************************************
348  * Item management
349  ********************************************************/
350
351 /*************************** Item creation **************************/
352
353 VLC_EXPORT( playlist_item_t* , playlist_ItemNewWithType, ( vlc_object_t *,const char *,const char *, int , const char *const *, int, int) );
354
355 /** Create a new item, without adding it to the playlist
356  * \param p_obj a vlc object (anyone will do)
357  * \param psz_uri the mrl of the item
358  * \param psz_name a text giving a name or description of the item
359  * \return the new item or NULL on failure
360  */
361 #define playlist_ItemNew( a , b, c ) \
362     playlist_ItemNewWithType( VLC_OBJECT(a) , b , c, 0, NULL, -1, 0 )
363
364 #define playlist_ItemNewFromInput(a,b) __playlist_ItemNewFromInput(VLC_OBJECT(a),b)
365 VLC_EXPORT( playlist_item_t *, __playlist_ItemNewFromInput, ( vlc_object_t *p_obj,input_item_t *p_input ) );
366
367 /*************************** Item deletion **************************/
368 VLC_EXPORT( int,  playlist_DeleteFromInput, ( playlist_t *, int, vlc_bool_t ) );
369 VLC_EXPORT( int,  playlist_DeleteInputInParent, ( playlist_t *, int, playlist_item_t *, vlc_bool_t ) );
370
371 /*************************** Item fields accessors **************************/
372 VLC_EXPORT( int, playlist_ItemSetName, (playlist_item_t *, const char * ) );
373
374 /******************** Item addition ********************/
375 VLC_EXPORT( int,  playlist_Add,    ( playlist_t *, const char *, const char *, int, int, vlc_bool_t, vlc_bool_t ) );
376 VLC_EXPORT( int,  playlist_AddExt, ( playlist_t *, const char *, const char *, int, int, mtime_t, const char *const *,int, vlc_bool_t, vlc_bool_t ) );
377 VLC_EXPORT( int, playlist_AddInput, ( playlist_t *, input_item_t *, int, int, vlc_bool_t, vlc_bool_t ) );
378 VLC_EXPORT( playlist_item_t *, playlist_NodeAddInput, ( playlist_t *, input_item_t *,playlist_item_t *,int , int, vlc_bool_t ) );
379 VLC_EXPORT( int, playlist_BothAddInput, ( playlist_t *, input_item_t *,playlist_item_t *,int , int, int*, int*, vlc_bool_t ) );
380
381 /********************** Misc item operations **********************/
382 VLC_EXPORT( playlist_item_t*, playlist_ItemToNode, (playlist_t *,playlist_item_t *, vlc_bool_t) );
383
384 playlist_item_t *playlist_ItemFindFromInputAndRoot( playlist_t *p_playlist,
385                                    int i_input_id, playlist_item_t *p_root,
386                                    vlc_bool_t );
387
388 /********************************** Item search *************************/
389 VLC_EXPORT( playlist_item_t *, playlist_ItemGetById, (playlist_t *, int, vlc_bool_t ) );
390 VLC_EXPORT( playlist_item_t *, playlist_ItemGetByInput, (playlist_t *,input_item_t *, vlc_bool_t ) );
391 VLC_EXPORT( playlist_item_t *, playlist_ItemGetByInputId, (playlist_t *, int, playlist_item_t *) );
392
393 VLC_EXPORT( int, playlist_LiveSearchUpdate, (playlist_t *, playlist_item_t *, const char *) );
394
395 /********************************************************
396  * Tree management
397  ********************************************************/
398 VLC_EXPORT(void, playlist_NodeDump, ( playlist_t *p_playlist, playlist_item_t *p_item, int i_level ) );
399 VLC_EXPORT( int, playlist_NodeChildrenCount, (playlist_t *,playlist_item_t* ) );
400
401 /* Node management */
402 VLC_EXPORT( playlist_item_t *, playlist_NodeCreate, ( playlist_t *, const char *, playlist_item_t * p_parent, int i_flags ) );
403 VLC_EXPORT( int, playlist_NodeAppend, (playlist_t *,playlist_item_t*,playlist_item_t *) );
404 VLC_EXPORT( int, playlist_NodeInsert, (playlist_t *,playlist_item_t*,playlist_item_t *, int) );
405 VLC_EXPORT( int, playlist_NodeRemoveItem, (playlist_t *,playlist_item_t*,playlist_item_t *) );
406 VLC_EXPORT( playlist_item_t *, playlist_ChildSearchName, (playlist_item_t*, const char* ) );
407 VLC_EXPORT( int, playlist_NodeDelete, ( playlist_t *, playlist_item_t *, vlc_bool_t , vlc_bool_t ) );
408 VLC_EXPORT( int, playlist_NodeEmpty, ( playlist_t *, playlist_item_t *, vlc_bool_t ) );
409 VLC_EXPORT( void, playlist_NodesPairCreate, (playlist_t *, const char *, playlist_item_t **, playlist_item_t **, vlc_bool_t ) );
410 VLC_EXPORT( playlist_item_t *, playlist_GetPreferredNode, ( playlist_t *p_playlist, playlist_item_t *p_node ) );
411 VLC_EXPORT( playlist_item_t *, playlist_GetNextLeaf, ( playlist_t *p_playlist, playlist_item_t *p_root, playlist_item_t *p_item, vlc_bool_t b_ena, vlc_bool_t b_unplayed ) );
412 VLC_EXPORT( playlist_item_t *, playlist_GetPrevLeaf, ( playlist_t *p_playlist, playlist_item_t *p_root, playlist_item_t *p_item, vlc_bool_t b_ena, vlc_bool_t b_unplayed ) );
413 VLC_EXPORT( playlist_item_t *, playlist_GetLastLeaf, ( playlist_t *p_playlist, playlist_item_t *p_root ) );
414
415 /***********************************************************************
416  * Service Discovery
417  ***********************************************************************/
418
419 /* Get the services discovery modules names to use in Create(), in a null
420  * terminated string array. Array and string must be freed after use. */
421 VLC_EXPORT( char **, services_discovery_GetServicesNames, ( vlc_object_t * p_super ) );
422
423 /* Creation of a service_discovery object */
424 VLC_EXPORT( services_discovery_t *, services_discovery_Create, ( vlc_object_t * p_super, const char * psz_service_name ) );
425 VLC_EXPORT( void,                   services_discovery_Destroy, ( services_discovery_t * p_this ) );
426 VLC_EXPORT( int,                    services_discovery_Start, ( services_discovery_t * p_this ) );
427 VLC_EXPORT( void,                   services_discovery_Stop, ( services_discovery_t * p_this ) );
428
429 /* Read info from discovery object */
430 VLC_EXPORT( char *,                 services_discovery_GetLocalizedName, ( services_discovery_t * p_this ) );
431
432 /* Receive event notification (prefered way to get new items) */
433 VLC_EXPORT( vlc_event_manager_t *,  services_discovery_EventManager, ( services_discovery_t * p_this ) );
434
435 /* Used by services_discovery to post update about their items */
436 VLC_EXPORT( void,                   services_discovery_SetLocalizedName, ( services_discovery_t * p_this, const char * ) );
437     /* About the psz_category, it is a legacy way to add info to the item,
438      * for more options, directly set the (meta) data on the input item */
439 VLC_EXPORT( void,                   services_discovery_AddItem, ( services_discovery_t * p_this, input_item_t * p_item, const char * psz_category ) );
440 VLC_EXPORT( void,                   services_discovery_RemoveItem, ( services_discovery_t * p_this, input_item_t * p_item ) );
441
442 /***********************************************************************
443  * Inline functions
444  ***********************************************************************/
445 /** Open a playlist file, add its content to the current playlist */
446 static inline int playlist_Import( playlist_t *p_playlist, const char *psz_file)
447 {
448     char psz_uri[256+10];
449     input_item_t *p_input;
450     snprintf( psz_uri, 256+9, "file/://%s", psz_file );
451     p_input = input_ItemNewExt( p_playlist, psz_uri, psz_file, 0, NULL, -1 );
452     playlist_AddInput( p_playlist, p_input, PLAYLIST_APPEND, PLAYLIST_END,
453                        VLC_TRUE, VLC_FALSE );
454     input_Read( p_playlist, p_input, VLC_TRUE );
455     return VLC_SUCCESS;
456 }
457
458 /** Tell if the playlist is currently running */
459 #define playlist_IsPlaying( pl ) ( pl->status.i_status == PLAYLIST_RUNNING )
460
461 /** Tell if the playlist is empty */
462 #define playlist_IsEmpty( pl ) ( pl->items.i_size == 0 )
463
464 /** Tell the number of items in the current playing context */
465 #define playlist_CurrentSize( obj ) obj->p_libvlc->p_playlist->current.i_size
466
467 /** Ask the playlist to do some work */
468 static inline void playlist_Signal( playlist_t *p_playlist )
469 {
470     PL_LOCK;
471     vlc_cond_signal( &p_playlist->object_wait );
472     PL_UNLOCK;
473 }
474
475 /** @} */
476 # ifdef __cplusplus
477 }
478 # endif
479
480 #endif