blob: fe9bf52e4c90c6833d2f0b1829045deb5f70b4e9 [file] [log] [blame]
dtucker@openbsd.orge683fc62016-06-30 05:17:05 +00001/* $OpenBSD: progressmeter.c,v 1.45 2016/06/30 05:17:05 dtucker Exp $ */
Damien Miller6fd00e02003-01-10 21:46:02 +11002/*
Darren Tucker06ef75b2003-08-02 23:28:38 +10003 * Copyright (c) 2003 Nils Nordman. All rights reserved.
Damien Miller6fd00e02003-01-10 21:46:02 +11004 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 *
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
15 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
16 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
17 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
18 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
19 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
20 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
21 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 */
25
Damien Miller6fd00e02003-01-10 21:46:02 +110026#include "includes.h"
Damien Miller17e91c02006-03-15 11:28:34 +110027
Damien Millere6b3b612006-07-24 14:01:23 +100028#include <sys/types.h>
Damien Miller17e91c02006-03-15 11:28:34 +110029#include <sys/ioctl.h>
Damien Millerd7834352006-08-05 12:39:39 +100030#include <sys/uio.h>
Damien Miller6fd00e02003-01-10 21:46:02 +110031
Darren Tucker39972492006-07-12 22:22:46 +100032#include <errno.h>
Damien Miller6ff3cad2006-03-15 11:52:09 +110033#include <signal.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100034#include <stdio.h>
Damien Millere3476ed2006-07-24 14:13:33 +100035#include <string.h>
Damien Miller5598b4f2006-07-24 14:09:40 +100036#include <time.h>
Damien Millere6b3b612006-07-24 14:01:23 +100037#include <unistd.h>
Damien Miller6ff3cad2006-03-15 11:52:09 +110038
Damien Miller71a51412003-01-14 22:23:23 +110039#include "progressmeter.h"
Darren Tucker06ef75b2003-08-02 23:28:38 +100040#include "atomicio.h"
Damien Miller0cbb9de2003-06-04 22:56:15 +100041#include "misc.h"
Damien Miller6fd00e02003-01-10 21:46:02 +110042
Darren Tucker06ef75b2003-08-02 23:28:38 +100043#define DEFAULT_WINSIZE 80
44#define MAX_WINSIZE 512
45#define PADDING 1 /* padding between the progress indicators */
46#define UPDATE_INTERVAL 1 /* update the progress meter every second */
47#define STALL_TIME 5 /* we're stalled after this many seconds */
Damien Miller6fd00e02003-01-10 21:46:02 +110048
Darren Tucker06ef75b2003-08-02 23:28:38 +100049/* determines whether we can output to the terminal */
50static int can_output(void);
51
52/* formats and inserts the specified size into the given buffer */
53static void format_size(char *, int, off_t);
54static void format_rate(char *, int, off_t);
55
Damien Miller05656962005-06-16 13:18:04 +100056/* window resizing */
57static void sig_winch(int);
58static void setscreensize(void);
59
Darren Tucker06ef75b2003-08-02 23:28:38 +100060/* updates the progressmeter to reflect the current state of the transfer */
61void refresh_progress_meter(void);
62
63/* signal handler for updating the progress meter */
Damien Miller6fd00e02003-01-10 21:46:02 +110064static void update_progress_meter(int);
65
dtucker@openbsd.orgb8d4eaf2016-03-02 22:42:40 +000066static double start; /* start progress */
67static double last_update; /* last progress update */
djm@openbsd.org7d845f42015-01-14 13:54:13 +000068static const char *file; /* name of the file being transferred */
Darren Tucker5d80e452013-10-10 10:25:09 +110069static off_t start_pos; /* initial position of transfer */
Darren Tuckerfc959702004-07-17 16:12:08 +100070static off_t end_pos; /* ending position of transfer */
71static off_t cur_pos; /* transfer position as of last refresh */
Darren Tucker06ef75b2003-08-02 23:28:38 +100072static volatile off_t *counter; /* progress counter */
Darren Tuckerfc959702004-07-17 16:12:08 +100073static long stalled; /* how long we have been stalled */
74static int bytes_per_second; /* current speed in bytes per second */
75static int win_size; /* terminal window size */
Damien Miller05656962005-06-16 13:18:04 +100076static volatile sig_atomic_t win_resized; /* for window resizing */
Damien Miller6fd00e02003-01-10 21:46:02 +110077
Darren Tucker06ef75b2003-08-02 23:28:38 +100078/* units for format_size */
79static const char unit[] = " KMGT";
Damien Miller6fd00e02003-01-10 21:46:02 +110080
Darren Tucker06ef75b2003-08-02 23:28:38 +100081static int
82can_output(void)
83{
84 return (getpgrp() == tcgetpgrp(STDOUT_FILENO));
85}
Damien Miller6fd00e02003-01-10 21:46:02 +110086
Darren Tucker06ef75b2003-08-02 23:28:38 +100087static void
88format_rate(char *buf, int size, off_t bytes)
89{
90 int i;
Damien Miller6fd00e02003-01-10 21:46:02 +110091
Darren Tucker06ef75b2003-08-02 23:28:38 +100092 bytes *= 100;
93 for (i = 0; bytes >= 100*1000 && unit[i] != 'T'; i++)
94 bytes = (bytes + 512) / 1024;
95 if (i == 0) {
96 i++;
97 bytes = (bytes + 512) / 1024;
98 }
99 snprintf(buf, size, "%3lld.%1lld%c%s",
Darren Tuckere0be3042005-11-25 14:44:55 +1100100 (long long) (bytes + 5) / 100,
101 (long long) (bytes + 5) / 10 % 10,
Darren Tucker06ef75b2003-08-02 23:28:38 +1000102 unit[i],
103 i ? "B" : " ");
104}
Damien Miller6fd00e02003-01-10 21:46:02 +1100105
Darren Tucker06ef75b2003-08-02 23:28:38 +1000106static void
107format_size(char *buf, int size, off_t bytes)
108{
109 int i;
Damien Miller6fd00e02003-01-10 21:46:02 +1100110
Darren Tucker06ef75b2003-08-02 23:28:38 +1000111 for (i = 0; bytes >= 10000 && unit[i] != 'T'; i++)
112 bytes = (bytes + 512) / 1024;
113 snprintf(buf, size, "%4lld%c%s",
Darren Tuckere0be3042005-11-25 14:44:55 +1100114 (long long) bytes,
Darren Tucker06ef75b2003-08-02 23:28:38 +1000115 unit[i],
116 i ? "B" : " ");
117}
Damien Miller6fd00e02003-01-10 21:46:02 +1100118
119void
Darren Tucker06ef75b2003-08-02 23:28:38 +1000120refresh_progress_meter(void)
Damien Miller6fd00e02003-01-10 21:46:02 +1100121{
schwarze@openbsd.org6c171712016-05-30 18:34:41 +0000122 char buf[MAX_WINSIZE + 1];
Darren Tucker06ef75b2003-08-02 23:28:38 +1000123 off_t transferred;
dtucker@openbsd.orgb8d4eaf2016-03-02 22:42:40 +0000124 double elapsed, now;
Darren Tucker06ef75b2003-08-02 23:28:38 +1000125 int percent;
Darren Tucker7f73a492004-02-06 16:41:37 +1100126 off_t bytes_left;
Darren Tucker06ef75b2003-08-02 23:28:38 +1000127 int cur_speed;
128 int hours, minutes, seconds;
schwarze@openbsd.org6c171712016-05-30 18:34:41 +0000129 int i, len;
Darren Tucker06ef75b2003-08-02 23:28:38 +1000130 int file_len;
Damien Miller6fd00e02003-01-10 21:46:02 +1100131
Darren Tucker5d80e452013-10-10 10:25:09 +1100132 transferred = *counter - (cur_pos ? cur_pos : start_pos);
Darren Tucker06ef75b2003-08-02 23:28:38 +1000133 cur_pos = *counter;
dtucker@openbsd.orgb8d4eaf2016-03-02 22:42:40 +0000134 now = monotime_double();
Darren Tucker06ef75b2003-08-02 23:28:38 +1000135 bytes_left = end_pos - cur_pos;
Damien Miller6fd00e02003-01-10 21:46:02 +1100136
Darren Tucker06ef75b2003-08-02 23:28:38 +1000137 if (bytes_left > 0)
138 elapsed = now - last_update;
Darren Tucker1fb04252003-12-09 19:07:13 +1100139 else {
Darren Tucker06ef75b2003-08-02 23:28:38 +1000140 elapsed = now - start;
Darren Tucker1fb04252003-12-09 19:07:13 +1100141 /* Calculate true total speed when done */
Darren Tucker5d80e452013-10-10 10:25:09 +1100142 transferred = end_pos - start_pos;
Darren Tucker1fb04252003-12-09 19:07:13 +1100143 bytes_per_second = 0;
144 }
Darren Tucker06ef75b2003-08-02 23:28:38 +1000145
146 /* calculate speed */
147 if (elapsed != 0)
148 cur_speed = (transferred / elapsed);
149 else
Darren Tucker1fb04252003-12-09 19:07:13 +1100150 cur_speed = transferred;
Darren Tucker06ef75b2003-08-02 23:28:38 +1000151
152#define AGE_FACTOR 0.9
153 if (bytes_per_second != 0) {
154 bytes_per_second = (bytes_per_second * AGE_FACTOR) +
155 (cur_speed * (1.0 - AGE_FACTOR));
156 } else
157 bytes_per_second = cur_speed;
158
159 /* filename */
schwarze@openbsd.org6c171712016-05-30 18:34:41 +0000160 buf[0] = '\0';
Darren Tucker06ef75b2003-08-02 23:28:38 +1000161 file_len = win_size - 35;
162 if (file_len > 0) {
schwarze@openbsd.org6c171712016-05-30 18:34:41 +0000163 len = snprintf(buf, file_len + 1, "\r%s", file);
164 if (len < 0)
165 len = 0;
166 if (len >= file_len + 1)
167 len = file_len;
168 for (i = len; i < file_len; i++)
169 buf[i] = ' ';
170 buf[file_len] = '\0';
Darren Tucker06ef75b2003-08-02 23:28:38 +1000171 }
172
173 /* percent of transfer done */
dtucker@openbsd.orge683fc62016-06-30 05:17:05 +0000174 if (end_pos == 0 || cur_pos == end_pos)
Darren Tucker06ef75b2003-08-02 23:28:38 +1000175 percent = 100;
dtucker@openbsd.orge683fc62016-06-30 05:17:05 +0000176 else
177 percent = ((float)cur_pos / end_pos) * 100;
schwarze@openbsd.org6c171712016-05-30 18:34:41 +0000178 snprintf(buf + strlen(buf), win_size - strlen(buf),
Darren Tucker06ef75b2003-08-02 23:28:38 +1000179 " %3d%% ", percent);
180
181 /* amount transferred */
schwarze@openbsd.org6c171712016-05-30 18:34:41 +0000182 format_size(buf + strlen(buf), win_size - strlen(buf),
Darren Tucker06ef75b2003-08-02 23:28:38 +1000183 cur_pos);
schwarze@openbsd.org6c171712016-05-30 18:34:41 +0000184 strlcat(buf, " ", win_size);
Darren Tucker06ef75b2003-08-02 23:28:38 +1000185
186 /* bandwidth usage */
schwarze@openbsd.org6c171712016-05-30 18:34:41 +0000187 format_rate(buf + strlen(buf), win_size - strlen(buf),
Darren Tucker1f8311c2004-05-13 16:39:33 +1000188 (off_t)bytes_per_second);
schwarze@openbsd.org6c171712016-05-30 18:34:41 +0000189 strlcat(buf, "/s ", win_size);
Darren Tucker06ef75b2003-08-02 23:28:38 +1000190
191 /* ETA */
192 if (!transferred)
193 stalled += elapsed;
194 else
195 stalled = 0;
196
197 if (stalled >= STALL_TIME)
schwarze@openbsd.org6c171712016-05-30 18:34:41 +0000198 strlcat(buf, "- stalled -", win_size);
Darren Tucker06ef75b2003-08-02 23:28:38 +1000199 else if (bytes_per_second == 0 && bytes_left)
schwarze@openbsd.org6c171712016-05-30 18:34:41 +0000200 strlcat(buf, " --:-- ETA", win_size);
Darren Tucker06ef75b2003-08-02 23:28:38 +1000201 else {
202 if (bytes_left > 0)
203 seconds = bytes_left / bytes_per_second;
204 else
205 seconds = elapsed;
206
207 hours = seconds / 3600;
208 seconds -= hours * 3600;
209 minutes = seconds / 60;
210 seconds -= minutes * 60;
211
212 if (hours != 0)
schwarze@openbsd.org6c171712016-05-30 18:34:41 +0000213 snprintf(buf + strlen(buf), win_size - strlen(buf),
Darren Tucker06ef75b2003-08-02 23:28:38 +1000214 "%d:%02d:%02d", hours, minutes, seconds);
215 else
schwarze@openbsd.org6c171712016-05-30 18:34:41 +0000216 snprintf(buf + strlen(buf), win_size - strlen(buf),
Darren Tucker06ef75b2003-08-02 23:28:38 +1000217 " %02d:%02d", minutes, seconds);
218
219 if (bytes_left > 0)
schwarze@openbsd.org6c171712016-05-30 18:34:41 +0000220 strlcat(buf, " ETA", win_size);
Darren Tucker06ef75b2003-08-02 23:28:38 +1000221 else
schwarze@openbsd.org6c171712016-05-30 18:34:41 +0000222 strlcat(buf, " ", win_size);
Darren Tucker06ef75b2003-08-02 23:28:38 +1000223 }
224
schwarze@openbsd.org6c171712016-05-30 18:34:41 +0000225 atomicio(vwrite, STDOUT_FILENO, buf, win_size - 1);
Darren Tucker06ef75b2003-08-02 23:28:38 +1000226 last_update = now;
227}
228
Damien Milleree0d0db2006-07-24 14:08:50 +1000229/*ARGSUSED*/
Darren Tucker06ef75b2003-08-02 23:28:38 +1000230static void
231update_progress_meter(int ignore)
232{
233 int save_errno;
234
235 save_errno = errno;
236
Damien Miller05656962005-06-16 13:18:04 +1000237 if (win_resized) {
238 setscreensize();
239 win_resized = 0;
240 }
Darren Tucker06ef75b2003-08-02 23:28:38 +1000241 if (can_output())
242 refresh_progress_meter();
243
Ben Lindstrom5ade9ab2003-08-25 01:16:21 +0000244 signal(SIGALRM, update_progress_meter);
Darren Tucker06ef75b2003-08-02 23:28:38 +1000245 alarm(UPDATE_INTERVAL);
246 errno = save_errno;
247}
248
249void
djm@openbsd.org7d845f42015-01-14 13:54:13 +0000250start_progress_meter(const char *f, off_t filesize, off_t *ctr)
Darren Tucker06ef75b2003-08-02 23:28:38 +1000251{
dtucker@openbsd.orgb8d4eaf2016-03-02 22:42:40 +0000252 start = last_update = monotime_double();
Darren Tucker06ef75b2003-08-02 23:28:38 +1000253 file = f;
Darren Tucker5d80e452013-10-10 10:25:09 +1100254 start_pos = *ctr;
Darren Tucker06ef75b2003-08-02 23:28:38 +1000255 end_pos = filesize;
256 cur_pos = 0;
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000257 counter = ctr;
Darren Tucker06ef75b2003-08-02 23:28:38 +1000258 stalled = 0;
259 bytes_per_second = 0;
260
Damien Miller05656962005-06-16 13:18:04 +1000261 setscreensize();
Darren Tucker06ef75b2003-08-02 23:28:38 +1000262 if (can_output())
263 refresh_progress_meter();
264
Ben Lindstrom5ade9ab2003-08-25 01:16:21 +0000265 signal(SIGALRM, update_progress_meter);
Damien Miller05656962005-06-16 13:18:04 +1000266 signal(SIGWINCH, sig_winch);
Darren Tucker06ef75b2003-08-02 23:28:38 +1000267 alarm(UPDATE_INTERVAL);
Damien Miller6fd00e02003-01-10 21:46:02 +1100268}
269
270void
Damien Miller2b92d322003-06-11 22:05:06 +1000271stop_progress_meter(void)
Damien Miller6fd00e02003-01-10 21:46:02 +1100272{
273 alarm(0);
Damien Miller6fd00e02003-01-10 21:46:02 +1100274
Darren Tucker06ef75b2003-08-02 23:28:38 +1000275 if (!can_output())
Damien Miller6fd00e02003-01-10 21:46:02 +1100276 return;
277
Darren Tucker06ef75b2003-08-02 23:28:38 +1000278 /* Ensure we complete the progress */
279 if (cur_pos != end_pos)
280 refresh_progress_meter();
Damien Miller6fd00e02003-01-10 21:46:02 +1100281
Darren Tucker06ef75b2003-08-02 23:28:38 +1000282 atomicio(vwrite, STDOUT_FILENO, "\n", 1);
Damien Miller6fd00e02003-01-10 21:46:02 +1100283}
Damien Miller05656962005-06-16 13:18:04 +1000284
Damien Millerf0b15df2006-03-26 13:59:20 +1100285/*ARGSUSED*/
Damien Miller05656962005-06-16 13:18:04 +1000286static void
287sig_winch(int sig)
288{
289 win_resized = 1;
290}
291
292static void
293setscreensize(void)
294{
295 struct winsize winsize;
296
297 if (ioctl(STDOUT_FILENO, TIOCGWINSZ, &winsize) != -1 &&
298 winsize.ws_col != 0) {
299 if (winsize.ws_col > MAX_WINSIZE)
300 win_size = MAX_WINSIZE;
301 else
302 win_size = winsize.ws_col;
303 } else
304 win_size = DEFAULT_WINSIZE;
305 win_size += 1; /* trailing \0 */
306}