1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354
|
/*C
(c) 2005 bl0rg.net
**/
#include "conf.h"
#include <assert.h>
#include <sys/types.h>
#include <sys/time.h>
#include <unistd.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <time.h>
#ifdef NEED_GETOPT_H__
#include <getopt.h>
#endif
#include "file.h"
#include "vorbis.h"
#include "ogg.h"
#include "network.h"
#include "signal.h"
#include "http.h"
#include "misc.h"
#ifdef WITH_IPV6
static int use_ipv6 = 0;
#endif /* WITH_IPV6 */
static int finished = 0;
/*M
**/
#define OGG_BUF_LEN 65535
/* Maximal synchronization latency for sending packets in usecs. */
#define MAX_WAIT_TIME (1 * 1000)
#define MAX_FILENAME 256
static void sig_int(int signo) {
finished = 1;
}
int ogg_callback(http_client_t *client, void *data) {
vorbis_stream_t *vorbis = data;
/* XXX write ogg headers */
int i;
for (i = 0; i < vorbis->hdr_pages_cnt; i++) {
if (!unix_write(client->fd, vorbis->hdr_pages[i].raw.data,
vorbis->hdr_pages[i].size) != vorbis->hdr_pages[i].size)
return -1;
}
return 0;
}
/*M
\emph{Simple HTTP streaming server main loop.}
The mainloop opens the Vorbis OGG file \verb|filename|, reads each
audio packet and sends it out using HTTP. After sending
a packet, the mainloop sleeps for the duration of the packet,
synchronizing itself when the sleep is not accurate enough. If the
sleep desynchronizes itself from the stream more than \verb|MAX_WAIT_TIME|,
the synchronization is reset.
**/
int pogg_mainloop(http_server_t *server, char *filename, int quiet) {
/*M
Open file for reading.
**/
vorbis_stream_t vorbis;
vorbis_stream_init(&vorbis);
if (!file_open_read(&vorbis.file, filename) ||
!vorbis_stream_read_hdrs(&vorbis)) {
fprintf(stderr, "Could not open ogg file: %s\n", filename);
vorbis_stream_destroy(&vorbis);
return 0;
}
if (!quiet)
fprintf(stderr, "\rStreaming %s...\n", filename);
static long wait_time = 0;
unsigned long page_time = 0, last_time = 0;
ogg_page_t page;
ogg_page_init(&page);
/*M
Cycle through the frames and send them using HTTP.
**/
while ((ogg_next_page(&vorbis.file, &page) >= 0) && !finished) {
/*M
Get start time for this page iteration.
**/
struct timeval tv;
gettimeofday(&tv, NULL);
unsigned long start_sec, start_usec;
start_sec = tv.tv_sec;
start_usec = tv.tv_usec;
/*M
Go through HTTP main routine and check for timeouts,
received data, etc...
**/
if (!http_server_main(server, &vorbis)) {
fprintf(stderr, "Http main error\n");
file_close(&vorbis.file);
vorbis_stream_destroy(&vorbis);
ogg_page_destroy(&page);
return 0;
}
/*M
Write frame to HTTP clients.
**/
int i;
for (i = 0; i < server->num_clients; i++) {
if ((server->clients[i].fd != -1) &&
(server->clients[i].found >= 2)) {
int ret;
ret = unix_write(server->clients[i].fd, page.raw.data, page.size);
if (ret != page.size) {
fprintf(stderr, "Error writing to client %d\n", i);
http_client_close(server, server->clients + i);
}
}
}
last_time = page_time;
page_time = ogg_position_to_msecs(&page, vorbis.audio_sample_rate);
wait_time += page_time - last_time;
/*M
Sleep for duration of frame.
**/
if (wait_time > 200)
usleep((wait_time) * 1000);
/*M
Print information.
**/
if (!quiet) {
static int count = 0;
if ((count++ % 10) == 0) {
if (vorbis.file.size > 0) {
fprintf(stderr,
"\r%02ld:%02ld/%02ld:%02ld %7ld/%7ld "
"(%3ld%%) %3ldkbit/s %4ldb ",
(page_time/1000) / 60,
(page_time/1000) % 60,
(long)((float)(page_time) /
((float)vorbis.file.offset+1) *
(float)vorbis.file.size) /
60000,
(long)((float)(page_time) /
((float)vorbis.file.offset+1) *
(float)vorbis.file.size) /
1000 % 60,
vorbis.file.offset,
vorbis.file.size,
(long)(100*(float)vorbis.file.offset/(float)vorbis.file.size),
vorbis.bitrate_nominal/1000,
page.size);
} else {
fprintf(stderr, "\r%02ld:%02ld %ld %3ldkbit/s %4ldb ",
(page_time/1000) / 60,
(page_time/1000) % 60,
vorbis.file.offset,
vorbis.bitrate_nominal/1000,
page.size);
}
}
fflush(stderr);
}
/*M
Get length of iteration.
**/
gettimeofday(&tv, NULL);
unsigned long len =
(tv.tv_sec - start_sec) * 1000 + (tv.tv_usec - start_usec) / 1000;
wait_time -= len;
if (abs(wait_time) > MAX_WAIT_TIME)
wait_time = 0;
}
if (!file_close(&vorbis.file)) {
fprintf(stderr, "Could not close ogg file %s\n", filename);
vorbis_stream_destroy(&vorbis);
ogg_page_destroy(&page);
return 0;
}
vorbis_stream_destroy(&vorbis);
ogg_page_destroy(&page);
return 1;
}
/*M
\emph{Print usage information.}
**/
static void usage(void) {
fprintf(stderr, "Usage: ./pogg-http [-s address] [-p port] [-q] [-c clients]");
#ifdef WITH_IPV6
fprintf(stderr, " [-6]");
#endif
fprintf(stderr, " files...\n");
fprintf(stderr, "\t-s address : source address (default 0.0.0.0)\n");
fprintf(stderr, "\t-p port : port to listen on (default 8000)\n");
fprintf(stderr, "\t-q : quiet\n");
fprintf(stderr, "\t-c clients : maximal number of clients (default 0, illimited)\n");
#ifdef WITH_IPV6
fprintf(stderr, "\t-6 : use ipv6\n");
#endif
}
/*M
\emph{HTTP server main routine.}
**/
int main(int argc, char *argv[]) {
int retval = 0;
char *address = NULL;
unsigned short port = 8000;
int quiet = 0;
int max_clients = 0;
http_server_t server;
http_server_reset(&server);
if (argc <= 1) {
usage();
return 1;
}
int c;
while ((c = getopt(argc, argv, "hs:p:qc:"
#ifdef WITH_IPV6
"6"
#endif /* WITH_IPV6 */
)) >= 0) {
switch (c) {
#ifdef WITH_IPV6
case '6':
use_ipv6 = 1;
break;
#endif /* WITH_IPV6 */
case 's':
if (address != NULL)
free(address);
address = strdup(optarg);
break;
case 'p':
port = (unsigned short)atoi(optarg);
break;
case 'c':
max_clients = (unsigned short)atoi(optarg);
break;
case 'q':
quiet = 1;
break;
case 'h':
default:
usage();
retval = EXIT_FAILURE;
goto exit;
}
}
if (optind == argc) {
usage();
retval = EXIT_FAILURE;
goto exit;
}
if (address == NULL) {
#ifdef WITH_IPV6
if (use_ipv6)
address = strdup("0::0");
else
address = strdup("0");
#else
address = strdup("0");
#endif /* WITH_IPV6 */
}
if (sig_set_handler(SIGINT, sig_int) == SIG_ERR) {
retval = EXIT_FAILURE;
goto exit;
}
ogg_init();
/*M
Open the listening socket.
**/
int sock = -1;
#ifdef WITH_IPV6
if (use_ipv6)
sock = net_tcp6_listen_socket(address, port);
else
sock = net_tcp4_listen_socket(address, port);
#else
sock = net_tcp4_listen_socket(address, port);
#endif /* WITH_IPV6 */
if (sock < 0) {
perror("Could not create socket");
retval = EXIT_FAILURE;
goto exit;
}
if (!http_server_init(&server, HTTP_MIN_CLIENTS,
max_clients, ogg_callback, sock)) {
fprintf(stderr, "Could not initialise HTTP server\n");
retval = EXIT_FAILURE;
goto exit;
}
/*M
Read in ogg files one after the other.
**/
int i;
for (i=optind; (i<argc) && !finished; i++) {
assert(argv[i] != NULL);
unsigned char filename[MAX_FILENAME];
strncpy(filename, argv[i], MAX_FILENAME - 1);
filename[MAX_FILENAME - 1] = '\0';
if (!pogg_mainloop(&server, filename, quiet))
continue;
}
exit:
http_server_close(&server);
return retval;
}
|