Control.hxx 13.3 KB
Newer Older
1
/*
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_PLAYER_CONTROL_HXX
#define MPD_PLAYER_CONTROL_HXX
Warren Dukes's avatar
Warren Dukes committed
22

23
#include "output/Client.hxx"
24
#include "AudioFormat.hxx"
25 26
#include "thread/Mutex.hxx"
#include "thread/Cond.hxx"
27
#include "thread/Thread.hxx"
28
#include "CrossFade.hxx"
29
#include "Chrono.hxx"
30 31
#include "ReplayGainConfig.hxx"
#include "ReplayGainMode.hxx"
32
#include "MusicChunkPtr.hxx"
33

34
#include <exception>
35
#include <memory>
36

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

39
struct Tag;
40
class PlayerListener;
41
class PlayerOutputs;
42
class InputCacheManager;
43
class DetachedSong;
44

45 46 47 48
enum class PlayerState : uint8_t {
	STOP,
	PAUSE,
	PLAY
49
};
Warren Dukes's avatar
Warren Dukes committed
50

51 52 53 54 55
enum class PlayerCommand : uint8_t {
	NONE,
	EXIT,
	STOP,
	PAUSE,
56 57 58 59

	/**
	 * Seek to a certain position in the specified song.  This
	 * command can also be used to change the current song or
60 61 62
	 * start playback.  It "finishes" immediately, but
	 * PlayerControl::seeking will be set until seeking really
	 * completes (or fails).
63
	 */
64
	SEEK,
65

66
	CLOSE_AUDIO,
67

68
	/**
69
	 * At least one AudioOutput.enabled flag has been modified;
70 71
	 * commit those changes to the output threads.
	 */
72
	UPDATE_AUDIO,
73

74
	/** PlayerControl.next_song has been updated */
75
	QUEUE,
76 77

	/**
78
	 * cancel pre-decoding PlayerControl.next_song; if the player
79 80 81
	 * has already started playing this song, it will completely
	 * stop
	 */
82
	CANCEL,
83 84

	/**
85
	 * Refresh status information in the #PlayerControl struct,
86 87
	 * e.g. elapsed_time.
	 */
88
	REFRESH,
89 90
};

91 92
enum class PlayerError : uint8_t {
	NONE,
93 94 95 96

	/**
	 * The decoder has failed to decode the song.
	 */
97
	DECODER,
98 99 100 101

	/**
	 * The audio output has failed.
	 */
102
	OUTPUT,
103
};
Warren Dukes's avatar
Warren Dukes committed
104

105
struct PlayerStatus {
106
	PlayerState state;
107
	uint16_t bit_rate;
108
	AudioFormat audio_format;
109
	SignedSongTime total_time;
110
	SongTime elapsed_time;
111 112
};

113 114 115
class PlayerControl final : public AudioOutputClient {
	friend class Player;

116 117
	PlayerListener &listener;

118
	PlayerOutputs &outputs;
119

120 121
	InputCacheManager *const input_cache;

122
	const unsigned buffer_chunks;
123

124 125 126 127 128
	/**
	 * The "audio_output_format" setting.
	 */
	const AudioFormat configured_audio_format;

129 130 131 132
	/**
	 * The handle of the player thread.
	 */
	Thread thread;
133

134
	/**
135
	 * This lock protects #command, #state, #error, #tagged_song.
136
	 */
137
	mutable Mutex mutex;
138 139 140 141

	/**
	 * Trigger this object after you have modified #command.
	 */
142
	Cond cond;
143

144 145 146 147 148 149 150
	/**
	 * 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;

151 152
	/**
	 * The error that occurred in the player thread.  This
153
	 * attribute is only valid if #error_type is not
154 155
	 * #PlayerError::NONE.  The object must be freed when this
	 * object transitions back to #PlayerError::NONE.
156
	 */
157
	std::exception_ptr error;
158

159 160 161 162 163 164 165 166
	/**
	 * The next queued song.
	 *
	 * This is a duplicate, and must be freed when this attribute
	 * is cleared.
	 */
	std::unique_ptr<DetachedSong> next_song;

167
	/**
168 169 170
	 * 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).
171 172
	 * This shall be used by PlayerListener::OnPlayerTagModified()
	 * to update the current #DetachedSong in the queue.
173 174 175 176
	 *
	 * Protected by #mutex.  Set by the PlayerThread and consumed
	 * by the main thread.
	 */
177
	std::unique_ptr<DetachedSong> tagged_song;
178

179 180
	PlayerCommand command = PlayerCommand::NONE;
	PlayerState state = PlayerState::STOP;
181

182
	PlayerError error_type = PlayerError::NONE;
183

184 185
	ReplayGainMode replay_gain_mode = ReplayGainMode::OFF;

186 187 188 189 190
	/**
	 * Is the player currently busy with the SEEK command?
	 */
	bool seeking = false;

191 192 193 194 195 196 197
	/**
	 * 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.
	 */
198
	bool border_pause = false;
Warren Dukes's avatar
Warren Dukes committed
199

200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222
	/**
	 * If this flag is set, then the player thread is currently
	 * occupied and will not be able to respond quickly to
	 * commands (e.g. waiting for the decoder thread to finish
	 * seeking).  This is used to skip #PlayerCommand::REFRESH to
	 * avoid blocking the main thread.
	 */
	bool occupied = false;

	struct ScopeOccupied {
		PlayerControl &pc;

		explicit ScopeOccupied(PlayerControl &_pc) noexcept:pc(_pc) {
			assert(!pc.occupied);
			pc.occupied = true;
		}

		~ScopeOccupied() noexcept {
			assert(pc.occupied);
			pc.occupied = false;
		}
	};

223 224 225 226 227 228 229 230 231 232 233 234
	AudioFormat audio_format;
	uint16_t bit_rate;

	SignedSongTime total_time;
	SongTime elapsed_time;

	SongTime seek_time;

	CrossFadeSettings cross_fade;

	const ReplayGainConfig replay_gain_config;

235
	FloatDuration total_play_time = FloatDuration::zero();
236

237
public:
238
	PlayerControl(PlayerListener &_listener,
239
		      PlayerOutputs &_outputs,
240
		      InputCacheManager *_input_cache,
241
		      unsigned buffer_chunks,
242
		      AudioFormat _configured_audio_format,
243 244
		      const ReplayGainConfig &_replay_gain_config) noexcept;
	~PlayerControl() noexcept;
245

246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351
	void Kill() noexcept;

	/**
	 * Like CheckRethrowError(), but locks and unlocks the object.
	 */
	void LockCheckRethrowError() const {
		const std::lock_guard<Mutex> protect(mutex);
		CheckRethrowError();
	}

	void LockClearError() noexcept;

	PlayerError GetErrorType() const noexcept {
		return error_type;
	}

	void LockUpdateAudio() noexcept;

	/**
	 * Throws on error.
	 *
	 * @param song the song to be queued
	 */
	void Play(std::unique_ptr<DetachedSong> song);

	/**
	 * @param song the song to be queued; the given instance will be owned
	 * and freed by the player
	 */
	void LockEnqueueSong(std::unique_ptr<DetachedSong> song) noexcept;

	/**
	 * Makes the player thread seek the specified song to a position.
	 *
	 * Throws on error.
	 *
	 * @param song the song to be queued; the given instance will be owned
	 * and freed by the player
	 */
	void LockSeek(std::unique_ptr<DetachedSong> song, SongTime t);

	void LockStop() noexcept;

	/**
	 * see PlayerCommand::CANCEL
	 */
	void LockCancel() noexcept;

	void LockSetPause(bool pause_flag) noexcept;

	void LockPause() noexcept;

	/**
	 * Set the player's #border_pause flag.
	 */
	void LockSetBorderPause(bool border_pause) noexcept;
	void SetCrossFade(FloatDuration duration) noexcept;

	auto GetCrossFade() const noexcept {
		return cross_fade.duration;
	}

	void SetMixRampDb(float mixramp_db) noexcept;

	float GetMixRampDb() const noexcept {
		return cross_fade.mixramp_db;
	}

	void SetMixRampDelay(FloatDuration mixramp_delay) noexcept;

	auto GetMixRampDelay() const noexcept {
		return cross_fade.mixramp_delay;
	}

	void LockSetReplayGainMode(ReplayGainMode _mode) noexcept {
		const std::lock_guard<Mutex> protect(mutex);
		replay_gain_mode = _mode;
	}

	/**
	 * Like ReadTaggedSong(), but locks and unlocks the object.
	 */
	std::unique_ptr<DetachedSong> LockReadTaggedSong() noexcept;

	gcc_pure
	PlayerStatus LockGetStatus() noexcept;

	PlayerState GetState() const noexcept {
		return state;
	}

	struct SyncInfo {
		PlayerState state;
		bool has_next_song;
	};

	gcc_pure
	SyncInfo LockGetSyncInfo() const noexcept {
		const std::lock_guard<Mutex> protect(mutex);
		return {state, next_song != nullptr};
	}

	auto GetTotalPlayTime() const noexcept {
		return total_play_time;
	}

352
private:
353 354 355 356
	/**
	 * Signals the object.  The object should be locked prior to
	 * calling this function.
	 */
357
	void Signal() noexcept {
358
		cond.notify_one();
359
	}
360

361 362 363 364
	/**
	 * Signals the object.  The object is temporarily locked by
	 * this function.
	 */
365
	void LockSignal() noexcept {
366
		const std::lock_guard<Mutex> protect(mutex);
367 368
		Signal();
	}
369

370 371 372 373 374
	/**
	 * 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.
	 */
375
	void Wait(std::unique_lock<Mutex> &lock) noexcept {
376
		assert(thread.IsInside());
377

378
		cond.wait(lock);
379
	}
Warren Dukes's avatar
Warren Dukes committed
380

381 382 383 384 385
	/**
	 * Wake up the client waiting for command completion.
	 *
	 * Caller must lock the object.
	 */
386
	void ClientSignal() noexcept {
387
		assert(thread.IsInside());
388

389
		client_cond.notify_one();
390 391 392 393 394 395 396 397
	}

	/**
	 * The client calls this method to wait for command
	 * completion.
	 *
	 * Caller must lock the object.
	 */
398
	void ClientWait(std::unique_lock<Mutex> &lock) noexcept {
399
		assert(!thread.IsInside());
400

401
		client_cond.wait(lock);
402 403
	}

404 405 406 407 408 409 410
	/**
	 * 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.
	 */
411
	void CommandFinished() noexcept {
412
		assert(command != PlayerCommand::NONE);
413

414
		command = PlayerCommand::NONE;
415 416 417
		ClientSignal();
	}

418
	void LockCommandFinished() noexcept {
419
		const std::lock_guard<Mutex> protect(mutex);
420 421 422
		CommandFinished();
	}

423 424 425 426 427 428 429 430 431 432
	/**
	 * Checks if the size of the #MusicPipe is below the #threshold.  If
	 * not, it attempts to synchronize with all output threads, and waits
	 * until another #MusicChunk is finished.
	 *
	 * Caller must lock the mutex.
	 *
	 * @param threshold the maximum number of chunks in the pipe
	 * @return true if there are less than #threshold chunks in the pipe
	 */
433 434
	bool WaitOutputConsumed(std::unique_lock<Mutex> &lock,
				unsigned threshold) noexcept;
435

436
	bool LockWaitOutputConsumed(unsigned threshold) noexcept {
437 438
		std::unique_lock<Mutex> lock(mutex);
		return WaitOutputConsumed(lock, threshold);
439 440
	}

441 442 443 444 445 446
	/**
	 * Wait for the command to be finished by the player thread.
	 *
	 * To be called from the main thread.  Caller must lock the
	 * object.
	 */
447
	void WaitCommandLocked(std::unique_lock<Mutex> &lock) noexcept {
448
		while (command != PlayerCommand::NONE)
449
			ClientWait(lock);
450 451 452 453 454 455 456 457 458
	}

	/**
	 * 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.
	 */
459 460
	void SynchronousCommand(std::unique_lock<Mutex> &lock,
				PlayerCommand cmd) noexcept {
461
		assert(command == PlayerCommand::NONE);
462 463 464

		command = cmd;
		Signal();
465
		WaitCommandLocked(lock);
466 467 468 469 470 471 472 473 474
	}

	/**
	 * 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.
	 */
475
	void LockSynchronousCommand(PlayerCommand cmd) noexcept {
476 477
		std::unique_lock<Mutex> lock(mutex);
		SynchronousCommand(lock, cmd);
478 479
	}

480
	void PauseLocked(std::unique_lock<Mutex> &lock) noexcept;
481

482
	void ClearError() noexcept {
483
		error_type = PlayerError::NONE;
484
		error = std::exception_ptr();
485 486
	}

487
	bool ApplyBorderPause() noexcept {
488 489 490 491 492
		if (border_pause)
			state = PlayerState::PAUSE;
		return border_pause;
	}

493 494 495 496 497
	/**
	 * Set the error.  Discards any previous error condition.
	 *
	 * Caller must lock the object.
	 *
498
	 * @param type the error type; must not be #PlayerError::NONE
499
	 */
500
	void SetError(PlayerError type, std::exception_ptr &&_error) noexcept;
501

502 503 504
	/**
	 * Set the error and set state to PlayerState::PAUSE.
	 */
505
	void SetOutputError(std::exception_ptr &&_error) noexcept {
506 507 508 509 510 511 512
		SetError(PlayerError::OUTPUT, std::move(_error));

		/* pause: the user may resume playback as soon as an
		   audio output becomes available */
		state = PlayerState::PAUSE;
	}

513
	void LockSetOutputError(std::exception_ptr &&_error) noexcept {
514
		const std::lock_guard<Mutex> lock(mutex);
515 516 517
		SetOutputError(std::move(_error));
	}

518
	/**
519 520
	 * Checks whether an error has occurred, and if so, rethrows
	 * it.
521 522 523
	 *
	 * Caller must lock the object.
	 */
524
	void CheckRethrowError() const {
525
		if (error_type != PlayerError::NONE)
526
			std::rethrow_exception(error);
527
	}
528

529 530
	/**
	 * Set the #tagged_song attribute to a newly allocated copy of
531
	 * the given #DetachedSong.  Locks and unlocks the object.
532
	 */
533
	void LockSetTaggedSong(const DetachedSong &song) noexcept;
534

535
	void ClearTaggedSong() noexcept;
536 537 538 539 540 541

	/**
	 * Read and clear the #tagged_song attribute.
	 *
	 * Caller must lock the object.
	 */
542
	std::unique_ptr<DetachedSong> ReadTaggedSong() noexcept;
543

544 545
	void EnqueueSongLocked(std::unique_lock<Mutex> &lock,
			       std::unique_ptr<DetachedSong> song) noexcept;
546

547
	/**
548
	 * Throws on error.
549
	 */
550 551
	void SeekLocked(std::unique_lock<Mutex> &lock,
			std::unique_ptr<DetachedSong> song, SongTime t);
552

553 554 555 556 557 558 559 560 561 562 563
	/**
	 * Caller must lock the object.
	 */
	void CancelPendingSeek() noexcept {
		if (!seeking)
			return;

		seeking = false;
		ClientSignal();
	}

564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579
	void LockUpdateSongTag(DetachedSong &song,
			       const Tag &new_tag) noexcept;

	/**
	 * Plays a #MusicChunk object (after applying software
	 * volume).  If it contains a (stream) tag, copy it to the
	 * current song, so MPD's playlist reflects the new stream
	 * tag.
	 *
	 * Player lock is not held.
	 *
	 * Throws on error.
	 */
	void PlayChunk(DetachedSong &song, MusicChunkPtr chunk,
		       const AudioFormat &format);

580 581 582 583 584 585 586 587
	/* virtual methods from AudioOutputClient */
	void ChunksConsumed() override {
		LockSignal();
	}

	void ApplyEnabled() override {
		LockUpdateAudio();
	}
588

589
	void RunThread() noexcept;
590
};
591

Warren Dukes's avatar
Warren Dukes committed
592
#endif