-
Notifications
You must be signed in to change notification settings - Fork 4
/
poc-http.c
319 lines (269 loc) · 7.22 KB
/
poc-http.c
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
/*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>
#include <errno.h>
#ifdef NEED_GETOPT_H__
#include <getopt.h>
#endif
#include "file.h"
#include "mp3.h"
#include "network.h"
#include "sig_set_handler.h"
#include "http.h"
#include "misc.h"
#ifdef WITH_IPV6
static int use_ipv6 = 0;
#endif /* WITH_IPV6 */
static int finished = 0;
#define MP3_BUF_LEN 65535
/* Maximal synchronization latency for sending packets in usecs. */
#define MAX_WAIT_TIME (1 * 1000 * 1000)
#define MAX_FILENAME 256
static void sig_int(int signo) {
finished = 1;
}
/*M
\emph{Simple HTTP streaming server main loop.}
The mainloop opens the MPEG Audio file \verb|filename|, reads each
frame into an rtp 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 poc_mainloop(http_server_t *server, char *filename, int quiet) {
/*M
Open file for reading.
**/
file_t mp3_file;
if (!file_open_read(&mp3_file, filename)) {
fprintf(stderr, "Could not open mp3 file: %s\n", filename);
return 0;
}
if (!quiet)
fprintf(stderr, "\rStreaming %s...\n", filename);
static long wait_time = 0;
unsigned long frame_time = 0;
mp3_frame_t frame;
/*M
Cycle through the frames and send them using HTTP.
**/
while ((mp3_next_frame(&mp3_file, &frame) >= 0) && !finished) {
/*M
Get start time for this frame 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, NULL)) {
fprintf(stderr, "Http main error\n");
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, frame.raw, frame.frame_size);
if (ret != frame.frame_size) {
fprintf(stderr, "Error writing to client %d: %d\n", i, ret);
http_client_close(server, server->clients + i);
}
}
}
frame_time += frame.usec;
wait_time += frame.usec;
/*M
Sleep for duration of frame.
**/
if (wait_time > 1000)
usleep(wait_time);
/*M
Print information.
**/
if (!quiet) {
static int count = 0;
if ((count++) % 10 == 0) {
if (mp3_file.size > 0) {
fprintf(stderr, "\r%02ld:%02ld/%02ld:%02ld %7ld/%7ld (%3ld%%) %3ldkbit/s %4ldb ",
(frame_time/1000000) / 60,
(frame_time/1000000) % 60,
(long)((float)(frame_time/1000) /
((float)mp3_file.offset+1) * (float)mp3_file.size) /
60000,
(long)((float)(frame_time/1000) /
((float)mp3_file.offset+1) * (float)mp3_file.size) /
1000 % 60,
mp3_file.offset,
mp3_file.size,
(long)(100*(float)mp3_file.offset/(float)mp3_file.size),
frame.bitrate,
frame.frame_size);
} else {
fprintf(stderr, "\r%02ld:%02ld %ld %3ldkbit/s %4ldb ",
(frame_time/1000000) / 60,
(frame_time/1000000) % 60,
mp3_file.offset,
frame.bitrate,
frame.frame_size);
}
}
fflush(stderr);
}
/*M
Get length of iteration.
**/
gettimeofday(&tv, NULL);
unsigned long len =
(tv.tv_sec - start_sec) * 1000000 + (tv.tv_usec - start_usec);
wait_time -= len;
if (abs((int)wait_time) > MAX_WAIT_TIME)
wait_time = 0;
}
if (!file_close(&mp3_file)) {
fprintf(stderr, "Could not close mp3 file %s\n", filename);
return 0;
}
return 1;
}
/*M
\emph{Print usage information.}
**/
static void usage(void) {
fprintf(stderr, "Usage: ./poc-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, unlimited)\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 */
}
/*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, NULL, sock)) {
fprintf(stderr, "Could not initialise HTTP server\n");
retval = EXIT_FAILURE;
goto exit;
}
if (sig_set_handler(SIGINT, sig_int) == SIG_ERR) {
retval = EXIT_FAILURE;
goto exit;
}
/*M
Read in mp3 files one after the other.
**/
int i;
for (i=optind; (i<argc) && !finished; i++) {
assert(argv[i] != NULL);
char filename[MAX_FILENAME];
strncpy(filename, argv[i], MAX_FILENAME - 1);
filename[MAX_FILENAME - 1] = '\0';
if (!poc_mainloop(&server, filename, quiet))
continue;
}
exit:
http_server_close(&server);
return retval;
}