00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
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
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059
00060
00061
00062
00063
00064
00065
00066
00067
00068
00069
00070
00071
00072
00073
00074
00075
00076
00077
00078
00079
00080
00081
00082
00083
00084
00085
00086
00087
00088
00089
00090
00091
00092
00093
00094
00095
00096
00097
00098
00099
00100
00101
00102
00103
00104
00105
00106
00107
00108
00109
00110
00111
00112
00113
00114
00115
00116
00117
00118
00119
00120
00121
00122
00123
00124
00125 typedef struct playlist_export_t
00126 {
00127 VLC_COMMON_MEMBERS
00128 const char *psz_filename;
00129 FILE *p_file;
00130 playlist_item_t *p_root;
00131 } playlist_export_t;
00132
00133
00134 struct playlist_item_t
00135 {
00136 input_item_t *p_input;
00137
00138 playlist_item_t **pp_children;
00139 playlist_item_t *p_parent;
00140 int i_children;
00141
00142 int i_id;
00143 uint8_t i_flags;
00144
00145 playlist_t *p_playlist;
00146 };
00147
00148 typedef enum {
00149 PLAYLIST_SAVE_FLAG = 0x0001,
00150 PLAYLIST_SKIP_FLAG = 0x0002,
00151 PLAYLIST_DBL_FLAG = 0x0004,
00152 PLAYLIST_RO_FLAG = 0x0008,
00153 PLAYLIST_REMOVE_FLAG = 0x0010,
00154 PLAYLIST_EXPANDED_FLAG = 0x0020,
00155 PLAYLIST_SUBITEM_STOP_FLAG = 0x0040,
00156 } playlist_item_flags_e;
00157
00158
00159 typedef enum
00160 { PLAYLIST_STOPPED,PLAYLIST_RUNNING,PLAYLIST_PAUSED } playlist_status_t;
00161
00162
00163 struct playlist_t
00164 {
00165 VLC_COMMON_MEMBERS
00166
00167 playlist_item_array_t items;
00168 playlist_item_array_t all_items;
00169
00170 playlist_item_array_t current;
00171 int i_current_index;
00172
00173
00174 playlist_item_t * p_root;
00175 playlist_item_t * p_playing;
00176 playlist_item_t * p_media_library;
00177
00178
00179 playlist_item_t * p_root_category;
00180 playlist_item_t * p_root_onelevel;
00181 playlist_item_t * p_local_category;
00182 playlist_item_t * p_ml_category;
00183 playlist_item_t * p_local_onelevel;
00184 playlist_item_t * p_ml_onelevel;
00185 };
00186
00187
00188 struct playlist_add_t
00189 {
00190 int i_node;
00191 int i_item;
00192 };
00193
00194
00195
00196
00197
00198 #define VLC_DEFINE_SORT_FUNCTIONS \
00199 DEF( SORT_ID )\
00200 DEF( SORT_TITLE )\
00201 DEF( SORT_TITLE_NODES_FIRST )\
00202 DEF( SORT_ARTIST )\
00203 DEF( SORT_GENRE )\
00204 DEF( SORT_DURATION )\
00205 DEF( SORT_TITLE_NUMERIC )\
00206 DEF( SORT_ALBUM )\
00207 DEF( SORT_TRACK_NUMBER )\
00208 DEF( SORT_DESCRIPTION )\
00209 DEF( SORT_RATING )\
00210 DEF( SORT_URI )
00211
00212 #define DEF( s ) s,
00213 enum
00214 {
00215 VLC_DEFINE_SORT_FUNCTIONS
00216 SORT_RANDOM,
00217 NUM_SORT_FNS=SORT_RANDOM
00218 };
00219 #undef DEF
00220 #ifndef VLC_INTERNAL_PLAYLIST_SORT_FUNCTIONS
00221 #undef VLC_DEFINE_SORT_FUNCTIONS
00222 #endif
00223
00224 enum
00225 {
00226 ORDER_NORMAL = 0,
00227 ORDER_REVERSE = 1,
00228 };
00229
00230
00231 #define PLAYLIST_INSERT 0x0001
00232 #define PLAYLIST_APPEND 0x0002
00233 #define PLAYLIST_GO 0x0004
00234 #define PLAYLIST_PREPARSE 0x0008
00235 #define PLAYLIST_SPREPARSE 0x0010
00236 #define PLAYLIST_NO_REBUILD 0x0020
00237
00238 #define PLAYLIST_END -666
00239
00240 enum pl_locked_state
00241 {
00242 pl_Locked = true,
00243 pl_Unlocked = false
00244 };
00245
00246
00247
00248
00249
00250
00251 #define PL_LOCK playlist_Lock( p_playlist )
00252 #define PL_UNLOCK playlist_Unlock( p_playlist )
00253 #define PL_ASSERT_LOCKED playlist_AssertLocked( p_playlist )
00254
00255 VLC_API playlist_t * pl_Get( vlc_object_t * ) VLC_USED;
00256 #define pl_Get( a ) pl_Get( VLC_OBJECT(a) )
00257
00258
00259 #define playlist_Play(p) playlist_Control(p,PLAYLIST_PLAY, pl_Unlocked )
00260 #define playlist_Pause(p) playlist_Control(p,PLAYLIST_PAUSE, pl_Unlocked )
00261 #define playlist_Stop(p) playlist_Control(p,PLAYLIST_STOP, pl_Unlocked )
00262 #define playlist_Next(p) playlist_Control(p,PLAYLIST_SKIP, pl_Unlocked, 1)
00263 #define playlist_Prev(p) playlist_Control(p,PLAYLIST_SKIP, pl_Unlocked, -1)
00264 #define playlist_Skip(p,i) playlist_Control(p,PLAYLIST_SKIP, pl_Unlocked, (i) )
00265
00266 VLC_API void playlist_Lock( playlist_t * );
00267 VLC_API void playlist_Unlock( playlist_t * );
00268 VLC_API void playlist_AssertLocked( playlist_t * );
00269
00270
00271
00272
00273
00274
00275
00276
00277
00278
00279
00280 VLC_API int playlist_Control( playlist_t *p_playlist, int i_query, bool b_locked, ... );
00281
00282
00283
00284 VLC_API input_thread_t * playlist_CurrentInput( playlist_t *p_playlist ) VLC_USED;
00285
00286
00287
00288
00289 VLC_API void playlist_Clear( playlist_t *, bool );
00290
00291
00292 VLC_API int playlist_PreparseEnqueue(playlist_t *, input_item_t * );
00293
00294
00295 VLC_API int playlist_AskForArtEnqueue(playlist_t *, input_item_t * );
00296
00297
00298 VLC_API int playlist_TreeMove( playlist_t *, playlist_item_t *, playlist_item_t *, int );
00299 VLC_API int playlist_TreeMoveMany( playlist_t *, int, playlist_item_t **, playlist_item_t *, int );
00300 VLC_API int playlist_RecursiveNodeSort( playlist_t *, playlist_item_t *,int, int );
00301
00302 VLC_API playlist_item_t * playlist_CurrentPlayingItem( playlist_t * ) VLC_USED;
00303 VLC_API int playlist_Status( playlist_t * );
00304
00305
00306
00307
00308
00309
00310
00311
00312
00313 VLC_API int playlist_Export( playlist_t *p_playlist, const char *psz_name, playlist_item_t *p_export_root, const char *psz_type );
00314
00315
00316
00317
00318 VLC_API int playlist_Import( playlist_t *p_playlist, const char *psz_file );
00319
00320
00321
00322
00323 VLC_API int playlist_ServicesDiscoveryAdd(playlist_t *, const char *);
00324
00325 VLC_API int playlist_ServicesDiscoveryRemove(playlist_t *, const char *);
00326
00327 VLC_API bool playlist_IsServicesDiscoveryLoaded( playlist_t *,const char *) VLC_DEPRECATED;
00328
00329 VLC_API int playlist_ServicesDiscoveryControl( playlist_t *, const char *, int, ... );
00330
00331
00332
00333
00334
00335
00336
00337
00338 VLC_API int playlist_DeleteFromInput( playlist_t *, input_item_t *, bool );
00339
00340
00341 VLC_API int playlist_Add( playlist_t *, const char *, const char *, int, int, bool, bool );
00342 VLC_API int playlist_AddExt( playlist_t *, const char *, const char *, int, int, mtime_t, int, const char *const *, unsigned, bool, bool );
00343 VLC_API int playlist_AddInput( playlist_t *, input_item_t *, int, int, bool, bool );
00344 VLC_API playlist_item_t * playlist_NodeAddInput( playlist_t *, input_item_t *, playlist_item_t *, int, int, bool );
00345 VLC_API int playlist_NodeAddCopy( playlist_t *, playlist_item_t *, playlist_item_t *, int );
00346
00347
00348 VLC_API playlist_item_t * playlist_ItemGetById(playlist_t *, int ) VLC_USED;
00349 VLC_API playlist_item_t * playlist_ItemGetByInput(playlist_t *,input_item_t * ) VLC_USED;
00350
00351 VLC_API int playlist_LiveSearchUpdate(playlist_t *, playlist_item_t *, const char *, bool );
00352
00353
00354
00355
00356
00357 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 * );
00358 VLC_API int playlist_NodeAppend(playlist_t *,playlist_item_t*,playlist_item_t *);
00359 VLC_API int playlist_NodeInsert(playlist_t *,playlist_item_t*,playlist_item_t *, int);
00360 VLC_API int playlist_NodeRemoveItem(playlist_t *,playlist_item_t*,playlist_item_t *);
00361 VLC_API playlist_item_t * playlist_ChildSearchName(playlist_item_t*, const char* ) VLC_USED;
00362 VLC_API int playlist_NodeDelete( playlist_t *, playlist_item_t *, bool , bool );
00363
00364 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;
00365 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;
00366
00367
00368
00369
00370
00371 #define pl_CurrentInput(a) __pl_CurrentInput( VLC_OBJECT(a) )
00372 static inline input_thread_t * __pl_CurrentInput( vlc_object_t * p_this )
00373 {
00374 return playlist_CurrentInput( pl_Get( p_this ) );
00375 }
00376
00377
00378 static inline bool playlist_IsEmpty( playlist_t *p_playlist )
00379 {
00380 PL_ASSERT_LOCKED;
00381 return p_playlist->items.i_size == 0;
00382 }
00383
00384
00385 static inline int playlist_CurrentSize( playlist_t *p_playlist )
00386 {
00387 PL_ASSERT_LOCKED;
00388 return p_playlist->current.i_size;
00389 }
00390
00391
00392 # ifdef __cplusplus
00393 }
00394 # endif
00395
00396 #endif