bluray: factorize blurayReleaseVout()
[vlc.git] / include / vlc_playlist.h
blobb116455e5e141e86d9d77c4868206bf61070f00f
1 /*****************************************************************************
2 * vlc_playlist.h : Playlist functions
3 *****************************************************************************
4 * Copyright (C) 1999-2004 VLC authors and VideoLAN
5 * $Id$
7 * Authors: Samuel Hocevar <sam@zoy.org>
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU Lesser General Public License as published by
11 * the Free Software Foundation; either version 2.1 of the License, or
12 * (at your option) any later version.
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 Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public License
20 * along with this program; if not, write to the Free Software Foundation,
21 * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22 *****************************************************************************/
24 #ifndef VLC_PLAYLIST_H_
25 #define VLC_PLAYLIST_H_
27 # ifdef __cplusplus
28 extern "C" {
29 # endif
31 #include <vlc_events.h>
33 TYPEDEF_ARRAY(playlist_item_t*, playlist_item_array_t)
35 struct intf_thread_t;
37 /**
38 * \defgroup playlist VLC playlist
39 * VLC playlist controls
40 * @{
41 * \file
42 * VLC playlist control interface
44 * The VLC playlist system has a tree structure. This allows advanced
45 * categorization, like for SAP streams (which are grouped by "sap groups").
47 * The base structure for all playlist operations is the input_item_t. This
48 * contains all information needed to play a stream and get info, ie, mostly,
49 * mrl and metadata. This structure contains a unique i_id field. ids are
50 * not recycled when an item is destroyed.
52 * Input items are not used directly, but through playlist items.
53 * The playlist items are themselves in a tree structure. They only contain
54 * a link to the input item, a unique id and a few flags. the playlist
55 * item id is NOT the same as the input item id.
56 * Several playlist items can be attached to a single input item. The input
57 * item is refcounted and is automatically destroyed when it is not used
58 * anymore.
60 * The top-level items are the main media sources and include:
61 * playlist, media library, SAP, Shoutcast, devices, ...
63 * It is envisioned that a third tree will appear: VLM, but it's not done yet
65 * The playlist also stores, for utility purposes, an array of all input
66 * items, an array of all playlist items and an array of all playlist items
67 * and nodes (both are represented by the same structure).
69 * So, here is an example:
70 * \verbatim
71 * Inputs array
72 * - input 1 -> name = foo 1 uri = ...
73 * - input 2 -> name = foo 2 uri = ...
75 * Playlist items tree
76 * - playlist (id 1)
77 * - category 1 (id 2)
78 * - foo 2 (id 6 - input 2)
79 * - media library (id 2)
80 * - foo 1 (id 5 - input 1)
81 * \endverbatim
83 * Sometimes, an item creates subitems. This happens for the directory access
84 * for example. In that case, if the item is under the "playlist" top-level item
85 * and playlist is configured to be flat then the item will be deleted and
86 * replaced with new subitems. If the item is under another top-level item, it
87 * will be transformed to a node and removed from the list of all items without
88 * nodes.
90 * For "standard" item addition, you can use playlist_Add, playlist_AddExt
91 * (more options) or playlist_AddInput if you already created your input
92 * item. This will add the item at the root of "Playlist" or of "Media library"
93 * in each of the two trees.
95 * You can create nodes with playlist_NodeCreate and can create items from
96 * existing input items to be placed under any node with playlist_NodeAddInput.
98 * To delete an item, use playlist_DeleteFromInput( p_item ) which will
99 * remove all occurrences of the input.
102 * The playlist defines the following event variables:
104 * - "item-change": It will contain the input_item_t->i_id of a changed input
105 * item monitored by the playlist.
106 * item being played.
108 * - "playlist-item-append": It will contain a pointer to a playlist_add_t.
109 * - "playlist-item-deleted": It will contain the playlist_item_t->i_id of a
110 * deleted playlist_item_t.
112 * - "leaf-to-parent": It will contain the playlist_item_t->i_id of an item that is transformed
113 * into a node.
115 * The playlist contains rate-variable which is propagated to current input if available
116 * also rate-slower/rate-faster is in use
118 * \warning Be really carefull, playlist_item_t->i_id and input_item_t->i_id
119 * are not the same. Yes, the situation is pretty bad.
122 /** Helper structure to export to file part of the playlist */
123 typedef struct playlist_export_t
125 VLC_COMMON_MEMBERS
126 const char *psz_filename;
127 FILE *p_file;
128 playlist_item_t *p_root;
129 } playlist_export_t;
131 /** playlist item / node */
132 struct playlist_item_t
134 input_item_t *p_input; /**< Linked input item */
136 playlist_item_t **pp_children; /**< Children nodes/items */
137 playlist_item_t *p_parent; /**< Item parent */
138 int i_children; /**< Number of children, -1 if not a node */
139 unsigned i_nb_played; /**< Times played */
141 int i_id; /**< Playlist item specific id */
142 uint8_t i_flags; /**< Flags \see playlist_item_flags_e */
144 playlist_t *p_playlist; /**< Parent playlist */
147 typedef enum {
148 PLAYLIST_SAVE_FLAG = 0x0001, /**< Must it be saved */
149 PLAYLIST_SKIP_FLAG = 0x0002, /**< Must playlist skip after it ? */
150 PLAYLIST_DBL_FLAG = 0x0004, /**< Is it disabled ? */
151 PLAYLIST_RO_FLAG = 0x0008, /**< Write-enabled ? */
152 PLAYLIST_REMOVE_FLAG = 0x0010, /**< Remove this item at the end */
153 PLAYLIST_EXPANDED_FLAG = 0x0020, /**< Expanded node */
154 PLAYLIST_SUBITEM_STOP_FLAG = 0x0040, /**< Must playlist stop if the item gets subitems ?*/
155 } playlist_item_flags_e;
157 /** Playlist status */
158 typedef enum
159 { PLAYLIST_STOPPED,PLAYLIST_RUNNING,PLAYLIST_PAUSED } playlist_status_t;
161 /** Structure containing information about the playlist */
162 struct playlist_t
164 VLC_COMMON_MEMBERS
166 playlist_item_array_t items; /**< Arrays of items */
167 playlist_item_array_t all_items; /**< Array of items and nodes */
169 playlist_item_array_t current; /**< Items currently being played */
170 int i_current_index; /**< Index in current array */
172 /* Predefined items */
173 playlist_item_t * p_root;
174 playlist_item_t * p_playing;
175 playlist_item_t * p_media_library;
177 //Phony ones, point to those above;
178 playlist_item_t * p_root_category; /**< Root of category tree */
179 playlist_item_t * p_root_onelevel; /**< Root of onelevel tree */
180 playlist_item_t * p_local_category; /** < "Playlist" in CATEGORY view */
181 playlist_item_t * p_ml_category; /** < "Library" in CATEGORY view */
182 playlist_item_t * p_local_onelevel; /** < "Playlist" in ONELEVEL view */
183 playlist_item_t * p_ml_onelevel; /** < "Library" in ONELEVEL view */
186 /** Helper to add an item */
187 struct playlist_add_t
189 int i_node; /**< Playist id of the parent node */
190 int i_item; /**< Playist id of the playlist_item_t */
193 /* A bit of macro magic to generate an enum out of the following list,
194 * and later, to generate a list of static functions out of the same list.
195 * There is also SORT_RANDOM, which is always last and handled specially.
197 #define VLC_DEFINE_SORT_FUNCTIONS \
198 DEF( SORT_ID )\
199 DEF( SORT_TITLE )\
200 DEF( SORT_TITLE_NODES_FIRST )\
201 DEF( SORT_ARTIST )\
202 DEF( SORT_GENRE )\
203 DEF( SORT_DURATION )\
204 DEF( SORT_TITLE_NUMERIC )\
205 DEF( SORT_ALBUM )\
206 DEF( SORT_TRACK_NUMBER )\
207 DEF( SORT_DESCRIPTION )\
208 DEF( SORT_RATING )\
209 DEF( SORT_URI )
211 #define DEF( s ) s,
212 enum
214 VLC_DEFINE_SORT_FUNCTIONS
215 SORT_RANDOM,
216 NUM_SORT_FNS=SORT_RANDOM
218 #undef DEF
219 #ifndef VLC_INTERNAL_PLAYLIST_SORT_FUNCTIONS
220 #undef VLC_DEFINE_SORT_FUNCTIONS
221 #endif
223 enum
225 ORDER_NORMAL = 0,
226 ORDER_REVERSE = 1,
229 /* Used by playlist_Import */
230 #define PLAYLIST_INSERT 0x0001
231 #define PLAYLIST_APPEND 0x0002
232 #define PLAYLIST_GO 0x0004
233 #define PLAYLIST_PREPARSE 0x0008
234 #define PLAYLIST_SPREPARSE 0x0010
235 #define PLAYLIST_NO_REBUILD 0x0020
237 #define PLAYLIST_END -666
239 enum pl_locked_state
241 pl_Locked = true,
242 pl_Unlocked = false
245 /*****************************************************************************
246 * Prototypes
247 *****************************************************************************/
249 /* Helpers */
250 #define PL_LOCK playlist_Lock( p_playlist )
251 #define PL_UNLOCK playlist_Unlock( p_playlist )
252 #define PL_ASSERT_LOCKED playlist_AssertLocked( p_playlist )
254 /** Playlist commands */
255 enum {
256 PLAYLIST_PLAY, /**< No arg. res=can fail*/
257 PLAYLIST_VIEWPLAY, /**< arg1= playlist_item_t*,*/
258 /** arg2 = playlist_item_t* , res=can fail */
259 PLAYLIST_TOGGLE_PAUSE, /**< No arg res=can fail */
260 PLAYLIST_STOP, /**< No arg res=can fail*/
261 PLAYLIST_SKIP, /**< arg1=int, res=can fail*/
262 PLAYLIST_PAUSE, /**< No arg */
263 PLAYLIST_RESUME, /**< No arg */
266 #define playlist_Play(p) playlist_Control(p,PLAYLIST_PLAY, pl_Unlocked )
267 #define playlist_TogglePause(p) \
268 playlist_Control(p, PLAYLIST_TOGGLE_PAUSE, pl_Unlocked)
269 #define playlist_Stop(p) playlist_Control(p,PLAYLIST_STOP, pl_Unlocked )
270 #define playlist_Next(p) playlist_Control(p,PLAYLIST_SKIP, pl_Unlocked, 1)
271 #define playlist_Prev(p) playlist_Control(p,PLAYLIST_SKIP, pl_Unlocked, -1)
272 #define playlist_Skip(p,i) playlist_Control(p,PLAYLIST_SKIP, pl_Unlocked, (i) )
273 #define playlist_Pause(p) \
274 playlist_Control(p, PLAYLIST_PAUSE, pl_Unlocked)
275 #define playlist_Resume(p) \
276 playlist_Control(p, PLAYLIST_RESUME, pl_Unlocked)
278 VLC_API void playlist_Lock( playlist_t * );
279 VLC_API void playlist_Unlock( playlist_t * );
280 VLC_API void playlist_AssertLocked( playlist_t * );
281 VLC_API void playlist_Deactivate( playlist_t * );
284 * Do a playlist action.
285 * If there is something in the playlist then you can do playlist actions.
286 * Possible queries are listed in vlc_common.h
287 * \param p_playlist the playlist to do the command on
288 * \param i_query the command to do
289 * \param b_locked TRUE if playlist is locked when entering this function
290 * \param variable number of arguments
292 VLC_API void playlist_Control( playlist_t *p_playlist, int i_query, bool b_locked, ... );
294 /** Get current playing input. The object is retained.
296 VLC_API input_thread_t * playlist_CurrentInput( playlist_t *p_playlist ) VLC_USED;
298 /** Get the duration of all items in a node.
300 VLC_API mtime_t playlist_GetNodeDuration( playlist_item_t * );
302 /** Clear the playlist
303 * \param b_locked TRUE if playlist is locked when entering this function
305 VLC_API void playlist_Clear( playlist_t *, bool );
307 /* Playlist sorting */
308 VLC_API int playlist_TreeMove( playlist_t *, playlist_item_t *, playlist_item_t *, int );
309 VLC_API int playlist_TreeMoveMany( playlist_t *, int, playlist_item_t **, playlist_item_t *, int );
310 VLC_API int playlist_RecursiveNodeSort( playlist_t *, playlist_item_t *,int, int );
312 VLC_API playlist_item_t * playlist_CurrentPlayingItem( playlist_t * ) VLC_USED;
313 VLC_API int playlist_Status( playlist_t * );
316 * Export a node of the playlist to a certain type of playlistfile
317 * \param p_playlist the playlist to export
318 * \param psz_filename the location where the exported file will be saved
319 * \param p_export_root the root node to export
320 * \param psz_type the type of playlist file to create (m3u, pls, ..)
321 * \return VLC_SUCCESS on success
323 VLC_API int playlist_Export( playlist_t *p_playlist, const char *psz_name, playlist_item_t *p_export_root, const char *psz_type );
326 * Open a playlist file, add its content to the current playlist
328 VLC_API int playlist_Import( playlist_t *p_playlist, const char *psz_file );
330 /********************** Services discovery ***********************/
332 /** Add a list of comma-separated service discovery modules */
333 VLC_API int playlist_ServicesDiscoveryAdd(playlist_t *, const char *);
334 /** Remove a services discovery module by name */
335 VLC_API int playlist_ServicesDiscoveryRemove(playlist_t *, const char *);
336 /** Check whether a given SD is loaded */
337 VLC_API bool playlist_IsServicesDiscoveryLoaded( playlist_t *,const char *) VLC_DEPRECATED;
338 /** Query a services discovery */
339 VLC_API int playlist_ServicesDiscoveryControl( playlist_t *, const char *, int, ... );
343 /********************************************************
344 * Item management
345 ********************************************************/
347 /*************************** Item deletion **************************/
348 VLC_API int playlist_DeleteFromInput( playlist_t *, input_item_t *, bool );
350 /******************** Item addition ********************/
351 VLC_API int playlist_Add( playlist_t *, const char *, const char *, int, int, bool, bool );
352 VLC_API int playlist_AddExt( playlist_t *, const char *, const char *, int, int, mtime_t, int, const char *const *, unsigned, bool, bool );
353 VLC_API int playlist_AddInput( playlist_t *, input_item_t *, int, int, bool, bool );
354 VLC_API playlist_item_t * playlist_NodeAddInput( playlist_t *, input_item_t *, playlist_item_t *, int, int, bool );
355 VLC_API int playlist_NodeAddCopy( playlist_t *, playlist_item_t *, playlist_item_t *, int );
357 /********************************** Item search *************************/
358 VLC_API playlist_item_t * playlist_ItemGetById(playlist_t *, int ) VLC_USED;
359 VLC_API playlist_item_t * playlist_ItemGetByInput(playlist_t *,input_item_t * ) VLC_USED;
361 VLC_API int playlist_LiveSearchUpdate(playlist_t *, playlist_item_t *, const char *, bool );
363 /********************************************************
364 * Tree management
365 ********************************************************/
366 /* Node management */
367 VLC_API playlist_item_t * playlist_NodeCreate( playlist_t *, const char *, playlist_item_t * p_parent, int i_pos, int i_flags, input_item_t * );
368 VLC_API int playlist_NodeAppend(playlist_t *,playlist_item_t*,playlist_item_t *);
369 VLC_API int playlist_NodeInsert(playlist_t *,playlist_item_t*,playlist_item_t *, int);
370 VLC_API int playlist_NodeRemoveItem(playlist_t *,playlist_item_t*,playlist_item_t *);
371 VLC_API playlist_item_t * playlist_ChildSearchName(playlist_item_t*, const char* ) VLC_USED;
372 VLC_API int playlist_NodeDelete( playlist_t *, playlist_item_t *, bool , bool );
374 VLC_API playlist_item_t * playlist_GetNextLeaf( playlist_t *p_playlist, playlist_item_t *p_root, playlist_item_t *p_item, bool b_ena, bool b_unplayed ) VLC_USED;
375 VLC_API playlist_item_t * playlist_GetPrevLeaf( playlist_t *p_playlist, playlist_item_t *p_root, playlist_item_t *p_item, bool b_ena, bool b_unplayed ) VLC_USED;
377 /**************************
378 * Audio output management
379 **************************/
381 VLC_API audio_output_t *playlist_GetAout( playlist_t * );
383 #define AOUT_VOLUME_DEFAULT 256
384 #define AOUT_VOLUME_MAX 512
386 VLC_API float playlist_VolumeGet( playlist_t * );
387 VLC_API int playlist_VolumeSet( playlist_t *, float );
388 VLC_API int playlist_VolumeUp( playlist_t *, int, float * );
389 #define playlist_VolumeDown(a, b, c) playlist_VolumeUp(a, -(b), c)
390 VLC_API int playlist_MuteSet( playlist_t *, bool );
391 VLC_API int playlist_MuteGet( playlist_t * );
393 static inline int playlist_MuteToggle( playlist_t *pl )
395 int val = playlist_MuteGet( pl );
396 if (val >= 0)
397 val = playlist_MuteSet( pl, !val );
398 return val;
401 VLC_API void playlist_EnableAudioFilter( playlist_t *, const char *, bool );
403 /***********************************************************************
404 * Inline functions
405 ***********************************************************************/
406 /** Tell if the playlist is empty */
407 static inline bool playlist_IsEmpty( playlist_t *p_playlist )
409 PL_ASSERT_LOCKED;
410 return p_playlist->items.i_size == 0;
413 /** Tell the number of items in the current playing context */
414 static inline int playlist_CurrentSize( playlist_t *p_playlist )
416 PL_ASSERT_LOCKED;
417 return p_playlist->current.i_size;
420 /** @} */
421 # ifdef __cplusplus
423 # endif
425 #endif