blob: c70e9939aa3e797cb46b4eb95c2c0b5ffc262f87 [file] [log] [blame]
Damien Miller5598b4f2006-07-24 14:09:40 +10001/* $OpenBSD: progressmeter.c,v 1.33 2006/07/22 19:08:54 stevesk 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 Miller6fd00e02003-01-10 21:46:02 +110030
Darren Tucker39972492006-07-12 22:22:46 +100031#include <errno.h>
Damien Miller6ff3cad2006-03-15 11:52:09 +110032#include <signal.h>
Damien Miller5598b4f2006-07-24 14:09:40 +100033#include <time.h>
Damien Millere6b3b612006-07-24 14:01:23 +100034#include <unistd.h>
Damien Miller6ff3cad2006-03-15 11:52:09 +110035
Damien Miller71a51412003-01-14 22:23:23 +110036#include "progressmeter.h"
Darren Tucker06ef75b2003-08-02 23:28:38 +100037#include "atomicio.h"
Damien Miller0cbb9de2003-06-04 22:56:15 +100038#include "misc.h"
Damien Miller6fd00e02003-01-10 21:46:02 +110039
Darren Tucker06ef75b2003-08-02 23:28:38 +100040#define DEFAULT_WINSIZE 80
41#define MAX_WINSIZE 512
42#define PADDING 1 /* padding between the progress indicators */
43#define UPDATE_INTERVAL 1 /* update the progress meter every second */
44#define STALL_TIME 5 /* we're stalled after this many seconds */
Damien Miller6fd00e02003-01-10 21:46:02 +110045
Darren Tucker06ef75b2003-08-02 23:28:38 +100046/* determines whether we can output to the terminal */
47static int can_output(void);
48
49/* formats and inserts the specified size into the given buffer */
50static void format_size(char *, int, off_t);
51static void format_rate(char *, int, off_t);
52
Damien Miller05656962005-06-16 13:18:04 +100053/* window resizing */
54static void sig_winch(int);
55static void setscreensize(void);
56
Darren Tucker06ef75b2003-08-02 23:28:38 +100057/* updates the progressmeter to reflect the current state of the transfer */
58void refresh_progress_meter(void);
59
60/* signal handler for updating the progress meter */
Damien Miller6fd00e02003-01-10 21:46:02 +110061static void update_progress_meter(int);
62
Darren Tuckerfc959702004-07-17 16:12:08 +100063static time_t start; /* start progress */
64static time_t last_update; /* last progress update */
65static char *file; /* name of the file being transferred */
66static off_t end_pos; /* ending position of transfer */
67static off_t cur_pos; /* transfer position as of last refresh */
Darren Tucker06ef75b2003-08-02 23:28:38 +100068static volatile off_t *counter; /* progress counter */
Darren Tuckerfc959702004-07-17 16:12:08 +100069static long stalled; /* how long we have been stalled */
70static int bytes_per_second; /* current speed in bytes per second */
71static int win_size; /* terminal window size */
Damien Miller05656962005-06-16 13:18:04 +100072static volatile sig_atomic_t win_resized; /* for window resizing */
Damien Miller6fd00e02003-01-10 21:46:02 +110073
Darren Tucker06ef75b2003-08-02 23:28:38 +100074/* units for format_size */
75static const char unit[] = " KMGT";
Damien Miller6fd00e02003-01-10 21:46:02 +110076
Darren Tucker06ef75b2003-08-02 23:28:38 +100077static int
78can_output(void)
79{
80 return (getpgrp() == tcgetpgrp(STDOUT_FILENO));
81}
Damien Miller6fd00e02003-01-10 21:46:02 +110082
Darren Tucker06ef75b2003-08-02 23:28:38 +100083static void
84format_rate(char *buf, int size, off_t bytes)
85{
86 int i;
Damien Miller6fd00e02003-01-10 21:46:02 +110087
Darren Tucker06ef75b2003-08-02 23:28:38 +100088 bytes *= 100;
89 for (i = 0; bytes >= 100*1000 && unit[i] != 'T'; i++)
90 bytes = (bytes + 512) / 1024;
91 if (i == 0) {
92 i++;
93 bytes = (bytes + 512) / 1024;
94 }
95 snprintf(buf, size, "%3lld.%1lld%c%s",
Darren Tuckere0be3042005-11-25 14:44:55 +110096 (long long) (bytes + 5) / 100,
97 (long long) (bytes + 5) / 10 % 10,
Darren Tucker06ef75b2003-08-02 23:28:38 +100098 unit[i],
99 i ? "B" : " ");
100}
Damien Miller6fd00e02003-01-10 21:46:02 +1100101
Darren Tucker06ef75b2003-08-02 23:28:38 +1000102static void
103format_size(char *buf, int size, off_t bytes)
104{
105 int i;
Damien Miller6fd00e02003-01-10 21:46:02 +1100106
Darren Tucker06ef75b2003-08-02 23:28:38 +1000107 for (i = 0; bytes >= 10000 && unit[i] != 'T'; i++)
108 bytes = (bytes + 512) / 1024;
109 snprintf(buf, size, "%4lld%c%s",
Darren Tuckere0be3042005-11-25 14:44:55 +1100110 (long long) bytes,
Darren Tucker06ef75b2003-08-02 23:28:38 +1000111 unit[i],
112 i ? "B" : " ");
113}
Damien Miller6fd00e02003-01-10 21:46:02 +1100114
115void
Darren Tucker06ef75b2003-08-02 23:28:38 +1000116refresh_progress_meter(void)
Damien Miller6fd00e02003-01-10 21:46:02 +1100117{
Darren Tucker06ef75b2003-08-02 23:28:38 +1000118 char buf[MAX_WINSIZE + 1];
119 time_t now;
120 off_t transferred;
121 double elapsed;
122 int percent;
Darren Tucker7f73a492004-02-06 16:41:37 +1100123 off_t bytes_left;
Darren Tucker06ef75b2003-08-02 23:28:38 +1000124 int cur_speed;
125 int hours, minutes, seconds;
126 int i, len;
127 int file_len;
Damien Miller6fd00e02003-01-10 21:46:02 +1100128
Darren Tucker06ef75b2003-08-02 23:28:38 +1000129 transferred = *counter - cur_pos;
130 cur_pos = *counter;
131 now = time(NULL);
132 bytes_left = end_pos - cur_pos;
Damien Miller6fd00e02003-01-10 21:46:02 +1100133
Darren Tucker06ef75b2003-08-02 23:28:38 +1000134 if (bytes_left > 0)
135 elapsed = now - last_update;
Darren Tucker1fb04252003-12-09 19:07:13 +1100136 else {
Darren Tucker06ef75b2003-08-02 23:28:38 +1000137 elapsed = now - start;
Darren Tucker1fb04252003-12-09 19:07:13 +1100138 /* Calculate true total speed when done */
139 transferred = end_pos;
140 bytes_per_second = 0;
141 }
Darren Tucker06ef75b2003-08-02 23:28:38 +1000142
143 /* calculate speed */
144 if (elapsed != 0)
145 cur_speed = (transferred / elapsed);
146 else
Darren Tucker1fb04252003-12-09 19:07:13 +1100147 cur_speed = transferred;
Darren Tucker06ef75b2003-08-02 23:28:38 +1000148
149#define AGE_FACTOR 0.9
150 if (bytes_per_second != 0) {
151 bytes_per_second = (bytes_per_second * AGE_FACTOR) +
152 (cur_speed * (1.0 - AGE_FACTOR));
153 } else
154 bytes_per_second = cur_speed;
155
156 /* filename */
157 buf[0] = '\0';
158 file_len = win_size - 35;
159 if (file_len > 0) {
Damien Miller17af1762003-09-02 22:53:01 +1000160 len = snprintf(buf, file_len + 1, "\r%s", file);
Damien Millerb5829f52003-09-02 22:53:32 +1000161 if (len < 0)
162 len = 0;
Damien Miller41bfc292005-05-26 12:07:32 +1000163 if (len >= file_len + 1)
164 len = file_len;
Darren Tucker06ef75b2003-08-02 23:28:38 +1000165 for (i = len; i < file_len; i++ )
166 buf[i] = ' ';
167 buf[file_len] = '\0';
168 }
169
170 /* percent of transfer done */
171 if (end_pos != 0)
172 percent = ((float)cur_pos / end_pos) * 100;
173 else
174 percent = 100;
175 snprintf(buf + strlen(buf), win_size - strlen(buf),
176 " %3d%% ", percent);
177
178 /* amount transferred */
179 format_size(buf + strlen(buf), win_size - strlen(buf),
180 cur_pos);
181 strlcat(buf, " ", win_size);
182
183 /* bandwidth usage */
184 format_rate(buf + strlen(buf), win_size - strlen(buf),
Darren Tucker1f8311c2004-05-13 16:39:33 +1000185 (off_t)bytes_per_second);
Darren Tucker06ef75b2003-08-02 23:28:38 +1000186 strlcat(buf, "/s ", win_size);
187
188 /* ETA */
189 if (!transferred)
190 stalled += elapsed;
191 else
192 stalled = 0;
193
194 if (stalled >= STALL_TIME)
195 strlcat(buf, "- stalled -", win_size);
196 else if (bytes_per_second == 0 && bytes_left)
197 strlcat(buf, " --:-- ETA", win_size);
198 else {
199 if (bytes_left > 0)
200 seconds = bytes_left / bytes_per_second;
201 else
202 seconds = elapsed;
203
204 hours = seconds / 3600;
205 seconds -= hours * 3600;
206 minutes = seconds / 60;
207 seconds -= minutes * 60;
208
209 if (hours != 0)
210 snprintf(buf + strlen(buf), win_size - strlen(buf),
211 "%d:%02d:%02d", hours, minutes, seconds);
212 else
213 snprintf(buf + strlen(buf), win_size - strlen(buf),
214 " %02d:%02d", minutes, seconds);
215
216 if (bytes_left > 0)
217 strlcat(buf, " ETA", win_size);
218 else
219 strlcat(buf, " ", win_size);
220 }
221
Darren Tucker6cc310b2003-10-02 16:15:15 +1000222 atomicio(vwrite, STDOUT_FILENO, buf, win_size - 1);
Darren Tucker06ef75b2003-08-02 23:28:38 +1000223 last_update = now;
224}
225
Damien Milleree0d0db2006-07-24 14:08:50 +1000226/*ARGSUSED*/
Darren Tucker06ef75b2003-08-02 23:28:38 +1000227static void
228update_progress_meter(int ignore)
229{
230 int save_errno;
231
232 save_errno = errno;
233
Damien Miller05656962005-06-16 13:18:04 +1000234 if (win_resized) {
235 setscreensize();
236 win_resized = 0;
237 }
Darren Tucker06ef75b2003-08-02 23:28:38 +1000238 if (can_output())
239 refresh_progress_meter();
240
Ben Lindstrom5ade9ab2003-08-25 01:16:21 +0000241 signal(SIGALRM, update_progress_meter);
Darren Tucker06ef75b2003-08-02 23:28:38 +1000242 alarm(UPDATE_INTERVAL);
243 errno = save_errno;
244}
245
246void
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000247start_progress_meter(char *f, off_t filesize, off_t *ctr)
Darren Tucker06ef75b2003-08-02 23:28:38 +1000248{
Darren Tucker06ef75b2003-08-02 23:28:38 +1000249 start = last_update = time(NULL);
250 file = f;
251 end_pos = filesize;
252 cur_pos = 0;
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000253 counter = ctr;
Darren Tucker06ef75b2003-08-02 23:28:38 +1000254 stalled = 0;
255 bytes_per_second = 0;
256
Damien Miller05656962005-06-16 13:18:04 +1000257 setscreensize();
Darren Tucker06ef75b2003-08-02 23:28:38 +1000258 if (can_output())
259 refresh_progress_meter();
260
Ben Lindstrom5ade9ab2003-08-25 01:16:21 +0000261 signal(SIGALRM, update_progress_meter);
Damien Miller05656962005-06-16 13:18:04 +1000262 signal(SIGWINCH, sig_winch);
Darren Tucker06ef75b2003-08-02 23:28:38 +1000263 alarm(UPDATE_INTERVAL);
Damien Miller6fd00e02003-01-10 21:46:02 +1100264}
265
266void
Damien Miller2b92d322003-06-11 22:05:06 +1000267stop_progress_meter(void)
Damien Miller6fd00e02003-01-10 21:46:02 +1100268{
269 alarm(0);
Damien Miller6fd00e02003-01-10 21:46:02 +1100270
Darren Tucker06ef75b2003-08-02 23:28:38 +1000271 if (!can_output())
Damien Miller6fd00e02003-01-10 21:46:02 +1100272 return;
273
Darren Tucker06ef75b2003-08-02 23:28:38 +1000274 /* Ensure we complete the progress */
275 if (cur_pos != end_pos)
276 refresh_progress_meter();
Damien Miller6fd00e02003-01-10 21:46:02 +1100277
Darren Tucker06ef75b2003-08-02 23:28:38 +1000278 atomicio(vwrite, STDOUT_FILENO, "\n", 1);
Damien Miller6fd00e02003-01-10 21:46:02 +1100279}
Damien Miller05656962005-06-16 13:18:04 +1000280
Damien Millerf0b15df2006-03-26 13:59:20 +1100281/*ARGSUSED*/
Damien Miller05656962005-06-16 13:18:04 +1000282static void
283sig_winch(int sig)
284{
285 win_resized = 1;
286}
287
288static void
289setscreensize(void)
290{
291 struct winsize winsize;
292
293 if (ioctl(STDOUT_FILENO, TIOCGWINSZ, &winsize) != -1 &&
294 winsize.ws_col != 0) {
295 if (winsize.ws_col > MAX_WINSIZE)
296 win_size = MAX_WINSIZE;
297 else
298 win_size = winsize.ws_col;
299 } else
300 win_size = DEFAULT_WINSIZE;
301 win_size += 1; /* trailing \0 */
302}