aboutsummaryrefslogtreecommitdiffhomepage
path: root/notmuch-count.c
diff options
context:
space:
mode:
authorGravatar Jani Nikula <jani@nikula.org>2013-08-17 15:11:29 +0300
committerGravatar David Bremner <bremner@debian.org>2013-08-24 11:42:39 +0200
commit431571242cd08a45757f229d66027afe83446faf (patch)
tree7ed53e2697c1ace86d8616783728c80681ca3103 /notmuch-count.c
parentcbc1b143db8ed19f9a11408815b956d9f42c339b (diff)
cli: add --output=files option to notmuch count
Add support for querying the total number of files associated with the messages matching the search. This is mostly useful with an id:<message-id> query for a single message.
Diffstat (limited to 'notmuch-count.c')
-rw-r--r--notmuch-count.c37
1 files changed, 37 insertions, 0 deletions
diff --git a/notmuch-count.c b/notmuch-count.c
index 8772cff8..01e4e301 100644
--- a/notmuch-count.c
+++ b/notmuch-count.c
@@ -24,6 +24,7 @@
enum {
OUTPUT_THREADS,
OUTPUT_MESSAGES,
+ OUTPUT_FILES,
};
/* The following is to allow future options to be added more easily */
@@ -32,6 +33,38 @@ enum {
EXCLUDE_FALSE,
};
+static unsigned int
+count_files (notmuch_query_t *query)
+{
+ notmuch_messages_t *messages;
+ notmuch_message_t *message;
+ notmuch_filenames_t *filenames;
+ unsigned int count = 0;
+
+ messages = notmuch_query_search_messages (query);
+ if (messages == NULL)
+ return 0;
+
+ for (;
+ notmuch_messages_valid (messages);
+ notmuch_messages_move_to_next (messages)) {
+ message = notmuch_messages_get (messages);
+ filenames = notmuch_message_get_filenames (message);
+
+ for (;
+ notmuch_filenames_valid (filenames);
+ notmuch_filenames_move_to_next (filenames))
+ count++;
+
+ notmuch_filenames_destroy (filenames);
+ notmuch_message_destroy (message);
+ }
+
+ notmuch_messages_destroy (messages);
+
+ return count;
+}
+
static int
print_count (notmuch_database_t *notmuch, const char *query_str,
const char **exclude_tags, size_t exclude_tags_length, int output)
@@ -55,6 +88,9 @@ print_count (notmuch_database_t *notmuch, const char *query_str,
case OUTPUT_THREADS:
printf ("%u\n", notmuch_query_count_threads (query));
break;
+ case OUTPUT_FILES:
+ printf ("%u\n", count_files (query));
+ break;
}
notmuch_query_destroy (query);
@@ -102,6 +138,7 @@ notmuch_count_command (notmuch_config_t *config, int argc, char *argv[])
{ NOTMUCH_OPT_KEYWORD, &output, "output", 'o',
(notmuch_keyword_t []){ { "threads", OUTPUT_THREADS },
{ "messages", OUTPUT_MESSAGES },
+ { "files", OUTPUT_FILES },
{ 0, 0 } } },
{ NOTMUCH_OPT_KEYWORD, &exclude, "exclude", 'x',
(notmuch_keyword_t []){ { "true", EXCLUDE_TRUE },