PlayerControl.hxx 9.06 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_PLAYER_H
#define MPD_PLAYER_H
Warren Dukes's avatar
Warren Dukes committed
22

23
#include "AudioFormat.hxx"
24 25
#include "thread/Mutex.hxx"
#include "thread/Cond.hxx"
26
#include "thread/Thread.hxx"
27
#include "util/Error.hxx"
28
#include "CrossFade.hxx"
29 30

#include <stdint.h>
Warren Dukes's avatar
Warren Dukes committed
31

32
class PlayerListener;
33
class MultipleOutputs;
34
class DetachedSong;
35

36 37 38 39
enum class PlayerState : uint8_t {
	STOP,
	PAUSE,
	PLAY
40
};
Warren Dukes's avatar
Warren Dukes committed
41

42 43 44 45 46 47 48
enum class PlayerCommand : uint8_t {
	NONE,
	EXIT,
	STOP,
	PAUSE,
	SEEK,
	CLOSE_AUDIO,
49

50
	/**
51
	 * At least one AudioOutput.enabled flag has been modified;
52 53
	 * commit those changes to the output threads.
	 */
54
	UPDATE_AUDIO,
55

56
	/** PlayerControl.next_song has been updated */
57
	QUEUE,
58 59

	/**
60
	 * cancel pre-decoding PlayerControl.next_song; if the player
61 62 63
	 * has already started playing this song, it will completely
	 * stop
	 */
64
	CANCEL,
65 66

	/**
67
	 * Refresh status information in the #PlayerControl struct,
68 69
	 * e.g. elapsed_time.
	 */
70
	REFRESH,
71 72
};

73 74
enum class PlayerError : uint8_t {
	NONE,
75 76 77 78

	/**
	 * The decoder has failed to decode the song.
	 */
79
	DECODER,
80 81 82 83

	/**
	 * The audio output has failed.
	 */
84
	OUTPUT,
85
};
Warren Dukes's avatar
Warren Dukes committed
86

87
struct player_status {
88
	PlayerState state;
89
	uint16_t bit_rate;
90
	AudioFormat audio_format;
91 92 93 94
	float total_time;
	float elapsed_time;
};

95
struct PlayerControl {
96 97
	PlayerListener &listener;

98 99
	MultipleOutputs &outputs;

100 101
	unsigned buffer_chunks;

102 103
	unsigned int buffered_before_play;

104 105 106 107
	/**
	 * The handle of the player thread.
	 */
	Thread thread;
108

109
	/**
110
	 * This lock protects #command, #state, #error, #tagged_song.
111
	 */
112
	mutable Mutex mutex;
113 114 115 116

	/**
	 * Trigger this object after you have modified #command.
	 */
117
	Cond cond;
118

119 120 121 122 123 124 125
	/**
	 * This object gets signalled when the player thread has
	 * finished the #command.  It wakes up the client that waits
	 * (i.e. the main thread).
	 */
	Cond client_cond;

126 127
	PlayerCommand command;
	PlayerState state;
128

129
	PlayerError error_type;
130

131 132 133
	/**
	 * The error that occurred in the player thread.  This
	 * attribute is only valid if #error is not
134 135
	 * #PlayerError::NONE.  The object must be freed when this
	 * object transitions back to #PlayerError::NONE.
136
	 */
137
	Error error;
138

139
	/**
140 141 142
	 * A copy of the current #DetachedSong after its tags have
	 * been updated by the decoder (for example, a radio stream
	 * that has sent a new tag after switching to the next song).
143 144
	 * This shall be used by PlayerListener::OnPlayerTagModified()
	 * to update the current #DetachedSong in the queue.
145 146 147 148
	 *
	 * Protected by #mutex.  Set by the PlayerThread and consumed
	 * by the main thread.
	 */
149
	DetachedSong *tagged_song;
150

151
	uint16_t bit_rate;
152
	AudioFormat audio_format;
153 154
	float total_time;
	float elapsed_time;
155 156 157 158 159 160 161

	/**
	 * The next queued song.
	 *
	 * This is a duplicate, and must be freed when this attribute
	 * is cleared.
	 */
162
	DetachedSong *next_song;
163

164
	double seek_where;
165 166 167

	CrossFadeSettings cross_fade;

168
	double total_play_time;
169 170 171 172 173 174 175 176 177

	/**
	 * If this flag is set, then the player will be auto-paused at
	 * the end of the song, before the next song starts to play.
	 *
	 * This is a copy of the queue's "single" flag most of the
	 * time.
	 */
	bool border_pause;
Warren Dukes's avatar
Warren Dukes committed
178

179 180
	PlayerControl(PlayerListener &_listener,
		      MultipleOutputs &_outputs,
181
		      unsigned buffer_chunks,
182 183
		      unsigned buffered_before_play);
	~PlayerControl();
184

185 186 187 188 189 190
	/**
	 * Locks the object.
	 */
	void Lock() const {
		mutex.lock();
	}
191

192 193 194 195 196 197
	/**
	 * Unlocks the object.
	 */
	void Unlock() const {
		mutex.unlock();
	}
Warren Dukes's avatar
Warren Dukes committed
198

199 200 201 202 203 204 205
	/**
	 * Signals the object.  The object should be locked prior to
	 * calling this function.
	 */
	void Signal() {
		cond.signal();
	}
206

207 208 209 210 211 212 213 214 215
	/**
	 * Signals the object.  The object is temporarily locked by
	 * this function.
	 */
	void LockSignal() {
		Lock();
		Signal();
		Unlock();
	}
216

217 218 219 220 221 222
	/**
	 * Waits for a signal on the object.  This function is only
	 * valid in the player thread.  The object must be locked
	 * prior to calling this function.
	 */
	void Wait() {
223
		assert(thread.IsInside());
224

225 226
		cond.wait(mutex);
	}
Warren Dukes's avatar
Warren Dukes committed
227

228 229 230 231 232 233
	/**
	 * Wake up the client waiting for command completion.
	 *
	 * Caller must lock the object.
	 */
	void ClientSignal() {
234
		assert(thread.IsInside());
235 236 237 238 239 240 241 242 243 244 245

		client_cond.signal();
	}

	/**
	 * The client calls this method to wait for command
	 * completion.
	 *
	 * Caller must lock the object.
	 */
	void ClientWait() {
246
		assert(!thread.IsInside());
247 248 249 250

		client_cond.wait(mutex);
	}

251 252 253 254 255 256 257 258
	/**
	 * A command has been finished.  This method clears the
	 * command and signals the client.
	 *
	 * To be called from the player thread.  Caller must lock the
	 * object.
	 */
	void CommandFinished() {
259
		assert(command != PlayerCommand::NONE);
260

261
		command = PlayerCommand::NONE;
262 263 264
		ClientSignal();
	}

265 266 267 268 269 270 271 272
private:
	/**
	 * Wait for the command to be finished by the player thread.
	 *
	 * To be called from the main thread.  Caller must lock the
	 * object.
	 */
	void WaitCommandLocked() {
273
		while (command != PlayerCommand::NONE)
274 275 276 277 278 279 280 281 282 283
			ClientWait();
	}

	/**
	 * Send a command to the player thread and synchronously wait
	 * for it to finish.
	 *
	 * To be called from the main thread.  Caller must lock the
	 * object.
	 */
284 285
	void SynchronousCommand(PlayerCommand cmd) {
		assert(command == PlayerCommand::NONE);
286 287 288 289 290 291 292 293 294 295 296 297 298

		command = cmd;
		Signal();
		WaitCommandLocked();
	}

	/**
	 * Send a command to the player thread and synchronously wait
	 * for it to finish.
	 *
	 * To be called from the main thread.  This method locks the
	 * object.
	 */
299
	void LockSynchronousCommand(PlayerCommand cmd) {
300 301 302 303 304 305
		Lock();
		SynchronousCommand(cmd);
		Unlock();
	}

public:
306 307 308 309
	/**
	 * @param song the song to be queued; the given instance will
	 * be owned and freed by the player
	 */
310
	void Play(DetachedSong *song);
311

312
	/**
313
	 * see PlayerCommand::CANCEL
314 315
	 */
	void Cancel();
Warren Dukes's avatar
Warren Dukes committed
316

317
	void SetPause(bool pause_flag);
Warren Dukes's avatar
Warren Dukes committed
318

319 320 321 322
private:
	void PauseLocked();

public:
323
	void Pause();
Warren Dukes's avatar
Warren Dukes committed
324

325 326 327 328
	/**
	 * Set the player's #border_pause flag.
	 */
	void SetBorderPause(bool border_pause);
329

330
	void Kill();
Warren Dukes's avatar
Warren Dukes committed
331

332 333
	gcc_pure
	player_status GetStatus();
Warren Dukes's avatar
Warren Dukes committed
334

335
	PlayerState GetState() const {
336 337
		return state;
	}
Warren Dukes's avatar
Warren Dukes committed
338

339 340 341 342 343
	/**
	 * Set the error.  Discards any previous error condition.
	 *
	 * Caller must lock the object.
	 *
344
	 * @param type the error type; must not be #PlayerError::NONE
345
	 * @param error detailed error information; must be defined.
346
	 */
347
	void SetError(PlayerError type, Error &&error);
348

349 350 351 352 353 354 355 356 357 358 359 360 361
	/**
	 * Checks whether an error has occurred, and if so, returns a
	 * copy of the #Error object.
	 *
	 * Caller must lock the object.
	 */
	gcc_pure
	Error GetError() const {
		Error result;
		if (error_type != PlayerError::NONE)
			result.Set(error);
		return result;
	}
362

363
	/**
364
	 * Like GetError(), but locks and unlocks the object.
365
	 */
366 367 368 369 370 371 372 373 374
	gcc_pure
	Error LockGetError() const {
		Lock();
		Error result = GetError();
		Unlock();
		return result;
	}

	void ClearError();
Warren Dukes's avatar
Warren Dukes committed
375

376
	PlayerError GetErrorType() const {
377 378 379
		return error_type;
	}

380 381
	/**
	 * Set the #tagged_song attribute to a newly allocated copy of
382
	 * the given #DetachedSong.  Locks and unlocks the object.
383
	 */
384
	void LockSetTaggedSong(const DetachedSong &song);
385 386 387 388 389 390 391 392

	void ClearTaggedSong();

	/**
	 * Read and clear the #tagged_song attribute.
	 *
	 * Caller must lock the object.
	 */
393 394
	DetachedSong *ReadTaggedSong() {
		DetachedSong *result = tagged_song;
395 396 397 398 399 400 401
		tagged_song = nullptr;
		return result;
	}

	/**
	 * Like ReadTaggedSong(), but locks and unlocks the object.
	 */
402
	DetachedSong *LockReadTaggedSong() {
403
		Lock();
404
		DetachedSong *result = ReadTaggedSong();
405 406 407 408
		Unlock();
		return result;
	}

409 410 411 412
	void Stop();

	void UpdateAudio();

413
private:
414
	void EnqueueSongLocked(DetachedSong *song) {
415 416 417 418
		assert(song != nullptr);
		assert(next_song == nullptr);

		next_song = song;
419
		SynchronousCommand(PlayerCommand::QUEUE);
420 421 422
	}

public:
423 424 425 426
	/**
	 * @param song the song to be queued; the given instance will be owned
	 * and freed by the player
	 */
427
	void EnqueueSong(DetachedSong *song);
428 429 430 431 432 433 434 435 436

	/**
	 * Makes the player thread seek the specified song to a position.
	 *
	 * @param song the song to be queued; the given instance will be owned
	 * and freed by the player
	 * @return true on success, false on failure (e.g. if MPD isn't
	 * playing currently)
	 */
437
	bool Seek(DetachedSong *song, float seek_time);
438 439 440 441

	void SetCrossFade(float cross_fade_seconds);

	float GetCrossFade() const {
442
		return cross_fade.duration;
443 444 445 446 447
	}

	void SetMixRampDb(float mixramp_db);

	float GetMixRampDb() const {
448
		return cross_fade.mixramp_db;
449 450 451 452 453
	}

	void SetMixRampDelay(float mixramp_delay_seconds);

	float GetMixRampDelay() const {
454
		return cross_fade.mixramp_delay;
455 456 457 458 459 460
	}

	double GetTotalPlayTime() const {
		return total_play_time;
	}
};
461

Warren Dukes's avatar
Warren Dukes committed
462
#endif