]> git.notmuchmail.org Git - notmuch/blob - notmuch-show.c
emacs: support "notmuch new" as a notmuch-poll-script
[notmuch] / notmuch-show.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
23 static void
24 format_message_text (unused (const void *ctx),
25                      notmuch_message_t *message,
26                      int indent);
27 static void
28 format_headers_text (const void *ctx,
29                      notmuch_message_t *message);
30
31 static void
32 format_headers_message_part_text (GMimeMessage *message);
33
34 static void
35 format_part_start_text (GMimeObject *part,
36                         int *part_count);
37
38 static void
39 format_part_content_text (GMimeObject *part);
40
41 static void
42 format_part_end_text (GMimeObject *part);
43
44 static const notmuch_show_format_t format_text = {
45     "",
46         "\fmessage{ ", format_message_text,
47             "\fheader{\n", format_headers_text, format_headers_message_part_text, "\fheader}\n",
48             "\fbody{\n",
49                 format_part_start_text,
50                 NULL,
51                 NULL,
52                 format_part_content_text,
53                 format_part_end_text,
54                 "",
55             "\fbody}\n",
56         "\fmessage}\n", "",
57     ""
58 };
59
60 static void
61 format_message_json (const void *ctx,
62                      notmuch_message_t *message,
63                      unused (int indent));
64 static void
65 format_headers_json (const void *ctx,
66                      notmuch_message_t *message);
67
68 static void
69 format_headers_message_part_json (GMimeMessage *message);
70
71 static void
72 format_part_start_json (unused (GMimeObject *part),
73                         int *part_count);
74
75 static void
76 format_part_encstatus_json (int status);
77
78 static void
79 format_part_sigstatus_json (const GMimeSignatureValidity* validity);
80
81 static void
82 format_part_content_json (GMimeObject *part);
83
84 static void
85 format_part_end_json (GMimeObject *part);
86
87 static const notmuch_show_format_t format_json = {
88     "[",
89         "{", format_message_json,
90             "\"headers\": {", format_headers_json, format_headers_message_part_json, "}",
91             ", \"body\": [",
92                 format_part_start_json,
93                 format_part_encstatus_json,
94                 format_part_sigstatus_json,
95                 format_part_content_json,
96                 format_part_end_json,
97                 ", ",
98             "]",
99         "}", ", ",
100     "]"
101 };
102
103 static void
104 format_message_mbox (const void *ctx,
105                      notmuch_message_t *message,
106                      unused (int indent));
107
108 static const notmuch_show_format_t format_mbox = {
109     "",
110         "", format_message_mbox,
111             "", NULL, NULL, "",
112             "",
113                 NULL,
114                 NULL,
115                 NULL,
116                 NULL,
117                 NULL,
118                 "",
119             "",
120         "", "",
121     ""
122 };
123
124 static void
125 format_part_content_raw (GMimeObject *part);
126
127 static const notmuch_show_format_t format_raw = {
128     "",
129         "", NULL,
130             "", NULL, format_headers_message_part_text, "\n",
131             "",
132                 NULL,
133                 NULL,
134                 NULL,
135                 format_part_content_raw,
136                 NULL,
137                 "",
138             "",
139         "", "",
140     ""
141 };
142
143 static const char *
144 _get_tags_as_string (const void *ctx, notmuch_message_t *message)
145 {
146     notmuch_tags_t *tags;
147     int first = 1;
148     const char *tag;
149     char *result;
150
151     result = talloc_strdup (ctx, "");
152     if (result == NULL)
153         return NULL;
154
155     for (tags = notmuch_message_get_tags (message);
156          notmuch_tags_valid (tags);
157          notmuch_tags_move_to_next (tags))
158     {
159         tag = notmuch_tags_get (tags);
160
161         result = talloc_asprintf_append (result, "%s%s",
162                                          first ? "" : " ", tag);
163         first = 0;
164     }
165
166     return result;
167 }
168
169 /* Get a nice, single-line summary of message. */
170 static const char *
171 _get_one_line_summary (const void *ctx, notmuch_message_t *message)
172 {
173     const char *from;
174     time_t date;
175     const char *relative_date;
176     const char *tags;
177
178     from = notmuch_message_get_header (message, "from");
179
180     date = notmuch_message_get_date (message);
181     relative_date = notmuch_time_relative_date (ctx, date);
182
183     tags = _get_tags_as_string (ctx, message);
184
185     return talloc_asprintf (ctx, "%s (%s) (%s)",
186                             from, relative_date, tags);
187 }
188
189 static void
190 format_message_text (unused (const void *ctx), notmuch_message_t *message, int indent)
191 {
192     printf ("id:%s depth:%d match:%d filename:%s\n",
193             notmuch_message_get_message_id (message),
194             indent,
195             notmuch_message_get_flag (message, NOTMUCH_MESSAGE_FLAG_MATCH),
196             notmuch_message_get_filename (message));
197 }
198
199 static void
200 format_message_json (const void *ctx, notmuch_message_t *message, unused (int indent))
201 {
202     notmuch_tags_t *tags;
203     int first = 1;
204     void *ctx_quote = talloc_new (ctx);
205     time_t date;
206     const char *relative_date;
207
208     date = notmuch_message_get_date (message);
209     relative_date = notmuch_time_relative_date (ctx, date);
210
211     printf ("\"id\": %s, \"match\": %s, \"filename\": %s, \"timestamp\": %ld, \"date_relative\": \"%s\", \"tags\": [",
212             json_quote_str (ctx_quote, notmuch_message_get_message_id (message)),
213             notmuch_message_get_flag (message, NOTMUCH_MESSAGE_FLAG_MATCH) ? "true" : "false",
214             json_quote_str (ctx_quote, notmuch_message_get_filename (message)),
215             date, relative_date);
216
217     for (tags = notmuch_message_get_tags (message);
218          notmuch_tags_valid (tags);
219          notmuch_tags_move_to_next (tags))
220     {
221          printf("%s%s", first ? "" : ",",
222                json_quote_str (ctx_quote, notmuch_tags_get (tags)));
223          first = 0;
224     }
225     printf("], ");
226     talloc_free (ctx_quote);
227 }
228
229 /* Extract just the email address from the contents of a From:
230  * header. */
231 static const char *
232 _extract_email_address (const void *ctx, const char *from)
233 {
234     InternetAddressList *addresses;
235     InternetAddress *address;
236     InternetAddressMailbox *mailbox;
237     const char *email = "MAILER-DAEMON";
238
239     addresses = internet_address_list_parse_string (from);
240
241     /* Bail if there is no address here. */
242     if (addresses == NULL || internet_address_list_length (addresses) < 1)
243         goto DONE;
244
245     /* Otherwise, just use the first address. */
246     address = internet_address_list_get_address (addresses, 0);
247
248     /* The From header should never contain an address group rather
249      * than a mailbox. So bail if it does. */
250     if (! INTERNET_ADDRESS_IS_MAILBOX (address))
251         goto DONE;
252
253     mailbox = INTERNET_ADDRESS_MAILBOX (address);
254     email = internet_address_mailbox_get_addr (mailbox);
255     email = talloc_strdup (ctx, email);
256
257   DONE:
258     if (addresses)
259         g_object_unref (addresses);
260
261     return email;
262    }
263
264 /* Return 1 if 'line' is an mbox From_ line---that is, a line
265  * beginning with zero or more '>' characters followed by the
266  * characters 'F', 'r', 'o', 'm', and space.
267  *
268  * Any characters at all may appear after that in the line.
269  */
270 static int
271 _is_from_line (const char *line)
272 {
273     const char *s = line;
274
275     if (line == NULL)
276         return 0;
277
278     while (*s == '>')
279         s++;
280
281     if (STRNCMP_LITERAL (s, "From ") == 0)
282         return 1;
283     else
284         return 0;
285 }
286
287 /* Print a message in "mboxrd" format as documented, for example,
288  * here:
289  *
290  * http://qmail.org/qmail-manual-html/man5/mbox.html
291  */
292 static void
293 format_message_mbox (const void *ctx,
294                      notmuch_message_t *message,
295                      unused (int indent))
296 {
297     const char *filename;
298     FILE *file;
299     const char *from;
300
301     time_t date;
302     struct tm date_gmtime;
303     char date_asctime[26];
304
305     char *line = NULL;
306     size_t line_size;
307     ssize_t line_len;
308
309     filename = notmuch_message_get_filename (message);
310     file = fopen (filename, "r");
311     if (file == NULL) {
312         fprintf (stderr, "Failed to open %s: %s\n",
313                  filename, strerror (errno));
314         return;
315     }
316
317     from = notmuch_message_get_header (message, "from");
318     from = _extract_email_address (ctx, from);
319
320     date = notmuch_message_get_date (message);
321     gmtime_r (&date, &date_gmtime);
322     asctime_r (&date_gmtime, date_asctime);
323
324     printf ("From %s %s", from, date_asctime);
325
326     while ((line_len = getline (&line, &line_size, file)) != -1 ) {
327         if (_is_from_line (line))
328             putchar ('>');
329         printf ("%s", line);
330     }
331
332     printf ("\n");
333
334     fclose (file);
335 }
336
337
338 static void
339 format_headers_text (const void *ctx, notmuch_message_t *message)
340 {
341     const char *headers[] = {
342         "Subject", "From", "To", "Cc", "Bcc", "Date"
343     };
344     const char *name, *value;
345     unsigned int i;
346
347     printf ("%s\n", _get_one_line_summary (ctx, message));
348
349     for (i = 0; i < ARRAY_SIZE (headers); i++) {
350         name = headers[i];
351         value = notmuch_message_get_header (message, name);
352         if (value && strlen (value))
353             printf ("%s: %s\n", name, value);
354     }
355 }
356
357 static void
358 format_headers_message_part_text (GMimeMessage *message)
359 {
360     InternetAddressList *recipients;
361     const char *recipients_string;
362
363     printf ("From: %s\n", g_mime_message_get_sender (message));
364     recipients = g_mime_message_get_recipients (message, GMIME_RECIPIENT_TYPE_TO);
365     recipients_string = internet_address_list_to_string (recipients, 0);
366     if (recipients_string)
367         printf ("To: %s\n",
368                 recipients_string);
369     recipients = g_mime_message_get_recipients (message, GMIME_RECIPIENT_TYPE_CC);
370     recipients_string = internet_address_list_to_string (recipients, 0);
371     if (recipients_string)
372         printf ("Cc: %s\n",
373                 recipients_string);
374     printf ("Subject: %s\n", g_mime_message_get_subject (message));
375     printf ("Date: %s\n", g_mime_message_get_date_as_string (message));
376 }
377
378 static void
379 format_headers_json (const void *ctx, notmuch_message_t *message)
380 {
381     const char *headers[] = {
382         "Subject", "From", "To", "Cc", "Bcc", "Date"
383     };
384     const char *name, *value;
385     unsigned int i;
386     int first_header = 1;
387     void *ctx_quote = talloc_new (ctx);
388
389     for (i = 0; i < ARRAY_SIZE (headers); i++) {
390         name = headers[i];
391         value = notmuch_message_get_header (message, name);
392         if (value)
393         {
394             if (!first_header)
395                 fputs (", ", stdout);
396             first_header = 0;
397
398             printf ("%s: %s",
399                     json_quote_str (ctx_quote, name),
400                     json_quote_str (ctx_quote, value));
401         }
402     }
403
404     talloc_free (ctx_quote);
405 }
406
407 static void
408 format_headers_message_part_json (GMimeMessage *message)
409 {
410     void *ctx = talloc_new (NULL);
411     void *ctx_quote = talloc_new (ctx);
412     InternetAddressList *recipients;
413     const char *recipients_string;
414
415     printf ("%s: %s",
416             json_quote_str (ctx_quote, "From"),
417             json_quote_str (ctx_quote, g_mime_message_get_sender (message)));
418     recipients = g_mime_message_get_recipients (message, GMIME_RECIPIENT_TYPE_TO);
419     recipients_string = internet_address_list_to_string (recipients, 0);
420     if (recipients_string)
421         printf (", %s: %s",
422                 json_quote_str (ctx_quote, "To"),
423                 json_quote_str (ctx_quote, recipients_string));
424     recipients = g_mime_message_get_recipients (message, GMIME_RECIPIENT_TYPE_CC);
425     recipients_string = internet_address_list_to_string (recipients, 0);
426     if (recipients_string)
427         printf (", %s: %s",
428                 json_quote_str (ctx_quote, "Cc"),
429                 json_quote_str (ctx_quote, recipients_string));
430     printf (", %s: %s",
431             json_quote_str (ctx_quote, "Subject"),
432             json_quote_str (ctx_quote, g_mime_message_get_subject (message)));
433     printf (", %s: %s",
434             json_quote_str (ctx_quote, "Date"),
435             json_quote_str (ctx_quote, g_mime_message_get_date_as_string (message)));
436
437     talloc_free (ctx_quote);
438     talloc_free (ctx);
439 }
440
441 /* Write a MIME text part out to the given stream.
442  *
443  * Both line-ending conversion (CRLF->LF) and charset conversion ( ->
444  * UTF-8) will be performed, so it is inappropriate to call this
445  * function with a non-text part. Doing so will trigger an internal
446  * error.
447  */
448 static void
449 show_text_part_content (GMimeObject *part, GMimeStream *stream_out)
450 {
451     GMimeContentType *content_type = g_mime_object_get_content_type (GMIME_OBJECT (part));
452     GMimeStream *stream_filter = NULL;
453     GMimeDataWrapper *wrapper;
454     const char *charset;
455
456     if (! g_mime_content_type_is_type (content_type, "text", "*"))
457         INTERNAL_ERROR ("Illegal request to format non-text part (%s) as text.",
458                         g_mime_content_type_to_string (content_type));
459
460     if (stream_out == NULL)
461         return;
462
463     stream_filter = g_mime_stream_filter_new (stream_out);
464     g_mime_stream_filter_add(GMIME_STREAM_FILTER (stream_filter),
465                              g_mime_filter_crlf_new (FALSE, FALSE));
466
467     charset = g_mime_object_get_content_type_parameter (part, "charset");
468     if (charset) {
469         GMimeFilter *charset_filter;
470         charset_filter = g_mime_filter_charset_new (charset, "UTF-8");
471         /* This result can be NULL for things like "unknown-8bit".
472          * Don't set a NULL filter as that makes GMime print
473          * annoying assertion-failure messages on stderr. */
474         if (charset_filter)
475             g_mime_stream_filter_add (GMIME_STREAM_FILTER (stream_filter),
476                                       charset_filter);
477     }
478
479     wrapper = g_mime_part_get_content_object (GMIME_PART (part));
480     if (wrapper && stream_filter)
481         g_mime_data_wrapper_write_to_stream (wrapper, stream_filter);
482     if (stream_filter)
483         g_object_unref(stream_filter);
484 }
485
486 static const char*
487 signer_status_to_string (GMimeSignerStatus x)
488 {
489     switch (x) {
490     case GMIME_SIGNER_STATUS_NONE:
491         return "none";
492     case GMIME_SIGNER_STATUS_GOOD:
493         return "good";
494     case GMIME_SIGNER_STATUS_BAD:
495         return "bad";
496     case GMIME_SIGNER_STATUS_ERROR:
497         return "error";
498     }
499     return "unknown";
500 }
501
502 static void
503 format_part_start_text (GMimeObject *part, int *part_count)
504 {
505     GMimeContentDisposition *disposition = g_mime_object_get_content_disposition (part);
506
507     if (disposition &&
508         strcmp (disposition->disposition, GMIME_DISPOSITION_ATTACHMENT) == 0)
509     {
510         printf ("\fattachment{ ID: %d", *part_count);
511
512     } else {
513
514         printf ("\fpart{ ID: %d", *part_count);
515     }
516 }
517
518 static void
519 format_part_content_text (GMimeObject *part)
520 {
521     const char *cid = g_mime_object_get_content_id (part);
522     GMimeContentType *content_type = g_mime_object_get_content_type (GMIME_OBJECT (part));
523
524     if (GMIME_IS_PART (part))
525     {
526         const char *filename = g_mime_part_get_filename (GMIME_PART (part));
527         if (filename)
528             printf (", Filename: %s", filename);
529     }
530
531     if (cid)
532         printf (", Content-id: %s", cid);
533
534     printf (", Content-type: %s\n", g_mime_content_type_to_string (content_type));
535
536     if (g_mime_content_type_is_type (content_type, "text", "*") &&
537         !g_mime_content_type_is_type (content_type, "text", "html"))
538     {
539         GMimeStream *stream_stdout = g_mime_stream_file_new (stdout);
540         g_mime_stream_file_set_owner (GMIME_STREAM_FILE (stream_stdout), FALSE);
541         show_text_part_content (part, stream_stdout);
542         g_object_unref(stream_stdout);
543     }
544     else if (g_mime_content_type_is_type (content_type, "multipart", "*") ||
545              g_mime_content_type_is_type (content_type, "message", "rfc822"))
546     {
547         /* Do nothing for multipart since its content will be printed
548          * when recursing. */
549     }
550     else
551     {
552         printf ("Non-text part: %s\n",
553                 g_mime_content_type_to_string (content_type));
554     }
555 }
556
557 static void
558 format_part_end_text (GMimeObject *part)
559 {
560     GMimeContentDisposition *disposition;
561
562     disposition = g_mime_object_get_content_disposition (part);
563     if (disposition &&
564         strcmp (disposition->disposition, GMIME_DISPOSITION_ATTACHMENT) == 0)
565     {
566         printf ("\fattachment}\n");
567     }
568     else
569     {
570         printf ("\fpart}\n");
571     }
572 }
573
574 static void
575 format_part_start_json (unused (GMimeObject *part), int *part_count)
576 {
577     printf ("{\"id\": %d", *part_count);
578 }
579
580 static void
581 format_part_encstatus_json (int status)
582 {
583     printf (", \"encstatus\": [{\"status\": ");
584     if (status) {
585         printf ("\"good\"");
586     } else {
587         printf ("\"bad\"");
588     }
589     printf ("}]");
590 }
591
592 static void
593 format_part_sigstatus_json (const GMimeSignatureValidity* validity)
594 {
595     printf (", \"sigstatus\": [");
596
597     if (!validity) {
598         printf ("]");
599         return;
600     }
601
602     const GMimeSigner *signer = g_mime_signature_validity_get_signers (validity);
603     int first = 1;
604     void *ctx_quote = talloc_new (NULL);
605
606     while (signer) {
607         if (first)
608             first = 0;
609         else
610             printf (", ");
611
612         printf ("{");
613
614         /* status */
615         printf ("\"status\": %s",
616                 json_quote_str (ctx_quote,
617                                 signer_status_to_string (signer->status)));
618
619         if (signer->status == GMIME_SIGNER_STATUS_GOOD)
620         {
621             if (signer->fingerprint)
622                 printf (", \"fingerprint\": %s", json_quote_str (ctx_quote, signer->fingerprint));
623             /* these dates are seconds since the epoch; should we
624              * provide a more human-readable format string? */
625             if (signer->created)
626                 printf (", \"created\": %d", (int) signer->created);
627             if (signer->expires)
628                 printf (", \"expires\": %d", (int) signer->expires);
629             /* output user id only if validity is FULL or ULTIMATE. */
630             /* note that gmime is using the term "trust" here, which
631              * is WRONG.  It's actually user id "validity". */
632             if ((signer->name) && (signer->trust)) {
633                 if ((signer->trust == GMIME_SIGNER_TRUST_FULLY) || (signer->trust == GMIME_SIGNER_TRUST_ULTIMATE))
634                     printf (", \"userid\": %s", json_quote_str (ctx_quote, signer->name));
635            }
636        } else {
637            if (signer->keyid)
638                printf (", \"keyid\": %s", json_quote_str (ctx_quote, signer->keyid));
639        }
640        if (signer->errors != GMIME_SIGNER_ERROR_NONE) {
641            printf (", \"errors\": %x", signer->errors);
642        }
643
644        printf ("}");
645        signer = signer->next;
646     }
647
648     printf ("]");
649
650     talloc_free (ctx_quote);
651 }
652
653 static void
654 format_part_content_json (GMimeObject *part)
655 {
656     GMimeContentType *content_type = g_mime_object_get_content_type (GMIME_OBJECT (part));
657     GMimeStream *stream_memory = g_mime_stream_mem_new ();
658     const char *cid = g_mime_object_get_content_id (part);
659     void *ctx = talloc_new (NULL);
660     GByteArray *part_content;
661
662     printf (", \"content-type\": %s",
663             json_quote_str (ctx, g_mime_content_type_to_string (content_type)));
664
665     if (cid != NULL)
666             printf(", \"content-id\": %s", json_quote_str (ctx, cid));
667
668     if (GMIME_IS_PART (part))
669     {
670         const char *filename = g_mime_part_get_filename (GMIME_PART (part));
671         if (filename)
672             printf (", \"filename\": %s", json_quote_str (ctx, filename));
673     }
674
675     if (g_mime_content_type_is_type (content_type, "text", "*") &&
676         !g_mime_content_type_is_type (content_type, "text", "html"))
677     {
678         show_text_part_content (part, stream_memory);
679         part_content = g_mime_stream_mem_get_byte_array (GMIME_STREAM_MEM (stream_memory));
680
681         printf (", \"content\": %s", json_quote_chararray (ctx, (char *) part_content->data, part_content->len));
682     }
683     else if (g_mime_content_type_is_type (content_type, "multipart", "*"))
684     {
685         printf (", \"content\": [");
686     }
687     else if (g_mime_content_type_is_type (content_type, "message", "rfc822"))
688     {
689         printf (", \"content\": [{");
690     }
691
692     talloc_free (ctx);
693     if (stream_memory)
694         g_object_unref (stream_memory);
695 }
696
697 static void
698 format_part_end_json (GMimeObject *part)
699 {
700     GMimeContentType *content_type = g_mime_object_get_content_type (GMIME_OBJECT (part));
701
702     if (g_mime_content_type_is_type (content_type, "multipart", "*"))
703         printf ("]");
704     else if (g_mime_content_type_is_type (content_type, "message", "rfc822"))
705         printf ("}]");
706
707     printf ("}");
708 }
709
710 static void
711 format_part_content_raw (GMimeObject *part)
712 {
713     if (! GMIME_IS_PART (part))
714         return;
715
716     GMimeStream *stream_stdout;
717     GMimeStream *stream_filter = NULL;
718     GMimeDataWrapper *wrapper;
719
720     stream_stdout = g_mime_stream_file_new (stdout);
721     g_mime_stream_file_set_owner (GMIME_STREAM_FILE (stream_stdout), FALSE);
722
723     stream_filter = g_mime_stream_filter_new (stream_stdout);
724
725     wrapper = g_mime_part_get_content_object (GMIME_PART (part));
726
727     if (wrapper && stream_filter)
728         g_mime_data_wrapper_write_to_stream (wrapper, stream_filter);
729
730     if (stream_filter)
731         g_object_unref (stream_filter);
732
733     if (stream_stdout)
734         g_object_unref(stream_stdout);
735 }
736
737 static void
738 show_message (void *ctx,
739               const notmuch_show_format_t *format,
740               notmuch_message_t *message,
741               int indent,
742               notmuch_show_params_t *params)
743 {
744     if (params->part <= 0) {
745         fputs (format->message_start, stdout);
746         if (format->message)
747             format->message(ctx, message, indent);
748
749         fputs (format->header_start, stdout);
750         if (format->header)
751             format->header(ctx, message);
752         fputs (format->header_end, stdout);
753
754         fputs (format->body_start, stdout);
755     }
756
757     if (format->part_content)
758         show_message_body (notmuch_message_get_filename (message),
759                            format, params);
760
761     if (params->part <= 0) {
762         fputs (format->body_end, stdout);
763
764         fputs (format->message_end, stdout);
765     }
766 }
767
768 static void
769 show_messages (void *ctx,
770                const notmuch_show_format_t *format,
771                notmuch_messages_t *messages,
772                int indent,
773                notmuch_show_params_t *params)
774 {
775     notmuch_message_t *message;
776     notmuch_bool_t match;
777     int first_set = 1;
778     int next_indent;
779
780     fputs (format->message_set_start, stdout);
781
782     for (;
783          notmuch_messages_valid (messages);
784          notmuch_messages_move_to_next (messages))
785     {
786         if (!first_set)
787             fputs (format->message_set_sep, stdout);
788         first_set = 0;
789
790         fputs (format->message_set_start, stdout);
791
792         message = notmuch_messages_get (messages);
793
794         match = notmuch_message_get_flag (message, NOTMUCH_MESSAGE_FLAG_MATCH);
795
796         next_indent = indent;
797
798         if (match || params->entire_thread) {
799             show_message (ctx, format, message, indent, params);
800             next_indent = indent + 1;
801
802             fputs (format->message_set_sep, stdout);
803         }
804
805         show_messages (ctx,
806                        format,
807                        notmuch_message_get_replies (message),
808                        next_indent,
809                        params);
810
811         notmuch_message_destroy (message);
812
813         fputs (format->message_set_end, stdout);
814     }
815
816     fputs (format->message_set_end, stdout);
817 }
818
819 /* Formatted output of single message */
820 static int
821 do_show_single (void *ctx,
822                 notmuch_query_t *query,
823                 const notmuch_show_format_t *format,
824                 notmuch_show_params_t *params)
825 {
826     notmuch_messages_t *messages;
827     notmuch_message_t *message;
828
829     if (notmuch_query_count_messages (query) != 1) {
830         fprintf (stderr, "Error: search term did not match precisely one message.\n");
831         return 1;
832     }
833
834     messages = notmuch_query_search_messages (query);
835     message = notmuch_messages_get (messages);
836
837     if (message == NULL) {
838         fprintf (stderr, "Error: Cannot find matching message.\n");
839         return 1;
840     }
841
842     notmuch_message_set_flag (message, NOTMUCH_MESSAGE_FLAG_MATCH, 1);
843
844     /* Special case for --format=raw of full single message, just cat out file */
845     if (params->raw && 0 == params->part) {
846
847         const char *filename;
848         FILE *file;
849         size_t size;
850         char buf[4096];
851
852         filename = notmuch_message_get_filename (message);
853         if (filename == NULL) {
854             fprintf (stderr, "Error: Cannot message filename.\n");
855             return 1;
856         }
857
858         file = fopen (filename, "r");
859         if (file == NULL) {
860             fprintf (stderr, "Error: Cannot open file %s: %s\n", filename, strerror (errno));
861             return 1;
862         }
863
864         while (!feof (file)) {
865             size = fread (buf, 1, sizeof (buf), file);
866             fwrite (buf, size, 1, stdout);
867         }
868
869         fclose (file);
870
871     } else {
872
873         show_message (ctx, format, message, 0, params);
874
875     }
876
877     return 0;
878 }
879
880 /* Formatted output of threads */
881 static int
882 do_show (void *ctx,
883          notmuch_query_t *query,
884          const notmuch_show_format_t *format,
885          notmuch_show_params_t *params)
886 {
887     notmuch_threads_t *threads;
888     notmuch_thread_t *thread;
889     notmuch_messages_t *messages;
890     int first_toplevel = 1;
891
892     fputs (format->message_set_start, stdout);
893
894     for (threads = notmuch_query_search_threads (query);
895          notmuch_threads_valid (threads);
896          notmuch_threads_move_to_next (threads))
897     {
898         thread = notmuch_threads_get (threads);
899
900         messages = notmuch_thread_get_toplevel_messages (thread);
901
902         if (messages == NULL)
903             INTERNAL_ERROR ("Thread %s has no toplevel messages.\n",
904                             notmuch_thread_get_thread_id (thread));
905
906         if (!first_toplevel)
907             fputs (format->message_set_sep, stdout);
908         first_toplevel = 0;
909
910         show_messages (ctx, format, messages, 0, params);
911
912         notmuch_thread_destroy (thread);
913
914     }
915
916     fputs (format->message_set_end, stdout);
917
918     return 0;
919 }
920
921 int
922 notmuch_show_command (void *ctx, unused (int argc), unused (char *argv[]))
923 {
924     notmuch_config_t *config;
925     notmuch_database_t *notmuch;
926     notmuch_query_t *query;
927     char *query_string;
928     char *opt;
929     const notmuch_show_format_t *format = &format_text;
930     notmuch_show_params_t params;
931     int mbox = 0;
932     int format_specified = 0;
933     int i;
934
935     params.entire_thread = 0;
936     params.raw = 0;
937     params.part = -1;
938     params.cryptoctx = NULL;
939     params.decrypt = 0;
940
941     argc--; argv++; /* skip subcommand argument */
942
943     for (i = 0; i < argc && argv[i][0] == '-'; i++) {
944         if (strcmp (argv[i], "--") == 0) {
945             i++;
946             break;
947         }
948         if (STRNCMP_LITERAL (argv[i], "--format=") == 0) {
949             opt = argv[i] + sizeof ("--format=") - 1;
950             if (strcmp (opt, "text") == 0) {
951                 format = &format_text;
952             } else if (strcmp (opt, "json") == 0) {
953                 format = &format_json;
954                 params.entire_thread = 1;
955             } else if (strcmp (opt, "mbox") == 0) {
956                 format = &format_mbox;
957                 mbox = 1;
958             } else if (strcmp (opt, "raw") == 0) {
959                 format = &format_raw;
960                 params.raw = 1;
961             } else {
962                 fprintf (stderr, "Invalid value for --format: %s\n", opt);
963                 return 1;
964             }
965             format_specified = 1;
966         } else if (STRNCMP_LITERAL (argv[i], "--part=") == 0) {
967             params.part = atoi(argv[i] + sizeof ("--part=") - 1);
968         } else if (STRNCMP_LITERAL (argv[i], "--entire-thread") == 0) {
969             params.entire_thread = 1;
970         } else if ((STRNCMP_LITERAL (argv[i], "--verify") == 0) ||
971                    (STRNCMP_LITERAL (argv[i], "--decrypt") == 0)) {
972             if (params.cryptoctx == NULL) {
973                 GMimeSession* session = g_object_new(g_mime_session_get_type(), NULL);
974                 if (NULL == (params.cryptoctx = g_mime_gpg_context_new(session, "gpg")))
975                     fprintf (stderr, "Failed to construct gpg context.\n");
976                 else
977                     g_mime_gpg_context_set_always_trust((GMimeGpgContext*)params.cryptoctx, FALSE);
978                 g_object_unref (session);
979                 session = NULL;
980             }
981             if (STRNCMP_LITERAL (argv[i], "--decrypt") == 0)
982                 params.decrypt = 1;
983         } else {
984             fprintf (stderr, "Unrecognized option: %s\n", argv[i]);
985             return 1;
986         }
987     }
988
989     argc -= i;
990     argv += i;
991
992     config = notmuch_config_open (ctx, NULL, NULL);
993     if (config == NULL)
994         return 1;
995
996     query_string = query_string_from_args (ctx, argc, argv);
997     if (query_string == NULL) {
998         fprintf (stderr, "Out of memory\n");
999         return 1;
1000     }
1001
1002     if (mbox && params.part > 0) {
1003         fprintf (stderr, "Error: specifying parts is incompatible with mbox output format.\n");
1004         return 1;
1005     }
1006
1007     if (*query_string == '\0') {
1008         fprintf (stderr, "Error: notmuch show requires at least one search term.\n");
1009         return 1;
1010     }
1011
1012     notmuch = notmuch_database_open (notmuch_config_get_database_path (config),
1013                                      NOTMUCH_DATABASE_MODE_READ_ONLY);
1014     if (notmuch == NULL)
1015         return 1;
1016
1017     query = notmuch_query_create (notmuch, query_string);
1018     if (query == NULL) {
1019         fprintf (stderr, "Out of memory\n");
1020         return 1;
1021     }
1022
1023     /* if part was requested and format was not specified, use format=raw */
1024     if (params.part >= 0 && !format_specified)
1025         format = &format_raw;
1026
1027     /* If --format=raw specified without specifying part, we can only
1028      * output single message, so set part=0 */
1029     if (params.raw && params.part < 0)
1030         params.part = 0;
1031
1032     if (params.part >= 0)
1033         return do_show_single (ctx, query, format, &params);
1034     else
1035         return do_show (ctx, query, format, &params);
1036
1037     notmuch_query_destroy (query);
1038     notmuch_database_close (notmuch);
1039
1040     if (params.cryptoctx)
1041         g_object_unref(params.cryptoctx);
1042
1043     return 0;
1044 }