Control.hxx 13.7 KB
Newer Older
1
/*
Max Kellermann's avatar
Max Kellermann committed
2
 * Copyright 2003-2021 The Music Player Daemon Project
3
 * http://www.musicpd.org
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.
18 19
 */

20 21
#ifndef MPD_OUTPUT_CONTROL_HXX
#define MPD_OUTPUT_CONTROL_HXX
22

23
#include "Source.hxx"
24
#include "pcm/AudioFormat.hxx"
25
#include "thread/Thread.hxx"
26
#include "thread/Mutex.hxx"
27 28
#include "thread/Cond.hxx"
#include "system/PeriodClock.hxx"
29

30
#include <cstdint>
31
#include <exception>
32
#include <map>
33
#include <memory>
34
#include <string>
35 36

enum class ReplayGainMode : uint8_t;
37
struct FilteredAudioOutput;
38
struct MusicChunk;
39
struct ConfigBlock;
40 41 42 43 44 45 46 47
class MusicPipe;
class Mixer;
class AudioOutputClient;

/**
 * Controller for an #AudioOutput and its output thread.
 */
class AudioOutputControl {
48
	std::unique_ptr<FilteredAudioOutput> output;
49

50 51 52 53 54 55 56
	/**
	 * A copy of FilteredAudioOutput::name which we need just in
	 * case this is a "dummy" output (output==nullptr) because
	 * this output has been moved to another partitioncommands.
	 */
	const std::string name;

57 58 59 60 61 62
	/**
	 * The PlayerControl object which "owns" this output.  This
	 * object is needed to signal command completion.
	 */
	AudioOutputClient &client;

63 64 65 66 67
	/**
	 * Source of audio data.
	 */
	AudioOutputSource source;

68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
	/**
	 * The error that occurred in the output thread.  It is
	 * cleared whenever the output is opened successfully.
	 *
	 * Protected by #mutex.
	 */
	std::exception_ptr last_error;

	/**
	 * If not nullptr, the device has failed, and this timer is used
	 * to estimate how long it should stay disabled (unless
	 * explicitly reopened with "play").
	 */
	PeriodClock fail_timer;

	/**
	 * The thread handle, or nullptr if the output thread isn't
	 * running.
	 */
	Thread thread;

	/**
	 * This condition object wakes up the output thread after
	 * #command has been set.
	 */
93
	Cond wake_cond;
94

95 96 97 98 99 100
	/**
	 * This condition object signals #command completion to the
	 * client.
	 */
	Cond client_cond;

101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132
	/**
	 * Additional data for #command.  Protected by #mutex.
	 */
	struct Request {
		/**
		 * The #AudioFormat requested by #Command::OPEN.
		 */
		AudioFormat audio_format;

		/**
		 * The #MusicPipe passed to #Command::OPEN.
		 */
		const MusicPipe *pipe;
	} request;

	/**
	 * The next command to be performed by the output thread.
	 */
	enum class Command {
		NONE,
		ENABLE,
		DISABLE,

		/**
		 * Open the output, or reopen it if it is already
		 * open, adjusting for input #AudioFormat changes.
		 */
		OPEN,

		CLOSE,
		PAUSE,

133 134 135 136 137 138
		/**
		 * Close or pause the device, depending on the
		 * #always_on setting.
		 */
		RELEASE,

139 140 141 142 143 144 145 146 147 148
		/**
		 * Drains the internal (hardware) buffers of the device.  This
		 * operation may take a while to complete.
		 */
		DRAIN,

		CANCEL,
		KILL
	} command = Command::NONE;

149 150 151 152 153
	/**
	 * Will this output receive tags from the decoder?  The
	 * default is true, but it may be configured to false to
	 * suppress sending tags to the output.
	 */
154
	const bool tags;
155 156 157 158 159

	/**
	 * Shall this output always play something (i.e. silence),
	 * even when playback is stopped?
	 */
160
	const bool always_on;
161 162 163 164 165 166

	/**
	 * Has the user enabled this device?
	 */
	bool enabled = true;

167 168 169 170 171 172
	/**
	 * Is this device actually enabled, i.e. the "enable" method
	 * has succeeded?
	 */
	bool really_enabled = false;

173 174 175 176 177 178 179 180 181 182
	/**
	 * Is the device (already) open and functional?
	 *
	 * This attribute may only be modified by the output thread.
	 * It is protected with #mutex: write accesses inside the
	 * output thread and read accesses outside of it may only be
	 * performed while the lock is held.
	 */
	bool open = false;

183 184 185 186 187 188 189 190
	/**
	 * Is the device currently playing, i.e. is its buffer
	 * (likely) non-empty?  If not, then it will never be drained.
	 *
	 * This field is only valid while the output is open.
	 */
	bool playing;

191 192 193 194 195 196
	/**
	 * Is the device paused?  i.e. the output thread is in the
	 * ao_pause() loop.
	 */
	bool pause = false;

197 198 199 200 201 202 203 204 205
	/**
	 * When this flag is set, the output thread will not do any
	 * playback.  It will wait until the flag is cleared.
	 *
	 * This is used to synchronize the "clear" operation on the
	 * shared music pipe during the CANCEL command.
	 */
	bool allow_play = true;

206 207 208 209 210 211 212 213 214
	/**
	 * Was an #AudioOutputInterrupted caught?  In this case,
	 * playback is suspended, and the output thread waits for a
	 * command.
	 *
	 * This field is only valid while the output is open.
	 */
	bool caught_interrupted;

215 216 217 218 219 220 221 222 223 224 225 226 227 228 229
	/**
	 * True while the OutputThread is inside ao_play().  This
	 * means the PlayerThread does not need to wake up the
	 * OutputThread when new chunks are added to the MusicPipe,
	 * because the OutputThread is already watching that.
	 */
	bool in_playback_loop = false;

	/**
	 * Has the OutputThread been woken up to play more chunks?
	 * This is set by audio_output_play() and reset by ao_play()
	 * to reduce the number of duplicate wakeups.
	 */
	bool woken_for_play = false;

230 231 232 233 234 235 236
	/**
	 * If this flag is set, then the next WaitForDelay() call is
	 * skipped.  This is used to avoid delays after resuming
	 * playback.
	 */
	bool skip_delay;

237 238 239 240 241 242 243 244 245
	/**
	 * Has Command::KILL already been sent?  This field is only
	 * defined if `thread` is defined.  It shall avoid sending the
	 * command twice.
	 *
	 * Protected by #mutex.
	 */
	bool killed;

246
public:
247 248 249 250
	/**
	 * This mutex protects #open, #fail_timer, #pipe.
	 */
	mutable Mutex mutex;
251

252 253 254
	/**
	 * Throws on error.
	 */
255
	AudioOutputControl(std::unique_ptr<FilteredAudioOutput> _output,
256 257
			   AudioOutputClient &_client,
			   const ConfigBlock &block);
258

259 260 261 262 263
	/**
	 * Move the contents of an existing instance, and convert that
	 * existing instance to a "dummy" output.
	 */
	AudioOutputControl(AudioOutputControl &&src,
264 265
			   AudioOutputClient &_client) noexcept;

266
	~AudioOutputControl() noexcept;
267 268 269 270

	AudioOutputControl(const AudioOutputControl &) = delete;
	AudioOutputControl &operator=(const AudioOutputControl &) = delete;

271
	[[gnu::pure]]
272
	const char *GetName() const noexcept;
273

274
	[[gnu::pure]]
275 276
	const char *GetPluginName() const noexcept;

277
	[[gnu::pure]]
278 279
	const char *GetLogName() const noexcept;

280 281 282
	AudioOutputClient &GetClient() noexcept {
		return client;
	}
283

284
	[[gnu::pure]]
285
	Mixer *GetMixer() const noexcept;
286

287 288 289 290
	bool IsDummy() const noexcept {
		return !output;
	}

291 292 293 294 295 296 297
	/**
	 * Caller must lock the mutex.
	 */
	bool IsReallyEnabled() const noexcept {
		return really_enabled;
	}

298 299 300
	/**
	 * Caller must lock the mutex.
	 */
301
	bool IsEnabled() const noexcept {
302 303
		return enabled;
	}
304 305 306 307

	/**
	 * @return true if the value has been modified
	 */
308
	bool LockSetEnabled(bool new_value) noexcept;
309 310 311 312

	/**
	 * @return the new "enabled" value
	 */
313
	bool LockToggleEnabled() noexcept;
314

315 316 317 318 319 320
	/**
	 * Caller must lock the mutex.
	 */
	bool IsOpen() const noexcept {
		return open;
	}
321

322 323 324
	/**
	 * Caller must lock the mutex.
	 */
325
	bool IsBusy() const noexcept {
326 327 328 329 330 331
		return IsOpen() && !IsCommandFinished();
	}

	/**
	 * Caller must lock the mutex.
	 */
332
	const std::exception_ptr &GetLastError() const noexcept {
333 334 335
		return last_error;
	}

336 337 338 339 340 341 342 343
	/**
	 * Detach and return the #FilteredAudioOutput instance and,
	 * replacing it here with a "dummy" object.
	 */
	std::unique_ptr<FilteredAudioOutput> Steal() noexcept;
	void ReplaceDummy(std::unique_ptr<FilteredAudioOutput> new_output,
			  bool _enabled) noexcept;

344
	void StartThread();
345 346 347 348

	/**
	 * Caller must lock the mutex.
	 */
349
	bool IsCommandFinished() const noexcept {
350 351 352
		return command == Command::NONE;
	}

353
	void CommandFinished() noexcept;
354

355 356 357 358 359
	/**
	 * Waits for command completion.
	 *
	 * Caller must lock the mutex.
	 */
360
	void WaitForCommand(std::unique_lock<Mutex> &lock) noexcept;
361

362
	void LockWaitForCommand() noexcept {
363 364
		std::unique_lock<Mutex> lock(mutex);
		WaitForCommand(lock);
365 366
	}

367 368 369 370 371
	/**
	 * Sends a command, but does not wait for completion.
	 *
	 * Caller must lock the mutex.
	 */
372
	void CommandAsync(Command cmd) noexcept;
373 374

	/**
375
	 * Sends a command to the object and waits for completion.
376 377 378
	 *
	 * Caller must lock the mutex.
	 */
379
	void CommandWait(std::unique_lock<Mutex> &lock, Command cmd) noexcept;
380 381

	/**
382
	 * Lock the object and execute the command synchronously.
383
	 */
384
	void LockCommandWait(Command cmd) noexcept;
385

386
	void BeginDestroy() noexcept;
387

388
	std::map<std::string, std::string> GetAttributes() const noexcept;
389 390
	void SetAttribute(std::string &&name, std::string &&value);

391 392 393 394 395 396 397 398 399 400 401 402
	/**
	 * Enables the device, but don't wait for completion.
	 *
	 * Caller must lock the mutex.
	 */
	void EnableAsync();

	/**
	 * Disables the device, but don't wait for completion.
	 *
	 * Caller must lock the mutex.
	 */
403
	void DisableAsync() noexcept;
404 405 406 407 408 409 410 411

	/**
	 * Attempt to enable or disable the device as specified by the
	 * #enabled attribute; attempt to sync it with #really_enabled
	 * (wrapper for EnableAsync() or DisableAsync()).
	 *
	 * Caller must lock the mutex.
	 */
412
	void EnableDisableAsync();
413 414

	void LockEnableDisableAsync() {
415
		const std::scoped_lock<Mutex> protect(mutex);
416 417 418
		EnableDisableAsync();
	}

419
	void LockPauseAsync() noexcept;
420

421
	void CloseWait(std::unique_lock<Mutex> &lock) noexcept;
422
	void LockCloseWait() noexcept;
423 424 425 426 427

	/**
	 * Closes the audio output, but if the "always_on" flag is set, put it
	 * into pause mode instead.
	 */
428
	void LockRelease() noexcept;
429

430 431 432
	void SetReplayGainMode(ReplayGainMode _mode) noexcept {
		source.SetReplayGainMode(_mode);
	}
433

434
	/**
435 436
	 * Caller must lock the mutex.
	 *
437
	 * Throws on error.
438 439 440
	 */
	void InternalOpen2(AudioFormat in_audio_format);

441 442 443
	/**
	 * Caller must lock the mutex.
	 */
444 445
	bool Open(std::unique_lock<Mutex> &lock,
		  AudioFormat audio_format, const MusicPipe &mp) noexcept;
446

447 448 449 450 451 452 453 454 455
	/**
	 * Opens or closes the device, depending on the "enabled"
	 * flag.
	 *
	 * @param force true to ignore the #fail_timer
	 * @return true if the device is open
	 */
	bool LockUpdate(const AudioFormat audio_format,
			const MusicPipe &mp,
456
			bool force) noexcept;
457

458 459 460 461 462
	/**
	 * Did we already consumed this chunk?
	 *
	 * Caller must lock the mutex.
	 */
463
	[[gnu::pure]]
464 465
	bool IsChunkConsumed(const MusicChunk &chunk) const noexcept;

466
	[[gnu::pure]]
467
	bool LockIsChunkConsumed(const MusicChunk &chunk) const noexcept;
468

469 470 471 472 473 474 475 476 477
	/**
	 * There's only one chunk left in the pipe (#pipe), and all
	 * audio outputs have consumed it already.  Clear the
	 * reference.
	 *
	 * This stalls playback to give the caller a chance to shift
	 * the #MusicPipe without getting disturbed; after this,
	 * LockAllowPlay() must be called to resume playback.
	 */
478
	void ClearTailChunk(const MusicChunk &chunk) noexcept {
479 480 481
		if (!IsOpen())
			return;

482
		source.ClearTailChunk(chunk);
483 484 485 486 487 488 489
		allow_play = false;
	}

	/**
	 * Locking wrapper for ClearTailChunk().
	 */
	void LockClearTailChunk(const MusicChunk &chunk) noexcept {
490
		const std::scoped_lock<Mutex> lock(mutex);
491
		ClearTailChunk(chunk);
492
	}
493

494 495
	void LockPlay() noexcept;
	void LockDrainAsync() noexcept;
496 497 498 499 500 501

	/**
	 * Clear the "allow_play" flag and send the "CANCEL" command
	 * asynchronously.  To finish the operation, the caller has to
	 * call LockAllowPlay().
	 */
502
	void LockCancelAsync() noexcept;
503 504 505 506

	/**
	 * Set the "allow_play" and signal the thread.
	 */
507
	void LockAllowPlay() noexcept;
508 509

private:
510 511 512 513 514 515 516 517 518 519 520
	/**
	 * An error has occurred and this output is defunct.
	 */
	void Failure(std::exception_ptr e) noexcept {
		last_error = e;

		/* don't automatically reopen this device for 10
		   seconds */
		fail_timer.Update();
	}

521
	/**
522 523 524
	 * Runs inside the OutputThread.
	 * Caller must lock the mutex.
	 * Handles exceptions.
525 526 527 528 529
	 *
	 * @return true on success
	 */
	bool InternalEnable() noexcept;

530
	/**
531 532
	 * Runs inside the OutputThread.
	 * Caller must lock the mutex.
533 534 535
	 */
	void InternalDisable() noexcept;

536
	/**
537 538 539
	 * Runs inside the OutputThread.
	 * Caller must lock the mutex.
	 * Handles exceptions.
540 541 542 543
	 */
	void InternalOpen(AudioFormat audio_format,
			  const MusicPipe &pipe) noexcept;

544 545 546 547 548 549
	/**
	 * Runs inside the OutputThread.
	 * Caller must lock the mutex.
	 */
	void InternalCloseOutput(bool drain) noexcept;

550 551
	/**
	 * Runs inside the OutputThread.
552
	 * Caller must lock the mutex.
553 554 555
	 */
	void InternalClose(bool drain) noexcept;

556 557 558 559 560 561 562 563
	/**
	 * An error has occurred, and this output must be closed.
	 */
	void InternalCloseError(std::exception_ptr e) noexcept {
		Failure(e);
		InternalClose(false);
	}

564 565
	/**
	 * Runs inside the OutputThread.
566
	 * Caller must lock the mutex.
567
	 */
568
	void InternalCheckClose(bool drain) noexcept;
569

570 571 572 573 574 575
	/**
	 * Wait until the output's delay reaches zero.
	 *
	 * @return true if playback should be continued, false if a
	 * command was issued
	 */
576
	bool WaitForDelay(std::unique_lock<Mutex> &lock) noexcept;
577

578 579 580
	/**
	 * Caller must lock the mutex.
	 */
581
	bool FillSourceOrClose() noexcept;
582

583 584 585
	/**
	 * Caller must lock the mutex.
	 */
586
	bool PlayChunk(std::unique_lock<Mutex> &lock) noexcept;
587 588 589 590 591 592

	/**
	 * Plays all remaining chunks, until the tail of the pipe has
	 * been reached (and no more chunks are queued), or until a
	 * command is received.
	 *
593 594 595
	 * Runs inside the OutputThread.
	 * Caller must lock the mutex.
	 * Handles exceptions.
596
	 *
597 598 599
	 * @return true if at least one chunk has been available,
	 * false if the tail of the pipe was already reached
	 */
600
	bool InternalPlay(std::unique_lock<Mutex> &lock) noexcept;
601

602
	/**
603 604 605
	 * Runs inside the OutputThread.
	 * Caller must lock the mutex.
	 * Handles exceptions.
606
	 */
607
	void InternalPause(std::unique_lock<Mutex> &lock) noexcept;
608

609 610 611 612 613 614 615
	/**
	 * Runs inside the OutputThread.
	 * Caller must lock the mutex.
	 * Handles exceptions.
	 */
	void InternalDrain() noexcept;

616 617
	void StopThread() noexcept;

618 619 620
	/**
	 * The OutputThread.
	 */
621
	void Task() noexcept;
622
};
623 624

#endif