Playlist.hxx 9.21 KB
Newer Older
1
/*
Max Kellermann's avatar
Max Kellermann committed
2
 * Copyright 2003-2018 The Music Player Daemon Project
3
 * http://www.musicpd.org
Warren Dukes's avatar
Warren Dukes committed
4 5 6 7 8 9 10 11 12 13
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
14 15 16 17
 *
 * You should have received a copy of the GNU General Public License along
 * with this program; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
Warren Dukes's avatar
Warren Dukes committed
18 19
 */

20 21
#ifndef MPD_PLAYLIST_HXX
#define MPD_PLAYLIST_HXX
Warren Dukes's avatar
Warren Dukes committed
22

23
#include "SingleMode.hxx"
Max Kellermann's avatar
Max Kellermann committed
24
#include "queue/Queue.hxx"
25
#include "config.h"
Warren Dukes's avatar
Warren Dukes committed
26

27
enum TagType : uint8_t;
28
struct Tag;
29
class PlayerControl;
30
class DetachedSong;
31
class Database;
32
class SongLoader;
33 34
class SongTime;
class SignedSongTime;
35
class QueueListener;
36

37
struct playlist {
38 39 40
	/**
	 * The song queue - it contains the "real" playlist.
	 */
41
	Queue queue;
42

43 44
	QueueListener &listener;

45 46 47 48 49 50
	/**
	 * This value is true if the player is currently playing (or
	 * should be playing).
	 */
	bool playing;

51 52 53 54 55 56 57
	/**
	 * If true, then any error is fatal; if false, MPD will
	 * attempt to play the next song on non-fatal errors.  During
	 * seeking, this flag is set.
	 */
	bool stop_on_error;

58 59 60 61 62 63 64 65 66 67 68 69
	/**
	 * If true, then a bulk edit has been initiated by
	 * BeginBulk(), and UpdateQueuedSong() and OnModified() will
	 * be postponed until CommitBulk()
	 */
	bool bulk_edit;

	/**
	 * Has the queue been modified during bulk edit mode?
	 */
	bool bulk_modified;

70 71 72 73 74 75 76
	/**
	 * Number of errors since playback was started.  If this
	 * number exceeds the length of the playlist, MPD gives up,
	 * because all songs have been tried.
	 */
	unsigned error_count;

77
	/**
78 79 80
	 * The "current song pointer" (the order number).  This is the
	 * song which is played when we get the "play" command.  It is
	 * also the song which is currently being played.
81
	 */
82
	int current;
83 84

	/**
85 86 87 88
	 * The "next" song to be played (the order number), when the
	 * current one finishes.  The decoder thread may start
	 * decoding and buffering it, while the "current" song is
	 * still playing.
89 90
	 *
	 * This variable is only valid if #playing is true.
91
	 */
92 93
	int queued;

94 95 96 97 98
	playlist(unsigned max_length,
		 QueueListener &_listener)
		:queue(max_length),
		 listener(_listener),
		 playing(false),
99 100
		 bulk_edit(false),
		 current(-1), queued(-1) {
101
	}
Warren Dukes's avatar
Warren Dukes committed
102

103 104
	~playlist() {
	}
105

106 107 108
	uint32_t GetVersion() const {
		return queue.version;
	}
109

110 111 112
	unsigned GetLength() const {
		return queue.GetLength();
	}
113

114 115 116
	unsigned PositionToId(unsigned position) const {
		return queue.PositionToId(position);
	}
117

118
	gcc_pure
119
	int GetCurrentPosition() const noexcept;
Warren Dukes's avatar
Warren Dukes committed
120

121
	gcc_pure
122
	int GetNextPosition() const noexcept;
123

124 125 126 127 128
	/**
	 * Returns the song object which is currently queued.  Returns
	 * none if there is none (yet?) or if MPD isn't playing.
	 */
	gcc_pure
129
	const DetachedSong *GetQueuedSong() const noexcept;
Warren Dukes's avatar
Warren Dukes committed
130

131 132 133 134 135
	/**
	 * This is the "PLAYLIST" event handler.  It is invoked by the
	 * player thread whenever it requests a new queued song, or
	 * when it exits.
	 */
136
	void SyncWithPlayer(PlayerControl &pc);
Warren Dukes's avatar
Warren Dukes committed
137

138 139 140 141 142 143
	/**
	 * This is the "BORDER_PAUSE" event handler.  It is invoked by
	 * the player thread whenever playback goes into border pause.
	 */
	void BorderPause(PlayerControl &pc);

144 145 146
protected:
	/**
	 * Called by all editing methods after a modification.
147 148
	 * Updates the queue version and invokes
	 * QueueListener::OnQueueModified().
149 150
	 */
	void OnModified();
Warren Dukes's avatar
Warren Dukes committed
151

152 153 154 155 156 157 158 159 160 161 162
	/**
	 * Called when playback of a new song starts.  Unlike
	 * QueuedSongStarted(), this also gets called when the user
	 * manually switches to another song.  It may be used for
	 * playlist fixups.
	 *
	 * The song being started is specified by the #current
	 * attribute.
	 */
	void SongStarted();

163 164 165 166 167 168 169 170 171
	/**
	 * Updates the "queued song".  Calculates the next song
	 * according to the current one (if MPD isn't playing, it
	 * takes the first song), and queues this song.  Clears the
	 * old queued song if there was one.
	 *
	 * @param prev the song which was previously queued, as
	 * determined by playlist_get_queued_song()
	 */
172
	void UpdateQueuedSong(PlayerControl &pc, const DetachedSong *prev);
173

174 175 176 177 178
	/**
	 * Queue a song, addressed by its order number.
	 */
	void QueueSongOrder(PlayerControl &pc, unsigned order);

179 180
	/**
	 * Called when the player thread has started playing the
181 182
	 * "queued" song, i.e. it has switched from one song to the
	 * next automatically.
183 184 185
	 */
	void QueuedSongStarted(PlayerControl &pc);

186 187 188 189 190 191
	/**
	 * The player has stopped for some reason.  Check the error,
	 * and decide whether to re-start playback.
	 */
	void ResumePlayback(PlayerControl &pc);

192
public:
193 194 195
	void BeginBulk();
	void CommitBulk(PlayerControl &pc);

196
	void Clear(PlayerControl &pc);
197

198 199 200 201 202
	/**
	 * A tag in the play queue has been modified by the player
	 * thread.  Apply the given song's tag to the current song if
	 * the song matches.
	 */
203
	void TagModified(DetachedSong &&song);
204
	void TagModified(const char *uri, const Tag &tag) noexcept;
Warren Dukes's avatar
Warren Dukes committed
205

206
#ifdef ENABLE_DATABASE
207 208 209
	/**
	 * The database has been modified.  Pull all updates.
	 */
210
	void DatabaseModified(const Database &db);
211
#endif
212

213
	/**
214 215 216
	 * Throws PlaylistError if the queue would be too large.
	 *
	 * @return the new song id
217
	 */
218
	unsigned AppendSong(PlayerControl &pc, DetachedSong &&song);
219 220

	/**
221 222 223
	 * Throws #std::runtime_error on error.
	 *
	 * @return the new song id
224 225 226
	 */
	unsigned AppendURI(PlayerControl &pc,
			   const SongLoader &loader,
227
			   const char *uri_utf8);
Warren Dukes's avatar
Warren Dukes committed
228

229
protected:
230
	void DeleteInternal(PlayerControl &pc,
231
			    unsigned song, const DetachedSong **queued_p);
Warren Dukes's avatar
Warren Dukes committed
232

233
public:
234
	void DeletePosition(PlayerControl &pc, unsigned position);
Warren Dukes's avatar
Warren Dukes committed
235

236 237
	void DeleteOrder(PlayerControl &pc, unsigned order) {
		DeletePosition(pc, queue.OrderToPosition(order));
238
	}
Warren Dukes's avatar
Warren Dukes committed
239

240
	void DeleteId(PlayerControl &pc, unsigned id);
241 242 243 244 245 246 247

	/**
	 * Deletes a range of songs from the playlist.
	 *
	 * @param start the position of the first song to delete
	 * @param end the position after the last song to delete
	 */
248
	void DeleteRange(PlayerControl &pc, unsigned start, unsigned end);
Warren Dukes's avatar
Warren Dukes committed
249

250 251 252 253 254 255 256
	/**
	 * Mark the given song as "stale", i.e. as not being available
	 * anymore.  This gets called when a song is removed from the
	 * database.  The method attempts to remove all instances of
	 * this song from the queue.
	 */
	void StaleSong(PlayerControl &pc, const char *uri);
Warren Dukes's avatar
Warren Dukes committed
257

258
	void Shuffle(PlayerControl &pc, unsigned start, unsigned end);
259

260 261
	void MoveRange(PlayerControl &pc, unsigned start,
		       unsigned end, int to);
Warren Dukes's avatar
Warren Dukes committed
262

263
	void MoveId(PlayerControl &pc, unsigned id, int to);
264

265
	void SwapPositions(PlayerControl &pc, unsigned song1, unsigned song2);
266

267
	void SwapIds(PlayerControl &pc, unsigned id1, unsigned id2);
268

269 270 271
	void SetPriorityRange(PlayerControl &pc,
			      unsigned start_position, unsigned end_position,
			      uint8_t priority);
Warren Dukes's avatar
Warren Dukes committed
272

273 274
	void SetPriorityId(PlayerControl &pc,
			   unsigned song_id, uint8_t priority);
Warren Dukes's avatar
Warren Dukes committed
275

276
	/**
277
	 * Sets the start_time and end_time attributes on the song
278 279
	 * with the specified id.
	 */
280 281
	void SetSongIdRange(PlayerControl &pc, unsigned id,
			    SongTime start, SongTime end);
282

283 284
	void AddSongIdTag(unsigned id, TagType tag_type, const char *value);
	void ClearSongIdTag(unsigned id, TagType tag_type);
285

286
	void Stop(PlayerControl &pc);
Warren Dukes's avatar
Warren Dukes committed
287

288
	/**
289
	 * Throws on error.
290 291
	 */
	void PlayPosition(PlayerControl &pc, int position);
Warren Dukes's avatar
Warren Dukes committed
292

293
	/**
294
	 * Throws on error.
295 296
	 */
	void PlayOrder(PlayerControl &pc, unsigned order);
297

298
	/**
299
	 * Throws on error.
300 301
	 */
	void PlayId(PlayerControl &pc, int id);
302

303
	/**
304
	 * Throws on error.
305 306
	 */
	void PlayNext(PlayerControl &pc);
307

308
	/**
309
	 * Throws on error.
310 311
	 */
	void PlayPrevious(PlayerControl &pc);
312

313
	/**
314
	 * Throws on error.
315 316
	 */
	void SeekSongOrder(PlayerControl &pc,
317
			   unsigned song_order,
318
			   SongTime seek_time);
319

320
	/**
321
	 * Throws on error.
322 323
	 */
	void SeekSongPosition(PlayerControl &pc,
324
			      unsigned sonag_position,
325
			      SongTime seek_time);
326

327
	/**
328
	 * Throws on error.
329 330 331
	 */
	void SeekSongId(PlayerControl &pc,
			unsigned song_id, SongTime seek_time);
332

333 334 335 336
	/**
	 * Seek within the current song.  Fails if MPD is not currently
	 * playing.
	 *
337
	 * Throws on error.
338
	 *
Max Kellermann's avatar
Max Kellermann committed
339
	 * @param seek_time the time
340 341 342
	 * @param relative if true, then the specified time is relative to the
	 * current position
	 */
343 344
	void SeekCurrent(PlayerControl &pc,
			 SignedSongTime seek_time, bool relative);
Warren Dukes's avatar
Warren Dukes committed
345

346 347 348
	bool GetRepeat() const {
		return queue.repeat;
	}
349

350
	void SetRepeat(PlayerControl &pc, bool new_value);
351

352 353 354
	bool GetRandom() const {
		return queue.random;
	}
Warren Dukes's avatar
Warren Dukes committed
355

356
	void SetRandom(PlayerControl &pc, bool new_value);
Warren Dukes's avatar
Warren Dukes committed
357

358
	SingleMode GetSingle() const {
359 360
		return queue.single;
	}
Warren Dukes's avatar
Warren Dukes committed
361

362
	void SetSingle(PlayerControl &pc, SingleMode new_value);
363

364 365 366 367 368
	bool GetConsume() const {
		return queue.consume;
	}

	void SetConsume(bool new_value);
369 370 371 372 373 374 375 376 377 378 379 380

private:
	/**
	 * Prepare a manual song change: move the given song to the
	 * current playback order.  This is done to avoid skipping
	 * upcoming songs in the order list.  The newly selected song
	 * shall be inserted in the order list, and the rest shall be
	 * played after that as previously planned.
	 *
	 * @return the new order number of the given song
	 */
	unsigned MoveOrderToCurrent(unsigned old_order);
381 382
};

Warren Dukes's avatar
Warren Dukes committed
383
#endif