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: 1af23587075c2366490f13418fa7968dc55e7c39 $
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  * The top-level items are the main media sources and include:
00060  * playlist, media library, SAP, Shoutcast, devices, ...
00061  *
00062  * It is envisioned that a third tree will appear: VLM, but it's not done yet
00063  *
00064  * The playlist also stores, for utility purposes, an array of all input
00065  * items, an array of all playlist items and an array of all playlist items
00066  * and nodes (both are represented by the same structure).
00067  *
00068  * So, here is an example:
00069  * \verbatim
00070  * Inputs array
00071  *  - input 1 -> name = foo 1 uri = ...
00072  *  - input 2 -> name = foo 2 uri = ...
00073  *
00074  * Playlist items tree
00075  * - playlist (id 1)
00076  *    - category 1 (id 2)
00077  *      - foo 2 (id 6 - input 2)
00078  * - media library (id 2)
00079  *    - foo 1 (id 5 - input 1)
00080  * \endverbatim
00081  *
00082  * Sometimes, an item creates subitems. This happens for the directory access
00083  * for example. In that case, if the item is under the "playlist" top-level item
00084  * and playlist is configured to be flat then the item will be deleted and
00085  * replaced with new subitems. If the item is under another top-level item, it
00086  * will be transformed to a node and removed from the list of all items without
00087  * nodes.
00088  *
00089  * For "standard" item addition, you can use playlist_Add, playlist_AddExt
00090  * (more options) or playlist_AddInput if you already created your input
00091  * item. This will add the item at the root of "Playlist" or of "Media library"
00092  * in each of the two trees.
00093  *
00094  * You can create nodes with playlist_NodeCreate and can create items from
00095  * existing input items to be placed under any node with playlist_NodeAddInput.
00096  *
00097  * To delete an item, use playlist_DeleteFromInput( p_item ) which will
00098  * remove all occurrences of the input.
00099  *
00100  *
00101  * The playlist defines the following event variables:
00102  *
00103  * - "item-change": It will contain the input_item_t->i_id of a changed input
00104  * item monitored by the playlist.
00105  * - "item-current": It will contain a input_item_t->i_id of the current
00106  * item being played.
00107  *
00108  * - "playlist-item-append": It will contain a pointer to a playlist_add_t.
00109  * - "playlist-item-deleted": It will contain the playlist_item_t->i_id of a
00110  * deleted playlist_item_t.
00111  *
00112  * - "leaf-to-parent": Set when an item gets subitems and is transformed to a
00113  * node. It will contain a pointer to the input_item_t bound to the transformed
00114  * playlist item.
00115  *
00116  *
00117  * XXX Be really carefull, playlist_item_t->i_id and input_item_t->i_id are not
00118  * the same. Yes, the situation is pretty bad.
00119  *
00120  * @{
00121  */
00122 
00123 /** Helper structure to export to file part of the playlist */
00124 typedef struct playlist_export_t
00125 {
00126     VLC_COMMON_MEMBERS
00127     const char *psz_filename;
00128     FILE *p_file;
00129     playlist_item_t *p_root;
00130 } playlist_export_t;
00131 
00132 /** playlist item / node */
00133 struct playlist_item_t
00134 {
00135     input_item_t           *p_input;    /**< Linked input item */
00136     /** Number of children, -1 if not a node */
00137     playlist_item_t      **pp_children; /**< Children nodes/items */
00138     playlist_item_t       *p_parent;    /**< Item parent */
00139     int                    i_children;
00140 
00141     int                    i_id;        /**< Playlist item specific id */
00142     uint8_t                i_flags;     /**< Flags */
00143     playlist_t            *p_playlist;  /**< Parent playlist */
00144 };
00145 
00146 #define PLAYLIST_SAVE_FLAG      0x0001    /**< Must it be saved */
00147 #define PLAYLIST_SKIP_FLAG      0x0002    /**< Must playlist skip after it ? */
00148 #define PLAYLIST_DBL_FLAG       0x0004    /**< Is it disabled ? */
00149 #define PLAYLIST_RO_FLAG        0x0008    /**< Write-enabled ? */
00150 #define PLAYLIST_REMOVE_FLAG    0x0010    /**< Remove this item at the end */
00151 #define PLAYLIST_EXPANDED_FLAG  0x0020    /**< Expanded node */
00152 #define PLAYLIST_SUBITEM_STOP_FLAG 0x0040 /**< Must playlist stop if the item gets subitems ?*/
00153 
00154 /** Playlist status */
00155 typedef enum
00156 { PLAYLIST_STOPPED,PLAYLIST_RUNNING,PLAYLIST_PAUSED } playlist_status_t;
00157 
00158 /** Structure containing information about the playlist */
00159 struct playlist_t
00160 {
00161     VLC_COMMON_MEMBERS
00162 
00163     playlist_item_array_t items; /**< Arrays of items */
00164     playlist_item_array_t all_items; /**< Array of items and nodes */
00165 
00166     playlist_item_array_t current; /**< Items currently being played */
00167     int                   i_current_index; /**< Index in current array */
00168 
00169     /* Predefined items */
00170     playlist_item_t *     p_root;
00171     playlist_item_t *     p_playing;
00172     playlist_item_t *     p_media_library;
00173 
00174     //Phony ones, point to those above;
00175     playlist_item_t *     p_root_category; /**< Root of category tree */
00176     playlist_item_t *     p_root_onelevel; /**< Root of onelevel tree */
00177     playlist_item_t *     p_local_category; /** < "Playlist" in CATEGORY view */
00178     playlist_item_t *     p_ml_category; /** < "Library" in CATEGORY view */
00179     playlist_item_t *     p_local_onelevel; /** < "Playlist" in ONELEVEL view */
00180     playlist_item_t *     p_ml_onelevel; /** < "Library" in ONELEVEL view */
00181 };
00182 
00183 /** Helper to add an item */
00184 struct playlist_add_t
00185 {
00186     int i_node; /**< Playist id of the parent node */
00187     int i_item; /**< Playist id of the playlist_item_t */
00188 };
00189 
00190 /* A bit of macro magic to generate an enum out of the following list,
00191  * and later, to generate a list of static functions out of the same list.
00192  * There is also SORT_RANDOM, which is always last and handled specially.
00193  */
00194 #define VLC_DEFINE_SORT_FUNCTIONS \
00195     DEF( SORT_ID )\
00196     DEF( SORT_TITLE )\
00197     DEF( SORT_TITLE_NODES_FIRST )\
00198     DEF( SORT_ARTIST )\
00199     DEF( SORT_GENRE )\
00200     DEF( SORT_DURATION )\
00201     DEF( SORT_TITLE_NUMERIC )\
00202     DEF( SORT_ALBUM )\
00203     DEF( SORT_TRACK_NUMBER )\
00204     DEF( SORT_DESCRIPTION )\
00205     DEF( SORT_RATING )\
00206     DEF( SORT_URI )
00207 
00208 #define DEF( s ) s,
00209 enum
00210 {
00211     VLC_DEFINE_SORT_FUNCTIONS
00212     SORT_RANDOM,
00213     NUM_SORT_FNS=SORT_RANDOM
00214 };
00215 #undef  DEF
00216 #ifndef VLC_INTERNAL_PLAYLIST_SORT_FUNCTIONS
00217 #undef  VLC_DEFINE_SORT_FUNCTIONS
00218 #endif
00219 
00220 enum
00221 {
00222     ORDER_NORMAL = 0,
00223     ORDER_REVERSE = 1,
00224 };
00225 
00226 /* Used by playlist_Import */
00227 #define PLAYLIST_INSERT          0x0001
00228 #define PLAYLIST_APPEND          0x0002
00229 #define PLAYLIST_GO              0x0004
00230 #define PLAYLIST_PREPARSE        0x0008
00231 #define PLAYLIST_SPREPARSE       0x0010
00232 #define PLAYLIST_NO_REBUILD      0x0020
00233 
00234 #define PLAYLIST_END           -666
00235 
00236 enum pl_locked_state
00237 {
00238     pl_Locked = true,
00239     pl_Unlocked = false
00240 };
00241 
00242 /*****************************************************************************
00243  * Prototypes
00244  *****************************************************************************/
00245 
00246 /* Helpers */
00247 #define PL_LOCK playlist_Lock( p_playlist )
00248 #define PL_UNLOCK playlist_Unlock( p_playlist )
00249 #define PL_ASSERT_LOCKED playlist_AssertLocked( p_playlist )
00250 
00251 VLC_EXPORT( playlist_t *, pl_Get, ( vlc_object_t * ) LIBVLC_USED );
00252 #define pl_Get( a ) pl_Get( VLC_OBJECT(a) )
00253 
00254 /* Playlist control */
00255 #define playlist_Play(p) playlist_Control(p,PLAYLIST_PLAY, pl_Unlocked )
00256 #define playlist_Pause(p) playlist_Control(p,PLAYLIST_PAUSE, pl_Unlocked )
00257 #define playlist_Stop(p) playlist_Control(p,PLAYLIST_STOP, pl_Unlocked )
00258 #define playlist_Next(p) playlist_Control(p,PLAYLIST_SKIP, pl_Unlocked, 1)
00259 #define playlist_Prev(p) playlist_Control(p,PLAYLIST_SKIP, pl_Unlocked, -1)
00260 #define playlist_Skip(p,i) playlist_Control(p,PLAYLIST_SKIP, pl_Unlocked,  (i) )
00261 
00262 VLC_EXPORT( void, playlist_Lock, ( playlist_t * ) );
00263 VLC_EXPORT( void, playlist_Unlock, ( playlist_t * ) );
00264 VLC_EXPORT( void, playlist_AssertLocked, ( playlist_t * ) );
00265 
00266 /**
00267  * Do a playlist action.
00268  * If there is something in the playlist then you can do playlist actions.
00269  * Possible queries are listed in vlc_common.h
00270  * \param p_playlist the playlist to do the command on
00271  * \param i_query the command to do
00272  * \param b_locked TRUE if playlist is locked when entering this function
00273  * \param variable number of arguments
00274  * \return VLC_SUCCESS or an error
00275  */
00276 VLC_EXPORT( int, playlist_Control, ( playlist_t *p_playlist, int i_query, bool b_locked, ...  ) );
00277 
00278 /** Get current playing input. The object is retained.
00279  */
00280 VLC_EXPORT( input_thread_t *, playlist_CurrentInput, ( playlist_t *p_playlist ) LIBVLC_USED );
00281 
00282 /** Clear the playlist
00283  * \param b_locked TRUE if playlist is locked when entering this function
00284  */
00285 VLC_EXPORT( void,  playlist_Clear, ( playlist_t *, bool ) );
00286 
00287 /** Enqueue an input item for preparsing */
00288 VLC_EXPORT( int, playlist_PreparseEnqueue, (playlist_t *, input_item_t * ) );
00289 
00290 /** Request the art for an input item to be fetched */
00291 VLC_EXPORT( int, playlist_AskForArtEnqueue, (playlist_t *, input_item_t * ) );
00292 
00293 /* Playlist sorting */
00294 VLC_EXPORT( int,  playlist_TreeMove, ( playlist_t *, playlist_item_t *, playlist_item_t *, int ) );
00295 VLC_EXPORT( int,  playlist_TreeMoveMany, ( playlist_t *, int, playlist_item_t **, playlist_item_t *, int ) );
00296 VLC_EXPORT( int,  playlist_RecursiveNodeSort, ( playlist_t *, playlist_item_t *,int, int ) );
00297 
00298 VLC_EXPORT( playlist_item_t *,  playlist_CurrentPlayingItem, ( playlist_t * ) LIBVLC_USED );
00299 VLC_EXPORT( int,   playlist_Status, ( playlist_t * ) );
00300 
00301 /**
00302  * Export a node of the playlist to a certain type of playlistfile
00303  * \param p_playlist the playlist to export
00304  * \param psz_filename the location where the exported file will be saved
00305  * \param p_export_root the root node to export
00306  * \param psz_type the type of playlist file to create (m3u, pls, ..)
00307  * \return VLC_SUCCESS on success
00308  */
00309 VLC_EXPORT( int,  playlist_Export, ( playlist_t *p_playlist, const char *psz_name, playlist_item_t *p_export_root, const char *psz_type ) );
00310 
00311 /**
00312  * Open a playlist file, add its content to the current playlist
00313  */
00314 VLC_EXPORT( int, playlist_Import, ( playlist_t *p_playlist, const char *psz_file ) );
00315 
00316 /********************** Services discovery ***********************/
00317 
00318 /** Add a list of comma-separated service discovery modules */
00319 VLC_EXPORT( int, playlist_ServicesDiscoveryAdd, (playlist_t *, const char *));
00320 /** Remove a services discovery module by name */
00321 VLC_EXPORT( int, playlist_ServicesDiscoveryRemove, (playlist_t *, const char *));
00322 /** Check whether a given SD is loaded */
00323 VLC_EXPORT( bool, playlist_IsServicesDiscoveryLoaded, ( playlist_t *,const char *));
00324 
00325 
00326 
00327 /********************************************************
00328  * Item management
00329  ********************************************************/
00330 
00331 /*************************** Item deletion **************************/
00332 VLC_EXPORT( int,  playlist_DeleteFromInput, ( playlist_t *, input_item_t *, bool ) );
00333 
00334 /******************** Item addition ********************/
00335 VLC_EXPORT( int,  playlist_Add,    ( playlist_t *, const char *, const char *, int, int, bool, bool ) );
00336 VLC_EXPORT( int,  playlist_AddExt, ( playlist_t *, const char *, const char *, int, int, mtime_t, int, const char *const *, unsigned, bool, bool ) );
00337 VLC_EXPORT( int, playlist_AddInput, ( playlist_t *, input_item_t *, int, int, bool, bool ) );
00338 VLC_EXPORT( playlist_item_t *, playlist_NodeAddInput, ( playlist_t *, input_item_t *, playlist_item_t *, int, int, bool ) );
00339 VLC_EXPORT( int, playlist_NodeAddCopy, ( playlist_t *, playlist_item_t *, playlist_item_t *, int ) );
00340 
00341 /********************************** Item search *************************/
00342 VLC_EXPORT( playlist_item_t *, playlist_ItemGetById, (playlist_t *, int ) LIBVLC_USED );
00343 VLC_EXPORT( playlist_item_t *, playlist_ItemGetByInput, (playlist_t *,input_item_t * ) LIBVLC_USED );
00344 
00345 VLC_EXPORT( int, playlist_LiveSearchUpdate, (playlist_t *, playlist_item_t *, const char *, bool ) );
00346 
00347 /********************************************************
00348  * Tree management
00349  ********************************************************/
00350 /* Node management */
00351 VLC_EXPORT( playlist_item_t *, playlist_NodeCreate, ( playlist_t *, const char *, playlist_item_t * p_parent, int i_pos, int i_flags, input_item_t * ) );
00352 VLC_EXPORT( int, playlist_NodeAppend, (playlist_t *,playlist_item_t*,playlist_item_t *) );
00353 VLC_EXPORT( int, playlist_NodeInsert, (playlist_t *,playlist_item_t*,playlist_item_t *, int) );
00354 VLC_EXPORT( int, playlist_NodeRemoveItem, (playlist_t *,playlist_item_t*,playlist_item_t *) );
00355 VLC_EXPORT( playlist_item_t *, playlist_ChildSearchName, (playlist_item_t*, const char* ) LIBVLC_USED );
00356 VLC_EXPORT( int, playlist_NodeDelete, ( playlist_t *, playlist_item_t *, bool , bool ) );
00357 
00358 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 ) LIBVLC_USED );
00359 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 ) LIBVLC_USED );
00360 
00361 /***********************************************************************
00362  * Inline functions
00363  ***********************************************************************/
00364 /** Small helper tp get current playing input or NULL. Release the input after use. */
00365 #define pl_CurrentInput(a) __pl_CurrentInput( VLC_OBJECT(a) )
00366 static  inline input_thread_t * __pl_CurrentInput( vlc_object_t * p_this )
00367 {
00368     return playlist_CurrentInput( pl_Get( p_this ) );
00369 }
00370 
00371 /** Tell if the playlist is empty */
00372 static inline bool playlist_IsEmpty( playlist_t *p_playlist )
00373 {
00374     PL_ASSERT_LOCKED;
00375     return p_playlist->items.i_size == 0;
00376 }
00377 
00378 /** Tell the number of items in the current playing context */
00379 static inline int playlist_CurrentSize( playlist_t *p_playlist )
00380 {
00381     PL_ASSERT_LOCKED;
00382     return p_playlist->current.i_size;
00383 }
00384 
00385 /** @} */
00386 # ifdef __cplusplus
00387 }
00388 # endif
00389 
00390 #endif

Generated on Mon Nov 22 07:55:20 2010 for VLC by  doxygen 1.5.6