[BACK]Return to progressmeter.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Annotation of src/usr.bin/ssh/progressmeter.c, Revision 1.30

1.30    ! stevesk     1: /* $OpenBSD: progressmeter.c,v 1.29 2006/03/25 13:17:02 djm Exp $ */
1.1       fgsch       2: /*
1.9       markus      3:  * Copyright (c) 2003 Nils Nordman.  All rights reserved.
1.1       fgsch       4:  *
                      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:
                     26: #include "includes.h"
1.25      stevesk    27:
                     28: #include <sys/ioctl.h>
1.26      stevesk    29:
1.30    ! stevesk    30: #include <errno.h>
1.26      stevesk    31: #include <signal.h>
1.1       fgsch      32:
1.9       markus     33: #include "progressmeter.h"
                     34: #include "atomicio.h"
                     35:
                     36: #define DEFAULT_WINSIZE 80
                     37: #define MAX_WINSIZE 512
                     38: #define PADDING 1              /* padding between the progress indicators */
                     39: #define UPDATE_INTERVAL 1      /* update the progress meter every second */
                     40: #define STALL_TIME 5           /* we're stalled after this many seconds */
                     41:
                     42: /* determines whether we can output to the terminal */
                     43: static int can_output(void);
1.1       fgsch      44:
1.9       markus     45: /* formats and inserts the specified size into the given buffer */
                     46: static void format_size(char *, int, off_t);
1.13      markus     47: static void format_rate(char *, int, off_t);
1.1       fgsch      48:
1.24      jaredy     49: /* window resizing */
                     50: static void sig_winch(int);
                     51: static void setscreensize(void);
                     52:
1.9       markus     53: /* updates the progressmeter to reflect the current state of the transfer */
                     54: void refresh_progress_meter(void);
1.1       fgsch      55:
1.9       markus     56: /* signal handler for updating the progress meter */
1.1       fgsch      57: static void update_progress_meter(int);
                     58:
1.22      deraadt    59: static time_t start;           /* start progress */
                     60: static time_t last_update;     /* last progress update */
                     61: static char *file;             /* name of the file being transferred */
                     62: static off_t end_pos;          /* ending position of transfer */
                     63: static off_t cur_pos;          /* transfer position as of last refresh */
1.9       markus     64: static volatile off_t *counter;        /* progress counter */
1.22      deraadt    65: static long stalled;           /* how long we have been stalled */
                     66: static int bytes_per_second;   /* current speed in bytes per second */
                     67: static int win_size;           /* terminal window size */
1.24      jaredy     68: static volatile sig_atomic_t win_resized; /* for window resizing */
1.9       markus     69:
1.13      markus     70: /* units for format_size */
                     71: static const char unit[] = " KMGT";
                     72:
1.9       markus     73: static int
                     74: can_output(void)
                     75: {
                     76:        return (getpgrp() == tcgetpgrp(STDOUT_FILENO));
                     77: }
                     78:
                     79: static void
1.13      markus     80: format_rate(char *buf, int size, off_t bytes)
                     81: {
                     82:        int i;
                     83:
                     84:        bytes *= 100;
                     85:        for (i = 0; bytes >= 100*1000 && unit[i] != 'T'; i++)
                     86:                bytes = (bytes + 512) / 1024;
                     87:        if (i == 0) {
                     88:                i++;
                     89:                bytes = (bytes + 512) / 1024;
                     90:        }
                     91:        snprintf(buf, size, "%3lld.%1lld%c%s",
1.17      markus     92:            (long long) (bytes + 5) / 100,
1.13      markus     93:            (long long) (bytes + 5) / 10 % 10,
                     94:            unit[i],
                     95:            i ? "B" : " ");
                     96: }
                     97:
                     98: static void
1.9       markus     99: format_size(char *buf, int size, off_t bytes)
                    100: {
                    101:        int i;
1.1       fgsch     102:
1.11      markus    103:        for (i = 0; bytes >= 10000 && unit[i] != 'T'; i++)
1.13      markus    104:                bytes = (bytes + 512) / 1024;
1.11      markus    105:        snprintf(buf, size, "%4lld%c%s",
1.9       markus    106:            (long long) bytes,
                    107:            unit[i],
                    108:            i ? "B" : " ");
                    109: }
1.1       fgsch     110:
1.9       markus    111: void
                    112: refresh_progress_meter(void)
                    113: {
                    114:        char buf[MAX_WINSIZE + 1];
                    115:        time_t now;
                    116:        off_t transferred;
                    117:        double elapsed;
                    118:        int percent;
1.19      markus    119:        off_t bytes_left;
1.9       markus    120:        int cur_speed;
                    121:        int hours, minutes, seconds;
                    122:        int i, len;
                    123:        int file_len;
                    124:
                    125:        transferred = *counter - cur_pos;
                    126:        cur_pos = *counter;
                    127:        now = time(NULL);
                    128:        bytes_left = end_pos - cur_pos;
1.1       fgsch     129:
1.9       markus    130:        if (bytes_left > 0)
                    131:                elapsed = now - last_update;
1.18      markus    132:        else {
1.9       markus    133:                elapsed = now - start;
1.18      markus    134:                /* Calculate true total speed when done */
                    135:                transferred = end_pos;
                    136:                bytes_per_second = 0;
                    137:        }
1.1       fgsch     138:
1.9       markus    139:        /* calculate speed */
                    140:        if (elapsed != 0)
                    141:                cur_speed = (transferred / elapsed);
                    142:        else
1.18      markus    143:                cur_speed = transferred;
1.1       fgsch     144:
1.9       markus    145: #define AGE_FACTOR 0.9
                    146:        if (bytes_per_second != 0) {
                    147:                bytes_per_second = (bytes_per_second * AGE_FACTOR) +
                    148:                    (cur_speed * (1.0 - AGE_FACTOR));
                    149:        } else
                    150:                bytes_per_second = cur_speed;
1.1       fgsch     151:
1.9       markus    152:        /* filename */
                    153:        buf[0] = '\0';
1.13      markus    154:        file_len = win_size - 35;
1.9       markus    155:        if (file_len > 0) {
1.14      markus    156:                len = snprintf(buf, file_len + 1, "\r%s", file);
1.15      markus    157:                if (len < 0)
                    158:                        len = 0;
1.23      moritz    159:                if (len >= file_len + 1)
                    160:                        len = file_len;
1.9       markus    161:                for (i = len;  i < file_len; i++ )
                    162:                        buf[i] = ' ';
                    163:                buf[file_len] = '\0';
                    164:        }
1.1       fgsch     165:
1.9       markus    166:        /* percent of transfer done */
                    167:        if (end_pos != 0)
                    168:                percent = ((float)cur_pos / end_pos) * 100;
                    169:        else
                    170:                percent = 100;
                    171:        snprintf(buf + strlen(buf), win_size - strlen(buf),
                    172:            " %3d%% ", percent);
                    173:
                    174:        /* amount transferred */
                    175:        format_size(buf + strlen(buf), win_size - strlen(buf),
                    176:            cur_pos);
                    177:        strlcat(buf, " ", win_size);
                    178:
                    179:        /* bandwidth usage */
1.13      markus    180:        format_rate(buf + strlen(buf), win_size - strlen(buf),
1.20      deraadt   181:            (off_t)bytes_per_second);
1.9       markus    182:        strlcat(buf, "/s ", win_size);
                    183:
                    184:        /* ETA */
                    185:        if (!transferred)
                    186:                stalled += elapsed;
                    187:        else
                    188:                stalled = 0;
1.1       fgsch     189:
1.9       markus    190:        if (stalled >= STALL_TIME)
1.10      markus    191:                strlcat(buf, "- stalled -", win_size);
1.9       markus    192:        else if (bytes_per_second == 0 && bytes_left)
                    193:                strlcat(buf, "  --:-- ETA", win_size);
                    194:        else {
                    195:                if (bytes_left > 0)
                    196:                        seconds = bytes_left / bytes_per_second;
                    197:                else
                    198:                        seconds = elapsed;
1.1       fgsch     199:
1.9       markus    200:                hours = seconds / 3600;
                    201:                seconds -= hours * 3600;
                    202:                minutes = seconds / 60;
                    203:                seconds -= minutes * 60;
                    204:
                    205:                if (hours != 0)
                    206:                        snprintf(buf + strlen(buf), win_size - strlen(buf),
                    207:                            "%d:%02d:%02d", hours, minutes, seconds);
                    208:                else
                    209:                        snprintf(buf + strlen(buf), win_size - strlen(buf),
                    210:                            "  %02d:%02d", minutes, seconds);
1.1       fgsch     211:
1.9       markus    212:                if (bytes_left > 0)
                    213:                        strlcat(buf, " ETA", win_size);
                    214:                else
                    215:                        strlcat(buf, "    ", win_size);
                    216:        }
1.1       fgsch     217:
1.16      markus    218:        atomicio(vwrite, STDOUT_FILENO, buf, win_size - 1);
1.9       markus    219:        last_update = now;
1.1       fgsch     220: }
                    221:
                    222: static void
                    223: update_progress_meter(int ignore)
                    224: {
1.9       markus    225:        int save_errno;
                    226:
                    227:        save_errno = errno;
                    228:
1.24      jaredy    229:        if (win_resized) {
                    230:                setscreensize();
                    231:                win_resized = 0;
                    232:        }
1.9       markus    233:        if (can_output())
                    234:                refresh_progress_meter();
1.1       fgsch     235:
                    236:        signal(SIGALRM, update_progress_meter);
1.9       markus    237:        alarm(UPDATE_INTERVAL);
1.1       fgsch     238:        errno = save_errno;
                    239: }
                    240:
1.9       markus    241: void
1.21      avsm      242: start_progress_meter(char *f, off_t filesize, off_t *ctr)
1.1       fgsch     243: {
1.9       markus    244:        start = last_update = time(NULL);
                    245:        file = f;
                    246:        end_pos = filesize;
                    247:        cur_pos = 0;
1.21      avsm      248:        counter = ctr;
1.9       markus    249:        stalled = 0;
                    250:        bytes_per_second = 0;
                    251:
1.24      jaredy    252:        setscreensize();
1.9       markus    253:        if (can_output())
                    254:                refresh_progress_meter();
1.1       fgsch     255:
1.9       markus    256:        signal(SIGALRM, update_progress_meter);
1.24      jaredy    257:        signal(SIGWINCH, sig_winch);
1.9       markus    258:        alarm(UPDATE_INTERVAL);
1.1       fgsch     259: }
                    260:
1.9       markus    261: void
                    262: stop_progress_meter(void)
1.1       fgsch     263: {
1.9       markus    264:        alarm(0);
1.1       fgsch     265:
1.9       markus    266:        if (!can_output())
1.1       fgsch     267:                return;
                    268:
1.9       markus    269:        /* Ensure we complete the progress */
                    270:        if (cur_pos != end_pos)
                    271:                refresh_progress_meter();
1.12      markus    272:
1.9       markus    273:        atomicio(vwrite, STDOUT_FILENO, "\n", 1);
1.24      jaredy    274: }
                    275:
1.28      deraadt   276: /*ARGSUSED*/
1.24      jaredy    277: static void
                    278: sig_winch(int sig)
                    279: {
                    280:        win_resized = 1;
                    281: }
                    282:
                    283: static void
                    284: setscreensize(void)
                    285: {
                    286:        struct winsize winsize;
                    287:
                    288:        if (ioctl(STDOUT_FILENO, TIOCGWINSZ, &winsize) != -1 &&
                    289:            winsize.ws_col != 0) {
                    290:                if (winsize.ws_col > MAX_WINSIZE)
                    291:                        win_size = MAX_WINSIZE;
                    292:                else
                    293:                        win_size = winsize.ws_col;
                    294:        } else
                    295:                win_size = DEFAULT_WINSIZE;
                    296:        win_size += 1;                                  /* trailing \0 */
1.1       fgsch     297: }