pacman/lib/libalpm/deps.c

717 lines
19 KiB
C
Raw Normal View History

2005-03-14 20:51:43 -05:00
/*
* deps.c
*
* Copyright (c) 2002-2006 by Judd Vinet <jvinet@zeroflux.org>
* Copyright (c) 2005 by Aurelien Foret <orelien@chez.com>
* Copyright (c) 2005, 2006 by Miklos Vajna <vmiklos@frugalware.org>
2005-03-14 20:51:43 -05:00
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
* USA.
*/
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#ifdef __sun__
#include <strings.h>
#endif
2006-05-14 22:19:57 -04:00
#include <libintl.h>
#include <math.h>
2005-03-14 20:51:43 -05:00
/* pacman */
#include "util.h"
#include "log.h"
2005-03-30 17:32:43 -05:00
#include "error.h"
#include "alpm_list.h"
2005-03-14 20:51:43 -05:00
#include "package.h"
#include "db.h"
#include "cache.h"
#include "provide.h"
#include "deps.h"
#include "versioncmp.h"
#include "handle.h"
extern pmhandle_t *handle;
2005-03-14 20:51:43 -05:00
pmdepmissing_t *_alpm_depmiss_new(const char *target, pmdeptype_t type,
pmdepmod_t depmod, const char *depname,
const char *depversion)
{
pmdepmissing_t *miss;
ALPM_LOG_FUNC;
miss = (pmdepmissing_t *)malloc(sizeof(pmdepmissing_t));
if(miss == NULL) {
2006-05-14 22:19:57 -04:00
_alpm_log(PM_LOG_ERROR, _("malloc failure: could not allocate %d bytes"), sizeof(pmdepmissing_t));
RET_ERR(PM_ERR_MEMORY, NULL);
}
STRNCPY(miss->target, target, PKG_NAME_LEN);
miss->type = type;
miss->depend.mod = depmod;
STRNCPY(miss->depend.name, depname, PKG_NAME_LEN);
2006-01-18 17:37:16 -05:00
if(depversion) {
STRNCPY(miss->depend.version, depversion, PKG_VERSION_LEN);
} else {
miss->depend.version[0] = 0;
}
return(miss);
}
int _alpm_depmiss_isin(pmdepmissing_t *needle, alpm_list_t *haystack)
2006-01-18 17:37:16 -05:00
{
alpm_list_t *i;
2006-01-18 17:37:16 -05:00
ALPM_LOG_FUNC;
2006-01-18 17:37:16 -05:00
for(i = haystack; i; i = i->next) {
pmdepmissing_t *miss = i->data;
if(!memcmp(needle, miss, sizeof(pmdepmissing_t))
&& !memcmp(&needle->depend, &miss->depend, sizeof(pmdepend_t))) {
return(1);
}
}
return(0);
}
2005-03-14 20:51:43 -05:00
/* Re-order a list of target packages with respect to their dependencies.
*
* Example (PM_TRANS_TYPE_ADD):
2005-03-14 20:51:43 -05:00
* A depends on C
* B depends on A
* Target order is A,B,C,D
*
* Should be re-ordered to C,A,B,D
*
* mode should be either PM_TRANS_TYPE_ADD or PM_TRANS_TYPE_REMOVE. This
* affects the dependency order sortbydeps() will use.
*
* This function returns the new alpm_list_t* target list.
2005-03-14 20:51:43 -05:00
*
*/
2007-01-31 02:14:50 -05:00
alpm_list_t *_alpm_sortbydeps(alpm_list_t *targets, pmtranstype_t mode)
2005-03-14 20:51:43 -05:00
{
alpm_list_t *newtargs = NULL;
alpm_list_t *i, *j, *k, *l;
2005-03-14 20:51:43 -05:00
int change = 1;
int numscans = 0;
int numtargs = 0;
int maxscans;
2005-03-14 20:51:43 -05:00
ALPM_LOG_FUNC;
2005-03-14 20:51:43 -05:00
if(targets == NULL) {
return(NULL);
}
for(i = targets; i; i = i->next) {
newtargs = alpm_list_add(newtargs, i->data);
numtargs++;
}
2005-03-14 20:51:43 -05:00
maxscans = (int)sqrt(numtargs);
_alpm_log(PM_LOG_DEBUG, _("started sorting dependencies"));
2005-03-14 20:51:43 -05:00
while(change) {
alpm_list_t *tmptargs = NULL;
2005-03-14 20:51:43 -05:00
change = 0;
if(numscans > maxscans) {
_alpm_log(PM_LOG_DEBUG, _("possible dependency cycle detected"));
2005-03-14 20:51:43 -05:00
continue;
}
numscans++;
/* run thru targets, moving up packages as necessary */
for(i = newtargs; i; i = i->next) {
2005-03-14 20:51:43 -05:00
pmpkg_t *p = (pmpkg_t*)i->data;
_alpm_log(PM_LOG_DEBUG, "sorting %s", p->name);
/* TODO this may not always work if p->data is a fd, not db */
_alpm_db_read(p->data, INFRQ_DEPENDS, p);
2005-03-14 20:51:43 -05:00
for(j = p->depends; j; j = j->next) {
pmdepend_t dep;
pmpkg_t *q = NULL;
if(_alpm_splitdep(j->data, &dep)) {
continue;
}
2005-03-14 20:51:43 -05:00
/* look for dep.name -- if it's farther down in the list, then
* move it up above p
*/
for(k = i->next; k; k = k->next) {
q = (pmpkg_t *)k->data;
2005-03-14 20:51:43 -05:00
if(!strcmp(dep.name, q->name)) {
if(!_alpm_pkg_isin(q->name, tmptargs)) {
change = 1;
tmptargs = alpm_list_add(tmptargs, q);
}
break;
2005-03-14 20:51:43 -05:00
}
for(l = q->provides; l; l = l->next) {
if(!strcmp(dep.name, (char*)l->data)) {
if(!_alpm_pkg_isin((char*)l->data, tmptargs)) {
change = 1;
tmptargs = alpm_list_add(tmptargs, q);
}
break;
}
}
2005-03-14 20:51:43 -05:00
}
}
if(!_alpm_pkg_isin(p->name, tmptargs)) {
tmptargs = alpm_list_add(tmptargs, p);
2005-03-14 20:51:43 -05:00
}
}
FREELISTPTR(newtargs);
newtargs = tmptargs;
2005-03-14 20:51:43 -05:00
}
_alpm_log(PM_LOG_DEBUG, _("sorting dependencies finished"));
if(mode == PM_TRANS_TYPE_REMOVE) {
/* we're removing packages, so reverse the order */
alpm_list_t *tmptargs = alpm_list_reverse(newtargs);
/* free the old one */
FREELISTPTR(newtargs);
newtargs = tmptargs;
}
return(newtargs);
2005-03-14 20:51:43 -05:00
}
/* Returns a alpm_list_t* of missing_t pointers.
2005-03-14 20:51:43 -05:00
*
* dependencies can include versions with depmod operators.
2005-03-14 20:51:43 -05:00
*
*/
alpm_list_t *_alpm_checkdeps(pmtrans_t *trans, pmdb_t *db, pmtranstype_t op,
alpm_list_t *packages)
2005-03-14 20:51:43 -05:00
{
pmdepend_t depend;
alpm_list_t *i, *j, *k;
2005-03-14 20:51:43 -05:00
int found = 0;
alpm_list_t *baddeps = NULL;
2005-03-14 20:51:43 -05:00
pmdepmissing_t *miss = NULL;
ALPM_LOG_FUNC;
2005-03-14 20:51:43 -05:00
if(db == NULL) {
return(NULL);
}
if(op == PM_TRANS_TYPE_UPGRADE) {
/* PM_TRANS_TYPE_UPGRADE handles the backwards dependencies, ie, the packages
* listed in the requiredby field.
*/
for(i = packages; i; i = i->next) {
pmpkg_t *tp = i->data;
pmpkg_t *oldpkg;
if(tp == NULL) {
_alpm_log(PM_LOG_DEBUG, _("null package found in package list"));
2005-03-14 20:51:43 -05:00
continue;
}
if((oldpkg = _alpm_db_get_pkgfromcache(db, tp->name)) == NULL) {
_alpm_log(PM_LOG_DEBUG, _("cannot find package installed '%s'"), tp->name);
2005-03-14 20:51:43 -05:00
continue;
}
_alpm_db_read(db, INFRQ_DEPENDS, oldpkg);
2005-03-14 20:51:43 -05:00
for(j = oldpkg->requiredby; j; j = j->next) {
pmpkg_t *p;
found = 0;
if((p = _alpm_db_get_pkgfromcache(db, j->data)) == NULL) {
2005-03-14 20:51:43 -05:00
/* hmmm... package isn't installed.. */
continue;
}
if(_alpm_pkg_isin(p->name, packages)) {
/* this package also in the upgrade list, so don't worry about it */
2005-03-14 20:51:43 -05:00
continue;
}
_alpm_db_read(db, INFRQ_DEPENDS, p);
2005-03-14 20:51:43 -05:00
for(k = p->depends; k && !found; k = k->next) {
/* find the dependency info in p->depends */
_alpm_splitdep(k->data, &depend);
2005-03-14 20:51:43 -05:00
if(!strcmp(depend.name, oldpkg->name)) {
found = 1;
}
}
if(found == 0) {
/* look for packages that list depend.name as a "provide" */
alpm_list_t *provides = _alpm_db_whatprovides(db, depend.name);
2005-03-14 20:51:43 -05:00
if(provides == NULL) {
/* not found */
continue;
}
/* we found an installed package that provides depend.name */
FREELISTPTR(provides);
2005-03-14 20:51:43 -05:00
}
if(!_alpm_depcmp(tp, &depend)) {
_alpm_log(PM_LOG_DEBUG, _("checkdeps: found %s as required by %s"),
depend.name, p->name);
miss = _alpm_depmiss_new(p->name, PM_DEP_TYPE_REQUIRED, depend.mod,
depend.name, depend.version);
if(!_alpm_depmiss_isin(miss, baddeps)) {
baddeps = alpm_list_add(baddeps, miss);
} else {
FREE(miss);
2005-03-14 20:51:43 -05:00
}
}
}
}
}
if(op == PM_TRANS_TYPE_ADD || op == PM_TRANS_TYPE_UPGRADE) {
/* DEPENDENCIES -- look for unsatisfied dependencies */
2005-03-14 20:51:43 -05:00
for(i = packages; i; i = i->next) {
pmpkg_t *tp = i->data;
if(tp == NULL) {
_alpm_log(PM_LOG_DEBUG, _("null package found in package list"));
2005-03-14 20:51:43 -05:00
continue;
}
/* ensure package has depends data */
pmdb_t *pkgdb = tp->data;
_alpm_db_read(pkgdb, INFRQ_DEPENDS, tp);
if(!tp->depends) {
_alpm_log(PM_LOG_DEBUG, _("no dependencies for target '%s'"), tp->name);
}
2005-03-14 20:51:43 -05:00
for(j = tp->depends; j; j = j->next) {
/* split into name/version pairs */
_alpm_splitdep((char *)j->data, &depend);
2005-03-14 20:51:43 -05:00
found = 0;
/* check database for literal packages */
for(k = _alpm_db_get_pkgcache(db, INFRQ_DESC|INFRQ_DEPENDS);
k && !found; k = k->next) {
2005-03-14 20:51:43 -05:00
pmpkg_t *p = (pmpkg_t *)k->data;
found = _alpm_depcmp(p, &depend);
2005-03-14 20:51:43 -05:00
}
/* check database for provides matches */
if(!found) {
alpm_list_t *m;
k = _alpm_db_whatprovides(db, depend.name);
for(m = k; m && !found; m = m->next) {
/* look for a match that isn't one of the packages we're trying
* to install. this way, if we match against a to-be-installed
* package, we'll defer to the NEW one, not the one already
* installed. */
pmpkg_t *p = m->data;
alpm_list_t *n;
int skip = 0;
for(n = packages; n && !skip; n = n->next) {
pmpkg_t *ptp = n->data;
if(!strcmp(ptp->name, p->name)) {
skip = 1;
}
}
if(skip) {
continue;
}
found = _alpm_depcmp(p, &depend);
2005-03-14 20:51:43 -05:00
}
FREELISTPTR(k);
2005-03-14 20:51:43 -05:00
}
/* check other targets */
for(k = packages; k && !found; k = k->next) {
pmpkg_t *p = (pmpkg_t *)k->data;
found = _alpm_depcmp(p, &depend);
2005-03-14 20:51:43 -05:00
}
/* else if still not found... */
if(!found) {
2006-05-14 22:19:57 -04:00
_alpm_log(PM_LOG_DEBUG, _("checkdeps: found %s as a dependency for %s"),
depend.name, tp->name);
miss = _alpm_depmiss_new(tp->name, PM_DEP_TYPE_DEPEND, depend.mod,
depend.name, depend.version);
if(!_alpm_depmiss_isin(miss, baddeps)) {
baddeps = alpm_list_add(baddeps, miss);
} else {
FREE(miss);
2005-03-14 20:51:43 -05:00
}
}
}
}
} else if(op == PM_TRANS_TYPE_REMOVE) {
/* check requiredby fields */
for(i = packages; i; i = i->next) {
pmpkg_t *tp = i->data;
if(tp == NULL) {
2005-03-14 20:51:43 -05:00
continue;
}
found=0;
2005-03-14 20:51:43 -05:00
for(j = tp->requiredby; j; j = j->next) {
/* Search for 'reqname' in packages for removal */
char *reqname = j->data;
alpm_list_t *x = NULL;
for(x = packages; x; x = x->next) {
pmpkg_t *xp = x->data;
if(strcmp(reqname, xp->name) == 0) {
found = 1;
break;
}
}
if(!found) {
/* check if a package in trans->packages provides this package */
for(k=trans->packages; !found && k; k=k->next) {
pmpkg_t *spkg = NULL;
if(trans->type == PM_TRANS_TYPE_SYNC) {
pmsyncpkg_t *sync = k->data;
spkg = sync->pkg;
} else {
spkg = k->data;
}
if(spkg) {
if(alpm_list_find_str(spkg->provides, tp->name)) {
found = 1;
}
}
}
if(!found) {
_alpm_log(PM_LOG_DEBUG, _("checkdeps: found %s as required by %s"),
reqname, tp->name);
miss = _alpm_depmiss_new(tp->name, PM_DEP_TYPE_REQUIRED,
PM_DEP_MOD_ANY, j->data, NULL);
if(!_alpm_depmiss_isin(miss, baddeps)) {
baddeps = alpm_list_add(baddeps, miss);
} else {
FREE(miss);
}
2005-03-14 20:51:43 -05:00
}
}
}
}
}
return(baddeps);
}
int _alpm_splitdep(char *depstr, pmdepend_t *depend)
2005-03-14 20:51:43 -05:00
{
char *str = NULL;
char *ptr = NULL;
2005-03-26 03:50:27 -05:00
if(depstr == NULL || depend == NULL) {
return(-1);
2005-03-14 20:51:43 -05:00
}
2005-03-26 03:50:27 -05:00
depend->mod = 0;
depend->name[0] = 0;
depend->version[0] = 0;
2005-03-14 20:51:43 -05:00
str = strdup(depstr);
if((ptr = strstr(str, ">="))) {
depend->mod = PM_DEP_MOD_GE;
2005-03-14 20:51:43 -05:00
} else if((ptr = strstr(str, "<="))) {
depend->mod = PM_DEP_MOD_LE;
2005-03-14 20:51:43 -05:00
} else if((ptr = strstr(str, "="))) {
depend->mod = PM_DEP_MOD_EQ;
2005-03-14 20:51:43 -05:00
} else {
/* no version specified - accept any */
depend->mod = PM_DEP_MOD_ANY;
STRNCPY(depend->name, str, PKG_NAME_LEN);
2005-03-14 20:51:43 -05:00
}
if(ptr == NULL) {
FREE(str);
return(0);
2005-03-14 20:51:43 -05:00
}
*ptr = '\0';
STRNCPY(depend->name, str, PKG_NAME_LEN);
2005-03-14 20:51:43 -05:00
ptr++;
if(depend->mod != PM_DEP_MOD_EQ) {
2005-03-14 20:51:43 -05:00
ptr++;
}
STRNCPY(depend->version, ptr, PKG_VERSION_LEN);
2005-03-14 20:51:43 -05:00
FREE(str);
return(0);
2005-03-14 20:51:43 -05:00
}
/* return a new alpm_list_t target list containing all packages in the original
2005-03-14 20:51:43 -05:00
* target list, as well as all their un-needed dependencies. By un-needed,
* I mean dependencies that are *only* required for packages in the target
* list, so they can be safely removed. This function is recursive.
*/
alpm_list_t *_alpm_removedeps(pmdb_t *db, alpm_list_t *targs)
2005-03-14 20:51:43 -05:00
{
alpm_list_t *i, *j, *k;
alpm_list_t *newtargs = targs;
2005-03-14 20:51:43 -05:00
ALPM_LOG_FUNC;
2005-03-14 20:51:43 -05:00
if(db == NULL) {
return(newtargs);
}
for(i = targs; i; i = i->next) {
pmpkg_t *pkg = i->data;
if(pkg) {
_alpm_db_read(db, INFRQ_DEPENDS, pkg);
} else {
continue;
}
for(j = pkg->depends; j; j = j->next) {
2005-03-14 20:51:43 -05:00
pmdepend_t depend;
pmpkg_t *dep;
int needed = 0;
if(_alpm_splitdep(j->data, &depend)) {
continue;
}
dep = _alpm_db_get_pkgfromcache(db, depend.name);
if(dep == NULL) {
/* package not found... look for a provisio instead */
k = _alpm_db_whatprovides(db, depend.name);
if(k == NULL) {
/* Not found, that's fine, carry on */
_alpm_log(PM_LOG_DEBUG, _("cannot find package \"%s\" or anything that provides it!"), depend.name);
continue;
}
dep = _alpm_db_get_pkgfromcache(db, ((pmpkg_t *)k->data)->name);
if(dep == NULL) {
2006-05-14 22:19:57 -04:00
_alpm_log(PM_LOG_ERROR, _("dep is NULL!"));
2006-01-18 17:37:16 -05:00
/* wtf */
continue;
}
FREELISTPTR(k);
}
_alpm_db_read(db, INFRQ_DEPENDS, dep);
if(_alpm_pkg_isin(dep->name, targs)) {
2005-03-14 20:51:43 -05:00
continue;
}
2005-03-14 20:51:43 -05:00
/* see if it was explicitly installed */
if(dep->reason == PM_PKG_REASON_EXPLICIT) {
_alpm_log(PM_LOG_DEBUG, _("excluding %s -- explicitly installed"), dep->name);
2005-03-14 20:51:43 -05:00
needed = 1;
}
2005-03-14 20:51:43 -05:00
/* see if other packages need it */
for(k = dep->requiredby; k && !needed; k = k->next) {
pmpkg_t *dummy = _alpm_db_get_pkgfromcache(db, k->data);
if(!_alpm_pkg_isin(dummy->name, targs)) {
2005-03-14 20:51:43 -05:00
needed = 1;
}
}
if(!needed) {
pmpkg_t *pkg = _alpm_pkg_new(dep->name, dep->version);
if(pkg == NULL) {
continue;
}
2005-03-14 20:51:43 -05:00
/* add it to the target list */
2006-05-14 22:19:57 -04:00
_alpm_log(PM_LOG_DEBUG, _("loading ALL info for '%s'"), pkg->name);
_alpm_db_read(db, INFRQ_ALL, pkg);
newtargs = alpm_list_add(newtargs, pkg);
_alpm_log(PM_LOG_DEBUG, _("adding '%s' to the targets"), pkg->name);
newtargs = _alpm_removedeps(db, newtargs);
2005-03-14 20:51:43 -05:00
}
}
}
return(newtargs);
}
/* populates *list with packages that need to be installed to satisfy all
* dependencies (recursive) for syncpkg
2005-03-14 20:51:43 -05:00
*
* make sure *list and *trail are already initialized
*/
int _alpm_resolvedeps(pmdb_t *local, alpm_list_t *dbs_sync, pmpkg_t *syncpkg,
alpm_list_t *list, alpm_list_t *trail, pmtrans_t *trans,
alpm_list_t **data)
2005-03-14 20:51:43 -05:00
{
alpm_list_t *i, *j;
alpm_list_t *targ;
alpm_list_t *deps = NULL;
2005-03-14 20:51:43 -05:00
ALPM_LOG_FUNC;
if(local == NULL || dbs_sync == NULL || syncpkg == NULL) {
return(-1);
}
2005-03-30 17:32:43 -05:00
_alpm_log(PM_LOG_DEBUG, _("started resolving dependencies"));
targ = alpm_list_add(NULL, syncpkg);
deps = _alpm_checkdeps(trans, local, PM_TRANS_TYPE_ADD, targ);
FREELISTPTR(targ);
2005-03-14 20:51:43 -05:00
if(deps == NULL) {
return(0);
}
for(i = deps; i; i = i->next) {
int found = 0;
pmdepmissing_t *miss = i->data;
pmpkg_t *sync = NULL;
2005-03-14 20:51:43 -05:00
/* check if one of the packages in *list already provides this dependency */
2006-01-18 17:37:16 -05:00
for(j = list; j && !found; j = j->next) {
pmpkg_t *sp = (pmpkg_t *)j->data;
if(alpm_list_find_str(sp->provides, miss->depend.name)) {
2006-05-14 22:19:57 -04:00
_alpm_log(PM_LOG_DEBUG, _("%s provides dependency %s -- skipping"),
2006-01-18 17:37:16 -05:00
sp->name, miss->depend.name);
found = 1;
}
}
2006-01-18 17:37:16 -05:00
if(found) {
continue;
}
/* find the package in one of the repositories */
/* check literals */
for(j = dbs_sync; !sync && j; j = j->next) {
sync = _alpm_db_get_pkgfromcache(j->data, miss->depend.name);
_alpm_db_read(j->data, INFRQ_DEPENDS, sync);
}
/* check provides */
for(j = dbs_sync; !sync && j; j = j->next) {
alpm_list_t *provides;
2006-01-18 17:37:16 -05:00
provides = _alpm_db_whatprovides(j->data, miss->depend.name);
if(provides) {
sync = provides->data;
2005-03-14 20:51:43 -05:00
}
FREELISTPTR(provides);
}
if(sync == NULL) {
2006-05-14 22:19:57 -04:00
_alpm_log(PM_LOG_ERROR, _("cannot resolve dependencies for \"%s\" (\"%s\" is not in the package set)"),
miss->target, miss->depend.name);
if(data) {
if((miss = (pmdepmissing_t *)malloc(sizeof(pmdepmissing_t))) == NULL) {
2006-05-14 22:19:57 -04:00
_alpm_log(PM_LOG_ERROR, _("malloc failure: could not allocate %d bytes"), sizeof(pmdepmissing_t));
FREELIST(*data);
pm_errno = PM_ERR_MEMORY;
goto error;
}
*miss = *(pmdepmissing_t *)i->data;
*data = alpm_list_add(*data, miss);
}
pm_errno = PM_ERR_UNSATISFIED_DEPS;
goto error;
}
if(_alpm_pkg_isin(sync->name, list)) {
/* this dep is already in the target list */
2006-05-14 22:19:57 -04:00
_alpm_log(PM_LOG_DEBUG, _("dependency %s is already in the target list -- skipping"),
2006-01-18 17:37:16 -05:00
sync->name);
continue;
}
if(!_alpm_pkg_isin(sync->name, trail)) {
/* check pmo_ignorepkg and pmo_s_ignore to make sure we haven't pulled in
* something we're not supposed to.
*/
int usedep = 1;
if(alpm_list_find_str(handle->ignorepkg, sync->name)) {
pmpkg_t *dummypkg = _alpm_pkg_new(miss->target, NULL);
QUESTION(trans, PM_TRANS_CONV_INSTALL_IGNOREPKG, dummypkg, sync, NULL, &usedep);
FREEPKG(dummypkg);
2005-03-14 20:51:43 -05:00
}
if(usedep) {
trail = alpm_list_add(trail, sync);
if(_alpm_resolvedeps(local, dbs_sync, sync, list, trail, trans, data)) {
2005-03-14 20:51:43 -05:00
goto error;
}
2006-05-14 22:19:57 -04:00
_alpm_log(PM_LOG_DEBUG, _("pulling dependency %s (needed by %s)"),
sync->name, syncpkg->name);
list = alpm_list_add(list, sync);
2005-03-14 20:51:43 -05:00
} else {
2006-05-14 22:19:57 -04:00
_alpm_log(PM_LOG_ERROR, _("cannot resolve dependencies for \"%s\""), miss->target);
if(data) {
if((miss = (pmdepmissing_t *)malloc(sizeof(pmdepmissing_t))) == NULL) {
2006-05-14 22:19:57 -04:00
_alpm_log(PM_LOG_ERROR, _("malloc failure: could not allocate %d bytes"), sizeof(pmdepmissing_t));
FREELIST(*data);
pm_errno = PM_ERR_MEMORY;
goto error;
}
*miss = *(pmdepmissing_t *)i->data;
*data = alpm_list_add(*data, miss);
}
pm_errno = PM_ERR_UNSATISFIED_DEPS;
goto error;
2005-03-14 20:51:43 -05:00
}
} else {
/* cycle detected -- skip it */
2006-05-14 22:19:57 -04:00
_alpm_log(PM_LOG_DEBUG, _("dependency cycle detected: %s"), sync->name);
2005-03-14 20:51:43 -05:00
}
}
_alpm_log(PM_LOG_DEBUG, _("finished resolving dependencies"));
2005-03-14 20:51:43 -05:00
FREELIST(deps);
return(0);
error:
FREELIST(deps);
return(-1);
}
const char SYMEXPORT *alpm_dep_get_target(pmdepmissing_t *miss)
{
ALPM_LOG_FUNC;
/* Sanity checks */
ASSERT(handle != NULL, return(NULL));
ASSERT(miss != NULL, return(NULL));
return miss->target;
}
pmdeptype_t SYMEXPORT alpm_dep_get_type(pmdepmissing_t *miss)
{
ALPM_LOG_FUNC;
/* Sanity checks */
ASSERT(handle != NULL, return(-1));
ASSERT(miss != NULL, return(-1));
return miss->type;
}
pmdepmod_t SYMEXPORT alpm_dep_get_mod(pmdepmissing_t *miss)
{
ALPM_LOG_FUNC;
/* Sanity checks */
ASSERT(handle != NULL, return(-1));
ASSERT(miss != NULL, return(-1));
return miss->depend.mod;
}
const char SYMEXPORT *alpm_dep_get_name(pmdepmissing_t *miss)
{
ALPM_LOG_FUNC;
/* Sanity checks */
ASSERT(handle != NULL, return(NULL));
ASSERT(miss != NULL, return(NULL));
return miss->depend.name;
}
const char SYMEXPORT *alpm_dep_get_version(pmdepmissing_t *miss)
{
ALPM_LOG_FUNC;
/* Sanity checks */
ASSERT(handle != NULL, return(NULL));
ASSERT(miss != NULL, return(NULL));
return miss->depend.version;
}
2005-03-14 20:51:43 -05:00
/* vim: set ts=2 sw=2 noet: */