From dfc85cb5f516ffbcff557522e9703c5c7d88b047 Mon Sep 17 00:00:00 2001 From: VMiklos Date: Thu, 31 May 2007 15:18:24 -0400 Subject: Add a alpm_db_test() function to the backend for checking DB consistency Signed-off-by: Dan McGee --- lib/libalpm/be_files.c | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) (limited to 'lib/libalpm/be_files.c') diff --git a/lib/libalpm/be_files.c b/lib/libalpm/be_files.c index 2cd14e15..b338af9d 100644 --- a/lib/libalpm/be_files.c +++ b/lib/libalpm/be_files.c @@ -65,6 +65,37 @@ int _alpm_db_install(pmdb_t *db, const char *dbfile) return unlink(dbfile); } +alpm_list_t *_alpm_db_test(pmdb_t *db) +{ + struct dirent *ent; + char path[PATH_MAX]; + struct stat buf; + alpm_list_t *ret = NULL; + + while ((ent = readdir(db->handle)) != NULL) { + if(!strcmp(ent->d_name, ".") || !strcmp(ent->d_name, "..")) { + continue; + } + /* check for desc, depends, and files */ + snprintf(path, PATH_MAX, "%s/%s/desc", db->path, ent->d_name); + if(stat(path, &buf)) { + snprintf(path, LOG_STR_LEN, _("%s: description file is missing"), ent->d_name); + ret = alpm_list_add(ret, strdup(path)); + } + snprintf(path, PATH_MAX, "%s/%s/depends", db->path, ent->d_name); + if(stat(path, &buf)) { + snprintf(path, LOG_STR_LEN, _("%s: dependency file is missing"), ent->d_name); + ret = alpm_list_add(ret, strdup(path)); + } + snprintf(path, PATH_MAX, "%s/%s/files", db->path, ent->d_name); + if(stat(path, &buf)) { + snprintf(path, LOG_STR_LEN, _("%s: file list is missing"), ent->d_name); + ret = alpm_list_add(ret, strdup(path)); + } + } + return(ret); +} + int _alpm_db_open(pmdb_t *db) { ALPM_LOG_FUNC; -- cgit v1.2.3-54-g00ecf