]> git.notmuchmail.org Git - notmuch/blob - notmuch-search.c
config: test whether an item is stored in the database by name
[notmuch] / notmuch-search.c
1 /* notmuch - Not much of an email program, (just index and search)
2  *
3  * Copyright © 2009 Carl Worth
4  *
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.
9  *
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.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program.  If not, see https://www.gnu.org/licenses/ .
17  *
18  * Author: Carl Worth <cworth@cworth.org>
19  */
20
21 #include "notmuch-client.h"
22 #include "sprinter.h"
23 #include "string-util.h"
24
25 typedef enum {
26     /* Search command */
27     OUTPUT_SUMMARY      = 1 << 0,
28     OUTPUT_THREADS      = 1 << 1,
29     OUTPUT_MESSAGES     = 1 << 2,
30     OUTPUT_FILES        = 1 << 3,
31     OUTPUT_TAGS         = 1 << 4,
32
33     /* Address command */
34     OUTPUT_SENDER       = 1 << 5,
35     OUTPUT_RECIPIENTS   = 1 << 6,
36     OUTPUT_COUNT        = 1 << 7,
37 } output_t;
38
39 typedef enum {
40     DEDUP_NONE,
41     DEDUP_MAILBOX,
42     DEDUP_ADDRESS,
43 } dedup_t;
44
45 typedef enum {
46     NOTMUCH_FORMAT_JSON,
47     NOTMUCH_FORMAT_TEXT,
48     NOTMUCH_FORMAT_TEXT0,
49     NOTMUCH_FORMAT_SEXP
50 } format_sel_t;
51
52 typedef struct {
53     notmuch_database_t *notmuch;
54     int format_sel;
55     sprinter_t *format;
56     int exclude;
57     notmuch_query_t *query;
58     int sort;
59     int output;
60     int offset;
61     int limit;
62     int dupe;
63     GHashTable *addresses;
64     int dedup;
65 } search_context_t;
66
67 typedef struct {
68     const char *name;
69     const char *addr;
70     int count;
71 } mailbox_t;
72
73 /* Return two stable query strings that identify exactly the matched
74  * and unmatched messages currently in thread.  If there are no
75  * matched or unmatched messages, the returned buffers will be
76  * NULL. */
77 static int
78 get_thread_query (notmuch_thread_t *thread,
79                   char **matched_out, char **unmatched_out)
80 {
81     notmuch_messages_t *messages;
82     char *escaped = NULL;
83     size_t escaped_len = 0;
84
85     *matched_out = *unmatched_out = NULL;
86
87     for (messages = notmuch_thread_get_messages (thread);
88          notmuch_messages_valid (messages);
89          notmuch_messages_move_to_next (messages))
90     {
91         notmuch_message_t *message = notmuch_messages_get (messages);
92         const char *mid = notmuch_message_get_message_id (message);
93         /* Determine which query buffer to extend */
94         char **buf = notmuch_message_get_flag (
95             message, NOTMUCH_MESSAGE_FLAG_MATCH) ? matched_out : unmatched_out;
96         /* Add this message's id: query.  Since "id" is an exclusive
97          * prefix, it is implicitly 'or'd together, so we only need to
98          * join queries with a space. */
99         if (make_boolean_term (thread, "id", mid, &escaped, &escaped_len) < 0)
100             return -1;
101         if (*buf)
102             *buf = talloc_asprintf_append_buffer (*buf, " %s", escaped);
103         else
104             *buf = talloc_strdup (thread, escaped);
105         if (!*buf)
106             return -1;
107     }
108     talloc_free (escaped);
109     return 0;
110 }
111
112 static int
113 do_search_threads (search_context_t *ctx)
114 {
115     notmuch_thread_t *thread;
116     notmuch_threads_t *threads;
117     notmuch_tags_t *tags;
118     sprinter_t *format = ctx->format;
119     time_t date;
120     int i;
121     notmuch_status_t status;
122
123     if (ctx->offset < 0) {
124         unsigned count;
125         notmuch_status_t status;
126         status = notmuch_query_count_threads (ctx->query, &count);
127         if (print_status_query ("notmuch search", ctx->query, status))
128             return 1;
129
130         ctx->offset += count;
131         if (ctx->offset < 0)
132             ctx->offset = 0;
133     }
134
135     status = notmuch_query_search_threads (ctx->query, &threads);
136     if (print_status_query("notmuch search", ctx->query, status))
137         return 1;
138
139     format->begin_list (format);
140
141     for (i = 0;
142          notmuch_threads_valid (threads) && (ctx->limit < 0 || i < ctx->offset + ctx->limit);
143          notmuch_threads_move_to_next (threads), i++)
144     {
145         thread = notmuch_threads_get (threads);
146
147         if (i < ctx->offset) {
148             notmuch_thread_destroy (thread);
149             continue;
150         }
151
152         if (ctx->output == OUTPUT_THREADS) {
153             format->set_prefix (format, "thread");
154             format->string (format,
155                             notmuch_thread_get_thread_id (thread));
156             format->separator (format);
157         } else { /* output == OUTPUT_SUMMARY */
158             void *ctx_quote = talloc_new (thread);
159             const char *authors = notmuch_thread_get_authors (thread);
160             const char *subject = notmuch_thread_get_subject (thread);
161             const char *thread_id = notmuch_thread_get_thread_id (thread);
162             int matched = notmuch_thread_get_matched_messages (thread);
163             int files = notmuch_thread_get_total_files (thread);
164             int total = notmuch_thread_get_total_messages (thread);
165             const char *relative_date = NULL;
166             bool first_tag = true;
167
168             format->begin_map (format);
169
170             if (ctx->sort == NOTMUCH_SORT_OLDEST_FIRST)
171                 date = notmuch_thread_get_oldest_date (thread);
172             else
173                 date = notmuch_thread_get_newest_date (thread);
174
175             relative_date = notmuch_time_relative_date (ctx_quote, date);
176
177             if (format->is_text_printer) {
178                 /* Special case for the text formatter */
179                 printf ("thread:%s %12s ",
180                         thread_id,
181                         relative_date);
182                 if (total == files)
183                     printf ("[%d/%d] %s; %s (",
184                         matched,
185                         total,
186                         sanitize_string (ctx_quote, authors),
187                         sanitize_string (ctx_quote, subject));
188                 else
189                     printf ("[%d/%d(%d)] %s; %s (",
190                         matched,
191                         total,
192                         files,
193                         sanitize_string (ctx_quote, authors),
194                         sanitize_string (ctx_quote, subject));
195
196             } else { /* Structured Output */
197                 format->map_key (format, "thread");
198                 format->string (format, thread_id);
199                 format->map_key (format, "timestamp");
200                 format->integer (format, date);
201                 format->map_key (format, "date_relative");
202                 format->string (format, relative_date);
203                 format->map_key (format, "matched");
204                 format->integer (format, matched);
205                 format->map_key (format, "total");
206                 format->integer (format, total);
207                 format->map_key (format, "authors");
208                 format->string (format, authors);
209                 format->map_key (format, "subject");
210                 format->string (format, subject);
211                 if (notmuch_format_version >= 2) {
212                     char *matched_query, *unmatched_query;
213                     if (get_thread_query (thread, &matched_query,
214                                           &unmatched_query) < 0) {
215                         fprintf (stderr, "Out of memory\n");
216                         return 1;
217                     }
218                     format->map_key (format, "query");
219                     format->begin_list (format);
220                     if (matched_query)
221                         format->string (format, matched_query);
222                     else
223                         format->null (format);
224                     if (unmatched_query)
225                         format->string (format, unmatched_query);
226                     else
227                         format->null (format);
228                     format->end (format);
229                 }
230             }
231
232             talloc_free (ctx_quote);
233
234             format->map_key (format, "tags");
235             format->begin_list (format);
236
237             for (tags = notmuch_thread_get_tags (thread);
238                  notmuch_tags_valid (tags);
239                  notmuch_tags_move_to_next (tags))
240             {
241                 const char *tag = notmuch_tags_get (tags);
242
243                 if (format->is_text_printer) {
244                   /* Special case for the text formatter */
245                     if (first_tag)
246                         first_tag = false;
247                     else
248                         fputc (' ', stdout);
249                     fputs (tag, stdout);
250                 } else { /* Structured Output */
251                     format->string (format, tag);
252                 }
253             }
254
255             if (format->is_text_printer)
256                 printf (")");
257
258             format->end (format);
259             format->end (format);
260             format->separator (format);
261         }
262
263         notmuch_thread_destroy (thread);
264     }
265
266     format->end (format);
267
268     return 0;
269 }
270
271 static mailbox_t *new_mailbox (void *ctx, const char *name, const char *addr)
272 {
273     mailbox_t *mailbox;
274
275     mailbox = talloc (ctx, mailbox_t);
276     if (! mailbox)
277         return NULL;
278
279     mailbox->name = talloc_strdup (mailbox, name);
280     mailbox->addr = talloc_strdup (mailbox, addr);
281     mailbox->count = 1;
282
283     return mailbox;
284 }
285
286 static int mailbox_compare (const void *v1, const void *v2)
287 {
288     const mailbox_t *m1 = v1, *m2 = v2;
289     int ret;
290
291     ret = strcmp_null (m1->name, m2->name);
292     if (! ret)
293         ret = strcmp (m1->addr, m2->addr);
294
295     return ret;
296 }
297
298 /* Returns true iff name and addr is duplicate. If not, stores the
299  * name/addr pair in order to detect subsequent duplicates. */
300 static bool
301 is_duplicate (const search_context_t *ctx, const char *name, const char *addr)
302 {
303     char *key;
304     GList *list, *l;
305     mailbox_t *mailbox;
306
307     list = g_hash_table_lookup (ctx->addresses, addr);
308     if (list) {
309         mailbox_t find = {
310             .name = name,
311             .addr = addr,
312         };
313
314         l = g_list_find_custom (list, &find, mailbox_compare);
315         if (l) {
316             mailbox = l->data;
317             mailbox->count++;
318             return true;
319         }
320
321         mailbox = new_mailbox (ctx->format, name, addr);
322         if (! mailbox)
323             return false;
324
325         /*
326          * XXX: It would be more efficient to prepend to the list, but
327          * then we'd have to store the changed list head back to the
328          * hash table. This check is here just to avoid the compiler
329          * warning for unused result.
330          */
331         if (list != g_list_append (list, mailbox))
332             INTERNAL_ERROR ("appending to list changed list head\n");
333
334         return false;
335     }
336
337     key = talloc_strdup (ctx->format, addr);
338     if (! key)
339         return false;
340
341     mailbox = new_mailbox (ctx->format, name, addr);
342     if (! mailbox)
343         return false;
344
345     list = g_list_append (NULL, mailbox);
346     if (! list)
347         return false;
348
349     g_hash_table_insert (ctx->addresses, key, list);
350
351     return false;
352 }
353
354 static void
355 print_mailbox (const search_context_t *ctx, const mailbox_t *mailbox)
356 {
357     const char *name = mailbox->name;
358     const char *addr = mailbox->addr;
359     int count = mailbox->count;
360     sprinter_t *format = ctx->format;
361     InternetAddress *ia = internet_address_mailbox_new (name, addr);
362     char *name_addr;
363
364     /* name_addr has the name part quoted if necessary. Compare
365      * 'John Doe <john@doe.com>' vs. '"Doe, John" <john@doe.com>' */
366     name_addr = internet_address_to_string (ia, false);
367
368     if (format->is_text_printer) {
369         if (ctx->output & OUTPUT_COUNT) {
370             format->integer (format, count);
371             format->string (format, "\t");
372         }
373         format->string (format, name_addr);
374         format->separator (format);
375     } else {
376         format->begin_map (format);
377         format->map_key (format, "name");
378         format->string (format, name);
379         format->map_key (format, "address");
380         format->string (format, addr);
381         format->map_key (format, "name-addr");
382         format->string (format, name_addr);
383         if (ctx->output & OUTPUT_COUNT) {
384             format->map_key (format, "count");
385             format->integer (format, count);
386         }
387         format->end (format);
388         format->separator (format);
389     }
390
391     g_object_unref (ia);
392     g_free (name_addr);
393 }
394
395 /* Print or prepare for printing addresses from InternetAddressList. */
396 static void
397 process_address_list (const search_context_t *ctx,
398                       InternetAddressList *list)
399 {
400     InternetAddress *address;
401     int i;
402
403     for (i = 0; i < internet_address_list_length (list); i++) {
404         address = internet_address_list_get_address (list, i);
405         if (INTERNET_ADDRESS_IS_GROUP (address)) {
406             InternetAddressGroup *group;
407             InternetAddressList *group_list;
408
409             group = INTERNET_ADDRESS_GROUP (address);
410             group_list = internet_address_group_get_members (group);
411             if (group_list == NULL)
412                 continue;
413
414             process_address_list (ctx, group_list);
415         } else {
416             InternetAddressMailbox *mailbox = INTERNET_ADDRESS_MAILBOX (address);
417             mailbox_t mbx = {
418                 .name = internet_address_get_name (address),
419                 .addr = internet_address_mailbox_get_addr (mailbox),
420             };
421
422             /* OUTPUT_COUNT only works with deduplication */
423             if (ctx->dedup != DEDUP_NONE &&
424                 is_duplicate (ctx, mbx.name, mbx.addr))
425                 continue;
426
427             /* OUTPUT_COUNT and DEDUP_ADDRESS require a full pass. */
428             if (ctx->output & OUTPUT_COUNT || ctx->dedup == DEDUP_ADDRESS)
429                 continue;
430
431             print_mailbox (ctx, &mbx);
432         }
433     }
434 }
435
436 /* Print or prepare for printing addresses from a message header. */
437 static void
438 process_address_header (const search_context_t *ctx, const char *value)
439 {
440     InternetAddressList *list;
441
442     if (value == NULL)
443         return;
444
445     list = internet_address_list_parse_string (value);
446     if (list == NULL)
447         return;
448
449     process_address_list (ctx, list);
450
451     g_object_unref (list);
452 }
453
454 /* Destructor for talloc-allocated GHashTable keys and values. */
455 static void
456 _talloc_free_for_g_hash (void *ptr)
457 {
458     talloc_free (ptr);
459 }
460
461 static void
462 _list_free_for_g_hash (void *ptr)
463 {
464     g_list_free_full (ptr, _talloc_free_for_g_hash);
465 }
466
467 /* Print the most common variant of a list of unique mailboxes, and
468  * conflate the counts. */
469 static void
470 print_popular (const search_context_t *ctx, GList *list)
471 {
472     GList *l;
473     mailbox_t *mailbox = NULL, *m;
474     int max = 0;
475     int total = 0;
476
477     for (l = list; l; l = l->next) {
478         m = l->data;
479         total += m->count;
480         if (m->count > max) {
481             mailbox = m;
482             max = m->count;
483         }
484     }
485
486     if (! mailbox)
487         INTERNAL_ERROR("Empty list in address hash table\n");
488
489     /* The original count is no longer needed, so overwrite. */
490     mailbox->count = total;
491
492     print_mailbox (ctx, mailbox);
493 }
494
495 static void
496 print_list_value (void *mailbox, void *context)
497 {
498     print_mailbox (context, mailbox);
499 }
500
501 static void
502 print_hash_value (unused (void *key), void *list, void *context)
503 {
504     const search_context_t *ctx = context;
505
506     if (ctx->dedup == DEDUP_ADDRESS)
507         print_popular (ctx, list);
508     else
509         g_list_foreach (list, print_list_value, context);
510 }
511
512 static int
513 _count_filenames (notmuch_message_t *message)
514 {
515     notmuch_filenames_t *filenames;
516     int i = 0;
517
518     filenames = notmuch_message_get_filenames (message);
519
520     while (notmuch_filenames_valid (filenames)) {
521         notmuch_filenames_move_to_next (filenames);
522         i++;
523     }
524
525     notmuch_filenames_destroy (filenames);
526
527     return i;
528 }
529
530 static int
531 do_search_messages (search_context_t *ctx)
532 {
533     notmuch_message_t *message;
534     notmuch_messages_t *messages;
535     notmuch_filenames_t *filenames;
536     sprinter_t *format = ctx->format;
537     int i;
538     notmuch_status_t status;
539
540     if (ctx->offset < 0) {
541         unsigned count;
542         notmuch_status_t status;
543         status = notmuch_query_count_messages (ctx->query, &count);
544         if (print_status_query ("notmuch search", ctx->query, status))
545             return 1;
546
547         ctx->offset += count;
548         if (ctx->offset < 0)
549             ctx->offset = 0;
550     }
551
552     status = notmuch_query_search_messages (ctx->query, &messages);
553     if (print_status_query ("notmuch search", ctx->query, status))
554         return 1;
555
556     format->begin_list (format);
557
558     for (i = 0;
559          notmuch_messages_valid (messages) && (ctx->limit < 0 || i < ctx->offset + ctx->limit);
560          notmuch_messages_move_to_next (messages), i++)
561     {
562         if (i < ctx->offset)
563             continue;
564
565         message = notmuch_messages_get (messages);
566
567         if (ctx->output == OUTPUT_FILES) {
568             int j;
569             filenames = notmuch_message_get_filenames (message);
570
571             for (j = 1;
572                  notmuch_filenames_valid (filenames);
573                  notmuch_filenames_move_to_next (filenames), j++)
574             {
575                 if (ctx->dupe < 0 || ctx->dupe == j) {
576                     format->string (format, notmuch_filenames_get (filenames));
577                     format->separator (format);
578                 }
579             }
580             
581             notmuch_filenames_destroy( filenames );
582
583         } else if (ctx->output == OUTPUT_MESSAGES) {
584             /* special case 1 for speed */
585             if (ctx->dupe <= 1 || ctx->dupe <= _count_filenames (message)) {
586                 format->set_prefix (format, "id");
587                 format->string (format,
588                                 notmuch_message_get_message_id (message));
589                 format->separator (format);
590             }
591         } else {
592             if (ctx->output & OUTPUT_SENDER) {
593                 const char *addrs;
594
595                 addrs = notmuch_message_get_header (message, "from");
596                 process_address_header (ctx, addrs);
597             }
598
599             if (ctx->output & OUTPUT_RECIPIENTS) {
600                 const char *hdrs[] = { "to", "cc", "bcc" };
601                 const char *addrs;
602                 size_t j;
603
604                 for (j = 0; j < ARRAY_SIZE (hdrs); j++) {
605                     addrs = notmuch_message_get_header (message, hdrs[j]);
606                     process_address_header (ctx, addrs);
607                 }
608             }
609         }
610
611         notmuch_message_destroy (message);
612     }
613
614     if (ctx->addresses &&
615         (ctx->output & OUTPUT_COUNT || ctx->dedup == DEDUP_ADDRESS))
616         g_hash_table_foreach (ctx->addresses, print_hash_value, ctx);
617
618     notmuch_messages_destroy (messages);
619
620     format->end (format);
621
622     return 0;
623 }
624
625 static int
626 do_search_tags (const search_context_t *ctx)
627 {
628     notmuch_messages_t *messages = NULL;
629     notmuch_tags_t *tags;
630     const char *tag;
631     sprinter_t *format = ctx->format;
632     notmuch_query_t *query = ctx->query;
633     notmuch_database_t *notmuch = ctx->notmuch;
634
635     /* should the following only special case if no excluded terms
636      * specified? */
637
638     /* Special-case query of "*" for better performance. */
639     if (strcmp (notmuch_query_get_query_string (query), "*") == 0) {
640         tags = notmuch_database_get_all_tags (notmuch);
641     } else {
642         notmuch_status_t status;
643         status = notmuch_query_search_messages (query, &messages);
644         if (print_status_query ("notmuch search", query, status))
645             return 1;
646
647         tags = notmuch_messages_collect_tags (messages);
648     }
649     if (tags == NULL)
650         return 1;
651
652     format->begin_list (format);
653
654     for (;
655          notmuch_tags_valid (tags);
656          notmuch_tags_move_to_next (tags))
657     {
658         tag = notmuch_tags_get (tags);
659
660         format->string (format, tag);
661         format->separator (format);
662
663     }
664
665     notmuch_tags_destroy (tags);
666
667     if (messages)
668         notmuch_messages_destroy (messages);
669
670     format->end (format);
671
672     return 0;
673 }
674
675 static int
676 _notmuch_search_prepare (search_context_t *ctx, notmuch_config_t *config, int argc, char *argv[])
677 {
678     char *query_str;
679     unsigned int i;
680     char *status_string = NULL;
681
682     switch (ctx->format_sel) {
683     case NOTMUCH_FORMAT_TEXT:
684         ctx->format = sprinter_text_create (config, stdout);
685         break;
686     case NOTMUCH_FORMAT_TEXT0:
687         if (ctx->output == OUTPUT_SUMMARY) {
688             fprintf (stderr, "Error: --format=text0 is not compatible with --output=summary.\n");
689             return EXIT_FAILURE;
690         }
691         ctx->format = sprinter_text0_create (config, stdout);
692         break;
693     case NOTMUCH_FORMAT_JSON:
694         ctx->format = sprinter_json_create (config, stdout);
695         break;
696     case NOTMUCH_FORMAT_SEXP:
697         ctx->format = sprinter_sexp_create (config, stdout);
698         break;
699     default:
700         /* this should never happen */
701         INTERNAL_ERROR("no output format selected");
702     }
703
704     notmuch_exit_if_unsupported_format ();
705
706     if (notmuch_database_open_verbose (
707             notmuch_config_get_database_path (config),
708             NOTMUCH_DATABASE_MODE_READ_ONLY, &ctx->notmuch, &status_string)) {
709
710         if (status_string) {
711             fputs (status_string, stderr);
712             free (status_string);
713         }
714
715         return EXIT_FAILURE;
716     }
717
718     notmuch_exit_if_unmatched_db_uuid (ctx->notmuch);
719
720     query_str = query_string_from_args (ctx->notmuch, argc, argv);
721     if (query_str == NULL) {
722         fprintf (stderr, "Out of memory.\n");
723         return EXIT_FAILURE;
724     }
725     if (*query_str == '\0') {
726         fprintf (stderr, "Error: notmuch search requires at least one search term.\n");
727         return EXIT_FAILURE;
728     }
729
730     ctx->query = notmuch_query_create (ctx->notmuch, query_str);
731     if (ctx->query == NULL) {
732         fprintf (stderr, "Out of memory\n");
733         return EXIT_FAILURE;
734     }
735
736     notmuch_query_set_sort (ctx->query, ctx->sort);
737
738     if (ctx->exclude == NOTMUCH_EXCLUDE_FLAG && ctx->output != OUTPUT_SUMMARY) {
739         /* If we are not doing summary output there is nowhere to
740          * print the excluded flag so fall back on including the
741          * excluded messages. */
742         fprintf (stderr, "Warning: this output format cannot flag excluded messages.\n");
743         ctx->exclude = NOTMUCH_EXCLUDE_FALSE;
744     }
745
746     if (ctx->exclude != NOTMUCH_EXCLUDE_FALSE) {
747         const char **search_exclude_tags;
748         size_t search_exclude_tags_length;
749         notmuch_status_t status;
750
751         search_exclude_tags = notmuch_config_get_search_exclude_tags
752             (config, &search_exclude_tags_length);
753
754         for (i = 0; i < search_exclude_tags_length; i++) {
755             status = notmuch_query_add_tag_exclude (ctx->query, search_exclude_tags[i]);
756             if (status && status != NOTMUCH_STATUS_IGNORED) {
757                 print_status_query ("notmuch search", ctx->query, status);
758                 return EXIT_FAILURE;
759             }
760         }
761
762         notmuch_query_set_omit_excluded (ctx->query, ctx->exclude);
763     }
764
765     return 0;
766 }
767
768 static void
769 _notmuch_search_cleanup (search_context_t *ctx)
770 {
771     notmuch_query_destroy (ctx->query);
772     notmuch_database_destroy (ctx->notmuch);
773
774     talloc_free (ctx->format);
775 }
776
777 static search_context_t search_context = {
778     .format_sel = NOTMUCH_FORMAT_TEXT,
779     .exclude = NOTMUCH_EXCLUDE_TRUE,
780     .sort = NOTMUCH_SORT_NEWEST_FIRST,
781     .output = 0,
782     .offset = 0,
783     .limit = -1, /* unlimited */
784     .dupe = -1,
785     .dedup = DEDUP_MAILBOX,
786 };
787
788 static const notmuch_opt_desc_t common_options[] = {
789     { .opt_keyword = &search_context.sort, .name = "sort", .keywords =
790       (notmuch_keyword_t []){ { "oldest-first", NOTMUCH_SORT_OLDEST_FIRST },
791                               { "newest-first", NOTMUCH_SORT_NEWEST_FIRST },
792                               { 0, 0 } } },
793     { .opt_keyword = &search_context.format_sel, .name = "format", .keywords =
794       (notmuch_keyword_t []){ { "json", NOTMUCH_FORMAT_JSON },
795                               { "sexp", NOTMUCH_FORMAT_SEXP },
796                               { "text", NOTMUCH_FORMAT_TEXT },
797                               { "text0", NOTMUCH_FORMAT_TEXT0 },
798                               { 0, 0 } } },
799     { .opt_int = &notmuch_format_version, .name = "format-version" },
800     { }
801 };
802
803 int
804 notmuch_search_command (notmuch_config_t *config, int argc, char *argv[])
805 {
806     search_context_t *ctx = &search_context;
807     int opt_index, ret;
808
809     notmuch_opt_desc_t options[] = {
810         { .opt_keyword = &ctx->output, .name = "output", .keywords =
811           (notmuch_keyword_t []){ { "summary", OUTPUT_SUMMARY },
812                                   { "threads", OUTPUT_THREADS },
813                                   { "messages", OUTPUT_MESSAGES },
814                                   { "files", OUTPUT_FILES },
815                                   { "tags", OUTPUT_TAGS },
816                                   { 0, 0 } } },
817         { .opt_keyword = &ctx->exclude, .name = "exclude", .keywords =
818           (notmuch_keyword_t []){ { "true", NOTMUCH_EXCLUDE_TRUE },
819                                   { "false", NOTMUCH_EXCLUDE_FALSE },
820                                   { "flag", NOTMUCH_EXCLUDE_FLAG },
821                                   { "all", NOTMUCH_EXCLUDE_ALL },
822                                   { 0, 0 } } },
823         { .opt_int = &ctx->offset, .name = "offset" },
824         { .opt_int = &ctx->limit, .name = "limit" },
825         { .opt_int = &ctx->dupe, .name = "duplicate" },
826         { .opt_inherit = common_options },
827         { .opt_inherit = notmuch_shared_options },
828         { }
829     };
830
831     ctx->output = OUTPUT_SUMMARY;
832     opt_index = parse_arguments (argc, argv, options, 1);
833     if (opt_index < 0)
834         return EXIT_FAILURE;
835
836     notmuch_process_shared_options (argv[0]);
837
838     if (ctx->output != OUTPUT_FILES && ctx->output != OUTPUT_MESSAGES &&
839         ctx->dupe != -1) {
840         fprintf (stderr, "Error: --duplicate=N is only supported with --output=files and --output=messages.\n");
841         return EXIT_FAILURE;
842     }
843
844     if (_notmuch_search_prepare (ctx, config,
845                                  argc - opt_index, argv + opt_index))
846         return EXIT_FAILURE;
847
848     switch (ctx->output) {
849     case OUTPUT_SUMMARY:
850     case OUTPUT_THREADS:
851         ret = do_search_threads (ctx);
852         break;
853     case OUTPUT_MESSAGES:
854     case OUTPUT_FILES:
855         ret = do_search_messages (ctx);
856         break;
857     case OUTPUT_TAGS:
858         ret = do_search_tags (ctx);
859         break;
860     default:
861         INTERNAL_ERROR ("Unexpected output");
862     }
863
864     _notmuch_search_cleanup (ctx);
865
866     return ret ? EXIT_FAILURE : EXIT_SUCCESS;
867 }
868
869 int
870 notmuch_address_command (notmuch_config_t *config, int argc, char *argv[])
871 {
872     search_context_t *ctx = &search_context;
873     int opt_index, ret;
874
875     notmuch_opt_desc_t options[] = {
876         { .opt_flags = &ctx->output, .name = "output", .keywords =
877           (notmuch_keyword_t []){ { "sender", OUTPUT_SENDER },
878                                   { "recipients", OUTPUT_RECIPIENTS },
879                                   { "count", OUTPUT_COUNT },
880                                   { 0, 0 } } },
881         { .opt_keyword = &ctx->exclude, .name = "exclude", .keywords =
882           (notmuch_keyword_t []){ { "true", NOTMUCH_EXCLUDE_TRUE },
883                                   { "false", NOTMUCH_EXCLUDE_FALSE },
884                                   { 0, 0 } } },
885         { .opt_keyword = &ctx->dedup, .name = "deduplicate", .keywords =
886           (notmuch_keyword_t []){ { "no", DEDUP_NONE },
887                                   { "mailbox", DEDUP_MAILBOX },
888                                   { "address", DEDUP_ADDRESS },
889                                   { 0, 0 } } },
890         { .opt_inherit = common_options },
891         { .opt_inherit = notmuch_shared_options },
892         { }
893     };
894
895     opt_index = parse_arguments (argc, argv, options, 1);
896     if (opt_index < 0)
897         return EXIT_FAILURE;
898
899     notmuch_process_shared_options (argv[0]);
900
901     if (! (ctx->output & (OUTPUT_SENDER | OUTPUT_RECIPIENTS)))
902         ctx->output |= OUTPUT_SENDER;
903
904     if (ctx->output & OUTPUT_COUNT && ctx->dedup == DEDUP_NONE) {
905         fprintf (stderr, "--output=count is not applicable with --deduplicate=no\n");
906         return EXIT_FAILURE;
907     }
908
909     if (_notmuch_search_prepare (ctx, config,
910                                  argc - opt_index, argv + opt_index))
911         return EXIT_FAILURE;
912
913     ctx->addresses = g_hash_table_new_full (strcase_hash, strcase_equal,
914                                             _talloc_free_for_g_hash,
915                                             _list_free_for_g_hash);
916
917     /* The order is not guaranteed if a full pass is required, so go
918      * for fastest. */
919     if (ctx->output & OUTPUT_COUNT || ctx->dedup == DEDUP_ADDRESS)
920         notmuch_query_set_sort (ctx->query, NOTMUCH_SORT_UNSORTED);
921
922     ret = do_search_messages (ctx);
923
924     g_hash_table_unref (ctx->addresses);
925
926
927     _notmuch_search_cleanup (ctx);
928
929     return ret ? EXIT_FAILURE : EXIT_SUCCESS;
930 }