Control.hxx 9.23 KB
Newer Older
1
/*
Max Kellermann's avatar
Max Kellermann committed
2
 * Copyright (C) 2003-2015 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 213 214 215 216
	/**
	 * Signals the object.  The object is temporarily locked by
	 * this function.
	 */
	void LockSignal() {
		Lock();
		Signal();
		Unlock();
	}
217

218 219 220 221 222 223
	/**
	 * 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() {
224
		assert(thread.IsInside());
225

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

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

		client_cond.signal();
	}

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

		client_cond.wait(mutex);
	}

252 253 254 255 256 257 258 259
	/**
	 * 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() {
260
		assert(command != PlayerCommand::NONE);
261

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

266 267 268 269 270 271
	void LockCommandFinished() {
		Lock();
		CommandFinished();
		Unlock();
	}

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

		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.
	 */
306
	void LockSynchronousCommand(PlayerCommand cmd) {
307 308 309 310 311 312
		Lock();
		SynchronousCommand(cmd);
		Unlock();
	}

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

319
	/**
320
	 * see PlayerCommand::CANCEL
321 322
	 */
	void Cancel();
Warren Dukes's avatar
Warren Dukes committed
323

324
	void SetPause(bool pause_flag);
Warren Dukes's avatar
Warren Dukes committed
325

326 327 328 329
private:
	void PauseLocked();

public:
330
	void Pause();
Warren Dukes's avatar
Warren Dukes committed
331

332 333 334 335
	/**
	 * Set the player's #border_pause flag.
	 */
	void SetBorderPause(bool border_pause);
336

337
	void Kill();
Warren Dukes's avatar
Warren Dukes committed
338

339 340
	gcc_pure
	player_status GetStatus();
Warren Dukes's avatar
Warren Dukes committed
341

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

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

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

370
	/**
371
	 * Like GetError(), but locks and unlocks the object.
372
	 */
373 374 375 376 377 378 379 380 381
	gcc_pure
	Error LockGetError() const {
		Lock();
		Error result = GetError();
		Unlock();
		return result;
	}

	void ClearError();
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
		Lock();
411
		DetachedSong *result = ReadTaggedSong();
412 413 414 415
		Unlock();
		return result;
	}

416 417 418 419
	void Stop();

	void UpdateAudio();

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

		next_song = song;
426
		seek_time = SongTime::zero();
427
		SynchronousCommand(PlayerCommand::QUEUE);
428 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 EnqueueSong(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 Seek(DetachedSong *song, SongTime t);
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