Playlist.hxx 8.09 KB
Newer Older
1
/*
2
 * Copyright 2003-2016 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

Max Kellermann's avatar
Max Kellermann committed
23
#include "queue/Queue.hxx"
Warren Dukes's avatar
Warren Dukes committed
24

25
enum TagType : uint8_t;
26
struct PlayerControl;
27
class DetachedSong;
28
class Database;
29
class Error;
30
class SongLoader;
31 32
class SongTime;
class SignedSongTime;
33
class QueueListener;
34

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

41 42
	QueueListener &listener;

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

49 50 51 52 53 54 55
	/**
	 * 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;

56 57 58 59 60 61 62 63 64 65 66 67
	/**
	 * 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;

68 69 70 71 72 73 74
	/**
	 * 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;

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

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

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

100 101
	~playlist() {
	}
102

103 104 105
	uint32_t GetVersion() const {
		return queue.version;
	}
106

107 108 109
	unsigned GetLength() const {
		return queue.GetLength();
	}
110

111 112 113
	unsigned PositionToId(unsigned position) const {
		return queue.PositionToId(position);
	}
114

115 116
	gcc_pure
	int GetCurrentPosition() const;
Warren Dukes's avatar
Warren Dukes committed
117

118 119
	gcc_pure
	int GetNextPosition() const;
120

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

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

135 136 137
protected:
	/**
	 * Called by all editing methods after a modification.
138 139
	 * Updates the queue version and invokes
	 * QueueListener::OnQueueModified().
140 141
	 */
	void OnModified();
Warren Dukes's avatar
Warren Dukes committed
142

143 144 145 146 147 148 149 150 151 152 153
	/**
	 * 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();

154 155 156 157 158 159 160 161 162
	/**
	 * 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()
	 */
163
	void UpdateQueuedSong(PlayerControl &pc, const DetachedSong *prev);
164

165 166 167 168 169
	/**
	 * Queue a song, addressed by its order number.
	 */
	void QueueSongOrder(PlayerControl &pc, unsigned order);

170 171
	/**
	 * Called when the player thread has started playing the
172 173
	 * "queued" song, i.e. it has switched from one song to the
	 * next automatically.
174 175 176
	 */
	void QueuedSongStarted(PlayerControl &pc);

177 178 179 180 181 182
	/**
	 * The player has stopped for some reason.  Check the error,
	 * and decide whether to re-start playback.
	 */
	void ResumePlayback(PlayerControl &pc);

183
public:
184 185 186
	void BeginBulk();
	void CommitBulk(PlayerControl &pc);

187
	void Clear(PlayerControl &pc);
188

189 190 191 192 193
	/**
	 * 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.
	 */
194
	void TagModified(DetachedSong &&song);
Warren Dukes's avatar
Warren Dukes committed
195

196
#ifdef ENABLE_DATABASE
197 198 199
	/**
	 * The database has been modified.  Pull all updates.
	 */
200
	void DatabaseModified(const Database &db);
201
#endif
202

203
	/**
204 205 206
	 * Throws PlaylistError if the queue would be too large.
	 *
	 * @return the new song id
207
	 */
208
	unsigned AppendSong(PlayerControl &pc, DetachedSong &&song);
209 210 211 212 213 214 215 216

	/**
	 * @return the new song id or 0 on error
	 */
	unsigned AppendURI(PlayerControl &pc,
			   const SongLoader &loader,
			   const char *uri_utf8,
			   Error &error);
Warren Dukes's avatar
Warren Dukes committed
217

218
protected:
219
	void DeleteInternal(PlayerControl &pc,
220
			    unsigned song, const DetachedSong **queued_p);
Warren Dukes's avatar
Warren Dukes committed
221

222
public:
223
	void DeletePosition(PlayerControl &pc, unsigned position);
Warren Dukes's avatar
Warren Dukes committed
224

225 226
	void DeleteOrder(PlayerControl &pc, unsigned order) {
		DeletePosition(pc, queue.OrderToPosition(order));
227
	}
Warren Dukes's avatar
Warren Dukes committed
228

229
	void DeleteId(PlayerControl &pc, unsigned id);
230 231 232 233 234 235 236

	/**
	 * 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
	 */
237
	void DeleteRange(PlayerControl &pc, unsigned start, unsigned end);
Warren Dukes's avatar
Warren Dukes committed
238

239
	void DeleteSong(PlayerControl &pc, const char *uri);
Warren Dukes's avatar
Warren Dukes committed
240

241
	void Shuffle(PlayerControl &pc, unsigned start, unsigned end);
242

243 244
	void MoveRange(PlayerControl &pc, unsigned start,
		       unsigned end, int to);
Warren Dukes's avatar
Warren Dukes committed
245

246
	void MoveId(PlayerControl &pc, unsigned id, int to);
247

248
	void SwapPositions(PlayerControl &pc, unsigned song1, unsigned song2);
249

250
	void SwapIds(PlayerControl &pc, unsigned id1, unsigned id2);
251

252 253 254
	void SetPriorityRange(PlayerControl &pc,
			      unsigned start_position, unsigned end_position,
			      uint8_t priority);
Warren Dukes's avatar
Warren Dukes committed
255

256 257
	void SetPriorityId(PlayerControl &pc,
			   unsigned song_id, uint8_t priority);
Warren Dukes's avatar
Warren Dukes committed
258

259
	/**
260
	 * Sets the start_time and end_time attributes on the song
261 262
	 * with the specified id.
	 */
263 264
	void SetSongIdRange(PlayerControl &pc, unsigned id,
			    SongTime start, SongTime end);
265

266 267
	void AddSongIdTag(unsigned id, TagType tag_type, const char *value);
	void ClearSongIdTag(unsigned id, TagType tag_type);
268

269
	void Stop(PlayerControl &pc);
Warren Dukes's avatar
Warren Dukes committed
270

271
	bool PlayPosition(PlayerControl &pc, int position, Error &error);
Warren Dukes's avatar
Warren Dukes committed
272

273
	bool PlayOrder(PlayerControl &pc, int order, Error &error);
274

275
	bool PlayId(PlayerControl &pc, int id, Error &error);
276

277
	bool PlayNext(PlayerControl &pc, Error &error);
278

279
	bool PlayPrevious(PlayerControl &pc, Error &error);
280

281 282 283 284
	bool SeekSongOrder(PlayerControl &pc,
			   unsigned song_order,
			   SongTime seek_time,
			   Error &error);
285

286 287 288 289
	bool SeekSongPosition(PlayerControl &pc,
			      unsigned sonag_position,
			      SongTime seek_time,
			      Error &error);
290

291 292 293
	bool SeekSongId(PlayerControl &pc,
			unsigned song_id, SongTime seek_time,
			Error &error);
294

295 296 297 298
	/**
	 * Seek within the current song.  Fails if MPD is not currently
	 * playing.
	 *
Max Kellermann's avatar
Max Kellermann committed
299
	 * @param seek_time the time
300 301 302
	 * @param relative if true, then the specified time is relative to the
	 * current position
	 */
303 304 305
	bool SeekCurrent(PlayerControl &pc,
			 SignedSongTime seek_time, bool relative,
			 Error &error);
Warren Dukes's avatar
Warren Dukes committed
306

307 308 309
	bool GetRepeat() const {
		return queue.repeat;
	}
310

311
	void SetRepeat(PlayerControl &pc, bool new_value);
312

313 314 315
	bool GetRandom() const {
		return queue.random;
	}
Warren Dukes's avatar
Warren Dukes committed
316

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

319 320 321
	bool GetSingle() const {
		return queue.single;
	}
Warren Dukes's avatar
Warren Dukes committed
322

323
	void SetSingle(PlayerControl &pc, bool new_value);
324

325 326 327 328 329 330 331
	bool GetConsume() const {
		return queue.consume;
	}

	void SetConsume(bool new_value);
};

Warren Dukes's avatar
Warren Dukes committed
332
#endif