xbps-rindex/clean: simplify.
This commit is contained in:
parent
2216c84eca
commit
3ef9350787
@ -38,12 +38,9 @@
|
|||||||
#include <xbps.h>
|
#include <xbps.h>
|
||||||
#include "defs.h"
|
#include "defs.h"
|
||||||
|
|
||||||
struct cbdata {
|
static xbps_dictionary_t dest;
|
||||||
xbps_array_t result;
|
static pthread_mutex_t mtx = PTHREAD_MUTEX_INITIALIZER;
|
||||||
xbps_dictionary_t idx;
|
static bool flush;
|
||||||
pthread_mutex_t mtx;
|
|
||||||
const char *repourl;
|
|
||||||
};
|
|
||||||
|
|
||||||
static int
|
static int
|
||||||
idx_cleaner_cb(struct xbps_handle *xhp,
|
idx_cleaner_cb(struct xbps_handle *xhp,
|
||||||
@ -52,23 +49,28 @@ idx_cleaner_cb(struct xbps_handle *xhp,
|
|||||||
void *arg,
|
void *arg,
|
||||||
bool *done _unused)
|
bool *done _unused)
|
||||||
{
|
{
|
||||||
struct cbdata *cbd = arg;
|
const char *repourl = arg;
|
||||||
const char *arch, *pkgver, *sha256;
|
const char *arch, *pkgver, *sha256;
|
||||||
char *filen;
|
char *filen, *pkgname;
|
||||||
|
|
||||||
xbps_dictionary_get_cstring_nocopy(obj, "architecture", &arch);
|
xbps_dictionary_get_cstring_nocopy(obj, "architecture", &arch);
|
||||||
xbps_dictionary_get_cstring_nocopy(obj, "pkgver", &pkgver);
|
xbps_dictionary_get_cstring_nocopy(obj, "pkgver", &pkgver);
|
||||||
xbps_dictionary_get_cstring_nocopy(obj, "repository", &cbd->repourl);
|
|
||||||
|
|
||||||
xbps_dbg_printf(xhp, "%s: checking %s [%s] ...", pkgver, arch);
|
xbps_dbg_printf(xhp, "%s: checking %s [%s] ...\n", repourl, pkgver, arch);
|
||||||
|
|
||||||
filen = xbps_xasprintf("%s/%s.%s.xbps", cbd->repourl, pkgver, arch);
|
filen = xbps_xasprintf("%s/%s.%s.xbps", repourl, pkgver, arch);
|
||||||
if (access(filen, R_OK) == -1) {
|
if (access(filen, R_OK) == -1) {
|
||||||
/*
|
/*
|
||||||
* File cannot be read, might be permissions,
|
* File cannot be read, might be permissions,
|
||||||
* broken or simply unexistent; either way, remove it.
|
* broken or simply unexistent; either way, remove it.
|
||||||
*/
|
*/
|
||||||
xbps_array_add_cstring_nocopy(cbd->result, pkgver);
|
pthread_mutex_lock(&mtx);
|
||||||
|
pkgname = xbps_pkg_name(pkgver);
|
||||||
|
xbps_dictionary_remove(dest, pkgname);
|
||||||
|
free(pkgname);
|
||||||
|
flush = true;
|
||||||
|
printf("index: removed pkg %s\n", pkgver);
|
||||||
|
pthread_mutex_unlock(&mtx);
|
||||||
} else {
|
} else {
|
||||||
/*
|
/*
|
||||||
* File can be read; check its hash.
|
* File can be read; check its hash.
|
||||||
@ -76,9 +78,13 @@ idx_cleaner_cb(struct xbps_handle *xhp,
|
|||||||
xbps_dictionary_get_cstring_nocopy(obj,
|
xbps_dictionary_get_cstring_nocopy(obj,
|
||||||
"filename-sha256", &sha256);
|
"filename-sha256", &sha256);
|
||||||
if (xbps_file_hash_check(filen, sha256) != 0) {
|
if (xbps_file_hash_check(filen, sha256) != 0) {
|
||||||
pthread_mutex_lock(&cbd->mtx);
|
pthread_mutex_lock(&mtx);
|
||||||
xbps_array_add_cstring_nocopy(cbd->result, pkgver);
|
pkgname = xbps_pkg_name(pkgver);
|
||||||
pthread_mutex_unlock(&cbd->mtx);
|
xbps_dictionary_remove(dest, pkgname);
|
||||||
|
free(pkgname);
|
||||||
|
printf("index: removed pkg %s\n", pkgver);
|
||||||
|
flush = true;
|
||||||
|
pthread_mutex_unlock(&mtx);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
free(filen);
|
free(filen);
|
||||||
@ -95,10 +101,8 @@ index_clean(struct xbps_handle *xhp, const char *repodir)
|
|||||||
xbps_array_t allkeys;
|
xbps_array_t allkeys;
|
||||||
xbps_dictionary_t idx = NULL, idxmeta = NULL;
|
xbps_dictionary_t idx = NULL, idxmeta = NULL;
|
||||||
struct xbps_repo *repo;
|
struct xbps_repo *repo;
|
||||||
struct cbdata cbd;
|
|
||||||
char *rlockfname = NULL;
|
char *rlockfname = NULL;
|
||||||
int rv = 0, rlockfd = -1;
|
int rv = 0, rlockfd = -1;
|
||||||
bool flush = false;
|
|
||||||
|
|
||||||
if (!xbps_repo_lock(xhp, repodir, &rlockfd, &rlockfname)) {
|
if (!xbps_repo_lock(xhp, repodir, &rlockfd, &rlockfname)) {
|
||||||
rv = errno;
|
rv = errno;
|
||||||
@ -128,30 +132,13 @@ index_clean(struct xbps_handle *xhp, const char *repodir)
|
|||||||
/*
|
/*
|
||||||
* First pass: find out obsolete entries on index and index-files.
|
* First pass: find out obsolete entries on index and index-files.
|
||||||
*/
|
*/
|
||||||
cbd.repourl = repodir;
|
dest = xbps_dictionary_copy(idx);
|
||||||
cbd.result = xbps_array_create();
|
|
||||||
pthread_mutex_init(&cbd.mtx, NULL);
|
|
||||||
|
|
||||||
allkeys = xbps_dictionary_all_keys(idx);
|
allkeys = xbps_dictionary_all_keys(idx);
|
||||||
(void)xbps_array_foreach_cb_multi(xhp, allkeys, idx, idx_cleaner_cb, &cbd);
|
(void)xbps_array_foreach_cb_multi(xhp, allkeys, idx, idx_cleaner_cb, __UNCONST(repodir));
|
||||||
for (unsigned int x = 0; x < xbps_array_count(cbd.result); x++) {
|
|
||||||
char *keyname = NULL, *pkgname = NULL;
|
|
||||||
|
|
||||||
xbps_array_get_cstring(cbd.result, x, &keyname);
|
|
||||||
printf("index: removed entry %s\n", keyname);
|
|
||||||
pkgname = xbps_pkg_name(keyname);
|
|
||||||
assert(pkgname);
|
|
||||||
xbps_dictionary_remove(idx, pkgname);
|
|
||||||
free(pkgname);
|
|
||||||
free(keyname);
|
|
||||||
flush = true;
|
|
||||||
}
|
|
||||||
pthread_mutex_destroy(&cbd.mtx);
|
|
||||||
xbps_object_release(cbd.result);
|
|
||||||
xbps_object_release(allkeys);
|
xbps_object_release(allkeys);
|
||||||
|
|
||||||
if (flush) {
|
if (flush) {
|
||||||
if (!repodata_flush(xhp, repodir, idx, idxmeta)) {
|
if (!repodata_flush(xhp, repodir, dest, idxmeta)) {
|
||||||
rv = errno;
|
rv = errno;
|
||||||
fprintf(stderr, "failed to write repodata: %s\n",
|
fprintf(stderr, "failed to write repodata: %s\n",
|
||||||
strerror(errno));
|
strerror(errno));
|
||||||
@ -159,7 +146,7 @@ index_clean(struct xbps_handle *xhp, const char *repodir)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
printf("index: %u packages registered.\n",
|
printf("index: %u packages registered.\n",
|
||||||
xbps_dictionary_count(idx));
|
xbps_dictionary_count(dest));
|
||||||
|
|
||||||
out:
|
out:
|
||||||
xbps_repo_close(repo);
|
xbps_repo_close(repo);
|
||||||
|
Loading…
Reference in New Issue
Block a user