MultipleOutputs.cxx 9.29 KB
Newer Older
1
/*
Max Kellermann's avatar
Max Kellermann committed
2
 * Copyright (C) 2003-2015 The Music Player Daemon Project
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
 * http://www.musicpd.org
 *
 * 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.
 *
 * 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.
 */

#include "config.h"
#include "MultipleOutputs.hxx"
22
#include "player/Control.hxx"
23 24
#include "Internal.hxx"
#include "Domain.hxx"
25 26 27 28 29
#include "MusicBuffer.hxx"
#include "MusicPipe.hxx"
#include "MusicChunk.hxx"
#include "system/FatalError.hxx"
#include "util/Error.hxx"
30
#include "config/Block.hxx"
31 32 33 34 35 36 37
#include "config/ConfigGlobal.hxx"
#include "config/ConfigOption.hxx"
#include "notify.hxx"

#include <assert.h>
#include <string.h>

38 39
MultipleOutputs::MultipleOutputs(MixerListener &_mixer_listener)
	:mixer_listener(_mixer_listener),
40
	 input_audio_format(AudioFormat::Undefined()),
41
	 buffer(nullptr), pipe(nullptr),
42
	 elapsed_time(SignedSongTime::Negative())
43 44 45 46 47 48
{
}

MultipleOutputs::~MultipleOutputs()
{
	for (auto i : outputs) {
49 50
		i->LockDisableWait();
		i->Finish();
51 52 53
	}
}

54
static AudioOutput *
55
LoadOutput(EventLoop &event_loop, MixerListener &mixer_listener,
56
	   PlayerControl &pc, const ConfigBlock &block)
57 58
{
	Error error;
59
	AudioOutput *output = audio_output_new(event_loop, block,
60 61
					       mixer_listener,
					       pc, error);
62
	if (output == nullptr) {
63
		if (block.line > 0)
64
			FormatFatalError("line %i: %s",
65
					 block.line,
66 67 68 69 70 71 72 73 74
					 error.GetMessage());
		else
			FatalError(error);
	}

	return output;
}

void
75
MultipleOutputs::Configure(EventLoop &event_loop, PlayerControl &pc)
76
{
77
	for (const auto *param = config_get_block(ConfigBlockOption::AUDIO_OUTPUT);
78
	     param != nullptr; param = param->next) {
79 80
		auto output = LoadOutput(event_loop, mixer_listener,
					 pc, *param);
81 82 83 84 85 86 87 88 89
		if (FindByName(output->name) != nullptr)
			FormatFatalError("output devices with identical "
					 "names: %s", output->name);

		outputs.push_back(output);
	}

	if (outputs.empty()) {
		/* auto-detect device */
90
		const ConfigBlock empty;
91 92
		auto output = LoadOutput(event_loop, mixer_listener,
					 pc, empty);
93 94 95 96
		outputs.push_back(output);
	}
}

97
AudioOutput *
98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118
MultipleOutputs::FindByName(const char *name) const
{
	for (auto i : outputs)
		if (strcmp(i->name, name) == 0)
			return i;

	return nullptr;
}

void
MultipleOutputs::EnableDisable()
{
	for (auto ao : outputs) {
		bool enabled;

		ao->mutex.lock();
		enabled = ao->really_enabled;
		ao->mutex.unlock();

		if (ao->enabled != enabled) {
			if (ao->enabled)
119
				ao->LockEnableWait();
120
			else
121
				ao->LockDisableWait();
122 123 124 125 126 127 128 129 130
		}
	}
}

bool
MultipleOutputs::AllFinished() const
{
	for (auto ao : outputs) {
		const ScopeLock protect(ao->mutex);
131
		if (ao->IsOpen() && !ao->IsCommandFinished())
132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148
			return false;
	}

	return true;
}

void
MultipleOutputs::WaitAll()
{
	while (!AllFinished())
		audio_output_client_notify.Wait();
}

void
MultipleOutputs::AllowPlay()
{
	for (auto ao : outputs)
149
		ao->LockAllowPlay();
150 151 152
}

static void
153
audio_output_reset_reopen(AudioOutput *ao)
154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175
{
	const ScopeLock protect(ao->mutex);

	ao->fail_timer.Reset();
}

void
MultipleOutputs::ResetReopen()
{
	for (auto ao : outputs)
		audio_output_reset_reopen(ao);
}

bool
MultipleOutputs::Update()
{
	bool ret = false;

	if (!input_audio_format.IsDefined())
		return false;

	for (auto ao : outputs)
176
		ret = ao->LockUpdate(input_audio_format, *pipe)
177 178 179 180 181 182 183 184 185
			|| ret;

	return ret;
}

void
MultipleOutputs::SetReplayGainMode(ReplayGainMode mode)
{
	for (auto ao : outputs)
186
		ao->SetReplayGainMode(mode);
187 188 189
}

bool
190
MultipleOutputs::Play(MusicChunk *chunk, Error &error)
191 192 193 194 195 196 197 198 199 200 201 202 203 204 205
{
	assert(buffer != nullptr);
	assert(pipe != nullptr);
	assert(chunk != nullptr);
	assert(chunk->CheckFormat(input_audio_format));

	if (!Update()) {
		/* TODO: obtain real error */
		error.Set(output_domain, "Failed to open audio output");
		return false;
	}

	pipe->Push(chunk);

	for (auto ao : outputs)
206
		ao->LockPlay();
207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265

	return true;
}

bool
MultipleOutputs::Open(const AudioFormat audio_format,
		      MusicBuffer &_buffer,
		      Error &error)
{
	bool ret = false, enabled = false;

	assert(buffer == nullptr || buffer == &_buffer);
	assert((pipe == nullptr) == (buffer == nullptr));

	buffer = &_buffer;

	/* the audio format must be the same as existing chunks in the
	   pipe */
	assert(pipe == nullptr || pipe->CheckFormat(audio_format));

	if (pipe == nullptr)
		pipe = new MusicPipe();
	else
		/* if the pipe hasn't been cleared, the the audio
		   format must not have changed */
		assert(pipe->IsEmpty() || audio_format == input_audio_format);

	input_audio_format = audio_format;

	ResetReopen();
	EnableDisable();
	Update();

	for (auto ao : outputs) {
		if (ao->enabled)
			enabled = true;

		if (ao->open)
			ret = true;
	}

	if (!enabled)
		error.Set(output_domain, "All audio outputs are disabled");
	else if (!ret)
		/* TODO: obtain real error */
		error.Set(output_domain, "Failed to open audio output");

	if (!ret)
		/* close all devices if there was an error */
		Close();

	return ret;
}

/**
 * Has the specified audio output already consumed this chunk?
 */
gcc_pure
static bool
266
chunk_is_consumed_in(const AudioOutput *ao,
267
		     gcc_unused const MusicPipe *pipe,
268
		     const MusicChunk *chunk)
269 270 271 272
{
	if (!ao->open)
		return true;

273
	if (ao->current_chunk == nullptr)
274 275
		return false;

276 277
	assert(chunk == ao->current_chunk ||
	       pipe->Contains(ao->current_chunk));
278

279
	if (chunk != ao->current_chunk) {
280 281 282 283
		assert(chunk->next != nullptr);
		return true;
	}

284
	return ao->current_chunk_finished && chunk->next == nullptr;
285 286 287
}

bool
288
MultipleOutputs::IsChunkConsumed(const MusicChunk *chunk) const
289 290 291 292 293 294 295 296 297 298 299
{
	for (auto ao : outputs) {
		const ScopeLock protect(ao->mutex);
		if (!chunk_is_consumed_in(ao, pipe, chunk))
			return false;
	}

	return true;
}

inline void
300
MultipleOutputs::ClearTailChunk(gcc_unused const MusicChunk *chunk,
301 302 303 304 305 306
				bool *locked)
{
	assert(chunk->next == nullptr);
	assert(pipe->Contains(chunk));

	for (unsigned i = 0, n = outputs.size(); i != n; ++i) {
307
		AudioOutput *ao = outputs[i];
308 309 310 311 312 313 314 315 316 317 318

		/* this mutex will be unlocked by the caller when it's
		   ready */
		ao->mutex.lock();
		locked[i] = ao->open;

		if (!locked[i]) {
			ao->mutex.unlock();
			continue;
		}

319 320 321
		assert(ao->current_chunk == chunk);
		assert(ao->current_chunk_finished);
		ao->current_chunk = nullptr;
322 323 324 325 326 327
	}
}

unsigned
MultipleOutputs::Check()
{
328
	const MusicChunk *chunk;
329
	bool is_tail;
330
	MusicChunk *shifted;
331 332 333 334 335 336 337 338 339 340 341 342 343
	bool locked[outputs.size()];

	assert(buffer != nullptr);
	assert(pipe != nullptr);

	while ((chunk = pipe->Peek()) != nullptr) {
		assert(!pipe->IsEmpty());

		if (!IsChunkConsumed(chunk))
			/* at least one output is not finished playing
			   this chunk */
			return pipe->GetSize();

344
		if (chunk->length > 0 && !chunk->time.IsNegative())
345 346
			/* only update elapsed_time if the chunk
			   provides a defined value */
347
			elapsed_time = chunk->time;
348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394

		is_tail = chunk->next == nullptr;
		if (is_tail)
			/* this is the tail of the pipe - clear the
			   chunk reference in all outputs */
			ClearTailChunk(chunk, locked);

		/* remove the chunk from the pipe */
		shifted = pipe->Shift();
		assert(shifted == chunk);

		if (is_tail)
			/* unlock all audio outputs which were locked
			   by clear_tail_chunk() */
			for (unsigned i = 0, n = outputs.size(); i != n; ++i)
				if (locked[i])
					outputs[i]->mutex.unlock();

		/* return the chunk to the buffer */
		buffer->Return(shifted);
	}

	return 0;
}

bool
MultipleOutputs::Wait(PlayerControl &pc, unsigned threshold)
{
	pc.Lock();

	if (Check() < threshold) {
		pc.Unlock();
		return true;
	}

	pc.Wait();
	pc.Unlock();

	return Check() < threshold;
}

void
MultipleOutputs::Pause()
{
	Update();

	for (auto ao : outputs)
395
		ao->LockPauseAsync();
396 397 398 399 400 401 402 403

	WaitAll();
}

void
MultipleOutputs::Drain()
{
	for (auto ao : outputs)
404
		ao->LockDrainAsync();
405 406 407 408 409 410 411 412 413 414

	WaitAll();
}

void
MultipleOutputs::Cancel()
{
	/* send the cancel() command to all audio outputs */

	for (auto ao : outputs)
415
		ao->LockCancelAsync();
416 417 418 419 420 421 422 423 424 425 426 427 428 429 430

	WaitAll();

	/* clear the music pipe and return all chunks to the buffer */

	if (pipe != nullptr)
		pipe->Clear(*buffer);

	/* the audio outputs are now waiting for a signal, to
	   synchronize the cleared music pipe */

	AllowPlay();

	/* invalidate elapsed_time */

431
	elapsed_time = SignedSongTime::Negative();
432 433 434 435 436 437
}

void
MultipleOutputs::Close()
{
	for (auto ao : outputs)
438
		ao->LockCloseWait();
439 440 441 442 443 444 445 446 447 448 449 450 451

	if (pipe != nullptr) {
		assert(buffer != nullptr);

		pipe->Clear(*buffer);
		delete pipe;
		pipe = nullptr;
	}

	buffer = nullptr;

	input_audio_format.Clear();

452
	elapsed_time = SignedSongTime::Negative();
453 454 455 456 457 458
}

void
MultipleOutputs::Release()
{
	for (auto ao : outputs)
459
		ao->LockRelease();
460 461 462 463 464 465 466 467 468 469 470 471 472

	if (pipe != nullptr) {
		assert(buffer != nullptr);

		pipe->Clear(*buffer);
		delete pipe;
		pipe = nullptr;
	}

	buffer = nullptr;

	input_audio_format.Clear();

473
	elapsed_time = SignedSongTime::Negative();
474 475 476 477 478 479 480
}

void
MultipleOutputs::SongBorder()
{
	/* clear the elapsed_time pointer at the beginning of a new
	   song */
481
	elapsed_time = SignedSongTime::zero();
482
}