2004-10-20 19:49:21 +02:00
|
|
|
/* the Music Player Daemon (MPD)
|
2007-04-05 05:22:33 +02:00
|
|
|
* Copyright (C) 2003-2007 by Warren Dukes (warren.dukes@gmail.com)
|
2004-10-20 19:49:21 +02:00
|
|
|
* This project's homepage is: 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
2008-09-12 14:59:53 +02:00
|
|
|
#include "audioOutput_shout.h"
|
2004-10-21 01:08:40 +02:00
|
|
|
|
|
|
|
#ifdef HAVE_SHOUT
|
|
|
|
|
2008-09-07 22:41:17 +02:00
|
|
|
#include "../utils.h"
|
2004-10-20 22:41:21 +02:00
|
|
|
|
2007-06-12 19:58:17 +02:00
|
|
|
#define CONN_ATTEMPT_INTERVAL 60
|
2007-06-12 20:28:57 +02:00
|
|
|
#define DEFAULT_CONN_TIMEOUT 2
|
2004-11-02 14:26:50 +01:00
|
|
|
|
2008-09-12 15:57:43 +02:00
|
|
|
#define SHOUT_BUF_SIZE 8192
|
|
|
|
|
2008-09-12 14:01:45 +02:00
|
|
|
static int shout_init_count;
|
2004-10-20 22:41:21 +02:00
|
|
|
|
2008-09-12 15:57:43 +02:00
|
|
|
static void clear_shout_buffer(struct shout_data * sd)
|
|
|
|
{
|
|
|
|
sd->buf.len = 0;
|
|
|
|
sd->buf.data[0] = '\0';
|
|
|
|
}
|
|
|
|
|
2008-09-12 14:01:45 +02:00
|
|
|
static struct shout_data *new_shout_data(void)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2008-09-12 14:01:45 +02:00
|
|
|
struct shout_data *ret = xmalloc(sizeof(*ret));
|
2004-10-20 19:49:21 +02:00
|
|
|
|
2008-09-12 14:01:45 +02:00
|
|
|
ret->shout_conn = shout_new();
|
2004-10-23 17:25:42 +02:00
|
|
|
ret->opened = 0;
|
2004-10-26 04:32:37 +02:00
|
|
|
ret->tag = NULL;
|
2008-09-12 14:01:45 +02:00
|
|
|
ret->tag_to_send = 0;
|
2004-10-29 15:33:51 +02:00
|
|
|
ret->bitrate = -1;
|
2006-10-10 22:00:33 +02:00
|
|
|
ret->quality = -2.0;
|
2007-06-12 20:28:57 +02:00
|
|
|
ret->timeout = DEFAULT_CONN_TIMEOUT;
|
2008-09-12 14:01:45 +02:00
|
|
|
ret->conn_attempts = 0;
|
|
|
|
ret->last_attempt = 0;
|
2007-08-11 23:36:23 +02:00
|
|
|
ret->timer = NULL;
|
2008-09-12 15:57:43 +02:00
|
|
|
ret->buf.data = xmalloc(sizeof(unsigned char) *
|
|
|
|
SHOUT_BUF_SIZE);
|
|
|
|
ret->buf.max_len = SHOUT_BUF_SIZE;
|
|
|
|
clear_shout_buffer(ret);
|
2004-10-20 22:41:21 +02:00
|
|
|
|
2004-10-20 19:49:21 +02:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2008-09-12 14:01:45 +02:00
|
|
|
static void free_shout_data(struct shout_data *sd)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2008-09-12 14:01:45 +02:00
|
|
|
if (sd->shout_conn)
|
|
|
|
shout_free(sd->shout_conn);
|
2006-07-20 18:02:40 +02:00
|
|
|
if (sd->tag)
|
2008-08-29 15:02:49 +02:00
|
|
|
tag_free(sd->tag);
|
2008-09-12 15:57:43 +02:00
|
|
|
if (sd->buf.data)
|
|
|
|
free(sd->buf.data);
|
2007-08-11 23:36:23 +02:00
|
|
|
if (sd->timer)
|
|
|
|
timer_free(sd->timer);
|
2004-10-20 22:41:21 +02:00
|
|
|
|
2004-10-20 19:49:21 +02:00
|
|
|
free(sd);
|
|
|
|
}
|
|
|
|
|
2008-09-12 14:01:45 +02:00
|
|
|
#define check_block_param(name) { \
|
|
|
|
block_param = getBlockParam(param, name); \
|
|
|
|
if (!block_param) { \
|
|
|
|
FATAL("no \"%s\" defined for shout device defined at line " \
|
|
|
|
"%i\n", name, param->line); \
|
|
|
|
} \
|
|
|
|
}
|
2004-10-28 07:14:55 +02:00
|
|
|
|
2008-09-12 14:01:45 +02:00
|
|
|
static int my_shout_init_driver(struct audio_output *audio_output,
|
|
|
|
ConfigParam * param)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2008-09-12 14:01:45 +02:00
|
|
|
struct shout_data *sd;
|
2006-07-20 18:02:40 +02:00
|
|
|
char *test;
|
2004-10-20 22:41:21 +02:00
|
|
|
int port;
|
2006-07-20 18:02:40 +02:00
|
|
|
char *host;
|
|
|
|
char *mount;
|
|
|
|
char *passwd;
|
2008-02-05 11:17:33 +01:00
|
|
|
const char *user;
|
2006-07-20 18:02:40 +02:00
|
|
|
char *name;
|
2008-09-12 14:01:45 +02:00
|
|
|
BlockParam *block_param;
|
2008-01-26 13:46:37 +01:00
|
|
|
int public;
|
2004-10-20 22:41:21 +02:00
|
|
|
|
2008-09-12 14:01:45 +02:00
|
|
|
sd = new_shout_data();
|
2004-10-20 22:41:21 +02:00
|
|
|
|
2008-09-12 14:01:45 +02:00
|
|
|
if (shout_init_count == 0)
|
2006-07-20 18:02:40 +02:00
|
|
|
shout_init();
|
2004-11-01 15:56:32 +01:00
|
|
|
|
2008-09-12 14:01:45 +02:00
|
|
|
shout_init_count++;
|
2004-11-01 15:56:32 +01:00
|
|
|
|
2008-09-12 14:01:45 +02:00
|
|
|
check_block_param("host");
|
|
|
|
host = block_param->value;
|
2004-10-20 22:41:21 +02:00
|
|
|
|
2008-09-12 14:01:45 +02:00
|
|
|
check_block_param("mount");
|
|
|
|
mount = block_param->value;
|
2004-10-20 22:41:21 +02:00
|
|
|
|
2008-09-12 14:01:45 +02:00
|
|
|
check_block_param("port");
|
2004-10-20 22:41:21 +02:00
|
|
|
|
2008-09-12 14:01:45 +02:00
|
|
|
port = strtol(block_param->value, &test, 10);
|
2004-10-20 22:41:21 +02:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
if (*test != '\0' || port <= 0) {
|
2007-05-26 20:15:54 +02:00
|
|
|
FATAL("shout port \"%s\" is not a positive integer, line %i\n",
|
2008-09-12 14:01:45 +02:00
|
|
|
block_param->value, block_param->line);
|
2004-10-23 03:04:58 +02:00
|
|
|
}
|
|
|
|
|
2008-09-12 14:01:45 +02:00
|
|
|
check_block_param("password");
|
|
|
|
passwd = block_param->value;
|
2004-10-23 03:04:58 +02:00
|
|
|
|
2008-09-12 14:01:45 +02:00
|
|
|
check_block_param("name");
|
|
|
|
name = block_param->value;
|
2004-10-20 22:41:21 +02:00
|
|
|
|
2007-09-06 01:59:36 +02:00
|
|
|
public = getBoolBlockParam(param, "public", 1);
|
|
|
|
if (public == CONF_BOOL_UNSET)
|
|
|
|
public = 0;
|
2004-11-04 05:01:04 +01:00
|
|
|
|
2008-09-12 14:01:45 +02:00
|
|
|
block_param = getBlockParam(param, "user");
|
|
|
|
if (block_param)
|
|
|
|
user = block_param->value;
|
2006-07-20 18:02:40 +02:00
|
|
|
else
|
|
|
|
user = "source";
|
2004-10-20 22:41:21 +02:00
|
|
|
|
2008-09-12 14:01:45 +02:00
|
|
|
block_param = getBlockParam(param, "quality");
|
2004-10-20 22:41:21 +02:00
|
|
|
|
2008-09-12 14:01:45 +02:00
|
|
|
if (block_param) {
|
|
|
|
int line = block_param->line;
|
2004-10-23 03:04:58 +02:00
|
|
|
|
2008-09-12 14:01:45 +02:00
|
|
|
sd->quality = strtod(block_param->value, &test);
|
2004-10-29 15:33:51 +02:00
|
|
|
|
2006-10-10 22:00:33 +02:00
|
|
|
if (*test != '\0' || sd->quality < -1.0 || sd->quality > 10.0) {
|
2007-05-26 20:15:54 +02:00
|
|
|
FATAL("shout quality \"%s\" is not a number in the "
|
2008-09-12 14:01:45 +02:00
|
|
|
"range -1 to 10, line %i\n", block_param->value,
|
|
|
|
block_param->line);
|
2004-10-29 15:33:51 +02:00
|
|
|
}
|
|
|
|
|
2008-09-12 14:01:45 +02:00
|
|
|
block_param = getBlockParam(param, "bitrate");
|
2004-10-29 15:33:51 +02:00
|
|
|
|
2008-09-12 14:01:45 +02:00
|
|
|
if (block_param) {
|
2007-05-26 20:15:54 +02:00
|
|
|
FATAL("quality (line %i) and bitrate (line %i) are "
|
2006-07-20 18:02:40 +02:00
|
|
|
"both defined for shout output\n", line,
|
2008-09-12 14:01:45 +02:00
|
|
|
block_param->line);
|
2004-10-29 15:33:51 +02:00
|
|
|
}
|
2006-07-20 18:02:40 +02:00
|
|
|
} else {
|
2008-09-12 14:01:45 +02:00
|
|
|
block_param = getBlockParam(param, "bitrate");
|
2004-10-29 15:33:51 +02:00
|
|
|
|
2008-09-12 14:01:45 +02:00
|
|
|
if (!block_param) {
|
2007-05-26 20:15:54 +02:00
|
|
|
FATAL("neither bitrate nor quality defined for shout "
|
2006-07-20 18:02:40 +02:00
|
|
|
"output at line %i\n", param->line);
|
2004-10-29 15:33:51 +02:00
|
|
|
}
|
|
|
|
|
2008-09-12 14:01:45 +02:00
|
|
|
sd->bitrate = strtol(block_param->value, &test, 10);
|
2004-10-29 15:33:51 +02:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
if (*test != '\0' || sd->bitrate <= 0) {
|
2007-05-26 20:15:54 +02:00
|
|
|
FATAL("bitrate at line %i should be a positive integer "
|
2008-09-12 14:01:45 +02:00
|
|
|
"\n", block_param->line);
|
2004-10-29 15:33:51 +02:00
|
|
|
}
|
2004-10-23 03:04:58 +02:00
|
|
|
}
|
|
|
|
|
2008-09-12 14:01:45 +02:00
|
|
|
check_block_param("format");
|
|
|
|
sd->audio_format = audio_output->reqAudioFormat;
|
|
|
|
|
|
|
|
if (shout_set_host(sd->shout_conn, host) != SHOUTERR_SUCCESS ||
|
|
|
|
shout_set_port(sd->shout_conn, port) != SHOUTERR_SUCCESS ||
|
|
|
|
shout_set_password(sd->shout_conn, passwd) != SHOUTERR_SUCCESS ||
|
|
|
|
shout_set_mount(sd->shout_conn, mount) != SHOUTERR_SUCCESS ||
|
|
|
|
shout_set_name(sd->shout_conn, name) != SHOUTERR_SUCCESS ||
|
|
|
|
shout_set_user(sd->shout_conn, user) != SHOUTERR_SUCCESS ||
|
|
|
|
shout_set_public(sd->shout_conn, public) != SHOUTERR_SUCCESS ||
|
|
|
|
shout_set_nonblocking(sd->shout_conn, 1) != SHOUTERR_SUCCESS ||
|
|
|
|
shout_set_format(sd->shout_conn, SHOUT_FORMAT_VORBIS)
|
2006-07-20 18:02:40 +02:00
|
|
|
!= SHOUTERR_SUCCESS ||
|
2008-09-12 14:01:45 +02:00
|
|
|
shout_set_protocol(sd->shout_conn, SHOUT_PROTOCOL_HTTP)
|
2006-07-20 18:02:40 +02:00
|
|
|
!= SHOUTERR_SUCCESS ||
|
2008-09-12 14:01:45 +02:00
|
|
|
shout_set_agent(sd->shout_conn, "MPD") != SHOUTERR_SUCCESS) {
|
2007-05-26 20:15:54 +02:00
|
|
|
FATAL("error configuring shout defined at line %i: %s\n",
|
2008-09-12 14:01:45 +02:00
|
|
|
param->line, shout_get_error(sd->shout_conn));
|
2004-10-20 22:41:21 +02:00
|
|
|
}
|
2004-10-20 19:49:21 +02:00
|
|
|
|
2004-11-09 14:04:20 +01:00
|
|
|
/* optional paramters */
|
2008-09-12 14:01:45 +02:00
|
|
|
block_param = getBlockParam(param, "timeout");
|
|
|
|
if (block_param) {
|
|
|
|
sd->timeout = (int)strtol(block_param->value, &test, 10);
|
2007-06-12 20:28:57 +02:00
|
|
|
if (*test != '\0' || sd->timeout <= 0) {
|
|
|
|
FATAL("shout timeout is not a positive integer, "
|
2008-09-12 14:01:45 +02:00
|
|
|
"line %i\n", block_param->line);
|
2007-06-12 20:28:57 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-09-12 14:01:45 +02:00
|
|
|
block_param = getBlockParam(param, "genre");
|
|
|
|
if (block_param && shout_set_genre(sd->shout_conn, block_param->value)) {
|
2007-05-26 20:15:54 +02:00
|
|
|
FATAL("error configuring shout defined at line %i: %s\n",
|
2008-09-12 14:01:45 +02:00
|
|
|
param->line, shout_get_error(sd->shout_conn));
|
2004-11-09 14:04:20 +01:00
|
|
|
}
|
|
|
|
|
2008-09-12 14:01:45 +02:00
|
|
|
block_param = getBlockParam(param, "description");
|
|
|
|
if (block_param && shout_set_description(sd->shout_conn,
|
|
|
|
block_param->value)) {
|
2007-05-26 20:15:54 +02:00
|
|
|
FATAL("error configuring shout defined at line %i: %s\n",
|
2008-09-12 14:01:45 +02:00
|
|
|
param->line, shout_get_error(sd->shout_conn));
|
2004-11-09 14:04:20 +01:00
|
|
|
}
|
|
|
|
|
2004-10-29 15:33:51 +02:00
|
|
|
{
|
|
|
|
char temp[11];
|
|
|
|
memset(temp, 0, sizeof(temp));
|
2006-07-20 18:02:40 +02:00
|
|
|
|
2008-09-11 07:49:51 +02:00
|
|
|
snprintf(temp, sizeof(temp), "%d", sd->audio_format.channels);
|
2008-09-12 14:01:45 +02:00
|
|
|
shout_set_audio_info(sd->shout_conn, SHOUT_AI_CHANNELS, temp);
|
2004-10-29 15:33:51 +02:00
|
|
|
|
2008-09-11 07:49:51 +02:00
|
|
|
snprintf(temp, sizeof(temp), "%d", sd->audio_format.sampleRate);
|
2006-07-20 18:02:40 +02:00
|
|
|
|
2008-09-12 14:01:45 +02:00
|
|
|
shout_set_audio_info(sd->shout_conn, SHOUT_AI_SAMPLERATE, temp);
|
2004-10-29 15:33:51 +02:00
|
|
|
|
2006-10-10 22:00:33 +02:00
|
|
|
if (sd->quality >= -1.0) {
|
2004-10-29 15:33:51 +02:00
|
|
|
snprintf(temp, sizeof(temp), "%2.2f", sd->quality);
|
2008-09-12 14:01:45 +02:00
|
|
|
shout_set_audio_info(sd->shout_conn, SHOUT_AI_QUALITY,
|
2006-07-20 18:02:40 +02:00
|
|
|
temp);
|
|
|
|
} else {
|
2004-10-29 15:33:51 +02:00
|
|
|
snprintf(temp, sizeof(temp), "%d", sd->bitrate);
|
2008-09-12 14:01:45 +02:00
|
|
|
shout_set_audio_info(sd->shout_conn, SHOUT_AI_BITRATE,
|
2006-07-20 18:02:40 +02:00
|
|
|
temp);
|
2004-10-29 15:33:51 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-09-12 14:01:45 +02:00
|
|
|
audio_output->data = sd;
|
2004-10-20 22:41:21 +02:00
|
|
|
|
|
|
|
return 0;
|
2004-10-20 19:49:21 +02:00
|
|
|
}
|
|
|
|
|
2008-09-12 14:01:45 +02:00
|
|
|
static int handle_shout_error(struct shout_data *sd, int err)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
|
|
|
switch (err) {
|
2004-11-09 04:58:12 +01:00
|
|
|
case SHOUTERR_SUCCESS:
|
|
|
|
break;
|
|
|
|
case SHOUTERR_UNCONNECTED:
|
|
|
|
case SHOUTERR_SOCKET:
|
2007-06-12 19:58:17 +02:00
|
|
|
ERROR("Lost shout connection to %s:%i: %s\n",
|
2008-09-12 14:01:45 +02:00
|
|
|
shout_get_host(sd->shout_conn),
|
|
|
|
shout_get_port(sd->shout_conn),
|
|
|
|
shout_get_error(sd->shout_conn));
|
|
|
|
sd->shout_error = 1;
|
2004-11-09 04:58:12 +01:00
|
|
|
return -1;
|
|
|
|
default:
|
2007-06-12 19:58:17 +02:00
|
|
|
ERROR("shout: connection to %s:%i error: %s\n",
|
2008-09-12 14:01:45 +02:00
|
|
|
shout_get_host(sd->shout_conn),
|
|
|
|
shout_get_port(sd->shout_conn),
|
|
|
|
shout_get_error(sd->shout_conn));
|
|
|
|
sd->shout_error = 1;
|
2004-11-09 04:58:12 +01:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-09-12 15:57:43 +02:00
|
|
|
static int write_page(struct shout_data *sd)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2008-03-26 11:37:36 +01:00
|
|
|
int err;
|
2004-11-09 04:58:12 +01:00
|
|
|
|
2008-09-12 14:01:45 +02:00
|
|
|
shout_sync(sd->shout_conn);
|
2008-09-12 15:57:43 +02:00
|
|
|
err = shout_send(sd->shout_conn, sd->buf.data, sd->buf.len);
|
2008-09-12 14:01:45 +02:00
|
|
|
if (handle_shout_error(sd, err) < 0)
|
2006-07-20 18:02:40 +02:00
|
|
|
return -1;
|
2008-09-12 15:57:43 +02:00
|
|
|
clear_shout_buffer(sd);
|
2004-11-09 04:58:12 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-09-12 14:01:45 +02:00
|
|
|
static void close_shout_conn(struct shout_data *sd)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2008-09-12 15:57:43 +02:00
|
|
|
if (sd->opened) {
|
|
|
|
if (shout_ogg_encoder_clear_encoder(sd))
|
|
|
|
write_page(sd);
|
|
|
|
}
|
2004-10-26 14:56:10 +02:00
|
|
|
|
2008-09-12 14:01:45 +02:00
|
|
|
if (shout_get_connected(sd->shout_conn) != SHOUTERR_UNCONNECTED &&
|
|
|
|
shout_close(sd->shout_conn) != SHOUTERR_SUCCESS) {
|
2007-08-11 23:36:23 +02:00
|
|
|
ERROR("problem closing connection to shout server: %s\n",
|
2008-09-12 14:01:45 +02:00
|
|
|
shout_get_error(sd->shout_conn));
|
2004-10-23 17:25:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
sd->opened = 0;
|
|
|
|
}
|
|
|
|
|
2008-09-12 14:01:45 +02:00
|
|
|
static void my_shout_finish_driver(struct audio_output *audio_output)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2008-09-12 14:01:45 +02:00
|
|
|
struct shout_data *sd = (struct shout_data *) audio_output->data;
|
2004-10-20 19:49:21 +02:00
|
|
|
|
2008-09-12 14:01:45 +02:00
|
|
|
close_shout_conn(sd);
|
2004-10-23 17:25:42 +02:00
|
|
|
|
2008-09-12 14:01:45 +02:00
|
|
|
free_shout_data(sd);
|
2004-10-20 22:41:21 +02:00
|
|
|
|
2008-09-12 14:01:45 +02:00
|
|
|
shout_init_count--;
|
2004-10-20 22:41:21 +02:00
|
|
|
|
2008-09-12 14:01:45 +02:00
|
|
|
if (shout_init_count == 0)
|
2006-07-20 18:02:40 +02:00
|
|
|
shout_shutdown();
|
2004-10-20 19:49:21 +02:00
|
|
|
}
|
|
|
|
|
2008-09-12 14:01:45 +02:00
|
|
|
static void my_shout_drop_buffered_audio(struct audio_output *audio_output)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2008-09-12 14:01:45 +02:00
|
|
|
struct shout_data *sd = (struct shout_data *)audio_output->data;
|
2007-08-11 23:36:23 +02:00
|
|
|
timer_reset(sd->timer);
|
|
|
|
|
|
|
|
/* needs to be implemented for shout */
|
2005-03-05 15:01:13 +01:00
|
|
|
}
|
|
|
|
|
2008-09-12 14:01:45 +02:00
|
|
|
static void my_shout_close_device(struct audio_output *audio_output)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2008-09-12 14:01:45 +02:00
|
|
|
struct shout_data *sd = (struct shout_data *) audio_output->data;
|
2004-11-02 23:13:58 +01:00
|
|
|
|
2008-09-12 14:01:45 +02:00
|
|
|
close_shout_conn(sd);
|
2004-11-02 23:13:58 +01:00
|
|
|
|
2008-09-12 14:01:45 +02:00
|
|
|
if (sd->timer) {
|
2007-08-11 23:36:23 +02:00
|
|
|
timer_free(sd->timer);
|
|
|
|
sd->timer = NULL;
|
|
|
|
}
|
|
|
|
|
2008-09-12 14:01:45 +02:00
|
|
|
audio_output->open = 0;
|
2004-10-23 17:25:42 +02:00
|
|
|
}
|
2004-10-20 22:41:21 +02:00
|
|
|
|
2008-09-12 14:01:45 +02:00
|
|
|
static int shout_connect(struct shout_data *sd)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2004-11-02 14:26:50 +01:00
|
|
|
time_t t = time(NULL);
|
2008-09-12 14:01:45 +02:00
|
|
|
int state = shout_get_connected(sd->shout_conn);
|
2007-08-11 23:36:23 +02:00
|
|
|
|
|
|
|
/* already connected */
|
|
|
|
if (state == SHOUTERR_CONNECTED)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
/* waiting to connect */
|
2008-09-12 14:01:45 +02:00
|
|
|
if (state == SHOUTERR_BUSY && sd->conn_attempts != 0) {
|
2007-08-11 23:36:23 +02:00
|
|
|
/* timeout waiting to connect */
|
2008-09-12 14:01:45 +02:00
|
|
|
if ((t - sd->last_attempt) > sd->timeout) {
|
2007-08-11 23:36:23 +02:00
|
|
|
ERROR("timeout connecting to shout server %s:%i "
|
|
|
|
"(attempt %i)\n",
|
2008-09-12 14:01:45 +02:00
|
|
|
shout_get_host(sd->shout_conn),
|
|
|
|
shout_get_port(sd->shout_conn),
|
|
|
|
sd->conn_attempts);
|
2007-08-11 23:36:23 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* we're in some funky state, so just reset it to unconnected */
|
|
|
|
if (state != SHOUTERR_UNCONNECTED)
|
2008-09-12 14:01:45 +02:00
|
|
|
shout_close(sd->shout_conn);
|
2007-06-09 17:51:20 +02:00
|
|
|
|
2007-08-11 23:36:23 +02:00
|
|
|
/* throttle new connection attempts */
|
2008-09-12 14:01:45 +02:00
|
|
|
if (sd->conn_attempts != 0 &&
|
|
|
|
(t - sd->last_attempt) <= CONN_ATTEMPT_INTERVAL) {
|
2004-11-02 14:26:50 +01:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2007-08-11 23:36:23 +02:00
|
|
|
/* initiate a new connection */
|
|
|
|
|
2008-09-12 14:01:45 +02:00
|
|
|
sd->conn_attempts++;
|
|
|
|
sd->last_attempt = t;
|
2007-06-12 19:58:17 +02:00
|
|
|
|
2008-09-12 14:01:45 +02:00
|
|
|
state = shout_open(sd->shout_conn);
|
2007-06-12 19:58:17 +02:00
|
|
|
switch (state) {
|
2006-10-11 02:18:43 +02:00
|
|
|
case SHOUTERR_SUCCESS:
|
|
|
|
case SHOUTERR_CONNECTED:
|
2007-08-11 23:36:23 +02:00
|
|
|
return 0;
|
2006-10-11 02:18:43 +02:00
|
|
|
case SHOUTERR_BUSY:
|
2007-08-11 23:36:23 +02:00
|
|
|
return 1;
|
2006-10-11 02:18:43 +02:00
|
|
|
default:
|
2004-11-02 14:45:38 +01:00
|
|
|
ERROR("problem opening connection to shout server %s:%i "
|
2006-07-20 18:02:40 +02:00
|
|
|
"(attempt %i): %s\n",
|
2008-09-12 14:01:45 +02:00
|
|
|
shout_get_host(sd->shout_conn),
|
|
|
|
shout_get_port(sd->shout_conn),
|
|
|
|
sd->conn_attempts, shout_get_error(sd->shout_conn));
|
2004-10-20 22:41:21 +02:00
|
|
|
return -1;
|
|
|
|
}
|
2007-08-11 23:36:23 +02:00
|
|
|
}
|
|
|
|
|
2008-09-12 14:01:45 +02:00
|
|
|
static int open_shout_conn(struct audio_output *audio_output)
|
2007-08-11 23:36:23 +02:00
|
|
|
{
|
2008-09-12 14:01:45 +02:00
|
|
|
struct shout_data *sd = (struct shout_data *) audio_output->data;
|
2007-08-11 23:36:23 +02:00
|
|
|
int status;
|
|
|
|
|
2008-09-12 14:01:45 +02:00
|
|
|
status = shout_connect(sd);
|
2007-08-11 23:36:23 +02:00
|
|
|
if (status != 0)
|
|
|
|
return status;
|
2004-10-20 19:49:21 +02:00
|
|
|
|
2008-09-12 14:01:45 +02:00
|
|
|
if (init_encoder(sd) < 0) {
|
|
|
|
shout_close(sd->shout_conn);
|
2004-10-22 21:40:09 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2008-09-12 15:57:43 +02:00
|
|
|
if (sd->buf.len)
|
|
|
|
write_page(sd);
|
2004-10-22 21:40:09 +02:00
|
|
|
|
2008-09-12 15:57:43 +02:00
|
|
|
sd->shout_error = 0;
|
2004-11-01 21:23:00 +01:00
|
|
|
sd->opened = 1;
|
2008-09-12 15:57:43 +02:00
|
|
|
sd->tag_to_send = 1;
|
2008-09-12 14:01:45 +02:00
|
|
|
sd->conn_attempts = 0;
|
2004-10-23 03:04:58 +02:00
|
|
|
|
2004-10-20 19:49:21 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-09-12 14:01:45 +02:00
|
|
|
static int my_shout_open_device(struct audio_output *audio_output)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2008-09-12 14:01:45 +02:00
|
|
|
struct shout_data *sd = (struct shout_data *) audio_output->data;
|
2004-10-26 14:56:10 +02:00
|
|
|
|
2008-09-12 14:01:45 +02:00
|
|
|
if (!sd->opened && open_shout_conn(audio_output) < 0)
|
2004-11-01 14:21:10 +01:00
|
|
|
return -1;
|
2007-06-12 19:58:17 +02:00
|
|
|
|
2007-08-11 23:36:23 +02:00
|
|
|
if (sd->timer)
|
|
|
|
timer_free(sd->timer);
|
|
|
|
|
2008-09-12 14:01:45 +02:00
|
|
|
sd->timer = timer_new(&audio_output->outAudioFormat);
|
2007-08-11 23:36:23 +02:00
|
|
|
|
2008-09-12 14:01:45 +02:00
|
|
|
audio_output->open = 1;
|
2004-11-01 14:21:10 +01:00
|
|
|
|
|
|
|
return 0;
|
2004-10-26 14:56:10 +02:00
|
|
|
}
|
|
|
|
|
2008-09-12 14:01:45 +02:00
|
|
|
static void send_metadata(struct shout_data * sd)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
|
|
|
if (!sd->opened || !sd->tag)
|
|
|
|
return;
|
2004-10-26 04:32:37 +02:00
|
|
|
|
2008-09-12 15:02:57 +02:00
|
|
|
if (shout_ogg_encoder_send_metadata(sd)) {
|
|
|
|
close_shout_conn(sd);
|
2006-07-20 18:02:40 +02:00
|
|
|
return;
|
2004-10-26 04:32:37 +02:00
|
|
|
}
|
|
|
|
|
2008-09-12 14:01:45 +02:00
|
|
|
sd->tag_to_send = 0;
|
2004-10-26 04:32:37 +02:00
|
|
|
}
|
|
|
|
|
2008-09-12 14:01:45 +02:00
|
|
|
static int my_shout_play(struct audio_output *audio_output,
|
|
|
|
const char *chunk, size_t size)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2008-09-12 14:01:45 +02:00
|
|
|
struct shout_data *sd = (struct shout_data *) audio_output->data;
|
2007-08-11 23:36:23 +02:00
|
|
|
int status;
|
|
|
|
|
|
|
|
if (!sd->timer->started)
|
|
|
|
timer_start(sd->timer);
|
|
|
|
|
|
|
|
timer_add(sd->timer, size);
|
2004-10-23 03:04:58 +02:00
|
|
|
|
2008-09-12 14:01:45 +02:00
|
|
|
if (sd->opened && sd->tag_to_send)
|
|
|
|
send_metadata(sd);
|
2004-10-26 14:56:10 +02:00
|
|
|
|
2007-08-11 23:36:23 +02:00
|
|
|
if (!sd->opened) {
|
2008-09-12 14:01:45 +02:00
|
|
|
status = open_shout_conn(audio_output);
|
2007-08-11 23:36:23 +02:00
|
|
|
if (status < 0) {
|
2008-09-12 14:01:45 +02:00
|
|
|
my_shout_close_device(audio_output);
|
2007-08-11 23:36:23 +02:00
|
|
|
return -1;
|
|
|
|
} else if (status > 0) {
|
|
|
|
timer_sync(sd->timer);
|
|
|
|
return 0;
|
|
|
|
}
|
2004-10-25 23:36:08 +02:00
|
|
|
}
|
|
|
|
|
2008-09-12 15:02:57 +02:00
|
|
|
shout_ogg_encoder_encode(sd, chunk, size);
|
2004-10-22 21:40:09 +02:00
|
|
|
|
2008-09-12 15:57:43 +02:00
|
|
|
if (write_page(sd) < 0) {
|
|
|
|
my_shout_close_device(audio_output);
|
|
|
|
return -1;
|
2004-11-01 21:02:08 +01:00
|
|
|
}
|
|
|
|
|
2004-10-20 19:49:21 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-09-12 14:01:45 +02:00
|
|
|
static void my_shout_set_tag(struct audio_output *audio_output,
|
|
|
|
const struct tag *tag)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2008-09-12 14:01:45 +02:00
|
|
|
struct shout_data *sd = (struct shout_data *) audio_output->data;
|
2004-10-25 22:09:03 +02:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
if (sd->tag)
|
2008-08-29 15:02:49 +02:00
|
|
|
tag_free(sd->tag);
|
2004-10-26 04:32:37 +02:00
|
|
|
sd->tag = NULL;
|
2008-09-12 14:01:45 +02:00
|
|
|
sd->tag_to_send = 0;
|
2004-10-25 22:09:03 +02:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
if (!tag)
|
|
|
|
return;
|
2004-10-25 22:09:03 +02:00
|
|
|
|
2008-08-29 15:02:49 +02:00
|
|
|
sd->tag = tag_dup(tag);
|
2008-09-12 14:01:45 +02:00
|
|
|
sd->tag_to_send = 1;
|
2004-10-25 22:09:03 +02:00
|
|
|
}
|
|
|
|
|
2008-09-08 11:43:38 +02:00
|
|
|
const struct audio_output_plugin shoutPlugin = {
|
2004-10-20 19:49:21 +02:00
|
|
|
"shout",
|
2005-03-12 04:10:09 +01:00
|
|
|
NULL,
|
2008-09-12 14:01:45 +02:00
|
|
|
my_shout_init_driver,
|
|
|
|
my_shout_finish_driver,
|
|
|
|
my_shout_open_device,
|
|
|
|
my_shout_play,
|
|
|
|
my_shout_drop_buffered_audio,
|
|
|
|
my_shout_close_device,
|
|
|
|
my_shout_set_tag,
|
2004-10-20 19:49:21 +02:00
|
|
|
};
|
2004-10-21 01:08:40 +02:00
|
|
|
|
|
|
|
#else
|
|
|
|
|
2006-07-14 19:39:14 +02:00
|
|
|
DISABLED_AUDIO_OUTPUT_PLUGIN(shoutPlugin)
|
2004-10-21 01:08:40 +02:00
|
|
|
#endif
|