2004-07-11 22:21:18 -04:00
|
|
|
/* -*- c-basic-offset: 4; -*- */
|
2004-01-28 20:02:12 -05:00
|
|
|
/* Icecast
|
|
|
|
*
|
|
|
|
* This program is distributed under the GNU General Public License, version 2.
|
|
|
|
* A copy of this license is included with this source.
|
|
|
|
*
|
|
|
|
* Copyright 2000-2004, Jack Moffitt <jack@xiph.org,
|
|
|
|
* Michael Smith <msmith@xiph.org>,
|
|
|
|
* oddsock <oddsock@xiph.org>,
|
|
|
|
* Karl Heyes <karl@xiph.org>
|
|
|
|
* and others (see AUTHORS for details).
|
|
|
|
*/
|
|
|
|
|
2002-07-23 11:15:11 -04:00
|
|
|
/* format_mp3.c
|
|
|
|
**
|
2002-12-30 02:55:56 -05:00
|
|
|
** format plugin for mp3
|
2002-07-23 11:15:11 -04:00
|
|
|
**
|
|
|
|
*/
|
|
|
|
|
2003-07-20 21:58:54 -04:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include <config.h>
|
|
|
|
#endif
|
|
|
|
|
2002-07-23 11:15:11 -04:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2003-07-22 20:27:10 -04:00
|
|
|
#ifdef HAVE_STRINGS_H
|
|
|
|
# include <strings.h>
|
|
|
|
#endif
|
2002-07-23 11:15:11 -04:00
|
|
|
|
|
|
|
#include "refbuf.h"
|
2002-12-30 02:55:56 -05:00
|
|
|
#include "source.h"
|
|
|
|
#include "client.h"
|
2002-07-23 11:15:11 -04:00
|
|
|
|
|
|
|
#include "stats.h"
|
|
|
|
#include "format.h"
|
2002-12-30 02:55:56 -05:00
|
|
|
#include "httpp/httpp.h"
|
|
|
|
|
|
|
|
#include "logging.h"
|
|
|
|
|
|
|
|
#include "format_mp3.h"
|
|
|
|
|
2003-07-07 18:02:39 -04:00
|
|
|
#ifdef WIN32
|
|
|
|
#define strcasecmp stricmp
|
|
|
|
#define strncasecmp strnicmp
|
2003-11-17 17:38:58 -05:00
|
|
|
#define snprintf _snprintf
|
2003-07-07 18:02:39 -04:00
|
|
|
#endif
|
|
|
|
|
2002-12-30 02:55:56 -05:00
|
|
|
#define CATMODULE "format-mp3"
|
|
|
|
|
2003-02-17 07:05:45 -05:00
|
|
|
/* Note that this seems to be 8192 in shoutcast - perhaps we want to be the
|
|
|
|
* same for compability with crappy clients?
|
|
|
|
*/
|
2002-12-30 02:55:56 -05:00
|
|
|
#define ICY_METADATA_INTERVAL 16000
|
2002-07-23 11:15:11 -04:00
|
|
|
|
2002-12-29 03:10:10 -05:00
|
|
|
static void format_mp3_free_plugin(format_plugin_t *self);
|
2004-08-20 11:13:59 -04:00
|
|
|
static refbuf_t *mp3_get_filter_meta (source_t *source);
|
|
|
|
static refbuf_t *mp3_get_no_meta (source_t *source);
|
|
|
|
|
|
|
|
static int format_mp3_create_client_data (source_t *source, client_t *client);
|
2004-02-29 09:38:15 -05:00
|
|
|
static void free_mp3_client_data (client_t *client);
|
2004-08-20 11:13:59 -04:00
|
|
|
static int format_mp3_write_buf_to_client(format_plugin_t *self, client_t *client);
|
2002-12-30 02:55:56 -05:00
|
|
|
static void format_mp3_send_headers(format_plugin_t *self,
|
|
|
|
source_t *source, client_t *client);
|
2004-08-20 11:13:59 -04:00
|
|
|
static void write_mp3_to_file (struct source_tag *source, refbuf_t *refbuf);
|
|
|
|
|
2002-12-30 02:55:56 -05:00
|
|
|
|
|
|
|
typedef struct {
|
2002-12-30 06:22:59 -05:00
|
|
|
int use_metadata;
|
|
|
|
int metadata_offset;
|
2004-08-20 11:13:59 -04:00
|
|
|
unsigned int since_meta_block;
|
|
|
|
int in_metadata;
|
|
|
|
refbuf_t *associated;
|
2002-12-30 02:55:56 -05:00
|
|
|
} mp3_client_data;
|
2002-12-31 15:15:03 -05:00
|
|
|
|
2004-08-20 11:13:59 -04:00
|
|
|
int format_mp3_get_plugin (source_t *source)
|
2002-07-23 11:15:11 -04:00
|
|
|
{
|
2003-02-17 07:05:45 -05:00
|
|
|
char *metadata;
|
2003-03-14 21:10:19 -05:00
|
|
|
format_plugin_t *plugin;
|
2002-12-30 06:22:59 -05:00
|
|
|
mp3_state *state = calloc(1, sizeof(mp3_state));
|
2004-08-20 11:13:59 -04:00
|
|
|
refbuf_t *meta;
|
2002-07-23 11:15:11 -04:00
|
|
|
|
2003-03-14 21:10:19 -05:00
|
|
|
plugin = (format_plugin_t *)malloc(sizeof(format_plugin_t));
|
2002-07-23 11:15:11 -04:00
|
|
|
|
2003-03-14 21:10:19 -05:00
|
|
|
plugin->type = FORMAT_TYPE_MP3;
|
2004-08-20 11:13:59 -04:00
|
|
|
plugin->get_buffer = mp3_get_no_meta;
|
2002-12-30 02:55:56 -05:00
|
|
|
plugin->write_buf_to_client = format_mp3_write_buf_to_client;
|
2004-08-20 11:13:59 -04:00
|
|
|
plugin->write_buf_to_file = write_mp3_to_file;
|
2002-12-29 03:10:10 -05:00
|
|
|
plugin->create_client_data = format_mp3_create_client_data;
|
2002-12-30 02:55:56 -05:00
|
|
|
plugin->client_send_headers = format_mp3_send_headers;
|
2003-03-14 21:10:19 -05:00
|
|
|
plugin->free_plugin = format_mp3_free_plugin;
|
2002-08-10 04:01:56 -04:00
|
|
|
plugin->format_description = "MP3 audio";
|
2002-07-23 11:15:11 -04:00
|
|
|
|
2003-03-14 21:10:19 -05:00
|
|
|
plugin->_state = state;
|
2002-12-30 06:22:59 -05:00
|
|
|
|
2004-08-20 11:13:59 -04:00
|
|
|
meta = refbuf_new (1);
|
|
|
|
memcpy (meta->data, "", 1);
|
|
|
|
state->metadata = meta;
|
|
|
|
state->interval = ICY_METADATA_INTERVAL;
|
2002-07-23 11:15:11 -04:00
|
|
|
|
2004-08-20 11:13:59 -04:00
|
|
|
metadata = httpp_getvar (source->parser, "icy-metaint");
|
|
|
|
if (metadata)
|
|
|
|
{
|
|
|
|
state->inline_metadata_interval = atoi (metadata);
|
|
|
|
state->offset = 0;
|
|
|
|
plugin->get_buffer = mp3_get_filter_meta;
|
|
|
|
}
|
|
|
|
source->format = plugin;
|
|
|
|
thread_mutex_create (&state->url_lock);
|
2003-02-17 07:05:45 -05:00
|
|
|
|
2004-08-20 11:13:59 -04:00
|
|
|
return 0;
|
2002-07-23 11:15:11 -04:00
|
|
|
}
|
|
|
|
|
2004-02-25 15:23:07 -05:00
|
|
|
|
2004-08-20 11:13:59 -04:00
|
|
|
void mp3_set_tag (format_plugin_t *plugin, char *tag, char *value)
|
2002-12-30 06:22:59 -05:00
|
|
|
{
|
2004-08-20 11:13:59 -04:00
|
|
|
mp3_state *source_mp3 = plugin->_state;
|
|
|
|
unsigned int len;
|
|
|
|
const char meta[] = "StreamTitle='";
|
|
|
|
int size = sizeof (meta) + 1;
|
|
|
|
|
|
|
|
if (tag==NULL || value == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
len = strlen (value)+1;
|
|
|
|
size += len;
|
|
|
|
/* protect against multiple updaters */
|
|
|
|
thread_mutex_lock (&source_mp3->url_lock);
|
|
|
|
if (strcmp (tag, "title") == 0 || strcmp (tag, "song") == 0)
|
2003-11-11 13:21:49 -05:00
|
|
|
{
|
2004-08-20 11:13:59 -04:00
|
|
|
char *p = strdup (value);
|
|
|
|
if (p)
|
2003-11-11 13:21:49 -05:00
|
|
|
{
|
2004-08-20 11:13:59 -04:00
|
|
|
free (source_mp3->url_title);
|
|
|
|
free (source_mp3->url_artist);
|
|
|
|
source_mp3->url_artist = NULL;
|
|
|
|
source_mp3->url_title = p;
|
|
|
|
source_mp3->update_metadata = 1;
|
2003-11-11 13:21:49 -05:00
|
|
|
}
|
2004-08-20 11:13:59 -04:00
|
|
|
}
|
|
|
|
else if (strcmp (tag, "artist") == 0)
|
|
|
|
{
|
|
|
|
char *p = strdup (value);
|
|
|
|
if (p)
|
|
|
|
{
|
|
|
|
free (source_mp3->url_artist);
|
|
|
|
source_mp3->url_artist = p;
|
|
|
|
source_mp3->update_metadata = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
thread_mutex_unlock (&source_mp3->url_lock);
|
|
|
|
}
|
2002-12-31 14:48:28 -05:00
|
|
|
|
|
|
|
|
2004-08-20 11:13:59 -04:00
|
|
|
static void filter_shoutcast_metadata (source_t *source, char *metadata, unsigned int meta_len)
|
|
|
|
{
|
|
|
|
if (metadata)
|
|
|
|
{
|
|
|
|
char *end, *p;
|
|
|
|
int len;
|
2002-12-31 14:48:28 -05:00
|
|
|
|
2004-08-20 11:13:59 -04:00
|
|
|
do
|
2003-11-11 13:21:49 -05:00
|
|
|
{
|
2004-08-20 11:13:59 -04:00
|
|
|
metadata++;
|
|
|
|
if (strncmp (metadata, "StreamTitle='", 13))
|
|
|
|
break;
|
|
|
|
if ((end = strstr (metadata, "\';")) == NULL)
|
|
|
|
break;
|
|
|
|
len = (end - metadata) - 13;
|
|
|
|
p = calloc (1, len+1);
|
|
|
|
if (p)
|
|
|
|
{
|
|
|
|
memcpy (p, metadata+13, len);
|
|
|
|
stats_event (source->mount, "title", p);
|
|
|
|
yp_touch (source->mount);
|
|
|
|
free (p);
|
|
|
|
}
|
|
|
|
} while (0);
|
|
|
|
}
|
|
|
|
}
|
2003-11-11 13:21:49 -05:00
|
|
|
|
2002-12-30 06:27:21 -05:00
|
|
|
|
2004-08-20 11:13:59 -04:00
|
|
|
/* called from the source thread when the metadata has been updated.
|
|
|
|
* The artist title are checked and made ready for clients to send
|
|
|
|
*/
|
|
|
|
void mp3_set_title (source_t *source)
|
|
|
|
{
|
|
|
|
const char meta[] = "StreamTitle='";
|
|
|
|
int size;
|
|
|
|
unsigned char len_byte;
|
|
|
|
refbuf_t *p;
|
|
|
|
unsigned int len = sizeof(meta) + 2; /* the StreamTitle, quotes, ; and null */
|
|
|
|
mp3_state *source_mp3 = source->format->_state;
|
|
|
|
|
|
|
|
/* make sure the url data does not disappear from under us */
|
|
|
|
thread_mutex_lock (&source_mp3->url_lock);
|
|
|
|
|
|
|
|
/* work out message length */
|
|
|
|
if (source_mp3->url_artist)
|
|
|
|
len += strlen (source_mp3->url_artist);
|
|
|
|
if (source_mp3->url_title)
|
|
|
|
len += strlen (source_mp3->url_title);
|
|
|
|
if (source_mp3->url_artist && source_mp3->url_title)
|
|
|
|
len += 3;
|
|
|
|
#define MAX_META_LEN 255*16
|
|
|
|
if (len > MAX_META_LEN)
|
|
|
|
{
|
|
|
|
thread_mutex_unlock (&source_mp3->url_lock);
|
|
|
|
WARN1 ("Metadata too long at %d chars", len);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
/* work out the metadata len byte */
|
|
|
|
len_byte = (len-1) / 16 + 1;
|
2002-12-30 06:22:59 -05:00
|
|
|
|
2004-08-20 11:13:59 -04:00
|
|
|
/* now we know how much space to allocate, +1 for the len byte */
|
|
|
|
size = len_byte * 16 + 1;
|
2002-12-30 06:22:59 -05:00
|
|
|
|
2004-08-20 11:13:59 -04:00
|
|
|
p = refbuf_new (size);
|
|
|
|
if (p)
|
|
|
|
{
|
|
|
|
mp3_state *source_mp3 = source->format->_state;
|
2002-12-30 06:22:59 -05:00
|
|
|
|
2004-08-20 11:13:59 -04:00
|
|
|
memset (p->data, '\0', size);
|
|
|
|
if (source_mp3->url_artist && source_mp3->url_title)
|
|
|
|
snprintf (p->data, size, "%c%s%s - %s';", len_byte, meta,
|
|
|
|
source_mp3->url_artist, source_mp3->url_title);
|
|
|
|
else
|
|
|
|
snprintf (p->data, size, "%c%s%s';", len_byte, meta,
|
|
|
|
source_mp3->url_title);
|
|
|
|
filter_shoutcast_metadata (source, p->data, size);
|
2002-12-30 06:22:59 -05:00
|
|
|
|
2004-08-20 11:13:59 -04:00
|
|
|
refbuf_release (source_mp3->metadata);
|
|
|
|
source_mp3->metadata = p;
|
|
|
|
}
|
|
|
|
thread_mutex_unlock (&source_mp3->url_lock);
|
2002-12-30 06:22:59 -05:00
|
|
|
}
|
|
|
|
|
2004-08-20 11:13:59 -04:00
|
|
|
|
|
|
|
/* send the appropriate metadata, and return the number of bytes written
|
|
|
|
* which is 0 or greater. Check the client in_metadata value afterwards
|
|
|
|
* to see if all metadata has been sent
|
|
|
|
*/
|
|
|
|
static int send_mp3_metadata (client_t *client, refbuf_t *associated)
|
2002-12-30 02:55:56 -05:00
|
|
|
{
|
2004-07-16 11:47:12 -04:00
|
|
|
int ret = 0;
|
2004-08-20 11:13:59 -04:00
|
|
|
unsigned char *metadata;
|
|
|
|
int meta_len;
|
|
|
|
mp3_client_data *client_mp3 = client->format_data;
|
|
|
|
|
|
|
|
/* If there is a change in metadata then send it else
|
|
|
|
* send a single zero value byte in its place
|
|
|
|
*/
|
|
|
|
if (associated == client_mp3->associated)
|
|
|
|
{
|
|
|
|
metadata = "\0";
|
|
|
|
meta_len = 1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
metadata = associated->data + client_mp3->metadata_offset;
|
|
|
|
meta_len = associated->len - client_mp3->metadata_offset;
|
|
|
|
}
|
|
|
|
ret = client_send_bytes (client, metadata, meta_len);
|
|
|
|
|
|
|
|
if (ret == meta_len)
|
|
|
|
{
|
|
|
|
client_mp3->associated = associated;
|
|
|
|
client_mp3->metadata_offset = 0;
|
|
|
|
client_mp3->in_metadata = 0;
|
|
|
|
client_mp3->since_meta_block = 0;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
if (ret > 0)
|
|
|
|
client_mp3->metadata_offset += ret;
|
|
|
|
else
|
|
|
|
ret = 0;
|
|
|
|
client_mp3->in_metadata = 1;
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Handler for writing mp3 data to a client, taking into account whether
|
|
|
|
* client has requested shoutcast style metadata updates
|
|
|
|
*/
|
|
|
|
static int format_mp3_write_buf_to_client (format_plugin_t *self, client_t *client)
|
|
|
|
{
|
|
|
|
int ret, written = 0;
|
|
|
|
mp3_client_data *client_mp3 = client->format_data;
|
|
|
|
mp3_state *source_mp3 = self->_state;
|
|
|
|
refbuf_t *refbuf = client->refbuf;
|
|
|
|
char *buf;
|
|
|
|
unsigned int len;
|
|
|
|
|
|
|
|
if (refbuf->next == NULL && client->pos == refbuf->len)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
/* move to the next buffer if we have finished with the current one */
|
|
|
|
if (refbuf->next && client->pos == refbuf->len)
|
2002-12-30 06:22:59 -05:00
|
|
|
{
|
2004-08-20 11:13:59 -04:00
|
|
|
client_set_queue (client, refbuf->next);
|
|
|
|
refbuf = client->refbuf;
|
|
|
|
}
|
2002-12-30 02:55:56 -05:00
|
|
|
|
2004-08-20 11:13:59 -04:00
|
|
|
buf = refbuf->data + client->pos;
|
|
|
|
len = refbuf->len - client->pos;
|
2002-12-30 06:22:59 -05:00
|
|
|
|
2004-08-20 11:13:59 -04:00
|
|
|
do
|
|
|
|
{
|
|
|
|
/* send any unwritten metadata to the client */
|
|
|
|
if (client_mp3->in_metadata)
|
|
|
|
{
|
|
|
|
refbuf_t *associated = refbuf->associated;
|
|
|
|
ret = send_mp3_metadata (client, associated);
|
2002-12-30 06:22:59 -05:00
|
|
|
|
2004-08-20 11:13:59 -04:00
|
|
|
if (client_mp3->in_metadata)
|
|
|
|
break;
|
|
|
|
written += ret;
|
2002-12-30 06:22:59 -05:00
|
|
|
}
|
2004-08-20 11:13:59 -04:00
|
|
|
/* see if we need to send the current metadata to the client */
|
|
|
|
if (client_mp3->use_metadata)
|
|
|
|
{
|
|
|
|
unsigned int remaining = source_mp3->interval -
|
|
|
|
client_mp3->since_meta_block;
|
|
|
|
|
|
|
|
/* sending the metadata block */
|
|
|
|
if (remaining <= len)
|
|
|
|
{
|
|
|
|
/* send any mp3 before the metadata block */
|
|
|
|
if (remaining)
|
|
|
|
{
|
|
|
|
ret = client_send_bytes (client, buf, remaining);
|
|
|
|
|
|
|
|
if (ret > 0)
|
|
|
|
{
|
|
|
|
client_mp3->since_meta_block += ret;
|
|
|
|
client->pos += ret;
|
|
|
|
}
|
|
|
|
if (ret < (int)remaining)
|
|
|
|
break;
|
|
|
|
written += ret;
|
|
|
|
}
|
|
|
|
ret = send_mp3_metadata (client, refbuf->associated);
|
|
|
|
if (client_mp3->in_metadata)
|
|
|
|
break;
|
|
|
|
written += ret;
|
|
|
|
/* change buf and len */
|
|
|
|
buf += remaining;
|
|
|
|
len -= remaining;
|
|
|
|
}
|
2003-01-01 02:31:46 -05:00
|
|
|
}
|
2004-08-20 11:13:59 -04:00
|
|
|
/* write any mp3, maybe after the metadata block */
|
|
|
|
if (len)
|
|
|
|
{
|
|
|
|
ret = client_send_bytes (client, buf, len);
|
2002-12-31 14:48:28 -05:00
|
|
|
|
2004-08-20 11:13:59 -04:00
|
|
|
if (ret > 0)
|
|
|
|
{
|
|
|
|
client_mp3->since_meta_block += ret;
|
|
|
|
client->pos += ret;
|
|
|
|
}
|
|
|
|
if (ret < (int)len)
|
|
|
|
break;
|
|
|
|
written += ret;
|
|
|
|
}
|
|
|
|
ret = 0;
|
|
|
|
} while (0);
|
2002-12-30 02:55:56 -05:00
|
|
|
|
2004-08-20 11:13:59 -04:00
|
|
|
if (ret > 0)
|
|
|
|
written += ret;
|
|
|
|
return written;
|
2002-12-30 02:55:56 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static void format_mp3_free_plugin(format_plugin_t *self)
|
2002-07-23 11:15:11 -04:00
|
|
|
{
|
2003-03-14 21:10:19 -05:00
|
|
|
/* free the plugin instance */
|
2002-12-30 06:22:59 -05:00
|
|
|
mp3_state *state = self->_state;
|
2002-12-30 06:27:21 -05:00
|
|
|
|
2004-08-20 11:13:59 -04:00
|
|
|
thread_mutex_destroy (&state->url_lock);
|
|
|
|
free (state->url_artist);
|
|
|
|
free (state->url_title);
|
|
|
|
refbuf_release (state->metadata);
|
2002-12-30 06:22:59 -05:00
|
|
|
free(state);
|
2003-03-14 21:10:19 -05:00
|
|
|
free(self);
|
2002-07-23 11:15:11 -04:00
|
|
|
}
|
|
|
|
|
2004-08-20 11:13:59 -04:00
|
|
|
|
|
|
|
/* read an mp3 stream which does not have shoutcast style metadata */
|
|
|
|
static refbuf_t *mp3_get_no_meta (source_t *source)
|
2002-07-23 11:15:11 -04:00
|
|
|
{
|
2004-08-20 11:13:59 -04:00
|
|
|
int bytes;
|
2003-03-14 21:10:19 -05:00
|
|
|
refbuf_t *refbuf;
|
2004-08-20 11:13:59 -04:00
|
|
|
mp3_state *source_mp3 = source->format->_state;
|
2003-02-24 08:37:15 -05:00
|
|
|
|
2004-08-20 11:13:59 -04:00
|
|
|
if ((refbuf = refbuf_new (2048)) == NULL)
|
|
|
|
return NULL;
|
|
|
|
bytes = sock_read_bytes (source->con->sock, refbuf->data, 2048);
|
2003-02-25 04:40:34 -05:00
|
|
|
|
2004-08-20 11:13:59 -04:00
|
|
|
if (bytes == 0)
|
|
|
|
{
|
|
|
|
INFO1 ("End of stream %s", source->mount);
|
|
|
|
source->running = 0;
|
|
|
|
refbuf_release (refbuf);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
if (source_mp3->update_metadata)
|
|
|
|
{
|
|
|
|
mp3_set_title (source);
|
|
|
|
source_mp3->update_metadata = 0;
|
|
|
|
}
|
|
|
|
if (bytes > 0)
|
|
|
|
{
|
|
|
|
refbuf->len = bytes;
|
|
|
|
refbuf->associated = source_mp3->metadata;
|
|
|
|
refbuf_addref (source_mp3->metadata);
|
|
|
|
return refbuf;
|
|
|
|
}
|
|
|
|
refbuf_release (refbuf);
|
2003-02-24 08:37:15 -05:00
|
|
|
|
2004-08-20 11:13:59 -04:00
|
|
|
if (!sock_recoverable (sock_error()))
|
|
|
|
source->running = 0;
|
2003-02-24 08:37:15 -05:00
|
|
|
|
2004-08-20 11:13:59 -04:00
|
|
|
return NULL;
|
|
|
|
}
|
2003-02-24 08:37:15 -05:00
|
|
|
|
|
|
|
|
2004-08-20 11:13:59 -04:00
|
|
|
/* read mp3 data with inlined metadata from the source. Filter out the
|
|
|
|
* metadata so that the mp3 data itself is store on the queue and the
|
|
|
|
* metadata is is associated with it
|
|
|
|
*/
|
|
|
|
static refbuf_t *mp3_get_filter_meta (source_t *source)
|
|
|
|
{
|
|
|
|
refbuf_t *refbuf;
|
|
|
|
format_plugin_t *plugin = source->format;
|
|
|
|
mp3_state *source_mp3 = plugin->_state;
|
|
|
|
unsigned char *src;
|
|
|
|
unsigned int bytes, mp3_block;
|
|
|
|
int ret;
|
2003-02-24 08:37:15 -05:00
|
|
|
|
2004-08-20 11:13:59 -04:00
|
|
|
refbuf = refbuf_new (2048);
|
|
|
|
src = refbuf->data;
|
2003-02-24 08:37:15 -05:00
|
|
|
|
2004-08-20 11:13:59 -04:00
|
|
|
ret = sock_read_bytes (source->con->sock, refbuf->data, 2048);
|
2003-02-24 08:37:15 -05:00
|
|
|
|
2004-08-20 11:13:59 -04:00
|
|
|
if (ret == 0)
|
|
|
|
{
|
|
|
|
INFO1 ("End of stream %s", source->mount);
|
|
|
|
source->running = 0;
|
|
|
|
refbuf_release (refbuf);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
if (source_mp3->update_metadata)
|
|
|
|
{
|
|
|
|
mp3_set_title (source);
|
|
|
|
source_mp3->update_metadata = 0;
|
|
|
|
}
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
refbuf_release (refbuf);
|
|
|
|
if (sock_recoverable (sock_error()))
|
|
|
|
return NULL; /* go back to waiting */
|
|
|
|
INFO0 ("Error on connection from source");
|
|
|
|
source->running = 0;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
/* fill the buffer with the read data */
|
|
|
|
bytes = (unsigned int)ret;
|
|
|
|
refbuf->len = 0;
|
|
|
|
while (bytes > 0)
|
|
|
|
{
|
|
|
|
unsigned int metadata_remaining;
|
2003-02-24 08:37:15 -05:00
|
|
|
|
2004-08-20 11:13:59 -04:00
|
|
|
mp3_block = source_mp3->inline_metadata_interval - source_mp3->offset;
|
2003-02-24 08:37:15 -05:00
|
|
|
|
2004-08-20 11:13:59 -04:00
|
|
|
/* is there only enough to account for mp3 data */
|
|
|
|
if (bytes <= mp3_block)
|
|
|
|
{
|
|
|
|
refbuf->len += bytes;
|
|
|
|
source_mp3->offset += bytes;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
/* we have enough data to get to the metadata
|
|
|
|
* block, but only transfer upto it */
|
|
|
|
if (mp3_block)
|
|
|
|
{
|
|
|
|
src += mp3_block;
|
|
|
|
bytes -= mp3_block;
|
|
|
|
refbuf->len += mp3_block;
|
|
|
|
source_mp3->offset += mp3_block;
|
|
|
|
continue;
|
|
|
|
}
|
2003-02-24 08:37:15 -05:00
|
|
|
|
2004-08-20 11:13:59 -04:00
|
|
|
/* process the inline metadata, len == 0 indicates not seen any yet */
|
|
|
|
if (source_mp3->build_metadata_len == 0)
|
|
|
|
{
|
|
|
|
memset (source_mp3->build_metadata, 0,
|
|
|
|
sizeof (source_mp3->build_metadata));
|
|
|
|
source_mp3->build_metadata_offset = 0;
|
|
|
|
source_mp3->build_metadata_len = 1 + (*src * 16);
|
|
|
|
}
|
2003-02-25 04:40:34 -05:00
|
|
|
|
2004-08-20 11:13:59 -04:00
|
|
|
/* do we have all of the metatdata block */
|
|
|
|
metadata_remaining = source_mp3->build_metadata_len -
|
|
|
|
source_mp3->build_metadata_offset;
|
|
|
|
if (bytes < metadata_remaining)
|
|
|
|
{
|
|
|
|
memcpy (source_mp3->build_metadata +
|
|
|
|
source_mp3->build_metadata_offset, src, bytes);
|
|
|
|
source_mp3->build_metadata_offset += bytes;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
/* copy all bytes except the last one, that way we
|
|
|
|
* know a null byte terminates the message */
|
|
|
|
memcpy (source_mp3->build_metadata + source_mp3->build_metadata_offset,
|
|
|
|
src, metadata_remaining-1);
|
2003-02-24 08:37:15 -05:00
|
|
|
|
2004-08-20 11:13:59 -04:00
|
|
|
/* overwrite metadata in the buffer */
|
|
|
|
bytes -= metadata_remaining;
|
|
|
|
memmove (src, src+metadata_remaining, bytes);
|
2003-02-25 04:40:34 -05:00
|
|
|
|
2004-08-20 11:13:59 -04:00
|
|
|
/* assign metadata if it's not 1 byte, as that indicates a change */
|
|
|
|
if (source_mp3->build_metadata_len > 1)
|
|
|
|
{
|
|
|
|
refbuf_t *meta = refbuf_new (source_mp3->build_metadata_len);
|
|
|
|
memcpy (meta->data, source_mp3->build_metadata,
|
|
|
|
source_mp3->build_metadata_len);
|
|
|
|
|
|
|
|
DEBUG1("shoutcast metadata %.4080s", meta->data+1);
|
|
|
|
if (strncmp (meta->data+1, "StreamTitle=", 12) == 0)
|
|
|
|
{
|
|
|
|
filter_shoutcast_metadata (source, source_mp3->build_metadata,
|
|
|
|
source_mp3->build_metadata_len);
|
|
|
|
refbuf_release (source_mp3->metadata);
|
|
|
|
source_mp3->metadata = meta;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ERROR0 ("Incorrect metadata format, ending stream");
|
|
|
|
source->running = 0;
|
|
|
|
refbuf_release (refbuf);
|
|
|
|
return NULL;
|
2003-02-24 08:37:15 -05:00
|
|
|
}
|
|
|
|
}
|
2004-08-20 11:13:59 -04:00
|
|
|
source_mp3->offset = 0;
|
|
|
|
source_mp3->build_metadata_len = 0;
|
2003-02-17 07:05:45 -05:00
|
|
|
}
|
2004-08-20 11:13:59 -04:00
|
|
|
/* the data we have just read may of just been metadata */
|
|
|
|
if (refbuf->len == 0)
|
|
|
|
{
|
|
|
|
refbuf_release (refbuf);
|
|
|
|
return NULL;
|
2003-02-17 07:05:45 -05:00
|
|
|
}
|
2004-08-20 11:13:59 -04:00
|
|
|
refbuf->associated = source_mp3->metadata;
|
|
|
|
refbuf_addref (source_mp3->metadata);
|
2002-07-23 11:15:11 -04:00
|
|
|
|
2004-08-20 11:13:59 -04:00
|
|
|
return refbuf;
|
2002-07-23 11:15:11 -04:00
|
|
|
}
|
|
|
|
|
2004-08-20 11:13:59 -04:00
|
|
|
|
|
|
|
static int format_mp3_create_client_data(source_t *source, client_t *client)
|
2002-12-30 02:55:56 -05:00
|
|
|
{
|
|
|
|
mp3_client_data *data = calloc(1,sizeof(mp3_client_data));
|
|
|
|
char *metadata;
|
|
|
|
|
2004-08-20 11:13:59 -04:00
|
|
|
if (data == NULL)
|
|
|
|
return -1;
|
2002-12-30 02:55:56 -05:00
|
|
|
|
2004-08-20 11:13:59 -04:00
|
|
|
client->format_data = data;
|
|
|
|
client->free_client_data = free_mp3_client_data;
|
2002-12-31 14:48:28 -05:00
|
|
|
metadata = httpp_getvar(client->parser, "icy-metadata");
|
2002-12-30 02:55:56 -05:00
|
|
|
if(metadata)
|
2002-12-30 06:22:59 -05:00
|
|
|
data->use_metadata = atoi(metadata)>0?1:0;
|
2002-12-30 02:55:56 -05:00
|
|
|
|
2004-08-20 11:13:59 -04:00
|
|
|
return 0;
|
2002-12-29 03:10:10 -05:00
|
|
|
}
|
2002-07-23 11:15:11 -04:00
|
|
|
|
2004-02-29 09:38:15 -05:00
|
|
|
|
|
|
|
static void free_mp3_client_data (client_t *client)
|
|
|
|
{
|
|
|
|
free (client->format_data);
|
|
|
|
client->format_data = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-12-30 02:55:56 -05:00
|
|
|
static void format_mp3_send_headers(format_plugin_t *self,
|
|
|
|
source_t *source, client_t *client)
|
|
|
|
{
|
|
|
|
int bytes;
|
2004-11-04 10:55:13 -05:00
|
|
|
char *content_length;
|
|
|
|
|
2003-11-11 13:21:49 -05:00
|
|
|
mp3_client_data *mp3data = client->format_data;
|
2002-12-30 02:55:56 -05:00
|
|
|
|
|
|
|
client->respcode = 200;
|
2004-11-04 10:55:13 -05:00
|
|
|
|
|
|
|
/* This little bit of code is for compatability with
|
|
|
|
flash mp3 streaming. Flash requires a content-length
|
|
|
|
in order for it to stream mp3s, and so based off a
|
|
|
|
trial and error effort, the following number was derived.
|
|
|
|
It is the largest content-length that we can send, anything
|
|
|
|
larger causes flash streaming not to work. Note that it
|
|
|
|
is also possible that other flash-based players may not
|
|
|
|
send this request header (x-flash-version), but given the
|
|
|
|
sampleset I had access to, this should suffice. */
|
|
|
|
if (httpp_getvar(client->parser, "x-flash-version")) {
|
|
|
|
content_length = "Content-Length: 347122319\r\n";
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
content_length = "";
|
|
|
|
}
|
|
|
|
|
2002-12-30 10:19:46 -05:00
|
|
|
/* TODO: This may need to be ICY/1.0 for shoutcast-compatibility? */
|
2002-12-30 02:55:56 -05:00
|
|
|
bytes = sock_write(client->con->sock,
|
|
|
|
"HTTP/1.0 200 OK\r\n"
|
2004-11-04 10:55:13 -05:00
|
|
|
"Content-Type: %s\r\n"
|
|
|
|
"%s",
|
|
|
|
format_get_mimetype(source->format->type),
|
|
|
|
content_length);
|
2002-12-30 02:55:56 -05:00
|
|
|
|
2004-02-02 19:29:36 -05:00
|
|
|
if (bytes > 0)
|
|
|
|
client->con->sent_bytes += bytes;
|
2002-12-30 02:55:56 -05:00
|
|
|
|
2004-02-02 19:29:36 -05:00
|
|
|
if (mp3data->use_metadata)
|
|
|
|
{
|
2003-07-06 11:27:50 -04:00
|
|
|
int bytes = sock_write(client->con->sock, "icy-metaint:%d\r\n",
|
2002-12-30 02:55:56 -05:00
|
|
|
ICY_METADATA_INTERVAL);
|
|
|
|
if(bytes > 0)
|
|
|
|
client->con->sent_bytes += bytes;
|
|
|
|
}
|
2004-02-02 19:29:36 -05:00
|
|
|
format_send_general_headers(self, source, client);
|
2002-12-30 02:55:56 -05:00
|
|
|
}
|
|
|
|
|
2004-08-20 11:13:59 -04:00
|
|
|
|
|
|
|
static void write_mp3_to_file (struct source_tag *source, refbuf_t *refbuf)
|
|
|
|
{
|
|
|
|
if (refbuf->len == 0)
|
|
|
|
return;
|
|
|
|
if (fwrite (refbuf->data, 1, refbuf->len, source->dumpfile) < (size_t)refbuf->len)
|
|
|
|
{
|
|
|
|
WARN0 ("Write to dump file failed, disabling");
|
|
|
|
fclose (source->dumpfile);
|
|
|
|
source->dumpfile = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|