summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAllan McRae <allan@archlinux.org>2015-06-18 05:19:09 +0200
committerAllan McRae <allan@archlinux.org>2015-07-15 02:57:30 +0200
commit137a4086de310e2d31cb719806e01cd9eb414ec0 (patch)
treea792a435ae5f7bcd7bb75d5c2f507c52186fdc18 /src
parent488ca2426568163721153822af8269447e481c7d (diff)
downloadpacman-137a4086de310e2d31cb719806e01cd9eb414ec0.tar.gz
pacman-137a4086de310e2d31cb719806e01cd9eb414ec0.tar.xz
Implement listing files from sync packages
Does the equivalent of the -Ql option for local packages e.g. pacman -Fl glibc Signed-off-by: Allan McRae <allan@archlinux.org>
Diffstat (limited to 'src')
-rw-r--r--src/pacman/files.c38
1 files changed, 36 insertions, 2 deletions
diff --git a/src/pacman/files.c b/src/pacman/files.c
index 667e8cc7..695f13d8 100644
--- a/src/pacman/files.c
+++ b/src/pacman/files.c
@@ -24,6 +24,7 @@
#include "pacman.h"
#include "util.h"
#include "conf.h"
+#include "package.h"
static int files_fileowner(alpm_list_t *syncs, alpm_list_t *targets) {
@@ -86,8 +87,41 @@ static int files_search(alpm_list_t __attribute__((unused)) *syncs, alpm_list_t
return 0;
}
-static int files_list(alpm_list_t __attribute__((unused)) *syncs, alpm_list_t __attribute__((unused)) *targets) {
- return 0;
+static int files_list(alpm_list_t *syncs, alpm_list_t *targets) {
+ alpm_list_t *i, *j;
+ int ret = 0, found = 0;
+
+ if(targets != NULL) {
+ for(i = targets; i; i = alpm_list_next(i)) {
+ /* TODO: handle repo/pkg stype arguements */
+ char *targ = i->data;
+
+ for(j = syncs; j; j = alpm_list_next(j)) {
+ alpm_pkg_t *pkg;
+ alpm_db_t *db = j->data;
+ if((pkg = alpm_db_get_pkg(db, targ)) != NULL) {
+ found = 1;
+ dump_pkg_files(pkg, config->quiet);
+ }
+ }
+ if(!found) {
+ pm_printf(ALPM_LOG_ERROR,
+ _("package '%s' was not found\n"), targ);
+ ret += 1;
+ }
+ }
+ } else {
+ for(i = syncs; i; i = alpm_list_next(i)) {
+ alpm_db_t *db = i->data;
+
+ for(j = alpm_db_get_pkgcache(db); j; j = alpm_list_next(j)) {
+ alpm_pkg_t *pkg = j->data;
+ dump_pkg_files(pkg, config->quiet);
+ }
+ }
+ }
+
+ return ret;
}