2009-11-26 07:52:50 +05:30
|
|
|
/*-
|
2012-01-20 23:07:08 +05:30
|
|
|
* Copyright (c) 2012 Juan Romero Pardines.
|
2009-11-26 07:52:50 +05:30
|
|
|
* 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>
|
|
|
|
|
2010-11-13 07:48:58 +05:30
|
|
|
#include "xbps_api_impl.h"
|
2009-11-26 07:52:50 +05:30
|
|
|
|
2012-01-20 16:47:27 +05:30
|
|
|
/**
|
|
|
|
* @file lib/pkgdb.c
|
|
|
|
* @brief Package database handling routines
|
|
|
|
* @defgroup pkgdb Package database handling functions
|
|
|
|
*
|
|
|
|
* Functions to manipulate the main package database plist file (pkgdb).
|
|
|
|
*
|
|
|
|
* The following image shown below shows the proplib structure used
|
|
|
|
* by the main package database plist:
|
|
|
|
*
|
|
|
|
* @image html images/xbps_pkgdb_array.png
|
|
|
|
*
|
|
|
|
* Legend:
|
|
|
|
* - <b>Salmon filled box</b>: \a XBPS_PKGDB file internalized.
|
|
|
|
* - <b>White filled box</b>: mandatory objects.
|
|
|
|
* - <b>Grey filled box</b>: optional objects.
|
|
|
|
* - <b>Green filled box</b>: possible value set in the object, only one
|
|
|
|
* of them is set.
|
|
|
|
*
|
|
|
|
* Text inside of white boxes are the key associated with the object, its
|
|
|
|
* data type is specified on its edge, i.e array, bool, integer, string,
|
|
|
|
* dictionary.
|
|
|
|
*/
|
2011-06-04 17:07:53 +05:30
|
|
|
int HIDDEN
|
2012-01-20 15:40:52 +05:30
|
|
|
xbps_pkgdb_init(struct xbps_handle *xhp)
|
2009-11-26 07:52:50 +05:30
|
|
|
{
|
2011-12-24 05:35:26 +05:30
|
|
|
int rv;
|
|
|
|
|
|
|
|
assert(xhp != NULL);
|
2009-11-26 07:52:50 +05:30
|
|
|
|
2012-01-20 15:40:52 +05:30
|
|
|
if (xhp->pkgdb != NULL)
|
2011-06-04 17:07:53 +05:30
|
|
|
return 0;
|
2009-11-26 07:52:50 +05:30
|
|
|
|
2012-06-14 11:52:11 +05:30
|
|
|
if ((rv = xbps_pkgdb_update(xhp, false)) != 0) {
|
2011-12-24 05:35:26 +05:30
|
|
|
if (rv != ENOENT)
|
2012-06-14 11:52:11 +05:30
|
|
|
xbps_dbg_printf(xhp, "[pkgdb] cannot internalize "
|
2012-01-20 15:40:52 +05:30
|
|
|
"pkgdb array: %s\n", strerror(rv));
|
2011-12-24 05:35:26 +05:30
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
2012-06-14 11:52:11 +05:30
|
|
|
xbps_dbg_printf(xhp, "[pkgdb] initialized ok.\n");
|
2011-12-24 05:35:26 +05:30
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2012-06-14 11:52:11 +05:30
|
|
|
xbps_pkgdb_update(struct xbps_handle *xhp, bool flush)
|
2011-12-24 05:35:26 +05:30
|
|
|
{
|
2012-10-26 13:55:14 +05:30
|
|
|
prop_array_t pkgdb_storage;
|
2012-03-13 14:52:35 +05:30
|
|
|
char *plist;
|
2012-06-15 19:03:11 +05:30
|
|
|
static int cached_rv;
|
2011-12-24 05:35:26 +05:30
|
|
|
int rv = 0;
|
|
|
|
|
2012-06-15 19:03:11 +05:30
|
|
|
if (cached_rv && !flush)
|
|
|
|
return cached_rv;
|
|
|
|
|
2012-03-13 14:52:35 +05:30
|
|
|
plist = xbps_xasprintf("%s/%s", xhp->metadir, XBPS_PKGDB);
|
2012-06-15 19:03:11 +05:30
|
|
|
if (xhp->pkgdb && flush) {
|
2012-10-26 13:55:14 +05:30
|
|
|
pkgdb_storage = prop_array_internalize_from_zfile(plist);
|
2012-10-26 14:35:17 +05:30
|
|
|
if (pkgdb_storage == NULL ||
|
|
|
|
!prop_array_equals(xhp->pkgdb, pkgdb_storage)) {
|
2012-10-26 13:55:14 +05:30
|
|
|
/* flush dictionary to storage */
|
|
|
|
if (!prop_array_externalize_to_file(xhp->pkgdb, plist)) {
|
|
|
|
free(plist);
|
|
|
|
return errno;
|
|
|
|
}
|
2011-12-24 05:35:26 +05:30
|
|
|
}
|
2012-10-26 14:35:17 +05:30
|
|
|
if (pkgdb_storage)
|
|
|
|
prop_object_release(pkgdb_storage);
|
|
|
|
|
2012-01-20 15:40:52 +05:30
|
|
|
prop_object_release(xhp->pkgdb);
|
|
|
|
xhp->pkgdb = NULL;
|
2012-06-15 19:03:11 +05:30
|
|
|
cached_rv = 0;
|
2011-01-19 00:48:27 +05:30
|
|
|
}
|
2011-12-24 05:35:26 +05:30
|
|
|
/* update copy in memory */
|
2012-11-11 14:33:14 +05:30
|
|
|
if ((xhp->pkgdb = prop_array_internalize_from_zfile(plist)) == NULL) {
|
|
|
|
if (errno == ENOENT)
|
|
|
|
xhp->pkgdb = prop_array_create();
|
2011-12-24 05:35:26 +05:30
|
|
|
|
2012-11-11 14:33:14 +05:30
|
|
|
cached_rv = rv = errno;
|
|
|
|
}
|
2011-01-19 00:48:27 +05:30
|
|
|
free(plist);
|
|
|
|
|
2011-12-24 05:35:26 +05:30
|
|
|
return rv;
|
2009-11-26 07:52:50 +05:30
|
|
|
}
|
|
|
|
|
2011-06-04 17:07:53 +05:30
|
|
|
void HIDDEN
|
2012-01-20 15:40:52 +05:30
|
|
|
xbps_pkgdb_release(struct xbps_handle *xhp)
|
2009-11-26 07:52:50 +05:30
|
|
|
{
|
2011-12-24 05:35:26 +05:30
|
|
|
assert(xhp != NULL);
|
|
|
|
|
2012-01-20 15:40:52 +05:30
|
|
|
if (xhp->pkgdb == NULL)
|
2009-11-26 07:52:50 +05:30
|
|
|
return;
|
|
|
|
|
2012-11-30 11:41:51 +05:30
|
|
|
if (prop_object_type(xhp->pkg_metad) == PROP_TYPE_DICTIONARY)
|
|
|
|
prop_object_release(xhp->pkg_metad);
|
|
|
|
|
2012-01-20 15:40:52 +05:30
|
|
|
prop_object_release(xhp->pkgdb);
|
|
|
|
xhp->pkgdb = NULL;
|
2012-06-14 11:52:11 +05:30
|
|
|
xbps_dbg_printf(xhp, "[pkgdb] released ok.\n");
|
2009-11-26 07:52:50 +05:30
|
|
|
}
|
2011-12-22 18:55:27 +05:30
|
|
|
|
2011-12-23 12:46:25 +05:30
|
|
|
static int
|
2012-06-14 11:52:11 +05:30
|
|
|
foreach_pkg_cb(struct xbps_handle *xhp,
|
|
|
|
int (*fn)(struct xbps_handle *, prop_object_t, void *, bool *),
|
2011-12-23 12:46:25 +05:30
|
|
|
void *arg,
|
|
|
|
bool reverse)
|
2011-12-22 18:55:27 +05:30
|
|
|
{
|
|
|
|
int rv;
|
|
|
|
|
2012-01-20 15:40:52 +05:30
|
|
|
if ((rv = xbps_pkgdb_init(xhp)) != 0)
|
2011-12-22 18:55:27 +05:30
|
|
|
return rv;
|
|
|
|
|
2012-01-20 15:40:52 +05:30
|
|
|
if (reverse)
|
2012-06-14 11:52:11 +05:30
|
|
|
rv = xbps_callback_array_iter_reverse(xhp, xhp->pkgdb, fn, arg);
|
2012-01-20 15:40:52 +05:30
|
|
|
else
|
2012-06-14 11:52:11 +05:30
|
|
|
rv = xbps_callback_array_iter(xhp, xhp->pkgdb, fn, arg);
|
2012-01-20 15:40:52 +05:30
|
|
|
|
2011-12-22 18:55:27 +05:30
|
|
|
return rv;
|
|
|
|
}
|
2011-12-23 12:46:25 +05:30
|
|
|
|
|
|
|
int
|
2012-06-14 11:52:11 +05:30
|
|
|
xbps_pkgdb_foreach_reverse_cb(struct xbps_handle *xhp,
|
|
|
|
int (*fn)(struct xbps_handle *, prop_object_t, void *, bool *),
|
2012-01-21 15:00:20 +05:30
|
|
|
void *arg)
|
2011-12-23 12:46:25 +05:30
|
|
|
{
|
2012-06-14 11:52:11 +05:30
|
|
|
return foreach_pkg_cb(xhp, fn, arg, true);
|
2011-12-23 12:46:25 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2012-06-14 11:52:11 +05:30
|
|
|
xbps_pkgdb_foreach_cb(struct xbps_handle *xhp,
|
|
|
|
int (*fn)(struct xbps_handle *, prop_object_t, void *, bool *),
|
2012-01-21 15:00:20 +05:30
|
|
|
void *arg)
|
2011-12-23 12:46:25 +05:30
|
|
|
{
|
2012-06-14 11:52:11 +05:30
|
|
|
return foreach_pkg_cb(xhp, fn, arg, false);
|
2011-12-23 12:46:25 +05:30
|
|
|
}
|
2011-12-24 05:35:26 +05:30
|
|
|
|
|
|
|
prop_dictionary_t
|
2012-11-30 11:41:51 +05:30
|
|
|
xbps_pkgdb_get_pkg(struct xbps_handle *xhp, const char *pkg)
|
2011-12-24 05:35:26 +05:30
|
|
|
{
|
2012-01-20 15:40:52 +05:30
|
|
|
if (xbps_pkgdb_init(xhp) != 0)
|
2011-12-24 05:35:26 +05:30
|
|
|
return NULL;
|
|
|
|
|
2012-11-30 11:41:51 +05:30
|
|
|
return xbps_find_pkg_in_array(xhp->pkgdb, pkg);
|
2011-12-24 05:35:26 +05:30
|
|
|
}
|
2011-12-24 20:39:30 +05:30
|
|
|
|
2012-11-20 02:16:54 +05:30
|
|
|
prop_dictionary_t
|
2012-11-30 11:41:51 +05:30
|
|
|
xbps_pkgdb_get_virtualpkg(struct xbps_handle *xhp, const char *vpkg)
|
2012-11-20 02:16:54 +05:30
|
|
|
{
|
|
|
|
if (xbps_pkgdb_init(xhp) != 0)
|
|
|
|
return NULL;
|
|
|
|
|
2012-11-30 11:41:51 +05:30
|
|
|
return xbps_find_virtualpkg_in_array(xhp, xhp->pkgdb, vpkg);
|
2012-11-20 02:16:54 +05:30
|
|
|
}
|
|
|
|
|
2012-04-05 14:27:15 +05:30
|
|
|
prop_dictionary_t
|
2012-11-30 11:41:51 +05:30
|
|
|
xbps_pkgdb_get_pkg_metadata(struct xbps_handle *xhp, const char *pkg)
|
2012-04-05 14:27:15 +05:30
|
|
|
{
|
2012-11-30 11:41:51 +05:30
|
|
|
prop_dictionary_t pkgd, pkg_metad;
|
|
|
|
const char *pkgname;
|
|
|
|
char *plist;
|
|
|
|
|
|
|
|
pkgd = xbps_pkgdb_get_pkg(xhp, pkg);
|
|
|
|
if (pkgd == NULL)
|
2012-04-05 14:27:15 +05:30
|
|
|
return NULL;
|
|
|
|
|
2012-11-30 11:41:51 +05:30
|
|
|
prop_dictionary_get_cstring_nocopy(pkgd, "pkgname", &pkgname);
|
|
|
|
|
|
|
|
if ((pkg_metad = prop_dictionary_get(xhp->pkg_metad, pkgname)) != NULL)
|
|
|
|
return pkg_metad;
|
|
|
|
|
|
|
|
plist = xbps_xasprintf("%s/.%s.plist", xhp->metadir, pkgname);
|
|
|
|
pkg_metad = prop_dictionary_internalize_from_zfile(plist);
|
|
|
|
free(plist);
|
|
|
|
|
|
|
|
if (pkg_metad == NULL) {
|
|
|
|
xbps_dbg_printf(xhp, "[pkgdb] cannot read %s metadata: %s\n",
|
|
|
|
pkgname, strerror(errno));
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (xhp->pkg_metad == NULL)
|
|
|
|
xhp->pkg_metad = prop_dictionary_create();
|
|
|
|
|
|
|
|
prop_dictionary_set(xhp->pkg_metad, pkgname, pkg_metad);
|
|
|
|
prop_object_release(pkg_metad);
|
|
|
|
|
|
|
|
return pkg_metad;
|
2012-04-05 14:27:15 +05:30
|
|
|
}
|
|
|
|
|
2011-12-24 20:39:30 +05:30
|
|
|
bool
|
2012-11-30 11:41:51 +05:30
|
|
|
xbps_pkgdb_remove_pkg(struct xbps_handle *xhp, const char *pkg, bool flush)
|
2011-12-24 20:39:30 +05:30
|
|
|
{
|
2012-01-20 15:40:52 +05:30
|
|
|
bool rv = false;
|
|
|
|
|
|
|
|
if (xbps_pkgdb_init(xhp) != 0)
|
|
|
|
return false;
|
|
|
|
|
2012-11-30 11:41:51 +05:30
|
|
|
if (xbps_pkgpattern_version(pkg))
|
|
|
|
rv = xbps_remove_pkg_from_array_by_pattern(xhp->pkgdb, pkg);
|
|
|
|
else if (xbps_pkg_version(pkg))
|
|
|
|
rv = xbps_remove_pkg_from_array_by_pkgver(xhp->pkgdb, pkg);
|
2012-01-20 15:40:52 +05:30
|
|
|
else
|
2012-11-30 11:41:51 +05:30
|
|
|
rv = xbps_remove_pkg_from_array_by_name(xhp->pkgdb, pkg);
|
2011-12-24 20:39:30 +05:30
|
|
|
|
2012-01-20 15:40:52 +05:30
|
|
|
if (!flush || !rv)
|
|
|
|
return rv;
|
|
|
|
|
2012-06-14 11:52:11 +05:30
|
|
|
if ((xbps_pkgdb_update(xhp, true)) != 0)
|
2012-01-20 15:40:52 +05:30
|
|
|
return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2012-11-30 11:41:51 +05:30
|
|
|
xbps_pkgdb_replace_pkg(struct xbps_handle *xhp,
|
|
|
|
prop_dictionary_t pkgd,
|
|
|
|
const char *pkg,
|
|
|
|
bool flush)
|
2012-01-20 15:40:52 +05:30
|
|
|
{
|
|
|
|
int rv;
|
|
|
|
|
|
|
|
if (xbps_pkgdb_init(xhp) != 0)
|
|
|
|
return false;
|
|
|
|
|
2012-11-30 11:41:51 +05:30
|
|
|
if (xbps_pkgpattern_version(pkg))
|
2012-01-20 15:40:52 +05:30
|
|
|
rv = xbps_array_replace_dict_by_pattern(xhp->pkgdb, pkgd, pkg);
|
|
|
|
else
|
|
|
|
rv = xbps_array_replace_dict_by_name(xhp->pkgdb, pkgd, pkg);
|
|
|
|
|
2012-01-20 17:08:24 +05:30
|
|
|
if (!flush)
|
|
|
|
return rv != 0 ? false : true;
|
2011-12-24 20:39:30 +05:30
|
|
|
|
2012-06-14 11:52:11 +05:30
|
|
|
if ((xbps_pkgdb_update(xhp, true)) != 0)
|
2011-12-24 20:39:30 +05:30
|
|
|
return false;
|
|
|
|
|
2012-01-20 15:40:52 +05:30
|
|
|
return true;
|
2011-12-24 20:39:30 +05:30
|
|
|
}
|