1 /* $OpenBSD: progressmeter.c,v 1.40 2013/09/19 00:24:52 djm Exp $ */
3 * Copyright (c) 2003 Nils Nordman. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
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.
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.
28 #include <sys/types.h>
29 #include <sys/ioctl.h>
39 #include "progressmeter.h"
43 #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 */
49 /* determines whether we can output to the terminal */
50 static int can_output(void);
52 /* formats and inserts the specified size into the given buffer */
53 static void format_size(char *, int, off_t
);
54 static void format_rate(char *, int, off_t
);
57 static void sig_winch(int);
58 static void setscreensize(void);
60 /* updates the progressmeter to reflect the current state of the transfer */
61 void refresh_progress_meter(void);
63 /* signal handler for updating the progress meter */
64 static void update_progress_meter(int);
66 static time_t start
; /* start progress */
67 static time_t last_update
; /* last progress update */
68 static char *file
; /* name of the file being transferred */
69 static off_t start_pos
; /* initial position of transfer */
70 static off_t end_pos
; /* ending position of transfer */
71 static off_t cur_pos
; /* transfer position as of last refresh */
72 static off_t last_pos
;
73 static off_t max_delta_pos
= 0;
74 static volatile off_t
*counter
; /* progress counter */
75 static long stalled
; /* how long we have been stalled */
76 static int bytes_per_second
; /* current speed in bytes per second */
77 static int win_size
; /* terminal window size */
78 static volatile sig_atomic_t win_resized
; /* for window resizing */
80 /* units for format_size */
81 static const char unit
[] = " KMGT";
86 return (getpgrp() == tcgetpgrp(STDOUT_FILENO
));
90 format_rate(char *buf
, int size
, off_t bytes
)
95 for (i
= 0; bytes
>= 100*1000 && unit
[i
] != 'T'; i
++)
96 bytes
= (bytes
+ 512) / 1024;
99 bytes
= (bytes
+ 512) / 1024;
101 snprintf(buf
, size
, "%3lld.%1lld%c%s",
102 (long long) (bytes
+ 5) / 100,
103 (long long) (bytes
+ 5) / 10 % 10,
109 format_size(char *buf
, int size
, off_t bytes
)
113 for (i
= 0; bytes
>= 10000 && unit
[i
] != 'T'; i
++)
114 bytes
= (bytes
+ 512) / 1024;
115 snprintf(buf
, size
, "%4lld%c%s",
122 refresh_progress_meter(void)
124 char buf
[MAX_WINSIZE
+ 1];
131 int hours
, minutes
, seconds
;
136 transferred
= *counter
- (cur_pos
? cur_pos
: start_pos
);
139 bytes_left
= end_pos
- cur_pos
;
141 delta_pos
= cur_pos
- last_pos
;
142 if (delta_pos
> max_delta_pos
)
143 max_delta_pos
= delta_pos
;
146 elapsed
= now
- last_update
;
148 elapsed
= now
- start
;
149 /* Calculate true total speed when done */
150 transferred
= end_pos
- start_pos
;
151 bytes_per_second
= 0;
154 /* calculate speed */
156 cur_speed
= (transferred
/ elapsed
);
158 cur_speed
= transferred
;
160 #define AGE_FACTOR 0.9
161 if (bytes_per_second
!= 0) {
162 bytes_per_second
= (bytes_per_second
* AGE_FACTOR
) +
163 (cur_speed
* (1.0 - AGE_FACTOR
));
165 bytes_per_second
= cur_speed
;
169 file_len
= win_size
- 45;
171 len
= snprintf(buf
, file_len
+ 1, "\r%s", file
);
174 if (len
>= file_len
+ 1)
176 for (i
= len
; i
< file_len
; i
++)
178 buf
[file_len
] = '\0';
181 /* percent of transfer done */
183 percent
= ((float)cur_pos
/ end_pos
) * 100;
187 snprintf(buf
+ strlen(buf
), win_size
- strlen(buf
-8),
190 /* amount transferred */
191 format_size(buf
+ strlen(buf
), win_size
- strlen(buf
),
193 strlcat(buf
, " ", win_size
);
195 /* bandwidth usage */
196 format_rate(buf
+ strlen(buf
), win_size
- strlen(buf
),
197 (off_t
)bytes_per_second
);
198 strlcat(buf
, "/s ", win_size
);
200 /* instantaneous rate */
202 format_rate(buf
+ strlen(buf
), win_size
- strlen(buf
),
205 format_rate(buf
+ strlen(buf
), win_size
- strlen(buf
),
207 strlcat(buf
, "/s ", win_size
);
215 if (stalled
>= STALL_TIME
)
216 strlcat(buf
, "- stalled -", win_size
);
217 else if (bytes_per_second
== 0 && bytes_left
)
218 strlcat(buf
, " --:-- ETA", win_size
);
221 seconds
= bytes_left
/ bytes_per_second
;
225 hours
= seconds
/ 3600;
226 seconds
-= hours
* 3600;
227 minutes
= seconds
/ 60;
228 seconds
-= minutes
* 60;
231 snprintf(buf
+ strlen(buf
), win_size
- strlen(buf
),
232 "%d:%02d:%02d", hours
, minutes
, seconds
);
234 snprintf(buf
+ strlen(buf
), win_size
- strlen(buf
),
235 " %02d:%02d", minutes
, seconds
);
238 strlcat(buf
, " ETA", win_size
);
240 strlcat(buf
, " ", win_size
);
243 atomicio(vwrite
, STDOUT_FILENO
, buf
, win_size
- 1);
250 update_progress_meter(int ignore
)
261 refresh_progress_meter();
263 signal(SIGALRM
, update_progress_meter
);
264 alarm(UPDATE_INTERVAL
);
269 start_progress_meter(char *f
, off_t filesize
, off_t
*ctr
)
271 start
= last_update
= monotime();
278 bytes_per_second
= 0;
282 refresh_progress_meter();
284 signal(SIGALRM
, update_progress_meter
);
285 signal(SIGWINCH
, sig_winch
);
286 alarm(UPDATE_INTERVAL
);
290 stop_progress_meter(void)
297 /* Ensure we complete the progress */
298 if (cur_pos
!= end_pos
)
299 refresh_progress_meter();
301 atomicio(vwrite
, STDOUT_FILENO
, "\n", 1);
314 struct winsize winsize
;
316 if (ioctl(STDOUT_FILENO
, TIOCGWINSZ
, &winsize
) != -1 &&
317 winsize
.ws_col
!= 0) {
318 if (winsize
.ws_col
> MAX_WINSIZE
)
319 win_size
= MAX_WINSIZE
;
321 win_size
= winsize
.ws_col
;
323 win_size
= DEFAULT_WINSIZE
;
324 win_size
+= 1; /* trailing \0 */