2009-03-13 18:43:16 +01:00
|
|
|
/*
|
2013-01-02 20:36:28 +01:00
|
|
|
* Copyright (C) 2003-2013 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"
|
|
|
|
#include "DecoderInternal.hxx"
|
2013-07-28 13:18:48 +02:00
|
|
|
#include "DecoderError.hxx"
|
|
|
|
#include "DecoderPlugin.hxx"
|
2013-07-28 13:25:12 +02:00
|
|
|
#include "Song.hxx"
|
2013-08-07 10:31:31 +02:00
|
|
|
#include "system/FatalError.hxx"
|
2013-01-02 22:43:56 +01:00
|
|
|
#include "Mapper.hxx"
|
2013-01-21 19:14:37 +01:00
|
|
|
#include "fs/Path.hxx"
|
2013-07-28 13:18:48 +02:00
|
|
|
#include "DecoderAPI.hxx"
|
2013-09-05 18:22:02 +02:00
|
|
|
#include "tag/Tag.hxx"
|
2013-01-24 19:14:40 +01:00
|
|
|
#include "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"
|
2013-08-10 18:02:44 +02:00
|
|
|
#include "util/Error.hxx"
|
2013-09-04 23:46:20 +02:00
|
|
|
#include "tag/ApeReplayGain.hxx"
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2008-11-25 15:12:00 +01:00
|
|
|
#include <glib.h>
|
|
|
|
|
2009-01-04 17:26:12 +01:00
|
|
|
#include <unistd.h>
|
2011-10-09 17:39:11 +02:00
|
|
|
#include <stdio.h> /* for SEEK_SET */
|
2009-01-04 17:26:12 +01:00
|
|
|
|
2010-03-21 18:21:47 +01:00
|
|
|
#undef G_LOG_DOMAIN
|
|
|
|
#define G_LOG_DOMAIN "decoder_thread"
|
|
|
|
|
2011-01-10 20:59:02 +01:00
|
|
|
/**
|
|
|
|
* Marks the current decoder command as "finished" and notifies the
|
|
|
|
* player thread.
|
|
|
|
*
|
|
|
|
* @param dc the #decoder_control object; must be locked
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
decoder_command_finished_locked(struct decoder_control *dc)
|
|
|
|
{
|
2013-09-27 12:11:37 +02:00
|
|
|
assert(dc->command != DecoderCommand::NONE);
|
2011-01-10 20:59:02 +01:00
|
|
|
|
2013-09-27 12:11:37 +02:00
|
|
|
dc->command = DecoderCommand::NONE;
|
2011-01-10 20:59:02 +01:00
|
|
|
|
2013-01-27 17:20:50 +01:00
|
|
|
dc->client_cond.signal();
|
2011-01-10 20:59:02 +01:00
|
|
|
}
|
|
|
|
|
2009-11-07 15:35:50 +01:00
|
|
|
/**
|
2013-09-05 00:06:31 +02:00
|
|
|
* Opens the input stream with input_stream::Open(), and waits until
|
2009-11-07 15:35:50 +01:00
|
|
|
* 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.
|
|
|
|
*
|
2013-09-27 12:11:37 +02:00
|
|
|
* @return an input_stream on success or if #DecoderCommand::STOP is
|
2009-12-30 23:27:37 +01:00
|
|
|
* received, NULL on error
|
2009-11-07 15:35:50 +01:00
|
|
|
*/
|
2009-12-30 23:27:37 +01:00
|
|
|
static struct input_stream *
|
|
|
|
decoder_input_stream_open(struct decoder_control *dc, const char *uri)
|
2009-11-07 15:35:50 +01:00
|
|
|
{
|
2013-08-10 18:02:44 +02:00
|
|
|
Error error;
|
2009-11-14 23:53:04 +01:00
|
|
|
|
2013-09-05 00:06:31 +02:00
|
|
|
input_stream *is = input_stream::Open(uri, dc->mutex, dc->cond, error);
|
2009-12-30 23:27:37 +01:00
|
|
|
if (is == NULL) {
|
2013-08-10 18:02:44 +02:00
|
|
|
if (error.IsDefined())
|
|
|
|
g_warning("%s", error.GetMessage());
|
2009-11-14 23:53:04 +01:00
|
|
|
|
2009-12-30 23:27:37 +01:00
|
|
|
return NULL;
|
2009-11-14 23:53:04 +01:00
|
|
|
}
|
2009-11-07 15:35:50 +01:00
|
|
|
|
|
|
|
/* wait for the input stream to become ready; its metadata
|
|
|
|
will be available then */
|
|
|
|
|
2013-01-21 10:13:29 +01:00
|
|
|
dc->Lock();
|
2011-09-14 21:46:41 +02:00
|
|
|
|
2013-09-05 00:06:31 +02:00
|
|
|
is->Update();
|
2009-11-07 15:35:50 +01:00
|
|
|
while (!is->ready &&
|
2013-09-27 12:11:37 +02:00
|
|
|
dc->command != DecoderCommand::STOP) {
|
2013-01-21 10:13:29 +01: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
|
|
|
}
|
|
|
|
|
2013-09-05 00:06:31 +02:00
|
|
|
if (!is->Check(error)) {
|
2013-01-21 10:13:29 +01:00
|
|
|
dc->Unlock();
|
2011-09-14 21:46:41 +02:00
|
|
|
|
2013-08-10 18:02:44 +02:00
|
|
|
g_warning("%s", error.GetMessage());
|
2011-09-14 21:46:41 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2013-01-21 10:13:29 +01:00
|
|
|
dc->Unlock();
|
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
|
|
|
}
|
|
|
|
|
2008-11-10 15:02:38 +01:00
|
|
|
static bool
|
|
|
|
decoder_stream_decode(const struct decoder_plugin *plugin,
|
|
|
|
struct decoder *decoder,
|
|
|
|
struct input_stream *input_stream)
|
|
|
|
{
|
|
|
|
assert(plugin != NULL);
|
|
|
|
assert(plugin->stream_decode != NULL);
|
|
|
|
assert(decoder != NULL);
|
2009-01-03 23:29:45 +01:00
|
|
|
assert(decoder->stream_tag == NULL);
|
|
|
|
assert(decoder->decoder_tag == NULL);
|
2008-11-10 15:02:38 +01:00
|
|
|
assert(input_stream != NULL);
|
|
|
|
assert(input_stream->ready);
|
2013-09-27 12:27:33 +02:00
|
|
|
assert(decoder->dc->state == DecoderState::START);
|
2008-11-10 15:02:38 +01:00
|
|
|
|
2012-05-29 22:52:50 +02:00
|
|
|
g_debug("probing plugin %s", plugin->name);
|
|
|
|
|
2013-09-27 12:11:37 +02:00
|
|
|
if (decoder->dc->command == DecoderCommand::STOP)
|
2009-11-07 15:37:18 +01:00
|
|
|
return true;
|
|
|
|
|
2008-11-10 15:02:47 +01:00
|
|
|
/* rewind the stream, so each plugin gets a fresh start */
|
2013-09-05 00:06:31 +02:00
|
|
|
input_stream->Seek(0, SEEK_SET, IgnoreError());
|
2008-11-10 15:02:47 +01:00
|
|
|
|
2013-01-21 10:13:29 +01:00
|
|
|
decoder->dc->Unlock();
|
2011-09-14 21:46:41 +02:00
|
|
|
|
2009-02-15 18:33:28 +01:00
|
|
|
decoder_plugin_stream_decode(plugin, decoder, input_stream);
|
2008-11-10 15:02:38 +01:00
|
|
|
|
2013-01-21 10:13:29 +01:00
|
|
|
decoder->dc->Lock();
|
2009-08-13 23:33:46 +02:00
|
|
|
|
2013-09-27 12:27:33 +02:00
|
|
|
assert(decoder->dc->state == DecoderState::START ||
|
|
|
|
decoder->dc->state == DecoderState::DECODE);
|
2008-11-10 15:02:38 +01:00
|
|
|
|
2013-09-27 12:27:33 +02:00
|
|
|
return decoder->dc->state != DecoderState::START;
|
2008-11-10 15:02:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
|
|
|
decoder_file_decode(const struct decoder_plugin *plugin,
|
|
|
|
struct decoder *decoder, const char *path)
|
|
|
|
{
|
|
|
|
assert(plugin != NULL);
|
2008-11-11 21:23:30 +01:00
|
|
|
assert(plugin->file_decode != NULL);
|
2008-11-10 15:02:38 +01:00
|
|
|
assert(decoder != NULL);
|
2009-01-03 23:29:45 +01:00
|
|
|
assert(decoder->stream_tag == NULL);
|
|
|
|
assert(decoder->decoder_tag == NULL);
|
2008-11-10 15:02:38 +01:00
|
|
|
assert(path != NULL);
|
2009-10-20 21:01:55 +02:00
|
|
|
assert(g_path_is_absolute(path));
|
2013-09-27 12:27:33 +02:00
|
|
|
assert(decoder->dc->state == DecoderState::START);
|
2008-11-10 15:02:38 +01:00
|
|
|
|
2012-05-29 22:52:50 +02:00
|
|
|
g_debug("probing plugin %s", plugin->name);
|
|
|
|
|
2013-09-27 12:11:37 +02:00
|
|
|
if (decoder->dc->command == DecoderCommand::STOP)
|
2009-11-07 15:37:18 +01:00
|
|
|
return true;
|
|
|
|
|
2013-01-21 10:13:29 +01:00
|
|
|
decoder->dc->Unlock();
|
2009-08-13 23:33:46 +02:00
|
|
|
|
2009-02-15 18:33:28 +01:00
|
|
|
decoder_plugin_file_decode(plugin, decoder, path);
|
2008-11-10 15:02:38 +01:00
|
|
|
|
2013-01-21 10:13:29 +01:00
|
|
|
decoder->dc->Lock();
|
2009-08-13 23:33:46 +02:00
|
|
|
|
2013-09-27 12:27:33 +02:00
|
|
|
assert(decoder->dc->state == DecoderState::START ||
|
|
|
|
decoder->dc->state == DecoderState::DECODE);
|
2008-11-10 15:02:38 +01:00
|
|
|
|
2013-09-27 12:27:33 +02:00
|
|
|
return decoder->dc->state != DecoderState::START;
|
2008-11-10 15:02:38 +01:00
|
|
|
}
|
|
|
|
|
2010-01-17 16:47:04 +01:00
|
|
|
/**
|
|
|
|
* Hack to allow tracking const decoder plugins in a GSList.
|
|
|
|
*/
|
|
|
|
static inline gpointer
|
|
|
|
deconst_plugin(const struct decoder_plugin *plugin)
|
|
|
|
{
|
2013-01-02 20:36:28 +01:00
|
|
|
return const_cast<struct decoder_plugin *>(plugin);
|
2010-01-17 16:47:04 +01:00
|
|
|
}
|
|
|
|
|
2009-11-07 14:57:46 +01:00
|
|
|
/**
|
|
|
|
* Try decoding a stream, using plugins matching the stream's MIME type.
|
2010-01-17 16:47:04 +01:00
|
|
|
*
|
|
|
|
* @param tried_r a list of plugins which were tried
|
2009-11-07 14:57:46 +01:00
|
|
|
*/
|
|
|
|
static bool
|
2010-01-17 16:47:04 +01:00
|
|
|
decoder_run_stream_mime_type(struct decoder *decoder, struct input_stream *is,
|
|
|
|
GSList **tried_r)
|
2009-11-07 14:57:46 +01:00
|
|
|
{
|
2010-01-17 16:47:04 +01:00
|
|
|
assert(tried_r != NULL);
|
|
|
|
|
2009-11-07 14:57:46 +01:00
|
|
|
const struct decoder_plugin *plugin;
|
|
|
|
unsigned int next = 0;
|
|
|
|
|
2013-01-28 23:41:45 +01:00
|
|
|
if (is->mime.empty())
|
2009-11-07 14:57:46 +01:00
|
|
|
return false;
|
|
|
|
|
2013-01-28 23:41:45 +01:00
|
|
|
while ((plugin = decoder_plugin_from_mime_type(is->mime.c_str(),
|
|
|
|
next++))) {
|
2010-01-17 16:47:04 +01:00
|
|
|
if (plugin->stream_decode == NULL)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (g_slist_find(*tried_r, plugin) != NULL)
|
|
|
|
/* don't try a plugin twice */
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (decoder_stream_decode(plugin, decoder, is))
|
2009-11-07 14:57:46 +01:00
|
|
|
return true;
|
|
|
|
|
2010-01-17 16:47:04 +01:00
|
|
|
*tried_r = g_slist_prepend(*tried_r, deconst_plugin(plugin));
|
|
|
|
}
|
|
|
|
|
2009-11-07 14:57:46 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Try decoding a stream, using plugins matching the stream's URI
|
|
|
|
* suffix.
|
2010-01-17 16:47:04 +01:00
|
|
|
*
|
|
|
|
* @param tried_r a list of plugins which were tried
|
2009-11-07 14:57:46 +01:00
|
|
|
*/
|
|
|
|
static bool
|
|
|
|
decoder_run_stream_suffix(struct decoder *decoder, struct input_stream *is,
|
2010-01-17 16:47:04 +01:00
|
|
|
const char *uri, GSList **tried_r)
|
2009-11-07 14:57:46 +01:00
|
|
|
{
|
2010-01-17 16:47:04 +01:00
|
|
|
assert(tried_r != NULL);
|
|
|
|
|
2009-11-07 14:57:46 +01:00
|
|
|
const char *suffix = uri_get_suffix(uri);
|
2009-11-07 15:14:16 +01:00
|
|
|
const struct decoder_plugin *plugin = NULL;
|
2009-11-07 14:57:46 +01:00
|
|
|
|
|
|
|
if (suffix == NULL)
|
|
|
|
return false;
|
|
|
|
|
2010-01-17 16:47:04 +01:00
|
|
|
while ((plugin = decoder_plugin_from_suffix(suffix, plugin)) != NULL) {
|
|
|
|
if (plugin->stream_decode == NULL)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (g_slist_find(*tried_r, plugin) != NULL)
|
|
|
|
/* don't try a plugin twice */
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (decoder_stream_decode(plugin, decoder, is))
|
2009-11-07 14:57:46 +01:00
|
|
|
return true;
|
|
|
|
|
2010-01-17 16:47:04 +01:00
|
|
|
*tried_r = g_slist_prepend(*tried_r, deconst_plugin(plugin));
|
|
|
|
}
|
|
|
|
|
2009-11-07 14:57:46 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Try decoding a stream, using the fallback plugin.
|
|
|
|
*/
|
|
|
|
static bool
|
|
|
|
decoder_run_stream_fallback(struct decoder *decoder, struct input_stream *is)
|
|
|
|
{
|
|
|
|
const struct decoder_plugin *plugin;
|
|
|
|
|
|
|
|
plugin = decoder_plugin_from_name("mad");
|
|
|
|
return plugin != NULL && plugin->stream_decode != NULL &&
|
|
|
|
decoder_stream_decode(plugin, decoder, is);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Try decoding a stream.
|
|
|
|
*/
|
|
|
|
static bool
|
2009-11-07 15:10:12 +01:00
|
|
|
decoder_run_stream(struct decoder *decoder, const char *uri)
|
2009-11-07 14:57:46 +01:00
|
|
|
{
|
2009-11-07 15:10:12 +01:00
|
|
|
struct decoder_control *dc = decoder->dc;
|
2009-12-30 23:27:37 +01:00
|
|
|
struct input_stream *input_stream;
|
2009-11-07 15:10:12 +01:00
|
|
|
bool success;
|
|
|
|
|
2013-01-21 10:13:29 +01:00
|
|
|
dc->Unlock();
|
2009-11-07 15:10:12 +01:00
|
|
|
|
2009-12-30 23:27:37 +01:00
|
|
|
input_stream = decoder_input_stream_open(dc, uri);
|
|
|
|
if (input_stream == NULL) {
|
2013-01-21 10:13:29 +01:00
|
|
|
dc->Lock();
|
2009-11-07 15:10:12 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-01-21 10:13:29 +01:00
|
|
|
dc->Lock();
|
2009-11-07 15:10:12 +01:00
|
|
|
|
2010-01-17 16:47:04 +01:00
|
|
|
GSList *tried = NULL;
|
|
|
|
|
2013-09-27 12:11:37 +02:00
|
|
|
success = dc->command == DecoderCommand::STOP ||
|
2009-11-07 15:10:12 +01:00
|
|
|
/* first we try mime types: */
|
2010-01-17 16:47:04 +01:00
|
|
|
decoder_run_stream_mime_type(decoder, input_stream, &tried) ||
|
2009-11-07 14:57:46 +01:00
|
|
|
/* if that fails, try suffix matching the URL: */
|
2010-01-17 16:47:04 +01:00
|
|
|
decoder_run_stream_suffix(decoder, input_stream, uri,
|
|
|
|
&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 */
|
2010-01-17 17:08:56 +01:00
|
|
|
(tried == NULL &&
|
|
|
|
decoder_run_stream_fallback(decoder, input_stream));
|
2009-11-07 15:10:12 +01:00
|
|
|
|
2010-01-17 16:47:04 +01:00
|
|
|
g_slist_free(tried);
|
|
|
|
|
2013-01-21 10:13:29 +01:00
|
|
|
dc->Unlock();
|
2013-09-05 00:06:31 +02:00
|
|
|
input_stream->Close();
|
2013-01-21 10:13:29 +01:00
|
|
|
dc->Lock();
|
2009-11-07 15:10:12 +01:00
|
|
|
|
|
|
|
return success;
|
2009-11-07 14:57:46 +01:00
|
|
|
}
|
|
|
|
|
2010-11-18 22:36:58 +01:00
|
|
|
/**
|
|
|
|
* Attempt to load replay gain data, and pass it to
|
|
|
|
* decoder_replay_gain().
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
decoder_load_replay_gain(struct decoder *decoder, const char *path_fs)
|
|
|
|
{
|
|
|
|
struct replay_gain_info info;
|
|
|
|
if (replay_gain_ape_read(path_fs, &info))
|
|
|
|
decoder_replay_gain(decoder, &info);
|
|
|
|
}
|
|
|
|
|
2009-11-07 14:57:46 +01:00
|
|
|
/**
|
|
|
|
* Try decoding a file.
|
|
|
|
*/
|
|
|
|
static bool
|
2009-11-07 15:10:12 +01:00
|
|
|
decoder_run_file(struct decoder *decoder, const char *path_fs)
|
2009-11-07 14:57:46 +01:00
|
|
|
{
|
2009-11-07 15:24:38 +01:00
|
|
|
struct decoder_control *dc = decoder->dc;
|
2009-11-07 14:57:46 +01:00
|
|
|
const char *suffix = uri_get_suffix(path_fs);
|
2009-11-07 15:14:16 +01:00
|
|
|
const struct decoder_plugin *plugin = NULL;
|
2009-11-07 14:57:46 +01:00
|
|
|
|
|
|
|
if (suffix == NULL)
|
|
|
|
return false;
|
|
|
|
|
2013-01-21 10:13:29 +01:00
|
|
|
dc->Unlock();
|
2009-11-07 14:57:46 +01:00
|
|
|
|
2010-11-18 22:36:58 +01:00
|
|
|
decoder_load_replay_gain(decoder, path_fs);
|
|
|
|
|
2009-11-07 15:14:16 +01:00
|
|
|
while ((plugin = decoder_plugin_from_suffix(suffix, plugin)) != NULL) {
|
2009-11-07 14:57:46 +01:00
|
|
|
if (plugin->file_decode != NULL) {
|
2013-01-21 10:13:29 +01:00
|
|
|
dc->Lock();
|
2009-11-07 14:57:46 +01:00
|
|
|
|
|
|
|
if (decoder_file_decode(plugin, decoder, path_fs))
|
|
|
|
return true;
|
|
|
|
|
2013-01-21 10:13:29 +01:00
|
|
|
dc->Unlock();
|
2009-11-07 14:57:46 +01:00
|
|
|
} else if (plugin->stream_decode != NULL) {
|
2009-12-30 23:27:37 +01:00
|
|
|
struct input_stream *input_stream;
|
2009-11-07 17:58:52 +01:00
|
|
|
bool success;
|
2009-11-07 15:10:12 +01:00
|
|
|
|
2009-12-30 23:27:37 +01:00
|
|
|
input_stream = decoder_input_stream_open(dc, path_fs);
|
|
|
|
if (input_stream == NULL)
|
2009-11-07 15:10:12 +01:00
|
|
|
continue;
|
2009-11-07 14:57:46 +01:00
|
|
|
|
2013-01-21 10:13:29 +01:00
|
|
|
dc->Lock();
|
2009-11-07 14:57:46 +01:00
|
|
|
|
2009-11-07 17:58:52 +01:00
|
|
|
success = decoder_stream_decode(plugin, decoder,
|
2009-12-30 23:27:37 +01:00
|
|
|
input_stream);
|
2009-11-07 14:57:46 +01:00
|
|
|
|
2013-01-21 10:13:29 +01:00
|
|
|
dc->Unlock();
|
2009-11-07 17:58:52 +01:00
|
|
|
|
2013-09-05 00:06:31 +02:00
|
|
|
input_stream->Close();
|
2009-11-07 17:58:52 +01:00
|
|
|
|
|
|
|
if (success) {
|
2013-01-21 10:13:29 +01:00
|
|
|
dc->Lock();
|
2009-11-07 17:58:52 +01:00
|
|
|
return true;
|
|
|
|
}
|
2009-11-07 14:57:46 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-01-21 10:13:29 +01:00
|
|
|
dc->Lock();
|
2009-11-07 14:57:46 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-10-31 19:22:56 +01:00
|
|
|
static void
|
|
|
|
decoder_run_song(struct decoder_control *dc,
|
2013-07-28 13:25:12 +02:00
|
|
|
const Song *song, const char *uri)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2013-01-04 21:59:03 +01:00
|
|
|
decoder decoder(dc, dc->start_ms > 0,
|
2013-07-28 13:25:12 +02:00
|
|
|
song->tag != NULL && song->IsFile()
|
2013-07-30 20:11:57 +02:00
|
|
|
? new Tag(*song->tag) : nullptr);
|
2006-07-14 21:52:29 +02:00
|
|
|
int ret;
|
2004-04-11 20:27:12 +02:00
|
|
|
|
2013-09-27 12:27:33 +02:00
|
|
|
dc->state = DecoderState::START;
|
2009-08-13 23:33:46 +02:00
|
|
|
|
2011-01-10 20:59:02 +01:00
|
|
|
decoder_command_finished_locked(dc);
|
2004-05-19 04:14:20 +02:00
|
|
|
|
2013-07-28 13:25:12 +02:00
|
|
|
ret = song->IsFile()
|
2009-11-07 15:10:12 +01:00
|
|
|
? decoder_run_file(&decoder, uri)
|
|
|
|
: decoder_run_stream(&decoder, uri);
|
2004-05-31 03:21:17 +02:00
|
|
|
|
2013-01-21 10:13:29 +01:00
|
|
|
dc->Unlock();
|
2009-08-13 23:33:46 +02:00
|
|
|
|
2009-03-06 00:42:01 +01:00
|
|
|
/* flush the last chunk */
|
2010-01-03 22:44:23 +01:00
|
|
|
|
2009-03-06 00:42:03 +01:00
|
|
|
if (decoder.chunk != NULL)
|
|
|
|
decoder_flush_chunk(&decoder);
|
2008-10-29 17:29:06 +01:00
|
|
|
|
2013-01-21 10:13:29 +01:00
|
|
|
dc->Lock();
|
2009-08-13 23:33:46 +02:00
|
|
|
|
2012-08-08 21:54:54 +02:00
|
|
|
if (ret)
|
2013-09-27 12:27:33 +02:00
|
|
|
dc->state = DecoderState::STOP;
|
2012-08-08 21:54:54 +02:00
|
|
|
else {
|
2013-09-27 12:27:33 +02:00
|
|
|
dc->state = DecoderState::ERROR;
|
2012-08-08 21:54:54 +02:00
|
|
|
|
|
|
|
const char *error_uri = song->uri;
|
|
|
|
char *allocated = uri_remove_auth(error_uri);
|
|
|
|
if (allocated != NULL)
|
|
|
|
error_uri = allocated;
|
|
|
|
|
2013-08-10 18:02:44 +02:00
|
|
|
dc->error.Format(decoder_domain,
|
|
|
|
"Failed to decode %s", error_uri);
|
2012-08-08 21:54:54 +02:00
|
|
|
g_free(allocated);
|
|
|
|
}
|
2013-01-10 09:50:43 +01:00
|
|
|
|
2013-01-27 17:20:50 +01:00
|
|
|
dc->client_cond.signal();
|
2004-05-18 15:13:55 +02:00
|
|
|
}
|
|
|
|
|
2009-10-31 19:22:56 +01:00
|
|
|
static void
|
|
|
|
decoder_run(struct decoder_control *dc)
|
2009-01-02 10:48:55 +01:00
|
|
|
{
|
2013-01-21 10:13:29 +01:00
|
|
|
dc->ClearError();
|
2012-08-08 21:54:54 +02:00
|
|
|
|
2013-07-28 13:25:12 +02:00
|
|
|
const Song *song = dc->song;
|
2009-01-02 10:48:55 +01:00
|
|
|
char *uri;
|
|
|
|
|
2009-11-03 20:02:19 +01:00
|
|
|
assert(song != NULL);
|
|
|
|
|
2013-07-28 13:25:12 +02:00
|
|
|
if (song->IsFile())
|
2013-10-01 18:35:37 +02:00
|
|
|
uri = g_strdup(map_song_fs(song).c_str());
|
2009-01-04 19:09:34 +01:00
|
|
|
else
|
2013-07-28 13:25:12 +02:00
|
|
|
uri = song->GetURI();
|
2009-01-02 10:48:55 +01:00
|
|
|
|
|
|
|
if (uri == NULL) {
|
2013-09-27 12:27:33 +02:00
|
|
|
dc->state = DecoderState::ERROR;
|
2013-08-10 18:02:44 +02:00
|
|
|
dc->error.Set(decoder_domain, "Failed to map song");
|
2012-08-15 17:56:06 +02:00
|
|
|
|
2011-01-16 17:52:03 +01:00
|
|
|
decoder_command_finished_locked(dc);
|
2009-01-02 10:48:55 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-10-31 19:22:56 +01:00
|
|
|
decoder_run_song(dc, song, uri);
|
2009-01-02 10:48:55 +01:00
|
|
|
g_free(uri);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2009-10-31 19:22:56 +01:00
|
|
|
static gpointer
|
|
|
|
decoder_task(gpointer arg)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2013-01-02 20:36:28 +01:00
|
|
|
struct decoder_control *dc = (struct decoder_control *)arg;
|
2009-10-31 19:22:56 +01:00
|
|
|
|
2013-01-21 10:13:29 +01:00
|
|
|
dc->Lock();
|
2009-08-13 23:33:46 +02:00
|
|
|
|
2008-12-28 19:48:53 +01:00
|
|
|
do {
|
2013-09-27 12:27:33 +02:00
|
|
|
assert(dc->state == DecoderState::STOP ||
|
|
|
|
dc->state == DecoderState::ERROR);
|
2008-06-02 00:24:35 +02:00
|
|
|
|
2009-10-31 19:22:56 +01:00
|
|
|
switch (dc->command) {
|
2013-09-27 12:11:37 +02:00
|
|
|
case DecoderCommand::START:
|
2013-01-21 10:13:29 +01:00
|
|
|
dc->MixRampStart(nullptr);
|
|
|
|
dc->MixRampPrevEnd(dc->mixramp_end);
|
2010-03-21 18:21:47 +01:00
|
|
|
dc->mixramp_end = NULL; /* Don't free, it's copied above. */
|
2010-05-08 09:19:44 +02:00
|
|
|
dc->replay_gain_prev_db = dc->replay_gain_db;
|
|
|
|
dc->replay_gain_db = 0;
|
2010-03-21 18:21:47 +01:00
|
|
|
|
|
|
|
/* fall through */
|
|
|
|
|
2013-09-27 12:11:37 +02:00
|
|
|
case DecoderCommand::SEEK:
|
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:
|
2011-01-10 20:59:02 +01:00
|
|
|
decoder_command_finished_locked(dc);
|
2008-10-31 16:29:22 +01:00
|
|
|
break;
|
|
|
|
|
2013-09-27 12:11:37 +02:00
|
|
|
case DecoderCommand::NONE:
|
2013-01-21 10:13:29 +01:00
|
|
|
dc->Wait();
|
2008-10-31 16:29:22 +01:00
|
|
|
break;
|
2004-02-24 00:41:20 +01:00
|
|
|
}
|
2013-09-27 12:11:37 +02:00
|
|
|
} while (dc->command != DecoderCommand::NONE || !dc->quit);
|
2008-04-12 06:20:45 +02:00
|
|
|
|
2013-01-21 10:13:29 +01:00
|
|
|
dc->Unlock();
|
2009-08-13 23:33:46 +02:00
|
|
|
|
2008-04-12 06:20:45 +02:00
|
|
|
return NULL;
|
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
|
|
|
|
decoder_thread_start(struct decoder_control *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
|
|
|
{
|
2009-10-31 19:22:56 +01:00
|
|
|
assert(dc->thread == NULL);
|
2009-01-25 13:44:27 +01:00
|
|
|
|
2009-11-04 09:44:50 +01:00
|
|
|
dc->quit = false;
|
|
|
|
|
2013-04-17 01:49:43 +02:00
|
|
|
#if GLIB_CHECK_VERSION(2,32,0)
|
|
|
|
dc->thread = g_thread_new("thread", decoder_task, dc);
|
|
|
|
#else
|
|
|
|
GError *e = NULL;
|
2009-10-31 19:22:56 +01:00
|
|
|
dc->thread = g_thread_create(decoder_task, dc, true, &e);
|
|
|
|
if (dc->thread == NULL)
|
2013-08-07 09:35:30 +02:00
|
|
|
FatalError("Failed to spawn decoder task", e);
|
2013-04-17 01:49:43 +02:00
|
|
|
#endif
|
2004-02-24 00:41:20 +01:00
|
|
|
}
|