X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/record-dvb/blobdiff_plain/6ac47f90d7d4b382ea7e1e399460ade12f17522b..8447845ff6a909797551483cab14a24e5bcf7888:/record-dvb.c diff --git a/record-dvb.c b/record-dvb.c index bc47ecf..d87d3e7 100644 --- a/record-dvb.c +++ b/record-dvb.c @@ -12,25 +12,27 @@ #include "http.h" #include "mcast.h" +#include "sap.h" -#define CHUNKSIZE 1500 -#define GTOD_INTERVAL 100 +#define CHUNKSIZE 3000 +#define GTOD_INTERVAL 100 +#define MAX_ERROR_SLEEP 60 void record(int(*open_fn)(char *), char *url, char *outfile, int duration) { struct timeval start, curr; - int bytes, written, count = 0; + int bytes, recvd, written, count = 0; + int error_sleep = 0; char buffer[CHUNKSIZE]; - int i; int in, out; - if ((out = open(outfile, O_CREAT|O_TRUNC|O_WRONLY|O_LARGEFILE, 00644)) < 0) { - perror("open"); + if ((in = (*open_fn)(url)) < 0) { + fprintf(stderr,"Can't open url %s!\n",url); exit(EXIT_FAILURE); } - if ((in = (*open_fn)(url)) < 0) { - fprintf(stderr,"Can't open url %s!\n",url); + if ((out = open(outfile, O_CREAT|O_TRUNC|O_WRONLY|O_LARGEFILE, 00644)) < 0) { + perror("open"); exit(EXIT_FAILURE); } @@ -40,25 +42,38 @@ void record(int(*open_fn)(char *), char *url, char *outfile, int duration) curr = start; do { - if ((bytes = recv(in, buffer, CHUNKSIZE, 0)) < 1) { - /* TODO: Insert better connection-loss recovery here */ + if (error_sleep) { + sleep(error_sleep); + printf("Reconnecting... "); if ((in = (*open_fn)(url)) < 0) { - sleep(1); + if (error_sleep < MAX_ERROR_SLEEP) + error_sleep *= 2; + + if (error_sleep > MAX_ERROR_SLEEP) + error_sleep = MAX_ERROR_SLEEP; + + printf("failed\n"); continue; + } else { + printf("succeeded\n"); + error_sleep = 0; } } + + if ((recvd = recv(in, buffer, CHUNKSIZE, 0)) < 1) { + error_sleep = 1; + continue; + } written = 0; do { - if ((i = write(out, buffer, bytes-written)) < 0) { + if ((bytes = write(out, buffer, recvd-written)) < 0) { perror("write"); exit(EXIT_FAILURE); } - written += i; - } while(written < bytes); + written += bytes; + } while(written < recvd); - count++; - - if (!(count % GTOD_INTERVAL)) + if (!(++count % GTOD_INTERVAL)) gettimeofday(&curr, NULL); } while (curr.tv_sec < start.tv_sec+duration); @@ -83,12 +98,20 @@ int main(int argc, char **argv) exit(EXIT_FAILURE); } + if (!is_http(url) && !is_mcast(url)) { + char *service_url; + if ((service_url = get_url_from_sap(url))) { + printf("SAP says: '%s' -> %s\n", url, service_url); + url = service_url; + } + } + if (is_http(url)) { open_fn = &open_http; } else if (is_mcast(url)) { open_fn = &open_mcast; } else { - printf("URL %s not supported!\n", url); + printf("URL '%s' not supported!\n", url); exit(EXIT_FAILURE); }