2009-11-08 21:04:43 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* Progress bar code.
|
|
|
|
*/
|
|
|
|
/* Original copyright notice which applies to the CONFIG_FEATURE_WGET_STATUSBAR stuff,
|
|
|
|
* much of which was blatantly stolen from openssh.
|
|
|
|
*/
|
|
|
|
/*-
|
|
|
|
* Copyright (c) 1992, 1993
|
2010-10-28 22:27:19 +05:30
|
|
|
* The Regents of the University of California. All rights reserved.
|
2009-11-08 21:04:43 +05:30
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
2010-10-28 22:27:19 +05:30
|
|
|
* 3. BSD Advertising Clause omitted per the July 22, 1999 licensing change
|
|
|
|
* ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change
|
2009-11-08 21:04:43 +05:30
|
|
|
*
|
|
|
|
* 4. Neither the name of the University nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
2017-08-02 17:56:33 +05:30
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ''AS IS'' AND
|
2009-11-08 21:04:43 +05:30
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
#include "libbb.h"
|
|
|
|
#include "unicode.h"
|
|
|
|
|
|
|
|
enum {
|
|
|
|
/* Seconds when xfer considered "stalled" */
|
|
|
|
STALLTIME = 5
|
|
|
|
};
|
|
|
|
|
2011-02-11 23:26:13 +05:30
|
|
|
void FAST_FUNC bb_progress_init(bb_progress_t *p, const char *curfile)
|
2009-11-08 21:04:43 +05:30
|
|
|
{
|
2011-02-11 23:26:13 +05:30
|
|
|
#if ENABLE_UNICODE_SUPPORT
|
|
|
|
init_unicode();
|
|
|
|
p->curfile = unicode_conv_to_printable_fixedwidth(/*NULL,*/ curfile, 20);
|
|
|
|
#else
|
|
|
|
p->curfile = curfile;
|
|
|
|
#endif
|
2009-11-08 21:04:43 +05:30
|
|
|
p->start_sec = monotonic_sec();
|
2011-02-11 23:39:30 +05:30
|
|
|
p->last_update_sec = p->start_sec;
|
|
|
|
p->last_change_sec = p->start_sec;
|
|
|
|
p->last_size = 0;
|
2018-02-13 21:18:52 +05:30
|
|
|
#if 0
|
|
|
|
p->last_eta = INT_MAX;
|
|
|
|
#endif
|
2009-11-08 21:04:43 +05:30
|
|
|
}
|
|
|
|
|
2011-02-11 03:32:28 +05:30
|
|
|
/* File already had beg_size bytes.
|
|
|
|
* Then we started downloading.
|
|
|
|
* We downloaded "transferred" bytes so far.
|
|
|
|
* Download is expected to stop when total size (beg_size + transferred)
|
|
|
|
* will be "totalsize" bytes.
|
|
|
|
* If totalsize == 0, then it is unknown.
|
|
|
|
*/
|
2018-11-23 23:44:52 +05:30
|
|
|
int FAST_FUNC bb_progress_update(bb_progress_t *p,
|
2011-02-11 03:32:28 +05:30
|
|
|
uoff_t beg_size,
|
2011-02-10 18:55:51 +05:30
|
|
|
uoff_t transferred,
|
|
|
|
uoff_t totalsize)
|
2009-11-08 21:04:43 +05:30
|
|
|
{
|
2018-02-08 04:18:34 +05:30
|
|
|
char numbuf5[6]; /* 5 + 1 for NUL */
|
2009-11-08 21:04:43 +05:30
|
|
|
unsigned since_last_update, elapsed;
|
2015-10-23 05:31:38 +05:30
|
|
|
int notty;
|
2009-11-08 21:04:43 +05:30
|
|
|
|
2011-02-11 23:39:30 +05:30
|
|
|
//transferred = 1234; /* use for stall detection testing */
|
|
|
|
//totalsize = 0; /* use for unknown size download testing */
|
|
|
|
|
2010-08-08 06:21:20 +05:30
|
|
|
elapsed = monotonic_sec();
|
2011-02-11 23:39:30 +05:30
|
|
|
since_last_update = elapsed - p->last_update_sec;
|
|
|
|
p->last_update_sec = elapsed;
|
2011-02-11 17:29:11 +05:30
|
|
|
|
|
|
|
if (totalsize != 0 && transferred >= totalsize - beg_size) {
|
|
|
|
/* Last call. Do not skip this update */
|
|
|
|
transferred = totalsize - beg_size; /* sanitize just in case */
|
|
|
|
}
|
|
|
|
else if (since_last_update == 0) {
|
|
|
|
/*
|
|
|
|
* Do not update on every call
|
|
|
|
* (we can be called on every network read!)
|
|
|
|
*/
|
2018-11-23 23:44:52 +05:30
|
|
|
return -1;
|
2011-02-11 17:29:11 +05:30
|
|
|
}
|
2010-08-08 06:21:20 +05:30
|
|
|
|
2018-02-08 04:18:34 +05:30
|
|
|
/* Before we lose real, unscaled sizes, produce human-readable size string */
|
|
|
|
smart_ulltoa5(beg_size + transferred, numbuf5, " kMGTPEZY")[0] = '\0';
|
|
|
|
|
2011-02-11 03:32:28 +05:30
|
|
|
/*
|
|
|
|
* Scale sizes down if they are close to overflowing.
|
|
|
|
* This allows calculations like (100 * transferred / totalsize)
|
|
|
|
* without risking overflow: we guarantee 10 highest bits to be 0.
|
|
|
|
* Introduced error is less than 1 / 2^12 ~= 0.025%
|
|
|
|
*/
|
2018-02-08 04:18:34 +05:30
|
|
|
while (totalsize >= (1 << 20)) {
|
|
|
|
totalsize >>= 8;
|
|
|
|
beg_size >>= 8;
|
|
|
|
transferred >>= 8;
|
2009-11-08 21:04:43 +05:30
|
|
|
}
|
2018-02-08 04:18:34 +05:30
|
|
|
/* If they were huge, now they are scaled down to [1048575,4096] range.
|
|
|
|
* (N * totalsize) won't overflow 32 bits for N up to 4096.
|
2018-02-07 22:17:39 +05:30
|
|
|
*/
|
|
|
|
#if ULONG_MAX == 0xffffffff
|
|
|
|
/* 32-bit CPU, uoff_t arithmetic is complex on it, cast variables to narrower types */
|
|
|
|
# define totalsize ((unsigned)totalsize)
|
|
|
|
# define beg_size ((unsigned)beg_size)
|
|
|
|
# define transferred ((unsigned)transferred)
|
|
|
|
#endif
|
2009-11-08 21:04:43 +05:30
|
|
|
|
2015-10-23 05:31:38 +05:30
|
|
|
notty = !isatty(STDERR_FILENO);
|
|
|
|
|
2011-02-11 23:26:13 +05:30
|
|
|
if (ENABLE_UNICODE_SUPPORT)
|
2018-02-08 04:18:34 +05:30
|
|
|
fprintf(stderr, "\r%s " + notty, p->curfile);
|
2011-02-11 23:26:13 +05:30
|
|
|
else
|
2018-02-08 04:18:34 +05:30
|
|
|
fprintf(stderr, "\r%-20.20s " + notty, p->curfile);
|
2011-02-11 23:39:30 +05:30
|
|
|
|
|
|
|
if (totalsize != 0) {
|
2015-10-23 05:31:38 +05:30
|
|
|
int barlength;
|
2018-02-08 04:18:34 +05:30
|
|
|
unsigned beg_and_transferred; /* does not need uoff_t, see scaling code */
|
|
|
|
unsigned ratio;
|
|
|
|
|
|
|
|
beg_and_transferred = beg_size + transferred;
|
|
|
|
ratio = 100 * beg_and_transferred / totalsize;
|
|
|
|
/* can't overflow ^^^^^^^^^^^^^^^ */
|
|
|
|
fprintf(stderr, "%3u%% ", ratio);
|
2011-02-11 23:39:30 +05:30
|
|
|
|
2018-02-08 04:18:34 +05:30
|
|
|
barlength = get_terminal_width(2) - 48;
|
|
|
|
/*
|
|
|
|
* Must reject barlength <= 0 (terminal too narrow). While at it,
|
|
|
|
* also reject: 1-char bar (useless), 2-char bar (ridiculous).
|
|
|
|
*/
|
|
|
|
if (barlength > 2) {
|
2018-02-07 22:17:39 +05:30
|
|
|
if (barlength > 999)
|
|
|
|
barlength = 999;
|
|
|
|
{
|
|
|
|
/* god bless gcc for variable arrays :) */
|
|
|
|
char buf[barlength + 1];
|
|
|
|
unsigned stars = (unsigned)barlength * beg_and_transferred / totalsize;
|
|
|
|
/* can't overflow ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ */
|
|
|
|
memset(buf, ' ', barlength);
|
|
|
|
buf[barlength] = '\0';
|
|
|
|
memset(buf, '*', stars);
|
2018-02-08 04:18:34 +05:30
|
|
|
fprintf(stderr, "|%s| ", buf);
|
2018-02-07 22:17:39 +05:30
|
|
|
}
|
2011-02-11 23:39:30 +05:30
|
|
|
}
|
2009-11-08 21:04:43 +05:30
|
|
|
}
|
2010-08-08 07:51:50 +05:30
|
|
|
|
2018-02-08 04:18:34 +05:30
|
|
|
fputs(numbuf5, stderr); /* "NNNNk" */
|
2009-11-08 21:04:43 +05:30
|
|
|
|
2011-02-11 23:39:30 +05:30
|
|
|
since_last_update = elapsed - p->last_change_sec;
|
|
|
|
if ((unsigned)transferred != p->last_size) {
|
|
|
|
p->last_change_sec = elapsed;
|
|
|
|
p->last_size = (unsigned)transferred;
|
2009-11-08 21:04:43 +05:30
|
|
|
if (since_last_update >= STALLTIME) {
|
2011-02-11 17:29:11 +05:30
|
|
|
/* We "cut out" these seconds from elapsed time
|
2009-11-08 21:04:43 +05:30
|
|
|
* by adjusting start time */
|
|
|
|
p->start_sec += since_last_update;
|
|
|
|
}
|
|
|
|
since_last_update = 0; /* we are un-stalled now */
|
|
|
|
}
|
2011-02-11 03:32:28 +05:30
|
|
|
|
2009-11-08 21:04:43 +05:30
|
|
|
elapsed -= p->start_sec; /* now it's "elapsed since start" */
|
|
|
|
|
|
|
|
if (since_last_update >= STALLTIME) {
|
2011-02-11 04:05:52 +05:30
|
|
|
fprintf(stderr, " - stalled -");
|
2011-02-11 23:39:30 +05:30
|
|
|
} else if (!totalsize || !transferred || (int)elapsed < 0) {
|
2011-02-11 04:05:52 +05:30
|
|
|
fprintf(stderr, " --:--:-- ETA");
|
2009-11-08 21:04:43 +05:30
|
|
|
} else {
|
2011-02-11 03:32:28 +05:30
|
|
|
unsigned eta, secs, hours;
|
2018-02-07 22:17:39 +05:30
|
|
|
unsigned bytes;
|
2011-02-11 03:32:28 +05:30
|
|
|
|
2018-02-07 22:17:39 +05:30
|
|
|
bytes = totalsize - beg_size;
|
2011-02-11 03:32:28 +05:30
|
|
|
|
|
|
|
/* Estimated remaining time =
|
2018-02-07 22:17:39 +05:30
|
|
|
* estimated_sec_to_dl_bytes - elapsed_sec =
|
|
|
|
* bytes / average_bytes_sec_so_far - elapsed =
|
|
|
|
* bytes / (transferred/elapsed) - elapsed =
|
|
|
|
* bytes * elapsed / transferred - elapsed
|
2011-02-11 03:32:28 +05:30
|
|
|
*/
|
2018-02-07 22:17:39 +05:30
|
|
|
eta = (unsigned long)bytes * elapsed / transferred - elapsed;
|
|
|
|
/* if 32bit, can overflow ^^^^^^^^^^, but this would only show bad ETA */
|
2011-02-11 04:05:52 +05:30
|
|
|
if (eta >= 1000*60*60)
|
|
|
|
eta = 1000*60*60 - 1;
|
2018-02-13 21:18:52 +05:30
|
|
|
#if 0
|
|
|
|
/* To prevent annoying "back-and-forth" estimation jitter,
|
|
|
|
* if new ETA is larger than the last just by a few seconds,
|
|
|
|
* disregard it, and show last one. The end result is that
|
|
|
|
* ETA usually only decreases, unless download slows down a lot.
|
|
|
|
*/
|
|
|
|
if ((unsigned)(eta - p->last_eta) < 10)
|
|
|
|
eta = p->last_eta;
|
|
|
|
p->last_eta = eta;
|
|
|
|
#endif
|
2011-02-11 03:32:28 +05:30
|
|
|
secs = eta % 3600;
|
|
|
|
hours = eta / 3600;
|
2011-02-11 04:05:52 +05:30
|
|
|
fprintf(stderr, "%3u:%02u:%02u ETA", hours, secs / 60, secs % 60);
|
2009-11-08 21:04:43 +05:30
|
|
|
}
|
2015-10-23 05:31:38 +05:30
|
|
|
if (notty)
|
|
|
|
fputc('\n', stderr);
|
2018-11-23 23:44:52 +05:30
|
|
|
return notty;
|
2009-11-08 21:04:43 +05:30
|
|
|
}
|