2009-08-17 22:37:20 +05:30
|
|
|
/*-
|
2012-01-20 15:40:52 +05:30
|
|
|
* Copyright (c) 2009-2012 Juan Romero Pardines.
|
2009-08-17 22:37:20 +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-08-17 22:37:20 +05:30
|
|
|
|
2011-01-22 22:30:31 +05:30
|
|
|
struct state {
|
|
|
|
const char *string;
|
|
|
|
pkg_state_t number;
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct state states[] = {
|
|
|
|
{ "unpacked", XBPS_PKG_STATE_UNPACKED },
|
|
|
|
{ "installed", XBPS_PKG_STATE_INSTALLED },
|
|
|
|
{ "broken", XBPS_PKG_STATE_BROKEN },
|
2011-12-24 05:35:26 +05:30
|
|
|
{ "half-removed", XBPS_PKG_STATE_HALF_REMOVED },
|
2011-01-22 22:30:31 +05:30
|
|
|
{ "not-installed", XBPS_PKG_STATE_NOT_INSTALLED },
|
2011-07-28 19:55:01 +05:30
|
|
|
{ "half-unpacked", XBPS_PKG_STATE_HALF_UNPACKED },
|
2011-01-22 22:30:31 +05:30
|
|
|
{ NULL, 0 }
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2010-01-21 07:40:19 +05:30
|
|
|
/**
|
2011-01-19 05:01:22 +05:30
|
|
|
* @file lib/package_state.c
|
2010-01-21 07:40:19 +05:30
|
|
|
* @brief Package state handling routines
|
|
|
|
* @defgroup pkgstates Package state handling functions
|
|
|
|
*/
|
|
|
|
|
2009-08-17 22:37:20 +05:30
|
|
|
static int
|
|
|
|
set_new_state(prop_dictionary_t dict, pkg_state_t state)
|
|
|
|
{
|
2011-01-22 22:30:31 +05:30
|
|
|
const struct state *stp;
|
2009-08-17 22:37:20 +05:30
|
|
|
|
2011-10-19 20:23:38 +05:30
|
|
|
assert(prop_object_type(dict) == PROP_TYPE_DICTIONARY);
|
2009-08-17 22:37:20 +05:30
|
|
|
|
2011-01-22 22:30:31 +05:30
|
|
|
for (stp = states; stp->string != NULL; stp++)
|
|
|
|
if (state == stp->number)
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (stp->string == NULL)
|
2011-12-24 05:35:26 +05:30
|
|
|
return EINVAL;
|
2009-08-17 22:37:20 +05:30
|
|
|
|
2011-01-22 22:30:31 +05:30
|
|
|
if (!prop_dictionary_set_cstring_nocopy(dict, "state", stp->string))
|
2010-11-19 18:10:13 +05:30
|
|
|
return EINVAL;
|
2009-08-17 22:37:20 +05:30
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static pkg_state_t
|
|
|
|
get_state(prop_dictionary_t dict)
|
|
|
|
{
|
2011-01-22 22:30:31 +05:30
|
|
|
const struct state *stp;
|
2009-08-17 22:37:20 +05:30
|
|
|
const char *state_str;
|
|
|
|
|
2011-10-19 20:23:38 +05:30
|
|
|
assert(prop_object_type(dict) == PROP_TYPE_DICTIONARY);
|
2009-08-17 22:37:20 +05:30
|
|
|
|
2011-02-02 14:23:56 +05:30
|
|
|
if (!prop_dictionary_get_cstring_nocopy(dict,
|
|
|
|
"state", &state_str))
|
|
|
|
return 0;
|
2009-08-17 22:37:20 +05:30
|
|
|
|
2011-01-22 22:30:31 +05:30
|
|
|
for (stp = states; stp->string != NULL; stp++)
|
|
|
|
if (strcmp(state_str, stp->string) == 0)
|
|
|
|
break;
|
|
|
|
|
|
|
|
return stp->number;
|
2009-08-17 22:37:20 +05:30
|
|
|
}
|
|
|
|
|
2010-01-21 07:40:19 +05:30
|
|
|
int
|
2011-06-01 13:07:32 +05:30
|
|
|
xbps_pkg_state_installed(const char *pkgname, pkg_state_t *state)
|
2009-08-17 22:37:20 +05:30
|
|
|
{
|
2009-11-26 07:52:50 +05:30
|
|
|
prop_dictionary_t pkgd;
|
2009-08-17 22:37:20 +05:30
|
|
|
|
|
|
|
assert(pkgname != NULL);
|
2011-01-25 08:44:33 +05:30
|
|
|
assert(state != NULL);
|
2009-08-17 22:37:20 +05:30
|
|
|
|
2012-01-20 15:40:52 +05:30
|
|
|
pkgd = xbps_pkgdb_get_pkgd(pkgname, false);
|
2009-11-26 07:52:50 +05:30
|
|
|
if (pkgd == NULL)
|
2011-02-01 22:00:59 +05:30
|
|
|
return ENOENT;
|
2009-08-17 22:37:20 +05:30
|
|
|
|
|
|
|
*state = get_state(pkgd);
|
2010-11-08 06:32:35 +05:30
|
|
|
prop_object_release(pkgd);
|
2009-11-26 07:52:50 +05:30
|
|
|
if (*state == 0)
|
2009-08-17 22:37:20 +05:30
|
|
|
return EINVAL;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-01-21 07:40:19 +05:30
|
|
|
int
|
2011-06-01 13:07:32 +05:30
|
|
|
xbps_pkg_state_dictionary(prop_dictionary_t dict, pkg_state_t *state)
|
2009-08-17 22:37:20 +05:30
|
|
|
{
|
2011-10-19 20:23:38 +05:30
|
|
|
assert(prop_object_type(dict) == PROP_TYPE_DICTIONARY);
|
2011-01-25 08:44:33 +05:30
|
|
|
assert(state != NULL);
|
2009-08-17 22:37:20 +05:30
|
|
|
|
|
|
|
if ((*state = get_state(dict)) == 0)
|
|
|
|
return EINVAL;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-01-21 07:40:19 +05:30
|
|
|
int
|
2009-08-17 22:37:20 +05:30
|
|
|
xbps_set_pkg_state_dictionary(prop_dictionary_t dict, pkg_state_t state)
|
|
|
|
{
|
2011-10-19 20:23:38 +05:30
|
|
|
assert(prop_object_type(dict) == PROP_TYPE_DICTIONARY);
|
2009-08-17 22:37:20 +05:30
|
|
|
|
|
|
|
return set_new_state(dict, state);
|
|
|
|
}
|
|
|
|
|
2011-02-22 15:39:39 +05:30
|
|
|
static int
|
2012-04-10 13:13:59 +05:30
|
|
|
set_pkg_objs(prop_dictionary_t pkgd, const char *name, const char *version)
|
2011-02-22 15:39:39 +05:30
|
|
|
{
|
2012-04-10 13:13:59 +05:30
|
|
|
char *pkgver;
|
|
|
|
|
|
|
|
if (!prop_dictionary_set_cstring_nocopy(pkgd, "pkgname", name))
|
2011-02-22 15:39:39 +05:30
|
|
|
return EINVAL;
|
|
|
|
|
2012-04-10 13:13:59 +05:30
|
|
|
if (!prop_dictionary_set_cstring_nocopy(pkgd, "version", version))
|
|
|
|
return EINVAL;
|
|
|
|
|
|
|
|
pkgver = xbps_xasprintf("%s-%s", name, version);
|
|
|
|
assert(pkgver != NULL);
|
|
|
|
|
|
|
|
if (!prop_dictionary_set_cstring_nocopy(pkgd, "pkgver", pkgver)) {
|
|
|
|
free(pkgver);
|
|
|
|
return EINVAL;
|
|
|
|
}
|
|
|
|
free(pkgver);
|
2011-02-22 15:39:39 +05:30
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-01-21 07:40:19 +05:30
|
|
|
int
|
2011-02-22 15:39:39 +05:30
|
|
|
xbps_set_pkg_state_installed(const char *pkgname,
|
|
|
|
const char *version,
|
|
|
|
pkg_state_t state)
|
2009-08-17 22:37:20 +05:30
|
|
|
{
|
2011-07-27 20:43:54 +05:30
|
|
|
struct xbps_handle *xhp;
|
2011-12-24 05:35:26 +05:30
|
|
|
prop_dictionary_t pkgd;
|
2009-08-17 22:37:20 +05:30
|
|
|
bool newpkg = false;
|
2011-12-24 05:35:26 +05:30
|
|
|
int rv;
|
2009-08-17 22:37:20 +05:30
|
|
|
|
2011-01-25 08:44:33 +05:30
|
|
|
assert(pkgname != NULL);
|
2011-02-21 22:12:47 +05:30
|
|
|
xhp = xbps_handle_get();
|
2011-01-25 08:44:33 +05:30
|
|
|
|
2012-01-20 15:40:52 +05:30
|
|
|
if (xhp->pkgdb == NULL) {
|
|
|
|
xhp->pkgdb = prop_array_create();
|
|
|
|
if (xhp->pkgdb == NULL)
|
2011-12-24 05:35:26 +05:30
|
|
|
return ENOMEM;
|
|
|
|
|
2009-08-17 22:37:20 +05:30
|
|
|
pkgd = prop_dictionary_create();
|
|
|
|
if (pkgd == NULL) {
|
2012-01-20 15:40:52 +05:30
|
|
|
prop_object_release(xhp->pkgdb);
|
|
|
|
xhp->pkgdb = NULL;
|
2011-12-24 05:35:26 +05:30
|
|
|
return ENOMEM;
|
2009-08-17 22:37:20 +05:30
|
|
|
}
|
2012-04-10 13:13:59 +05:30
|
|
|
if ((rv = set_pkg_objs(pkgd, pkgname, version)) != 0) {
|
2012-01-20 15:40:52 +05:30
|
|
|
prop_object_release(xhp->pkgdb);
|
2009-11-26 07:52:50 +05:30
|
|
|
prop_object_release(pkgd);
|
2012-01-20 15:40:52 +05:30
|
|
|
xhp->pkgdb = NULL;
|
2011-12-24 05:35:26 +05:30
|
|
|
return rv;
|
2009-11-23 15:16:51 +05:30
|
|
|
}
|
2009-08-17 22:37:20 +05:30
|
|
|
if ((rv = set_new_state(pkgd, state)) != 0) {
|
2012-01-20 15:40:52 +05:30
|
|
|
prop_object_release(xhp->pkgdb);
|
2009-11-26 07:52:50 +05:30
|
|
|
prop_object_release(pkgd);
|
2012-01-20 15:40:52 +05:30
|
|
|
xhp->pkgdb = NULL;
|
2011-12-24 05:35:26 +05:30
|
|
|
return rv;
|
2009-08-17 22:37:20 +05:30
|
|
|
}
|
2012-01-20 15:40:52 +05:30
|
|
|
if (!xbps_add_obj_to_array(xhp->pkgdb, pkgd)) {
|
|
|
|
prop_object_release(xhp->pkgdb);
|
2009-11-26 07:52:50 +05:30
|
|
|
prop_object_release(pkgd);
|
2012-01-20 15:40:52 +05:30
|
|
|
xhp->pkgdb = NULL;
|
2011-12-24 05:35:26 +05:30
|
|
|
return EINVAL;
|
2009-08-17 22:37:20 +05:30
|
|
|
}
|
|
|
|
} else {
|
2012-01-20 15:40:52 +05:30
|
|
|
pkgd = xbps_pkgdb_get_pkgd(pkgname, false);
|
2009-08-17 22:37:20 +05:30
|
|
|
if (pkgd == NULL) {
|
|
|
|
newpkg = true;
|
|
|
|
pkgd = prop_dictionary_create();
|
2012-04-10 13:13:59 +05:30
|
|
|
rv = set_pkg_objs(pkgd, pkgname, version);
|
|
|
|
if (rv != 0) {
|
2009-11-23 15:16:51 +05:30
|
|
|
prop_object_release(pkgd);
|
2011-12-24 05:35:26 +05:30
|
|
|
return rv;
|
2011-02-05 15:55:04 +05:30
|
|
|
}
|
2009-08-17 22:37:20 +05:30
|
|
|
}
|
|
|
|
if ((rv = set_new_state(pkgd, state)) != 0) {
|
2009-11-26 07:52:50 +05:30
|
|
|
if (newpkg)
|
|
|
|
prop_object_release(pkgd);
|
2011-12-24 05:35:26 +05:30
|
|
|
return rv;
|
2009-08-17 22:37:20 +05:30
|
|
|
}
|
2011-12-24 05:35:26 +05:30
|
|
|
if (newpkg) {
|
2012-01-20 15:40:52 +05:30
|
|
|
if (!xbps_add_obj_to_array(xhp->pkgdb, pkgd)) {
|
2011-12-24 05:35:26 +05:30
|
|
|
prop_object_release(pkgd);
|
|
|
|
return EINVAL;
|
2011-07-28 19:55:01 +05:30
|
|
|
}
|
2011-12-24 05:35:26 +05:30
|
|
|
} else {
|
2012-01-20 15:40:52 +05:30
|
|
|
if ((rv = xbps_array_replace_dict_by_name(xhp->pkgdb,
|
2011-12-24 05:35:26 +05:30
|
|
|
pkgd, pkgname)) != 0)
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
prop_object_release(pkgd);
|
2011-07-28 19:55:01 +05:30
|
|
|
}
|
|
|
|
}
|
2009-08-17 22:37:20 +05:30
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|