vlc_playlist.h

Go to the documentation of this file.
00001 /*****************************************************************************
00002  * vlc_playlist.h : Playlist functions
00003  *****************************************************************************
00004  * Copyright (C) 1999-2004 the VideoLAN team
00005  * $Id: 8503635acf076deb561c9cc981b30bdb4591a2c8 $
00006  *
00007  * Authors: Samuel Hocevar <sam@zoy.org>
00008  *
00009  * This program is free software; you can redistribute it and/or modify
00010  * it under the terms of the GNU General Public License as published by
00011  * the Free Software Foundation; either version 2 of the License, or
00012  * (at your option) any later version.
00013  *
00014  * This program is distributed in the hope that it will be useful,
00015  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00016  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00017  * GNU General Public License for more details.
00018  *
00019  * You should have received a copy of the GNU General Public License along
00020  * with this program; if not, write to the Free Software Foundation, Inc.,
00021  * 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
00022  *****************************************************************************/
00023 
00024 #ifndef VLC_PLAYLIST_H_
00025 #define VLC_PLAYLIST_H_
00026 
00027 # ifdef __cplusplus
00028 extern "C" {
00029 # endif
00030 
00031 #include <vlc_input.h>
00032 #include <vlc_events.h>
00033 
00034 TYPEDEF_ARRAY(playlist_item_t*, playlist_item_array_t);
00035 
00036 /**
00037  * \file
00038  * This file contain structures and function prototypes related
00039  * to the playlist in vlc
00040  *
00041  * \defgroup vlc_playlist Playlist
00042  *
00043  * The VLC playlist system has a tree structure. This allows advanced
00044  * categorization, like for SAP streams (which are grouped by "sap groups").
00045  *
00046  * The base structure for all playlist operations is the input_item_t. This
00047  * contains all information needed to play a stream and get info, ie, mostly,
00048  * mrl and metadata. This structure contains a unique i_id field. ids are
00049  * not recycled when an item is destroyed.
00050  *
00051  * Input items are not used directly, but through playlist items.
00052  * The playlist items are themselves in a tree structure. They only contain
00053  * a link to the input item, a unique id and a few flags. the playlist
00054  * item id is NOT the same as the input item id.
00055  * Several playlist items can be attached to a single input item. The input
00056  * item is refcounted and is automatically destroyed when it is not used
00057  * anymore.
00058  *
00059  * In the playlist itself, there are two trees, that should always be kept
00060  * in sync. The "category" tree contains the whole tree structure with
00061  * several levels, while the onelevel tree contains only one level :), ie
00062  * it only contains "real" items, not nodes
00063  * For example, if you open a directory, you will have
00064  *\verbatim
00065  * Category tree:               Onelevel tree:
00066  * Playlist                     Playlist
00067  *  - Dir                         - item1
00068  *    - Subdir                    - item2
00069  *      - item1
00070  *      - item2
00071  *\endverbatim
00072  * The top-level items of both tree are the same, and they are reproduced
00073  * in the left-part of the playlist GUIs, they are the "sources" from the
00074  * source selectors. Top-level items include: playlist, media library, SAP,
00075  * Shoutcast, devices, ...
00076  *
00077  * It is envisioned that a third tree will appear: VLM, but it's not done yet
00078  *
00079  * The playlist also stores, for utility purposes, an array of all input
00080  * items, an array of all playlist items and an array of all playlist items
00081  * and nodes (both are represented by the same structure).
00082  *
00083  * So, here is an example:
00084  * \verbatim
00085  * Inputs array
00086  *  - input 1 -> name = foo 1 uri = ...
00087  *  - input 2 -> name = foo 2 uri = ...
00088  *
00089  * Category tree                        Onelevel tree
00090  * - playlist (id 1)                    - playlist (id 3)
00091  *    - category 1 (id 2)                - foo 2 (id 8 - input 2)
00092  *      - foo 2 (id 6 - input 2)       - media library (id 4)
00093  * - media library (id 2)                - foo 1 (id6 - input 1)
00094  *    - foo 1 (id 5 - input 1)
00095  * \endverbatim
00096  * Sometimes, an item must be transformed to a node. This happens for the
00097  * directory access for example. In that case, the item is removed from
00098  * the onelevel tree, as it is not a real item anymore.
00099  *
00100  * For "standard" item addition, you can use playlist_Add, playlist_AddExt
00101  * (more options) or playlist_AddInput if you already created your input
00102  * item. This will add the item at the root of "Playlist" or of "Media library"
00103  * in each of the two trees.
00104  *
00105  * If you want more control (like, adding the item as the child of a given
00106  * node in the category tree, use playlist_BothAddInput. You'll have to provide
00107  * the node in the category tree. The item will be added as a child of
00108  * this node in the category tree, and as a child of the matching top-level
00109  * node in the onelevel tree. (Nodes are created with playlist_NodeCreate)
00110  *
00111  * Generally speaking, playlist_NodeAddInput should not be used in newer code, it
00112  * will maybe become useful again when we merge VLM;
00113  *
00114  * To delete an item, use playlist_DeleteFromInput( p_item ) which will
00115  * remove all occurrences of the input in both trees
00116  *
00117  *
00118  * The playlist defines the following event variables:
00119  *
00120  * - "item-change": It will contains the input_item_t->i_id of a changed input
00121  * item monitored by the playlist.
00122  * * - "item-current": It will contains a input_item_t->i_id of the current
00123  * item being played.
00124  *
00125  * - "playlist-item-append": It will contains a pointer to a playlist_add_t.
00126  * - "playlist-item-deleted": It will contains the playlist_item_t->i_id of a deleted
00127  * playlist_item_t.
00128  *
00129  * XXX Be really carefull, playlist_item_t->i_id and input_item_t->i_id are not
00130  * the same. Yes, the situation is pretty bad.
00131  *
00132  * @{
00133  */
00134 
00135 /** Helper structure to export to file part of the playlist */
00136 typedef struct playlist_export_t
00137 {
00138     VLC_COMMON_MEMBERS
00139     const char *psz_filename;
00140     FILE *p_file;
00141     playlist_item_t *p_root;
00142 } playlist_export_t;
00143 
00144 /** playlist item / node */
00145 struct playlist_item_t
00146 {
00147     input_item_t           *p_input;    /**< Linked input item */
00148     /** Number of children, -1 if not a node */
00149     int                    i_children;
00150     playlist_item_t      **pp_children; /**< Children nodes/items */
00151     playlist_item_t       *p_parent;    /**< Item parent */
00152 
00153     int                    i_id;        /**< Playlist item specific id */
00154     uint8_t                i_flags;     /**< Flags */
00155     playlist_t            *p_playlist;  /**< Parent playlist */
00156 };
00157 
00158 #define PLAYLIST_SAVE_FLAG      0x0001    /**< Must it be saved */
00159 #define PLAYLIST_SKIP_FLAG      0x0002    /**< Must playlist skip after it ? */
00160 #define PLAYLIST_DBL_FLAG       0x0004    /**< Is it disabled ? */
00161 #define PLAYLIST_RO_FLAG        0x0008    /**< Write-enabled ? */
00162 #define PLAYLIST_REMOVE_FLAG    0x0010    /**< Remove this item at the end */
00163 #define PLAYLIST_EXPANDED_FLAG  0x0020    /**< Expanded node */
00164 
00165 /** Playlist status */
00166 typedef enum
00167 { PLAYLIST_STOPPED,PLAYLIST_RUNNING,PLAYLIST_PAUSED } playlist_status_t;
00168 
00169 /** Structure containing information about the playlist */
00170 struct playlist_t
00171 {
00172     VLC_COMMON_MEMBERS
00173 
00174     playlist_item_array_t items; /**< Arrays of items */
00175     playlist_item_array_t all_items; /**< Array of items and nodes */
00176 
00177     playlist_item_array_t current; /**< Items currently being played */
00178     int                   i_current_index; /**< Index in current array */
00179 
00180     /* Predefined items */
00181     playlist_item_t *     p_root_category; /**< Root of category tree */
00182     playlist_item_t *     p_root_onelevel; /**< Root of onelevel tree */
00183     playlist_item_t *     p_local_category; /** < "Playlist" in CATEGORY view */
00184     playlist_item_t *     p_ml_category; /** < "Library" in CATEGORY view */
00185     playlist_item_t *     p_local_onelevel; /** < "Playlist" in ONELEVEL view */
00186     playlist_item_t *     p_ml_onelevel; /** < "Library" in ONELEVEL view */
00187 };
00188 
00189 /** Helper to add an item */
00190 struct playlist_add_t
00191 {
00192     int i_node; /**< Playist id of the parent node */
00193     int i_item; /**< Playist id of the playlist_item_t */
00194 };
00195 
00196 /* A bit of macro magic to generate an enum out of the following list,
00197  * and later, to generate a list of static functions out of the same list.
00198  * There is also SORT_RANDOM, which is always last and handled specially.
00199  */
00200 #define VLC_DEFINE_SORT_FUNCTIONS \
00201     DEF( SORT_ID )\
00202     DEF( SORT_TITLE )\
00203     DEF( SORT_TITLE_NODES_FIRST )\
00204     DEF( SORT_ARTIST )\
00205     DEF( SORT_GENRE )\
00206     DEF( SORT_DURATION )\
00207     DEF( SORT_TITLE_NUMERIC )\
00208     DEF( SORT_ALBUM )\
00209     DEF( SORT_TRACK_NUMBER )\
00210     DEF( SORT_DESCRIPTION )\
00211     DEF( SORT_RATING )\
00212     DEF( SORT_URI )
00213 
00214 #define DEF( s ) s,
00215 enum
00216 {
00217     VLC_DEFINE_SORT_FUNCTIONS
00218     SORT_RANDOM,
00219     NUM_SORT_FNS=SORT_RANDOM
00220 };
00221 #undef  DEF
00222 #ifndef VLC_INTERNAL_PLAYLIST_SORT_FUNCTIONS
00223 #undef  VLC_DEFINE_SORT_FUNCTIONS
00224 #endif
00225 
00226 enum
00227 {
00228     ORDER_NORMAL = 0,
00229     ORDER_REVERSE = 1,
00230 };
00231 
00232 /* Used by playlist_Import */
00233 #define PLAYLIST_INSERT          0x0001
00234 #define PLAYLIST_APPEND          0x0002
00235 #define PLAYLIST_GO              0x0004
00236 #define PLAYLIST_PREPARSE        0x0008
00237 #define PLAYLIST_SPREPARSE       0x0010
00238 #define PLAYLIST_NO_REBUILD      0x0020
00239 
00240 #define PLAYLIST_END           -666
00241 
00242 enum pl_locked_state
00243 {
00244     pl_Locked = true,
00245     pl_Unlocked = false
00246 };
00247 
00248 /*****************************************************************************
00249  * Prototypes
00250  *****************************************************************************/
00251 
00252 /* Helpers */
00253 #define PL_LOCK playlist_Lock( p_playlist )
00254 #define PL_UNLOCK playlist_Unlock( p_playlist )
00255 #define PL_ASSERT_LOCKED playlist_AssertLocked( p_playlist )
00256 
00257 VLC_EXPORT( playlist_t *, __pl_Hold, ( vlc_object_t * ) );
00258 #define pl_Hold( a ) __pl_Hold( VLC_OBJECT(a) )
00259 
00260 VLC_EXPORT( void, __pl_Release, ( vlc_object_t * ) );
00261 #define pl_Release(a) __pl_Release( VLC_OBJECT(a) )
00262 
00263 /* Playlist control */
00264 #define playlist_Play(p) playlist_Control(p,PLAYLIST_PLAY, pl_Unlocked )
00265 #define playlist_Pause(p) playlist_Control(p,PLAYLIST_PAUSE, pl_Unlocked )
00266 #define playlist_Stop(p) playlist_Control(p,PLAYLIST_STOP, pl_Unlocked )
00267 #define playlist_Next(p) playlist_Control(p,PLAYLIST_SKIP, pl_Unlocked, 1)
00268 #define playlist_Prev(p) playlist_Control(p,PLAYLIST_SKIP, pl_Unlocked, -1)
00269 #define playlist_Skip(p,i) playlist_Control(p,PLAYLIST_SKIP, pl_Unlocked,  (i) )
00270 
00271 VLC_EXPORT( void, playlist_Lock, ( playlist_t * ) );
00272 VLC_EXPORT( void, playlist_Unlock, ( playlist_t * ) );
00273 VLC_EXPORT( void, playlist_AssertLocked, ( playlist_t * ) );
00274 
00275 /**
00276  * Do a playlist action.
00277  * If there is something in the playlist then you can do playlist actions.
00278  * Possible queries are listed in vlc_common.h
00279  * \param p_playlist the playlist to do the command on
00280  * \param i_query the command to do
00281  * \param b_locked TRUE if playlist is locked when entering this function
00282  * \param variable number of arguments
00283  * \return VLC_SUCCESS or an error
00284  */
00285 VLC_EXPORT( int, playlist_Control, ( playlist_t *p_playlist, int i_query, bool b_locked, ...  ) );
00286 
00287 /** Get current playing input. The object is retained.
00288  */
00289 VLC_EXPORT( input_thread_t *, playlist_CurrentInput, ( playlist_t *p_playlist ) );
00290 
00291 /** Clear the playlist
00292  * \param b_locked TRUE if playlist is locked when entering this function
00293  */
00294 VLC_EXPORT( void,  playlist_Clear, ( playlist_t *, bool ) );
00295 
00296 /** Enqueue an input item for preparsing */
00297 VLC_EXPORT( int, playlist_PreparseEnqueue, (playlist_t *, input_item_t *, bool b_locked ) );
00298 
00299 /** Request the art for an input item to be fetched */
00300 VLC_EXPORT( int, playlist_AskForArtEnqueue, (playlist_t *, input_item_t *, bool b_locked ) );
00301 
00302 /* Playlist sorting */
00303 VLC_EXPORT( int,  playlist_TreeMove, ( playlist_t *, playlist_item_t *, playlist_item_t *, int ) );
00304 VLC_EXPORT( int,  playlist_TreeMoveMany, ( playlist_t *, int, playlist_item_t **, playlist_item_t *, int ) );
00305 VLC_EXPORT( int,  playlist_RecursiveNodeSort, ( playlist_t *, playlist_item_t *,int, int ) );
00306 
00307 VLC_EXPORT( playlist_item_t *,  playlist_CurrentPlayingItem, ( playlist_t * ) );
00308 VLC_EXPORT( int,   playlist_Status, ( playlist_t * ) );
00309 
00310 /**
00311  * Export a node of the playlist to a certain type of playlistfile
00312  * \param p_playlist the playlist to export
00313  * \param psz_filename the location where the exported file will be saved
00314  * \param p_export_root the root node to export
00315  * \param psz_type the type of playlist file to create (m3u, pls, ..)
00316  * \return VLC_SUCCESS on success
00317  */
00318 VLC_EXPORT( int,  playlist_Export, ( playlist_t *p_playlist, const char *psz_name, playlist_item_t *p_export_root, const char *psz_type ) );
00319 
00320 /**
00321  * Open a playlist file, add its content to the current playlist
00322  */
00323 VLC_EXPORT( int, playlist_Import, ( playlist_t *p_playlist, const char *psz_file ) );
00324 
00325 /********************** Services discovery ***********************/
00326 
00327 /** Add a list of comma-separated service discovery modules */
00328 VLC_EXPORT( int, playlist_ServicesDiscoveryAdd, (playlist_t *, const char *));
00329 /** Remove a services discovery module by name */
00330 VLC_EXPORT( int, playlist_ServicesDiscoveryRemove, (playlist_t *, const char *));
00331 /** Check whether a given SD is loaded */
00332 VLC_EXPORT( bool, playlist_IsServicesDiscoveryLoaded, ( playlist_t *,const char *));
00333 
00334 
00335 
00336 /********************************************************
00337  * Item management
00338  ********************************************************/
00339 
00340 /*************************** Item deletion **************************/
00341 VLC_EXPORT( int,  playlist_DeleteFromInput, ( playlist_t *, input_item_t *, bool ) );
00342 
00343 /******************** Item addition ********************/
00344 VLC_EXPORT( int,  playlist_Add,    ( playlist_t *, const char *, const char *, int, int, bool, bool ) );
00345 VLC_EXPORT( int,  playlist_AddExt, ( playlist_t *, const char *, const char *, int, int, mtime_t, int, const char *const *, unsigned, bool, bool ) );
00346 VLC_EXPORT( int, playlist_AddInput, ( playlist_t *, input_item_t *, int, int, bool, bool ) );
00347 VLC_EXPORT( int, playlist_BothAddInput, ( playlist_t *, input_item_t *,playlist_item_t *,int , int, int*, int*, bool ) );
00348 
00349 /********************************** Item search *************************/
00350 VLC_EXPORT( playlist_item_t *, playlist_ItemGetById, (playlist_t *, int ) );
00351 VLC_EXPORT( playlist_item_t *, playlist_ItemGetByInput, (playlist_t *,input_item_t * ) );
00352 
00353 VLC_EXPORT( int, playlist_LiveSearchUpdate, (playlist_t *, playlist_item_t *, const char *) );
00354 
00355 /********************************************************
00356  * Tree management
00357  ********************************************************/
00358 /* Node management */
00359 VLC_EXPORT( playlist_item_t *, playlist_NodeCreate, ( playlist_t *, const char *, playlist_item_t * p_parent, int i_flags, input_item_t * ) );
00360 VLC_EXPORT( int, playlist_NodeAppend, (playlist_t *,playlist_item_t*,playlist_item_t *) );
00361 VLC_EXPORT( int, playlist_NodeInsert, (playlist_t *,playlist_item_t*,playlist_item_t *, int) );
00362 VLC_EXPORT( int, playlist_NodeRemoveItem, (playlist_t *,playlist_item_t*,playlist_item_t *) );
00363 VLC_EXPORT( playlist_item_t *, playlist_ChildSearchName, (playlist_item_t*, const char* ) );
00364 VLC_EXPORT( int, playlist_NodeDelete, ( playlist_t *, playlist_item_t *, bool , bool ) );
00365 
00366 VLC_EXPORT( playlist_item_t *, playlist_GetPreferredNode, ( playlist_t *p_playlist, playlist_item_t *p_node ) );
00367 VLC_EXPORT( 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 ) );
00368 VLC_EXPORT( 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 ) );
00369 
00370 /***********************************************************************
00371  * Inline functions
00372  ***********************************************************************/
00373 /** Small helper tp get current playing input or NULL. Release the input after use. */
00374 #define pl_CurrentInput(a) __pl_CurrentInput( VLC_OBJECT(a) )
00375 static  inline input_thread_t * __pl_CurrentInput( vlc_object_t * p_this )
00376 {
00377     playlist_t * p_playlist = pl_Hold( p_this );
00378     if( !p_playlist ) return NULL;
00379     input_thread_t * p_input = playlist_CurrentInput( p_playlist );
00380     pl_Release( p_this );
00381     return p_input;
00382 }
00383 
00384 /** Tell if the playlist is empty */
00385 static inline bool playlist_IsEmpty( playlist_t *p_playlist )
00386 {
00387     PL_ASSERT_LOCKED;
00388     return p_playlist->items.i_size == 0;
00389 }
00390 
00391 /** Tell the number of items in the current playing context */
00392 static inline int playlist_CurrentSize( playlist_t *p_playlist )
00393 {
00394     PL_ASSERT_LOCKED;
00395     return p_playlist->current.i_size;
00396 }
00397 
00398 /** @} */
00399 # ifdef __cplusplus
00400 }
00401 # endif
00402 
00403 #endif

Generated on Sat Nov 21 08:05:14 2009 for VLC by  doxygen 1.5.6