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

		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.
	 */
300
	void LockSynchronousCommand(PlayerCommand cmd) {
301 302 303 304 305 306
		Lock();
		SynchronousCommand(cmd);
		Unlock();
	}

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

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

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

320 321 322 323
private:
	void PauseLocked();

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

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

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

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

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

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

350 351 352 353 354 355 356 357 358 359 360 361 362
	/**
	 * 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;
	}
363

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

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

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

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

	void ClearTaggedSong();

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

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

410 411 412 413
	void Stop();

	void UpdateAudio();

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

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

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

	/**
	 * 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)
	 */
438
	bool Seek(DetachedSong *song, SongTime t);
439 440 441 442

	void SetCrossFade(float cross_fade_seconds);

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

	void SetMixRampDb(float mixramp_db);

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

	void SetMixRampDelay(float mixramp_delay_seconds);

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

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

Warren Dukes's avatar
Warren Dukes committed
463
#endif