bda4452016
Added support to download all dependencies even if the euid does not have write perms to rootdir. In this mode we only care if cachedir is writable, rootdir access is not necessary. This is really useful to download all binary packages required by any number of packages as any regular user to later perform off-line installations, i.e: ``` $ xbps-install -c $PWD/cachedir -yD xbps ... $ tree cachedir cachedir/ ├── acl-2.2.53_1.x86_64-musl.xbps ├── acl-2.2.53_1.x86_64-musl.xbps.sig ├── attr-2.4.48_1.x86_64-musl.xbps ├── attr-2.4.48_1.x86_64-musl.xbps.sig ├── bzip2-1.0.8_1.x86_64-musl.xbps ├── bzip2-1.0.8_1.x86_64-musl.xbps.sig ├── ca-certificates-20190110_1.noarch.xbps ├── ca-certificates-20190110_1.noarch.xbps.sig ├── libarchive-3.4.1_1.x86_64-musl.xbps ├── libarchive-3.4.1_1.x86_64-musl.xbps.sig ├── libcrypto45-3.0.2_2.x86_64-musl.xbps ├── libcrypto45-3.0.2_2.x86_64-musl.xbps.sig ├── liblz4-1.9.2_1.x86_64-musl.xbps ├── liblz4-1.9.2_1.x86_64-musl.xbps.sig ├── liblzma-5.2.4_2.x86_64-musl.xbps ├── liblzma-5.2.4_2.x86_64-musl.xbps.sig ├── libressl-3.0.2_2.x86_64-musl.xbps ├── libressl-3.0.2_2.x86_64-musl.xbps.sig ├── libssl47-3.0.2_2.x86_64-musl.xbps ├── libssl47-3.0.2_2.x86_64-musl.xbps.sig ├── libtls19-3.0.2_2.x86_64-musl.xbps ├── libtls19-3.0.2_2.x86_64-musl.xbps.sig ├── libxbps-0.57.1_8.x86_64-musl.xbps ├── libxbps-0.57.1_8.x86_64-musl.xbps.sig ├── libzstd-1.4.4_1.x86_64-musl.xbps ├── libzstd-1.4.4_1.x86_64-musl.xbps.sig ├── musl-1.1.24_1.x86_64-musl.xbps ├── musl-1.1.24_1.x86_64-musl.xbps.sig ├── run-parts-4.9.1_1.x86_64-musl.xbps ├── run-parts-4.9.1_1.x86_64-musl.xbps.sig ├── xbps-0.57.1_8.x86_64-musl.xbps ├── xbps-0.57.1_8.x86_64-musl.xbps.sig ├── xbps-triggers-0.113_3.noarch.xbps ├── xbps-triggers-0.113_3.noarch.xbps.sig ├── zlib-1.2.11_3.x86_64-musl.xbps └── zlib-1.2.11_3.x86_64-musl.xbps.sig 0 directories, 36 files $ ``` Inpired by #213 Closes #213
214 lines
5.2 KiB
C
214 lines
5.2 KiB
C
/*-
|
|
* Copyright (c) 2008-2015 Juan Romero Pardines.
|
|
* 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.
|
|
* 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.
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <stdbool.h>
|
|
#include <stdlib.h>
|
|
#include <errno.h>
|
|
#include <fnmatch.h>
|
|
#include <string.h>
|
|
#include <strings.h>
|
|
#include <sys/ioctl.h>
|
|
#include <assert.h>
|
|
|
|
#include <xbps.h>
|
|
#include "defs.h"
|
|
|
|
int
|
|
get_maxcols(void)
|
|
{
|
|
struct winsize ws;
|
|
|
|
if (!isatty(STDOUT_FILENO)) {
|
|
/* not a TTY, don't use any limit */
|
|
return 0;
|
|
}
|
|
if (ioctl(STDOUT_FILENO, TIOCGWINSZ, &ws) == -1) {
|
|
/* 80x24 terminal */
|
|
return 80;
|
|
}
|
|
/* TTY columns */
|
|
return ws.ws_col;
|
|
}
|
|
|
|
void
|
|
print_package_line(const char *str, int maxcols, bool reset)
|
|
{
|
|
static int cols;
|
|
static bool first;
|
|
|
|
if (reset) {
|
|
cols = 0;
|
|
first = false;
|
|
return;
|
|
}
|
|
cols += strlen(str) + 4;
|
|
if (cols <= maxcols) {
|
|
if (first == false) {
|
|
printf(" ");
|
|
first = true;
|
|
}
|
|
} else {
|
|
printf("\n ");
|
|
cols = strlen(str) + 4;
|
|
}
|
|
printf("%s ", str);
|
|
}
|
|
|
|
static unsigned int
|
|
find_longest_pkgname(struct transaction *trans)
|
|
{
|
|
xbps_object_t obj;
|
|
const char *pkgver;
|
|
char *pkgname;
|
|
unsigned int len = 0, max = 0;
|
|
|
|
while ((obj = xbps_object_iterator_next(trans->iter)) != NULL) {
|
|
xbps_dictionary_get_cstring_nocopy(obj, "pkgver", &pkgver);
|
|
pkgname = xbps_pkg_name(pkgver);
|
|
assert(pkgname);
|
|
len = strlen(pkgname);
|
|
free(pkgname);
|
|
if (max == 0 || len > max)
|
|
max = len;
|
|
}
|
|
xbps_object_iterator_reset(trans->iter);
|
|
return max+1;
|
|
}
|
|
|
|
bool
|
|
print_trans_colmode(struct transaction *trans, int cols)
|
|
{
|
|
xbps_object_t obj;
|
|
uint64_t dlsize = 0;
|
|
char size[8];
|
|
unsigned int x, blen, pnamelen;
|
|
int hdrlen;
|
|
|
|
pnamelen = find_longest_pkgname(trans);
|
|
/* header length */
|
|
hdrlen = pnamelen + 61;
|
|
if (cols <= hdrlen)
|
|
return false;
|
|
|
|
printf("\nName ");
|
|
if (pnamelen < 5)
|
|
pnamelen = 5;
|
|
|
|
for (x = 5; x < pnamelen; x++)
|
|
printf(" ");
|
|
|
|
printf("Action Version New version Download size\n");
|
|
|
|
while ((obj = xbps_object_iterator_next(trans->iter)) != NULL) {
|
|
xbps_dictionary_t ipkgd;
|
|
const char *pkgver, *ipkgver, *ver, *iver, *tract;
|
|
char *pkgname;
|
|
bool dload = false;
|
|
|
|
ver = iver = NULL;
|
|
|
|
xbps_dictionary_get_cstring_nocopy(obj, "pkgver", &pkgver);
|
|
xbps_dictionary_get_cstring_nocopy(obj, "transaction", &tract);
|
|
xbps_dictionary_get_uint64(obj, "filename-size", &dlsize);
|
|
xbps_dictionary_get_bool(obj, "download", &dload);
|
|
|
|
pkgname = xbps_pkg_name(pkgver);
|
|
assert(pkgname);
|
|
|
|
if (trans->xhp->flags & XBPS_FLAG_DOWNLOAD_ONLY) {
|
|
tract = "download";
|
|
}
|
|
|
|
if (strcmp(tract, "install") == 0) {
|
|
trans->inst_pkgcnt++;
|
|
} else if (strcmp(tract, "update") == 0) {
|
|
trans->up_pkgcnt++;
|
|
} else if (strcmp(tract, "remove") == 0) {
|
|
trans->rm_pkgcnt++;
|
|
} else if (strcmp(tract, "configure") == 0) {
|
|
trans->cf_pkgcnt++;
|
|
}
|
|
ipkgd = xbps_pkgdb_get_pkg(trans->xhp, pkgname);
|
|
|
|
if (trans->xhp->flags & XBPS_FLAG_DOWNLOAD_ONLY) {
|
|
ipkgd = NULL;
|
|
}
|
|
if (dload) {
|
|
trans->dl_pkgcnt++;
|
|
}
|
|
if (ipkgd) {
|
|
xbps_dictionary_get_cstring_nocopy(ipkgd, "pkgver", &ipkgver);
|
|
iver = xbps_pkg_version(ipkgver);
|
|
}
|
|
ver = xbps_pkg_version(pkgver);
|
|
if (iver) {
|
|
int rv = xbps_cmpver(iver, ver);
|
|
if (rv == 1 && strcmp(tract, "hold"))
|
|
tract = "downgrade";
|
|
else if (rv == 0 && strcmp(tract, "remove"))
|
|
tract = "reinstall";
|
|
}
|
|
/* print pkgname and some blanks */
|
|
blen = pnamelen - strlen(pkgname);
|
|
printf("%s", pkgname);
|
|
for (x = 0; x < blen; x++)
|
|
printf(" ");
|
|
|
|
/* print action */
|
|
printf("%s ", tract);
|
|
for (x = strlen(tract); x < 9; x++)
|
|
printf(" ");
|
|
|
|
/* print installed version */
|
|
if (iver == NULL)
|
|
iver = "-";
|
|
|
|
/* print new version */
|
|
printf("%s ", iver);
|
|
for (x = strlen(iver); x < 17; x++)
|
|
printf(" ");
|
|
|
|
if (strcmp(tract, "remove") == 0) {
|
|
ver = "-";
|
|
}
|
|
if (dload)
|
|
(void)xbps_humanize_number(size, (int64_t)dlsize);
|
|
else {
|
|
size[0] = '-';
|
|
size[1] = '\0';
|
|
}
|
|
printf("%s ", ver);
|
|
for (x = strlen(ver); x < 22; x++)
|
|
printf(" ");
|
|
/* print download size */
|
|
printf("%s ", size);
|
|
printf("\n");
|
|
free(pkgname);
|
|
}
|
|
xbps_object_iterator_reset(trans->iter);
|
|
return true;
|
|
}
|