mpd/src/decoder/DecoderThread.cxx

492 lines
11 KiB
C++
Raw Normal View History

/*
2014-01-13 22:30:36 +01:00
* Copyright (C) 2003-2014 The Music Player Daemon Project
* 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 "DecoderThread.hxx"
2013-01-04 08:41:16 +01:00
#include "DecoderControl.hxx"
#include "DecoderInternal.hxx"
2013-07-28 13:18:48 +02:00
#include "DecoderError.hxx"
#include "DecoderPlugin.hxx"
#include "DetachedSong.hxx"
#include "system/FatalError.hxx"
#include "MusicPipe.hxx"
#include "fs/Traits.hxx"
#include "fs/AllocatedPath.hxx"
2013-07-28 13:18:48 +02:00
#include "DecoderAPI.hxx"
2014-01-24 16:18:21 +01:00
#include "input/InputStream.hxx"
2013-01-30 17:18:48 +01:00
#include "DecoderList.hxx"
2013-04-08 23:30:21 +02:00
#include "util/UriUtil.hxx"
#include "util/Error.hxx"
#include "util/Domain.hxx"
#include "thread/Name.hxx"
#include "tag/ApeReplayGain.hxx"
#include "Log.hxx"
#include <functional>
static constexpr Domain decoder_thread_domain("decoder_thread");
/**
* Marks the current decoder command as "finished" and notifies the
* player thread.
*
* @param dc the #DecoderControl object; must be locked
*/
static void
decoder_command_finished_locked(DecoderControl &dc)
{
2013-10-19 18:48:38 +02:00
assert(dc.command != DecoderCommand::NONE);
2013-10-19 18:48:38 +02:00
dc.command = DecoderCommand::NONE;
2013-10-19 18:48:38 +02:00
dc.client_cond.signal();
}
/**
* Opens the input stream with input_stream::Open(), and waits until
* the stream gets ready. If a decoder STOP command is received
* during that, it cancels the operation (but does not close the
* stream).
*
* Unlock the decoder before calling this function.
*
* @return an input_stream on success or if #DecoderCommand::STOP is
2013-10-19 18:19:03 +02:00
* received, nullptr on error
*/
static InputStream *
decoder_input_stream_open(DecoderControl &dc, const char *uri)
{
Error error;
InputStream *is = InputStream::Open(uri, dc.mutex, dc.cond, error);
2013-10-19 18:19:03 +02:00
if (is == nullptr) {
if (error.IsDefined())
LogError(error);
2013-10-19 18:19:03 +02:00
return nullptr;
}
/* wait for the input stream to become ready; its metadata
will be available then */
2013-10-19 18:48:38 +02:00
dc.Lock();
is->Update();
2014-05-11 15:34:48 +02:00
while (!is->IsReady() &&
2013-10-19 18:48:38 +02:00
dc.command != DecoderCommand::STOP) {
dc.Wait();
is->Update();
}
if (!is->Check(error)) {
2013-10-19 18:48:38 +02:00
dc.Unlock();
LogError(error);
2013-10-19 18:19:03 +02:00
return nullptr;
}
2013-10-19 18:48:38 +02:00
dc.Unlock();
return is;
}
static bool
decoder_stream_decode(const DecoderPlugin &plugin,
Decoder &decoder,
InputStream &input_stream)
{
2013-10-19 18:48:38 +02:00
assert(plugin.stream_decode != nullptr);
assert(decoder.stream_tag == nullptr);
assert(decoder.decoder_tag == nullptr);
2014-05-11 15:34:48 +02:00
assert(input_stream.IsReady());
assert(decoder.dc.state == DecoderState::START);
2013-10-19 18:48:38 +02:00
FormatDebug(decoder_thread_domain, "probing plugin %s", plugin.name);
if (decoder.dc.command == DecoderCommand::STOP)
return true;
/* rewind the stream, so each plugin gets a fresh start */
input_stream.Rewind(IgnoreError());
decoder.dc.Unlock();
FormatThreadName("decoder:%s", plugin.name);
plugin.StreamDecode(decoder, input_stream);
SetThreadName("decoder");
decoder.dc.Lock();
assert(decoder.dc.state == DecoderState::START ||
decoder.dc.state == DecoderState::DECODE);
return decoder.dc.state != DecoderState::START;
}
static bool
decoder_file_decode(const DecoderPlugin &plugin,
Decoder &decoder, Path path)
{
2013-10-19 18:48:38 +02:00
assert(plugin.file_decode != nullptr);
assert(decoder.stream_tag == nullptr);
assert(decoder.decoder_tag == nullptr);
assert(!path.IsNull());
assert(path.IsAbsolute());
assert(decoder.dc.state == DecoderState::START);
2013-10-19 18:48:38 +02:00
FormatDebug(decoder_thread_domain, "probing plugin %s", plugin.name);
if (decoder.dc.command == DecoderCommand::STOP)
return true;
decoder.dc.Unlock();
FormatThreadName("decoder:%s", plugin.name);
plugin.FileDecode(decoder, path);
SetThreadName("decoder");
decoder.dc.Lock();
assert(decoder.dc.state == DecoderState::START ||
decoder.dc.state == DecoderState::DECODE);
return decoder.dc.state != DecoderState::START;
}
gcc_pure
static bool
decoder_check_plugin_mime(const DecoderPlugin &plugin, const InputStream &is)
{
assert(plugin.stream_decode != nullptr);
2014-05-11 15:34:48 +02:00
const char *mime_type = is.GetMimeType();
return mime_type != nullptr && plugin.SupportsMimeType(mime_type);
}
gcc_pure
static bool
decoder_check_plugin_suffix(const DecoderPlugin &plugin, const char *suffix)
{
assert(plugin.stream_decode != nullptr);
return suffix != nullptr && plugin.SupportsSuffix(suffix);
}
gcc_pure
static bool
decoder_check_plugin(const DecoderPlugin &plugin, const InputStream &is,
const char *suffix)
{
return plugin.stream_decode != nullptr &&
(decoder_check_plugin_mime(plugin, is) ||
decoder_check_plugin_suffix(plugin, suffix));
}
static bool
decoder_run_stream_plugin(Decoder &decoder, InputStream &is,
const char *suffix,
const DecoderPlugin &plugin,
bool &tried_r)
{
if (!decoder_check_plugin(plugin, is, suffix))
return false;
tried_r = true;
return decoder_stream_decode(plugin, decoder, is);
}
static bool
decoder_run_stream_locked(Decoder &decoder, InputStream &is,
const char *uri, bool &tried_r)
{
const char *const suffix = uri_get_suffix(uri);
using namespace std::placeholders;
const auto f = std::bind(decoder_run_stream_plugin,
std::ref(decoder), std::ref(is), suffix,
_1, std::ref(tried_r));
return decoder_plugins_try(f);
}
/**
* Try decoding a stream, using the fallback plugin.
*/
static bool
decoder_run_stream_fallback(Decoder &decoder, InputStream &is)
{
const struct DecoderPlugin *plugin;
plugin = decoder_plugin_from_name("mad");
2013-10-19 18:19:03 +02:00
return plugin != nullptr && plugin->stream_decode != nullptr &&
2013-10-19 18:48:38 +02:00
decoder_stream_decode(*plugin, decoder, is);
}
/**
* Try decoding a stream.
*/
static bool
decoder_run_stream(Decoder &decoder, const char *uri)
{
DecoderControl &dc = decoder.dc;
InputStream *input_stream;
bool success;
2013-10-19 18:48:38 +02:00
dc.Unlock();
input_stream = decoder_input_stream_open(dc, uri);
2013-10-19 18:19:03 +02:00
if (input_stream == nullptr) {
2013-10-19 18:48:38 +02:00
dc.Lock();
return false;
}
2013-10-19 18:48:38 +02:00
dc.Lock();
bool tried = false;
2013-10-19 18:48:38 +02:00
success = dc.command == DecoderCommand::STOP ||
decoder_run_stream_locked(decoder, *input_stream, uri,
tried) ||
/* fallback to mp3: this is needed for bastard streams
that don't have a suffix or set the mimeType */
(!tried &&
decoder_run_stream_fallback(decoder, *input_stream));
2013-10-19 18:48:38 +02:00
dc.Unlock();
delete input_stream;
2013-10-19 18:48:38 +02:00
dc.Lock();
return success;
}
/**
* Attempt to load replay gain data, and pass it to
* decoder_replay_gain().
*/
static void
decoder_load_replay_gain(Decoder &decoder, Path path_fs)
{
ReplayGainInfo info;
if (replay_gain_ape_read(path_fs, info))
decoder_replay_gain(decoder, &info);
}
static bool
TryDecoderFile(Decoder &decoder, Path path_fs, const char *suffix,
const DecoderPlugin &plugin)
{
if (!plugin.SupportsSuffix(suffix))
return false;
DecoderControl &dc = decoder.dc;
if (plugin.file_decode != nullptr) {
dc.Lock();
if (decoder_file_decode(plugin, decoder, path_fs))
return true;
dc.Unlock();
} else if (plugin.stream_decode != nullptr) {
InputStream *input_stream =
decoder_input_stream_open(dc, path_fs.c_str());
if (input_stream == nullptr)
return false;
dc.Lock();
bool success = decoder_stream_decode(plugin, decoder,
*input_stream);
dc.Unlock();
delete input_stream;
if (success) {
2013-10-19 18:48:38 +02:00
dc.Lock();
return true;
}
}
return false;
}
/**
* Try decoding a file.
*/
static bool
decoder_run_file(Decoder &decoder, const char *uri_utf8, Path path_fs)
{
const char *suffix = uri_get_suffix(uri_utf8);
if (suffix == nullptr)
return false;
DecoderControl &dc = decoder.dc;
dc.Unlock();
decoder_load_replay_gain(decoder, path_fs);
if (decoder_plugins_try([&decoder, path_fs,
suffix](const DecoderPlugin &plugin){
return TryDecoderFile(decoder,
path_fs, suffix,
plugin);
}))
return true;
2013-10-19 18:48:38 +02:00
dc.Lock();
return false;
}
static void
decoder_run_song(DecoderControl &dc,
const DetachedSong &song, const char *uri, Path path_fs)
{
Decoder decoder(dc, dc.start_time.IsPositive(),
new Tag(song.GetTag()));
int ret;
2013-10-19 18:48:38 +02:00
dc.state = DecoderState::START;
decoder_command_finished_locked(dc);
ret = !path_fs.IsNull()
? decoder_run_file(decoder, uri, path_fs)
: decoder_run_stream(decoder, uri);
2013-10-19 18:48:38 +02:00
dc.Unlock();
/* flush the last chunk */
2013-10-19 18:19:03 +02:00
if (decoder.chunk != nullptr)
decoder.FlushChunk();
2013-10-19 18:48:38 +02:00
dc.Lock();
if (decoder.error.IsDefined()) {
/* copy the Error from sruct Decoder to
DecoderControl */
dc.state = DecoderState::ERROR;
dc.error = std::move(decoder.error);
} else if (ret)
2013-10-19 18:48:38 +02:00
dc.state = DecoderState::STOP;
2012-08-08 21:54:54 +02:00
else {
2013-10-19 18:48:38 +02:00
dc.state = DecoderState::ERROR;
2012-08-08 21:54:54 +02:00
const char *error_uri = song.GetURI();
const std::string allocated = uri_remove_auth(error_uri);
if (!allocated.empty())
error_uri = allocated.c_str();
2012-08-08 21:54:54 +02:00
2013-10-19 18:48:38 +02:00
dc.error.Format(decoder_domain,
"Failed to decode %s", error_uri);
2012-08-08 21:54:54 +02:00
}
2013-10-19 18:48:38 +02:00
dc.client_cond.signal();
}
static void
decoder_run(DecoderControl &dc)
{
2013-10-19 18:48:38 +02:00
dc.ClearError();
2012-08-08 21:54:54 +02:00
2014-01-08 00:35:28 +01:00
assert(dc.song != nullptr);
const DetachedSong &song = *dc.song;
const char *const uri_utf8 = song.GetRealURI();
Path path_fs = Path::Null();
AllocatedPath path_buffer = AllocatedPath::Null();
if (PathTraitsUTF8::IsAbsolute(uri_utf8)) {
path_buffer = AllocatedPath::FromUTF8(uri_utf8, dc.error);
if (path_buffer.IsNull()) {
dc.state = DecoderState::ERROR;
decoder_command_finished_locked(dc);
return;
}
path_fs = path_buffer;
}
decoder_run_song(dc, song, uri_utf8, path_fs);
}
static void
decoder_task(void *arg)
{
DecoderControl &dc = *(DecoderControl *)arg;
SetThreadName("decoder");
2013-10-19 18:48:38 +02:00
dc.Lock();
do {
2013-10-19 18:48:38 +02:00
assert(dc.state == DecoderState::STOP ||
dc.state == DecoderState::ERROR);
2013-10-19 18:48:38 +02:00
switch (dc.command) {
case DecoderCommand::START:
dc.CycleMixRamp();
2013-10-19 18:48:38 +02:00
dc.replay_gain_prev_db = dc.replay_gain_db;
dc.replay_gain_db = 0;
decoder_run(dc);
break;
case DecoderCommand::SEEK:
/* this seek was too late, and the decoder had
already finished; start a new decoder */
/* we need to clear the pipe here; usually the
PlayerThread is responsible, but it is not
aware that the decoder has finished */
dc.pipe->Clear(*dc.buffer);
decoder_run(dc);
break;
case DecoderCommand::STOP:
decoder_command_finished_locked(dc);
break;
case DecoderCommand::NONE:
2013-10-19 18:48:38 +02:00
dc.Wait();
break;
}
2013-10-19 18:48:38 +02:00
} while (dc.command != DecoderCommand::NONE || !dc.quit);
2013-10-19 18:48:38 +02:00
dc.Unlock();
Initial cut of fork() => pthreads() for decoder and player I initially started to do a heavy rewrite that changed the way processes communicated, but that was too much to do at once. So this change only focuses on replacing the player and decode processes with threads and using condition variables instead of polling in loops; so the changeset itself is quiet small. * The shared output buffer variables will still need locking to guard against race conditions. So in this effect, we're probably just as buggy as before. The reduced context-switching overhead of using threads instead of processes may even make bugs show up more or less often... * Basic functionality appears to be working for playing local (and NFS) audio, including: play, pause, stop, seek, previous, next, and main playlist editing * I haven't tested HTTP streams yet, they should work. * I've only tested ALSA and Icecast. ALSA works fine, Icecast metadata seems to get screwy at times and breaks song advancement in the playlist at times. * state file loading works, too (after some last-minute hacks with non-blocking wakeup functions) * The non-blocking (*_nb) variants of the task management functions are probably overused. They're more lenient and easier to use because much of our code is still based on our previous polling-based system. * It currently segfaults on exit. I haven't paid much attention to the exit/signal-handling routines other than ensuring it compiles. At least the state file seems to work. We don't do any cleanups of the threads on exit, yet. * Update is still done in a child process and not in a thread. To do this in a thread, we'll need to ensure it does proper locking and communication with the main thread; but should require less memory in the end because we'll be updating the database "in-place" rather than updating a copy and then bulk-loading when done. * We're more sensitive to bugs in 3rd party libraries now. My plan is to eventually use a master process which forks() and restarts the child when it dies: locking and communication with the main thread; but should require less memory in the end because we'll be updating the database "in-place" rather than updating a copy and then bulk-loading when done. * We're more sensitive to bugs in 3rd party libraries now. My plan is to eventually use a master process which forks() and restarts the child when it dies: master - just does waitpid() + fork() in a loop \- main thread \- decoder thread \- player thread At the beginning of every song, the main thread will set a dirty flag and update the state file. This way, if we encounter a song that triggers a segfault killing the main thread, the master will start the replacement main on the next song. * The main thread still wakes up every second on select() to check for signals; which affects power management. [merged r7138 from branches/ew] git-svn-id: https://svn.musicpd.org/mpd/trunk@7240 09075e82-0dd4-0310-85a5-a0d7c8717e4f
2008-04-12 06:08:00 +02:00
}
void
decoder_thread_start(DecoderControl &dc)
Initial cut of fork() => pthreads() for decoder and player I initially started to do a heavy rewrite that changed the way processes communicated, but that was too much to do at once. So this change only focuses on replacing the player and decode processes with threads and using condition variables instead of polling in loops; so the changeset itself is quiet small. * The shared output buffer variables will still need locking to guard against race conditions. So in this effect, we're probably just as buggy as before. The reduced context-switching overhead of using threads instead of processes may even make bugs show up more or less often... * Basic functionality appears to be working for playing local (and NFS) audio, including: play, pause, stop, seek, previous, next, and main playlist editing * I haven't tested HTTP streams yet, they should work. * I've only tested ALSA and Icecast. ALSA works fine, Icecast metadata seems to get screwy at times and breaks song advancement in the playlist at times. * state file loading works, too (after some last-minute hacks with non-blocking wakeup functions) * The non-blocking (*_nb) variants of the task management functions are probably overused. They're more lenient and easier to use because much of our code is still based on our previous polling-based system. * It currently segfaults on exit. I haven't paid much attention to the exit/signal-handling routines other than ensuring it compiles. At least the state file seems to work. We don't do any cleanups of the threads on exit, yet. * Update is still done in a child process and not in a thread. To do this in a thread, we'll need to ensure it does proper locking and communication with the main thread; but should require less memory in the end because we'll be updating the database "in-place" rather than updating a copy and then bulk-loading when done. * We're more sensitive to bugs in 3rd party libraries now. My plan is to eventually use a master process which forks() and restarts the child when it dies: locking and communication with the main thread; but should require less memory in the end because we'll be updating the database "in-place" rather than updating a copy and then bulk-loading when done. * We're more sensitive to bugs in 3rd party libraries now. My plan is to eventually use a master process which forks() and restarts the child when it dies: master - just does waitpid() + fork() in a loop \- main thread \- decoder thread \- player thread At the beginning of every song, the main thread will set a dirty flag and update the state file. This way, if we encounter a song that triggers a segfault killing the main thread, the master will start the replacement main on the next song. * The main thread still wakes up every second on select() to check for signals; which affects power management. [merged r7138 from branches/ew] git-svn-id: https://svn.musicpd.org/mpd/trunk@7240 09075e82-0dd4-0310-85a5-a0d7c8717e4f
2008-04-12 06:08:00 +02:00
{
2013-10-19 18:48:38 +02:00
assert(!dc.thread.IsDefined());
2013-10-19 18:48:38 +02:00
dc.quit = false;
Error error;
2013-10-19 18:48:38 +02:00
if (!dc.thread.Start(decoder_task, &dc, error))
FatalError(error);
}