1 /***************************************************************************
3 * Project ___| | | | _ \| |
5 * | (__| |_| | _ <| |___
6 * \___|\___/|_| \_\_____|
8 * Copyright (C) 1998 - 2013, Daniel Stenberg, <daniel@haxx.se>, et al.
10 * This software is licensed as described in the file COPYING, which
11 * you should have received as part of this distribution. The terms
12 * are also available at http://curl.haxx.se/docs/copyright.html.
14 * You may opt to use, copy, modify, merge, publish, distribute and/or sell
15 * copies of the Software, and permit persons to whom the Software is
16 * furnished to do so, under the terms of the COPYING file.
18 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19 * KIND, either express or implied.
21 ***************************************************************************/
22 #include "tool_setup.h"
24 #define ENABLE_CURLX_PRINTF
25 /* use our own printf() functions */
28 #include "tool_cfgable.h"
29 #include "tool_cb_prg.h"
30 #include "tool_util.h"
32 #include "memdebug.h" /* keep this as LAST include */
35 ** callback for CURLOPT_PROGRESSFUNCTION
38 #define MAX_BARLENGTH 256
40 int tool_progress_cb(void *clientp,
41 double dltotal, double dlnow,
42 double ultotal, double ulnow)
44 /* The original progress-bar source code was written for curl by Lars Aas,
45 and this new edition inherits some of his concepts. */
47 char line[MAX_BARLENGTH+1];
53 struct timeval now = tvnow();
54 struct ProgressData *bar = (struct ProgressData *)clientp;
58 if(tvdiff(now, bar->prevtime) < 200L) /* allow 5 Hz */
61 /* expected transfer size */
62 total = (curl_off_t)dltotal + (curl_off_t)ultotal + bar->initial_size;
64 /* we've come this far */
65 point = (curl_off_t)dlnow + (curl_off_t)ulnow + bar->initial_size;
68 /* we have got more than the expected total! */
71 /* simply count invokes */
75 curl_off_t prevblock = bar->prev / 1024;
76 curl_off_t thisblock = point / 1024;
77 while(thisblock > prevblock) {
78 fprintf(bar->out, "#");
82 else if(point != bar->prev) {
83 frac = (double)point / (double)total;
84 percent = frac * 100.0f;
85 barwidth = bar->width - 7;
86 num = (int) (((double)barwidth) * frac);
87 if(num > MAX_BARLENGTH)
89 memset(line, '#', num);
91 snprintf(format, sizeof(format), "\r%%-%ds %%5.1f%%%%", barwidth);
92 fprintf(bar->out, format, line, percent);
101 void progressbarinit(struct ProgressData *bar,
102 struct Configurable *config)
110 memset(bar, 0, sizeof(struct ProgressData));
112 /* pass this through to progress function so
113 * it can display progress towards total file
114 * not just the part that's left. (21-may-03, dbyron) */
115 if(config->use_resume)
116 bar->initial_size = config->resume_from;
118 /* TODO: get terminal width through ansi escapes or something similar.
119 try to update width when xterm is resized... - 19990617 larsa */
122 * OS/2 users most likely won't have this env var set, and besides that
123 * we're using our own way to determine screen width */
124 colp = curlx_getenv("COLUMNS");
127 long num = strtol(colp, &endptr, 10);
128 if((endptr != colp) && (endptr == colp + strlen(colp)) && (num > 0))
129 bar->width = (int)num;
138 * We use this emx library call to get the screen width, and subtract
139 * one from what we got in order to avoid a problem with the cursor
140 * advancing to the next line if we print a string that is as long as
141 * the screen is wide. */
144 bar->width = scr_size[0] - 1;
147 bar->out = config->errors;