curl: follow-up for commit 5af2bfb9
[platform/upstream/curl.git] / src / tool_cb_prg.c
1 /***************************************************************************
2  *                                  _   _ ____  _
3  *  Project                     ___| | | |  _ \| |
4  *                             / __| | | | |_) | |
5  *                            | (__| |_| |  _ <| |___
6  *                             \___|\___/|_| \_\_____|
7  *
8  * Copyright (C) 1998 - 2013, Daniel Stenberg, <daniel@haxx.se>, et al.
9  *
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.
13  *
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.
17  *
18  * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19  * KIND, either express or implied.
20  *
21  ***************************************************************************/
22 #include "tool_setup.h"
23
24 #define ENABLE_CURLX_PRINTF
25 /* use our own printf() functions */
26 #include "curlx.h"
27
28 #include "tool_cfgable.h"
29 #include "tool_cb_prg.h"
30 #include "tool_util.h"
31
32 #include "memdebug.h" /* keep this as LAST include */
33
34 /*
35 ** callback for CURLOPT_PROGRESSFUNCTION
36 */
37
38 #define MAX_BARLENGTH 256
39
40 int tool_progress_cb(void *clientp,
41                      double dltotal, double dlnow,
42                      double ultotal, double ulnow)
43 {
44   /* The original progress-bar source code was written for curl by Lars Aas,
45      and this new edition inherits some of his concepts. */
46
47   char line[MAX_BARLENGTH+1];
48   char format[40];
49   double frac;
50   double percent;
51   int barwidth;
52   int num;
53   struct timeval now = tvnow();
54   struct ProgressData *bar = (struct ProgressData *)clientp;
55   curl_off_t total;
56   curl_off_t point;
57
58   if(tvdiff(now, bar->prevtime) < 200L) /* allow 5 Hz */
59     return 0;
60
61   /* expected transfer size */
62   total = (curl_off_t)dltotal + (curl_off_t)ultotal + bar->initial_size;
63
64   /* we've come this far */
65   point = (curl_off_t)dlnow + (curl_off_t)ulnow + bar->initial_size;
66
67   if(point > total)
68     /* we have got more than the expected total! */
69     total = point;
70
71   /* simply count invokes */
72   bar->calls++;
73
74   if(total < 1) {
75     curl_off_t prevblock = bar->prev / 1024;
76     curl_off_t thisblock = point / 1024;
77     while(thisblock > prevblock) {
78       fprintf(bar->out, "#");
79       prevblock++;
80     }
81   }
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)
88       num = MAX_BARLENGTH;
89     memset(line, '#', num);
90     line[num] = '\0';
91     snprintf(format, sizeof(format), "\r%%-%ds %%5.1f%%%%", barwidth);
92     fprintf(bar->out, format, line, percent);
93   }
94   fflush(bar->out);
95   bar->prev = point;
96   bar->prevtime = now;
97
98   return 0;
99 }
100
101 void progressbarinit(struct ProgressData *bar,
102                      struct Configurable *config)
103 {
104 #ifdef __EMX__
105   /* 20000318 mgs */
106   int scr_size[2];
107 #endif
108   char *colp;
109
110   memset(bar, 0, sizeof(struct ProgressData));
111
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;
117
118 /* TODO: get terminal width through ansi escapes or something similar.
119    try to update width when xterm is resized... - 19990617 larsa */
120 #ifndef __EMX__
121   /* 20000318 mgs
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");
125   if(colp) {
126     char *endptr;
127     long num = strtol(colp, &endptr, 10);
128     if((endptr != colp) && (endptr == colp + strlen(colp)) && (num > 0))
129       bar->width = (int)num;
130     else
131       bar->width = 79;
132     curl_free(colp);
133   }
134   else
135     bar->width = 79;
136 #else
137   /* 20000318 mgs
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. */
142
143   _scrsize(scr_size);
144   bar->width = scr_size[0] - 1;
145 #endif
146
147   bar->out = config->errors;
148 }
149