This repository has been archived by the owner on Jan 29, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
fPls.cc
405 lines (334 loc) · 7.45 KB
/
fPls.cc
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
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
/*
* fPls - playlist handler for fIcy
* Copyright(c) 2004-2017 of wave++ (Yuri D'Elia) <[email protected]>
* Distributed under GNU LGPL without ANY warranty.
*/
// local headers
#include "fIcy.hh"
#include "msg.hh"
#include "htfollow.hh"
#include "plsparse.hh"
#include "tmparse.hh"
#include "authparse.hh"
using std::string;
using std::list;
using std::map;
// system headers
#include <fstream>
using std::ifstream;
#include <sstream>
using std::istringstream;
#include <iostream>
using std::cout;
#include <memory>
using std::auto_ptr;
#include <stdexcept>
using std::runtime_error;
// c system headers
#include <stdlib.h>
#include <stdarg.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <sys/wait.h>
#include <time.h>
#include <errno.h>
#include <fcntl.h>
/*
* Parameters handling
*/
class Params
{
public:
explicit
Params(int argc, char* argv[]);
~Params() throw()
{
if(fIcyParams)
delete[] fIcyParams;
}
const char* uri;
const char** fIcyParams;
size_t urlPos;
size_t timePos;
size_t maxRetries;
long maxLoops;
time_t waitSecs;
time_t maxTime;
time_t idleTime;
size_t maxFollow;
char* daemonize;
char* auth;
Http::Auth authData;
bool help;
};
Params::Params(int argc, char* argv[])
{
// defaults
prg = argv[0];
maxRetries = fIcy::maxRetries;
maxLoops = fIcy::maxLoops;
waitSecs = fIcy::waitSecs;
maxTime = 0;
maxFollow = fIcy::maxFollow;
idleTime = 0;
verbose = help = false;
daemonize = NULL;
auth = NULL;
// locals
const char* path = "fIcy";
const char* maxFollowBuf = NULL;
const char* idleTimeBuf = NULL;
int arg;
// let's again put a bit of SHAME... those FSC**BEEP GNU extensions.
// WHY _NOT_ BEING POSIXLY_CORRECT BY DEFAULT EH? oooh, "features"! I see.
while((arg = getopt(argc, argv, "+P:R:L:T:M:l:d:a:vhi:")) != -1)
switch(arg)
{
case 'P':
path = optarg;
break;
case 'R':
maxRetries = strtoul(optarg, NULL, 0);
break;
case 'L':
maxLoops = strtol(optarg, NULL, 0);
break;
case 'T':
waitSecs = tmParse(optarg);
break;
case 'M':
maxTime = tmParse(optarg);
break;
case 'l':
maxFollowBuf = optarg;
maxFollow = strtol(optarg, NULL, 0);
break;
case 'd':
daemonize = optarg;
break;
case 'h':
help = true;
break;
case 'a':
auth = optarg;
break;
case 'v':
verbose = true;
break;
case 'i':
idleTimeBuf = optarg;
idleTime = tmParse(optarg);
break;
}
// fetch authentication tokens immediately to avoid further requests
if(auth)
authParse(authData, auth);
// playlist
argc -= optind;
uri = argv[optind++];
// fIcy parameters
if(--argc >= 0)
{
fIcyParams = new const char*[argc + 13];
fIcyParams[0] = path;
arg = 1;
// parameters we allow to override
if(auth)
{
fIcyParams[arg++] = "-a";
fIcyParams[arg++] = auth;
}
if(maxFollowBuf)
{
fIcyParams[arg++] = "-l";
fIcyParams[arg++] = maxFollowBuf;
}
if(idleTimeBuf)
{
fIcyParams[arg++] = "-i";
fIcyParams[arg++] = idleTimeBuf;
}
// forward other parameters
for(int i = 1; i <= argc; ++i)
fIcyParams[arg++] = argv[optind++];
// imposed parameters
fIcyParams[arg++] = "-M";
timePos = arg++;
if(daemonize)
fIcyParams[arg++] = "-d";
fIcyParams[arg++] = "--";
urlPos = arg++;
fIcyParams[arg++] = NULL;
}
else
fIcyParams = NULL;
}
void
show_help()
{
cout << prg << fIcy::fPlsHelp << prg << " v" << fIcy::version <<
" is\n" << fIcy::copyright;
}
void
load_file(string& out, const char* file)
{
ifstream in(file);
if(!in)
throw runtime_error(string("cannot open ") + file);
// load the file
char buf[fIcy::bufSz];
do
{
in.read(buf, sizeof(buf));
out.append(buf, in.gcount());
}
while(in);
if(!in.eof())
throw runtime_error(string("errors while reading from ") + file);
}
void
load_url(string& out, const URL& url, const Params& params)
{
// setup headers
Http::Header qHeaders;
qHeaders.push_back(fIcy::userAgent);
if(params.auth)
qHeaders.push_back(params.authData.basicHeader());
// connection
map<string, string> pReply;
auto_ptr<Socket> s(htFollow(pReply, url, qHeaders,
params.maxFollow, params.idleTime,
params.maxRetries, params.waitSecs));
// load the file
char buf[fIcy::bufSz];
size_t ret;
while((ret = s->read(buf, sizeof(buf))) > 0)
out.append(buf, ret);
}
void
load_list(string& buf, const char* uri, const Params& params)
{
URL url(uri);
if(url.proto == Http::Proto::proto)
load_url(buf, url, params);
else if(!url.proto.size())
{
msg("loading playlist from %s", uri);
load_file(buf, uri);
}
else
throw runtime_error(string("unknown protocol ") + url.proto);
}
// exec fIcy and return the exit code
int
exec_fIcy(Params& params, const time_t maxTime, const char* stream)
{
const char** args = params.fIcyParams;
char buf[16];
snprintf(buf, sizeof(buf), "%lu", maxTime);
args[params.timePos] = buf;
args[params.urlPos] = stream;
int ret;
switch(fork())
{
case -1:
err("cannot fork");
return Exit::args;
case 0:
execvp(args[0], const_cast<char**>(args));
err("cannot exec fIcy: %s", strerror(errno));
exit(Exit::args);
}
wait(&ret);
return (WIFEXITED(ret)? WEXITSTATUS(ret): Exit::args);
}
void
daemonize(const char* logFile)
{
int fd;
// ensure correctness before daemonization
if(logFile)
if((fd = open(logFile, O_WRONLY | O_APPEND | O_CREAT, 0666)) == -1)
throw runtime_error((string("cannot open log file ") + logFile).c_str());
// daemonize
#ifdef __sgi
if(_daemonize(0, fd, -1, -1) == -1)
#else
if(daemon(0, 0) == -1)
#endif
throw runtime_error("cannot daemonize process");
// fix stderr
if(logFile)
dup2(fd, STDERR_FILENO);
}
int
main(int argc, char* argv[]) try
{
// initialize
Params params(argc, argv);
if(!params.uri && !params.help)
{
err("bad parameters; see %s -h", prg);
return Exit::args;
}
if(params.help)
{
show_help();
return Exit::args;
}
time_t start(time(NULL));
time_t resTime(params.maxTime);
// fetch and parse the playlist
list<string> playlist;
{
string buf;
load_list(buf, params.uri, params);
istringstream stream(buf);
plsParse(playlist, stream);
}
msg("loaded %d elements", playlist.size());
// daemonize now if requested
if(params.daemonize)
daemonize(params.daemonize);
// main loop
for(size_t loop = 0; static_cast<long>(loop) != params.maxLoops; ++loop)
{
for(list<string>::const_iterator it = playlist.begin();
it != playlist.end(); ++it)
{
for(size_t retry = 0; retry != params.maxRetries; ++retry)
{
// sweet dreams on temporary failures
if(loop || retry || it != playlist.begin())
sleep(params.waitSecs);
// residual playing time
if(params.maxTime)
{
time_t d(time(NULL) - start);
if(d >= params.maxTime)
return Exit::success;
resTime = params.maxTime - d;
}
msg("stream %s: retry %d of loop %d", it->c_str(), retry + 1, loop + 1);
int ret = exec_fIcy(params, resTime, it->c_str());
if(ret == Exit::args)
return Exit::fail;
// check for success after maxTime
if(ret == Exit::success)
break;
}
}
}
return Exit::success;
}
catch(runtime_error& err)
{
::err("%s", err.what());
return Exit::fail;
}
catch(...)
{
err("unknown error, aborting");
abort();
}