diff options
author | Aaron Griffin <aaron@archlinux.org> | 2006-10-25 18:15:25 +0000 |
---|---|---|
committer | Aaron Griffin <aaron@archlinux.org> | 2006-10-25 18:15:25 +0000 |
commit | e8275fa9644181e9347e983f74b28f313103b888 (patch) | |
tree | 649389331a75ded168bc08d1d12a9ddc2a92e643 /lib/libalpm/be_files.c | |
parent | ea9e9ae22e674f73028906db7699e3e4207d4f61 (diff) | |
download | pacman-e8275fa9644181e9347e983f74b28f313103b888.tar.xz |
Moved downloaded db unpacking to the backend files, to easier allow conversion
from db to whatever format we need.
Diffstat (limited to 'lib/libalpm/be_files.c')
-rw-r--r-- | lib/libalpm/be_files.c | 62 |
1 files changed, 30 insertions, 32 deletions
diff --git a/lib/libalpm/be_files.c b/lib/libalpm/be_files.c index dad406dc..c2acb66a 100644 --- a/lib/libalpm/be_files.c +++ b/lib/libalpm/be_files.c @@ -44,15 +44,33 @@ #include "error.h" #include "handle.h" + +/* This function is used to convert the downloaded db file to the proper backend + * format + */ +int _alpm_db_install(pmdb_t *db, const char *dbfile) +{ + /* ORE + we should not simply unpack the archive, but better parse it and + db_write each entry (see sync_load_dbarchive to get archive content) */ + _alpm_log(PM_LOG_FLOW2, _("unpacking database '%s'"), dbfile); + + if(_alpm_unpack(dbfile, db->path, NULL)) { + RET_ERR(PM_ERR_SYSTEM, -1); + } + + return unlink(dbfile); +} + int _alpm_db_open(pmdb_t *db) { if(db == NULL) { - return(-1); + RET_ERR(PM_ERR_DB_NULL, -1); } db->handle = opendir(db->path); if(db->handle == NULL) { - return(-1); + RET_ERR(PM_ERR_DB_OPEN, -1); } return(0); @@ -90,7 +108,7 @@ pmpkg_t *_alpm_db_scan(pmdb_t *db, char *target, unsigned int inforeq) pmpkg_t *pkg; if(db == NULL) { - return(NULL); + RET_ERR(PM_ERR_DB_NULL, NULL); } if(target != NULL) { @@ -166,7 +184,12 @@ int _alpm_db_read(pmdb_t *db, unsigned int inforeq, pmpkg_t *info) pmlist_t *tmplist; char *foo; - if(db == NULL || info == NULL || info->name[0] == 0 || info->version[0] == 0) { + if(db == NULL) { + RET_ERR(PM_ERR_DB_NULL, -1); + } + + if(info == NULL || info->name[0] == 0 || info->version[0] == 0) { + _alpm_log(PM_LOG_ERROR, _("invalid package entry provided to _alpm_db_read")); return(-1); } @@ -606,38 +629,13 @@ cleanup: int _alpm_db_remove(pmdb_t *db, pmpkg_t *info) { char path[PATH_MAX]; - int local = 0; if(db == NULL || info == NULL) { - return(-1); + RET_ERR(PM_ERR_DB_NULL, -1); } - if(strcmp(db->treename, "local") == 0) { - local = 1; - } - - /* DESC */ - snprintf(path, PATH_MAX, "%s/%s-%s/desc", db->path, info->name, info->version); - unlink(path); - /* DEPENDS */ - snprintf(path, PATH_MAX, "%s/%s-%s/depends", db->path, info->name, info->version); - unlink(path); - if(local) { - /* FILES */ - snprintf(path, PATH_MAX, "%s/%s-%s/files", db->path, info->name, info->version); - unlink(path); - /* INSTALL */ - snprintf(path, PATH_MAX, "%s/%s-%s/install", db->path, info->name, info->version); - unlink(path); - /* CHANGELOG */ - snprintf(path, PATH_MAX, "%s/%s-%s/changelog", db->path, info->name, info->version); - unlink(path); - } - - /* Package directory */ - snprintf(path, PATH_MAX, "%s/%s-%s", - db->path, info->name, info->version); - if(rmdir(path) == -1) { + snprintf(path, PATH_MAX, "%s/%s-%s", db->path, info->name, info->version); + if(_alpm_rmrf(path) == -1) { return(-1); } |