summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc-André Lureau <marcandre.lureau@gmail.com>2015-03-12 22:38:26 +0100
committerMarc-André Lureau <marcandre.lureau@gmail.com>2015-03-12 22:38:26 +0100
commita5a1c6d7759b5aebf2d7c87e7e4c0acc71a44e36 (patch)
treef9159d2c1becda3c0a99d67cb10d22c4888f1a8c
parent3961b144217ccfd28c0b2b8bbf5357b063ba9c42 (diff)
downloadgcab-a5a1c6d7759b5aebf2d7c87e7e4c0acc71a44e36.tar.gz
gcab: add option to list file details
-rw-r--r--gcab.c30
1 files changed, 25 insertions, 5 deletions
diff --git a/gcab.c b/gcab.c
index 88836f0..6be914c 100644
--- a/gcab.c
+++ b/gcab.c
@@ -101,6 +101,7 @@ main (int argc, char *argv[])
int space = 0;
int compress = 0;
int list = 0;
+ int list_details = 0;
int create = 0;
int extract = 0;
int dump_reserved = 0;
@@ -111,6 +112,7 @@ main (int argc, char *argv[])
{ "extract", 'x', 0, G_OPTION_ARG_NONE, &extract, N_("Extract all files"), NULL },
{ "dump-reserved", 'D', 0, G_OPTION_ARG_NONE, &dump_reserved, N_("Dump reserved and extra data"), NULL },
{ "list", 't', 0, G_OPTION_ARG_NONE, &list, N_("List content"), NULL },
+ { "list-details", 'l', 0, G_OPTION_ARG_NONE, &list_details, N_("List content with file details"), NULL },
{ "directory", 'C', 0, G_OPTION_ARG_FILENAME, &change, N_("Change to directory DIR"), N_("DIR") },
{ "zip", 'z', 0, G_OPTION_ARG_NONE, &compress, N_("Use zip compression"), NULL },
{ "nopath", 'n', 0, G_OPTION_ARG_NONE, &nopath, N_("Do not include path"), NULL },
@@ -148,7 +150,7 @@ individual files from the archive.\
return 0;
}
- if ((list + extract + create + dump_reserved) != 1)
+ if ((list + extract + create + dump_reserved + list_details) != 1)
gcab_error (_("Please specify a single operation."));
if (!args || args[0] == NULL)
@@ -161,7 +163,7 @@ individual files from the archive.\
GOutputStream *output;
GFile *cwd;
- if (list || extract || dump_reserved) {
+ if (list || list_details || extract || dump_reserved) {
GFile *file = g_file_new_for_commandline_arg (args[0]);
GInputStream *in = G_INPUT_STREAM (g_file_read (file, cancellable, &error));
@@ -170,12 +172,30 @@ individual files from the archive.\
if (!gcab_cabinet_load (cabinet, in, cancellable, &error))
gcab_error (_("error reading %s: %s\n"), args[0], (error && error->message) ? error->message : "unknown error");
- if (list) {
+ if (list || list_details) {
GPtrArray *folders = gcab_cabinet_get_folders (cabinet);
for (i = 0; i < folders->len; i++) {
GSList *l, *files = gcab_folder_get_files (g_ptr_array_index (folders, i));
- for (l = files; l != NULL; l = l->next)
- g_print ("%s\n", gcab_file_get_name (GCAB_FILE (l->data)));
+
+ for (l = files; l != NULL; l = l->next) {
+ if (list_details) {
+ gchar date[32];
+ struct tm *tm;
+ GTimeVal tv;
+
+ gcab_file_get_date (GCAB_FILE (l->data), &tv);
+ tm = localtime (&tv.tv_sec);
+ strftime (date, sizeof (date), "%Y-%m-%d %H:%M:%S", tm);
+
+ g_print ("%s %u %s 0x%X\n",
+ gcab_file_get_name (GCAB_FILE (l->data)),
+ gcab_file_get_size (GCAB_FILE (l->data)),
+ date,
+ gcab_file_get_attributes (GCAB_FILE (l->data)));
+ } else {
+ g_print ("%s\n", gcab_file_get_name (GCAB_FILE (l->data)));
+ }
+ }
g_slist_free (files);
}
} else if (extract) {