From 137a4086de310e2d31cb719806e01cd9eb414ec0 Mon Sep 17 00:00:00 2001
From: Allan McRae <allan@archlinux.org>
Date: Thu, 18 Jun 2015 13:19:09 +1000
Subject: 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>
---
 src/pacman/files.c | 38 ++++++++++++++++++++++++++++++++++++--
 1 file changed, 36 insertions(+), 2 deletions(-)

(limited to 'src')

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;
 }
 
 
-- 
cgit v1.2.3-70-g09d2