blob: f1d980d68b25f51f6f3953ee030ba4eedcb1d18b [file] [log] [blame]
Magnus Dammf5914992009-11-08 16:34:43 +01001/* vi: set sw=4 ts=4: */
2/*
3 * Progress bar code.
4 */
5/* Original copyright notice which applies to the CONFIG_FEATURE_WGET_STATUSBAR stuff,
6 * much of which was blatantly stolen from openssh.
7 */
8/*-
9 * Copyright (c) 1992, 1993
Denys Vlasenkoe4dcba12010-10-28 18:57:19 +020010 * The Regents of the University of California. All rights reserved.
Magnus Dammf5914992009-11-08 16:34:43 +010011 *
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
14 * are met:
15 * 1. Redistributions of source code must retain the above copyright
16 * notice, this list of conditions and the following disclaimer.
17 * 2. Redistributions in binary form must reproduce the above copyright
18 * notice, this list of conditions and the following disclaimer in the
19 * documentation and/or other materials provided with the distribution.
20 *
Denys Vlasenkoe4dcba12010-10-28 18:57:19 +020021 * 3. BSD Advertising Clause omitted per the July 22, 1999 licensing change
22 * ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change
Magnus Dammf5914992009-11-08 16:34:43 +010023 *
24 * 4. Neither the name of the University nor the names of its contributors
25 * may be used to endorse or promote products derived from this software
26 * without specific prior written permission.
27 *
Denys Vlasenko95f79532017-08-02 14:26:33 +020028 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ''AS IS'' AND
Magnus Dammf5914992009-11-08 16:34:43 +010029 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
30 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
31 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
32 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
33 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
34 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
35 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
36 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
37 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
38 * SUCH DAMAGE.
39 */
40#include "libbb.h"
41#include "unicode.h"
42
43enum {
44 /* Seconds when xfer considered "stalled" */
45 STALLTIME = 5
46};
47
Denys Vlasenkod55e1392011-02-11 18:56:13 +010048void FAST_FUNC bb_progress_init(bb_progress_t *p, const char *curfile)
Magnus Dammf5914992009-11-08 16:34:43 +010049{
Denys Vlasenkod55e1392011-02-11 18:56:13 +010050#if ENABLE_UNICODE_SUPPORT
51 init_unicode();
52 p->curfile = unicode_conv_to_printable_fixedwidth(/*NULL,*/ curfile, 20);
53#else
54 p->curfile = curfile;
55#endif
Magnus Dammf5914992009-11-08 16:34:43 +010056 p->start_sec = monotonic_sec();
Denys Vlasenkoab8d00d2011-02-11 19:09:30 +010057 p->last_update_sec = p->start_sec;
58 p->last_change_sec = p->start_sec;
59 p->last_size = 0;
Magnus Dammf5914992009-11-08 16:34:43 +010060}
61
Denys Vlasenkof836f012011-02-10 23:02:28 +010062/* File already had beg_size bytes.
63 * Then we started downloading.
64 * We downloaded "transferred" bytes so far.
65 * Download is expected to stop when total size (beg_size + transferred)
66 * will be "totalsize" bytes.
67 * If totalsize == 0, then it is unknown.
68 */
Magnus Dammf5914992009-11-08 16:34:43 +010069void FAST_FUNC bb_progress_update(bb_progress_t *p,
Denys Vlasenkof836f012011-02-10 23:02:28 +010070 uoff_t beg_size,
Denys Vlasenko805aa9f2011-02-10 14:25:51 +010071 uoff_t transferred,
72 uoff_t totalsize)
Magnus Dammf5914992009-11-08 16:34:43 +010073{
Denys Vlasenko47529d32018-02-07 23:48:34 +010074 char numbuf5[6]; /* 5 + 1 for NUL */
Magnus Dammf5914992009-11-08 16:34:43 +010075 unsigned since_last_update, elapsed;
Denys Vlasenkod3d65342015-10-23 02:01:38 +020076 int notty;
Magnus Dammf5914992009-11-08 16:34:43 +010077
Denys Vlasenkoab8d00d2011-02-11 19:09:30 +010078 //transferred = 1234; /* use for stall detection testing */
79 //totalsize = 0; /* use for unknown size download testing */
80
Bradley M. Kuhnc97131c2010-08-08 02:51:20 +020081 elapsed = monotonic_sec();
Denys Vlasenkoab8d00d2011-02-11 19:09:30 +010082 since_last_update = elapsed - p->last_update_sec;
83 p->last_update_sec = elapsed;
Denys Vlasenkoe52e67c2011-02-11 12:59:11 +010084
85 if (totalsize != 0 && transferred >= totalsize - beg_size) {
86 /* Last call. Do not skip this update */
87 transferred = totalsize - beg_size; /* sanitize just in case */
88 }
89 else if (since_last_update == 0) {
90 /*
91 * Do not update on every call
92 * (we can be called on every network read!)
93 */
Denys Vlasenko84dba9c2011-01-10 12:51:44 +010094 return;
Denys Vlasenkoe52e67c2011-02-11 12:59:11 +010095 }
Bradley M. Kuhnc97131c2010-08-08 02:51:20 +020096
Denys Vlasenko47529d32018-02-07 23:48:34 +010097 /* Before we lose real, unscaled sizes, produce human-readable size string */
98 smart_ulltoa5(beg_size + transferred, numbuf5, " kMGTPEZY")[0] = '\0';
99
Denys Vlasenkof836f012011-02-10 23:02:28 +0100100 /*
101 * Scale sizes down if they are close to overflowing.
102 * This allows calculations like (100 * transferred / totalsize)
103 * without risking overflow: we guarantee 10 highest bits to be 0.
104 * Introduced error is less than 1 / 2^12 ~= 0.025%
105 */
Denys Vlasenko47529d32018-02-07 23:48:34 +0100106 while (totalsize >= (1 << 20)) {
107 totalsize >>= 8;
108 beg_size >>= 8;
109 transferred >>= 8;
Magnus Dammf5914992009-11-08 16:34:43 +0100110 }
Denys Vlasenko47529d32018-02-07 23:48:34 +0100111 /* If they were huge, now they are scaled down to [1048575,4096] range.
112 * (N * totalsize) won't overflow 32 bits for N up to 4096.
Denys Vlasenkoab843e32018-02-07 17:47:39 +0100113 */
114#if ULONG_MAX == 0xffffffff
115/* 32-bit CPU, uoff_t arithmetic is complex on it, cast variables to narrower types */
116# define totalsize ((unsigned)totalsize)
117# define beg_size ((unsigned)beg_size)
118# define transferred ((unsigned)transferred)
119#endif
Magnus Dammf5914992009-11-08 16:34:43 +0100120
Denys Vlasenkod3d65342015-10-23 02:01:38 +0200121 notty = !isatty(STDERR_FILENO);
122
Denys Vlasenkoab8d00d2011-02-11 19:09:30 +0100123 if (ENABLE_UNICODE_SUPPORT)
Denys Vlasenko47529d32018-02-07 23:48:34 +0100124 fprintf(stderr, "\r%s " + notty, p->curfile);
Denys Vlasenkoab8d00d2011-02-11 19:09:30 +0100125 else
Denys Vlasenko47529d32018-02-07 23:48:34 +0100126 fprintf(stderr, "\r%-20.20s " + notty, p->curfile);
Denys Vlasenko805aa9f2011-02-10 14:25:51 +0100127
Denys Vlasenkoab8d00d2011-02-11 19:09:30 +0100128 if (totalsize != 0) {
Denys Vlasenkod3d65342015-10-23 02:01:38 +0200129 int barlength;
Denys Vlasenko47529d32018-02-07 23:48:34 +0100130 unsigned beg_and_transferred; /* does not need uoff_t, see scaling code */
131 unsigned ratio;
Magnus Dammf5914992009-11-08 16:34:43 +0100132
Denys Vlasenko47529d32018-02-07 23:48:34 +0100133 beg_and_transferred = beg_size + transferred;
134 ratio = 100 * beg_and_transferred / totalsize;
135 /* can't overflow ^^^^^^^^^^^^^^^ */
136 fprintf(stderr, "%3u%% ", ratio);
137
138 barlength = get_terminal_width(2) - 48;
139 /*
140 * Must reject barlength <= 0 (terminal too narrow). While at it,
141 * also reject: 1-char bar (useless), 2-char bar (ridiculous).
142 */
143 if (barlength > 2) {
Denys Vlasenkoab843e32018-02-07 17:47:39 +0100144 if (barlength > 999)
145 barlength = 999;
146 {
147 /* god bless gcc for variable arrays :) */
148 char buf[barlength + 1];
149 unsigned stars = (unsigned)barlength * beg_and_transferred / totalsize;
150 /* can't overflow ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ */
151 memset(buf, ' ', barlength);
152 buf[barlength] = '\0';
153 memset(buf, '*', stars);
Denys Vlasenko47529d32018-02-07 23:48:34 +0100154 fprintf(stderr, "|%s| ", buf);
Denys Vlasenkoab843e32018-02-07 17:47:39 +0100155 }
Denys Vlasenkoab8d00d2011-02-11 19:09:30 +0100156 }
Magnus Dammf5914992009-11-08 16:34:43 +0100157 }
Denys Vlasenkoda0df472010-08-08 04:21:50 +0200158
Denys Vlasenko47529d32018-02-07 23:48:34 +0100159 fputs(numbuf5, stderr); /* "NNNNk" */
Magnus Dammf5914992009-11-08 16:34:43 +0100160
Denys Vlasenkoab8d00d2011-02-11 19:09:30 +0100161 since_last_update = elapsed - p->last_change_sec;
162 if ((unsigned)transferred != p->last_size) {
163 p->last_change_sec = elapsed;
164 p->last_size = (unsigned)transferred;
Magnus Dammf5914992009-11-08 16:34:43 +0100165 if (since_last_update >= STALLTIME) {
Denys Vlasenkoe52e67c2011-02-11 12:59:11 +0100166 /* We "cut out" these seconds from elapsed time
Magnus Dammf5914992009-11-08 16:34:43 +0100167 * by adjusting start time */
168 p->start_sec += since_last_update;
169 }
170 since_last_update = 0; /* we are un-stalled now */
171 }
Denys Vlasenkof836f012011-02-10 23:02:28 +0100172
Magnus Dammf5914992009-11-08 16:34:43 +0100173 elapsed -= p->start_sec; /* now it's "elapsed since start" */
174
175 if (since_last_update >= STALLTIME) {
Denys Vlasenko838d4bb2011-02-10 23:35:52 +0100176 fprintf(stderr, " - stalled -");
Denys Vlasenkoab8d00d2011-02-11 19:09:30 +0100177 } else if (!totalsize || !transferred || (int)elapsed < 0) {
Denys Vlasenko838d4bb2011-02-10 23:35:52 +0100178 fprintf(stderr, " --:--:-- ETA");
Magnus Dammf5914992009-11-08 16:34:43 +0100179 } else {
Denys Vlasenkof836f012011-02-10 23:02:28 +0100180 unsigned eta, secs, hours;
Denys Vlasenkoab843e32018-02-07 17:47:39 +0100181 unsigned bytes;
Denys Vlasenkof836f012011-02-10 23:02:28 +0100182
Denys Vlasenkoab843e32018-02-07 17:47:39 +0100183 bytes = totalsize - beg_size;
Denys Vlasenkof836f012011-02-10 23:02:28 +0100184
185 /* Estimated remaining time =
Denys Vlasenkoab843e32018-02-07 17:47:39 +0100186 * estimated_sec_to_dl_bytes - elapsed_sec =
187 * bytes / average_bytes_sec_so_far - elapsed =
188 * bytes / (transferred/elapsed) - elapsed =
189 * bytes * elapsed / transferred - elapsed
Denys Vlasenkof836f012011-02-10 23:02:28 +0100190 */
Denys Vlasenkoab843e32018-02-07 17:47:39 +0100191 eta = (unsigned long)bytes * elapsed / transferred - elapsed;
192 /* if 32bit, can overflow ^^^^^^^^^^, but this would only show bad ETA */
Denys Vlasenko838d4bb2011-02-10 23:35:52 +0100193 if (eta >= 1000*60*60)
194 eta = 1000*60*60 - 1;
Denys Vlasenkof836f012011-02-10 23:02:28 +0100195 secs = eta % 3600;
196 hours = eta / 3600;
Denys Vlasenko838d4bb2011-02-10 23:35:52 +0100197 fprintf(stderr, "%3u:%02u:%02u ETA", hours, secs / 60, secs % 60);
Magnus Dammf5914992009-11-08 16:34:43 +0100198 }
Denys Vlasenkod3d65342015-10-23 02:01:38 +0200199 if (notty)
200 fputc('\n', stderr);
Magnus Dammf5914992009-11-08 16:34:43 +0100201}