X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/record-dvb/blobdiff_plain/5c2e3e4489486a30d8f14338277de093b4d94cf0..34d3d2846a69a1ae8c108e57e2539ac461b19328:/record-dvb.c diff --git a/record-dvb.c b/record-dvb.c index aa48bb4..38609a4 100644 --- a/record-dvb.c +++ b/record-dvb.c @@ -13,46 +13,63 @@ #include "http.h" #include "mcast.h" -#define CHUNKSIZE 8192 +#define CHUNKSIZE 3000 +#define GTOD_INTERVAL 100 void record(int(*open_fn)(char *), char *url, char *outfile, int duration) { struct timeval start, curr; - int bytes, written; + 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); } printf("Recording from %s for %d seconds...\n", url, duration); gettimeofday(&start, NULL); + curr = start; do { - if ((bytes = recv(in, buffer, CHUNKSIZE, 0)) < 1) { - perror("recv"); - exit(EXIT_FAILURE); + if (error_sleep) { + sleep(error_sleep); + printf("Reconnecting... "); + if ((in = (*open_fn)(url)) < 0) { + if (error_sleep < 60) + error_sleep *= 2; + + 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); - gettimeofday(&curr, NULL); + if (!(++count % GTOD_INTERVAL)) + gettimeofday(&curr, NULL); } while (curr.tv_sec < start.tv_sec+duration); close(out); @@ -69,10 +86,10 @@ int main(int argc, char **argv) if (argc == 4) { url = argv[1]; - duration = atol(argv[2])*60; + duration = atoi(argv[2])*60; outfile = argv[3]; } else { - fprintf(stderr,"Syntax: %s URL duration outfile\n", argv[0]); + fprintf(stderr,"Syntax: %s URL duration_in_minutes outfile\n", argv[0]); exit(EXIT_FAILURE); }