]> git.notmuchmail.org Git - notmuch/commitdiff
notmuch search: Add a new "notmuch search --output=files"
authorCarl Worth <cworth@cworth.org>
Thu, 28 Oct 2010 18:33:55 +0000 (11:33 -0700)
committerCarl Worth <cworth@cworth.org>
Thu, 28 Oct 2010 18:35:54 +0000 (11:35 -0700)
Yet another thing that will be extremely handy for scripts.

notmuch-search.c
notmuch.1
notmuch.c

index 93724dd2994422cfd0365eff0ebe7d9fe70bbe4d..5907c2ee23d2f12ea9649c66d423bcba79b4699a 100644 (file)
@@ -24,6 +24,7 @@ typedef enum {
     OUTPUT_SUMMARY,
     OUTPUT_THREADS,
     OUTPUT_MESSAGES,
+    OUTPUT_FILES,
     OUTPUT_TAGS
 } output_t;
 
@@ -240,7 +241,8 @@ do_search_threads (const void *ctx,
 static int
 do_search_messages (const void *ctx,
                    const search_format_t *format,
-                   notmuch_query_t *query)
+                   notmuch_query_t *query,
+                   output_t output)
 {
     notmuch_message_t *message;
     notmuch_messages_t *messages;
@@ -259,7 +261,13 @@ do_search_messages (const void *ctx,
        if (! first_message)
            fputs (format->item_sep, stdout);
 
-       format->item_id (ctx, "id:", notmuch_message_get_message_id (message));
+       if (output == OUTPUT_FILES) {
+           format->item_id (ctx, "",
+                            notmuch_message_get_filename (message));
+       } else { /* output == OUTPUT_MESSAGES */
+           format->item_id (ctx, "id:",
+                            notmuch_message_get_message_id (message));
+       }
 
        first_message = 0;
 
@@ -363,6 +371,8 @@ notmuch_search_command (void *ctx, int argc, char *argv[])
                output = OUTPUT_THREADS;
            } else if (strcmp (opt, "messages") == 0) {
                output = OUTPUT_MESSAGES;
+           } else if (strcmp (opt, "files") == 0) {
+               output = OUTPUT_FILES;
            } else if (strcmp (opt, "tags") == 0) {
                output = OUTPUT_TAGS;
            } else {
@@ -414,7 +424,8 @@ notmuch_search_command (void *ctx, int argc, char *argv[])
        ret = do_search_threads (ctx, format, query, sort, output);
        break;
     case OUTPUT_MESSAGES:
-       ret = do_search_messages (ctx, format, query);
+    case OUTPUT_FILES:
+       ret = do_search_messages (ctx, format, query, output);
        break;
     case OUTPUT_TAGS:
        ret = do_search_tags (ctx, notmuch, format, query);
index 1919176e79ca52aa64e3113bace55b7a5c671263..53fa6ffcdbe89e6dfc7398f98d5f3a1792083517 100644 (file)
--- a/notmuch.1
+++ b/notmuch.1
@@ -182,6 +182,13 @@ either one per line (--format=text) or as a JSON array
 .RE
 .RS 4
 .TP 4
+.B files
+
+Output the filenames of all messages matching the search terms, either
+one per line (--format=text) or as a JSON array (--format=json).
+.RE
+.RS 4
+.TP 4
 .B tags
 
 Output all tags that appear on any message matching the search terms,
index e92f14c546daaeb88a933432bd193fec17138bd8..1faed3e47f8c5e896b3edc0daedb9211d5eff303 100644 (file)
--- a/notmuch.c
+++ b/notmuch.c
@@ -186,6 +186,12 @@ command_t commands[] = {
       "\t\tterms, either one per line (--format=text) or as a JSON array\n"
       "\t\t(--format=json).\n"
       "\n"
+      "\t\tfiles\n"
+      "\n"
+      "\t\tOutput the filenames of all messages matching the search\n"
+      "\t\tterms, either one per line (--format=text) or as a JSON array\n"
+      "\t\t(--format=json).\n"
+      "\n"
       "\t\ttags\n"
       "\n"
       "\t\tOutput all tags that appear on any message matching the search\n"