1 /* notmuch - Not much of an email program, (just index and search)
3 * Copyright © 2009 Carl Worth
4 * Copyright © 2009 Keith Packard
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see http://www.gnu.org/licenses/ .
19 * Author: Keith Packard <keithp@keithp.com>
22 #include "notmuch-client.h"
30 /* The following is to allow future options to be added more easily */
37 count_files (notmuch_query_t *query)
39 notmuch_messages_t *messages;
40 notmuch_message_t *message;
41 notmuch_filenames_t *filenames;
42 unsigned int count = 0;
44 messages = notmuch_query_search_messages (query);
49 notmuch_messages_valid (messages);
50 notmuch_messages_move_to_next (messages)) {
51 message = notmuch_messages_get (messages);
52 filenames = notmuch_message_get_filenames (message);
55 notmuch_filenames_valid (filenames);
56 notmuch_filenames_move_to_next (filenames))
59 notmuch_filenames_destroy (filenames);
60 notmuch_message_destroy (message);
63 notmuch_messages_destroy (messages);
69 print_count (notmuch_database_t *notmuch, const char *query_str,
70 const char **exclude_tags, size_t exclude_tags_length, int output)
72 notmuch_query_t *query;
75 query = notmuch_query_create (notmuch, query_str);
77 fprintf (stderr, "Out of memory\n");
81 for (i = 0; i < exclude_tags_length; i++)
82 notmuch_query_add_tag_exclude (query, exclude_tags[i]);
86 printf ("%u\n", notmuch_query_count_messages (query));
89 printf ("%u\n", notmuch_query_count_threads (query));
92 printf ("%u\n", count_files (query));
96 notmuch_query_destroy (query);
102 count_file (notmuch_database_t *notmuch, FILE *input, const char **exclude_tags,
103 size_t exclude_tags_length, int output)
110 while (!ret && (line_len = getline (&line, &line_size, input)) != -1) {
111 chomp_newline (line);
112 ret = print_count (notmuch, line, exclude_tags, exclude_tags_length,
123 notmuch_count_command (notmuch_config_t *config, int argc, char *argv[])
125 notmuch_database_t *notmuch;
128 int output = OUTPUT_MESSAGES;
129 int exclude = EXCLUDE_TRUE;
130 const char **search_exclude_tags = NULL;
131 size_t search_exclude_tags_length = 0;
132 notmuch_bool_t batch = FALSE;
134 char *input_file_name = NULL;
137 notmuch_opt_desc_t options[] = {
138 { NOTMUCH_OPT_KEYWORD, &output, "output", 'o',
139 (notmuch_keyword_t []){ { "threads", OUTPUT_THREADS },
140 { "messages", OUTPUT_MESSAGES },
141 { "files", OUTPUT_FILES },
143 { NOTMUCH_OPT_KEYWORD, &exclude, "exclude", 'x',
144 (notmuch_keyword_t []){ { "true", EXCLUDE_TRUE },
145 { "false", EXCLUDE_FALSE },
147 { NOTMUCH_OPT_BOOLEAN, &batch, "batch", 0, 0 },
148 { NOTMUCH_OPT_STRING, &input_file_name, "input", 'i', 0 },
152 opt_index = parse_arguments (argc, argv, options, 1);
158 if (input_file_name) {
160 input = fopen (input_file_name, "r");
162 fprintf (stderr, "Error opening %s for reading: %s\n",
163 input_file_name, strerror (errno));
168 if (batch && opt_index != argc) {
169 fprintf (stderr, "--batch and query string are not compatible\n");
173 if (notmuch_database_open (notmuch_config_get_database_path (config),
174 NOTMUCH_DATABASE_MODE_READ_ONLY, ¬much))
177 query_str = query_string_from_args (config, argc-opt_index, argv+opt_index);
178 if (query_str == NULL) {
179 fprintf (stderr, "Out of memory.\n");
183 if (exclude == EXCLUDE_TRUE) {
184 search_exclude_tags = notmuch_config_get_search_exclude_tags
185 (config, &search_exclude_tags_length);
189 ret = count_file (notmuch, input, search_exclude_tags,
190 search_exclude_tags_length, output);
192 ret = print_count (notmuch, query_str, search_exclude_tags,
193 search_exclude_tags_length, output);
195 notmuch_database_destroy (notmuch);