2012-07-29 08:49:56 +00:00
|
|
|
/*
|
|
|
|
* queue.c
|
|
|
|
* compilation of a list of packages into a world dependency set
|
|
|
|
*
|
|
|
|
* Copyright (c) 2012 pkgconf authors (see AUTHORS).
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and/or distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
|
|
|
*
|
|
|
|
* This software is provided 'as is' and without any warranty, express or
|
|
|
|
* implied. In no event shall the authors be liable for any damages arising
|
|
|
|
* from the use of this software.
|
|
|
|
*/
|
|
|
|
|
2015-09-06 14:35:08 +00:00
|
|
|
#include <libpkgconf/libpkgconf.h>
|
2012-07-29 08:49:56 +00:00
|
|
|
|
2013-03-01 16:24:57 +00:00
|
|
|
typedef struct {
|
2015-09-06 15:31:21 +00:00
|
|
|
pkgconf_node_t iter;
|
2013-03-01 16:24:57 +00:00
|
|
|
char *package;
|
2015-09-06 15:51:34 +00:00
|
|
|
} pkgconf_queue_t;
|
2013-03-01 16:24:57 +00:00
|
|
|
|
|
|
|
void
|
2015-09-06 15:51:34 +00:00
|
|
|
pkgconf_queue_push(pkgconf_list_t *list, const char *package)
|
2012-07-29 08:49:56 +00:00
|
|
|
{
|
2015-09-06 15:51:34 +00:00
|
|
|
pkgconf_queue_t *pkgq = calloc(sizeof(pkgconf_queue_t), 1);
|
2012-07-29 08:49:56 +00:00
|
|
|
|
|
|
|
pkgq->package = strdup(package);
|
2015-09-06 15:31:21 +00:00
|
|
|
pkgconf_node_insert_tail(&pkgq->iter, pkgq, list);
|
2012-07-29 08:49:56 +00:00
|
|
|
}
|
2012-07-29 08:56:20 +00:00
|
|
|
|
|
|
|
bool
|
2016-12-02 06:29:33 +00:00
|
|
|
pkgconf_queue_compile(pkgconf_client_t *client, pkgconf_pkg_t *world, pkgconf_list_t *list)
|
2012-07-29 08:56:20 +00:00
|
|
|
{
|
2015-09-06 15:31:21 +00:00
|
|
|
pkgconf_node_t *iter;
|
2012-07-29 08:56:20 +00:00
|
|
|
|
2015-09-06 15:31:21 +00:00
|
|
|
PKGCONF_FOREACH_LIST_ENTRY(list->head, iter)
|
2012-07-29 08:56:20 +00:00
|
|
|
{
|
2015-09-06 15:51:34 +00:00
|
|
|
pkgconf_queue_t *pkgq;
|
2012-07-29 08:56:20 +00:00
|
|
|
|
2013-03-01 16:24:57 +00:00
|
|
|
pkgq = iter->data;
|
2016-12-01 21:05:03 +00:00
|
|
|
pkgconf_dependency_parse(client, world, &world->requires, pkgq->package);
|
2012-07-29 08:56:20 +00:00
|
|
|
}
|
|
|
|
|
2013-03-01 17:36:21 +00:00
|
|
|
return (world->requires.head != NULL);
|
2012-07-29 08:56:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2015-09-06 15:51:34 +00:00
|
|
|
pkgconf_queue_free(pkgconf_list_t *list)
|
2012-07-29 08:56:20 +00:00
|
|
|
{
|
2015-09-06 15:31:21 +00:00
|
|
|
pkgconf_node_t *node, *tnode;
|
2012-07-29 08:56:20 +00:00
|
|
|
|
2015-09-06 15:31:21 +00:00
|
|
|
PKGCONF_FOREACH_LIST_ENTRY_SAFE(list->head, tnode, node)
|
2012-07-29 08:56:20 +00:00
|
|
|
{
|
2015-09-06 15:51:34 +00:00
|
|
|
pkgconf_queue_t *pkgq = node->data;
|
2013-03-01 16:24:57 +00:00
|
|
|
|
2012-07-29 08:56:20 +00:00
|
|
|
free(pkgq->package);
|
|
|
|
free(pkgq);
|
|
|
|
}
|
|
|
|
}
|
2012-07-29 09:45:21 +00:00
|
|
|
|
2012-07-29 10:36:21 +00:00
|
|
|
static inline unsigned int
|
2016-12-02 06:29:33 +00:00
|
|
|
pkgconf_queue_verify(pkgconf_client_t *client, pkgconf_pkg_t *world, pkgconf_list_t *list, int maxdepth, unsigned int flags)
|
2012-07-29 10:36:21 +00:00
|
|
|
{
|
2016-12-01 21:05:03 +00:00
|
|
|
if (!pkgconf_queue_compile(client, world, list))
|
2015-09-06 16:45:00 +00:00
|
|
|
return PKGCONF_PKG_ERRF_DEPGRAPH_BREAK;
|
2012-07-29 10:36:21 +00:00
|
|
|
|
2016-12-01 21:05:03 +00:00
|
|
|
return pkgconf_pkg_verify_graph(client, world, maxdepth, flags);
|
2012-07-29 10:36:21 +00:00
|
|
|
}
|
|
|
|
|
2012-07-29 09:45:21 +00:00
|
|
|
bool
|
2016-12-02 06:29:33 +00:00
|
|
|
pkgconf_queue_apply(pkgconf_client_t *client, pkgconf_list_t *list, pkgconf_queue_apply_func_t func, int maxdepth, unsigned int flags, void *data)
|
2012-07-29 09:45:21 +00:00
|
|
|
{
|
2015-09-06 16:20:48 +00:00
|
|
|
pkgconf_pkg_t world = {
|
2016-05-20 07:06:46 +00:00
|
|
|
.id = "virtual:world",
|
2012-07-29 09:45:21 +00:00
|
|
|
.realname = "virtual world package",
|
2015-09-06 16:37:20 +00:00
|
|
|
.flags = PKGCONF_PKG_PROPF_VIRTUAL,
|
2012-07-29 09:45:21 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/* if maxdepth is one, then we will not traverse deeper than our virtual package. */
|
|
|
|
if (!maxdepth)
|
|
|
|
maxdepth = -1;
|
|
|
|
|
2016-12-01 21:05:03 +00:00
|
|
|
if (pkgconf_queue_verify(client, &world, list, maxdepth, flags) != PKGCONF_PKG_ERRF_OK)
|
2012-07-29 09:45:21 +00:00
|
|
|
return false;
|
|
|
|
|
2016-12-01 21:05:03 +00:00
|
|
|
if (!func(client, &world, data, maxdepth, flags))
|
2012-08-12 10:32:31 +00:00
|
|
|
{
|
2016-12-02 06:29:33 +00:00
|
|
|
pkgconf_pkg_free(client, &world);
|
2012-08-12 10:32:31 +00:00
|
|
|
return false;
|
|
|
|
}
|
2012-07-29 09:45:21 +00:00
|
|
|
|
2016-12-02 06:29:33 +00:00
|
|
|
pkgconf_pkg_free(client, &world);
|
2012-07-29 09:45:21 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2012-07-29 10:36:21 +00:00
|
|
|
|
|
|
|
bool
|
2016-12-02 06:29:33 +00:00
|
|
|
pkgconf_queue_validate(pkgconf_client_t *client, pkgconf_list_t *list, int maxdepth, unsigned int flags)
|
2012-07-29 10:36:21 +00:00
|
|
|
{
|
|
|
|
bool retval = true;
|
2015-09-06 16:20:48 +00:00
|
|
|
pkgconf_pkg_t world = {
|
2016-05-20 07:06:46 +00:00
|
|
|
.id = "virtual:world",
|
2012-07-29 10:36:21 +00:00
|
|
|
.realname = "virtual world package",
|
2015-09-06 16:37:20 +00:00
|
|
|
.flags = PKGCONF_PKG_PROPF_VIRTUAL,
|
2012-07-29 10:36:21 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/* if maxdepth is one, then we will not traverse deeper than our virtual package. */
|
|
|
|
if (!maxdepth)
|
|
|
|
maxdepth = -1;
|
|
|
|
|
2016-12-01 21:05:03 +00:00
|
|
|
if (pkgconf_queue_verify(client, &world, list, maxdepth, flags) != PKGCONF_PKG_ERRF_OK)
|
2012-07-29 10:36:21 +00:00
|
|
|
retval = false;
|
|
|
|
|
2016-12-02 06:29:33 +00:00
|
|
|
pkgconf_pkg_free(client, &world);
|
2012-07-29 10:36:21 +00:00
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|