1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2024-12-04 14:46:30 -05:00

use a client function to read an incoming stream, simplifies handling within

the format specific files. Also add total read/sent stats per mountpoint.
Updates the stats every 5 secs currently

svn path=/icecast/trunk/icecast/; revision=9241
This commit is contained in:
Karl Heyes 2005-05-08 13:51:05 +00:00
parent e2d6bdb86a
commit 7fadd89273
8 changed files with 52 additions and 33 deletions

View File

@ -96,6 +96,25 @@ void client_destroy(client_t *client)
free(client); free(client);
} }
/* helper function for reading data from a client */
int client_read_bytes (client_t *client, void *buf, unsigned len)
{
int bytes = sock_read_bytes (client->con->sock, buf, len);
if (bytes > 0)
return bytes;
if (bytes < 0)
{
if (sock_recoverable (sock_error()))
return -1;
WARN0 ("source connection has died");
}
client->con->error = 1;
return -1;
}
void client_send_400(client_t *client, char *message) { void client_send_400(client_t *client, char *message) {
int bytes; int bytes;
bytes = sock_write(client->con->sock, "HTTP/1.0 400 Bad Request\r\n" bytes = sock_write(client->con->sock, "HTTP/1.0 400 Bad Request\r\n"

View File

@ -56,6 +56,7 @@ void client_send_401(client_t *client);
void client_send_403(client_t *client); void client_send_403(client_t *client);
void client_send_400(client_t *client, char *message); void client_send_400(client_t *client, char *message);
int client_send_bytes (client_t *client, const void *buf, unsigned len); int client_send_bytes (client_t *client, const void *buf, unsigned len);
int client_read_bytes (client_t *client, void *buf, unsigned len);
void client_set_queue (client_t *client, refbuf_t *refbuf); void client_set_queue (client_t *client, refbuf_t *refbuf);
#endif /* __CLIENT_H__ */ #endif /* __CLIENT_H__ */

View File

@ -35,8 +35,10 @@
#ifdef _WIN32 #ifdef _WIN32
#define FORMAT_INT64 "%I64d" #define FORMAT_INT64 "%I64d"
#define FORMAT_UINT64 "%I64u"
#else #else
#define FORMAT_INT64 "%lld" #define FORMAT_INT64 "%lld"
#define FORMAT_UINT64 "%llu"
#endif #endif
#endif /* __COMPAT_H__ */ #endif /* __COMPAT_H__ */

View File

@ -40,6 +40,8 @@ typedef struct _format_plugin_tag
char *mount; char *mount;
char *contenttype; char *contenttype;
uint64_t read_bytes;
uint64_t sent_bytes;
refbuf_t *(*get_buffer)(struct source_tag *); refbuf_t *(*get_buffer)(struct source_tag *);
int (*write_buf_to_client)(struct _format_plugin_tag *format, client_t *client); int (*write_buf_to_client)(struct _format_plugin_tag *format, client_t *client);

View File

@ -428,18 +428,18 @@ static refbuf_t *mp3_get_no_meta (source_t *source)
int bytes; int bytes;
refbuf_t *refbuf; refbuf_t *refbuf;
mp3_state *source_mp3 = source->format->_state; mp3_state *source_mp3 = source->format->_state;
format_plugin_t *format = source->format;
if ((refbuf = refbuf_new (2048)) == NULL) if ((refbuf = refbuf_new (2048)) == NULL)
return NULL; return NULL;
bytes = sock_read_bytes (source->con->sock, refbuf->data, 2048);
if (bytes == 0) bytes = client_read_bytes (source->client, refbuf->data, 2048);
if (bytes < 0)
{ {
INFO1 ("End of stream %s", source->mount);
source->running = 0;
refbuf_release (refbuf); refbuf_release (refbuf);
return NULL; return NULL;
} }
format->read_bytes += bytes;
if (source_mp3->update_metadata) if (source_mp3->update_metadata)
{ {
mp3_set_title (source); mp3_set_title (source);
@ -455,9 +455,6 @@ static refbuf_t *mp3_get_no_meta (source_t *source)
} }
refbuf_release (refbuf); refbuf_release (refbuf);
if (!sock_recoverable (sock_error()))
source->running = 0;
return NULL; return NULL;
} }
@ -471,6 +468,7 @@ static refbuf_t *mp3_get_filter_meta (source_t *source)
refbuf_t *refbuf; refbuf_t *refbuf;
format_plugin_t *plugin = source->format; format_plugin_t *plugin = source->format;
mp3_state *source_mp3 = plugin->_state; mp3_state *source_mp3 = plugin->_state;
format_plugin_t *format = source->format;
unsigned char *src; unsigned char *src;
unsigned int bytes, mp3_block; unsigned int bytes, mp3_block;
int ret; int ret;
@ -478,29 +476,18 @@ static refbuf_t *mp3_get_filter_meta (source_t *source)
refbuf = refbuf_new (2048); refbuf = refbuf_new (2048);
src = refbuf->data; src = refbuf->data;
ret = sock_read_bytes (source->con->sock, refbuf->data, 2048); ret = client_read_bytes (source->client, refbuf->data, 2048);
if (ret < 0)
if (ret == 0)
{ {
INFO1 ("End of stream %s", source->mount);
source->running = 0;
refbuf_release (refbuf); refbuf_release (refbuf);
return NULL; return NULL;
} }
format->read_bytes += ret;
if (source_mp3->update_metadata) if (source_mp3->update_metadata)
{ {
mp3_set_title (source); mp3_set_title (source);
source_mp3->update_metadata = 0; 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 */ /* fill the buffer with the read data */
bytes = (unsigned int)ret; bytes = (unsigned int)ret;
refbuf->len = 0; refbuf->len = 0;

View File

@ -375,6 +375,7 @@ static refbuf_t *process_ogg_page (ogg_state_t *ogg_info, ogg_page *page)
static refbuf_t *ogg_get_buffer (source_t *source) static refbuf_t *ogg_get_buffer (source_t *source)
{ {
ogg_state_t *ogg_info = source->format->_state; ogg_state_t *ogg_info = source->format->_state;
format_plugin_t *format = source->format;
char *data = NULL; char *data = NULL;
int bytes; int bytes;
@ -421,23 +422,13 @@ static refbuf_t *ogg_get_buffer (source_t *source)
/* we need more data to continue getting pages */ /* we need more data to continue getting pages */
data = ogg_sync_buffer (&ogg_info->oy, 4096); data = ogg_sync_buffer (&ogg_info->oy, 4096);
bytes = sock_read_bytes (source->con->sock, data, 4096); bytes = client_read_bytes (source->client, data, 4096);
if (bytes < 0) if (bytes < 0)
{ {
if (sock_recoverable (sock_error()))
return NULL;
WARN0 ("source connection has died");
ogg_sync_wrote (&ogg_info->oy, 0); ogg_sync_wrote (&ogg_info->oy, 0);
source->running = 0;
return NULL;
}
if (bytes == 0)
{
INFO1 ("End of Stream %s", source->mount);
ogg_sync_wrote (&ogg_info->oy, 0);
source->running = 0;
return NULL; return NULL;
} }
format->read_bytes += bytes;
ogg_sync_wrote (&ogg_info->oy, bytes); ogg_sync_wrote (&ogg_info->oy, bytes);
} }
} }

View File

@ -243,6 +243,7 @@ void source_clear_source (source_t *source)
source->yp_public = 0; source->yp_public = 0;
source->yp_prevent = 0; source->yp_prevent = 0;
source->hidden = 0; source->hidden = 0;
source->client_stats_update = 0;
util_dict_free (source->audio_info); util_dict_free (source->audio_info);
source->audio_info = NULL; source->audio_info = NULL;
@ -411,6 +412,14 @@ static refbuf_t *get_next_buffer (source_t *source)
fds = util_timed_wait_for_fd (source->con->sock, delay); fds = util_timed_wait_for_fd (source->con->sock, delay);
if (current >= source->client_stats_update)
{
stats_event_args (source->mount, "total_bytes_read",
FORMAT_UINT64, source->format->read_bytes);
stats_event_args (source->mount, "total_bytes_sent",
FORMAT_UINT64, source->format->sent_bytes);
source->client_stats_update = current + 5;
}
if (fds < 0) if (fds < 0)
{ {
if (! sock_recoverable (sock_error())) if (! sock_recoverable (sock_error()))
@ -432,6 +441,12 @@ static refbuf_t *get_next_buffer (source_t *source)
} }
source->last_read = current; source->last_read = current;
refbuf = source->format->get_buffer (source); refbuf = source->format->get_buffer (source);
if (source->client->con->error)
{
INFO1 ("End of Stream %s", source->mount);
source->running = 0;
continue;
}
if (refbuf) if (refbuf)
break; break;
} }
@ -481,6 +496,7 @@ static void send_to_listener (source_t *source, client_t *client, int deletion_e
total_written += bytes; total_written += bytes;
} }
source->format->sent_bytes += total_written;
/* the refbuf referenced at head (last in queue) may be marked for deletion /* the refbuf referenced at head (last in queue) may be marked for deletion
* if so, check to see if this client is still referring to it */ * if so, check to see if this client is still referring to it */

View File

@ -27,6 +27,7 @@ typedef struct source_tag
client_t *client; client_t *client;
connection_t *con; connection_t *con;
http_parser_t *parser; http_parser_t *parser;
time_t client_stats_update;
char *mount; char *mount;