2009-03-13 18:43:16 +01:00
|
|
|
/*
|
2016-02-26 17:54:05 +01:00
|
|
|
* Copyright 2003-2016 The Music Player Daemon Project
|
2009-03-13 18:43:16 +01:00
|
|
|
* http://www.musicpd.org
|
2004-02-24 00:41:20 +01:00
|
|
|
*
|
|
|
|
* 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.
|
2009-03-13 18:43:16 +01:00
|
|
|
*
|
|
|
|
* 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.
|
2004-02-24 00:41:20 +01:00
|
|
|
*/
|
|
|
|
|
2009-11-12 09:12:38 +01:00
|
|
|
#include "config.h"
|
2013-01-02 20:36:28 +01:00
|
|
|
#include "DecoderThread.hxx"
|
2013-01-04 08:41:16 +01:00
|
|
|
#include "DecoderControl.hxx"
|
2016-11-18 12:29:49 +01:00
|
|
|
#include "Bridge.hxx"
|
2013-07-28 13:18:48 +02:00
|
|
|
#include "DecoderError.hxx"
|
|
|
|
#include "DecoderPlugin.hxx"
|
2014-01-07 21:39:47 +01:00
|
|
|
#include "DetachedSong.hxx"
|
2014-09-07 21:31:10 +02:00
|
|
|
#include "MusicPipe.hxx"
|
2013-10-17 23:23:25 +02:00
|
|
|
#include "fs/Traits.hxx"
|
2013-10-17 21:59:35 +02:00
|
|
|
#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"
|
2014-10-02 21:48:52 +02:00
|
|
|
#include "input/LocalOpen.hxx"
|
2013-01-30 17:18:48 +01:00
|
|
|
#include "DecoderList.hxx"
|
2016-11-22 10:15:23 +01:00
|
|
|
#include "system/Error.hxx"
|
2016-06-10 22:24:13 +02:00
|
|
|
#include "util/MimeType.hxx"
|
2013-04-08 23:30:21 +02:00
|
|
|
#include "util/UriUtil.hxx"
|
2016-09-08 17:14:11 +02:00
|
|
|
#include "util/RuntimeError.hxx"
|
2013-09-27 22:31:24 +02:00
|
|
|
#include "util/Domain.hxx"
|
2016-09-08 20:41:44 +02:00
|
|
|
#include "util/ScopeExit.hxx"
|
2014-01-23 10:07:14 +01:00
|
|
|
#include "thread/Name.hxx"
|
2013-09-04 23:46:20 +02:00
|
|
|
#include "tag/ApeReplayGain.hxx"
|
2013-09-27 22:31:24 +02:00
|
|
|
#include "Log.hxx"
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2016-05-13 12:54:41 +02:00
|
|
|
#include <stdexcept>
|
2013-11-09 09:54:12 +01:00
|
|
|
#include <functional>
|
2015-12-31 13:01:03 +01:00
|
|
|
#include <memory>
|
2013-11-09 09:54:12 +01:00
|
|
|
|
2013-09-27 22:31:24 +02:00
|
|
|
static constexpr Domain decoder_thread_domain("decoder_thread");
|
2010-03-21 18:21:47 +01:00
|
|
|
|
2009-11-07 15:35:50 +01:00
|
|
|
/**
|
2015-01-31 22:17:15 +01:00
|
|
|
* Opens the input stream with InputStream::Open(), and waits until
|
2016-09-08 20:50:40 +02:00
|
|
|
* the stream gets ready.
|
2009-11-07 15:35:50 +01:00
|
|
|
*
|
|
|
|
* Unlock the decoder before calling this function.
|
|
|
|
*/
|
2016-02-23 10:58:16 +01:00
|
|
|
static InputStreamPtr
|
2016-09-08 20:48:04 +02:00
|
|
|
decoder_input_stream_open(DecoderControl &dc, const char *uri)
|
2009-11-07 15:35:50 +01:00
|
|
|
{
|
2016-09-09 15:37:06 +02:00
|
|
|
auto is = InputStream::Open(uri, dc.mutex, dc.cond);
|
2009-11-07 15:35:50 +01:00
|
|
|
|
|
|
|
/* wait for the input stream to become ready; its metadata
|
|
|
|
will be available then */
|
|
|
|
|
2017-01-03 07:11:57 +01:00
|
|
|
const std::lock_guard<Mutex> protect(dc.mutex);
|
2011-09-14 21:46:41 +02:00
|
|
|
|
2013-09-05 00:06:31 +02:00
|
|
|
is->Update();
|
2016-04-21 13:14:40 +02:00
|
|
|
while (!is->IsReady()) {
|
|
|
|
if (dc.command == DecoderCommand::STOP)
|
2016-09-08 20:50:40 +02:00
|
|
|
throw StopDecoder();
|
2016-04-21 13:14:40 +02:00
|
|
|
|
2013-10-19 18:48:38 +02:00
|
|
|
dc.Wait();
|
2009-11-07 15:35:50 +01:00
|
|
|
|
2013-09-05 00:06:31 +02:00
|
|
|
is->Update();
|
2009-11-07 15:35:50 +01:00
|
|
|
}
|
|
|
|
|
2016-09-09 18:47:42 +02:00
|
|
|
is->Check();
|
2011-09-14 21:46:41 +02:00
|
|
|
|
2009-12-30 23:27:37 +01:00
|
|
|
return is;
|
2009-11-07 15:35:50 +01:00
|
|
|
}
|
|
|
|
|
2016-02-23 10:58:16 +01:00
|
|
|
static InputStreamPtr
|
2016-09-08 20:48:04 +02:00
|
|
|
decoder_input_stream_open(DecoderControl &dc, Path path)
|
2014-10-02 21:48:52 +02:00
|
|
|
{
|
2016-09-09 15:37:06 +02:00
|
|
|
auto is = OpenLocalInputStream(path, dc.mutex, dc.cond);
|
2014-10-02 21:48:52 +02:00
|
|
|
|
|
|
|
assert(is->IsReady());
|
|
|
|
|
|
|
|
return is;
|
|
|
|
}
|
|
|
|
|
2015-12-31 12:24:57 +01:00
|
|
|
/**
|
|
|
|
* Decode a stream with the given decoder plugin.
|
|
|
|
*
|
|
|
|
* Caller holds DecoderControl::mutex.
|
|
|
|
*/
|
2008-11-10 15:02:38 +01:00
|
|
|
static bool
|
2013-10-21 20:31:34 +02:00
|
|
|
decoder_stream_decode(const DecoderPlugin &plugin,
|
2016-11-18 12:29:49 +01:00
|
|
|
DecoderBridge &bridge,
|
2013-10-23 22:08:59 +02:00
|
|
|
InputStream &input_stream)
|
2008-11-10 15:02:38 +01:00
|
|
|
{
|
2013-10-19 18:48:38 +02:00
|
|
|
assert(plugin.stream_decode != nullptr);
|
2016-11-18 12:29:49 +01:00
|
|
|
assert(bridge.stream_tag == nullptr);
|
|
|
|
assert(bridge.decoder_tag == nullptr);
|
2014-05-11 15:34:48 +02:00
|
|
|
assert(input_stream.IsReady());
|
2016-11-18 12:29:49 +01:00
|
|
|
assert(bridge.dc.state == DecoderState::START);
|
2008-11-10 15:02:38 +01:00
|
|
|
|
2013-10-19 18:48:38 +02:00
|
|
|
FormatDebug(decoder_thread_domain, "probing plugin %s", plugin.name);
|
2012-05-29 22:52:50 +02:00
|
|
|
|
2016-11-18 12:29:49 +01:00
|
|
|
if (bridge.dc.command == DecoderCommand::STOP)
|
2016-09-08 20:50:40 +02:00
|
|
|
throw StopDecoder();
|
2009-11-07 15:37:18 +01:00
|
|
|
|
2008-11-10 15:02:47 +01:00
|
|
|
/* rewind the stream, so each plugin gets a fresh start */
|
2016-09-09 18:47:42 +02:00
|
|
|
try {
|
|
|
|
input_stream.Rewind();
|
|
|
|
} catch (const std::runtime_error &) {
|
|
|
|
}
|
2008-11-10 15:02:47 +01:00
|
|
|
|
2015-12-30 06:16:30 +01:00
|
|
|
{
|
2016-11-18 12:29:49 +01:00
|
|
|
const ScopeUnlock unlock(bridge.dc.mutex);
|
2011-09-14 21:46:41 +02:00
|
|
|
|
2015-12-30 06:16:30 +01:00
|
|
|
FormatThreadName("decoder:%s", plugin.name);
|
2014-01-23 10:07:14 +01:00
|
|
|
|
2016-11-18 12:29:49 +01:00
|
|
|
plugin.StreamDecode(bridge, input_stream);
|
2008-11-10 15:02:38 +01:00
|
|
|
|
2015-12-30 06:16:30 +01:00
|
|
|
SetThreadName("decoder");
|
|
|
|
}
|
2009-08-13 23:33:46 +02:00
|
|
|
|
2016-11-18 12:29:49 +01:00
|
|
|
assert(bridge.dc.state == DecoderState::START ||
|
|
|
|
bridge.dc.state == DecoderState::DECODE);
|
2008-11-10 15:02:38 +01:00
|
|
|
|
2016-11-18 12:29:49 +01:00
|
|
|
return bridge.dc.state != DecoderState::START;
|
2008-11-10 15:02:38 +01:00
|
|
|
}
|
|
|
|
|
2015-12-31 12:24:57 +01:00
|
|
|
/**
|
|
|
|
* Decode a file with the given decoder plugin.
|
|
|
|
*
|
|
|
|
* Caller holds DecoderControl::mutex.
|
|
|
|
*/
|
2008-11-10 15:02:38 +01:00
|
|
|
static bool
|
2013-10-21 20:31:34 +02:00
|
|
|
decoder_file_decode(const DecoderPlugin &plugin,
|
2016-11-18 12:29:49 +01:00
|
|
|
DecoderBridge &bridge, Path path)
|
2008-11-10 15:02:38 +01:00
|
|
|
{
|
2013-10-19 18:48:38 +02:00
|
|
|
assert(plugin.file_decode != nullptr);
|
2016-11-18 12:29:49 +01:00
|
|
|
assert(bridge.stream_tag == nullptr);
|
|
|
|
assert(bridge.decoder_tag == nullptr);
|
2014-02-07 18:52:19 +01:00
|
|
|
assert(!path.IsNull());
|
|
|
|
assert(path.IsAbsolute());
|
2016-11-18 12:29:49 +01:00
|
|
|
assert(bridge.dc.state == DecoderState::START);
|
2008-11-10 15:02:38 +01:00
|
|
|
|
2013-10-19 18:48:38 +02:00
|
|
|
FormatDebug(decoder_thread_domain, "probing plugin %s", plugin.name);
|
2012-05-29 22:52:50 +02:00
|
|
|
|
2016-11-18 12:29:49 +01:00
|
|
|
if (bridge.dc.command == DecoderCommand::STOP)
|
2016-09-08 20:50:40 +02:00
|
|
|
throw StopDecoder();
|
2009-11-07 15:37:18 +01:00
|
|
|
|
2015-12-30 06:16:30 +01:00
|
|
|
{
|
2016-11-18 12:29:49 +01:00
|
|
|
const ScopeUnlock unlock(bridge.dc.mutex);
|
2009-08-13 23:33:46 +02:00
|
|
|
|
2015-12-30 06:16:30 +01:00
|
|
|
FormatThreadName("decoder:%s", plugin.name);
|
2014-01-23 10:07:14 +01:00
|
|
|
|
2016-11-18 12:29:49 +01:00
|
|
|
plugin.FileDecode(bridge, path);
|
2008-11-10 15:02:38 +01:00
|
|
|
|
2015-12-30 06:16:30 +01:00
|
|
|
SetThreadName("decoder");
|
|
|
|
}
|
2009-08-13 23:33:46 +02:00
|
|
|
|
2016-11-18 12:29:49 +01:00
|
|
|
assert(bridge.dc.state == DecoderState::START ||
|
|
|
|
bridge.dc.state == DecoderState::DECODE);
|
2008-11-10 15:02:38 +01:00
|
|
|
|
2016-11-18 12:29:49 +01:00
|
|
|
return bridge.dc.state != DecoderState::START;
|
2008-11-10 15:02:38 +01:00
|
|
|
}
|
|
|
|
|
2013-10-21 22:14:08 +02:00
|
|
|
gcc_pure
|
2009-11-07 14:57:46 +01:00
|
|
|
static bool
|
2013-10-23 22:08:59 +02:00
|
|
|
decoder_check_plugin_mime(const DecoderPlugin &plugin, const InputStream &is)
|
2009-11-07 14:57:46 +01:00
|
|
|
{
|
2013-10-21 22:14:08 +02:00
|
|
|
assert(plugin.stream_decode != nullptr);
|
2010-01-17 16:47:04 +01:00
|
|
|
|
2014-05-11 15:34:48 +02:00
|
|
|
const char *mime_type = is.GetMimeType();
|
2016-06-10 22:24:13 +02:00
|
|
|
return mime_type != nullptr &&
|
|
|
|
plugin.SupportsMimeType(GetMimeTypeBase(mime_type).c_str());
|
2013-10-21 22:14:08 +02:00
|
|
|
}
|
2009-11-07 14:57:46 +01:00
|
|
|
|
2013-10-21 22:14:08 +02:00
|
|
|
gcc_pure
|
|
|
|
static bool
|
|
|
|
decoder_check_plugin_suffix(const DecoderPlugin &plugin, const char *suffix)
|
|
|
|
{
|
|
|
|
assert(plugin.stream_decode != nullptr);
|
2010-01-17 16:47:04 +01:00
|
|
|
|
2013-10-21 22:14:08 +02:00
|
|
|
return suffix != nullptr && plugin.SupportsSuffix(suffix);
|
2009-11-07 14:57:46 +01:00
|
|
|
}
|
|
|
|
|
2013-10-21 22:14:08 +02:00
|
|
|
gcc_pure
|
2009-11-07 14:57:46 +01:00
|
|
|
static bool
|
2013-10-23 22:08:59 +02:00
|
|
|
decoder_check_plugin(const DecoderPlugin &plugin, const InputStream &is,
|
2013-10-21 22:14:08 +02:00
|
|
|
const char *suffix)
|
2009-11-07 14:57:46 +01:00
|
|
|
{
|
2013-10-21 22:14:08 +02:00
|
|
|
return plugin.stream_decode != nullptr &&
|
|
|
|
(decoder_check_plugin_mime(plugin, is) ||
|
|
|
|
decoder_check_plugin_suffix(plugin, suffix));
|
|
|
|
}
|
2009-11-07 14:57:46 +01:00
|
|
|
|
2013-10-21 22:14:08 +02:00
|
|
|
static bool
|
2016-11-18 12:29:49 +01:00
|
|
|
decoder_run_stream_plugin(DecoderBridge &bridge, InputStream &is,
|
2013-10-21 22:14:08 +02:00
|
|
|
const char *suffix,
|
|
|
|
const DecoderPlugin &plugin,
|
|
|
|
bool &tried_r)
|
|
|
|
{
|
|
|
|
if (!decoder_check_plugin(plugin, is, suffix))
|
2009-11-07 14:57:46 +01:00
|
|
|
return false;
|
|
|
|
|
2016-11-18 12:29:49 +01:00
|
|
|
bridge.error = std::exception_ptr();
|
2016-02-26 17:30:24 +01:00
|
|
|
|
2013-10-21 22:14:08 +02:00
|
|
|
tried_r = true;
|
2016-11-18 12:29:49 +01:00
|
|
|
return decoder_stream_decode(plugin, bridge, is);
|
2013-10-21 22:14:08 +02:00
|
|
|
}
|
2009-11-07 14:57:46 +01:00
|
|
|
|
2013-10-21 22:14:08 +02:00
|
|
|
static bool
|
2016-11-18 12:29:49 +01:00
|
|
|
decoder_run_stream_locked(DecoderBridge &bridge, InputStream &is,
|
2013-10-21 22:14:08 +02:00
|
|
|
const char *uri, bool &tried_r)
|
|
|
|
{
|
2014-11-01 13:20:39 +01:00
|
|
|
UriSuffixBuffer suffix_buffer;
|
|
|
|
const char *const suffix = uri_get_suffix(uri, suffix_buffer);
|
2010-01-17 16:47:04 +01:00
|
|
|
|
2013-10-21 22:14:08 +02:00
|
|
|
using namespace std::placeholders;
|
|
|
|
const auto f = std::bind(decoder_run_stream_plugin,
|
2016-11-18 12:29:49 +01:00
|
|
|
std::ref(bridge), std::ref(is), suffix,
|
2013-10-21 22:14:08 +02:00
|
|
|
_1, std::ref(tried_r));
|
|
|
|
return decoder_plugins_try(f);
|
2009-11-07 14:57:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Try decoding a stream, using the fallback plugin.
|
|
|
|
*/
|
|
|
|
static bool
|
2016-11-18 12:29:49 +01:00
|
|
|
decoder_run_stream_fallback(DecoderBridge &bridge, InputStream &is)
|
2009-11-07 14:57:46 +01:00
|
|
|
{
|
2013-10-21 20:31:34 +02:00
|
|
|
const struct DecoderPlugin *plugin;
|
2009-11-07 14:57:46 +01:00
|
|
|
|
2016-03-30 00:58:48 +02:00
|
|
|
#ifdef HAVE_FFMPEG
|
|
|
|
plugin = decoder_plugin_from_name("ffmpeg");
|
|
|
|
#else
|
2009-11-07 14:57:46 +01:00
|
|
|
plugin = decoder_plugin_from_name("mad");
|
2016-03-30 00:58:48 +02:00
|
|
|
#endif
|
2013-10-19 18:19:03 +02:00
|
|
|
return plugin != nullptr && plugin->stream_decode != nullptr &&
|
2016-11-18 12:29:49 +01:00
|
|
|
decoder_stream_decode(*plugin, bridge, is);
|
2009-11-07 14:57:46 +01:00
|
|
|
}
|
|
|
|
|
2016-02-23 10:57:03 +01:00
|
|
|
/**
|
|
|
|
* Attempt to load replay gain data, and pass it to
|
2016-11-18 08:27:30 +01:00
|
|
|
* DecoderClient::SubmitReplayGain().
|
2016-02-23 10:57:03 +01:00
|
|
|
*/
|
|
|
|
static void
|
2016-11-18 08:27:30 +01:00
|
|
|
LoadReplayGain(DecoderClient &client, InputStream &is)
|
2016-02-23 10:57:03 +01:00
|
|
|
{
|
|
|
|
ReplayGainInfo info;
|
|
|
|
if (replay_gain_ape_read(is, info))
|
2016-11-18 08:27:30 +01:00
|
|
|
client.SubmitReplayGain(&info);
|
2016-02-23 10:57:03 +01:00
|
|
|
}
|
|
|
|
|
2016-11-25 13:26:40 +01:00
|
|
|
/**
|
|
|
|
* Call LoadReplayGain() unless ReplayGain is disabled. This saves
|
|
|
|
* the I/O overhead when the user is not interested in the feature.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
MaybeLoadReplayGain(DecoderBridge &bridge, InputStream &is)
|
|
|
|
{
|
|
|
|
{
|
2017-01-03 07:11:57 +01:00
|
|
|
const std::lock_guard<Mutex> protect(bridge.dc.mutex);
|
2016-11-25 13:26:40 +01:00
|
|
|
if (bridge.dc.replay_gain_mode == ReplayGainMode::OFF)
|
|
|
|
/* ReplayGain is disabled */
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
LoadReplayGain(bridge, is);
|
|
|
|
}
|
|
|
|
|
2009-11-07 14:57:46 +01:00
|
|
|
/**
|
|
|
|
* Try decoding a stream.
|
2015-12-31 12:24:57 +01:00
|
|
|
*
|
2015-12-31 12:42:02 +01:00
|
|
|
* DecoderControl::mutex is not locked by caller.
|
2009-11-07 14:57:46 +01:00
|
|
|
*/
|
|
|
|
static bool
|
2016-11-18 12:29:49 +01:00
|
|
|
decoder_run_stream(DecoderBridge &bridge, const char *uri)
|
2009-11-07 14:57:46 +01:00
|
|
|
{
|
2016-11-18 12:29:49 +01:00
|
|
|
DecoderControl &dc = bridge.dc;
|
2009-11-07 15:10:12 +01:00
|
|
|
|
2016-09-08 20:48:04 +02:00
|
|
|
auto input_stream = decoder_input_stream_open(dc, uri);
|
|
|
|
assert(input_stream);
|
2009-11-07 15:10:12 +01:00
|
|
|
|
2016-11-25 13:26:40 +01:00
|
|
|
MaybeLoadReplayGain(bridge, *input_stream);
|
2016-02-23 10:57:03 +01:00
|
|
|
|
2017-01-03 07:11:57 +01:00
|
|
|
const std::lock_guard<Mutex> protect(dc.mutex);
|
2009-11-07 15:10:12 +01:00
|
|
|
|
2013-10-21 22:14:08 +02:00
|
|
|
bool tried = false;
|
2015-12-31 13:01:49 +01:00
|
|
|
return dc.command == DecoderCommand::STOP ||
|
2016-11-18 12:29:49 +01:00
|
|
|
decoder_run_stream_locked(bridge, *input_stream, uri,
|
2013-10-21 22:14:08 +02:00
|
|
|
tried) ||
|
2009-11-07 14:57:46 +01:00
|
|
|
/* fallback to mp3: this is needed for bastard streams
|
|
|
|
that don't have a suffix or set the mimeType */
|
2013-10-21 22:14:08 +02:00
|
|
|
(!tried &&
|
2016-11-18 12:29:49 +01:00
|
|
|
decoder_run_stream_fallback(bridge, *input_stream));
|
2009-11-07 14:57:46 +01:00
|
|
|
}
|
|
|
|
|
2015-12-31 12:24:57 +01:00
|
|
|
/**
|
|
|
|
* Decode a file with the given decoder plugin.
|
|
|
|
*
|
2015-12-31 12:47:56 +01:00
|
|
|
* DecoderControl::mutex is not locked by caller.
|
2015-12-31 12:24:57 +01:00
|
|
|
*/
|
2009-11-07 14:57:46 +01:00
|
|
|
static bool
|
2016-11-18 12:29:49 +01:00
|
|
|
TryDecoderFile(DecoderBridge &bridge, Path path_fs, const char *suffix,
|
2016-02-23 11:07:02 +01:00
|
|
|
InputStream &input_stream,
|
2013-12-29 16:51:18 +01:00
|
|
|
const DecoderPlugin &plugin)
|
2009-11-07 14:57:46 +01:00
|
|
|
{
|
2013-12-29 16:51:18 +01:00
|
|
|
if (!plugin.SupportsSuffix(suffix))
|
|
|
|
return false;
|
|
|
|
|
2016-11-18 12:29:49 +01:00
|
|
|
bridge.error = std::exception_ptr();
|
2016-02-26 17:30:24 +01:00
|
|
|
|
2016-11-18 12:29:49 +01:00
|
|
|
DecoderControl &dc = bridge.dc;
|
2009-11-07 14:57:46 +01:00
|
|
|
|
2013-12-29 16:51:18 +01:00
|
|
|
if (plugin.file_decode != nullptr) {
|
2017-01-03 07:11:57 +01:00
|
|
|
const std::lock_guard<Mutex> protect(dc.mutex);
|
2016-11-18 12:29:49 +01:00
|
|
|
return decoder_file_decode(plugin, bridge, path_fs);
|
2013-12-29 16:51:18 +01:00
|
|
|
} else if (plugin.stream_decode != nullptr) {
|
2017-01-03 07:11:57 +01:00
|
|
|
const std::lock_guard<Mutex> protect(dc.mutex);
|
2016-11-18 12:29:49 +01:00
|
|
|
return decoder_stream_decode(plugin, bridge, input_stream);
|
2015-12-31 12:47:56 +01:00
|
|
|
} else
|
|
|
|
return false;
|
2013-12-29 16:51:18 +01:00
|
|
|
}
|
|
|
|
|
2016-11-22 10:15:23 +01:00
|
|
|
/**
|
|
|
|
* Decode a container file with the given decoder plugin.
|
|
|
|
*
|
|
|
|
* DecoderControl::mutex is not locked by caller.
|
|
|
|
*/
|
|
|
|
static bool
|
|
|
|
TryContainerDecoder(DecoderBridge &bridge, Path path_fs, const char *suffix,
|
|
|
|
const DecoderPlugin &plugin)
|
|
|
|
{
|
|
|
|
if (plugin.container_scan == nullptr ||
|
|
|
|
plugin.file_decode == nullptr ||
|
|
|
|
!plugin.SupportsSuffix(suffix))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
bridge.error = nullptr;
|
|
|
|
|
|
|
|
DecoderControl &dc = bridge.dc;
|
2017-01-03 07:11:57 +01:00
|
|
|
const std::lock_guard<Mutex> protect(dc.mutex);
|
2016-11-22 10:15:23 +01:00
|
|
|
return decoder_file_decode(plugin, bridge, path_fs);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Decode a container file.
|
|
|
|
*
|
|
|
|
* DecoderControl::mutex is not locked by caller.
|
|
|
|
*/
|
|
|
|
static bool
|
|
|
|
TryContainerDecoder(DecoderBridge &bridge, Path path_fs, const char *suffix)
|
|
|
|
{
|
|
|
|
return decoder_plugins_try([&bridge, path_fs,
|
|
|
|
suffix](const DecoderPlugin &plugin){
|
|
|
|
return TryContainerDecoder(bridge,
|
|
|
|
path_fs,
|
|
|
|
suffix,
|
|
|
|
plugin);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2013-12-29 16:51:18 +01:00
|
|
|
/**
|
|
|
|
* Try decoding a file.
|
2015-12-31 12:24:57 +01:00
|
|
|
*
|
2015-12-31 12:42:02 +01:00
|
|
|
* DecoderControl::mutex is not locked by caller.
|
2013-12-29 16:51:18 +01:00
|
|
|
*/
|
|
|
|
static bool
|
2016-11-18 12:29:49 +01:00
|
|
|
decoder_run_file(DecoderBridge &bridge, const char *uri_utf8, Path path_fs)
|
2013-12-29 16:51:18 +01:00
|
|
|
{
|
2014-02-07 18:43:49 +01:00
|
|
|
const char *suffix = uri_get_suffix(uri_utf8);
|
2013-12-29 16:51:18 +01:00
|
|
|
if (suffix == nullptr)
|
|
|
|
return false;
|
2009-11-07 14:57:46 +01:00
|
|
|
|
2016-11-22 10:15:23 +01:00
|
|
|
InputStreamPtr input_stream;
|
|
|
|
|
|
|
|
try {
|
|
|
|
input_stream = decoder_input_stream_open(bridge.dc, path_fs);
|
|
|
|
} catch (const std::system_error &e) {
|
|
|
|
if (IsPathNotFound(e) &&
|
|
|
|
/* ENOTDIR means this may be a path inside a
|
|
|
|
"container" file */
|
|
|
|
TryContainerDecoder(bridge, path_fs, suffix))
|
|
|
|
return true;
|
|
|
|
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
|
2016-09-08 20:48:04 +02:00
|
|
|
assert(input_stream);
|
2016-02-23 11:07:02 +01:00
|
|
|
|
2016-11-25 13:26:40 +01:00
|
|
|
MaybeLoadReplayGain(bridge, *input_stream);
|
2009-11-07 17:58:52 +01:00
|
|
|
|
2016-02-23 11:07:02 +01:00
|
|
|
auto &is = *input_stream;
|
2016-11-18 12:29:49 +01:00
|
|
|
return decoder_plugins_try([&bridge, path_fs, suffix,
|
2016-02-23 11:07:02 +01:00
|
|
|
&is](const DecoderPlugin &plugin){
|
2016-11-18 12:29:49 +01:00
|
|
|
return TryDecoderFile(bridge,
|
2015-12-31 12:47:56 +01:00
|
|
|
path_fs,
|
|
|
|
suffix,
|
2016-02-23 11:07:02 +01:00
|
|
|
is,
|
2015-12-31 12:47:56 +01:00
|
|
|
plugin);
|
|
|
|
});
|
2009-11-07 14:57:46 +01:00
|
|
|
}
|
|
|
|
|
2016-05-13 13:00:40 +02:00
|
|
|
/**
|
|
|
|
* Decode a song.
|
|
|
|
*
|
|
|
|
* DecoderControl::mutex is not locked.
|
|
|
|
*/
|
|
|
|
static bool
|
2016-11-18 12:29:49 +01:00
|
|
|
DecoderUnlockedRunUri(DecoderBridge &bridge,
|
|
|
|
const char *real_uri, Path path_fs)
|
2016-05-13 12:54:41 +02:00
|
|
|
try {
|
2016-05-13 13:00:40 +02:00
|
|
|
return !path_fs.IsNull()
|
2016-11-18 12:29:49 +01:00
|
|
|
? decoder_run_file(bridge, real_uri, path_fs)
|
|
|
|
: decoder_run_stream(bridge, real_uri);
|
2016-05-13 13:12:21 +02:00
|
|
|
} catch (StopDecoder) {
|
|
|
|
return true;
|
2016-09-08 20:47:18 +02:00
|
|
|
} catch (...) {
|
2016-05-13 12:54:41 +02:00
|
|
|
const char *error_uri = real_uri;
|
|
|
|
const std::string allocated = uri_remove_auth(error_uri);
|
|
|
|
if (!allocated.empty())
|
|
|
|
error_uri = allocated.c_str();
|
|
|
|
|
2016-09-08 20:47:18 +02:00
|
|
|
std::throw_with_nested(FormatRuntimeError("Failed to decode %s",
|
|
|
|
error_uri));
|
2016-05-13 13:00:40 +02:00
|
|
|
}
|
|
|
|
|
2015-12-31 12:24:57 +01:00
|
|
|
/**
|
|
|
|
* Decode a song addressed by a #DetachedSong.
|
|
|
|
*
|
|
|
|
* Caller holds DecoderControl::mutex.
|
|
|
|
*/
|
2009-10-31 19:22:56 +01:00
|
|
|
static void
|
2013-10-28 10:09:21 +01:00
|
|
|
decoder_run_song(DecoderControl &dc,
|
2014-02-07 18:43:49 +01:00
|
|
|
const DetachedSong &song, const char *uri, Path path_fs)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2016-11-18 12:29:49 +01:00
|
|
|
DecoderBridge bridge(dc, dc.start_time.IsPositive(),
|
|
|
|
/* pass the song tag only if it's
|
|
|
|
authoritative, i.e. if it's a local
|
|
|
|
file - tags on "stream" songs are just
|
|
|
|
remembered from the last time we
|
|
|
|
played it*/
|
|
|
|
song.IsFile() ? new Tag(song.GetTag()) : nullptr);
|
2004-04-11 20:27:12 +02:00
|
|
|
|
2013-10-19 18:48:38 +02:00
|
|
|
dc.state = DecoderState::START;
|
2015-12-31 13:06:31 +01:00
|
|
|
dc.CommandFinishedLocked();
|
2004-05-19 04:14:20 +02:00
|
|
|
|
2015-12-31 13:02:55 +01:00
|
|
|
bool success;
|
2015-12-30 06:16:30 +01:00
|
|
|
{
|
|
|
|
const ScopeUnlock unlock(dc.mutex);
|
2004-05-31 03:21:17 +02:00
|
|
|
|
2016-11-18 12:29:49 +01:00
|
|
|
AtScopeExit(&bridge) {
|
2016-09-08 20:41:44 +02:00
|
|
|
/* flush the last chunk */
|
2016-11-18 12:29:49 +01:00
|
|
|
if (bridge.current_chunk != nullptr)
|
|
|
|
bridge.FlushChunk();
|
2016-09-08 20:41:44 +02:00
|
|
|
};
|
2010-01-03 22:44:23 +01:00
|
|
|
|
2016-11-18 12:29:49 +01:00
|
|
|
success = DecoderUnlockedRunUri(bridge, uri, path_fs);
|
2008-10-29 17:29:06 +01:00
|
|
|
|
2015-12-30 06:16:30 +01:00
|
|
|
}
|
2009-08-13 23:33:46 +02:00
|
|
|
|
2016-11-18 12:29:49 +01:00
|
|
|
if (bridge.error) {
|
2016-02-26 16:48:23 +01:00
|
|
|
/* copy the Error from struct Decoder to
|
2013-11-13 20:57:09 +01:00
|
|
|
DecoderControl */
|
2016-11-18 12:29:49 +01:00
|
|
|
std::rethrow_exception(bridge.error);
|
2015-12-31 13:02:55 +01:00
|
|
|
} else if (success)
|
2013-10-19 18:48:38 +02:00
|
|
|
dc.state = DecoderState::STOP;
|
2012-08-08 21:54:54 +02:00
|
|
|
else {
|
2014-01-07 21:39:47 +01:00
|
|
|
const char *error_uri = song.GetURI();
|
2013-10-23 21:38:07 +02:00
|
|
|
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
|
|
|
|
2016-09-08 20:26:40 +02:00
|
|
|
throw FormatRuntimeError("Failed to decode %s", error_uri);
|
2012-08-08 21:54:54 +02:00
|
|
|
}
|
2013-01-10 09:50:43 +01:00
|
|
|
|
2013-10-19 18:48:38 +02:00
|
|
|
dc.client_cond.signal();
|
2004-05-18 15:13:55 +02:00
|
|
|
}
|
|
|
|
|
2015-12-31 12:24:57 +01:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* Caller holds DecoderControl::mutex.
|
|
|
|
*/
|
2009-10-31 19:22:56 +01:00
|
|
|
static void
|
2013-10-28 10:09:21 +01:00
|
|
|
decoder_run(DecoderControl &dc)
|
2016-09-08 19:24:15 +02:00
|
|
|
try {
|
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);
|
2014-01-07 21:39:47 +01:00
|
|
|
const DetachedSong &song = *dc.song;
|
2009-11-03 20:02:19 +01:00
|
|
|
|
2014-02-07 18:43:49 +01:00
|
|
|
const char *const uri_utf8 = song.GetRealURI();
|
2009-01-02 10:48:55 +01:00
|
|
|
|
2014-02-07 18:43:49 +01:00
|
|
|
Path path_fs = Path::Null();
|
|
|
|
AllocatedPath path_buffer = AllocatedPath::Null();
|
2014-02-07 18:44:26 +01:00
|
|
|
if (PathTraitsUTF8::IsAbsolute(uri_utf8)) {
|
2016-11-10 11:23:54 +01:00
|
|
|
path_buffer = AllocatedPath::FromUTF8Throw(uri_utf8);
|
2014-02-07 18:43:49 +01:00
|
|
|
path_fs = path_buffer;
|
2009-01-02 10:48:55 +01:00
|
|
|
}
|
|
|
|
|
2014-02-07 18:43:49 +01:00
|
|
|
decoder_run_song(dc, song, uri_utf8, path_fs);
|
2016-09-08 19:24:15 +02:00
|
|
|
} catch (...) {
|
|
|
|
dc.state = DecoderState::ERROR;
|
|
|
|
dc.error = std::current_exception();
|
|
|
|
dc.client_cond.signal();
|
2009-01-02 10:48:55 +01:00
|
|
|
}
|
|
|
|
|
2013-10-17 18:42:14 +02:00
|
|
|
static void
|
|
|
|
decoder_task(void *arg)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2013-10-28 10:09:21 +01:00
|
|
|
DecoderControl &dc = *(DecoderControl *)arg;
|
2009-10-31 19:22:56 +01:00
|
|
|
|
2014-01-23 10:07:14 +01:00
|
|
|
SetThreadName("decoder");
|
|
|
|
|
2017-01-03 07:11:57 +01:00
|
|
|
const std::lock_guard<Mutex> protect(dc.mutex);
|
2009-08-13 23:33:46 +02:00
|
|
|
|
2008-12-28 19:48:53 +01:00
|
|
|
do {
|
2013-10-19 18:48:38 +02:00
|
|
|
assert(dc.state == DecoderState::STOP ||
|
|
|
|
dc.state == DecoderState::ERROR);
|
2008-06-02 00:24:35 +02:00
|
|
|
|
2013-10-19 18:48:38 +02:00
|
|
|
switch (dc.command) {
|
2013-09-27 12:11:37 +02:00
|
|
|
case DecoderCommand::START:
|
2013-10-26 14:12:10 +02:00
|
|
|
dc.CycleMixRamp();
|
2013-10-19 18:48:38 +02:00
|
|
|
dc.replay_gain_prev_db = dc.replay_gain_db;
|
|
|
|
dc.replay_gain_db = 0;
|
2010-03-21 18:21:47 +01:00
|
|
|
|
2014-09-07 21:31:10 +02:00
|
|
|
decoder_run(dc);
|
2015-12-31 13:38:27 +01:00
|
|
|
|
2016-09-08 17:14:11 +02:00
|
|
|
if (dc.state == DecoderState::ERROR) {
|
|
|
|
try {
|
|
|
|
std::rethrow_exception(dc.error);
|
|
|
|
} catch (const std::exception &e) {
|
|
|
|
LogError(e);
|
|
|
|
} catch (...) {
|
|
|
|
}
|
|
|
|
}
|
2015-12-31 13:38:27 +01:00
|
|
|
|
2014-09-07 21:31:10 +02:00
|
|
|
break;
|
2010-03-21 18:21:47 +01:00
|
|
|
|
2013-09-27 12:11:37 +02:00
|
|
|
case DecoderCommand::SEEK:
|
2014-09-07 21:31:10 +02:00
|
|
|
/* 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);
|
|
|
|
|
2009-10-31 19:22:56 +01:00
|
|
|
decoder_run(dc);
|
2008-10-31 16:29:22 +01:00
|
|
|
break;
|
|
|
|
|
2013-09-27 12:11:37 +02:00
|
|
|
case DecoderCommand::STOP:
|
2015-12-31 13:06:31 +01:00
|
|
|
dc.CommandFinishedLocked();
|
2008-10-31 16:29:22 +01:00
|
|
|
break;
|
|
|
|
|
2013-09-27 12:11:37 +02:00
|
|
|
case DecoderCommand::NONE:
|
2013-10-19 18:48:38 +02:00
|
|
|
dc.Wait();
|
2008-10-31 16:29:22 +01:00
|
|
|
break;
|
2004-02-24 00:41:20 +01:00
|
|
|
}
|
2013-10-19 18:48:38 +02:00
|
|
|
} while (dc.command != DecoderCommand::NONE || !dc.quit);
|
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
|
|
|
}
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2009-10-31 19:22:56 +01:00
|
|
|
void
|
2013-10-28 10:09:21 +01:00
|
|
|
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());
|
2009-01-25 13:44:27 +01:00
|
|
|
|
2013-10-19 18:48:38 +02:00
|
|
|
dc.quit = false;
|
2016-06-17 19:06:30 +02:00
|
|
|
dc.thread.Start(decoder_task, &dc);
|
2004-02-24 00:41:20 +01:00
|
|
|
}
|