2012-11-02 19:34:25 +05:30
|
|
|
/*-
|
2014-09-06 13:16:03 +05:30
|
|
|
* Copyright (c) 2009-2014 Juan Romero Pardines
|
2012-11-02 19:34:25 +05:30
|
|
|
* Copyright (c) 2000-2004 Dag-Erling Coïdan Smørgrav
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer
|
|
|
|
* in this position and unchanged.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. The name of the author may not be used to endorse or promote products
|
|
|
|
* derived from this software without specific prior written permission
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* From FreeBSD fetch(8):
|
|
|
|
* $FreeBSD: src/usr.bin/fetch/fetch.c,v 1.84.2.1 2009/08/03 08:13:06 kensmith Exp $
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
2013-06-20 16:01:02 +05:30
|
|
|
#include <xbps.h>
|
2012-11-02 19:34:25 +05:30
|
|
|
#include "defs.h"
|
|
|
|
|
2014-09-18 13:51:24 +05:30
|
|
|
static int v_tty; /* stderr is a tty */
|
|
|
|
|
2012-11-02 19:34:25 +05:30
|
|
|
static void
|
|
|
|
get_time(struct timeval *tvp)
|
|
|
|
{
|
|
|
|
#ifdef HAVE_CLOCK_GETTIME
|
|
|
|
struct timespec ts;
|
|
|
|
(void)clock_gettime(CLOCK_MONOTONIC, &ts);
|
|
|
|
tvp->tv_sec = ts.tv_sec;
|
|
|
|
tvp->tv_usec = ts.tv_nsec / 1000;
|
|
|
|
#else
|
|
|
|
(void)gettimeofday(tvp, NULL);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Compute and display ETA
|
|
|
|
*/
|
|
|
|
static const char *
|
2014-09-06 13:16:03 +05:30
|
|
|
stat_eta(const struct xbps_fetch_cb_data *xfpd, void *cbdata)
|
2012-11-02 19:34:25 +05:30
|
|
|
{
|
|
|
|
struct xferstat *xfer = cbdata;
|
fix compilation of fetch_cb on gcc 7
Original message:
```
fetch_cb.c:80:29: error: ‘h’ directive output may be truncated writing 1 byte into a region of size between 0 and 14 [-Werror=format-truncation=]
snprintf(str, sizeof str, "%02ldh%02ldm",
^~~~~~~~~~~~~~
fetch_cb.c:80:29: note: directive argument in the range [0, 59]
fetch_cb.c:80:3: note: ‘snprintf’ output between 7 and 21 bytes into a destination of size 16
snprintf(str, sizeof str, "%02ldh%02ldm",
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
eta / 3600, (eta % 3600) / 60);
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
fetch_cb.c:83:30: error: ‘%02ld’ directive output may be truncated writing between 2 and 19 bytes into a region of size 16 [-Werror=format-truncation=]
snprintf(str, sizeof str, "%02ldm%02lds",
^~~~~
fetch_cb.c:83:29: note: directive argument in the range [-153722867280912930, 60]
snprintf(str, sizeof str, "%02ldm%02lds",
^~~~~~~~~~~~~~
fetch_cb.c:83:29: note: directive argument in the range [-59, 59]
fetch_cb.c:83:3: note: ‘snprintf’ output between 7 and 25 bytes into a destination of size 16
snprintf(str, sizeof str, "%02ldm%02lds",
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
eta / 60, eta % 60);
~~~~~~~~~~~~~~~~~~~
fetch_cb.c:80:29: error: ‘h’ directive output may be truncated writing 1 byte into a region of size between 0 and 14 [-Werror=format-truncation=]
snprintf(str, sizeof str, "%02ldh%02ldm",
^~~~~~~~~~~~~~
fetch_cb.c:80:29: note: directive argument in the range [0, 59]
fetch_cb.c:80:3: note: ‘snprintf’ output between 7 and 21 bytes into a destination of size 16
snprintf(str, sizeof str, "%02ldh%02ldm",
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
eta / 3600, (eta % 3600) / 60);
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
fetch_cb.c:83:30: error: ‘%02ld’ directive output may be truncated writing between 2 and 19 bytes into a region of size 16 [-Werror=format-truncation=]
snprintf(str, sizeof str, "%02ldm%02lds",
^~~~~
fetch_cb.c:83:29: note: directive argument in the range [-153722867280912930, 60]
snprintf(str, sizeof str, "%02ldm%02lds",
^~~~~~~~~~~~~~
fetch_cb.c:83:29: note: directive argument in the range [-59, 59]
fetch_cb.c:83:3: note: ‘snprintf’ output between 7 and 25 bytes into a destination of size 16
snprintf(str, sizeof str, "%02ldm%02lds",
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
eta / 60, eta % 60);
~~~~~~~~~~~~~~~~~~~
cc1: all warnings being treated as errors
```
2017-08-23 04:14:32 +05:30
|
|
|
static char str[25];
|
2012-11-02 19:34:25 +05:30
|
|
|
long elapsed, eta;
|
|
|
|
off_t received, expected;
|
|
|
|
|
|
|
|
if (xfpd->file_size == -1)
|
|
|
|
return "unknown";
|
|
|
|
|
|
|
|
elapsed = xfer->last.tv_sec - xfer->start.tv_sec;
|
|
|
|
received = xfpd->file_dloaded - xfpd->file_offset;
|
|
|
|
expected = xfpd->file_size - xfpd->file_dloaded;
|
2013-03-27 20:44:23 +05:30
|
|
|
eta = (long)((double)elapsed * expected / received);
|
2012-11-02 19:34:25 +05:30
|
|
|
if (eta > 3600)
|
|
|
|
snprintf(str, sizeof str, "%02ldh%02ldm",
|
|
|
|
eta / 3600, (eta % 3600) / 60);
|
|
|
|
else
|
|
|
|
snprintf(str, sizeof str, "%02ldm%02lds",
|
|
|
|
eta / 60, eta % 60);
|
|
|
|
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool
|
|
|
|
compare_double(const double a, const double b)
|
|
|
|
{
|
|
|
|
const double precision = 0.00001;
|
|
|
|
|
|
|
|
if ((a - precision) < b && (a + precision) > b)
|
|
|
|
return true;
|
|
|
|
else
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Compute and display transfer rate
|
|
|
|
*/
|
|
|
|
static const char *
|
2014-09-06 13:16:03 +05:30
|
|
|
stat_bps(const struct xbps_fetch_cb_data *xfpd, void *cbdata)
|
2012-11-02 19:34:25 +05:30
|
|
|
{
|
|
|
|
struct xferstat *xfer = cbdata;
|
|
|
|
static char str[16];
|
|
|
|
char size[8];
|
|
|
|
double delta, bps;
|
|
|
|
|
|
|
|
delta = (xfer->last.tv_sec + (xfer->last.tv_usec / 1.e6))
|
|
|
|
- (xfer->start.tv_sec + (xfer->start.tv_usec / 1.e6));
|
|
|
|
if (compare_double(delta, 0.0001)) {
|
|
|
|
snprintf(str, sizeof str, "-- stalled --");
|
|
|
|
} else {
|
2013-03-27 20:44:23 +05:30
|
|
|
bps = ((double)(xfpd->file_dloaded-xfpd->file_offset)/delta);
|
2012-11-02 19:34:25 +05:30
|
|
|
(void)xbps_humanize_number(size, (int64_t)bps);
|
|
|
|
snprintf(str, sizeof str, "%s/s", size);
|
|
|
|
}
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Update the stats display
|
|
|
|
*/
|
|
|
|
static void
|
2014-09-06 13:16:03 +05:30
|
|
|
stat_display(const struct xbps_fetch_cb_data *xfpd, void *cbdata)
|
2012-11-02 19:34:25 +05:30
|
|
|
{
|
|
|
|
struct xferstat *xfer = cbdata;
|
|
|
|
struct timeval now;
|
2012-11-07 14:39:50 +05:30
|
|
|
char totsize[8];
|
2012-11-02 19:34:25 +05:30
|
|
|
int percentage;
|
|
|
|
|
|
|
|
get_time(&now);
|
|
|
|
if (now.tv_sec <= xfer->last.tv_sec)
|
|
|
|
return;
|
|
|
|
xfer->last = now;
|
|
|
|
|
|
|
|
if (xfpd->file_size == -1) {
|
|
|
|
percentage = 0;
|
|
|
|
snprintf(totsize, 3, "0B");
|
|
|
|
} else {
|
|
|
|
percentage = (int)((double)(100.0 *
|
|
|
|
(double)xfpd->file_dloaded) / (double)xfpd->file_size);
|
|
|
|
(void)xbps_humanize_number(totsize, (int64_t)xfpd->file_size);
|
|
|
|
}
|
2014-09-18 13:51:24 +05:30
|
|
|
if (v_tty)
|
2012-12-10 15:50:59 +05:30
|
|
|
fprintf(stderr, "%s: [%s %d%%] %s ETA: %s\033[K\r",
|
2012-12-10 15:39:18 +05:30
|
|
|
xfpd->file_name, totsize, percentage,
|
|
|
|
stat_bps(xfpd, xfer), stat_eta(xfpd, xfer));
|
2016-10-05 23:48:43 +05:30
|
|
|
else {
|
2012-12-10 15:39:18 +05:30
|
|
|
printf("%s: [%s %d%%] %s ETA: %s\n",
|
|
|
|
xfpd->file_name, totsize, percentage,
|
|
|
|
stat_bps(xfpd, xfer), stat_eta(xfpd, xfer));
|
2016-10-05 23:48:43 +05:30
|
|
|
fflush(stdout);
|
|
|
|
}
|
2012-11-02 19:34:25 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2014-09-06 13:16:03 +05:30
|
|
|
fetch_file_progress_cb(const struct xbps_fetch_cb_data *xfpd, void *cbdata)
|
2012-11-02 19:34:25 +05:30
|
|
|
{
|
|
|
|
struct xferstat *xfer = cbdata;
|
|
|
|
char size[8];
|
|
|
|
|
|
|
|
if (xfpd->cb_start) {
|
|
|
|
/* start transfer stats */
|
2014-10-30 15:55:37 +05:30
|
|
|
v_tty = isatty(STDOUT_FILENO);
|
2012-11-02 19:34:25 +05:30
|
|
|
get_time(&xfer->start);
|
|
|
|
xfer->last.tv_sec = xfer->last.tv_usec = 0;
|
|
|
|
} else if (xfpd->cb_update) {
|
|
|
|
/* update transfer stats */
|
|
|
|
stat_display(xfpd, xfer);
|
|
|
|
} else if (xfpd->cb_end) {
|
|
|
|
/* end transfer stats */
|
|
|
|
(void)xbps_humanize_number(size, (int64_t)xfpd->file_dloaded);
|
2014-09-18 13:51:24 +05:30
|
|
|
if (v_tty)
|
2012-12-10 15:50:59 +05:30
|
|
|
fprintf(stderr, "%s: %s [avg rate: %s]\033[K\n",
|
2012-12-10 15:39:18 +05:30
|
|
|
xfpd->file_name, size, stat_bps(xfpd, xfer));
|
2016-10-05 23:48:43 +05:30
|
|
|
else {
|
2012-12-10 15:39:18 +05:30
|
|
|
printf("%s: %s [avg rate: %s]\n",
|
|
|
|
xfpd->file_name, size, stat_bps(xfpd, xfer));
|
2016-10-05 23:48:43 +05:30
|
|
|
fflush(stdout);
|
|
|
|
}
|
2012-11-02 19:34:25 +05:30
|
|
|
}
|
|
|
|
}
|