shout_plugin.c 12.9 KB
Newer Older
1
/*
2
 * Copyright (C) 2003-2010 The Music Player Daemon Project
3
 * http://www.musicpd.org
4 5 6 7 8 9 10 11 12 13
 *
 * 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.
14 15 16 17
 *
 * 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.
18 19
 */

20
#include "config.h"
21
#include "output_api.h"
22 23
#include "encoder_plugin.h"
#include "encoder_list.h"
Warren Dukes's avatar
Warren Dukes committed
24

25 26 27
#include <shout/shout.h>
#include <glib.h>

28
#include <assert.h>
29 30
#include <stdlib.h>
#include <stdio.h>
31

32 33 34
#undef G_LOG_DOMAIN
#define G_LOG_DOMAIN "shout"

35
#define DEFAULT_CONN_TIMEOUT  2
36

37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
struct shout_buffer {
	unsigned char data[32768];
	size_t len;
};

struct shout_data {
	shout_t *shout_conn;
	shout_metadata_t *shout_meta;

	struct encoder *encoder;

	float quality;
	int bitrate;

	int timeout;

	struct shout_buffer buf;
};

Max Kellermann's avatar
Max Kellermann committed
56
static int shout_init_count;
57

58 59 60 61 62 63 64 65 66
/**
 * The quark used for GError.domain.
 */
static inline GQuark
shout_output_quark(void)
{
	return g_quark_from_static_string("shout_output");
}

67
static const struct encoder_plugin *
68
shout_encoder_plugin_get(const char *name)
69
{
70 71 72 73
	if (strcmp(name, "ogg") == 0)
		name = "vorbis";
	else if (strcmp(name, "mp3") == 0)
		name = "lame";
74

75
	return encoder_plugin_get(name);
76
}
77

Max Kellermann's avatar
Max Kellermann committed
78
static struct shout_data *new_shout_data(void)
Avuton Olrich's avatar
Avuton Olrich committed
79
{
80
	struct shout_data *ret = g_new(struct shout_data, 1);
81

Max Kellermann's avatar
Max Kellermann committed
82
	ret->shout_conn = shout_new();
83
	ret->shout_meta = shout_metadata_new();
84
	ret->bitrate = -1;
85
	ret->quality = -2.0;
86
	ret->timeout = DEFAULT_CONN_TIMEOUT;
87

88 89 90
	return ret;
}

Max Kellermann's avatar
Max Kellermann committed
91
static void free_shout_data(struct shout_data *sd)
Avuton Olrich's avatar
Avuton Olrich committed
92
{
93 94
	if (sd->shout_meta)
		shout_metadata_free(sd->shout_meta);
Max Kellermann's avatar
Max Kellermann committed
95 96
	if (sd->shout_conn)
		shout_free(sd->shout_conn);
97

98
	g_free(sd);
99 100
}

Max Kellermann's avatar
Max Kellermann committed
101
#define check_block_param(name) {		  \
102
		block_param = config_get_block_param(param, name);	\
Max Kellermann's avatar
Max Kellermann committed
103
		if (!block_param) {					\
104 105
			g_error("no \"%s\" defined for shout device defined at line " \
				"%i\n", name, param->line);		\
Max Kellermann's avatar
Max Kellermann committed
106 107
		}							\
	}
108

109 110
static void *
my_shout_init_driver(const struct audio_format *audio_format,
111 112
		     const struct config_param *param,
		     GError **error)
Avuton Olrich's avatar
Avuton Olrich committed
113
{
Max Kellermann's avatar
Max Kellermann committed
114
	struct shout_data *sd;
Avuton Olrich's avatar
Avuton Olrich committed
115
	char *test;
116
	unsigned port;
Avuton Olrich's avatar
Avuton Olrich committed
117 118 119
	char *host;
	char *mount;
	char *passwd;
120
	const char *encoding;
121 122
	const struct encoder_plugin *encoder_plugin;
	unsigned shout_format;
123
	unsigned protocol;
Max Kellermann's avatar
Max Kellermann committed
124
	const char *user;
Avuton Olrich's avatar
Avuton Olrich committed
125
	char *name;
126
	const char *value;
127
	struct block_param *block_param;
128
	int public;
129

130 131 132 133 134 135 136
	if (audio_format == NULL ||
	    !audio_format_fully_defined(audio_format)) {
		g_set_error(error, shout_output_quark(), 0,
			    "Need full audio format specification");
		return NULL;
	}

Max Kellermann's avatar
Max Kellermann committed
137
	sd = new_shout_data();
138

Max Kellermann's avatar
Max Kellermann committed
139
	if (shout_init_count == 0)
Avuton Olrich's avatar
Avuton Olrich committed
140
		shout_init();
141

Max Kellermann's avatar
Max Kellermann committed
142
	shout_init_count++;
143

Max Kellermann's avatar
Max Kellermann committed
144 145
	check_block_param("host");
	host = block_param->value;
146

Max Kellermann's avatar
Max Kellermann committed
147 148
	check_block_param("mount");
	mount = block_param->value;
149

150 151
	port = config_get_block_unsigned(param, "port", 0);
	if (port == 0) {
152 153 154
		g_set_error(error, shout_output_quark(), 0,
			    "shout port must be configured");
		return NULL;
155 156
	}

Max Kellermann's avatar
Max Kellermann committed
157 158
	check_block_param("password");
	passwd = block_param->value;
159

Max Kellermann's avatar
Max Kellermann committed
160 161
	check_block_param("name");
	name = block_param->value;
162

163
	public = config_get_block_bool(param, "public", false);
164

165
	user = config_get_block_string(param, "user", "source");
166

167 168 169
	value = config_get_block_string(param, "quality", NULL);
	if (value != NULL) {
		sd->quality = strtod(value, &test);
170

171
		if (*test != '\0' || sd->quality < -1.0 || sd->quality > 10.0) {
172 173 174 175 176
			g_set_error(error, shout_output_quark(), 0,
				    "shout quality \"%s\" is not a number in the "
				    "range -1 to 10, line %i",
				    value, param->line);
			return NULL;
177 178
		}

179
		if (config_get_block_string(param, "bitrate", NULL) != NULL) {
180 181 182 183
			g_set_error(error, shout_output_quark(), 0,
				    "quality and bitrate are "
				    "both defined");
			return NULL;
184
		}
Avuton Olrich's avatar
Avuton Olrich committed
185
	} else {
186
		value = config_get_block_string(param, "bitrate", NULL);
187 188 189 190 191
		if (value == NULL) {
			g_set_error(error, shout_output_quark(), 0,
				    "neither bitrate nor quality defined");
			return NULL;
		}
192

193
		sd->bitrate = strtol(value, &test, 10);
194

Avuton Olrich's avatar
Avuton Olrich committed
195
		if (*test != '\0' || sd->bitrate <= 0) {
196 197 198
			g_set_error(error, shout_output_quark(), 0,
				    "bitrate must be a positive integer");
			return NULL;
199
		}
200 201
	}

202
	encoding = config_get_block_string(param, "encoding", "ogg");
203
	encoder_plugin = shout_encoder_plugin_get(encoding);
204 205 206 207 208 209
	if (encoder_plugin == NULL) {
		g_set_error(error, shout_output_quark(), 0,
			    "couldn't find shout encoder plugin \"%s\"",
			    encoding);
		return NULL;
	}
210

211
	sd->encoder = encoder_init(encoder_plugin, param, error);
212
	if (sd->encoder == NULL)
213
		return NULL;
214 215 216 217 218 219

	if (strcmp(encoding, "mp3") == 0 || strcmp(encoding, "lame") == 0)
		shout_format = SHOUT_FORMAT_MP3;
	else
		shout_format = SHOUT_FORMAT_OGG;

220 221 222
	value = config_get_block_string(param, "protocol", NULL);
	if (value != NULL) {
		if (0 == strcmp(value, "shoutcast") &&
223 224 225 226 227 228
		    0 != strcmp(encoding, "mp3")) {
			g_set_error(error, shout_output_quark(), 0,
				    "you cannot stream \"%s\" to shoutcast, use mp3",
				    encoding);
			return NULL;
		} else if (0 == strcmp(value, "shoutcast"))
229
			protocol = SHOUT_PROTOCOL_ICY;
230
		else if (0 == strcmp(value, "icecast1"))
231
			protocol = SHOUT_PROTOCOL_XAUDIOCAST;
232
		else if (0 == strcmp(value, "icecast2"))
233
			protocol = SHOUT_PROTOCOL_HTTP;
234 235 236 237 238 239 240
		else {
			g_set_error(error, shout_output_quark(), 0,
				    "shout protocol \"%s\" is not \"shoutcast\" or "
				    "\"icecast1\"or \"icecast2\"",
				    value);
			return NULL;
		}
241 242 243 244
	} else {
		protocol = SHOUT_PROTOCOL_HTTP;
	}

Max Kellermann's avatar
Max Kellermann committed
245 246 247 248 249 250 251
	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 ||
252
	    shout_set_format(sd->shout_conn, shout_format)
Avuton Olrich's avatar
Avuton Olrich committed
253
	    != SHOUTERR_SUCCESS ||
254
	    shout_set_protocol(sd->shout_conn, protocol) != SHOUTERR_SUCCESS ||
Max Kellermann's avatar
Max Kellermann committed
255
	    shout_set_agent(sd->shout_conn, "MPD") != SHOUTERR_SUCCESS) {
256 257 258
		g_set_error(error, shout_output_quark(), 0,
			    "%s", shout_get_error(sd->shout_conn));
		return NULL;
259
	}
260

261
	/* optional paramters */
262 263
	sd->timeout = config_get_block_unsigned(param, "timeout",
						DEFAULT_CONN_TIMEOUT);
264

265 266
	value = config_get_block_string(param, "genre", NULL);
	if (value != NULL && shout_set_genre(sd->shout_conn, value)) {
267 268 269
		g_set_error(error, shout_output_quark(), 0,
			    "%s", shout_get_error(sd->shout_conn));
		return NULL;
270 271
	}

272 273
	value = config_get_block_string(param, "description", NULL);
	if (value != NULL && shout_set_description(sd->shout_conn, value)) {
274 275 276
		g_set_error(error, shout_output_quark(), 0,
			    "%s", shout_get_error(sd->shout_conn));
		return NULL;
277 278
	}

279 280 281
	{
		char temp[11];
		memset(temp, 0, sizeof(temp));
Avuton Olrich's avatar
Avuton Olrich committed
282

283
		snprintf(temp, sizeof(temp), "%u", audio_format->channels);
Max Kellermann's avatar
Max Kellermann committed
284
		shout_set_audio_info(sd->shout_conn, SHOUT_AI_CHANNELS, temp);
285

286
		snprintf(temp, sizeof(temp), "%u", audio_format->sample_rate);
Avuton Olrich's avatar
Avuton Olrich committed
287

Max Kellermann's avatar
Max Kellermann committed
288
		shout_set_audio_info(sd->shout_conn, SHOUT_AI_SAMPLERATE, temp);
289

290
		if (sd->quality >= -1.0) {
291
			snprintf(temp, sizeof(temp), "%2.2f", sd->quality);
Max Kellermann's avatar
Max Kellermann committed
292
			shout_set_audio_info(sd->shout_conn, SHOUT_AI_QUALITY,
Avuton Olrich's avatar
Avuton Olrich committed
293 294
					     temp);
		} else {
295
			snprintf(temp, sizeof(temp), "%d", sd->bitrate);
Max Kellermann's avatar
Max Kellermann committed
296
			shout_set_audio_info(sd->shout_conn, SHOUT_AI_BITRATE,
Avuton Olrich's avatar
Avuton Olrich committed
297
					     temp);
298 299 300
		}
	}

301
	return sd;
302 303
}

304
static bool
305
handle_shout_error(struct shout_data *sd, int err, GError **error)
Avuton Olrich's avatar
Avuton Olrich committed
306 307
{
	switch (err) {
308 309
	case SHOUTERR_SUCCESS:
		break;
310

311 312
	case SHOUTERR_UNCONNECTED:
	case SHOUTERR_SOCKET:
313 314 315 316 317
		g_set_error(error, shout_output_quark(), err,
			    "Lost shout connection to %s:%i: %s",
			    shout_get_host(sd->shout_conn),
			    shout_get_port(sd->shout_conn),
			    shout_get_error(sd->shout_conn));
318 319
		return false;

320
	default:
321 322 323 324 325
		g_set_error(error, shout_output_quark(), err,
			    "connection to %s:%i error: %s",
			    shout_get_host(sd->shout_conn),
			    shout_get_port(sd->shout_conn),
			    shout_get_error(sd->shout_conn));
326
		return false;
327 328
	}

329
	return true;
330 331
}

332
static bool
333
write_page(struct shout_data *sd, GError **error)
Avuton Olrich's avatar
Avuton Olrich committed
334
{
335
	int err;
336

337 338 339 340
	assert(sd->encoder != NULL);

	sd->buf.len = encoder_read(sd->encoder,
				   sd->buf.data, sizeof(sd->buf.data));
341
	if (sd->buf.len == 0)
342
		return true;
343

Max Kellermann's avatar
Max Kellermann committed
344
	shout_sync(sd->shout_conn);
345
	err = shout_send(sd->shout_conn, sd->buf.data, sd->buf.len);
346
	if (!handle_shout_error(sd, err, error))
347
		return false;
348

349
	return true;
350 351
}

352
static void close_shout_conn(struct shout_data * sd)
Avuton Olrich's avatar
Avuton Olrich committed
353
{
354 355
	sd->buf.len = 0;

356 357
	if (sd->encoder != NULL) {
		if (encoder_flush(sd->encoder, NULL))
358
			write_page(sd, NULL);
359 360 361

		encoder_close(sd->encoder);
	}
362

Max Kellermann's avatar
Max Kellermann committed
363 364
	if (shout_get_connected(sd->shout_conn) != SHOUTERR_UNCONNECTED &&
	    shout_close(sd->shout_conn) != SHOUTERR_SUCCESS) {
365 366
		g_warning("problem closing connection to shout server: %s\n",
			  shout_get_error(sd->shout_conn));
367 368 369
	}
}

370
static void my_shout_finish_driver(void *data)
Avuton Olrich's avatar
Avuton Olrich committed
371
{
372
	struct shout_data *sd = (struct shout_data *)data;
373

374 375
	encoder_finish(sd->encoder);

Max Kellermann's avatar
Max Kellermann committed
376
	free_shout_data(sd);
377

Max Kellermann's avatar
Max Kellermann committed
378
	shout_init_count--;
379

Max Kellermann's avatar
Max Kellermann committed
380
	if (shout_init_count == 0)
Avuton Olrich's avatar
Avuton Olrich committed
381
		shout_shutdown();
382 383
}

384
static void my_shout_drop_buffered_audio(void *data)
Avuton Olrich's avatar
Avuton Olrich committed
385
{
386
	G_GNUC_UNUSED
387
	struct shout_data *sd = (struct shout_data *)data;
388 389

	/* needs to be implemented for shout */
390 391
}

392
static void my_shout_close_device(void *data)
Avuton Olrich's avatar
Avuton Olrich committed
393
{
394
	struct shout_data *sd = (struct shout_data *)data;
395

Max Kellermann's avatar
Max Kellermann committed
396
	close_shout_conn(sd);
397
}
398

399
static bool
400
shout_connect(struct shout_data *sd, GError **error)
Avuton Olrich's avatar
Avuton Olrich committed
401
{
402
	int state;
403

Max Kellermann's avatar
Max Kellermann committed
404
	state = shout_open(sd->shout_conn);
405
	switch (state) {
406 407
	case SHOUTERR_SUCCESS:
	case SHOUTERR_CONNECTED:
408 409
		return true;

410
	default:
411 412 413 414 415
		g_set_error(error, shout_output_quark(), 0,
			    "problem opening connection to shout server %s:%i: %s",
			    shout_get_host(sd->shout_conn),
			    shout_get_port(sd->shout_conn),
			    shout_get_error(sd->shout_conn));
416
		return false;
417
	}
418 419
}

420
static bool
421 422
my_shout_open_device(void *data, struct audio_format *audio_format,
		     GError **error)
423
{
424
	struct shout_data *sd = (struct shout_data *)data;
425
	bool ret;
426

427
	ret = shout_connect(sd, error);
428 429
	if (!ret)
		return false;
430

431 432
	sd->buf.len = 0;

433 434
	ret = encoder_open(sd->encoder, audio_format, error) &&
		write_page(sd, error);
435
	if (!ret) {
Max Kellermann's avatar
Max Kellermann committed
436
		shout_close(sd->shout_conn);
437
		return false;
438 439
	}

440
	return true;
441 442
}

443
static size_t
444
my_shout_play(void *data, const void *chunk, size_t size, GError **error)
Avuton Olrich's avatar
Avuton Olrich committed
445
{
446
	struct shout_data *sd = (struct shout_data *)data;
447

448 449 450 451
	return encoder_write(sd->encoder, chunk, size, error) &&
		write_page(sd, error)
		? size
		: 0;
452 453
}

454 455
static bool
my_shout_pause(void *data)
456
{
457
	struct shout_data *sd = (struct shout_data *)data;
458 459
	static const char silence[1020];

460 461 462 463 464 465
	if (shout_delay(sd->shout_conn) > 500) {
		/* cap the latency for unpause */
		g_usleep(500000);
		return true;
	}

466
	return my_shout_play(data, silence, sizeof(silence), NULL);
467 468
}

469 470 471 472 473 474 475 476 477
static void
shout_tag_to_metadata(const struct tag *tag, char *dest, size_t size)
{
	char artist[size];
	char title[size];

	artist[0] = 0;
	title[0] = 0;

Max Kellermann's avatar
Max Kellermann committed
478
	for (unsigned i = 0; i < tag->num_items; i++) {
479
		switch (tag->items[i]->type) {
480
		case TAG_ARTIST:
481 482
			strncpy(artist, tag->items[i]->value, size);
			break;
483
		case TAG_TITLE:
484 485 486 487 488 489 490 491 492 493 494
			strncpy(title, tag->items[i]->value, size);
			break;

		default:
			break;
		}
	}

	snprintf(dest, size, "%s - %s", title, artist);
}

495
static void my_shout_set_tag(void *data,
Max Kellermann's avatar
Max Kellermann committed
496
			     const struct tag *tag)
Avuton Olrich's avatar
Avuton Olrich committed
497
{
498
	struct shout_data *sd = (struct shout_data *)data;
499
	bool ret;
500 501 502 503 504 505 506 507 508 509 510 511
	GError *error = NULL;

	if (sd->encoder->plugin->tag != NULL) {
		/* encoder plugin supports stream tags */

		ret = encoder_flush(sd->encoder, &error);
		if (!ret) {
			g_warning("%s", error->message);
			g_error_free(error);
			return;
		}

512 513 514
		ret = write_page(sd, NULL);
		if (!ret)
			return;
515 516 517 518 519 520 521 522 523 524 525

		ret = encoder_tag(sd->encoder, tag, &error);
		if (!ret) {
			g_warning("%s", error->message);
			g_error_free(error);
		}
	} else {
		/* no stream tag support: fall back to icy-metadata */
		char song[1024];

		shout_tag_to_metadata(tag, song, sizeof(song));
526

527 528 529 530 531 532
		shout_metadata_add(sd->shout_meta, "song", song);
		if (SHOUTERR_SUCCESS != shout_set_metadata(sd->shout_conn,
							   sd->shout_meta)) {
			g_warning("error setting shout metadata\n");
		}
	}
533

534
	write_page(sd, NULL);
535 536
}

537
const struct audio_output_plugin shoutPlugin = {
538 539 540 541 542
	.name = "shout",
	.init = my_shout_init_driver,
	.finish = my_shout_finish_driver,
	.open = my_shout_open_device,
	.play = my_shout_play,
543
	.pause = my_shout_pause,
544 545 546
	.cancel = my_shout_drop_buffered_audio,
	.close = my_shout_close_device,
	.send_tag = my_shout_set_tag,
547
};