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

26
struct PlayerControl;
27
struct Song;
28

29
struct playlist {
30 31 32
	/**
	 * The song queue - it contains the "real" playlist.
	 */
33 34
	struct queue queue;

35 36 37 38 39 40
	/**
	 * This value is true if the player is currently playing (or
	 * should be playing).
	 */
	bool playing;

41 42 43 44 45 46 47 48 49 50 51 52 53 54
	/**
	 * 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;

	/**
	 * 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;

55 56 57 58 59
	/**
	 * 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.
	 */
60
	int current;
61 62 63

	/**
	 * The "next" song to be played, when the current one
64 65 66 67
	 * 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.
68
	 */
69 70
	int queued;

71
	playlist(unsigned max_length)
72
		:queue(max_length), playing(false), current(-1), queued(-1) {
73
	}
Warren Dukes's avatar
Warren Dukes committed
74

75 76
	~playlist() {
	}
77

78 79 80
	uint32_t GetVersion() const {
		return queue.version;
	}
81

82 83 84
	unsigned GetLength() const {
		return queue.GetLength();
	}
85

86 87 88
	unsigned PositionToId(unsigned position) const {
		return queue.PositionToId(position);
	}
89

90 91
	gcc_pure
	int GetCurrentPosition() const;
Warren Dukes's avatar
Warren Dukes committed
92

93 94
	gcc_pure
	int GetNextPosition() const;
95

96 97 98 99 100
	/**
	 * Returns the song object which is currently queued.  Returns
	 * none if there is none (yet?) or if MPD isn't playing.
	 */
	gcc_pure
101
	const Song *GetQueuedSong() const;
Warren Dukes's avatar
Warren Dukes committed
102

103 104 105 106 107
	/**
	 * This is the "PLAYLIST" event handler.  It is invoked by the
	 * player thread whenever it requests a new queued song, or
	 * when it exits.
	 */
108
	void SyncWithPlayer(PlayerControl &pc);
Warren Dukes's avatar
Warren Dukes committed
109

110 111 112 113 114 115
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
116

117 118 119 120 121 122 123 124 125
	/**
	 * 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()
	 */
126
	void UpdateQueuedSong(PlayerControl &pc, const Song *prev);
127

128
public:
129
	void Clear(PlayerControl &pc);
130

131 132 133 134 135 136
	/**
	 * 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.
	 */
	void TagModified(Song &&song);
Warren Dukes's avatar
Warren Dukes committed
137

138 139 140 141
	/**
	 * The database has been modified.  Pull all updates.
	 */
	void DatabaseModified();
142

143
	PlaylistResult AppendSong(PlayerControl &pc,
144 145
				  Song *song,
				  unsigned *added_id=nullptr);
Warren Dukes's avatar
Warren Dukes committed
146

147 148 149 150 151 152
	/**
	 * Appends a local file (outside the music database) to the
	 * playlist.
	 *
	 * Note: the caller is responsible for checking permissions.
	 */
153
	PlaylistResult AppendFile(PlayerControl &pc,
154 155
				  const char *path_utf8,
				  unsigned *added_id=nullptr);
156

157
	PlaylistResult AppendURI(PlayerControl &pc,
158 159
				 const char *uri_utf8,
				 unsigned *added_id=nullptr);
Warren Dukes's avatar
Warren Dukes committed
160

161
protected:
162
	void DeleteInternal(PlayerControl &pc,
163
			    unsigned song, const Song **queued_p);
Warren Dukes's avatar
Warren Dukes committed
164

165
public:
166
	PlaylistResult DeletePosition(PlayerControl &pc,
167
				      unsigned position);
Warren Dukes's avatar
Warren Dukes committed
168

169
	PlaylistResult DeleteOrder(PlayerControl &pc,
170
				   unsigned order) {
171 172
		return DeletePosition(pc, queue.OrderToPosition(order));
	}
Warren Dukes's avatar
Warren Dukes committed
173

174
	PlaylistResult DeleteId(PlayerControl &pc, unsigned id);
175 176 177 178 179 180 181

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

185
	void DeleteSong(PlayerControl &pc, const Song &song);
Warren Dukes's avatar
Warren Dukes committed
186

187
	void Shuffle(PlayerControl &pc, unsigned start, unsigned end);
188

189
	PlaylistResult MoveRange(PlayerControl &pc,
190
				 unsigned start, unsigned end, int to);
Warren Dukes's avatar
Warren Dukes committed
191

192
	PlaylistResult MoveId(PlayerControl &pc, unsigned id, int to);
193

194
	PlaylistResult SwapPositions(PlayerControl &pc,
195
				     unsigned song1, unsigned song2);
196

197
	PlaylistResult SwapIds(PlayerControl &pc,
198
			       unsigned id1, unsigned id2);
199

200
	PlaylistResult SetPriorityRange(PlayerControl &pc,
201 202 203
					unsigned start_position,
					unsigned end_position,
					uint8_t priority);
Warren Dukes's avatar
Warren Dukes committed
204

205
	PlaylistResult SetPriorityId(PlayerControl &pc,
206
				     unsigned song_id, uint8_t priority);
Warren Dukes's avatar
Warren Dukes committed
207

208
	void Stop(PlayerControl &pc);
Warren Dukes's avatar
Warren Dukes committed
209

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

212
	void PlayOrder(PlayerControl &pc, int order);
213

214
	PlaylistResult PlayId(PlayerControl &pc, int id);
215

216
	void PlayNext(PlayerControl &pc);
217

218
	void PlayPrevious(PlayerControl &pc);
219

220
	PlaylistResult SeekSongPosition(PlayerControl &pc,
221 222
					unsigned song_position,
					float seek_time);
223

224
	PlaylistResult SeekSongId(PlayerControl &pc,
225
				  unsigned song_id, float seek_time);
226

227 228 229 230 231 232 233 234
	/**
	 * 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
	 */
235
	PlaylistResult SeekCurrent(PlayerControl &pc,
236
				   float seek_time, bool relative);
Warren Dukes's avatar
Warren Dukes committed
237

238 239 240
	bool GetRepeat() const {
		return queue.repeat;
	}
241

242
	void SetRepeat(PlayerControl &pc, bool new_value);
243

244 245 246
	bool GetRandom() const {
		return queue.random;
	}
Warren Dukes's avatar
Warren Dukes committed
247

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

250 251 252
	bool GetSingle() const {
		return queue.single;
	}
Warren Dukes's avatar
Warren Dukes committed
253

254
	void SetSingle(PlayerControl &pc, bool new_value);
255

256 257 258 259 260 261 262
	bool GetConsume() const {
		return queue.consume;
	}

	void SetConsume(bool new_value);
};

Warren Dukes's avatar
Warren Dukes committed
263
#endif