]> git.notmuchmail.org Git - notmuch/blob - notmuch-search.c
cli: g_hash_table_lookup_extended is overkill
[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 http://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     NOTMUCH_FORMAT_JSON,
41     NOTMUCH_FORMAT_TEXT,
42     NOTMUCH_FORMAT_TEXT0,
43     NOTMUCH_FORMAT_SEXP
44 } format_sel_t;
45
46 typedef struct {
47     notmuch_database_t *notmuch;
48     format_sel_t format_sel;
49     sprinter_t *format;
50     notmuch_exclude_t exclude;
51     notmuch_query_t *query;
52     notmuch_sort_t sort;
53     output_t output;
54     int offset;
55     int limit;
56     int dupe;
57     GHashTable *addresses;
58 } search_context_t;
59
60 typedef struct {
61     const char *name;
62     const char *addr;
63     int count;
64 } mailbox_t;
65
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
69  * NULL. */
70 static int
71 get_thread_query (notmuch_thread_t *thread,
72                   char **matched_out, char **unmatched_out)
73 {
74     notmuch_messages_t *messages;
75     char *escaped = NULL;
76     size_t escaped_len = 0;
77
78     *matched_out = *unmatched_out = NULL;
79
80     for (messages = notmuch_thread_get_messages (thread);
81          notmuch_messages_valid (messages);
82          notmuch_messages_move_to_next (messages))
83     {
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)
93             return -1;
94         if (*buf)
95             *buf = talloc_asprintf_append_buffer (*buf, " %s", escaped);
96         else
97             *buf = talloc_strdup (thread, escaped);
98         if (!*buf)
99             return -1;
100     }
101     talloc_free (escaped);
102     return 0;
103 }
104
105 static int
106 do_search_threads (search_context_t *ctx)
107 {
108     notmuch_thread_t *thread;
109     notmuch_threads_t *threads;
110     notmuch_tags_t *tags;
111     sprinter_t *format = ctx->format;
112     time_t date;
113     int i;
114
115     if (ctx->offset < 0) {
116         ctx->offset += notmuch_query_count_threads (ctx->query);
117         if (ctx->offset < 0)
118             ctx->offset = 0;
119     }
120
121     threads = notmuch_query_search_threads (ctx->query);
122     if (threads == NULL)
123         return 1;
124
125     format->begin_list (format);
126
127     for (i = 0;
128          notmuch_threads_valid (threads) && (ctx->limit < 0 || i < ctx->offset + ctx->limit);
129          notmuch_threads_move_to_next (threads), i++)
130     {
131         thread = notmuch_threads_get (threads);
132
133         if (i < ctx->offset) {
134             notmuch_thread_destroy (thread);
135             continue;
136         }
137
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;
152
153             format->begin_map (format);
154
155             if (ctx->sort == NOTMUCH_SORT_OLDEST_FIRST)
156                 date = notmuch_thread_get_oldest_date (thread);
157             else
158                 date = notmuch_thread_get_newest_date (thread);
159
160             relative_date = notmuch_time_relative_date (ctx_quote, date);
161
162             if (format->is_text_printer) {
163                 /* Special case for the text formatter */
164                 printf ("thread:%s %12s [%d/%d] %s; %s (",
165                         thread_id,
166                         relative_date,
167                         matched,
168                         total,
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");
191                         return 1;
192                     }
193                     format->map_key (format, "query");
194                     format->begin_list (format);
195                     if (matched_query)
196                         format->string (format, matched_query);
197                     else
198                         format->null (format);
199                     if (unmatched_query)
200                         format->string (format, unmatched_query);
201                     else
202                         format->null (format);
203                     format->end (format);
204                 }
205             }
206
207             talloc_free (ctx_quote);
208
209             format->map_key (format, "tags");
210             format->begin_list (format);
211
212             for (tags = notmuch_thread_get_tags (thread);
213                  notmuch_tags_valid (tags);
214                  notmuch_tags_move_to_next (tags))
215             {
216                 const char *tag = notmuch_tags_get (tags);
217
218                 if (format->is_text_printer) {
219                   /* Special case for the text formatter */
220                     if (first_tag)
221                         first_tag = FALSE;
222                     else
223                         fputc (' ', stdout);
224                     fputs (tag, stdout);
225                 } else { /* Structured Output */
226                     format->string (format, tag);
227                 }
228             }
229
230             if (format->is_text_printer)
231                 printf (")");
232
233             format->end (format);
234             format->end (format);
235             format->separator (format);
236         }
237
238         notmuch_thread_destroy (thread);
239     }
240
241     format->end (format);
242
243     return 0;
244 }
245
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)
250 {
251     char *key;
252     mailbox_t *mailbox;
253
254     key = talloc_asprintf (ctx->format, "%s <%s>", name, addr);
255     if (! key)
256         return FALSE;
257
258     mailbox = g_hash_table_lookup (ctx->addresses, key);
259     if (mailbox) {
260         mailbox->count++;
261         talloc_free (key);
262         return TRUE;
263     }
264
265     mailbox = talloc (ctx->format, mailbox_t);
266     mailbox->name = talloc_strdup (mailbox, name);
267     mailbox->addr = talloc_strdup (mailbox, addr);
268     mailbox->count = 1;
269     g_hash_table_insert (ctx->addresses, key, mailbox);
270
271     return FALSE;
272 }
273
274 static void
275 print_mailbox (const search_context_t *ctx, const mailbox_t *mailbox)
276 {
277     const char *name = mailbox->name;
278     const char *addr = mailbox->addr;
279     int count = mailbox->count;
280     sprinter_t *format = ctx->format;
281     InternetAddress *ia = internet_address_mailbox_new (name, addr);
282     char *name_addr;
283
284     /* name_addr has the name part quoted if necessary. Compare
285      * 'John Doe <john@doe.com>' vs. '"Doe, John" <john@doe.com>' */
286     name_addr = internet_address_to_string (ia, FALSE);
287
288     if (format->is_text_printer) {
289         if (count > 0) {
290             format->integer (format, count);
291             format->string (format, "\t");
292         }
293         format->string (format, name_addr);
294         format->separator (format);
295     } else {
296         format->begin_map (format);
297         format->map_key (format, "name");
298         format->string (format, name);
299         format->map_key (format, "address");
300         format->string (format, addr);
301         format->map_key (format, "name-addr");
302         format->string (format, name_addr);
303         if (count > 0) {
304             format->map_key (format, "count");
305             format->integer (format, count);
306         }
307         format->end (format);
308         format->separator (format);
309     }
310
311     g_object_unref (ia);
312     g_free (name_addr);
313 }
314
315 /* Print or prepare for printing addresses from InternetAddressList. */
316 static void
317 process_address_list (const search_context_t *ctx,
318                       InternetAddressList *list)
319 {
320     InternetAddress *address;
321     int i;
322
323     for (i = 0; i < internet_address_list_length (list); i++) {
324         address = internet_address_list_get_address (list, i);
325         if (INTERNET_ADDRESS_IS_GROUP (address)) {
326             InternetAddressGroup *group;
327             InternetAddressList *group_list;
328
329             group = INTERNET_ADDRESS_GROUP (address);
330             group_list = internet_address_group_get_members (group);
331             if (group_list == NULL)
332                 continue;
333
334             process_address_list (ctx, group_list);
335         } else {
336             InternetAddressMailbox *mailbox = INTERNET_ADDRESS_MAILBOX (address);
337             mailbox_t mbx = {
338                 .name = internet_address_get_name (address),
339                 .addr = internet_address_mailbox_get_addr (mailbox),
340                 .count = 0,
341             };
342
343             if (is_duplicate (ctx, mbx.name, mbx.addr))
344                 continue;
345
346             if (ctx->output & OUTPUT_COUNT)
347                 continue;
348
349             print_mailbox (ctx, &mbx);
350         }
351     }
352 }
353
354 /* Print or prepare for printing addresses from a message header. */
355 static void
356 process_address_header (const search_context_t *ctx, const char *value)
357 {
358     InternetAddressList *list;
359
360     if (value == NULL)
361         return;
362
363     list = internet_address_list_parse_string (value);
364     if (list == NULL)
365         return;
366
367     process_address_list (ctx, list);
368
369     g_object_unref (list);
370 }
371
372 /* Destructor for talloc-allocated GHashTable keys and values. */
373 static void
374 _talloc_free_for_g_hash (void *ptr)
375 {
376     talloc_free (ptr);
377 }
378
379 static void
380 print_hash_value (unused (gpointer key), gpointer value, gpointer user_data)
381 {
382     const mailbox_t *mailbox = value;
383     search_context_t *ctx = user_data;
384
385     print_mailbox (ctx, mailbox);
386 }
387
388 static int
389 _count_filenames (notmuch_message_t *message)
390 {
391     notmuch_filenames_t *filenames;
392     int i = 0;
393
394     filenames = notmuch_message_get_filenames (message);
395
396     while (notmuch_filenames_valid (filenames)) {
397         notmuch_filenames_move_to_next (filenames);
398         i++;
399     }
400
401     notmuch_filenames_destroy (filenames);
402
403     return i;
404 }
405
406 static int
407 do_search_messages (search_context_t *ctx)
408 {
409     notmuch_message_t *message;
410     notmuch_messages_t *messages;
411     notmuch_filenames_t *filenames;
412     sprinter_t *format = ctx->format;
413     int i;
414
415     if (ctx->offset < 0) {
416         ctx->offset += notmuch_query_count_messages (ctx->query);
417         if (ctx->offset < 0)
418             ctx->offset = 0;
419     }
420
421     messages = notmuch_query_search_messages (ctx->query);
422     if (messages == NULL)
423         return 1;
424
425     format->begin_list (format);
426
427     for (i = 0;
428          notmuch_messages_valid (messages) && (ctx->limit < 0 || i < ctx->offset + ctx->limit);
429          notmuch_messages_move_to_next (messages), i++)
430     {
431         if (i < ctx->offset)
432             continue;
433
434         message = notmuch_messages_get (messages);
435
436         if (ctx->output == OUTPUT_FILES) {
437             int j;
438             filenames = notmuch_message_get_filenames (message);
439
440             for (j = 1;
441                  notmuch_filenames_valid (filenames);
442                  notmuch_filenames_move_to_next (filenames), j++)
443             {
444                 if (ctx->dupe < 0 || ctx->dupe == j) {
445                     format->string (format, notmuch_filenames_get (filenames));
446                     format->separator (format);
447                 }
448             }
449             
450             notmuch_filenames_destroy( filenames );
451
452         } else if (ctx->output == OUTPUT_MESSAGES) {
453             /* special case 1 for speed */
454             if (ctx->dupe <= 1 || ctx->dupe <= _count_filenames (message)) {
455                 format->set_prefix (format, "id");
456                 format->string (format,
457                                 notmuch_message_get_message_id (message));
458                 format->separator (format);
459             }
460         } else {
461             if (ctx->output & OUTPUT_SENDER) {
462                 const char *addrs;
463
464                 addrs = notmuch_message_get_header (message, "from");
465                 process_address_header (ctx, addrs);
466             }
467
468             if (ctx->output & OUTPUT_RECIPIENTS) {
469                 const char *hdrs[] = { "to", "cc", "bcc" };
470                 const char *addrs;
471                 size_t j;
472
473                 for (j = 0; j < ARRAY_SIZE (hdrs); j++) {
474                     addrs = notmuch_message_get_header (message, hdrs[j]);
475                     process_address_header (ctx, addrs);
476                 }
477             }
478         }
479
480         notmuch_message_destroy (message);
481     }
482
483     if (ctx->addresses && ctx->output & OUTPUT_COUNT)
484         g_hash_table_foreach (ctx->addresses, print_hash_value, ctx);
485
486     notmuch_messages_destroy (messages);
487
488     format->end (format);
489
490     return 0;
491 }
492
493 static int
494 do_search_tags (const search_context_t *ctx)
495 {
496     notmuch_messages_t *messages = NULL;
497     notmuch_tags_t *tags;
498     const char *tag;
499     sprinter_t *format = ctx->format;
500     notmuch_query_t *query = ctx->query;
501     notmuch_database_t *notmuch = ctx->notmuch;
502
503     /* should the following only special case if no excluded terms
504      * specified? */
505
506     /* Special-case query of "*" for better performance. */
507     if (strcmp (notmuch_query_get_query_string (query), "*") == 0) {
508         tags = notmuch_database_get_all_tags (notmuch);
509     } else {
510         messages = notmuch_query_search_messages (query);
511         if (messages == NULL)
512             return 1;
513
514         tags = notmuch_messages_collect_tags (messages);
515     }
516     if (tags == NULL)
517         return 1;
518
519     format->begin_list (format);
520
521     for (;
522          notmuch_tags_valid (tags);
523          notmuch_tags_move_to_next (tags))
524     {
525         tag = notmuch_tags_get (tags);
526
527         format->string (format, tag);
528         format->separator (format);
529
530     }
531
532     notmuch_tags_destroy (tags);
533
534     if (messages)
535         notmuch_messages_destroy (messages);
536
537     format->end (format);
538
539     return 0;
540 }
541
542 static int
543 _notmuch_search_prepare (search_context_t *ctx, notmuch_config_t *config, int argc, char *argv[])
544 {
545     char *query_str;
546     unsigned int i;
547     char *status_string = NULL;
548
549     switch (ctx->format_sel) {
550     case NOTMUCH_FORMAT_TEXT:
551         ctx->format = sprinter_text_create (config, stdout);
552         break;
553     case NOTMUCH_FORMAT_TEXT0:
554         if (ctx->output == OUTPUT_SUMMARY) {
555             fprintf (stderr, "Error: --format=text0 is not compatible with --output=summary.\n");
556             return EXIT_FAILURE;
557         }
558         ctx->format = sprinter_text0_create (config, stdout);
559         break;
560     case NOTMUCH_FORMAT_JSON:
561         ctx->format = sprinter_json_create (config, stdout);
562         break;
563     case NOTMUCH_FORMAT_SEXP:
564         ctx->format = sprinter_sexp_create (config, stdout);
565         break;
566     default:
567         /* this should never happen */
568         INTERNAL_ERROR("no output format selected");
569     }
570
571     notmuch_exit_if_unsupported_format ();
572
573     if (notmuch_database_open_verbose (
574             notmuch_config_get_database_path (config),
575             NOTMUCH_DATABASE_MODE_READ_ONLY, &ctx->notmuch, &status_string)) {
576
577         if (status_string) {
578             fputs (status_string, stderr);
579             free (status_string);
580         }
581
582         return EXIT_FAILURE;
583     }
584
585     notmuch_exit_if_unmatched_db_uuid (ctx->notmuch);
586
587     query_str = query_string_from_args (ctx->notmuch, argc, argv);
588     if (query_str == NULL) {
589         fprintf (stderr, "Out of memory.\n");
590         return EXIT_FAILURE;
591     }
592     if (*query_str == '\0') {
593         fprintf (stderr, "Error: notmuch search requires at least one search term.\n");
594         return EXIT_FAILURE;
595     }
596
597     ctx->query = notmuch_query_create (ctx->notmuch, query_str);
598     if (ctx->query == NULL) {
599         fprintf (stderr, "Out of memory\n");
600         return EXIT_FAILURE;
601     }
602
603     notmuch_query_set_sort (ctx->query, ctx->sort);
604
605     if (ctx->exclude == NOTMUCH_EXCLUDE_FLAG && ctx->output != OUTPUT_SUMMARY) {
606         /* If we are not doing summary output there is nowhere to
607          * print the excluded flag so fall back on including the
608          * excluded messages. */
609         fprintf (stderr, "Warning: this output format cannot flag excluded messages.\n");
610         ctx->exclude = NOTMUCH_EXCLUDE_FALSE;
611     }
612
613     if (ctx->exclude != NOTMUCH_EXCLUDE_FALSE) {
614         const char **search_exclude_tags;
615         size_t search_exclude_tags_length;
616
617         search_exclude_tags = notmuch_config_get_search_exclude_tags
618             (config, &search_exclude_tags_length);
619         for (i = 0; i < search_exclude_tags_length; i++)
620             notmuch_query_add_tag_exclude (ctx->query, search_exclude_tags[i]);
621         notmuch_query_set_omit_excluded (ctx->query, ctx->exclude);
622     }
623
624     return 0;
625 }
626
627 static void
628 _notmuch_search_cleanup (search_context_t *ctx)
629 {
630     notmuch_query_destroy (ctx->query);
631     notmuch_database_destroy (ctx->notmuch);
632
633     talloc_free (ctx->format);
634 }
635
636 static search_context_t search_context = {
637     .format_sel = NOTMUCH_FORMAT_TEXT,
638     .exclude = NOTMUCH_EXCLUDE_TRUE,
639     .sort = NOTMUCH_SORT_NEWEST_FIRST,
640     .output = 0,
641     .offset = 0,
642     .limit = -1, /* unlimited */
643     .dupe = -1,
644 };
645
646 static const notmuch_opt_desc_t common_options[] = {
647     { NOTMUCH_OPT_KEYWORD, &search_context.sort, "sort", 's',
648       (notmuch_keyword_t []){ { "oldest-first", NOTMUCH_SORT_OLDEST_FIRST },
649                               { "newest-first", NOTMUCH_SORT_NEWEST_FIRST },
650                               { 0, 0 } } },
651     { NOTMUCH_OPT_KEYWORD, &search_context.format_sel, "format", 'f',
652       (notmuch_keyword_t []){ { "json", NOTMUCH_FORMAT_JSON },
653                               { "sexp", NOTMUCH_FORMAT_SEXP },
654                               { "text", NOTMUCH_FORMAT_TEXT },
655                               { "text0", NOTMUCH_FORMAT_TEXT0 },
656                               { 0, 0 } } },
657     { NOTMUCH_OPT_INT, &notmuch_format_version, "format-version", 0, 0 },
658     { 0, 0, 0, 0, 0 }
659 };
660
661 int
662 notmuch_search_command (notmuch_config_t *config, int argc, char *argv[])
663 {
664     search_context_t *ctx = &search_context;
665     int opt_index, ret;
666
667     notmuch_opt_desc_t options[] = {
668         { NOTMUCH_OPT_KEYWORD, &ctx->output, "output", 'o',
669           (notmuch_keyword_t []){ { "summary", OUTPUT_SUMMARY },
670                                   { "threads", OUTPUT_THREADS },
671                                   { "messages", OUTPUT_MESSAGES },
672                                   { "files", OUTPUT_FILES },
673                                   { "tags", OUTPUT_TAGS },
674                                   { 0, 0 } } },
675         { NOTMUCH_OPT_KEYWORD, &ctx->exclude, "exclude", 'x',
676           (notmuch_keyword_t []){ { "true", NOTMUCH_EXCLUDE_TRUE },
677                                   { "false", NOTMUCH_EXCLUDE_FALSE },
678                                   { "flag", NOTMUCH_EXCLUDE_FLAG },
679                                   { "all", NOTMUCH_EXCLUDE_ALL },
680                                   { 0, 0 } } },
681         { NOTMUCH_OPT_INT, &ctx->offset, "offset", 'O', 0 },
682         { NOTMUCH_OPT_INT, &ctx->limit, "limit", 'L', 0  },
683         { NOTMUCH_OPT_INT, &ctx->dupe, "duplicate", 'D', 0  },
684         { NOTMUCH_OPT_INHERIT, (void *) &common_options, NULL, 0, 0 },
685         { NOTMUCH_OPT_INHERIT, (void *) &notmuch_shared_options, NULL, 0, 0 },
686         { 0, 0, 0, 0, 0 }
687     };
688
689     ctx->output = OUTPUT_SUMMARY;
690     opt_index = parse_arguments (argc, argv, options, 1);
691     if (opt_index < 0)
692         return EXIT_FAILURE;
693
694     notmuch_process_shared_options (argv[0]);
695
696     if (ctx->output != OUTPUT_FILES && ctx->output != OUTPUT_MESSAGES &&
697         ctx->dupe != -1) {
698         fprintf (stderr, "Error: --duplicate=N is only supported with --output=files and --output=messages.\n");
699         return EXIT_FAILURE;
700     }
701
702     if (_notmuch_search_prepare (ctx, config,
703                                  argc - opt_index, argv + opt_index))
704         return EXIT_FAILURE;
705
706     switch (ctx->output) {
707     case OUTPUT_SUMMARY:
708     case OUTPUT_THREADS:
709         ret = do_search_threads (ctx);
710         break;
711     case OUTPUT_MESSAGES:
712     case OUTPUT_FILES:
713         ret = do_search_messages (ctx);
714         break;
715     case OUTPUT_TAGS:
716         ret = do_search_tags (ctx);
717         break;
718     default:
719         INTERNAL_ERROR ("Unexpected output");
720     }
721
722     _notmuch_search_cleanup (ctx);
723
724     return ret ? EXIT_FAILURE : EXIT_SUCCESS;
725 }
726
727 int
728 notmuch_address_command (notmuch_config_t *config, int argc, char *argv[])
729 {
730     search_context_t *ctx = &search_context;
731     int opt_index, ret;
732
733     notmuch_opt_desc_t options[] = {
734         { NOTMUCH_OPT_KEYWORD_FLAGS, &ctx->output, "output", 'o',
735           (notmuch_keyword_t []){ { "sender", OUTPUT_SENDER },
736                                   { "recipients", OUTPUT_RECIPIENTS },
737                                   { "count", OUTPUT_COUNT },
738                                   { 0, 0 } } },
739         { NOTMUCH_OPT_KEYWORD, &ctx->exclude, "exclude", 'x',
740           (notmuch_keyword_t []){ { "true", NOTMUCH_EXCLUDE_TRUE },
741                                   { "false", NOTMUCH_EXCLUDE_FALSE },
742                                   { 0, 0 } } },
743         { NOTMUCH_OPT_INHERIT, (void *) &common_options, NULL, 0, 0 },
744         { NOTMUCH_OPT_INHERIT, (void *) &notmuch_shared_options, NULL, 0, 0 },
745         { 0, 0, 0, 0, 0 }
746     };
747
748     opt_index = parse_arguments (argc, argv, options, 1);
749     if (opt_index < 0)
750         return EXIT_FAILURE;
751
752     notmuch_process_shared_options (argv[0]);
753
754     if (! (ctx->output & (OUTPUT_SENDER | OUTPUT_RECIPIENTS)))
755         ctx->output |= OUTPUT_SENDER;
756
757     if (_notmuch_search_prepare (ctx, config,
758                                  argc - opt_index, argv + opt_index))
759         return EXIT_FAILURE;
760
761     ctx->addresses = g_hash_table_new_full (g_str_hash, g_str_equal,
762                                             _talloc_free_for_g_hash, _talloc_free_for_g_hash);
763
764     ret = do_search_messages (ctx);
765
766     g_hash_table_unref (ctx->addresses);
767
768
769     _notmuch_search_cleanup (ctx);
770
771     return ret ? EXIT_FAILURE : EXIT_SUCCESS;
772 }