1 /* notmuch - Not much of an email program, (just index and search)
3 * Copyright © 2009 Carl Worth
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see http://www.gnu.org/licenses/ .
18 * Author: Carl Worth <cworth@cworth.org>
21 #include "notmuch-client.h"
23 #include "string-util.h"
27 OUTPUT_SUMMARY = 1 << 0,
28 OUTPUT_THREADS = 1 << 1,
29 OUTPUT_MESSAGES = 1 << 2,
30 OUTPUT_FILES = 1 << 3,
34 OUTPUT_SENDER = 1 << 5,
35 OUTPUT_RECIPIENTS = 1 << 6,
36 OUTPUT_COUNT = 1 << 7,
47 notmuch_database_t *notmuch;
48 format_sel_t format_sel;
50 notmuch_exclude_t exclude;
51 notmuch_query_t *query;
57 GHashTable *addresses;
66 /* Return two stable query strings that identify exactly the matched
67 * and unmatched messages currently in thread. If there are no
68 * matched or unmatched messages, the returned buffers will be
71 get_thread_query (notmuch_thread_t *thread,
72 char **matched_out, char **unmatched_out)
74 notmuch_messages_t *messages;
76 size_t escaped_len = 0;
78 *matched_out = *unmatched_out = NULL;
80 for (messages = notmuch_thread_get_messages (thread);
81 notmuch_messages_valid (messages);
82 notmuch_messages_move_to_next (messages))
84 notmuch_message_t *message = notmuch_messages_get (messages);
85 const char *mid = notmuch_message_get_message_id (message);
86 /* Determine which query buffer to extend */
87 char **buf = notmuch_message_get_flag (
88 message, NOTMUCH_MESSAGE_FLAG_MATCH) ? matched_out : unmatched_out;
89 /* Add this message's id: query. Since "id" is an exclusive
90 * prefix, it is implicitly 'or'd together, so we only need to
91 * join queries with a space. */
92 if (make_boolean_term (thread, "id", mid, &escaped, &escaped_len) < 0)
95 *buf = talloc_asprintf_append_buffer (*buf, " %s", escaped);
97 *buf = talloc_strdup (thread, escaped);
101 talloc_free (escaped);
106 do_search_threads (search_context_t *ctx)
108 notmuch_thread_t *thread;
109 notmuch_threads_t *threads;
110 notmuch_tags_t *tags;
111 sprinter_t *format = ctx->format;
115 if (ctx->offset < 0) {
116 ctx->offset += notmuch_query_count_threads (ctx->query);
121 threads = notmuch_query_search_threads (ctx->query);
125 format->begin_list (format);
128 notmuch_threads_valid (threads) && (ctx->limit < 0 || i < ctx->offset + ctx->limit);
129 notmuch_threads_move_to_next (threads), i++)
131 thread = notmuch_threads_get (threads);
133 if (i < ctx->offset) {
134 notmuch_thread_destroy (thread);
138 if (ctx->output == OUTPUT_THREADS) {
139 format->set_prefix (format, "thread");
140 format->string (format,
141 notmuch_thread_get_thread_id (thread));
142 format->separator (format);
143 } else { /* output == OUTPUT_SUMMARY */
144 void *ctx_quote = talloc_new (thread);
145 const char *authors = notmuch_thread_get_authors (thread);
146 const char *subject = notmuch_thread_get_subject (thread);
147 const char *thread_id = notmuch_thread_get_thread_id (thread);
148 int matched = notmuch_thread_get_matched_messages (thread);
149 int total = notmuch_thread_get_total_messages (thread);
150 const char *relative_date = NULL;
151 notmuch_bool_t first_tag = TRUE;
153 format->begin_map (format);
155 if (ctx->sort == NOTMUCH_SORT_OLDEST_FIRST)
156 date = notmuch_thread_get_oldest_date (thread);
158 date = notmuch_thread_get_newest_date (thread);
160 relative_date = notmuch_time_relative_date (ctx_quote, date);
162 if (format->is_text_printer) {
163 /* Special case for the text formatter */
164 printf ("thread:%s %12s [%d/%d] %s; %s (",
169 sanitize_string (ctx_quote, authors),
170 sanitize_string (ctx_quote, subject));
171 } else { /* Structured Output */
172 format->map_key (format, "thread");
173 format->string (format, thread_id);
174 format->map_key (format, "timestamp");
175 format->integer (format, date);
176 format->map_key (format, "date_relative");
177 format->string (format, relative_date);
178 format->map_key (format, "matched");
179 format->integer (format, matched);
180 format->map_key (format, "total");
181 format->integer (format, total);
182 format->map_key (format, "authors");
183 format->string (format, authors);
184 format->map_key (format, "subject");
185 format->string (format, subject);
186 if (notmuch_format_version >= 2) {
187 char *matched_query, *unmatched_query;
188 if (get_thread_query (thread, &matched_query,
189 &unmatched_query) < 0) {
190 fprintf (stderr, "Out of memory\n");
193 format->map_key (format, "query");
194 format->begin_list (format);
196 format->string (format, matched_query);
198 format->null (format);
200 format->string (format, unmatched_query);
202 format->null (format);
203 format->end (format);
207 talloc_free (ctx_quote);
209 format->map_key (format, "tags");
210 format->begin_list (format);
212 for (tags = notmuch_thread_get_tags (thread);
213 notmuch_tags_valid (tags);
214 notmuch_tags_move_to_next (tags))
216 const char *tag = notmuch_tags_get (tags);
218 if (format->is_text_printer) {
219 /* Special case for the text formatter */
225 } else { /* Structured Output */
226 format->string (format, tag);
230 if (format->is_text_printer)
233 format->end (format);
234 format->end (format);
235 format->separator (format);
238 notmuch_thread_destroy (thread);
241 format->end (format);
246 /* Returns TRUE iff name and addr is duplicate. If not, stores the
247 * name/addr pair in order to detect subsequent duplicates. */
248 static notmuch_bool_t
249 is_duplicate (const search_context_t *ctx, const char *name, const char *addr)
251 notmuch_bool_t duplicate;
255 key = talloc_asprintf (ctx->format, "%s <%s>", name, addr);
259 duplicate = g_hash_table_lookup_extended (ctx->addresses, key, NULL, (gpointer)&mailbox);
262 mailbox = talloc (ctx->format, mailbox_t);
263 mailbox->name = talloc_strdup (mailbox, name);
264 mailbox->addr = talloc_strdup (mailbox, addr);
266 g_hash_table_insert (ctx->addresses, key, mailbox);
276 print_mailbox (const search_context_t *ctx, const mailbox_t *mailbox)
278 const char *name = mailbox->name;
279 const char *addr = mailbox->addr;
280 int count = mailbox->count;
281 sprinter_t *format = ctx->format;
282 InternetAddress *ia = internet_address_mailbox_new (name, addr);
285 /* name_addr has the name part quoted if necessary. Compare
286 * 'John Doe <john@doe.com>' vs. '"Doe, John" <john@doe.com>' */
287 name_addr = internet_address_to_string (ia, FALSE);
289 if (format->is_text_printer) {
291 format->integer (format, count);
292 format->string (format, "\t");
294 format->string (format, name_addr);
295 format->separator (format);
297 format->begin_map (format);
298 format->map_key (format, "name");
299 format->string (format, name);
300 format->map_key (format, "address");
301 format->string (format, addr);
302 format->map_key (format, "name-addr");
303 format->string (format, name_addr);
305 format->map_key (format, "count");
306 format->integer (format, count);
308 format->end (format);
309 format->separator (format);
316 /* Print or prepare for printing addresses from InternetAddressList. */
318 process_address_list (const search_context_t *ctx,
319 InternetAddressList *list)
321 InternetAddress *address;
324 for (i = 0; i < internet_address_list_length (list); i++) {
325 address = internet_address_list_get_address (list, i);
326 if (INTERNET_ADDRESS_IS_GROUP (address)) {
327 InternetAddressGroup *group;
328 InternetAddressList *group_list;
330 group = INTERNET_ADDRESS_GROUP (address);
331 group_list = internet_address_group_get_members (group);
332 if (group_list == NULL)
335 process_address_list (ctx, group_list);
337 InternetAddressMailbox *mailbox = INTERNET_ADDRESS_MAILBOX (address);
339 .name = internet_address_get_name (address),
340 .addr = internet_address_mailbox_get_addr (mailbox),
344 if (is_duplicate (ctx, mbx.name, mbx.addr))
347 if (ctx->output & OUTPUT_COUNT)
350 print_mailbox (ctx, &mbx);
355 /* Print or prepare for printing addresses from a message header. */
357 process_address_header (const search_context_t *ctx, const char *value)
359 InternetAddressList *list;
364 list = internet_address_list_parse_string (value);
368 process_address_list (ctx, list);
370 g_object_unref (list);
373 /* Destructor for talloc-allocated GHashTable keys and values. */
375 _talloc_free_for_g_hash (void *ptr)
381 print_hash_value (unused (gpointer key), gpointer value, gpointer user_data)
383 const mailbox_t *mailbox = value;
384 search_context_t *ctx = user_data;
386 print_mailbox (ctx, mailbox);
390 _count_filenames (notmuch_message_t *message)
392 notmuch_filenames_t *filenames;
395 filenames = notmuch_message_get_filenames (message);
397 while (notmuch_filenames_valid (filenames)) {
398 notmuch_filenames_move_to_next (filenames);
402 notmuch_filenames_destroy (filenames);
408 do_search_messages (search_context_t *ctx)
410 notmuch_message_t *message;
411 notmuch_messages_t *messages;
412 notmuch_filenames_t *filenames;
413 sprinter_t *format = ctx->format;
416 if (ctx->offset < 0) {
417 ctx->offset += notmuch_query_count_messages (ctx->query);
422 messages = notmuch_query_search_messages (ctx->query);
423 if (messages == NULL)
426 format->begin_list (format);
429 notmuch_messages_valid (messages) && (ctx->limit < 0 || i < ctx->offset + ctx->limit);
430 notmuch_messages_move_to_next (messages), i++)
435 message = notmuch_messages_get (messages);
437 if (ctx->output == OUTPUT_FILES) {
439 filenames = notmuch_message_get_filenames (message);
442 notmuch_filenames_valid (filenames);
443 notmuch_filenames_move_to_next (filenames), j++)
445 if (ctx->dupe < 0 || ctx->dupe == j) {
446 format->string (format, notmuch_filenames_get (filenames));
447 format->separator (format);
451 notmuch_filenames_destroy( filenames );
453 } else if (ctx->output == OUTPUT_MESSAGES) {
454 /* special case 1 for speed */
455 if (ctx->dupe <= 1 || ctx->dupe <= _count_filenames (message)) {
456 format->set_prefix (format, "id");
457 format->string (format,
458 notmuch_message_get_message_id (message));
459 format->separator (format);
462 if (ctx->output & OUTPUT_SENDER) {
465 addrs = notmuch_message_get_header (message, "from");
466 process_address_header (ctx, addrs);
469 if (ctx->output & OUTPUT_RECIPIENTS) {
470 const char *hdrs[] = { "to", "cc", "bcc" };
474 for (j = 0; j < ARRAY_SIZE (hdrs); j++) {
475 addrs = notmuch_message_get_header (message, hdrs[j]);
476 process_address_header (ctx, addrs);
481 notmuch_message_destroy (message);
484 if (ctx->addresses && ctx->output & OUTPUT_COUNT)
485 g_hash_table_foreach (ctx->addresses, print_hash_value, ctx);
487 notmuch_messages_destroy (messages);
489 format->end (format);
495 do_search_tags (const search_context_t *ctx)
497 notmuch_messages_t *messages = NULL;
498 notmuch_tags_t *tags;
500 sprinter_t *format = ctx->format;
501 notmuch_query_t *query = ctx->query;
502 notmuch_database_t *notmuch = ctx->notmuch;
504 /* should the following only special case if no excluded terms
507 /* Special-case query of "*" for better performance. */
508 if (strcmp (notmuch_query_get_query_string (query), "*") == 0) {
509 tags = notmuch_database_get_all_tags (notmuch);
511 messages = notmuch_query_search_messages (query);
512 if (messages == NULL)
515 tags = notmuch_messages_collect_tags (messages);
520 format->begin_list (format);
523 notmuch_tags_valid (tags);
524 notmuch_tags_move_to_next (tags))
526 tag = notmuch_tags_get (tags);
528 format->string (format, tag);
529 format->separator (format);
533 notmuch_tags_destroy (tags);
536 notmuch_messages_destroy (messages);
538 format->end (format);
544 _notmuch_search_prepare (search_context_t *ctx, notmuch_config_t *config, int argc, char *argv[])
548 char *status_string = NULL;
550 switch (ctx->format_sel) {
551 case NOTMUCH_FORMAT_TEXT:
552 ctx->format = sprinter_text_create (config, stdout);
554 case NOTMUCH_FORMAT_TEXT0:
555 if (ctx->output == OUTPUT_SUMMARY) {
556 fprintf (stderr, "Error: --format=text0 is not compatible with --output=summary.\n");
559 ctx->format = sprinter_text0_create (config, stdout);
561 case NOTMUCH_FORMAT_JSON:
562 ctx->format = sprinter_json_create (config, stdout);
564 case NOTMUCH_FORMAT_SEXP:
565 ctx->format = sprinter_sexp_create (config, stdout);
568 /* this should never happen */
569 INTERNAL_ERROR("no output format selected");
572 notmuch_exit_if_unsupported_format ();
574 if (notmuch_database_open_verbose (
575 notmuch_config_get_database_path (config),
576 NOTMUCH_DATABASE_MODE_READ_ONLY, &ctx->notmuch, &status_string)) {
579 fputs (status_string, stderr);
580 free (status_string);
586 query_str = query_string_from_args (ctx->notmuch, argc, argv);
587 if (query_str == NULL) {
588 fprintf (stderr, "Out of memory.\n");
591 if (*query_str == '\0') {
592 fprintf (stderr, "Error: notmuch search requires at least one search term.\n");
596 ctx->query = notmuch_query_create (ctx->notmuch, query_str);
597 if (ctx->query == NULL) {
598 fprintf (stderr, "Out of memory\n");
602 notmuch_query_set_sort (ctx->query, ctx->sort);
604 if (ctx->exclude == NOTMUCH_EXCLUDE_FLAG && ctx->output != OUTPUT_SUMMARY) {
605 /* If we are not doing summary output there is nowhere to
606 * print the excluded flag so fall back on including the
607 * excluded messages. */
608 fprintf (stderr, "Warning: this output format cannot flag excluded messages.\n");
609 ctx->exclude = NOTMUCH_EXCLUDE_FALSE;
612 if (ctx->exclude != NOTMUCH_EXCLUDE_FALSE) {
613 const char **search_exclude_tags;
614 size_t search_exclude_tags_length;
616 search_exclude_tags = notmuch_config_get_search_exclude_tags
617 (config, &search_exclude_tags_length);
618 for (i = 0; i < search_exclude_tags_length; i++)
619 notmuch_query_add_tag_exclude (ctx->query, search_exclude_tags[i]);
620 notmuch_query_set_omit_excluded (ctx->query, ctx->exclude);
627 _notmuch_search_cleanup (search_context_t *ctx)
629 notmuch_query_destroy (ctx->query);
630 notmuch_database_destroy (ctx->notmuch);
632 talloc_free (ctx->format);
635 static search_context_t search_context = {
636 .format_sel = NOTMUCH_FORMAT_TEXT,
637 .exclude = NOTMUCH_EXCLUDE_TRUE,
638 .sort = NOTMUCH_SORT_NEWEST_FIRST,
641 .limit = -1, /* unlimited */
645 static const notmuch_opt_desc_t common_options[] = {
646 { NOTMUCH_OPT_KEYWORD, &search_context.sort, "sort", 's',
647 (notmuch_keyword_t []){ { "oldest-first", NOTMUCH_SORT_OLDEST_FIRST },
648 { "newest-first", NOTMUCH_SORT_NEWEST_FIRST },
650 { NOTMUCH_OPT_KEYWORD, &search_context.format_sel, "format", 'f',
651 (notmuch_keyword_t []){ { "json", NOTMUCH_FORMAT_JSON },
652 { "sexp", NOTMUCH_FORMAT_SEXP },
653 { "text", NOTMUCH_FORMAT_TEXT },
654 { "text0", NOTMUCH_FORMAT_TEXT0 },
656 { NOTMUCH_OPT_INT, ¬much_format_version, "format-version", 0, 0 },
661 notmuch_search_command (notmuch_config_t *config, int argc, char *argv[])
663 search_context_t *ctx = &search_context;
666 notmuch_opt_desc_t options[] = {
667 { NOTMUCH_OPT_KEYWORD, &ctx->output, "output", 'o',
668 (notmuch_keyword_t []){ { "summary", OUTPUT_SUMMARY },
669 { "threads", OUTPUT_THREADS },
670 { "messages", OUTPUT_MESSAGES },
671 { "files", OUTPUT_FILES },
672 { "tags", OUTPUT_TAGS },
674 { NOTMUCH_OPT_KEYWORD, &ctx->exclude, "exclude", 'x',
675 (notmuch_keyword_t []){ { "true", NOTMUCH_EXCLUDE_TRUE },
676 { "false", NOTMUCH_EXCLUDE_FALSE },
677 { "flag", NOTMUCH_EXCLUDE_FLAG },
678 { "all", NOTMUCH_EXCLUDE_ALL },
680 { NOTMUCH_OPT_INT, &ctx->offset, "offset", 'O', 0 },
681 { NOTMUCH_OPT_INT, &ctx->limit, "limit", 'L', 0 },
682 { NOTMUCH_OPT_INT, &ctx->dupe, "duplicate", 'D', 0 },
683 { NOTMUCH_OPT_INHERIT, (void *) &common_options, NULL, 0, 0 },
687 ctx->output = OUTPUT_SUMMARY;
688 opt_index = parse_arguments (argc, argv, options, 1);
692 if (ctx->output != OUTPUT_FILES && ctx->output != OUTPUT_MESSAGES &&
694 fprintf (stderr, "Error: --duplicate=N is only supported with --output=files and --output=messages.\n");
698 if (_notmuch_search_prepare (ctx, config,
699 argc - opt_index, argv + opt_index))
702 switch (ctx->output) {
705 ret = do_search_threads (ctx);
707 case OUTPUT_MESSAGES:
709 ret = do_search_messages (ctx);
712 ret = do_search_tags (ctx);
715 INTERNAL_ERROR ("Unexpected output");
718 _notmuch_search_cleanup (ctx);
720 return ret ? EXIT_FAILURE : EXIT_SUCCESS;
724 notmuch_address_command (notmuch_config_t *config, int argc, char *argv[])
726 search_context_t *ctx = &search_context;
729 notmuch_opt_desc_t options[] = {
730 { NOTMUCH_OPT_KEYWORD_FLAGS, &ctx->output, "output", 'o',
731 (notmuch_keyword_t []){ { "sender", OUTPUT_SENDER },
732 { "recipients", OUTPUT_RECIPIENTS },
733 { "count", OUTPUT_COUNT },
735 { NOTMUCH_OPT_KEYWORD, &ctx->exclude, "exclude", 'x',
736 (notmuch_keyword_t []){ { "true", NOTMUCH_EXCLUDE_TRUE },
737 { "false", NOTMUCH_EXCLUDE_FALSE },
739 { NOTMUCH_OPT_INHERIT, (void *) &common_options, NULL, 0, 0 },
743 opt_index = parse_arguments (argc, argv, options, 1);
747 if (! (ctx->output & (OUTPUT_SENDER | OUTPUT_RECIPIENTS)))
748 ctx->output |= OUTPUT_SENDER;
750 if (_notmuch_search_prepare (ctx, config,
751 argc - opt_index, argv + opt_index))
754 ctx->addresses = g_hash_table_new_full (g_str_hash, g_str_equal,
755 _talloc_free_for_g_hash, _talloc_free_for_g_hash);
757 ret = do_search_messages (ctx);
759 g_hash_table_unref (ctx->addresses);
762 _notmuch_search_cleanup (ctx);
764 return ret ? EXIT_FAILURE : EXIT_SUCCESS;