2005-03-14 20:51:43 -05:00
|
|
|
/*
|
|
|
|
* cache.c
|
|
|
|
*
|
2006-01-02 14:55:35 -05:00
|
|
|
* Copyright (c) 2002-2006 by Judd Vinet <jvinet@zeroflux.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 "config.h"
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <sys/stat.h>
|
2006-05-14 22:19:57 -04:00
|
|
|
#include <libintl.h>
|
2005-03-14 20:51:43 -05:00
|
|
|
/* pacman */
|
2005-04-05 13:21:08 -04:00
|
|
|
#include "log.h"
|
|
|
|
#include "alpm.h"
|
2007-01-19 04:28:44 -05:00
|
|
|
#include "alpm_list.h"
|
2005-03-29 12:18:59 -05:00
|
|
|
#include "util.h"
|
2006-10-31 01:39:59 -05:00
|
|
|
#include "error.h"
|
2005-03-14 20:51:43 -05:00
|
|
|
#include "package.h"
|
|
|
|
#include "group.h"
|
|
|
|
#include "db.h"
|
|
|
|
#include "cache.h"
|
|
|
|
|
|
|
|
/* Returns a new package cache from db.
|
|
|
|
* It frees the cache if it already exists.
|
|
|
|
*/
|
2007-01-23 22:02:53 -05:00
|
|
|
int _alpm_db_load_pkgcache(pmdb_t *db, pmdbinfrq_t infolevel)
|
2005-03-14 20:51:43 -05:00
|
|
|
{
|
|
|
|
pmpkg_t *info;
|
2007-01-11 12:44:39 -05:00
|
|
|
int count = 0;
|
2005-10-20 16:11:30 -04:00
|
|
|
/* The group cache needs INFRQ_DESC as well */
|
2007-01-23 22:02:53 -05:00
|
|
|
/* pmdbinfrq_t infolevel = INFRQ_DEPENDS | INFRQ_DESC;*/
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2007-01-30 03:14:10 -05:00
|
|
|
ALPM_LOG_FUNC;
|
|
|
|
|
2005-03-14 20:51:43 -05:00
|
|
|
if(db == NULL) {
|
|
|
|
return(-1);
|
|
|
|
}
|
|
|
|
|
2006-02-17 17:35:26 -05:00
|
|
|
_alpm_db_free_pkgcache(db);
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2006-05-14 22:19:57 -04:00
|
|
|
_alpm_log(PM_LOG_DEBUG, _("loading package cache (infolevel=%#x) for repository '%s'"),
|
2005-05-03 13:43:02 -04:00
|
|
|
infolevel, db->treename);
|
2005-04-05 13:21:08 -04:00
|
|
|
|
2006-02-17 17:35:26 -05:00
|
|
|
_alpm_db_rewind(db);
|
|
|
|
while((info = _alpm_db_scan(db, NULL, infolevel)) != NULL) {
|
2005-03-14 20:51:43 -05:00
|
|
|
info->origin = PKG_FROM_CACHE;
|
|
|
|
info->data = db;
|
2006-11-01 01:30:47 -05:00
|
|
|
/* add to the collection */
|
2007-01-19 04:28:44 -05:00
|
|
|
db->pkgcache = alpm_list_add(db->pkgcache, info);
|
2007-01-11 12:44:39 -05:00
|
|
|
count++;
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
|
|
|
|
2007-01-19 04:28:44 -05:00
|
|
|
db->pkgcache = alpm_list_msort(db->pkgcache, count, _alpm_pkg_cmp);
|
2005-03-14 20:51:43 -05:00
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
|
2006-02-17 17:35:26 -05:00
|
|
|
void _alpm_db_free_pkgcache(pmdb_t *db)
|
2005-03-14 20:51:43 -05:00
|
|
|
{
|
2007-01-30 03:14:10 -05:00
|
|
|
ALPM_LOG_FUNC;
|
|
|
|
|
2006-01-16 17:27:09 -05:00
|
|
|
if(db == NULL || db->pkgcache == NULL) {
|
2005-03-14 20:51:43 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2006-05-14 22:19:57 -04:00
|
|
|
_alpm_log(PM_LOG_DEBUG, _("freeing package cache for repository '%s'"),
|
2005-12-31 11:54:57 -05:00
|
|
|
db->treename);
|
|
|
|
|
2005-03-14 20:51:43 -05:00
|
|
|
FREELISTPKGS(db->pkgcache);
|
|
|
|
|
|
|
|
if(db->grpcache) {
|
2006-02-17 17:35:26 -05:00
|
|
|
_alpm_db_free_grpcache(db);
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-01-23 22:02:53 -05:00
|
|
|
alpm_list_t *_alpm_db_get_pkgcache(pmdb_t *db, pmdbinfrq_t infolevel)
|
2005-03-14 20:51:43 -05:00
|
|
|
{
|
2007-01-30 03:14:10 -05:00
|
|
|
ALPM_LOG_FUNC;
|
|
|
|
|
2005-03-14 20:51:43 -05:00
|
|
|
if(db == NULL) {
|
|
|
|
return(NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(db->pkgcache == NULL) {
|
2006-10-31 01:39:59 -05:00
|
|
|
_alpm_db_load_pkgcache(db, infolevel);
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
|
|
|
|
2006-10-31 01:39:59 -05:00
|
|
|
_alpm_db_ensure_pkgcache(db, infolevel);
|
|
|
|
|
2005-03-14 20:51:43 -05:00
|
|
|
return(db->pkgcache);
|
|
|
|
}
|
|
|
|
|
2007-01-23 22:02:53 -05:00
|
|
|
int _alpm_db_ensure_pkgcache(pmdb_t *db, pmdbinfrq_t infolevel)
|
2006-10-31 01:39:59 -05:00
|
|
|
{
|
|
|
|
int reloaded = 0;
|
|
|
|
/* for each pkg, check and reload if the requested
|
|
|
|
* info is not already cached
|
|
|
|
*/
|
|
|
|
|
2007-01-30 03:14:10 -05:00
|
|
|
ALPM_LOG_FUNC;
|
|
|
|
|
2007-01-19 04:28:44 -05:00
|
|
|
alpm_list_t *p;
|
2006-10-31 01:39:59 -05:00
|
|
|
for(p = db->pkgcache; p; p = p->next) {
|
|
|
|
pmpkg_t *pkg = (pmpkg_t *)p->data;
|
|
|
|
if(infolevel != INFRQ_NONE && !(pkg->infolevel & infolevel)) {
|
2007-01-24 03:51:50 -05:00
|
|
|
if(_alpm_db_read(db, infolevel, pkg) == -1) {
|
|
|
|
_alpm_log(PM_LOG_ERROR, _("failed to read package '%s-%s', removing from package cache"),
|
|
|
|
pkg->name, pkg->version);
|
|
|
|
p = alpm_list_remove_node(p);
|
|
|
|
} else {
|
|
|
|
reloaded = 1;
|
|
|
|
}
|
2006-10-31 01:39:59 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if(reloaded) {
|
|
|
|
_alpm_log(PM_LOG_DEBUG, _("package cache reloaded (infolevel=%#x) for repository '%s'"),
|
|
|
|
infolevel, db->treename);
|
|
|
|
}
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
|
2006-02-17 17:35:26 -05:00
|
|
|
int _alpm_db_add_pkgincache(pmdb_t *db, pmpkg_t *pkg)
|
2005-04-23 13:18:31 -04:00
|
|
|
{
|
|
|
|
pmpkg_t *newpkg;
|
|
|
|
|
2007-01-30 03:14:10 -05:00
|
|
|
ALPM_LOG_FUNC;
|
|
|
|
|
2005-04-23 13:18:31 -04:00
|
|
|
if(db == NULL || pkg == NULL) {
|
|
|
|
return(-1);
|
|
|
|
}
|
|
|
|
|
2006-02-17 17:35:26 -05:00
|
|
|
newpkg = _alpm_pkg_dup(pkg);
|
2005-04-23 13:18:31 -04:00
|
|
|
if(newpkg == NULL) {
|
|
|
|
return(-1);
|
|
|
|
}
|
2006-05-14 22:19:57 -04:00
|
|
|
_alpm_log(PM_LOG_DEBUG, _("adding entry '%s' in '%s' cache"), newpkg->name, db->treename);
|
2007-01-19 04:28:44 -05:00
|
|
|
db->pkgcache = alpm_list_add_sorted(db->pkgcache, newpkg, _alpm_pkg_cmp);
|
2005-04-23 13:18:31 -04:00
|
|
|
|
2006-02-17 17:35:26 -05:00
|
|
|
_alpm_db_free_grpcache(db);
|
2005-04-23 13:18:31 -04:00
|
|
|
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
|
2006-02-17 17:35:26 -05:00
|
|
|
int _alpm_db_remove_pkgfromcache(pmdb_t *db, pmpkg_t *pkg)
|
2005-04-23 13:18:31 -04:00
|
|
|
{
|
2006-10-31 01:39:59 -05:00
|
|
|
void *vdata;
|
2005-05-03 13:43:02 -04:00
|
|
|
pmpkg_t *data;
|
2005-04-23 13:18:31 -04:00
|
|
|
|
2007-01-30 03:14:10 -05:00
|
|
|
ALPM_LOG_FUNC;
|
|
|
|
|
2005-05-03 13:43:02 -04:00
|
|
|
if(db == NULL || pkg == NULL) {
|
2005-04-23 13:18:31 -04:00
|
|
|
return(-1);
|
|
|
|
}
|
|
|
|
|
2007-01-19 04:28:44 -05:00
|
|
|
db->pkgcache = alpm_list_remove(db->pkgcache, pkg, _alpm_pkg_cmp, &vdata);
|
2006-10-31 01:39:59 -05:00
|
|
|
data = vdata;
|
2005-05-03 13:43:02 -04:00
|
|
|
if(data == NULL) {
|
|
|
|
/* package not found */
|
2005-04-23 13:18:31 -04:00
|
|
|
return(-1);
|
|
|
|
}
|
|
|
|
|
2006-05-14 22:19:57 -04:00
|
|
|
_alpm_log(PM_LOG_DEBUG, _("removing entry '%s' from '%s' cache"), pkg->name, db->treename);
|
2005-05-03 13:43:02 -04:00
|
|
|
FREEPKG(data);
|
|
|
|
|
2006-02-17 17:35:26 -05:00
|
|
|
_alpm_db_free_grpcache(db);
|
2005-04-23 13:18:31 -04:00
|
|
|
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
|
2006-02-17 17:35:26 -05:00
|
|
|
pmpkg_t *_alpm_db_get_pkgfromcache(pmdb_t *db, char *target)
|
2005-03-14 20:51:43 -05:00
|
|
|
{
|
2007-01-30 03:14:10 -05:00
|
|
|
ALPM_LOG_FUNC;
|
|
|
|
|
2006-01-18 17:37:16 -05:00
|
|
|
if(db == NULL) {
|
2005-03-14 20:51:43 -05:00
|
|
|
return(NULL);
|
|
|
|
}
|
|
|
|
|
2006-10-31 01:39:59 -05:00
|
|
|
return(_alpm_pkg_isin(target, _alpm_db_get_pkgcache(db, INFRQ_NONE)));
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Returns a new group cache from db.
|
|
|
|
*/
|
2006-02-17 17:35:26 -05:00
|
|
|
int _alpm_db_load_grpcache(pmdb_t *db)
|
2005-03-14 20:51:43 -05:00
|
|
|
{
|
2007-01-19 04:28:44 -05:00
|
|
|
alpm_list_t *lp;
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2007-01-30 03:14:10 -05:00
|
|
|
ALPM_LOG_FUNC;
|
|
|
|
|
2005-03-14 20:51:43 -05:00
|
|
|
if(db == NULL) {
|
|
|
|
return(-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(db->pkgcache == NULL) {
|
2006-10-31 01:39:59 -05:00
|
|
|
_alpm_db_load_pkgcache(db, INFRQ_DESC);
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
|
|
|
|
2006-05-14 22:19:57 -04:00
|
|
|
_alpm_log(PM_LOG_DEBUG, _("loading group cache for repository '%s'"), db->treename);
|
2005-04-05 13:21:08 -04:00
|
|
|
|
2006-10-31 01:39:59 -05:00
|
|
|
for(lp = _alpm_db_get_pkgcache(db, INFRQ_DESC); lp; lp = lp->next) {
|
2007-01-19 04:28:44 -05:00
|
|
|
alpm_list_t *i;
|
2005-03-14 20:51:43 -05:00
|
|
|
pmpkg_t *pkg = lp->data;
|
|
|
|
|
|
|
|
for(i = pkg->groups; i; i = i->next) {
|
2007-01-29 22:46:33 -05:00
|
|
|
if(!alpm_list_find_str(db->grpcache, i->data)) {
|
2006-02-17 17:35:26 -05:00
|
|
|
pmgrp_t *grp = _alpm_grp_new();
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2005-03-29 12:18:59 -05:00
|
|
|
STRNCPY(grp->name, (char *)i->data, GRP_NAME_LEN);
|
2007-01-19 04:28:44 -05:00
|
|
|
grp->packages = alpm_list_add_sorted(grp->packages, pkg->name, _alpm_grp_cmp);
|
|
|
|
db->grpcache = alpm_list_add_sorted(db->grpcache, grp, _alpm_grp_cmp);
|
2005-03-14 20:51:43 -05:00
|
|
|
} else {
|
2007-01-19 04:28:44 -05:00
|
|
|
alpm_list_t *j;
|
2005-03-14 20:51:43 -05:00
|
|
|
|
|
|
|
for(j = db->grpcache; j; j = j->next) {
|
|
|
|
pmgrp_t *grp = j->data;
|
|
|
|
|
|
|
|
if(strcmp(grp->name, i->data) == 0) {
|
2007-01-29 22:46:33 -05:00
|
|
|
if(!alpm_list_find_str(grp->packages, pkg->name)) {
|
2007-01-19 04:28:44 -05:00
|
|
|
grp->packages = alpm_list_add_sorted(grp->packages, (char *)pkg->name, _alpm_grp_cmp);
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
|
2006-02-17 17:35:26 -05:00
|
|
|
void _alpm_db_free_grpcache(pmdb_t *db)
|
2005-03-14 20:51:43 -05:00
|
|
|
{
|
2007-01-19 04:28:44 -05:00
|
|
|
alpm_list_t *lg;
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2007-01-30 03:14:10 -05:00
|
|
|
ALPM_LOG_FUNC;
|
|
|
|
|
2006-01-16 17:27:09 -05:00
|
|
|
if(db == NULL || db->grpcache == NULL) {
|
2005-03-14 20:51:43 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
for(lg = db->grpcache; lg; lg = lg->next) {
|
|
|
|
pmgrp_t *grp = lg->data;
|
|
|
|
|
2005-03-28 02:45:24 -05:00
|
|
|
FREELISTPTR(grp->packages);
|
2005-03-14 20:51:43 -05:00
|
|
|
FREEGRP(lg->data);
|
|
|
|
}
|
|
|
|
FREELIST(db->grpcache);
|
|
|
|
}
|
|
|
|
|
2007-01-19 04:28:44 -05:00
|
|
|
alpm_list_t *_alpm_db_get_grpcache(pmdb_t *db)
|
2005-03-14 20:51:43 -05:00
|
|
|
{
|
2007-01-30 03:14:10 -05:00
|
|
|
ALPM_LOG_FUNC;
|
|
|
|
|
2005-03-14 20:51:43 -05:00
|
|
|
if(db == NULL) {
|
|
|
|
return(NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(db->grpcache == NULL) {
|
2006-02-17 17:35:26 -05:00
|
|
|
_alpm_db_load_grpcache(db);
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return(db->grpcache);
|
|
|
|
}
|
|
|
|
|
2006-02-17 17:35:26 -05:00
|
|
|
pmgrp_t *_alpm_db_get_grpfromcache(pmdb_t *db, char *target)
|
2005-03-14 20:51:43 -05:00
|
|
|
{
|
2007-01-19 04:28:44 -05:00
|
|
|
alpm_list_t *i;
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2007-01-30 03:14:10 -05:00
|
|
|
ALPM_LOG_FUNC;
|
|
|
|
|
2005-03-14 20:51:43 -05:00
|
|
|
if(db == NULL || target == NULL || strlen(target) == 0) {
|
|
|
|
return(NULL);
|
|
|
|
}
|
|
|
|
|
2006-02-17 17:35:26 -05:00
|
|
|
for(i = _alpm_db_get_grpcache(db); i; i = i->next) {
|
2005-03-14 20:51:43 -05:00
|
|
|
pmgrp_t *info = i->data;
|
|
|
|
|
|
|
|
if(strcmp(info->name, target) == 0) {
|
|
|
|
return(info);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return(NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* vim: set ts=2 sw=2 noet: */
|