87a216fd11
libxbps: - Moved repolist code to lib/repository_pool.c. - Renamed xbps_{prepare,release}_repolist_data() to xbps_repository_pool_{init,release} respectively. - Moved regpkgdb dict code to lib/regpkgs_dictionary.c. - Renamed xbps_{prepare,release}_regpkgdb_dict() to xbps_regpkgs_dictionary_{init,release} respectively. - Use a global reference count for repository_pool and regpkgs_dictionary, this gives a substantial performance gain while looking for dependencies in repository pool, among other things. - Make xbps_find_pkg_* functions return errno and use it to detect for spurious errors in code using them. - Add code to detect when a dependency is already unpacked. xbps-bin: - Do not set pkg state to unpacked in the transaction, it's set already while a package is unpacked. - While installing or updating packages, it now knows when a dependency is already unpacked and shows it as "unconfigured". Bump XBPS_RELVER to 20091126. --HG-- extra : convert_revision : xtraeme%40gmail.com-20091126022250-uu8x0fa86l4scb5x
174 lines
4.4 KiB
C
174 lines
4.4 KiB
C
/*-
|
|
* Copyright (c) 2009 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 <string.h>
|
|
#include <errno.h>
|
|
|
|
#include <xbps_api.h>
|
|
|
|
struct orphan_pkg {
|
|
SIMPLEQ_ENTRY(orphan_pkg) chain;
|
|
prop_dictionary_t dict;
|
|
const char *pkgname;
|
|
};
|
|
|
|
static SIMPLEQ_HEAD(orphan_head, orphan_pkg) orphan_list =
|
|
SIMPLEQ_HEAD_INITIALIZER(orphan_list);
|
|
|
|
static int
|
|
find_orphan_pkg(prop_object_t obj, void *arg, bool *loop_done)
|
|
{
|
|
prop_array_t reqby;
|
|
prop_object_t obj2;
|
|
prop_object_iterator_t iter;
|
|
struct orphan_pkg *orphan;
|
|
char *pkgname;
|
|
unsigned int ndep = 0, cnt = 0;
|
|
bool automatic = false;
|
|
pkg_state_t state = 0;
|
|
int rv = 0;
|
|
|
|
(void)arg;
|
|
(void)loop_done;
|
|
|
|
if (!prop_dictionary_get_bool(obj, "automatic-install", &automatic))
|
|
return EINVAL;
|
|
|
|
if (!automatic)
|
|
return 0;
|
|
|
|
if ((rv = xbps_get_pkg_state_dictionary(obj, &state)) != 0)
|
|
return rv;
|
|
|
|
if (state != XBPS_PKG_STATE_INSTALLED)
|
|
return 0;
|
|
|
|
reqby = prop_dictionary_get(obj, "requiredby");
|
|
if (reqby == NULL)
|
|
return 0;
|
|
else if (prop_object_type(reqby) != PROP_TYPE_ARRAY)
|
|
return EINVAL;
|
|
|
|
if ((cnt = prop_array_count(reqby)) == 0)
|
|
goto add_orphan;
|
|
|
|
iter = prop_array_iterator(reqby);
|
|
if (iter == NULL)
|
|
return errno;
|
|
|
|
while ((obj2 = prop_object_iterator_next(iter)) != NULL) {
|
|
pkgname = xbps_get_pkg_name(prop_string_cstring_nocopy(obj2));
|
|
if (pkgname == NULL)
|
|
return EINVAL;
|
|
|
|
SIMPLEQ_FOREACH(orphan, &orphan_list, chain) {
|
|
if (strcmp(orphan->pkgname, pkgname) == 0) {
|
|
ndep++;
|
|
break;
|
|
}
|
|
}
|
|
free(pkgname);
|
|
}
|
|
prop_object_iterator_release(iter);
|
|
if (ndep != cnt)
|
|
return 0;
|
|
|
|
add_orphan:
|
|
orphan = NULL;
|
|
orphan = malloc(sizeof(struct orphan_pkg));
|
|
if (orphan == NULL)
|
|
return errno;
|
|
|
|
if (!prop_dictionary_get_cstring_nocopy(obj, "pkgname",
|
|
&orphan->pkgname)) {
|
|
free(orphan);
|
|
return errno;
|
|
}
|
|
orphan->dict = prop_dictionary_copy(obj);
|
|
SIMPLEQ_INSERT_TAIL(&orphan_list, orphan, chain);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static void
|
|
cleanup(void)
|
|
{
|
|
struct orphan_pkg *orphan;
|
|
|
|
while ((orphan = SIMPLEQ_FIRST(&orphan_list)) != NULL) {
|
|
SIMPLEQ_REMOVE(&orphan_list, orphan, orphan_pkg, chain);
|
|
prop_object_release(orphan->dict);
|
|
free(orphan);
|
|
}
|
|
xbps_regpkgs_dictionary_release();
|
|
}
|
|
|
|
prop_array_t SYMEXPORT
|
|
xbps_find_orphan_packages(void)
|
|
{
|
|
prop_array_t array;
|
|
prop_dictionary_t dict;
|
|
struct orphan_pkg *orphan;
|
|
int rv = 0;
|
|
|
|
if ((dict = xbps_regpkgs_dictionary_init()) == NULL)
|
|
return NULL;
|
|
/*
|
|
* Find out all orphans by looking at the
|
|
* regpkgdb dictionary and iterate in reverse order
|
|
* in which packages were installed.
|
|
*/
|
|
rv = xbps_callback_array_iter_reverse_in_dict(dict, "packages",
|
|
find_orphan_pkg, NULL);
|
|
if (rv != 0) {
|
|
errno = rv;
|
|
cleanup();
|
|
return NULL;
|
|
}
|
|
/*
|
|
* Prepare an array with all packages previously found.
|
|
*/
|
|
array = prop_array_create();
|
|
if (array == NULL) {
|
|
cleanup();
|
|
return NULL;
|
|
}
|
|
while ((orphan = SIMPLEQ_FIRST(&orphan_list)) != NULL) {
|
|
if (!prop_array_add(array, orphan->dict)) {
|
|
cleanup();
|
|
return NULL;
|
|
}
|
|
SIMPLEQ_REMOVE(&orphan_list, orphan, orphan_pkg, chain);
|
|
prop_object_release(orphan->dict);
|
|
free(orphan);
|
|
}
|
|
xbps_regpkgs_dictionary_release();
|
|
|
|
return array;
|
|
}
|