Playlist.hxx 7.34 KB
Newer Older
1
/*
Max Kellermann's avatar
Max Kellermann committed
2
 * Copyright (C) 2003-2014 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"
24
#include "PlaylistError.hxx"
Warren Dukes's avatar
Warren Dukes committed
25

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

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

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

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

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

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

73 74 75 76 77
	/**
	 * 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.
	 */
78
	int current;
79 80 81

	/**
	 * The "next" song to be played, when the current one
82 83 84 85
	 * 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.
86
	 */
87 88
	int queued;

89
	playlist(unsigned max_length)
90 91 92
		:queue(max_length), playing(false),
		 bulk_edit(false),
		 current(-1), queued(-1) {
93
	}
Warren Dukes's avatar
Warren Dukes committed
94

95 96
	~playlist() {
	}
97

98 99 100
	uint32_t GetVersion() const {
		return queue.version;
	}
101

102 103 104
	unsigned GetLength() const {
		return queue.GetLength();
	}
105

106 107 108
	unsigned PositionToId(unsigned position) const {
		return queue.PositionToId(position);
	}
109

110 111
	gcc_pure
	int GetCurrentPosition() const;
Warren Dukes's avatar
Warren Dukes committed
112

113 114
	gcc_pure
	int GetNextPosition() const;
115

116 117 118 119 120
	/**
	 * Returns the song object which is currently queued.  Returns
	 * none if there is none (yet?) or if MPD isn't playing.
	 */
	gcc_pure
121
	const DetachedSong *GetQueuedSong() const;
Warren Dukes's avatar
Warren Dukes committed
122

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

130 131 132 133 134 135
protected:
	/**
	 * Called by all editing methods after a modification.
	 * Updates the queue version and emits #IDLE_PLAYLIST.
	 */
	void OnModified();
Warren Dukes's avatar
Warren Dukes committed
136

137 138 139 140 141 142 143 144 145
	/**
	 * 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()
	 */
146
	void UpdateQueuedSong(PlayerControl &pc, const DetachedSong *prev);
147

148
public:
149 150 151
	void BeginBulk();
	void CommitBulk(PlayerControl &pc);

152
	void Clear(PlayerControl &pc);
153

154 155 156 157 158
	/**
	 * 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.
	 */
159
	void TagModified(DetachedSong &&song);
Warren Dukes's avatar
Warren Dukes committed
160

161
#ifdef ENABLE_DATABASE
162 163 164
	/**
	 * The database has been modified.  Pull all updates.
	 */
165
	void DatabaseModified(const Database &db);
166
#endif
167

168 169 170 171 172 173 174 175 176 177 178 179 180 181
	/**
	 * @return the new song id or 0 on error
	 */
	unsigned AppendSong(PlayerControl &pc,
			    DetachedSong &&song,
			    Error &error);

	/**
	 * @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
182

183
protected:
184
	void DeleteInternal(PlayerControl &pc,
185
			    unsigned song, const DetachedSong **queued_p);
Warren Dukes's avatar
Warren Dukes committed
186

187
public:
188
	PlaylistResult DeletePosition(PlayerControl &pc,
189
				      unsigned position);
Warren Dukes's avatar
Warren Dukes committed
190

191
	PlaylistResult DeleteOrder(PlayerControl &pc,
192
				   unsigned order) {
193 194
		return DeletePosition(pc, queue.OrderToPosition(order));
	}
Warren Dukes's avatar
Warren Dukes committed
195

196
	PlaylistResult DeleteId(PlayerControl &pc, unsigned id);
197 198 199 200 201 202 203

	/**
	 * 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
	 */
204
	PlaylistResult DeleteRange(PlayerControl &pc,
205
				   unsigned start, unsigned end);
Warren Dukes's avatar
Warren Dukes committed
206

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

209
	void Shuffle(PlayerControl &pc, unsigned start, unsigned end);
210

211
	PlaylistResult MoveRange(PlayerControl &pc,
212
				 unsigned start, unsigned end, int to);
Warren Dukes's avatar
Warren Dukes committed
213

214
	PlaylistResult MoveId(PlayerControl &pc, unsigned id, int to);
215

216
	PlaylistResult SwapPositions(PlayerControl &pc,
217
				     unsigned song1, unsigned song2);
218

219
	PlaylistResult SwapIds(PlayerControl &pc,
220
			       unsigned id1, unsigned id2);
221

222
	PlaylistResult SetPriorityRange(PlayerControl &pc,
223 224 225
					unsigned start_position,
					unsigned end_position,
					uint8_t priority);
Warren Dukes's avatar
Warren Dukes committed
226

227
	PlaylistResult SetPriorityId(PlayerControl &pc,
228
				     unsigned song_id, uint8_t priority);
Warren Dukes's avatar
Warren Dukes committed
229

230
	/**
231
	 * Sets the start_time and end_time attributes on the song
232 233 234
	 * with the specified id.
	 */
	bool SetSongIdRange(PlayerControl &pc, unsigned id,
235
			    SongTime start, SongTime end,
236 237
			    Error &error);

238 239 240 241
	bool AddSongIdTag(unsigned id, TagType tag_type, const char *value,
			  Error &error);
	bool ClearSongIdTag(unsigned id, TagType tag_type, Error &error);

242
	void Stop(PlayerControl &pc);
Warren Dukes's avatar
Warren Dukes committed
243

244
	PlaylistResult PlayPosition(PlayerControl &pc, int position);
Warren Dukes's avatar
Warren Dukes committed
245

246
	void PlayOrder(PlayerControl &pc, int order);
247

248
	PlaylistResult PlayId(PlayerControl &pc, int id);
249

250
	void PlayNext(PlayerControl &pc);
251

252
	void PlayPrevious(PlayerControl &pc);
253

254 255
	PlaylistResult SeekSongOrder(PlayerControl &pc,
				     unsigned song_order,
Max Kellermann's avatar
Max Kellermann committed
256
				     SongTime seek_time);
257

258
	PlaylistResult SeekSongPosition(PlayerControl &pc,
259
					unsigned song_position,
260
					SongTime seek_time);
261

262
	PlaylistResult SeekSongId(PlayerControl &pc,
263
				  unsigned song_id, SongTime seek_time);
264

265 266 267 268 269 270 271 272
	/**
	 * Seek within the current song.  Fails if MPD is not currently
	 * playing.
	 *
	 * @param time the time in seconds
	 * @param relative if true, then the specified time is relative to the
	 * current position
	 */
273
	PlaylistResult SeekCurrent(PlayerControl &pc,
274
				   SignedSongTime seek_time, bool relative);
Warren Dukes's avatar
Warren Dukes committed
275

276 277 278
	bool GetRepeat() const {
		return queue.repeat;
	}
279

280
	void SetRepeat(PlayerControl &pc, bool new_value);
281

282 283 284
	bool GetRandom() const {
		return queue.random;
	}
Warren Dukes's avatar
Warren Dukes committed
285

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

288 289 290
	bool GetSingle() const {
		return queue.single;
	}
Warren Dukes's avatar
Warren Dukes committed
291

292
	void SetSingle(PlayerControl &pc, bool new_value);
293

294 295 296 297 298 299 300
	bool GetConsume() const {
		return queue.consume;
	}

	void SetConsume(bool new_value);
};

Warren Dukes's avatar
Warren Dukes committed
301
#endif