input/soup: new input plugin based on libsoup
To demonstrate the new I/O thread. libsoup is well-integrated into the GLib main loop, which made this plugin pretty easy to write. As a side effect, we have to initialize the I/O thread in all debug programs that use the input API.
This commit is contained in:
parent
e242f3999c
commit
3b9ffea36f
12
Makefile.am
12
Makefile.am
|
@ -636,12 +636,14 @@ endif
|
||||||
|
|
||||||
INPUT_CFLAGS = \
|
INPUT_CFLAGS = \
|
||||||
$(CURL_CFLAGS) \
|
$(CURL_CFLAGS) \
|
||||||
|
$(SOUP_CFLAGS) \
|
||||||
$(CDIO_PARANOIA_CFLAGS) \
|
$(CDIO_PARANOIA_CFLAGS) \
|
||||||
$(FFMPEG_CFLAGS) \
|
$(FFMPEG_CFLAGS) \
|
||||||
$(MMS_CFLAGS)
|
$(MMS_CFLAGS)
|
||||||
|
|
||||||
INPUT_LIBS = \
|
INPUT_LIBS = \
|
||||||
$(CURL_LIBS) \
|
$(CURL_LIBS) \
|
||||||
|
$(SOUP_LIBS) \
|
||||||
$(CDIO_PARANOIA_LIBS) \
|
$(CDIO_PARANOIA_LIBS) \
|
||||||
$(FFMPEG_LIBS) \
|
$(FFMPEG_LIBS) \
|
||||||
$(MMS_LIBS)
|
$(MMS_LIBS)
|
||||||
|
@ -658,6 +660,12 @@ INPUT_SRC += src/input/curl_input_plugin.c \
|
||||||
src/icy_metadata.c
|
src/icy_metadata.c
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
if ENABLE_SOUP
|
||||||
|
INPUT_SRC += \
|
||||||
|
src/input/soup_input_plugin.c \
|
||||||
|
src/input/soup_input_plugin.h
|
||||||
|
endif
|
||||||
|
|
||||||
if ENABLE_CDIO_PARANOIA
|
if ENABLE_CDIO_PARANOIA
|
||||||
INPUT_SRC += src/input/cdio_paranoia_input_plugin.c
|
INPUT_SRC += src/input/cdio_paranoia_input_plugin.c
|
||||||
endif
|
endif
|
||||||
|
@ -909,6 +917,7 @@ test_run_input_LDADD = $(MPD_LIBS) \
|
||||||
$(GLIB_LIBS)
|
$(GLIB_LIBS)
|
||||||
test_run_input_SOURCES = test/run_input.c \
|
test_run_input_SOURCES = test/run_input.c \
|
||||||
test/stdbin.h \
|
test/stdbin.h \
|
||||||
|
src/io_thread.c src/io_thread.h \
|
||||||
src/conf.c src/tokenizer.c src/utils.c src/string_util.c\
|
src/conf.c src/tokenizer.c src/utils.c src/string_util.c\
|
||||||
src/tag.c src/tag_pool.c src/tag_save.c \
|
src/tag.c src/tag_pool.c src/tag_save.c \
|
||||||
src/fd_util.c \
|
src/fd_util.c \
|
||||||
|
@ -927,6 +936,7 @@ test_dump_playlist_LDADD = $(MPD_LIBS) \
|
||||||
$(INPUT_LIBS) \
|
$(INPUT_LIBS) \
|
||||||
$(GLIB_LIBS)
|
$(GLIB_LIBS)
|
||||||
test_dump_playlist_SOURCES = test/dump_playlist.c \
|
test_dump_playlist_SOURCES = test/dump_playlist.c \
|
||||||
|
src/io_thread.c src/io_thread.h \
|
||||||
src/conf.c src/tokenizer.c src/utils.c src/string_util.c\
|
src/conf.c src/tokenizer.c src/utils.c src/string_util.c\
|
||||||
src/uri.c \
|
src/uri.c \
|
||||||
src/song.c src/tag.c src/tag_pool.c src/tag_save.c \
|
src/song.c src/tag.c src/tag_pool.c src/tag_save.c \
|
||||||
|
@ -957,6 +967,7 @@ test_run_decoder_LDADD = $(MPD_LIBS) \
|
||||||
$(GLIB_LIBS)
|
$(GLIB_LIBS)
|
||||||
test_run_decoder_SOURCES = test/run_decoder.c \
|
test_run_decoder_SOURCES = test/run_decoder.c \
|
||||||
test/stdbin.h \
|
test/stdbin.h \
|
||||||
|
src/io_thread.c src/io_thread.h \
|
||||||
src/conf.c src/tokenizer.c src/utils.c src/string_util.c src/log.c \
|
src/conf.c src/tokenizer.c src/utils.c src/string_util.c src/log.c \
|
||||||
src/tag.c src/tag_pool.c \
|
src/tag.c src/tag_pool.c \
|
||||||
src/replay_gain_info.c \
|
src/replay_gain_info.c \
|
||||||
|
@ -980,6 +991,7 @@ test_read_tags_LDADD = $(MPD_LIBS) \
|
||||||
$(INPUT_LIBS) $(DECODER_LIBS) \
|
$(INPUT_LIBS) $(DECODER_LIBS) \
|
||||||
$(GLIB_LIBS)
|
$(GLIB_LIBS)
|
||||||
test_read_tags_SOURCES = test/read_tags.c \
|
test_read_tags_SOURCES = test/read_tags.c \
|
||||||
|
src/io_thread.c src/io_thread.h \
|
||||||
src/conf.c src/tokenizer.c src/utils.c src/string_util.c src/log.c \
|
src/conf.c src/tokenizer.c src/utils.c src/string_util.c src/log.c \
|
||||||
src/tag.c src/tag_pool.c \
|
src/tag.c src/tag_pool.c \
|
||||||
src/replay_gain_info.c \
|
src/replay_gain_info.c \
|
||||||
|
|
1
NEWS
1
NEWS
|
@ -5,6 +5,7 @@ ver 0.17 (2011/??/??)
|
||||||
* input:
|
* input:
|
||||||
- cdio_paranoia: new input plugin to play audio CDs
|
- cdio_paranoia: new input plugin to play audio CDs
|
||||||
- curl: enable CURLOPT_NETRC
|
- curl: enable CURLOPT_NETRC
|
||||||
|
- soup: new input plugin based on libsoup
|
||||||
- ffmpeg: support libavformat 0.7
|
- ffmpeg: support libavformat 0.7
|
||||||
* decoder:
|
* decoder:
|
||||||
- mpg123: implement seeking
|
- mpg123: implement seeking
|
||||||
|
|
14
configure.ac
14
configure.ac
|
@ -156,6 +156,11 @@ AC_ARG_ENABLE(curl,
|
||||||
[enable support for libcurl HTTP streaming (default: auto)]),,
|
[enable support for libcurl HTTP streaming (default: auto)]),,
|
||||||
[enable_curl=auto])
|
[enable_curl=auto])
|
||||||
|
|
||||||
|
AC_ARG_ENABLE(soup,
|
||||||
|
AS_HELP_STRING([--enable-soup],
|
||||||
|
[enable support for libsoup HTTP streaming (default: auto)]),,
|
||||||
|
[enable_soup=auto])
|
||||||
|
|
||||||
AC_ARG_ENABLE(debug,
|
AC_ARG_ENABLE(debug,
|
||||||
AS_HELP_STRING([--enable-debug],
|
AS_HELP_STRING([--enable-debug],
|
||||||
[enable debugging (default: disabled)]),,
|
[enable debugging (default: disabled)]),,
|
||||||
|
@ -644,6 +649,14 @@ if test x$enable_curl = xyes; then
|
||||||
fi
|
fi
|
||||||
AM_CONDITIONAL(ENABLE_CURL, test x$enable_curl = xyes)
|
AM_CONDITIONAL(ENABLE_CURL, test x$enable_curl = xyes)
|
||||||
|
|
||||||
|
dnl ----------------------------------- SOUP ----------------------------------
|
||||||
|
MPD_AUTO_PKG(soup, SOUP, [libsoup-2.4],
|
||||||
|
[libsoup HTTP streaming], [libsoup not found])
|
||||||
|
if test x$enable_soup = xyes; then
|
||||||
|
AC_DEFINE(ENABLE_SOUP, 1, [Define when libsoup is used for HTTP streaming])
|
||||||
|
fi
|
||||||
|
AM_CONDITIONAL(ENABLE_SOUP, test x$enable_soup = xyes)
|
||||||
|
|
||||||
dnl --------------------------------- Last.FM ---------------------------------
|
dnl --------------------------------- Last.FM ---------------------------------
|
||||||
if test x$enable_lastfm = xyes; then
|
if test x$enable_lastfm = xyes; then
|
||||||
if test x$enable_curl != xyes; then
|
if test x$enable_curl != xyes; then
|
||||||
|
@ -1625,6 +1638,7 @@ fi
|
||||||
|
|
||||||
printf '\nStreaming support:\n\t'
|
printf '\nStreaming support:\n\t'
|
||||||
results(curl,[CURL])
|
results(curl,[CURL])
|
||||||
|
results(soup, [SOUP])
|
||||||
results(lastfm,[Last.FM])
|
results(lastfm,[Last.FM])
|
||||||
results(mms,[MMS])
|
results(mms,[MMS])
|
||||||
results(cdio_paranoia, [CDIO_PARANOIA])
|
results(cdio_paranoia, [CDIO_PARANOIA])
|
||||||
|
|
28
doc/user.xml
28
doc/user.xml
|
@ -703,6 +703,34 @@ cd mpd-version</programlisting>
|
||||||
</informaltable>
|
</informaltable>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
<section>
|
||||||
|
<title><varname>soup</varname></title>
|
||||||
|
|
||||||
|
<para>
|
||||||
|
Opens remote files or streams over HTTP.
|
||||||
|
</para>
|
||||||
|
|
||||||
|
<informaltable>
|
||||||
|
<tgroup cols="2">
|
||||||
|
<thead>
|
||||||
|
<row>
|
||||||
|
<entry>Setting</entry>
|
||||||
|
<entry>Description</entry>
|
||||||
|
</row>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<row>
|
||||||
|
<entry>
|
||||||
|
<varname>proxy</varname>
|
||||||
|
</entry>
|
||||||
|
<entry>
|
||||||
|
Sets the address of the HTTP proxy server.
|
||||||
|
</entry>
|
||||||
|
</row>
|
||||||
|
</tbody>
|
||||||
|
</tgroup>
|
||||||
|
</informaltable>
|
||||||
|
</section>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section>
|
<section>
|
||||||
|
|
|
@ -0,0 +1,370 @@
|
||||||
|
/*
|
||||||
|
* Copyright (C) 2003-2011 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 "input/soup_input_plugin.h"
|
||||||
|
#include "input_plugin.h"
|
||||||
|
#include "io_thread.h"
|
||||||
|
#include "conf.h"
|
||||||
|
|
||||||
|
#include <libsoup/soup-uri.h>
|
||||||
|
#include <libsoup/soup-session-async.h>
|
||||||
|
|
||||||
|
#include <assert.h>
|
||||||
|
#include <string.h>
|
||||||
|
|
||||||
|
#undef G_LOG_DOMAIN
|
||||||
|
#define G_LOG_DOMAIN "input_soup"
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Do not buffer more than this number of bytes. It should be a
|
||||||
|
* reasonable limit that doesn't make low-end machines suffer too
|
||||||
|
* much, but doesn't cause stuttering on high-latency lines.
|
||||||
|
*/
|
||||||
|
static const size_t SOUP_MAX_BUFFERED = 512 * 1024;
|
||||||
|
|
||||||
|
static SoupURI *soup_proxy;
|
||||||
|
static SoupSession *soup_session;
|
||||||
|
|
||||||
|
struct input_soup {
|
||||||
|
struct input_stream base;
|
||||||
|
|
||||||
|
GMutex *mutex;
|
||||||
|
GCond *cond;
|
||||||
|
|
||||||
|
SoupMessage *msg;
|
||||||
|
|
||||||
|
GQueue *buffers;
|
||||||
|
|
||||||
|
size_t current_consumed;
|
||||||
|
|
||||||
|
size_t total_buffered;
|
||||||
|
|
||||||
|
bool alive, ready, pause, eof;
|
||||||
|
};
|
||||||
|
|
||||||
|
static inline GQuark
|
||||||
|
soup_quark(void)
|
||||||
|
{
|
||||||
|
return g_quark_from_static_string("soup");
|
||||||
|
}
|
||||||
|
|
||||||
|
static bool
|
||||||
|
input_soup_init(const struct config_param *param, GError **error_r)
|
||||||
|
{
|
||||||
|
assert(soup_proxy == NULL);
|
||||||
|
assert(soup_session == NULL);
|
||||||
|
|
||||||
|
g_type_init();
|
||||||
|
|
||||||
|
const char *proxy = config_get_block_string(param, "proxy", NULL);
|
||||||
|
|
||||||
|
if (proxy != NULL) {
|
||||||
|
soup_proxy = soup_uri_new(proxy);
|
||||||
|
if (soup_proxy == NULL) {
|
||||||
|
g_set_error(error_r, soup_quark(), 0,
|
||||||
|
"failed to parse proxy setting");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
soup_session =
|
||||||
|
soup_session_async_new_with_options(SOUP_SESSION_PROXY_URI,
|
||||||
|
soup_proxy,
|
||||||
|
SOUP_SESSION_ASYNC_CONTEXT,
|
||||||
|
io_thread_context(),
|
||||||
|
NULL);
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
input_soup_finish(void)
|
||||||
|
{
|
||||||
|
assert(soup_session != NULL);
|
||||||
|
|
||||||
|
soup_session_abort(soup_session);
|
||||||
|
g_object_unref(G_OBJECT(soup_session));
|
||||||
|
|
||||||
|
if (soup_proxy != NULL)
|
||||||
|
soup_uri_free(soup_proxy);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
input_soup_session_callback(G_GNUC_UNUSED SoupSession *session,
|
||||||
|
G_GNUC_UNUSED SoupMessage *msg, gpointer user_data)
|
||||||
|
{
|
||||||
|
struct input_soup *s = user_data;
|
||||||
|
|
||||||
|
assert(msg == s->msg);
|
||||||
|
|
||||||
|
g_mutex_lock(s->mutex);
|
||||||
|
s->alive = false;
|
||||||
|
g_cond_broadcast(s->cond);
|
||||||
|
g_mutex_unlock(s->mutex);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
input_soup_got_headers(SoupMessage *msg, gpointer user_data)
|
||||||
|
{
|
||||||
|
struct input_soup *s = user_data;
|
||||||
|
|
||||||
|
if (!SOUP_STATUS_IS_SUCCESSFUL(msg->status_code)) {
|
||||||
|
soup_session_cancel_message(soup_session, msg,
|
||||||
|
SOUP_STATUS_CANCELLED);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
soup_message_body_set_accumulate(msg->response_body, false);
|
||||||
|
|
||||||
|
g_mutex_lock(s->mutex);
|
||||||
|
s->ready = true;
|
||||||
|
g_cond_broadcast(s->cond);
|
||||||
|
g_mutex_unlock(s->mutex);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
input_soup_got_chunk(SoupMessage *msg, SoupBuffer *chunk, gpointer user_data)
|
||||||
|
{
|
||||||
|
struct input_soup *s = user_data;
|
||||||
|
|
||||||
|
assert(msg == s->msg);
|
||||||
|
|
||||||
|
g_mutex_lock(s->mutex);
|
||||||
|
|
||||||
|
g_queue_push_tail(s->buffers, soup_buffer_copy(chunk));
|
||||||
|
s->total_buffered += chunk->length;
|
||||||
|
|
||||||
|
if (s->total_buffered >= SOUP_MAX_BUFFERED && !s->pause) {
|
||||||
|
s->pause = true;
|
||||||
|
soup_session_pause_message(soup_session, msg);
|
||||||
|
}
|
||||||
|
|
||||||
|
g_cond_broadcast(s->cond);
|
||||||
|
g_mutex_unlock(s->mutex);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
input_soup_got_body(SoupMessage *msg, gpointer user_data)
|
||||||
|
{
|
||||||
|
struct input_soup *s = user_data;
|
||||||
|
|
||||||
|
assert(msg == s->msg);
|
||||||
|
|
||||||
|
g_mutex_lock(s->mutex);
|
||||||
|
|
||||||
|
s->eof = true;
|
||||||
|
s->alive = false;
|
||||||
|
|
||||||
|
g_cond_broadcast(s->cond);
|
||||||
|
g_mutex_unlock(s->mutex);
|
||||||
|
}
|
||||||
|
|
||||||
|
static bool
|
||||||
|
input_soup_wait_data(struct input_soup *s)
|
||||||
|
{
|
||||||
|
while (true) {
|
||||||
|
if (s->eof)
|
||||||
|
return true;
|
||||||
|
|
||||||
|
if (!s->alive)
|
||||||
|
return false;
|
||||||
|
|
||||||
|
if (!g_queue_is_empty(s->buffers))
|
||||||
|
return true;
|
||||||
|
|
||||||
|
assert(s->current_consumed == 0);
|
||||||
|
|
||||||
|
g_cond_wait(s->cond, s->mutex);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static struct input_stream *
|
||||||
|
input_soup_open(const char *uri, G_GNUC_UNUSED GError **error_r)
|
||||||
|
{
|
||||||
|
if (strncmp(uri, "http://", 7) != 0)
|
||||||
|
return NULL;
|
||||||
|
|
||||||
|
struct input_soup *s = g_new(struct input_soup, 1);
|
||||||
|
input_stream_init(&s->base, &input_plugin_soup, uri);
|
||||||
|
|
||||||
|
s->mutex = g_mutex_new();
|
||||||
|
s->cond = g_cond_new();
|
||||||
|
|
||||||
|
s->buffers = g_queue_new();
|
||||||
|
s->current_consumed = 0;
|
||||||
|
s->total_buffered = 0;
|
||||||
|
|
||||||
|
s->msg = soup_message_new(SOUP_METHOD_GET, uri);
|
||||||
|
soup_message_set_flags(s->msg, SOUP_MESSAGE_NO_REDIRECT);
|
||||||
|
|
||||||
|
soup_message_headers_append(s->msg->request_headers, "User-Agent",
|
||||||
|
"Music Player Daemon " VERSION);
|
||||||
|
|
||||||
|
g_signal_connect(s->msg, "got-headers",
|
||||||
|
G_CALLBACK(input_soup_got_headers), s);
|
||||||
|
g_signal_connect(s->msg, "got-chunk",
|
||||||
|
G_CALLBACK(input_soup_got_chunk), s);
|
||||||
|
g_signal_connect(s->msg, "got-body",
|
||||||
|
G_CALLBACK(input_soup_got_body), s);
|
||||||
|
|
||||||
|
s->alive = true;
|
||||||
|
s->ready = false;
|
||||||
|
s->pause = false;
|
||||||
|
s->eof = false;
|
||||||
|
|
||||||
|
soup_session_queue_message(soup_session, s->msg,
|
||||||
|
input_soup_session_callback, s);
|
||||||
|
|
||||||
|
return &s->base;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
input_soup_close(struct input_stream *is)
|
||||||
|
{
|
||||||
|
struct input_soup *s = (struct input_soup *)is;
|
||||||
|
|
||||||
|
g_mutex_lock(s->mutex);
|
||||||
|
|
||||||
|
if (s->alive) {
|
||||||
|
assert(s->msg != NULL);
|
||||||
|
|
||||||
|
soup_session_cancel_message(soup_session, s->msg,
|
||||||
|
SOUP_STATUS_CANCELLED);
|
||||||
|
s->alive = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
g_mutex_unlock(s->mutex);
|
||||||
|
}
|
||||||
|
|
||||||
|
static int
|
||||||
|
input_soup_buffer(struct input_stream *is, GError **error_r)
|
||||||
|
{
|
||||||
|
struct input_soup *s = (struct input_soup *)is;
|
||||||
|
|
||||||
|
g_mutex_lock(s->mutex);
|
||||||
|
|
||||||
|
if (s->pause) {
|
||||||
|
if (s->total_buffered >= SOUP_MAX_BUFFERED) {
|
||||||
|
g_mutex_unlock(s->mutex);
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
s->pause = false;
|
||||||
|
soup_session_unpause_message(soup_session, s->msg);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
bool success = input_soup_wait_data(s);
|
||||||
|
s->base.ready = s->ready;
|
||||||
|
g_mutex_unlock(s->mutex);
|
||||||
|
|
||||||
|
if (!success) {
|
||||||
|
g_set_error_literal(error_r, soup_quark(), 0, "HTTP failure");
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
static size_t
|
||||||
|
input_soup_read(struct input_stream *is, void *ptr, size_t size,
|
||||||
|
G_GNUC_UNUSED GError **error_r)
|
||||||
|
{
|
||||||
|
struct input_soup *s = (struct input_soup *)is;
|
||||||
|
|
||||||
|
g_mutex_lock(s->mutex);
|
||||||
|
|
||||||
|
if (!input_soup_wait_data(s)) {
|
||||||
|
assert(!s->alive);
|
||||||
|
g_mutex_unlock(s->mutex);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
s->base.ready = s->ready;
|
||||||
|
|
||||||
|
char *p0 = ptr, *p = p0, *p_end = p0 + size;
|
||||||
|
|
||||||
|
while (p < p_end) {
|
||||||
|
SoupBuffer *buffer = g_queue_pop_head(s->buffers);
|
||||||
|
if (buffer == NULL) {
|
||||||
|
assert(s->current_consumed == 0);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
assert(s->current_consumed < buffer->length);
|
||||||
|
assert(s->total_buffered >= buffer->length);
|
||||||
|
|
||||||
|
const char *q = buffer->data;
|
||||||
|
q += s->current_consumed;
|
||||||
|
|
||||||
|
size_t remaining = buffer->length - s->current_consumed;
|
||||||
|
size_t nbytes = p_end - p;
|
||||||
|
if (nbytes > remaining)
|
||||||
|
nbytes = remaining;
|
||||||
|
|
||||||
|
memcpy(p, q, nbytes);
|
||||||
|
p += nbytes;
|
||||||
|
|
||||||
|
s->current_consumed += remaining;
|
||||||
|
if (s->current_consumed >= buffer->length) {
|
||||||
|
/* done with this buffer */
|
||||||
|
s->total_buffered -= buffer->length;
|
||||||
|
soup_buffer_free(buffer);
|
||||||
|
s->current_consumed = 0;
|
||||||
|
} else {
|
||||||
|
/* partial read */
|
||||||
|
assert(p == p_end);
|
||||||
|
|
||||||
|
g_queue_push_head(s->buffers, buffer);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (s->pause && s->total_buffered < SOUP_MAX_BUFFERED) {
|
||||||
|
s->pause = false;
|
||||||
|
soup_session_unpause_message(soup_session, s->msg);
|
||||||
|
}
|
||||||
|
|
||||||
|
size_t nbytes = p - p0;
|
||||||
|
s->base.offset += nbytes;
|
||||||
|
|
||||||
|
g_mutex_unlock(s->mutex);
|
||||||
|
return nbytes;
|
||||||
|
}
|
||||||
|
|
||||||
|
static bool
|
||||||
|
input_soup_eof(G_GNUC_UNUSED struct input_stream *is)
|
||||||
|
{
|
||||||
|
struct input_soup *s = (struct input_soup *)is;
|
||||||
|
|
||||||
|
return !s->alive && g_queue_is_empty(s->buffers);
|
||||||
|
}
|
||||||
|
|
||||||
|
const struct input_plugin input_plugin_soup = {
|
||||||
|
.name = "soup",
|
||||||
|
.init = input_soup_init,
|
||||||
|
.finish = input_soup_finish,
|
||||||
|
|
||||||
|
.open = input_soup_open,
|
||||||
|
.close = input_soup_close,
|
||||||
|
.buffer = input_soup_buffer,
|
||||||
|
.read = input_soup_read,
|
||||||
|
.eof = input_soup_eof,
|
||||||
|
};
|
|
@ -0,0 +1,25 @@
|
||||||
|
/*
|
||||||
|
* Copyright (C) 2003-2011 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.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef MPD_INPUT_SOUP_H
|
||||||
|
#define MPD_INPUT_SOUP_H
|
||||||
|
|
||||||
|
extern const struct input_plugin input_plugin_soup;
|
||||||
|
|
||||||
|
#endif
|
|
@ -29,6 +29,10 @@
|
||||||
#include "input/curl_input_plugin.h"
|
#include "input/curl_input_plugin.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef ENABLE_SOUP
|
||||||
|
#include "input/soup_input_plugin.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef HAVE_FFMPEG
|
#ifdef HAVE_FFMPEG
|
||||||
#include "input/ffmpeg_input_plugin.h"
|
#include "input/ffmpeg_input_plugin.h"
|
||||||
#endif
|
#endif
|
||||||
|
@ -55,6 +59,9 @@ const struct input_plugin *const input_plugins[] = {
|
||||||
#ifdef ENABLE_CURL
|
#ifdef ENABLE_CURL
|
||||||
&input_plugin_curl,
|
&input_plugin_curl,
|
||||||
#endif
|
#endif
|
||||||
|
#ifdef ENABLE_SOUP
|
||||||
|
&input_plugin_soup,
|
||||||
|
#endif
|
||||||
#ifdef HAVE_FFMPEG
|
#ifdef HAVE_FFMPEG
|
||||||
&input_plugin_ffmpeg,
|
&input_plugin_ffmpeg,
|
||||||
#endif
|
#endif
|
||||||
|
|
2
src/ls.c
2
src/ls.c
|
@ -32,7 +32,7 @@
|
||||||
* connected by IPC socket.
|
* connected by IPC socket.
|
||||||
*/
|
*/
|
||||||
static const char *remoteUrlPrefixes[] = {
|
static const char *remoteUrlPrefixes[] = {
|
||||||
#ifdef ENABLE_CURL
|
#if defined(ENABLE_CURL) || defined(ENABLE_SOUP)
|
||||||
"http://",
|
"http://",
|
||||||
#endif
|
#endif
|
||||||
#ifdef ENABLE_MMS
|
#ifdef ENABLE_MMS
|
||||||
|
|
|
@ -18,6 +18,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
|
#include "io_thread.h"
|
||||||
#include "input_init.h"
|
#include "input_init.h"
|
||||||
#include "input_stream.h"
|
#include "input_stream.h"
|
||||||
#include "tag_pool.h"
|
#include "tag_pool.h"
|
||||||
|
@ -30,6 +31,7 @@
|
||||||
#include <glib.h>
|
#include <glib.h>
|
||||||
|
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
|
||||||
static void
|
static void
|
||||||
my_log_func(const gchar *log_domain, G_GNUC_UNUSED GLogLevelFlags log_level,
|
my_log_func(const gchar *log_domain, G_GNUC_UNUSED GLogLevelFlags log_level,
|
||||||
|
@ -73,6 +75,13 @@ int main(int argc, char **argv)
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
io_thread_init();
|
||||||
|
if (!io_thread_start(&error)) {
|
||||||
|
g_warning("%s", error->message);
|
||||||
|
g_error_free(error);
|
||||||
|
return EXIT_FAILURE;
|
||||||
|
}
|
||||||
|
|
||||||
if (!input_stream_global_init(&error)) {
|
if (!input_stream_global_init(&error)) {
|
||||||
g_warning("%s", error->message);
|
g_warning("%s", error->message);
|
||||||
g_error_free(error);
|
g_error_free(error);
|
||||||
|
@ -150,6 +159,7 @@ int main(int argc, char **argv)
|
||||||
input_stream_close(is);
|
input_stream_close(is);
|
||||||
playlist_list_global_finish();
|
playlist_list_global_finish();
|
||||||
input_stream_global_finish();
|
input_stream_global_finish();
|
||||||
|
io_thread_deinit();
|
||||||
config_global_finish();
|
config_global_finish();
|
||||||
tag_pool_deinit();
|
tag_pool_deinit();
|
||||||
|
|
||||||
|
|
|
@ -18,6 +18,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
|
#include "io_thread.h"
|
||||||
#include "decoder_list.h"
|
#include "decoder_list.h"
|
||||||
#include "decoder_api.h"
|
#include "decoder_api.h"
|
||||||
#include "input_init.h"
|
#include "input_init.h"
|
||||||
|
@ -32,6 +33,7 @@
|
||||||
|
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
|
||||||
#ifdef HAVE_LOCALE_H
|
#ifdef HAVE_LOCALE_H
|
||||||
#include <locale.h>
|
#include <locale.h>
|
||||||
|
@ -164,6 +166,13 @@ int main(int argc, char **argv)
|
||||||
decoder_name = argv[1];
|
decoder_name = argv[1];
|
||||||
path = argv[2];
|
path = argv[2];
|
||||||
|
|
||||||
|
io_thread_init();
|
||||||
|
if (!io_thread_start(&error)) {
|
||||||
|
g_warning("%s", error->message);
|
||||||
|
g_error_free(error);
|
||||||
|
return EXIT_FAILURE;
|
||||||
|
}
|
||||||
|
|
||||||
if (!input_stream_global_init(&error)) {
|
if (!input_stream_global_init(&error)) {
|
||||||
g_warning("%s", error->message);
|
g_warning("%s", error->message);
|
||||||
g_error_free(error);
|
g_error_free(error);
|
||||||
|
@ -195,6 +204,8 @@ int main(int argc, char **argv)
|
||||||
|
|
||||||
decoder_plugin_deinit_all();
|
decoder_plugin_deinit_all();
|
||||||
input_stream_global_finish();
|
input_stream_global_finish();
|
||||||
|
io_thread_deinit();
|
||||||
|
|
||||||
if (tag == NULL) {
|
if (tag == NULL) {
|
||||||
g_printerr("Failed to read tags\n");
|
g_printerr("Failed to read tags\n");
|
||||||
return 1;
|
return 1;
|
||||||
|
|
|
@ -18,6 +18,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
|
#include "io_thread.h"
|
||||||
#include "decoder_list.h"
|
#include "decoder_list.h"
|
||||||
#include "decoder_api.h"
|
#include "decoder_api.h"
|
||||||
#include "input_init.h"
|
#include "input_init.h"
|
||||||
|
@ -31,6 +32,7 @@
|
||||||
|
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
|
||||||
static void
|
static void
|
||||||
my_log_func(const gchar *log_domain, G_GNUC_UNUSED GLogLevelFlags log_level,
|
my_log_func(const gchar *log_domain, G_GNUC_UNUSED GLogLevelFlags log_level,
|
||||||
|
@ -180,6 +182,13 @@ int main(int argc, char **argv)
|
||||||
|
|
||||||
g_log_set_default_handler(my_log_func, NULL);
|
g_log_set_default_handler(my_log_func, NULL);
|
||||||
|
|
||||||
|
io_thread_init();
|
||||||
|
if (!io_thread_start(&error)) {
|
||||||
|
g_warning("%s", error->message);
|
||||||
|
g_error_free(error);
|
||||||
|
return EXIT_FAILURE;
|
||||||
|
}
|
||||||
|
|
||||||
if (!input_stream_global_init(&error)) {
|
if (!input_stream_global_init(&error)) {
|
||||||
g_warning("%s", error->message);
|
g_warning("%s", error->message);
|
||||||
g_error_free(error);
|
g_error_free(error);
|
||||||
|
@ -222,6 +231,7 @@ int main(int argc, char **argv)
|
||||||
|
|
||||||
decoder_plugin_deinit_all();
|
decoder_plugin_deinit_all();
|
||||||
input_stream_global_finish();
|
input_stream_global_finish();
|
||||||
|
io_thread_deinit();
|
||||||
|
|
||||||
if (!decoder.initialized) {
|
if (!decoder.initialized) {
|
||||||
g_printerr("Decoding failed\n");
|
g_printerr("Decoding failed\n");
|
||||||
|
|
|
@ -18,6 +18,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
|
#include "io_thread.h"
|
||||||
#include "input_init.h"
|
#include "input_init.h"
|
||||||
#include "input_stream.h"
|
#include "input_stream.h"
|
||||||
#include "tag_pool.h"
|
#include "tag_pool.h"
|
||||||
|
@ -32,6 +33,7 @@
|
||||||
#include <glib.h>
|
#include <glib.h>
|
||||||
|
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
|
||||||
static void
|
static void
|
||||||
my_log_func(const gchar *log_domain, G_GNUC_UNUSED GLogLevelFlags log_level,
|
my_log_func(const gchar *log_domain, G_GNUC_UNUSED GLogLevelFlags log_level,
|
||||||
|
@ -122,6 +124,13 @@ int main(int argc, char **argv)
|
||||||
tag_pool_init();
|
tag_pool_init();
|
||||||
config_global_init();
|
config_global_init();
|
||||||
|
|
||||||
|
io_thread_init();
|
||||||
|
if (!io_thread_start(&error)) {
|
||||||
|
g_warning("%s", error->message);
|
||||||
|
g_error_free(error);
|
||||||
|
return EXIT_FAILURE;
|
||||||
|
}
|
||||||
|
|
||||||
#ifdef ENABLE_ARCHIVE
|
#ifdef ENABLE_ARCHIVE
|
||||||
archive_plugin_init_all();
|
archive_plugin_init_all();
|
||||||
#endif
|
#endif
|
||||||
|
@ -155,6 +164,8 @@ int main(int argc, char **argv)
|
||||||
archive_plugin_deinit_all();
|
archive_plugin_deinit_all();
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
io_thread_deinit();
|
||||||
|
|
||||||
config_global_finish();
|
config_global_finish();
|
||||||
tag_pool_deinit();
|
tag_pool_deinit();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue