Magnus Damm | f591499 | 2009-11-08 16:34:43 +0100 | [diff] [blame] | 1 | /* 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 Vlasenko | e4dcba1 | 2010-10-28 18:57:19 +0200 | [diff] [blame] | 10 | * The Regents of the University of California. All rights reserved. |
Magnus Damm | f591499 | 2009-11-08 16:34:43 +0100 | [diff] [blame] | 11 | * |
| 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 Vlasenko | e4dcba1 | 2010-10-28 18:57:19 +0200 | [diff] [blame] | 21 | * 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 Damm | f591499 | 2009-11-08 16:34:43 +0100 | [diff] [blame] | 23 | * |
| 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 | * |
| 28 | * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 29 | * 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 | |
| 43 | enum { |
| 44 | /* Seconds when xfer considered "stalled" */ |
| 45 | STALLTIME = 5 |
| 46 | }; |
| 47 | |
| 48 | static unsigned int get_tty2_width(void) |
| 49 | { |
| 50 | unsigned width; |
| 51 | get_terminal_width_height(2, &width, NULL); |
| 52 | return width; |
| 53 | } |
| 54 | |
Denys Vlasenko | d55e139 | 2011-02-11 18:56:13 +0100 | [diff] [blame] | 55 | void FAST_FUNC bb_progress_init(bb_progress_t *p, const char *curfile) |
Magnus Damm | f591499 | 2009-11-08 16:34:43 +0100 | [diff] [blame] | 56 | { |
Denys Vlasenko | d55e139 | 2011-02-11 18:56:13 +0100 | [diff] [blame] | 57 | #if ENABLE_UNICODE_SUPPORT |
| 58 | init_unicode(); |
| 59 | p->curfile = unicode_conv_to_printable_fixedwidth(/*NULL,*/ curfile, 20); |
| 60 | #else |
| 61 | p->curfile = curfile; |
| 62 | #endif |
Magnus Damm | f591499 | 2009-11-08 16:34:43 +0100 | [diff] [blame] | 63 | p->start_sec = monotonic_sec(); |
Denys Vlasenko | ab8d00d | 2011-02-11 19:09:30 +0100 | [diff] [blame^] | 64 | p->last_update_sec = p->start_sec; |
| 65 | p->last_change_sec = p->start_sec; |
| 66 | p->last_size = 0; |
Magnus Damm | f591499 | 2009-11-08 16:34:43 +0100 | [diff] [blame] | 67 | } |
| 68 | |
Denys Vlasenko | f836f01 | 2011-02-10 23:02:28 +0100 | [diff] [blame] | 69 | /* File already had beg_size bytes. |
| 70 | * Then we started downloading. |
| 71 | * We downloaded "transferred" bytes so far. |
| 72 | * Download is expected to stop when total size (beg_size + transferred) |
| 73 | * will be "totalsize" bytes. |
| 74 | * If totalsize == 0, then it is unknown. |
| 75 | */ |
Magnus Damm | f591499 | 2009-11-08 16:34:43 +0100 | [diff] [blame] | 76 | void FAST_FUNC bb_progress_update(bb_progress_t *p, |
Denys Vlasenko | f836f01 | 2011-02-10 23:02:28 +0100 | [diff] [blame] | 77 | uoff_t beg_size, |
Denys Vlasenko | 805aa9f | 2011-02-10 14:25:51 +0100 | [diff] [blame] | 78 | uoff_t transferred, |
| 79 | uoff_t totalsize) |
Magnus Damm | f591499 | 2009-11-08 16:34:43 +0100 | [diff] [blame] | 80 | { |
Bradley M. Kuhn | c97131c | 2010-08-08 02:51:20 +0200 | [diff] [blame] | 81 | uoff_t beg_and_transferred; |
Magnus Damm | f591499 | 2009-11-08 16:34:43 +0100 | [diff] [blame] | 82 | unsigned since_last_update, elapsed; |
Denys Vlasenko | 805aa9f | 2011-02-10 14:25:51 +0100 | [diff] [blame] | 83 | int barlength; |
| 84 | int kiloscale; |
Magnus Damm | f591499 | 2009-11-08 16:34:43 +0100 | [diff] [blame] | 85 | |
Denys Vlasenko | ab8d00d | 2011-02-11 19:09:30 +0100 | [diff] [blame^] | 86 | //transferred = 1234; /* use for stall detection testing */ |
| 87 | //totalsize = 0; /* use for unknown size download testing */ |
| 88 | |
Bradley M. Kuhn | c97131c | 2010-08-08 02:51:20 +0200 | [diff] [blame] | 89 | elapsed = monotonic_sec(); |
Denys Vlasenko | ab8d00d | 2011-02-11 19:09:30 +0100 | [diff] [blame^] | 90 | since_last_update = elapsed - p->last_update_sec; |
| 91 | p->last_update_sec = elapsed; |
Denys Vlasenko | e52e67c | 2011-02-11 12:59:11 +0100 | [diff] [blame] | 92 | |
| 93 | if (totalsize != 0 && transferred >= totalsize - beg_size) { |
| 94 | /* Last call. Do not skip this update */ |
| 95 | transferred = totalsize - beg_size; /* sanitize just in case */ |
| 96 | } |
| 97 | else if (since_last_update == 0) { |
| 98 | /* |
| 99 | * Do not update on every call |
| 100 | * (we can be called on every network read!) |
| 101 | */ |
Denys Vlasenko | 84dba9c | 2011-01-10 12:51:44 +0100 | [diff] [blame] | 102 | return; |
Denys Vlasenko | e52e67c | 2011-02-11 12:59:11 +0100 | [diff] [blame] | 103 | } |
Bradley M. Kuhn | c97131c | 2010-08-08 02:51:20 +0200 | [diff] [blame] | 104 | |
Denys Vlasenko | 805aa9f | 2011-02-10 14:25:51 +0100 | [diff] [blame] | 105 | kiloscale = 0; |
Denys Vlasenko | f836f01 | 2011-02-10 23:02:28 +0100 | [diff] [blame] | 106 | /* |
| 107 | * Scale sizes down if they are close to overflowing. |
| 108 | * This allows calculations like (100 * transferred / totalsize) |
| 109 | * without risking overflow: we guarantee 10 highest bits to be 0. |
| 110 | * Introduced error is less than 1 / 2^12 ~= 0.025% |
| 111 | */ |
| 112 | if (ULONG_MAX > 0xffffffff || sizeof(off_t) == 4 || sizeof(off_t) != 8) { |
| 113 | /* |
| 114 | * 64-bit CPU || small off_t: in either case, |
| 115 | * >> is cheap, single-word operation. |
Denys Vlasenko | e52e67c | 2011-02-11 12:59:11 +0100 | [diff] [blame] | 116 | * ... || strange off_t: also use this code |
| 117 | * (it is safe, just suboptimal wrt code size), |
| 118 | * because 32/64 optimized one works only for 64-bit off_t. |
Denys Vlasenko | f836f01 | 2011-02-10 23:02:28 +0100 | [diff] [blame] | 119 | */ |
| 120 | if (totalsize >= (1 << 22)) { |
| 121 | totalsize >>= 10; |
| 122 | beg_size >>= 10; |
| 123 | transferred >>= 10; |
Denys Vlasenko | f836f01 | 2011-02-10 23:02:28 +0100 | [diff] [blame] | 124 | kiloscale = 1; |
| 125 | } |
| 126 | } else { |
| 127 | /* 32-bit CPU and 64-bit off_t. |
Denys Vlasenko | e52e67c | 2011-02-11 12:59:11 +0100 | [diff] [blame] | 128 | * Use a 40-bit shift, it is easier to do on 32-bit CPU. |
Denys Vlasenko | f836f01 | 2011-02-10 23:02:28 +0100 | [diff] [blame] | 129 | */ |
| 130 | if (totalsize >= (uoff_t)(1ULL << 54)) { |
| 131 | totalsize = (uint32_t)(totalsize >> 32) >> 8; |
| 132 | beg_size = (uint32_t)(beg_size >> 32) >> 8; |
| 133 | transferred = (uint32_t)(transferred >> 32) >> 8; |
Denys Vlasenko | f836f01 | 2011-02-10 23:02:28 +0100 | [diff] [blame] | 134 | kiloscale = 4; |
| 135 | } |
Magnus Damm | f591499 | 2009-11-08 16:34:43 +0100 | [diff] [blame] | 136 | } |
| 137 | |
Denys Vlasenko | ab8d00d | 2011-02-11 19:09:30 +0100 | [diff] [blame^] | 138 | if (ENABLE_UNICODE_SUPPORT) |
| 139 | fprintf(stderr, "\r%s", p->curfile); |
| 140 | else |
| 141 | fprintf(stderr, "\r%-20.20s", p->curfile); |
| 142 | |
Denys Vlasenko | e52e67c | 2011-02-11 12:59:11 +0100 | [diff] [blame] | 143 | beg_and_transferred = beg_size + transferred; |
Denys Vlasenko | 805aa9f | 2011-02-10 14:25:51 +0100 | [diff] [blame] | 144 | |
Denys Vlasenko | ab8d00d | 2011-02-11 19:09:30 +0100 | [diff] [blame^] | 145 | if (totalsize != 0) { |
| 146 | unsigned ratio = 100 * beg_and_transferred / totalsize; |
| 147 | fprintf(stderr, "%4u%%", ratio); |
Magnus Damm | f591499 | 2009-11-08 16:34:43 +0100 | [diff] [blame] | 148 | |
Denys Vlasenko | ab8d00d | 2011-02-11 19:09:30 +0100 | [diff] [blame^] | 149 | barlength = get_tty2_width() - 49; |
| 150 | if (barlength > 0) { |
| 151 | /* god bless gcc for variable arrays :) */ |
| 152 | char buf[barlength + 1]; |
| 153 | unsigned stars = (unsigned)barlength * beg_and_transferred / totalsize; |
| 154 | memset(buf, ' ', barlength); |
| 155 | buf[barlength] = '\0'; |
| 156 | memset(buf, '*', stars); |
| 157 | fprintf(stderr, " |%s|", buf); |
| 158 | } |
Magnus Damm | f591499 | 2009-11-08 16:34:43 +0100 | [diff] [blame] | 159 | } |
Denys Vlasenko | da0df47 | 2010-08-08 04:21:50 +0200 | [diff] [blame] | 160 | |
Bradley M. Kuhn | c97131c | 2010-08-08 02:51:20 +0200 | [diff] [blame] | 161 | while (beg_and_transferred >= 100000) { |
Bradley M. Kuhn | c97131c | 2010-08-08 02:51:20 +0200 | [diff] [blame] | 162 | beg_and_transferred >>= 10; |
Denys Vlasenko | f836f01 | 2011-02-10 23:02:28 +0100 | [diff] [blame] | 163 | kiloscale++; |
Magnus Damm | f591499 | 2009-11-08 16:34:43 +0100 | [diff] [blame] | 164 | } |
| 165 | /* see http://en.wikipedia.org/wiki/Tera */ |
Denys Vlasenko | 838d4bb | 2011-02-10 23:35:52 +0100 | [diff] [blame] | 166 | fprintf(stderr, "%6u%c", (unsigned)beg_and_transferred, " kMGTPEZY"[kiloscale]); |
Denys Vlasenko | 805aa9f | 2011-02-10 14:25:51 +0100 | [diff] [blame] | 167 | #define beg_and_transferred dont_use_beg_and_transferred_below() |
Magnus Damm | f591499 | 2009-11-08 16:34:43 +0100 | [diff] [blame] | 168 | |
Denys Vlasenko | ab8d00d | 2011-02-11 19:09:30 +0100 | [diff] [blame^] | 169 | since_last_update = elapsed - p->last_change_sec; |
| 170 | if ((unsigned)transferred != p->last_size) { |
| 171 | p->last_change_sec = elapsed; |
| 172 | p->last_size = (unsigned)transferred; |
Magnus Damm | f591499 | 2009-11-08 16:34:43 +0100 | [diff] [blame] | 173 | if (since_last_update >= STALLTIME) { |
Denys Vlasenko | e52e67c | 2011-02-11 12:59:11 +0100 | [diff] [blame] | 174 | /* We "cut out" these seconds from elapsed time |
Magnus Damm | f591499 | 2009-11-08 16:34:43 +0100 | [diff] [blame] | 175 | * by adjusting start time */ |
| 176 | p->start_sec += since_last_update; |
| 177 | } |
| 178 | since_last_update = 0; /* we are un-stalled now */ |
| 179 | } |
Denys Vlasenko | f836f01 | 2011-02-10 23:02:28 +0100 | [diff] [blame] | 180 | |
Magnus Damm | f591499 | 2009-11-08 16:34:43 +0100 | [diff] [blame] | 181 | elapsed -= p->start_sec; /* now it's "elapsed since start" */ |
| 182 | |
| 183 | if (since_last_update >= STALLTIME) { |
Denys Vlasenko | 838d4bb | 2011-02-10 23:35:52 +0100 | [diff] [blame] | 184 | fprintf(stderr, " - stalled -"); |
Denys Vlasenko | ab8d00d | 2011-02-11 19:09:30 +0100 | [diff] [blame^] | 185 | } else if (!totalsize || !transferred || (int)elapsed < 0) { |
Denys Vlasenko | 838d4bb | 2011-02-10 23:35:52 +0100 | [diff] [blame] | 186 | fprintf(stderr, " --:--:-- ETA"); |
Magnus Damm | f591499 | 2009-11-08 16:34:43 +0100 | [diff] [blame] | 187 | } else { |
Denys Vlasenko | f836f01 | 2011-02-10 23:02:28 +0100 | [diff] [blame] | 188 | unsigned eta, secs, hours; |
| 189 | |
| 190 | totalsize -= beg_size; /* now it's "total to upload" */ |
| 191 | |
| 192 | /* Estimated remaining time = |
| 193 | * estimated_sec_to_dl_totalsize_bytes - elapsed_sec = |
| 194 | * totalsize / average_bytes_sec_so_far - elapsed = |
| 195 | * totalsize / (transferred/elapsed) - elapsed = |
| 196 | * totalsize * elapsed / transferred - elapsed |
| 197 | */ |
| 198 | eta = totalsize * elapsed / transferred - elapsed; |
Denys Vlasenko | 838d4bb | 2011-02-10 23:35:52 +0100 | [diff] [blame] | 199 | if (eta >= 1000*60*60) |
| 200 | eta = 1000*60*60 - 1; |
Denys Vlasenko | f836f01 | 2011-02-10 23:02:28 +0100 | [diff] [blame] | 201 | secs = eta % 3600; |
| 202 | hours = eta / 3600; |
Denys Vlasenko | 838d4bb | 2011-02-10 23:35:52 +0100 | [diff] [blame] | 203 | fprintf(stderr, "%3u:%02u:%02u ETA", hours, secs / 60, secs % 60); |
Magnus Damm | f591499 | 2009-11-08 16:34:43 +0100 | [diff] [blame] | 204 | } |
| 205 | } |