Control.hxx 9.42 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_PLAYER_CONTROL_HXX
#define MPD_PLAYER_CONTROL_HXX
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
#include "Chrono.hxx"
30 31

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

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

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

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

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

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

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

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

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

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

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

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

96
struct PlayerControl {
97 98
	PlayerListener &listener;

99 100
	MultipleOutputs &outputs;

101
	const unsigned buffer_chunks;
102

103
	const unsigned buffered_before_play;
104

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

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

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

120 121 122 123 124 125 126
	/**
	 * 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;

127 128
	PlayerCommand command;
	PlayerState state;
129

130
	PlayerError error_type;
131

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

140
	/**
141 142 143
	 * 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).
144 145
	 * This shall be used by PlayerListener::OnPlayerTagModified()
	 * to update the current #DetachedSong in the queue.
146 147 148 149
	 *
	 * Protected by #mutex.  Set by the PlayerThread and consumed
	 * by the main thread.
	 */
150
	DetachedSong *tagged_song;
151

152
	uint16_t bit_rate;
153
	AudioFormat audio_format;
154
	SignedSongTime total_time;
155
	SongTime elapsed_time;
156 157 158 159 160 161 162

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

165
	SongTime seek_time;
166 167 168

	CrossFadeSettings cross_fade;

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

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

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

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

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

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

208 209 210 211 212
	/**
	 * Signals the object.  The object is temporarily locked by
	 * this function.
	 */
	void LockSignal() {
213
		const ScopeLock protect(mutex);
214 215
		Signal();
	}
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
	void LockCommandFinished() {
266
		const ScopeLock protect(mutex);
267 268 269
		CommandFinished();
	}

270 271 272 273 274 275 276 277
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() {
278
		while (command != PlayerCommand::NONE)
279 280 281 282 283 284 285 286 287 288
			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.
	 */
289 290
	void SynchronousCommand(PlayerCommand cmd) {
		assert(command == PlayerCommand::NONE);
291 292 293 294 295 296 297 298 299 300 301 302 303

		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.
	 */
304
	void LockSynchronousCommand(PlayerCommand cmd) {
305
		const ScopeLock protect(mutex);
306 307 308 309
		SynchronousCommand(cmd);
	}

public:
310 311 312 313
	/**
	 * @param song the song to be queued; the given instance will
	 * be owned and freed by the player
	 */
314
	void Play(DetachedSong *song);
315

316
	/**
317
	 * see PlayerCommand::CANCEL
318
	 */
319
	void LockCancel();
Warren Dukes's avatar
Warren Dukes committed
320

321
	void LockSetPause(bool pause_flag);
Warren Dukes's avatar
Warren Dukes committed
322

323 324 325
private:
	void PauseLocked();

326 327 328 329 330
	void ClearError() {
		error_type = PlayerError::NONE;
		error.Clear();
	}

331
public:
332
	void LockPause();
Warren Dukes's avatar
Warren Dukes committed
333

334 335 336
	/**
	 * Set the player's #border_pause flag.
	 */
337
	void LockSetBorderPause(bool border_pause);
338

339
	void Kill();
Warren Dukes's avatar
Warren Dukes committed
340

341
	gcc_pure
342
	player_status LockGetStatus();
Warren Dukes's avatar
Warren Dukes committed
343

344
	PlayerState GetState() const {
345 346
		return state;
	}
Warren Dukes's avatar
Warren Dukes committed
347

348 349 350 351 352
	/**
	 * Set the error.  Discards any previous error condition.
	 *
	 * Caller must lock the object.
	 *
353
	 * @param type the error type; must not be #PlayerError::NONE
354
	 * @param error detailed error information; must be defined.
355
	 */
356
	void SetError(PlayerError type, Error &&error);
357

358 359 360 361 362 363 364 365 366 367 368 369 370
	/**
	 * 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;
	}
371

372
	/**
373
	 * Like GetError(), but locks and unlocks the object.
374
	 */
375 376
	gcc_pure
	Error LockGetError() const {
377 378
		const ScopeLock protect(mutex);
		return GetError();
379 380
	}

381
	void LockClearError();
Warren Dukes's avatar
Warren Dukes committed
382

383
	PlayerError GetErrorType() const {
384 385 386
		return error_type;
	}

387 388
	/**
	 * Set the #tagged_song attribute to a newly allocated copy of
389
	 * the given #DetachedSong.  Locks and unlocks the object.
390
	 */
391
	void LockSetTaggedSong(const DetachedSong &song);
392 393 394 395 396 397 398 399

	void ClearTaggedSong();

	/**
	 * Read and clear the #tagged_song attribute.
	 *
	 * Caller must lock the object.
	 */
400 401
	DetachedSong *ReadTaggedSong() {
		DetachedSong *result = tagged_song;
402 403 404 405 406 407 408
		tagged_song = nullptr;
		return result;
	}

	/**
	 * Like ReadTaggedSong(), but locks and unlocks the object.
	 */
409
	DetachedSong *LockReadTaggedSong() {
410 411
		const ScopeLock protect(mutex);
		return ReadTaggedSong();
412 413
	}

414
	void LockStop();
415

416
	void LockUpdateAudio();
417

418
private:
419
	void EnqueueSongLocked(DetachedSong *song) {
420 421 422 423
		assert(song != nullptr);
		assert(next_song == nullptr);

		next_song = song;
424
		seek_time = SongTime::zero();
425
		SynchronousCommand(PlayerCommand::QUEUE);
426 427
	}

428
	bool SeekLocked(DetachedSong *song, SongTime t, Error &error_r);
429

430
public:
431 432 433 434
	/**
	 * @param song the song to be queued; the given instance will be owned
	 * and freed by the player
	 */
435
	void LockEnqueueSong(DetachedSong *song);
436 437 438 439 440 441 442 443 444

	/**
	 * 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)
	 */
445
	bool LockSeek(DetachedSong *song, SongTime t, Error &error_r);
446 447 448 449

	void SetCrossFade(float cross_fade_seconds);

	float GetCrossFade() const {
450
		return cross_fade.duration;
451 452 453 454 455
	}

	void SetMixRampDb(float mixramp_db);

	float GetMixRampDb() const {
456
		return cross_fade.mixramp_db;
457 458 459 460 461
	}

	void SetMixRampDelay(float mixramp_delay_seconds);

	float GetMixRampDelay() const {
462
		return cross_fade.mixramp_delay;
463 464 465 466 467 468
	}

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

Warren Dukes's avatar
Warren Dukes committed
470
#endif