From 58dec1d4bf3b66d62454775bd8fd4f3d347b3806 Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Thu, 8 May 2014 01:26:38 +0200 Subject: [PATCH] fetch: print download status Signed-off-by: Felix Fietkau --- uclient-fetch.c | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/uclient-fetch.c b/uclient-fetch.c index 6a27cde..632cdbb 100644 --- a/uclient-fetch.c +++ b/uclient-fetch.c @@ -40,6 +40,7 @@ static bool verify = true; static const char *output_file; static int output_fd = -1; static int error_ret; +static int out_bytes; static int open_output_file(const char *path, bool create) { @@ -54,6 +55,9 @@ static int open_output_file(const char *path, bool create) if (!strcmp(output_file, "-")) return STDOUT_FILENO; + if (!quiet) + fprintf(stderr, "Writing to stdout\n"); + return open(output_file, flags, 0644); } @@ -62,6 +66,8 @@ static int open_output_file(const char *path, bool create) flags |= O_EXCL; filename = uclient_get_url_filename(path, "index.html"); + if (!quiet) + fprintf(stderr, "Writing to '%s'\n", filename); ret = open(filename, flags, 0644); free(filename); @@ -125,6 +131,7 @@ static void read_data_cb(struct uclient *cl) if (!len) return; + out_bytes += len; write(output_fd, buf, len); } } @@ -143,6 +150,7 @@ static void msg_connecting(struct uclient *cl) static void init_request(struct uclient *cl) { + out_bytes = 0; uclient_connect(cl); msg_connecting(cl); uclient_http_set_request_type(cl, "GET"); @@ -155,6 +163,8 @@ static void eof_cb(struct uclient *cl) if (!quiet) fprintf(stderr, "Connection reset prematurely\n"); error_ret = 4; + } else if (!quiet) { + fprintf(stderr, "Download completed (%d bytes)\n", out_bytes); } request_done(cl); } -- 2.30.2