summaryrefslogtreecommitdiff
path: root/src/pacman/sync.c
diff options
context:
space:
mode:
authorAurelien Foret <aurelien@archlinux.org>2005-03-16 21:21:06 +0000
committerAurelien Foret <aurelien@archlinux.org>2005-03-16 21:21:06 +0000
commitab7ca5dc72d4bd1eb08d210ff911352d23bd1072 (patch)
tree035c22bcfebbf3e00f88368ae02ac0263b058f91 /src/pacman/sync.c
parent2ce1105900fcbb1fa2ad176dae74e5f5290af4a4 (diff)
- reworked sync_synctree() to make use of alpm_db_update()
- dropped unpack()
Diffstat (limited to 'src/pacman/sync.c')
-rw-r--r--src/pacman/sync.c46
1 files changed, 19 insertions, 27 deletions
diff --git a/src/pacman/sync.c b/src/pacman/sync.c
index e4fe867c..e581579e 100644
--- a/src/pacman/sync.c
+++ b/src/pacman/sync.c
@@ -156,52 +156,44 @@ static int sync_cleancache(int level)
static int sync_synctree(list_t *syncs)
{
- char path[PATH_MAX];
- mode_t oldmask;
- list_t *files = NULL;
+ char *root, *dbpath;
list_t *i;
- int success = 0;
+ int ret = 0;
+
+ alpm_get_option(PM_OPT_ROOT, (long *)&root);
+ alpm_get_option(PM_OPT_DBPATH, (long *)&dbpath);
for(i = syncs; i; i = i->next) {
+ char path[PATH_MAX];
+ list_t *files = NULL;
sync_t *sync = (sync_t *)i->data;
/* build a one-element list */
snprintf(path, PATH_MAX, "%s"PM_EXT_DB, sync->treename);
files = list_add(files, strdup(path));
- success = 1;
- if(downloadfiles(sync->servers, pmo_dbpath, files)) {
+ snprintf(path, PATH_MAX, "%s%s", root, dbpath);
+
+ if(downloadfiles(sync->servers, path, files)) {
fprintf(stderr, "failed to synchronize %s\n", sync->treename);
- success = 0;
+ FREELIST(files);
+ ret--;
+ continue;
}
FREELIST(files);
- snprintf(path, PATH_MAX, "%s/%s"PM_EXT_DB, pmo_dbpath, sync->treename);
-
- if(success) {
- char ldir[PATH_MAX];
-
- snprintf(ldir, PATH_MAX, "%s/%s", pmo_dbpath, sync->treename);
- /* remove the old dir */
- vprint("removing %s (if it exists)\n", ldir);
- rmrf(ldir);
- /* make the new dir */
- oldmask = umask(0000);
- mkdir(ldir, 0755);
- umask(oldmask);
-
- /* uncompress the sync database */
- vprint("Unpacking %s...\n", path);
- if(unpack(path, ldir, NULL)) {
- return(1);
- }
+ snprintf(path, PATH_MAX, "%s%s/%s"PM_EXT_DB, root, dbpath, sync->treename);
+ if(alpm_db_update(sync->treename, path) == -1) {
+ fprintf(stderr, "error: %s\n", alpm_strerror(pm_errno));
+ ret--;
}
+
/* remove the .tar.gz */
unlink(path);
}
- return(!success);
+ return(ret);
}
static int sync_search(list_t *syncs, list_t *targets)