2 * Copyright (c) 2003 Nils Nordman. All rights reserved.
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution.
13 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
14 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
15 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
16 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
17 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
18 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
19 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
20 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
21 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
22 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 RCSID("$OpenBSD: progressmeter.c,v 1.24 2005/06/07 13:25:23 jaredy Exp $");
28 #include "progressmeter.h"
32 #define DEFAULT_WINSIZE 80
33 #define MAX_WINSIZE 512
34 #define PADDING 1 /* padding between the progress indicators */
35 #define UPDATE_INTERVAL 1 /* update the progress meter every second */
36 #define STALL_TIME 5 /* we're stalled after this many seconds */
38 /* determines whether we can output to the terminal */
39 static int can_output(void);
41 /* formats and inserts the specified size into the given buffer */
42 static void format_size(char *, int, off_t
);
43 static void format_rate(char *, int, off_t
);
46 static void sig_winch(int);
47 static void setscreensize(void);
49 /* updates the progressmeter to reflect the current state of the transfer */
50 void refresh_progress_meter(void);
52 /* signal handler for updating the progress meter */
53 static void update_progress_meter(int);
55 static time_t start
; /* start progress */
56 static time_t last_update
; /* last progress update */
57 static char *file
; /* name of the file being transferred */
58 static off_t end_pos
; /* ending position of transfer */
59 static off_t cur_pos
; /* transfer position as of last refresh */
60 static volatile off_t
*counter
; /* progress counter */
61 static long stalled
; /* how long we have been stalled */
62 static int bytes_per_second
; /* current speed in bytes per second */
63 static int win_size
; /* terminal window size */
64 static volatile sig_atomic_t win_resized
; /* for window resizing */
66 /* units for format_size */
67 static const char unit
[] = " KMGT";
72 return (getpgrp() == tcgetpgrp(STDOUT_FILENO
));
76 format_rate(char *buf
, int size
, off_t bytes
)
81 for (i
= 0; bytes
>= 100*1000 && unit
[i
] != 'T'; i
++)
82 bytes
= (bytes
+ 512) / 1024;
85 bytes
= (bytes
+ 512) / 1024;
87 snprintf(buf
, size
, "%3lld.%1lld%c%s",
88 (int64_t) (bytes
+ 5) / 100,
89 (int64_t) (bytes
+ 5) / 10 % 10,
95 format_size(char *buf
, int size
, off_t bytes
)
99 for (i
= 0; bytes
>= 10000 && unit
[i
] != 'T'; i
++)
100 bytes
= (bytes
+ 512) / 1024;
101 snprintf(buf
, size
, "%4lld%c%s",
108 refresh_progress_meter(void)
110 char buf
[MAX_WINSIZE
+ 1];
117 int hours
, minutes
, seconds
;
121 transferred
= *counter
- cur_pos
;
124 bytes_left
= end_pos
- cur_pos
;
127 elapsed
= now
- last_update
;
129 elapsed
= now
- start
;
130 /* Calculate true total speed when done */
131 transferred
= end_pos
;
132 bytes_per_second
= 0;
135 /* calculate speed */
137 cur_speed
= (transferred
/ elapsed
);
139 cur_speed
= transferred
;
141 #define AGE_FACTOR 0.9
142 if (bytes_per_second
!= 0) {
143 bytes_per_second
= (bytes_per_second
* AGE_FACTOR
) +
144 (cur_speed
* (1.0 - AGE_FACTOR
));
146 bytes_per_second
= cur_speed
;
150 file_len
= win_size
- 35;
152 len
= snprintf(buf
, file_len
+ 1, "\r%s", file
);
155 if (len
>= file_len
+ 1)
157 for (i
= len
; i
< file_len
; i
++ )
159 buf
[file_len
] = '\0';
162 /* percent of transfer done */
164 percent
= ((float)cur_pos
/ end_pos
) * 100;
167 snprintf(buf
+ strlen(buf
), win_size
- strlen(buf
),
170 /* amount transferred */
171 format_size(buf
+ strlen(buf
), win_size
- strlen(buf
),
173 strlcat(buf
, " ", win_size
);
175 /* bandwidth usage */
176 format_rate(buf
+ strlen(buf
), win_size
- strlen(buf
),
177 (off_t
)bytes_per_second
);
178 strlcat(buf
, "/s ", win_size
);
186 if (stalled
>= STALL_TIME
)
187 strlcat(buf
, "- stalled -", win_size
);
188 else if (bytes_per_second
== 0 && bytes_left
)
189 strlcat(buf
, " --:-- ETA", win_size
);
192 seconds
= bytes_left
/ bytes_per_second
;
196 hours
= seconds
/ 3600;
197 seconds
-= hours
* 3600;
198 minutes
= seconds
/ 60;
199 seconds
-= minutes
* 60;
202 snprintf(buf
+ strlen(buf
), win_size
- strlen(buf
),
203 "%d:%02d:%02d", hours
, minutes
, seconds
);
205 snprintf(buf
+ strlen(buf
), win_size
- strlen(buf
),
206 " %02d:%02d", minutes
, seconds
);
209 strlcat(buf
, " ETA", win_size
);
211 strlcat(buf
, " ", win_size
);
214 atomicio(vwrite
, STDOUT_FILENO
, buf
, win_size
- 1);
219 update_progress_meter(int ignore
)
230 refresh_progress_meter();
232 signal(SIGALRM
, update_progress_meter
);
233 alarm(UPDATE_INTERVAL
);
238 start_progress_meter(char *f
, off_t filesize
, off_t
*ctr
)
240 start
= last_update
= time(NULL
);
246 bytes_per_second
= 0;
250 refresh_progress_meter();
252 signal(SIGALRM
, update_progress_meter
);
253 signal(SIGWINCH
, sig_winch
);
254 alarm(UPDATE_INTERVAL
);
258 stop_progress_meter(void)
265 /* Ensure we complete the progress */
266 if (cur_pos
!= end_pos
)
267 refresh_progress_meter();
269 atomicio(vwrite
, STDOUT_FILENO
, "\n", 1);
281 struct winsize winsize
;
283 if (ioctl(STDOUT_FILENO
, TIOCGWINSZ
, &winsize
) != -1 &&
284 winsize
.ws_col
!= 0) {
285 if (winsize
.ws_col
> MAX_WINSIZE
)
286 win_size
= MAX_WINSIZE
;
288 win_size
= winsize
.ws_col
;
290 win_size
= DEFAULT_WINSIZE
;
291 win_size
+= 1; /* trailing \0 */