httpd: new output plugin to replace "shout"
Let's get rid of the "shout" plugin, and the awfully complicated
icecast daemon setup! MPD can do better if it's doing the HTTP server
stuff on its own. This new plugin has several advantages:
- easier to set up - only one daemon, no password settings, no mount
settings
- MPD controls the encoder and thus already knows the packet
boundaries - icecast has to parse them
- MPD doesn't bother to encode data while nobody is listening
This implementation is very experimental (no header parsing, ignores
request URI, no icy-metadata, ...). It should be able to suport
several encoders in parallel in the future (with different bit rates,
different codec, ...), to make MPD the perfect streaming server. Once
MPD gets multi-player support, we can even mount several different
radio stations on one server.
2009-03-15 03:32:34 +01:00
|
|
|
/*
|
2013-01-15 18:22:17 +01:00
|
|
|
* Copyright (C) 2003-2013 The Music Player Daemon Project
|
httpd: new output plugin to replace "shout"
Let's get rid of the "shout" plugin, and the awfully complicated
icecast daemon setup! MPD can do better if it's doing the HTTP server
stuff on its own. This new plugin has several advantages:
- easier to set up - only one daemon, no password settings, no mount
settings
- MPD controls the encoder and thus already knows the packet
boundaries - icecast has to parse them
- MPD doesn't bother to encode data while nobody is listening
This implementation is very experimental (no header parsing, ignores
request URI, no icy-metadata, ...). It should be able to suport
several encoders in parallel in the future (with different bit rates,
different codec, ...), to make MPD the perfect streaming server. Once
MPD gets multi-player support, we can even mount several different
radio stations on one server.
2009-03-15 03:32:34 +01:00
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2009-11-12 09:12:38 +01:00
|
|
|
#include "config.h"
|
2013-01-15 18:22:17 +01:00
|
|
|
#include "HttpdOutputPlugin.hxx"
|
|
|
|
#include "HttpdInternal.hxx"
|
|
|
|
#include "HttpdClient.hxx"
|
httpd: new output plugin to replace "shout"
Let's get rid of the "shout" plugin, and the awfully complicated
icecast daemon setup! MPD can do better if it's doing the HTTP server
stuff on its own. This new plugin has several advantages:
- easier to set up - only one daemon, no password settings, no mount
settings
- MPD controls the encoder and thus already knows the packet
boundaries - icecast has to parse them
- MPD doesn't bother to encode data while nobody is listening
This implementation is very experimental (no header parsing, ignores
request URI, no icy-metadata, ...). It should be able to suport
several encoders in parallel in the future (with different bit rates,
different codec, ...), to make MPD the perfect streaming server. Once
MPD gets multi-player support, we can even mount several different
radio stations on one server.
2009-03-15 03:32:34 +01:00
|
|
|
#include "output_api.h"
|
|
|
|
#include "encoder_plugin.h"
|
|
|
|
#include "encoder_list.h"
|
2011-09-20 07:56:59 +02:00
|
|
|
#include "resolver.h"
|
2013-01-30 09:18:52 +01:00
|
|
|
#include "Page.hxx"
|
2013-01-30 09:08:50 +01:00
|
|
|
#include "IcyMetaDataServer.hxx"
|
2009-11-07 18:55:16 +01:00
|
|
|
#include "fd_util.h"
|
2013-01-30 13:39:12 +01:00
|
|
|
#include "event/ServerSocket.hxx"
|
2013-01-15 22:50:49 +01:00
|
|
|
#include "Main.hxx"
|
httpd: new output plugin to replace "shout"
Let's get rid of the "shout" plugin, and the awfully complicated
icecast daemon setup! MPD can do better if it's doing the HTTP server
stuff on its own. This new plugin has several advantages:
- easier to set up - only one daemon, no password settings, no mount
settings
- MPD controls the encoder and thus already knows the packet
boundaries - icecast has to parse them
- MPD doesn't bother to encode data while nobody is listening
This implementation is very experimental (no header parsing, ignores
request URI, no icy-metadata, ...). It should be able to suport
several encoders in parallel in the future (with different bit rates,
different codec, ...), to make MPD the perfect streaming server. Once
MPD gets multi-player support, we can even mount several different
radio stations on one server.
2009-03-15 03:32:34 +01:00
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
|
2009-07-06 14:40:06 +02:00
|
|
|
#include <sys/types.h>
|
httpd: new output plugin to replace "shout"
Let's get rid of the "shout" plugin, and the awfully complicated
icecast daemon setup! MPD can do better if it's doing the HTTP server
stuff on its own. This new plugin has several advantages:
- easier to set up - only one daemon, no password settings, no mount
settings
- MPD controls the encoder and thus already knows the packet
boundaries - icecast has to parse them
- MPD doesn't bother to encode data while nobody is listening
This implementation is very experimental (no header parsing, ignores
request URI, no icy-metadata, ...). It should be able to suport
several encoders in parallel in the future (with different bit rates,
different codec, ...), to make MPD the perfect streaming server. Once
MPD gets multi-player support, we can even mount several different
radio stations on one server.
2009-03-15 03:32:34 +01:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <errno.h>
|
|
|
|
|
2010-06-06 21:53:24 +02:00
|
|
|
#ifdef HAVE_LIBWRAP
|
2011-03-18 19:44:12 +01:00
|
|
|
#include <sys/socket.h> /* needed for AF_UNIX */
|
2010-06-06 21:53:24 +02:00
|
|
|
#include <tcpd.h>
|
|
|
|
#endif
|
|
|
|
|
httpd: new output plugin to replace "shout"
Let's get rid of the "shout" plugin, and the awfully complicated
icecast daemon setup! MPD can do better if it's doing the HTTP server
stuff on its own. This new plugin has several advantages:
- easier to set up - only one daemon, no password settings, no mount
settings
- MPD controls the encoder and thus already knows the packet
boundaries - icecast has to parse them
- MPD doesn't bother to encode data while nobody is listening
This implementation is very experimental (no header parsing, ignores
request URI, no icy-metadata, ...). It should be able to suport
several encoders in parallel in the future (with different bit rates,
different codec, ...), to make MPD the perfect streaming server. Once
MPD gets multi-player support, we can even mount several different
radio stations on one server.
2009-03-15 03:32:34 +01:00
|
|
|
#undef G_LOG_DOMAIN
|
|
|
|
#define G_LOG_DOMAIN "httpd_output"
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The quark used for GError.domain.
|
|
|
|
*/
|
|
|
|
static inline GQuark
|
|
|
|
httpd_output_quark(void)
|
|
|
|
{
|
|
|
|
return g_quark_from_static_string("httpd_output");
|
|
|
|
}
|
|
|
|
|
2010-10-05 20:37:18 +02:00
|
|
|
static void
|
|
|
|
httpd_listen_in_event(int fd, const struct sockaddr *address,
|
|
|
|
size_t address_length, int uid, void *ctx);
|
2009-11-07 16:52:44 +01:00
|
|
|
|
2013-01-30 13:29:21 +01:00
|
|
|
inline
|
|
|
|
HttpdOutput::HttpdOutput(EventLoop &_loop)
|
|
|
|
:encoder(nullptr), unflushed_input(0),
|
|
|
|
server_socket(new ServerSocket(_loop, httpd_listen_in_event, this)),
|
|
|
|
metadata(nullptr)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
HttpdOutput::~HttpdOutput()
|
|
|
|
{
|
|
|
|
if (metadata != nullptr)
|
|
|
|
metadata->Unref();
|
|
|
|
|
|
|
|
if (encoder != nullptr)
|
|
|
|
encoder_finish(encoder);
|
|
|
|
|
|
|
|
delete server_socket;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-01-27 23:23:46 +01:00
|
|
|
inline bool
|
|
|
|
HttpdOutput::Bind(GError **error_r)
|
2009-11-07 16:52:44 +01:00
|
|
|
{
|
2013-01-27 23:23:46 +01:00
|
|
|
open = false;
|
2009-11-07 16:52:44 +01:00
|
|
|
|
2013-01-27 23:23:46 +01:00
|
|
|
const ScopeLock protect(mutex);
|
2013-01-30 12:56:23 +01:00
|
|
|
return server_socket->Open(error_r);
|
2009-11-07 16:52:44 +01:00
|
|
|
}
|
|
|
|
|
2013-01-27 23:23:46 +01:00
|
|
|
inline void
|
|
|
|
HttpdOutput::Unbind()
|
2009-11-07 16:52:44 +01:00
|
|
|
{
|
2013-01-27 23:23:46 +01:00
|
|
|
assert(!open);
|
2009-11-07 16:52:44 +01:00
|
|
|
|
2013-01-27 23:23:46 +01:00
|
|
|
const ScopeLock protect(mutex);
|
2013-01-30 12:56:23 +01:00
|
|
|
server_socket->Close();
|
2009-11-07 16:52:44 +01:00
|
|
|
}
|
|
|
|
|
2013-01-30 13:29:21 +01:00
|
|
|
inline bool
|
|
|
|
HttpdOutput::Configure(const config_param *param, GError **error_r)
|
httpd: new output plugin to replace "shout"
Let's get rid of the "shout" plugin, and the awfully complicated
icecast daemon setup! MPD can do better if it's doing the HTTP server
stuff on its own. This new plugin has several advantages:
- easier to set up - only one daemon, no password settings, no mount
settings
- MPD controls the encoder and thus already knows the packet
boundaries - icecast has to parse them
- MPD doesn't bother to encode data while nobody is listening
This implementation is very experimental (no header parsing, ignores
request URI, no icy-metadata, ...). It should be able to suport
several encoders in parallel in the future (with different bit rates,
different codec, ...), to make MPD the perfect streaming server. Once
MPD gets multi-player support, we can even mount several different
radio stations on one server.
2009-03-15 03:32:34 +01:00
|
|
|
{
|
|
|
|
/* read configuration */
|
2013-01-30 13:29:21 +01:00
|
|
|
name = config_get_block_string(param, "name", "Set name in config");
|
|
|
|
genre = config_get_block_string(param, "genre", "Set genre in config");
|
|
|
|
website = config_get_block_string(param, "website",
|
|
|
|
"Set website in config");
|
httpd: new output plugin to replace "shout"
Let's get rid of the "shout" plugin, and the awfully complicated
icecast daemon setup! MPD can do better if it's doing the HTTP server
stuff on its own. This new plugin has several advantages:
- easier to set up - only one daemon, no password settings, no mount
settings
- MPD controls the encoder and thus already knows the packet
boundaries - icecast has to parse them
- MPD doesn't bother to encode data while nobody is listening
This implementation is very experimental (no header parsing, ignores
request URI, no icy-metadata, ...). It should be able to suport
several encoders in parallel in the future (with different bit rates,
different codec, ...), to make MPD the perfect streaming server. Once
MPD gets multi-player support, we can even mount several different
radio stations on one server.
2009-03-15 03:32:34 +01:00
|
|
|
|
2012-10-01 23:52:40 +02:00
|
|
|
guint port = config_get_block_unsigned(param, "port", 8000);
|
httpd: new output plugin to replace "shout"
Let's get rid of the "shout" plugin, and the awfully complicated
icecast daemon setup! MPD can do better if it's doing the HTTP server
stuff on its own. This new plugin has several advantages:
- easier to set up - only one daemon, no password settings, no mount
settings
- MPD controls the encoder and thus already knows the packet
boundaries - icecast has to parse them
- MPD doesn't bother to encode data while nobody is listening
This implementation is very experimental (no header parsing, ignores
request URI, no icy-metadata, ...). It should be able to suport
several encoders in parallel in the future (with different bit rates,
different codec, ...), to make MPD the perfect streaming server. Once
MPD gets multi-player support, we can even mount several different
radio stations on one server.
2009-03-15 03:32:34 +01:00
|
|
|
|
2012-10-01 23:52:40 +02:00
|
|
|
const char *encoder_name =
|
|
|
|
config_get_block_string(param, "encoder", "vorbis");
|
|
|
|
const struct encoder_plugin *encoder_plugin =
|
|
|
|
encoder_plugin_get(encoder_name);
|
2009-03-17 06:52:23 +01:00
|
|
|
if (encoder_plugin == NULL) {
|
2013-01-30 13:29:21 +01:00
|
|
|
g_set_error(error_r, httpd_output_quark(), 0,
|
httpd: new output plugin to replace "shout"
Let's get rid of the "shout" plugin, and the awfully complicated
icecast daemon setup! MPD can do better if it's doing the HTTP server
stuff on its own. This new plugin has several advantages:
- easier to set up - only one daemon, no password settings, no mount
settings
- MPD controls the encoder and thus already knows the packet
boundaries - icecast has to parse them
- MPD doesn't bother to encode data while nobody is listening
This implementation is very experimental (no header parsing, ignores
request URI, no icy-metadata, ...). It should be able to suport
several encoders in parallel in the future (with different bit rates,
different codec, ...), to make MPD the perfect streaming server. Once
MPD gets multi-player support, we can even mount several different
radio stations on one server.
2009-03-15 03:32:34 +01:00
|
|
|
"No such encoder: %s", encoder_name);
|
2013-01-30 13:29:21 +01:00
|
|
|
return false;
|
httpd: new output plugin to replace "shout"
Let's get rid of the "shout" plugin, and the awfully complicated
icecast daemon setup! MPD can do better if it's doing the HTTP server
stuff on its own. This new plugin has several advantages:
- easier to set up - only one daemon, no password settings, no mount
settings
- MPD controls the encoder and thus already knows the packet
boundaries - icecast has to parse them
- MPD doesn't bother to encode data while nobody is listening
This implementation is very experimental (no header parsing, ignores
request URI, no icy-metadata, ...). It should be able to suport
several encoders in parallel in the future (with different bit rates,
different codec, ...), to make MPD the perfect streaming server. Once
MPD gets multi-player support, we can even mount several different
radio stations on one server.
2009-03-15 03:32:34 +01:00
|
|
|
}
|
|
|
|
|
2013-01-30 13:29:21 +01:00
|
|
|
clients_max = config_get_block_unsigned(param,"max_clients", 0);
|
2009-10-29 22:38:18 +01:00
|
|
|
|
2010-09-25 15:00:43 +02:00
|
|
|
/* set up bind_to_address */
|
2010-10-05 20:37:18 +02:00
|
|
|
|
2012-10-01 23:52:40 +02:00
|
|
|
const char *bind_to_address =
|
2010-10-05 20:37:18 +02:00
|
|
|
config_get_block_string(param, "bind_to_address", NULL);
|
|
|
|
bool success = bind_to_address != NULL &&
|
|
|
|
strcmp(bind_to_address, "any") != 0
|
2013-01-30 13:29:21 +01:00
|
|
|
? server_socket->AddHost(bind_to_address, port, error_r)
|
|
|
|
: server_socket->AddPort(port, error_r);
|
|
|
|
if (!success)
|
|
|
|
return false;
|
2009-04-13 19:35:02 +02:00
|
|
|
|
httpd: new output plugin to replace "shout"
Let's get rid of the "shout" plugin, and the awfully complicated
icecast daemon setup! MPD can do better if it's doing the HTTP server
stuff on its own. This new plugin has several advantages:
- easier to set up - only one daemon, no password settings, no mount
settings
- MPD controls the encoder and thus already knows the packet
boundaries - icecast has to parse them
- MPD doesn't bother to encode data while nobody is listening
This implementation is very experimental (no header parsing, ignores
request URI, no icy-metadata, ...). It should be able to suport
several encoders in parallel in the future (with different bit rates,
different codec, ...), to make MPD the perfect streaming server. Once
MPD gets multi-player support, we can even mount several different
radio stations on one server.
2009-03-15 03:32:34 +01:00
|
|
|
/* initialize encoder */
|
|
|
|
|
2013-01-30 13:29:21 +01:00
|
|
|
encoder = encoder_init(encoder_plugin, param, error_r);
|
|
|
|
if (encoder == nullptr)
|
|
|
|
return false;
|
httpd: new output plugin to replace "shout"
Let's get rid of the "shout" plugin, and the awfully complicated
icecast daemon setup! MPD can do better if it's doing the HTTP server
stuff on its own. This new plugin has several advantages:
- easier to set up - only one daemon, no password settings, no mount
settings
- MPD controls the encoder and thus already knows the packet
boundaries - icecast has to parse them
- MPD doesn't bother to encode data while nobody is listening
This implementation is very experimental (no header parsing, ignores
request URI, no icy-metadata, ...). It should be able to suport
several encoders in parallel in the future (with different bit rates,
different codec, ...), to make MPD the perfect streaming server. Once
MPD gets multi-player support, we can even mount several different
radio stations on one server.
2009-03-15 03:32:34 +01:00
|
|
|
|
2009-12-03 20:27:08 +01:00
|
|
|
/* determine content type */
|
2013-01-30 13:29:21 +01:00
|
|
|
content_type = encoder_get_mime_type(encoder);
|
|
|
|
if (content_type == nullptr)
|
|
|
|
content_type = "application/octet-stream";
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct audio_output *
|
|
|
|
httpd_output_init(const struct config_param *param,
|
|
|
|
GError **error_r)
|
|
|
|
{
|
|
|
|
HttpdOutput *httpd = new HttpdOutput(*main_loop);
|
|
|
|
|
|
|
|
if (!ao_base_init(&httpd->base, &httpd_output_plugin, param,
|
|
|
|
error_r)) {
|
|
|
|
delete httpd;
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!httpd->Configure(param, error_r)) {
|
|
|
|
ao_base_finish(&httpd->base);
|
|
|
|
delete httpd;
|
|
|
|
return nullptr;
|
2009-12-03 20:27:08 +01:00
|
|
|
}
|
|
|
|
|
2011-09-16 23:31:48 +02:00
|
|
|
return &httpd->base;
|
httpd: new output plugin to replace "shout"
Let's get rid of the "shout" plugin, and the awfully complicated
icecast daemon setup! MPD can do better if it's doing the HTTP server
stuff on its own. This new plugin has several advantages:
- easier to set up - only one daemon, no password settings, no mount
settings
- MPD controls the encoder and thus already knows the packet
boundaries - icecast has to parse them
- MPD doesn't bother to encode data while nobody is listening
This implementation is very experimental (no header parsing, ignores
request URI, no icy-metadata, ...). It should be able to suport
several encoders in parallel in the future (with different bit rates,
different codec, ...), to make MPD the perfect streaming server. Once
MPD gets multi-player support, we can even mount several different
radio stations on one server.
2009-03-15 03:32:34 +01:00
|
|
|
}
|
|
|
|
|
2013-01-30 14:14:42 +01:00
|
|
|
static inline constexpr HttpdOutput *
|
|
|
|
Cast(audio_output *ao)
|
|
|
|
{
|
|
|
|
return (HttpdOutput *)((char *)ao - offsetof(HttpdOutput, base));
|
|
|
|
}
|
|
|
|
|
httpd: new output plugin to replace "shout"
Let's get rid of the "shout" plugin, and the awfully complicated
icecast daemon setup! MPD can do better if it's doing the HTTP server
stuff on its own. This new plugin has several advantages:
- easier to set up - only one daemon, no password settings, no mount
settings
- MPD controls the encoder and thus already knows the packet
boundaries - icecast has to parse them
- MPD doesn't bother to encode data while nobody is listening
This implementation is very experimental (no header parsing, ignores
request URI, no icy-metadata, ...). It should be able to suport
several encoders in parallel in the future (with different bit rates,
different codec, ...), to make MPD the perfect streaming server. Once
MPD gets multi-player support, we can even mount several different
radio stations on one server.
2009-03-15 03:32:34 +01:00
|
|
|
static void
|
2011-09-16 23:31:48 +02:00
|
|
|
httpd_output_finish(struct audio_output *ao)
|
httpd: new output plugin to replace "shout"
Let's get rid of the "shout" plugin, and the awfully complicated
icecast daemon setup! MPD can do better if it's doing the HTTP server
stuff on its own. This new plugin has several advantages:
- easier to set up - only one daemon, no password settings, no mount
settings
- MPD controls the encoder and thus already knows the packet
boundaries - icecast has to parse them
- MPD doesn't bother to encode data while nobody is listening
This implementation is very experimental (no header parsing, ignores
request URI, no icy-metadata, ...). It should be able to suport
several encoders in parallel in the future (with different bit rates,
different codec, ...), to make MPD the perfect streaming server. Once
MPD gets multi-player support, we can even mount several different
radio stations on one server.
2009-03-15 03:32:34 +01:00
|
|
|
{
|
2013-01-30 14:14:42 +01:00
|
|
|
HttpdOutput *httpd = Cast(ao);
|
httpd: new output plugin to replace "shout"
Let's get rid of the "shout" plugin, and the awfully complicated
icecast daemon setup! MPD can do better if it's doing the HTTP server
stuff on its own. This new plugin has several advantages:
- easier to set up - only one daemon, no password settings, no mount
settings
- MPD controls the encoder and thus already knows the packet
boundaries - icecast has to parse them
- MPD doesn't bother to encode data while nobody is listening
This implementation is very experimental (no header parsing, ignores
request URI, no icy-metadata, ...). It should be able to suport
several encoders in parallel in the future (with different bit rates,
different codec, ...), to make MPD the perfect streaming server. Once
MPD gets multi-player support, we can even mount several different
radio stations on one server.
2009-03-15 03:32:34 +01:00
|
|
|
|
2011-09-16 23:31:48 +02:00
|
|
|
ao_base_finish(&httpd->base);
|
2013-01-15 18:22:17 +01:00
|
|
|
delete httpd;
|
httpd: new output plugin to replace "shout"
Let's get rid of the "shout" plugin, and the awfully complicated
icecast daemon setup! MPD can do better if it's doing the HTTP server
stuff on its own. This new plugin has several advantages:
- easier to set up - only one daemon, no password settings, no mount
settings
- MPD controls the encoder and thus already knows the packet
boundaries - icecast has to parse them
- MPD doesn't bother to encode data while nobody is listening
This implementation is very experimental (no header parsing, ignores
request URI, no icy-metadata, ...). It should be able to suport
several encoders in parallel in the future (with different bit rates,
different codec, ...), to make MPD the perfect streaming server. Once
MPD gets multi-player support, we can even mount several different
radio stations on one server.
2009-03-15 03:32:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2013-01-15 18:22:17 +01:00
|
|
|
* Creates a new #HttpdClient object and adds it into the
|
2013-01-27 23:21:39 +01:00
|
|
|
* HttpdOutput.clients linked list.
|
httpd: new output plugin to replace "shout"
Let's get rid of the "shout" plugin, and the awfully complicated
icecast daemon setup! MPD can do better if it's doing the HTTP server
stuff on its own. This new plugin has several advantages:
- easier to set up - only one daemon, no password settings, no mount
settings
- MPD controls the encoder and thus already knows the packet
boundaries - icecast has to parse them
- MPD doesn't bother to encode data while nobody is listening
This implementation is very experimental (no header parsing, ignores
request URI, no icy-metadata, ...). It should be able to suport
several encoders in parallel in the future (with different bit rates,
different codec, ...), to make MPD the perfect streaming server. Once
MPD gets multi-player support, we can even mount several different
radio stations on one server.
2009-03-15 03:32:34 +01:00
|
|
|
*/
|
2013-01-27 23:23:46 +01:00
|
|
|
inline void
|
|
|
|
HttpdOutput::AddClient(int fd)
|
httpd: new output plugin to replace "shout"
Let's get rid of the "shout" plugin, and the awfully complicated
icecast daemon setup! MPD can do better if it's doing the HTTP server
stuff on its own. This new plugin has several advantages:
- easier to set up - only one daemon, no password settings, no mount
settings
- MPD controls the encoder and thus already knows the packet
boundaries - icecast has to parse them
- MPD doesn't bother to encode data while nobody is listening
This implementation is very experimental (no header parsing, ignores
request URI, no icy-metadata, ...). It should be able to suport
several encoders in parallel in the future (with different bit rates,
different codec, ...), to make MPD the perfect streaming server. Once
MPD gets multi-player support, we can even mount several different
radio stations on one server.
2009-03-15 03:32:34 +01:00
|
|
|
{
|
2013-01-27 23:23:46 +01:00
|
|
|
clients.emplace_front(this, fd,
|
|
|
|
encoder->plugin->tag == NULL);
|
|
|
|
++clients_cnt;
|
2009-04-13 19:35:02 +02:00
|
|
|
|
|
|
|
/* pass metadata to client */
|
2013-01-27 23:23:46 +01:00
|
|
|
if (metadata != nullptr)
|
|
|
|
clients.front().PushMetaData(metadata);
|
httpd: new output plugin to replace "shout"
Let's get rid of the "shout" plugin, and the awfully complicated
icecast daemon setup! MPD can do better if it's doing the HTTP server
stuff on its own. This new plugin has several advantages:
- easier to set up - only one daemon, no password settings, no mount
settings
- MPD controls the encoder and thus already knows the packet
boundaries - icecast has to parse them
- MPD doesn't bother to encode data while nobody is listening
This implementation is very experimental (no header parsing, ignores
request URI, no icy-metadata, ...). It should be able to suport
several encoders in parallel in the future (with different bit rates,
different codec, ...), to make MPD the perfect streaming server. Once
MPD gets multi-player support, we can even mount several different
radio stations on one server.
2009-03-15 03:32:34 +01:00
|
|
|
}
|
|
|
|
|
2010-10-05 20:37:18 +02:00
|
|
|
static void
|
|
|
|
httpd_listen_in_event(int fd, const struct sockaddr *address,
|
|
|
|
size_t address_length, G_GNUC_UNUSED int uid, void *ctx)
|
httpd: new output plugin to replace "shout"
Let's get rid of the "shout" plugin, and the awfully complicated
icecast daemon setup! MPD can do better if it's doing the HTTP server
stuff on its own. This new plugin has several advantages:
- easier to set up - only one daemon, no password settings, no mount
settings
- MPD controls the encoder and thus already knows the packet
boundaries - icecast has to parse them
- MPD doesn't bother to encode data while nobody is listening
This implementation is very experimental (no header parsing, ignores
request URI, no icy-metadata, ...). It should be able to suport
several encoders in parallel in the future (with different bit rates,
different codec, ...), to make MPD the perfect streaming server. Once
MPD gets multi-player support, we can even mount several different
radio stations on one server.
2009-03-15 03:32:34 +01:00
|
|
|
{
|
2013-01-27 23:21:39 +01:00
|
|
|
HttpdOutput *httpd = (HttpdOutput *)ctx;
|
httpd: new output plugin to replace "shout"
Let's get rid of the "shout" plugin, and the awfully complicated
icecast daemon setup! MPD can do better if it's doing the HTTP server
stuff on its own. This new plugin has several advantages:
- easier to set up - only one daemon, no password settings, no mount
settings
- MPD controls the encoder and thus already knows the packet
boundaries - icecast has to parse them
- MPD doesn't bother to encode data while nobody is listening
This implementation is very experimental (no header parsing, ignores
request URI, no icy-metadata, ...). It should be able to suport
several encoders in parallel in the future (with different bit rates,
different codec, ...), to make MPD the perfect streaming server. Once
MPD gets multi-player support, we can even mount several different
radio stations on one server.
2009-03-15 03:32:34 +01:00
|
|
|
|
|
|
|
/* the listener socket has become readable - a client has
|
|
|
|
connected */
|
|
|
|
|
2010-06-06 21:53:24 +02:00
|
|
|
#ifdef HAVE_LIBWRAP
|
2010-10-05 20:37:18 +02:00
|
|
|
if (address->sa_family != AF_UNIX) {
|
|
|
|
char *hostaddr = sockaddr_to_string(address, address_length, NULL);
|
2010-06-06 21:53:24 +02:00
|
|
|
const char *progname = g_get_prgname();
|
|
|
|
|
|
|
|
struct request_info req;
|
|
|
|
request_init(&req, RQ_FILE, fd, RQ_DAEMON, progname, 0);
|
|
|
|
|
|
|
|
fromhost(&req);
|
|
|
|
|
|
|
|
if (!hosts_access(&req)) {
|
|
|
|
/* tcp wrappers says no */
|
|
|
|
g_warning("libwrap refused connection (libwrap=%s) from %s",
|
|
|
|
progname, hostaddr);
|
|
|
|
g_free(hostaddr);
|
2011-09-19 21:04:19 +02:00
|
|
|
close_socket(fd);
|
2010-10-05 20:37:18 +02:00
|
|
|
return;
|
2010-06-06 21:53:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
g_free(hostaddr);
|
|
|
|
}
|
2010-10-05 20:37:18 +02:00
|
|
|
#else
|
|
|
|
(void)address;
|
|
|
|
(void)address_length;
|
2010-06-06 21:53:24 +02:00
|
|
|
#endif /* HAVE_WRAP */
|
2010-10-05 20:37:18 +02:00
|
|
|
|
2013-01-15 18:22:17 +01:00
|
|
|
const ScopeLock protect(httpd->mutex);
|
2010-10-05 20:37:18 +02:00
|
|
|
|
2009-10-29 22:38:18 +01:00
|
|
|
if (fd >= 0) {
|
|
|
|
/* can we allow additional client */
|
2009-11-05 23:47:29 +01:00
|
|
|
if (httpd->open &&
|
|
|
|
(httpd->clients_max == 0 ||
|
|
|
|
httpd->clients_cnt < httpd->clients_max))
|
2013-01-27 23:23:46 +01:00
|
|
|
httpd->AddClient(fd);
|
2009-10-29 22:38:18 +01:00
|
|
|
else
|
2011-09-19 21:04:19 +02:00
|
|
|
close_socket(fd);
|
2009-10-29 22:38:18 +01:00
|
|
|
} else if (fd < 0 && errno != EINTR) {
|
httpd: new output plugin to replace "shout"
Let's get rid of the "shout" plugin, and the awfully complicated
icecast daemon setup! MPD can do better if it's doing the HTTP server
stuff on its own. This new plugin has several advantages:
- easier to set up - only one daemon, no password settings, no mount
settings
- MPD controls the encoder and thus already knows the packet
boundaries - icecast has to parse them
- MPD doesn't bother to encode data while nobody is listening
This implementation is very experimental (no header parsing, ignores
request URI, no icy-metadata, ...). It should be able to suport
several encoders in parallel in the future (with different bit rates,
different codec, ...), to make MPD the perfect streaming server. Once
MPD gets multi-player support, we can even mount several different
radio stations on one server.
2009-03-15 03:32:34 +01:00
|
|
|
g_warning("accept() failed: %s", g_strerror(errno));
|
2009-10-29 22:38:18 +01:00
|
|
|
}
|
httpd: new output plugin to replace "shout"
Let's get rid of the "shout" plugin, and the awfully complicated
icecast daemon setup! MPD can do better if it's doing the HTTP server
stuff on its own. This new plugin has several advantages:
- easier to set up - only one daemon, no password settings, no mount
settings
- MPD controls the encoder and thus already knows the packet
boundaries - icecast has to parse them
- MPD doesn't bother to encode data while nobody is listening
This implementation is very experimental (no header parsing, ignores
request URI, no icy-metadata, ...). It should be able to suport
several encoders in parallel in the future (with different bit rates,
different codec, ...), to make MPD the perfect streaming server. Once
MPD gets multi-player support, we can even mount several different
radio stations on one server.
2009-03-15 03:32:34 +01:00
|
|
|
}
|
|
|
|
|
2013-01-30 09:18:52 +01:00
|
|
|
Page *
|
2013-01-27 23:23:46 +01:00
|
|
|
HttpdOutput::ReadPage()
|
httpd: new output plugin to replace "shout"
Let's get rid of the "shout" plugin, and the awfully complicated
icecast daemon setup! MPD can do better if it's doing the HTTP server
stuff on its own. This new plugin has several advantages:
- easier to set up - only one daemon, no password settings, no mount
settings
- MPD controls the encoder and thus already knows the packet
boundaries - icecast has to parse them
- MPD doesn't bother to encode data while nobody is listening
This implementation is very experimental (no header parsing, ignores
request URI, no icy-metadata, ...). It should be able to suport
several encoders in parallel in the future (with different bit rates,
different codec, ...), to make MPD the perfect streaming server. Once
MPD gets multi-player support, we can even mount several different
radio stations on one server.
2009-03-15 03:32:34 +01:00
|
|
|
{
|
2013-01-27 23:23:46 +01:00
|
|
|
if (unflushed_input >= 65536) {
|
2010-08-06 22:18:01 +02:00
|
|
|
/* we have fed a lot of input into the encoder, but it
|
|
|
|
didn't give anything back yet - flush now to avoid
|
|
|
|
buffer underruns */
|
2013-01-27 23:23:46 +01:00
|
|
|
encoder_flush(encoder, NULL);
|
|
|
|
unflushed_input = 0;
|
2010-08-06 22:18:01 +02:00
|
|
|
}
|
|
|
|
|
2012-10-01 23:52:40 +02:00
|
|
|
size_t size = 0;
|
httpd: new output plugin to replace "shout"
Let's get rid of the "shout" plugin, and the awfully complicated
icecast daemon setup! MPD can do better if it's doing the HTTP server
stuff on its own. This new plugin has several advantages:
- easier to set up - only one daemon, no password settings, no mount
settings
- MPD controls the encoder and thus already knows the packet
boundaries - icecast has to parse them
- MPD doesn't bother to encode data while nobody is listening
This implementation is very experimental (no header parsing, ignores
request URI, no icy-metadata, ...). It should be able to suport
several encoders in parallel in the future (with different bit rates,
different codec, ...), to make MPD the perfect streaming server. Once
MPD gets multi-player support, we can even mount several different
radio stations on one server.
2009-03-15 03:32:34 +01:00
|
|
|
do {
|
2013-01-27 23:23:46 +01:00
|
|
|
size_t nbytes = encoder_read(encoder,
|
|
|
|
buffer + size,
|
|
|
|
sizeof(buffer) - size);
|
httpd: new output plugin to replace "shout"
Let's get rid of the "shout" plugin, and the awfully complicated
icecast daemon setup! MPD can do better if it's doing the HTTP server
stuff on its own. This new plugin has several advantages:
- easier to set up - only one daemon, no password settings, no mount
settings
- MPD controls the encoder and thus already knows the packet
boundaries - icecast has to parse them
- MPD doesn't bother to encode data while nobody is listening
This implementation is very experimental (no header parsing, ignores
request URI, no icy-metadata, ...). It should be able to suport
several encoders in parallel in the future (with different bit rates,
different codec, ...), to make MPD the perfect streaming server. Once
MPD gets multi-player support, we can even mount several different
radio stations on one server.
2009-03-15 03:32:34 +01:00
|
|
|
if (nbytes == 0)
|
|
|
|
break;
|
|
|
|
|
2013-01-27 23:23:46 +01:00
|
|
|
unflushed_input = 0;
|
2010-08-06 22:18:01 +02:00
|
|
|
|
httpd: new output plugin to replace "shout"
Let's get rid of the "shout" plugin, and the awfully complicated
icecast daemon setup! MPD can do better if it's doing the HTTP server
stuff on its own. This new plugin has several advantages:
- easier to set up - only one daemon, no password settings, no mount
settings
- MPD controls the encoder and thus already knows the packet
boundaries - icecast has to parse them
- MPD doesn't bother to encode data while nobody is listening
This implementation is very experimental (no header parsing, ignores
request URI, no icy-metadata, ...). It should be able to suport
several encoders in parallel in the future (with different bit rates,
different codec, ...), to make MPD the perfect streaming server. Once
MPD gets multi-player support, we can even mount several different
radio stations on one server.
2009-03-15 03:32:34 +01:00
|
|
|
size += nbytes;
|
2013-01-27 23:23:46 +01:00
|
|
|
} while (size < sizeof(buffer));
|
httpd: new output plugin to replace "shout"
Let's get rid of the "shout" plugin, and the awfully complicated
icecast daemon setup! MPD can do better if it's doing the HTTP server
stuff on its own. This new plugin has several advantages:
- easier to set up - only one daemon, no password settings, no mount
settings
- MPD controls the encoder and thus already knows the packet
boundaries - icecast has to parse them
- MPD doesn't bother to encode data while nobody is listening
This implementation is very experimental (no header parsing, ignores
request URI, no icy-metadata, ...). It should be able to suport
several encoders in parallel in the future (with different bit rates,
different codec, ...), to make MPD the perfect streaming server. Once
MPD gets multi-player support, we can even mount several different
radio stations on one server.
2009-03-15 03:32:34 +01:00
|
|
|
|
|
|
|
if (size == 0)
|
|
|
|
return NULL;
|
|
|
|
|
2013-01-30 09:18:52 +01:00
|
|
|
return Page::Copy(buffer, size);
|
httpd: new output plugin to replace "shout"
Let's get rid of the "shout" plugin, and the awfully complicated
icecast daemon setup! MPD can do better if it's doing the HTTP server
stuff on its own. This new plugin has several advantages:
- easier to set up - only one daemon, no password settings, no mount
settings
- MPD controls the encoder and thus already knows the packet
boundaries - icecast has to parse them
- MPD doesn't bother to encode data while nobody is listening
This implementation is very experimental (no header parsing, ignores
request URI, no icy-metadata, ...). It should be able to suport
several encoders in parallel in the future (with different bit rates,
different codec, ...), to make MPD the perfect streaming server. Once
MPD gets multi-player support, we can even mount several different
radio stations on one server.
2009-03-15 03:32:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
2013-01-27 23:23:46 +01:00
|
|
|
httpd_output_enable(struct audio_output *ao, GError **error_r)
|
httpd: new output plugin to replace "shout"
Let's get rid of the "shout" plugin, and the awfully complicated
icecast daemon setup! MPD can do better if it's doing the HTTP server
stuff on its own. This new plugin has several advantages:
- easier to set up - only one daemon, no password settings, no mount
settings
- MPD controls the encoder and thus already knows the packet
boundaries - icecast has to parse them
- MPD doesn't bother to encode data while nobody is listening
This implementation is very experimental (no header parsing, ignores
request URI, no icy-metadata, ...). It should be able to suport
several encoders in parallel in the future (with different bit rates,
different codec, ...), to make MPD the perfect streaming server. Once
MPD gets multi-player support, we can even mount several different
radio stations on one server.
2009-03-15 03:32:34 +01:00
|
|
|
{
|
2013-01-30 14:14:42 +01:00
|
|
|
HttpdOutput *httpd = Cast(ao);
|
2013-01-27 23:23:46 +01:00
|
|
|
|
|
|
|
return httpd->Bind(error_r);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
httpd_output_disable(struct audio_output *ao)
|
|
|
|
{
|
2013-01-30 14:14:42 +01:00
|
|
|
HttpdOutput *httpd = Cast(ao);
|
2013-01-27 23:23:46 +01:00
|
|
|
|
|
|
|
httpd->Unbind();
|
|
|
|
}
|
|
|
|
|
|
|
|
inline bool
|
|
|
|
HttpdOutput::OpenEncoder(struct audio_format *audio_format, GError **error)
|
|
|
|
{
|
|
|
|
if (!encoder_open(encoder, audio_format, error))
|
httpd: new output plugin to replace "shout"
Let's get rid of the "shout" plugin, and the awfully complicated
icecast daemon setup! MPD can do better if it's doing the HTTP server
stuff on its own. This new plugin has several advantages:
- easier to set up - only one daemon, no password settings, no mount
settings
- MPD controls the encoder and thus already knows the packet
boundaries - icecast has to parse them
- MPD doesn't bother to encode data while nobody is listening
This implementation is very experimental (no header parsing, ignores
request URI, no icy-metadata, ...). It should be able to suport
several encoders in parallel in the future (with different bit rates,
different codec, ...), to make MPD the perfect streaming server. Once
MPD gets multi-player support, we can even mount several different
radio stations on one server.
2009-03-15 03:32:34 +01:00
|
|
|
return false;
|
|
|
|
|
|
|
|
/* we have to remember the encoder header, i.e. the first
|
|
|
|
bytes of encoder output after opening it, because it has to
|
|
|
|
be sent to every new client */
|
2013-01-27 23:23:46 +01:00
|
|
|
header = ReadPage();
|
2010-08-06 22:18:01 +02:00
|
|
|
|
2013-01-27 23:23:46 +01:00
|
|
|
unflushed_input = 0;
|
2010-08-06 22:18:01 +02:00
|
|
|
|
httpd: new output plugin to replace "shout"
Let's get rid of the "shout" plugin, and the awfully complicated
icecast daemon setup! MPD can do better if it's doing the HTTP server
stuff on its own. This new plugin has several advantages:
- easier to set up - only one daemon, no password settings, no mount
settings
- MPD controls the encoder and thus already knows the packet
boundaries - icecast has to parse them
- MPD doesn't bother to encode data while nobody is listening
This implementation is very experimental (no header parsing, ignores
request URI, no icy-metadata, ...). It should be able to suport
several encoders in parallel in the future (with different bit rates,
different codec, ...), to make MPD the perfect streaming server. Once
MPD gets multi-player support, we can even mount several different
radio stations on one server.
2009-03-15 03:32:34 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-01-27 23:23:46 +01:00
|
|
|
inline bool
|
|
|
|
HttpdOutput::Open(struct audio_format *audio_format, GError **error_r)
|
httpd: new output plugin to replace "shout"
Let's get rid of the "shout" plugin, and the awfully complicated
icecast daemon setup! MPD can do better if it's doing the HTTP server
stuff on its own. This new plugin has several advantages:
- easier to set up - only one daemon, no password settings, no mount
settings
- MPD controls the encoder and thus already knows the packet
boundaries - icecast has to parse them
- MPD doesn't bother to encode data while nobody is listening
This implementation is very experimental (no header parsing, ignores
request URI, no icy-metadata, ...). It should be able to suport
several encoders in parallel in the future (with different bit rates,
different codec, ...), to make MPD the perfect streaming server. Once
MPD gets multi-player support, we can even mount several different
radio stations on one server.
2009-03-15 03:32:34 +01:00
|
|
|
{
|
2013-01-27 23:23:46 +01:00
|
|
|
assert(!open);
|
|
|
|
assert(clients.empty());
|
httpd: new output plugin to replace "shout"
Let's get rid of the "shout" plugin, and the awfully complicated
icecast daemon setup! MPD can do better if it's doing the HTTP server
stuff on its own. This new plugin has several advantages:
- easier to set up - only one daemon, no password settings, no mount
settings
- MPD controls the encoder and thus already knows the packet
boundaries - icecast has to parse them
- MPD doesn't bother to encode data while nobody is listening
This implementation is very experimental (no header parsing, ignores
request URI, no icy-metadata, ...). It should be able to suport
several encoders in parallel in the future (with different bit rates,
different codec, ...), to make MPD the perfect streaming server. Once
MPD gets multi-player support, we can even mount several different
radio stations on one server.
2009-03-15 03:32:34 +01:00
|
|
|
|
2013-01-27 23:23:46 +01:00
|
|
|
/* open the encoder */
|
2009-11-05 23:47:29 +01:00
|
|
|
|
2013-01-27 23:23:46 +01:00
|
|
|
if (!OpenEncoder(audio_format, error_r))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
/* initialize other attributes */
|
|
|
|
|
|
|
|
clients_cnt = 0;
|
|
|
|
timer = timer_new(audio_format);
|
2009-11-05 23:47:29 +01:00
|
|
|
|
2013-01-27 23:23:46 +01:00
|
|
|
open = true;
|
|
|
|
|
|
|
|
return true;
|
2009-11-05 23:47:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
2011-09-16 23:31:48 +02:00
|
|
|
httpd_output_open(struct audio_output *ao, struct audio_format *audio_format,
|
2009-11-05 23:47:29 +01:00
|
|
|
GError **error)
|
|
|
|
{
|
2013-01-30 14:14:42 +01:00
|
|
|
HttpdOutput *httpd = Cast(ao);
|
2013-01-15 18:22:17 +01:00
|
|
|
|
|
|
|
assert(httpd->clients.empty());
|
2009-11-05 23:47:29 +01:00
|
|
|
|
2013-01-15 18:22:17 +01:00
|
|
|
const ScopeLock protect(httpd->mutex);
|
2013-01-27 23:23:46 +01:00
|
|
|
return httpd->Open(audio_format, error);
|
|
|
|
}
|
2009-11-05 23:47:29 +01:00
|
|
|
|
2013-01-27 23:23:46 +01:00
|
|
|
inline void
|
|
|
|
HttpdOutput::Close()
|
|
|
|
{
|
|
|
|
assert(open);
|
httpd: new output plugin to replace "shout"
Let's get rid of the "shout" plugin, and the awfully complicated
icecast daemon setup! MPD can do better if it's doing the HTTP server
stuff on its own. This new plugin has several advantages:
- easier to set up - only one daemon, no password settings, no mount
settings
- MPD controls the encoder and thus already knows the packet
boundaries - icecast has to parse them
- MPD doesn't bother to encode data while nobody is listening
This implementation is very experimental (no header parsing, ignores
request URI, no icy-metadata, ...). It should be able to suport
several encoders in parallel in the future (with different bit rates,
different codec, ...), to make MPD the perfect streaming server. Once
MPD gets multi-player support, we can even mount several different
radio stations on one server.
2009-03-15 03:32:34 +01:00
|
|
|
|
2013-01-27 23:23:46 +01:00
|
|
|
open = false;
|
httpd: new output plugin to replace "shout"
Let's get rid of the "shout" plugin, and the awfully complicated
icecast daemon setup! MPD can do better if it's doing the HTTP server
stuff on its own. This new plugin has several advantages:
- easier to set up - only one daemon, no password settings, no mount
settings
- MPD controls the encoder and thus already knows the packet
boundaries - icecast has to parse them
- MPD doesn't bother to encode data while nobody is listening
This implementation is very experimental (no header parsing, ignores
request URI, no icy-metadata, ...). It should be able to suport
several encoders in parallel in the future (with different bit rates,
different codec, ...), to make MPD the perfect streaming server. Once
MPD gets multi-player support, we can even mount several different
radio stations on one server.
2009-03-15 03:32:34 +01:00
|
|
|
|
2013-01-27 23:23:46 +01:00
|
|
|
timer_free(timer);
|
httpd: new output plugin to replace "shout"
Let's get rid of the "shout" plugin, and the awfully complicated
icecast daemon setup! MPD can do better if it's doing the HTTP server
stuff on its own. This new plugin has several advantages:
- easier to set up - only one daemon, no password settings, no mount
settings
- MPD controls the encoder and thus already knows the packet
boundaries - icecast has to parse them
- MPD doesn't bother to encode data while nobody is listening
This implementation is very experimental (no header parsing, ignores
request URI, no icy-metadata, ...). It should be able to suport
several encoders in parallel in the future (with different bit rates,
different codec, ...), to make MPD the perfect streaming server. Once
MPD gets multi-player support, we can even mount several different
radio stations on one server.
2009-03-15 03:32:34 +01:00
|
|
|
|
2013-01-27 23:23:46 +01:00
|
|
|
clients.clear();
|
httpd: new output plugin to replace "shout"
Let's get rid of the "shout" plugin, and the awfully complicated
icecast daemon setup! MPD can do better if it's doing the HTTP server
stuff on its own. This new plugin has several advantages:
- easier to set up - only one daemon, no password settings, no mount
settings
- MPD controls the encoder and thus already knows the packet
boundaries - icecast has to parse them
- MPD doesn't bother to encode data while nobody is listening
This implementation is very experimental (no header parsing, ignores
request URI, no icy-metadata, ...). It should be able to suport
several encoders in parallel in the future (with different bit rates,
different codec, ...), to make MPD the perfect streaming server. Once
MPD gets multi-player support, we can even mount several different
radio stations on one server.
2009-03-15 03:32:34 +01:00
|
|
|
|
2013-01-27 23:23:46 +01:00
|
|
|
if (header != NULL)
|
2013-01-30 09:18:52 +01:00
|
|
|
header->Unref();
|
2009-11-05 23:47:29 +01:00
|
|
|
|
2013-01-27 23:23:46 +01:00
|
|
|
encoder_close(encoder);
|
httpd: new output plugin to replace "shout"
Let's get rid of the "shout" plugin, and the awfully complicated
icecast daemon setup! MPD can do better if it's doing the HTTP server
stuff on its own. This new plugin has several advantages:
- easier to set up - only one daemon, no password settings, no mount
settings
- MPD controls the encoder and thus already knows the packet
boundaries - icecast has to parse them
- MPD doesn't bother to encode data while nobody is listening
This implementation is very experimental (no header parsing, ignores
request URI, no icy-metadata, ...). It should be able to suport
several encoders in parallel in the future (with different bit rates,
different codec, ...), to make MPD the perfect streaming server. Once
MPD gets multi-player support, we can even mount several different
radio stations on one server.
2009-03-15 03:32:34 +01:00
|
|
|
}
|
|
|
|
|
2011-09-16 23:31:48 +02:00
|
|
|
static void
|
|
|
|
httpd_output_close(struct audio_output *ao)
|
httpd: new output plugin to replace "shout"
Let's get rid of the "shout" plugin, and the awfully complicated
icecast daemon setup! MPD can do better if it's doing the HTTP server
stuff on its own. This new plugin has several advantages:
- easier to set up - only one daemon, no password settings, no mount
settings
- MPD controls the encoder and thus already knows the packet
boundaries - icecast has to parse them
- MPD doesn't bother to encode data while nobody is listening
This implementation is very experimental (no header parsing, ignores
request URI, no icy-metadata, ...). It should be able to suport
several encoders in parallel in the future (with different bit rates,
different codec, ...), to make MPD the perfect streaming server. Once
MPD gets multi-player support, we can even mount several different
radio stations on one server.
2009-03-15 03:32:34 +01:00
|
|
|
{
|
2013-01-30 14:14:42 +01:00
|
|
|
HttpdOutput *httpd = Cast(ao);
|
httpd: new output plugin to replace "shout"
Let's get rid of the "shout" plugin, and the awfully complicated
icecast daemon setup! MPD can do better if it's doing the HTTP server
stuff on its own. This new plugin has several advantages:
- easier to set up - only one daemon, no password settings, no mount
settings
- MPD controls the encoder and thus already knows the packet
boundaries - icecast has to parse them
- MPD doesn't bother to encode data while nobody is listening
This implementation is very experimental (no header parsing, ignores
request URI, no icy-metadata, ...). It should be able to suport
several encoders in parallel in the future (with different bit rates,
different codec, ...), to make MPD the perfect streaming server. Once
MPD gets multi-player support, we can even mount several different
radio stations on one server.
2009-03-15 03:32:34 +01:00
|
|
|
|
2013-01-15 18:22:17 +01:00
|
|
|
const ScopeLock protect(httpd->mutex);
|
2013-01-27 23:23:46 +01:00
|
|
|
httpd->Close();
|
httpd: new output plugin to replace "shout"
Let's get rid of the "shout" plugin, and the awfully complicated
icecast daemon setup! MPD can do better if it's doing the HTTP server
stuff on its own. This new plugin has several advantages:
- easier to set up - only one daemon, no password settings, no mount
settings
- MPD controls the encoder and thus already knows the packet
boundaries - icecast has to parse them
- MPD doesn't bother to encode data while nobody is listening
This implementation is very experimental (no header parsing, ignores
request URI, no icy-metadata, ...). It should be able to suport
several encoders in parallel in the future (with different bit rates,
different codec, ...), to make MPD the perfect streaming server. Once
MPD gets multi-player support, we can even mount several different
radio stations on one server.
2009-03-15 03:32:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2013-01-27 23:23:46 +01:00
|
|
|
HttpdOutput::RemoveClient(HttpdClient &client)
|
httpd: new output plugin to replace "shout"
Let's get rid of the "shout" plugin, and the awfully complicated
icecast daemon setup! MPD can do better if it's doing the HTTP server
stuff on its own. This new plugin has several advantages:
- easier to set up - only one daemon, no password settings, no mount
settings
- MPD controls the encoder and thus already knows the packet
boundaries - icecast has to parse them
- MPD doesn't bother to encode data while nobody is listening
This implementation is very experimental (no header parsing, ignores
request URI, no icy-metadata, ...). It should be able to suport
several encoders in parallel in the future (with different bit rates,
different codec, ...), to make MPD the perfect streaming server. Once
MPD gets multi-player support, we can even mount several different
radio stations on one server.
2009-03-15 03:32:34 +01:00
|
|
|
{
|
2013-01-27 23:23:46 +01:00
|
|
|
assert(clients_cnt > 0);
|
httpd: new output plugin to replace "shout"
Let's get rid of the "shout" plugin, and the awfully complicated
icecast daemon setup! MPD can do better if it's doing the HTTP server
stuff on its own. This new plugin has several advantages:
- easier to set up - only one daemon, no password settings, no mount
settings
- MPD controls the encoder and thus already knows the packet
boundaries - icecast has to parse them
- MPD doesn't bother to encode data while nobody is listening
This implementation is very experimental (no header parsing, ignores
request URI, no icy-metadata, ...). It should be able to suport
several encoders in parallel in the future (with different bit rates,
different codec, ...), to make MPD the perfect streaming server. Once
MPD gets multi-player support, we can even mount several different
radio stations on one server.
2009-03-15 03:32:34 +01:00
|
|
|
|
2013-01-27 23:23:46 +01:00
|
|
|
for (auto prev = clients.before_begin(), i = std::next(prev);;
|
2013-01-15 18:22:17 +01:00
|
|
|
prev = i, i = std::next(prev)) {
|
2013-01-27 23:23:46 +01:00
|
|
|
assert(i != clients.end());
|
|
|
|
if (&*i == &client) {
|
|
|
|
clients.erase_after(prev);
|
|
|
|
clients_cnt--;
|
2013-01-15 18:22:17 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
httpd: new output plugin to replace "shout"
Let's get rid of the "shout" plugin, and the awfully complicated
icecast daemon setup! MPD can do better if it's doing the HTTP server
stuff on its own. This new plugin has several advantages:
- easier to set up - only one daemon, no password settings, no mount
settings
- MPD controls the encoder and thus already knows the packet
boundaries - icecast has to parse them
- MPD doesn't bother to encode data while nobody is listening
This implementation is very experimental (no header parsing, ignores
request URI, no icy-metadata, ...). It should be able to suport
several encoders in parallel in the future (with different bit rates,
different codec, ...), to make MPD the perfect streaming server. Once
MPD gets multi-player support, we can even mount several different
radio stations on one server.
2009-03-15 03:32:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2013-01-27 23:23:46 +01:00
|
|
|
HttpdOutput::SendHeader(HttpdClient &client) const
|
httpd: new output plugin to replace "shout"
Let's get rid of the "shout" plugin, and the awfully complicated
icecast daemon setup! MPD can do better if it's doing the HTTP server
stuff on its own. This new plugin has several advantages:
- easier to set up - only one daemon, no password settings, no mount
settings
- MPD controls the encoder and thus already knows the packet
boundaries - icecast has to parse them
- MPD doesn't bother to encode data while nobody is listening
This implementation is very experimental (no header parsing, ignores
request URI, no icy-metadata, ...). It should be able to suport
several encoders in parallel in the future (with different bit rates,
different codec, ...), to make MPD the perfect streaming server. Once
MPD gets multi-player support, we can even mount several different
radio stations on one server.
2009-03-15 03:32:34 +01:00
|
|
|
{
|
2013-01-27 23:23:46 +01:00
|
|
|
if (header != NULL)
|
|
|
|
client.PushPage(header);
|
httpd: new output plugin to replace "shout"
Let's get rid of the "shout" plugin, and the awfully complicated
icecast daemon setup! MPD can do better if it's doing the HTTP server
stuff on its own. This new plugin has several advantages:
- easier to set up - only one daemon, no password settings, no mount
settings
- MPD controls the encoder and thus already knows the packet
boundaries - icecast has to parse them
- MPD doesn't bother to encode data while nobody is listening
This implementation is very experimental (no header parsing, ignores
request URI, no icy-metadata, ...). It should be able to suport
several encoders in parallel in the future (with different bit rates,
different codec, ...), to make MPD the perfect streaming server. Once
MPD gets multi-player support, we can even mount several different
radio stations on one server.
2009-03-15 03:32:34 +01:00
|
|
|
}
|
|
|
|
|
2010-11-05 09:42:14 +01:00
|
|
|
static unsigned
|
2011-09-16 23:31:48 +02:00
|
|
|
httpd_output_delay(struct audio_output *ao)
|
2010-11-05 09:42:14 +01:00
|
|
|
{
|
2013-01-30 14:14:42 +01:00
|
|
|
HttpdOutput *httpd = Cast(ao);
|
2010-11-05 09:42:14 +01:00
|
|
|
|
2013-01-27 23:23:46 +01:00
|
|
|
if (!httpd->LockHasClients() && httpd->base.pause) {
|
2012-08-14 21:39:33 +02:00
|
|
|
/* if there's no client and this output is paused,
|
|
|
|
then httpd_output_pause() will not do anything, it
|
|
|
|
will not fill the buffer and it will not update the
|
|
|
|
timer; therefore, we reset the timer here */
|
|
|
|
timer_reset(httpd->timer);
|
2012-08-14 21:46:43 +02:00
|
|
|
|
|
|
|
/* some arbitrary delay that is long enough to avoid
|
|
|
|
consuming too much CPU, and short enough to notice
|
|
|
|
new clients quickly enough */
|
|
|
|
return 1000;
|
2012-08-14 21:39:33 +02:00
|
|
|
}
|
|
|
|
|
2010-11-05 09:42:14 +01:00
|
|
|
return httpd->timer->started
|
|
|
|
? timer_delay(httpd->timer)
|
|
|
|
: 0;
|
|
|
|
}
|
|
|
|
|
2013-01-27 23:23:46 +01:00
|
|
|
void
|
2013-01-30 09:18:52 +01:00
|
|
|
HttpdOutput::BroadcastPage(Page *page)
|
httpd: new output plugin to replace "shout"
Let's get rid of the "shout" plugin, and the awfully complicated
icecast daemon setup! MPD can do better if it's doing the HTTP server
stuff on its own. This new plugin has several advantages:
- easier to set up - only one daemon, no password settings, no mount
settings
- MPD controls the encoder and thus already knows the packet
boundaries - icecast has to parse them
- MPD doesn't bother to encode data while nobody is listening
This implementation is very experimental (no header parsing, ignores
request URI, no icy-metadata, ...). It should be able to suport
several encoders in parallel in the future (with different bit rates,
different codec, ...), to make MPD the perfect streaming server. Once
MPD gets multi-player support, we can even mount several different
radio stations on one server.
2009-03-15 03:32:34 +01:00
|
|
|
{
|
2009-05-05 22:43:28 +02:00
|
|
|
assert(page != NULL);
|
httpd: new output plugin to replace "shout"
Let's get rid of the "shout" plugin, and the awfully complicated
icecast daemon setup! MPD can do better if it's doing the HTTP server
stuff on its own. This new plugin has several advantages:
- easier to set up - only one daemon, no password settings, no mount
settings
- MPD controls the encoder and thus already knows the packet
boundaries - icecast has to parse them
- MPD doesn't bother to encode data while nobody is listening
This implementation is very experimental (no header parsing, ignores
request URI, no icy-metadata, ...). It should be able to suport
several encoders in parallel in the future (with different bit rates,
different codec, ...), to make MPD the perfect streaming server. Once
MPD gets multi-player support, we can even mount several different
radio stations on one server.
2009-03-15 03:32:34 +01:00
|
|
|
|
2013-01-27 23:23:46 +01:00
|
|
|
const ScopeLock protect(mutex);
|
|
|
|
for (auto &client : clients)
|
2013-01-15 18:22:17 +01:00
|
|
|
client.PushPage(page);
|
2009-05-05 22:43:28 +02:00
|
|
|
}
|
|
|
|
|
2013-01-27 23:23:46 +01:00
|
|
|
void
|
|
|
|
HttpdOutput::BroadcastFromEncoder()
|
2009-05-05 22:43:28 +02:00
|
|
|
{
|
2013-01-27 23:23:46 +01:00
|
|
|
mutex.lock();
|
|
|
|
for (auto &client : clients) {
|
2013-01-15 18:22:17 +01:00
|
|
|
if (client.GetQueueSize() > 256 * 1024) {
|
|
|
|
g_debug("client is too slow, flushing its queue");
|
|
|
|
client.CancelQueue();
|
|
|
|
}
|
|
|
|
}
|
2013-01-27 23:23:46 +01:00
|
|
|
mutex.unlock();
|
httpd: new output plugin to replace "shout"
Let's get rid of the "shout" plugin, and the awfully complicated
icecast daemon setup! MPD can do better if it's doing the HTTP server
stuff on its own. This new plugin has several advantages:
- easier to set up - only one daemon, no password settings, no mount
settings
- MPD controls the encoder and thus already knows the packet
boundaries - icecast has to parse them
- MPD doesn't bother to encode data while nobody is listening
This implementation is very experimental (no header parsing, ignores
request URI, no icy-metadata, ...). It should be able to suport
several encoders in parallel in the future (with different bit rates,
different codec, ...), to make MPD the perfect streaming server. Once
MPD gets multi-player support, we can even mount several different
radio stations on one server.
2009-03-15 03:32:34 +01:00
|
|
|
|
2013-01-30 09:18:52 +01:00
|
|
|
Page *page;
|
2013-01-27 23:23:46 +01:00
|
|
|
while ((page = ReadPage()) != nullptr) {
|
|
|
|
BroadcastPage(page);
|
2013-01-30 09:18:52 +01:00
|
|
|
page->Unref();
|
httpd: new output plugin to replace "shout"
Let's get rid of the "shout" plugin, and the awfully complicated
icecast daemon setup! MPD can do better if it's doing the HTTP server
stuff on its own. This new plugin has several advantages:
- easier to set up - only one daemon, no password settings, no mount
settings
- MPD controls the encoder and thus already knows the packet
boundaries - icecast has to parse them
- MPD doesn't bother to encode data while nobody is listening
This implementation is very experimental (no header parsing, ignores
request URI, no icy-metadata, ...). It should be able to suport
several encoders in parallel in the future (with different bit rates,
different codec, ...), to make MPD the perfect streaming server. Once
MPD gets multi-player support, we can even mount several different
radio stations on one server.
2009-03-15 03:32:34 +01:00
|
|
|
}
|
2009-05-05 22:43:28 +02:00
|
|
|
}
|
|
|
|
|
2013-01-27 23:23:46 +01:00
|
|
|
inline bool
|
|
|
|
HttpdOutput::EncodeAndPlay(const void *chunk, size_t size, GError **error_r)
|
2009-05-05 22:43:28 +02:00
|
|
|
{
|
2013-01-27 23:23:46 +01:00
|
|
|
if (!encoder_write(encoder, chunk, size, error_r))
|
2009-05-05 22:43:28 +02:00
|
|
|
return false;
|
|
|
|
|
2013-01-27 23:23:46 +01:00
|
|
|
unflushed_input += size;
|
httpd: new output plugin to replace "shout"
Let's get rid of the "shout" plugin, and the awfully complicated
icecast daemon setup! MPD can do better if it's doing the HTTP server
stuff on its own. This new plugin has several advantages:
- easier to set up - only one daemon, no password settings, no mount
settings
- MPD controls the encoder and thus already knows the packet
boundaries - icecast has to parse them
- MPD doesn't bother to encode data while nobody is listening
This implementation is very experimental (no header parsing, ignores
request URI, no icy-metadata, ...). It should be able to suport
several encoders in parallel in the future (with different bit rates,
different codec, ...), to make MPD the perfect streaming server. Once
MPD gets multi-player support, we can even mount several different
radio stations on one server.
2009-03-15 03:32:34 +01:00
|
|
|
|
2013-01-27 23:23:46 +01:00
|
|
|
BroadcastFromEncoder();
|
httpd: new output plugin to replace "shout"
Let's get rid of the "shout" plugin, and the awfully complicated
icecast daemon setup! MPD can do better if it's doing the HTTP server
stuff on its own. This new plugin has several advantages:
- easier to set up - only one daemon, no password settings, no mount
settings
- MPD controls the encoder and thus already knows the packet
boundaries - icecast has to parse them
- MPD doesn't bother to encode data while nobody is listening
This implementation is very experimental (no header parsing, ignores
request URI, no icy-metadata, ...). It should be able to suport
several encoders in parallel in the future (with different bit rates,
different codec, ...), to make MPD the perfect streaming server. Once
MPD gets multi-player support, we can even mount several different
radio stations on one server.
2009-03-15 03:32:34 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static size_t
|
2011-09-16 23:31:48 +02:00
|
|
|
httpd_output_play(struct audio_output *ao, const void *chunk, size_t size,
|
2012-10-01 23:52:40 +02:00
|
|
|
GError **error_r)
|
httpd: new output plugin to replace "shout"
Let's get rid of the "shout" plugin, and the awfully complicated
icecast daemon setup! MPD can do better if it's doing the HTTP server
stuff on its own. This new plugin has several advantages:
- easier to set up - only one daemon, no password settings, no mount
settings
- MPD controls the encoder and thus already knows the packet
boundaries - icecast has to parse them
- MPD doesn't bother to encode data while nobody is listening
This implementation is very experimental (no header parsing, ignores
request URI, no icy-metadata, ...). It should be able to suport
several encoders in parallel in the future (with different bit rates,
different codec, ...), to make MPD the perfect streaming server. Once
MPD gets multi-player support, we can even mount several different
radio stations on one server.
2009-03-15 03:32:34 +01:00
|
|
|
{
|
2013-01-30 14:14:42 +01:00
|
|
|
HttpdOutput *httpd = Cast(ao);
|
httpd: new output plugin to replace "shout"
Let's get rid of the "shout" plugin, and the awfully complicated
icecast daemon setup! MPD can do better if it's doing the HTTP server
stuff on its own. This new plugin has several advantages:
- easier to set up - only one daemon, no password settings, no mount
settings
- MPD controls the encoder and thus already knows the packet
boundaries - icecast has to parse them
- MPD doesn't bother to encode data while nobody is listening
This implementation is very experimental (no header parsing, ignores
request URI, no icy-metadata, ...). It should be able to suport
several encoders in parallel in the future (with different bit rates,
different codec, ...), to make MPD the perfect streaming server. Once
MPD gets multi-player support, we can even mount several different
radio stations on one server.
2009-03-15 03:32:34 +01:00
|
|
|
|
2013-01-27 23:23:46 +01:00
|
|
|
if (httpd->LockHasClients()) {
|
|
|
|
if (!httpd->EncodeAndPlay(chunk, size, error_r))
|
httpd: new output plugin to replace "shout"
Let's get rid of the "shout" plugin, and the awfully complicated
icecast daemon setup! MPD can do better if it's doing the HTTP server
stuff on its own. This new plugin has several advantages:
- easier to set up - only one daemon, no password settings, no mount
settings
- MPD controls the encoder and thus already knows the packet
boundaries - icecast has to parse them
- MPD doesn't bother to encode data while nobody is listening
This implementation is very experimental (no header parsing, ignores
request URI, no icy-metadata, ...). It should be able to suport
several encoders in parallel in the future (with different bit rates,
different codec, ...), to make MPD the perfect streaming server. Once
MPD gets multi-player support, we can even mount several different
radio stations on one server.
2009-03-15 03:32:34 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!httpd->timer->started)
|
|
|
|
timer_start(httpd->timer);
|
|
|
|
timer_add(httpd->timer, size);
|
|
|
|
|
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
2010-08-06 07:23:17 +02:00
|
|
|
static bool
|
2011-09-16 23:31:48 +02:00
|
|
|
httpd_output_pause(struct audio_output *ao)
|
2010-08-06 07:23:17 +02:00
|
|
|
{
|
2013-01-30 14:14:42 +01:00
|
|
|
HttpdOutput *httpd = Cast(ao);
|
2010-08-06 07:23:17 +02:00
|
|
|
|
2013-01-27 23:23:46 +01:00
|
|
|
if (httpd->LockHasClients()) {
|
2013-01-15 18:22:17 +01:00
|
|
|
static const char silence[1020] = { 0 };
|
2011-09-16 23:31:48 +02:00
|
|
|
return httpd_output_play(ao, silence, sizeof(silence),
|
2011-07-20 19:16:47 +02:00
|
|
|
NULL) > 0;
|
2010-08-06 07:23:17 +02:00
|
|
|
} else {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-01-27 23:23:46 +01:00
|
|
|
inline void
|
|
|
|
HttpdOutput::SendTag(const struct tag *tag)
|
httpd: new output plugin to replace "shout"
Let's get rid of the "shout" plugin, and the awfully complicated
icecast daemon setup! MPD can do better if it's doing the HTTP server
stuff on its own. This new plugin has several advantages:
- easier to set up - only one daemon, no password settings, no mount
settings
- MPD controls the encoder and thus already knows the packet
boundaries - icecast has to parse them
- MPD doesn't bother to encode data while nobody is listening
This implementation is very experimental (no header parsing, ignores
request URI, no icy-metadata, ...). It should be able to suport
several encoders in parallel in the future (with different bit rates,
different codec, ...), to make MPD the perfect streaming server. Once
MPD gets multi-player support, we can even mount several different
radio stations on one server.
2009-03-15 03:32:34 +01:00
|
|
|
{
|
2009-05-05 22:36:44 +02:00
|
|
|
assert(tag != NULL);
|
|
|
|
|
2013-01-27 23:23:46 +01:00
|
|
|
if (encoder->plugin->tag != NULL) {
|
2009-05-05 22:41:36 +02:00
|
|
|
/* embed encoder tags */
|
2009-05-05 22:51:17 +02:00
|
|
|
|
|
|
|
/* flush the current stream, and end it */
|
|
|
|
|
2013-01-27 23:23:46 +01:00
|
|
|
encoder_pre_tag(encoder, NULL);
|
|
|
|
BroadcastFromEncoder();
|
2009-05-05 22:51:17 +02:00
|
|
|
|
|
|
|
/* send the tag to the encoder - which starts a new
|
|
|
|
stream now */
|
2009-05-05 22:41:36 +02:00
|
|
|
|
2013-01-27 23:23:46 +01:00
|
|
|
encoder_tag(encoder, tag, NULL);
|
2009-05-05 22:51:17 +02:00
|
|
|
|
|
|
|
/* the first page generated by the encoder will now be
|
|
|
|
used as the new "header" page, which is sent to all
|
|
|
|
new clients */
|
|
|
|
|
2013-01-30 09:18:52 +01:00
|
|
|
Page *page = ReadPage();
|
2009-05-05 22:51:17 +02:00
|
|
|
if (page != NULL) {
|
2013-01-27 23:23:46 +01:00
|
|
|
if (header != NULL)
|
2013-01-30 09:18:52 +01:00
|
|
|
header->Unref();
|
2013-01-27 23:23:46 +01:00
|
|
|
header = page;
|
|
|
|
BroadcastPage(page);
|
2009-05-05 22:51:17 +02:00
|
|
|
}
|
2009-05-05 22:41:36 +02:00
|
|
|
} else {
|
|
|
|
/* use Icy-Metadata */
|
|
|
|
|
2013-01-27 23:23:46 +01:00
|
|
|
if (metadata != NULL)
|
2013-01-30 09:18:52 +01:00
|
|
|
metadata->Unref();
|
2013-01-27 23:23:46 +01:00
|
|
|
|
2013-01-30 09:13:46 +01:00
|
|
|
static constexpr tag_type types[] = {
|
|
|
|
TAG_ALBUM, TAG_ARTIST, TAG_TITLE,
|
|
|
|
TAG_NUM_OF_ITEM_TYPES
|
|
|
|
};
|
|
|
|
|
|
|
|
metadata = icy_server_metadata_page(tag, &types[0]);
|
2013-01-27 23:23:46 +01:00
|
|
|
if (metadata != NULL) {
|
|
|
|
const ScopeLock protect(mutex);
|
|
|
|
for (auto &client : clients)
|
|
|
|
client.PushMetaData(metadata);
|
2009-05-05 22:41:36 +02:00
|
|
|
}
|
2009-04-13 19:35:02 +02:00
|
|
|
}
|
httpd: new output plugin to replace "shout"
Let's get rid of the "shout" plugin, and the awfully complicated
icecast daemon setup! MPD can do better if it's doing the HTTP server
stuff on its own. This new plugin has several advantages:
- easier to set up - only one daemon, no password settings, no mount
settings
- MPD controls the encoder and thus already knows the packet
boundaries - icecast has to parse them
- MPD doesn't bother to encode data while nobody is listening
This implementation is very experimental (no header parsing, ignores
request URI, no icy-metadata, ...). It should be able to suport
several encoders in parallel in the future (with different bit rates,
different codec, ...), to make MPD the perfect streaming server. Once
MPD gets multi-player support, we can even mount several different
radio stations on one server.
2009-03-15 03:32:34 +01:00
|
|
|
}
|
|
|
|
|
2013-01-27 23:23:46 +01:00
|
|
|
static void
|
|
|
|
httpd_output_tag(struct audio_output *ao, const struct tag *tag)
|
|
|
|
{
|
2013-01-30 14:14:42 +01:00
|
|
|
HttpdOutput *httpd = Cast(ao);
|
2013-01-27 23:23:46 +01:00
|
|
|
|
|
|
|
httpd->SendTag(tag);
|
|
|
|
}
|
|
|
|
|
httpd: new output plugin to replace "shout"
Let's get rid of the "shout" plugin, and the awfully complicated
icecast daemon setup! MPD can do better if it's doing the HTTP server
stuff on its own. This new plugin has several advantages:
- easier to set up - only one daemon, no password settings, no mount
settings
- MPD controls the encoder and thus already knows the packet
boundaries - icecast has to parse them
- MPD doesn't bother to encode data while nobody is listening
This implementation is very experimental (no header parsing, ignores
request URI, no icy-metadata, ...). It should be able to suport
several encoders in parallel in the future (with different bit rates,
different codec, ...), to make MPD the perfect streaming server. Once
MPD gets multi-player support, we can even mount several different
radio stations on one server.
2009-03-15 03:32:34 +01:00
|
|
|
static void
|
2011-09-16 23:31:48 +02:00
|
|
|
httpd_output_cancel(struct audio_output *ao)
|
httpd: new output plugin to replace "shout"
Let's get rid of the "shout" plugin, and the awfully complicated
icecast daemon setup! MPD can do better if it's doing the HTTP server
stuff on its own. This new plugin has several advantages:
- easier to set up - only one daemon, no password settings, no mount
settings
- MPD controls the encoder and thus already knows the packet
boundaries - icecast has to parse them
- MPD doesn't bother to encode data while nobody is listening
This implementation is very experimental (no header parsing, ignores
request URI, no icy-metadata, ...). It should be able to suport
several encoders in parallel in the future (with different bit rates,
different codec, ...), to make MPD the perfect streaming server. Once
MPD gets multi-player support, we can even mount several different
radio stations on one server.
2009-03-15 03:32:34 +01:00
|
|
|
{
|
2013-01-30 14:14:42 +01:00
|
|
|
HttpdOutput *httpd = Cast(ao);
|
httpd: new output plugin to replace "shout"
Let's get rid of the "shout" plugin, and the awfully complicated
icecast daemon setup! MPD can do better if it's doing the HTTP server
stuff on its own. This new plugin has several advantages:
- easier to set up - only one daemon, no password settings, no mount
settings
- MPD controls the encoder and thus already knows the packet
boundaries - icecast has to parse them
- MPD doesn't bother to encode data while nobody is listening
This implementation is very experimental (no header parsing, ignores
request URI, no icy-metadata, ...). It should be able to suport
several encoders in parallel in the future (with different bit rates,
different codec, ...), to make MPD the perfect streaming server. Once
MPD gets multi-player support, we can even mount several different
radio stations on one server.
2009-03-15 03:32:34 +01:00
|
|
|
|
2013-01-15 18:22:17 +01:00
|
|
|
const ScopeLock protect(httpd->mutex);
|
|
|
|
for (auto &client : httpd->clients)
|
|
|
|
client.CancelQueue();
|
httpd: new output plugin to replace "shout"
Let's get rid of the "shout" plugin, and the awfully complicated
icecast daemon setup! MPD can do better if it's doing the HTTP server
stuff on its own. This new plugin has several advantages:
- easier to set up - only one daemon, no password settings, no mount
settings
- MPD controls the encoder and thus already knows the packet
boundaries - icecast has to parse them
- MPD doesn't bother to encode data while nobody is listening
This implementation is very experimental (no header parsing, ignores
request URI, no icy-metadata, ...). It should be able to suport
several encoders in parallel in the future (with different bit rates,
different codec, ...), to make MPD the perfect streaming server. Once
MPD gets multi-player support, we can even mount several different
radio stations on one server.
2009-03-15 03:32:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
const struct audio_output_plugin httpd_output_plugin = {
|
2013-01-15 18:22:17 +01:00
|
|
|
"httpd",
|
|
|
|
nullptr,
|
|
|
|
httpd_output_init,
|
|
|
|
httpd_output_finish,
|
|
|
|
httpd_output_enable,
|
|
|
|
httpd_output_disable,
|
|
|
|
httpd_output_open,
|
|
|
|
httpd_output_close,
|
|
|
|
httpd_output_delay,
|
|
|
|
httpd_output_tag,
|
|
|
|
httpd_output_play,
|
|
|
|
nullptr,
|
|
|
|
httpd_output_cancel,
|
|
|
|
httpd_output_pause,
|
|
|
|
nullptr,
|
httpd: new output plugin to replace "shout"
Let's get rid of the "shout" plugin, and the awfully complicated
icecast daemon setup! MPD can do better if it's doing the HTTP server
stuff on its own. This new plugin has several advantages:
- easier to set up - only one daemon, no password settings, no mount
settings
- MPD controls the encoder and thus already knows the packet
boundaries - icecast has to parse them
- MPD doesn't bother to encode data while nobody is listening
This implementation is very experimental (no header parsing, ignores
request URI, no icy-metadata, ...). It should be able to suport
several encoders in parallel in the future (with different bit rates,
different codec, ...), to make MPD the perfect streaming server. Once
MPD gets multi-player support, we can even mount several different
radio stations on one server.
2009-03-15 03:32:34 +01:00
|
|
|
};
|