]> git.notmuchmail.org Git - notmuch/blob - show-message.c
test: new test-lib function to test for equality between files
[notmuch] / show-message.c
1 /* notmuch - Not much of an email program, (just index and search)
2  *
3  * Copyright © 2009 Carl Worth
4  * Copyright © 2009 Keith Packard
5  *
6  * This program is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program.  If not, see http://www.gnu.org/licenses/ .
18  *
19  * Authors: Carl Worth <cworth@cworth.org>
20  *          Keith Packard <keithp@keithp.com>
21  */
22
23 #include "notmuch-client.h"
24
25 typedef struct show_message_state {
26     int part_count;
27     int in_zone;
28 } show_message_state_t;
29
30 static void
31 show_message_part (GMimeObject *part,
32                    show_message_state_t *state,
33                    const notmuch_show_format_t *format,
34                    notmuch_show_params_t *params,
35                    int first)
36 {
37     int selected;
38     state->part_count += 1;
39
40     if (! (GMIME_IS_PART (part) || GMIME_IS_MULTIPART (part) || GMIME_IS_MESSAGE_PART (part))) {
41         fprintf (stderr, "Warning: Not displaying unknown mime part: %s.\n",
42                  g_type_name (G_OBJECT_TYPE (part)));
43         return;
44     }
45
46     selected = (params->part <= 0 || state->part_count == params->part);
47
48     if (selected || state->in_zone) {
49         if (!first && (params->part <= 0 || state->in_zone))
50             fputs (format->part_sep, stdout);
51
52         if (format->part_start)
53             format->part_start (part, &(state->part_count));
54         format->part_content (part);
55     }
56
57     if (GMIME_IS_MULTIPART (part)) {
58         GMimeMultipart *multipart = GMIME_MULTIPART (part);
59         int i;
60
61         if (selected)
62             state->in_zone = 1;
63
64         for (i = 0; i < g_mime_multipart_get_count (multipart); i++) {
65             show_message_part (g_mime_multipart_get_part (multipart, i),
66                                state, format, params, i == 0);
67         }
68
69         if (selected)
70             state->in_zone = 0;
71
72     } else if (GMIME_IS_MESSAGE_PART (part)) {
73         GMimeMessage *mime_message = g_mime_message_part_get_message (GMIME_MESSAGE_PART (part));
74
75         if (selected)
76             state->in_zone = 1;
77
78         show_message_part (g_mime_message_get_mime_part (mime_message),
79                            state, format, params, TRUE);
80
81         if (selected)
82             state->in_zone = 0;
83     }
84
85     if (selected || state->in_zone) {
86         if (format->part_end)
87             format->part_end (part);
88     }
89 }
90
91 notmuch_status_t
92 show_message_body (const char *filename,
93                    const notmuch_show_format_t *format,
94                    notmuch_show_params_t *params)
95 {
96     GMimeStream *stream = NULL;
97     GMimeParser *parser = NULL;
98     GMimeMessage *mime_message = NULL;
99     notmuch_status_t ret = NOTMUCH_STATUS_SUCCESS;
100     FILE *file = NULL;
101     show_message_state_t state;
102
103     state.part_count = 0;
104     state.in_zone = 0;
105
106     file = fopen (filename, "r");
107     if (! file) {
108         fprintf (stderr, "Error opening %s: %s\n", filename, strerror (errno));
109         ret = NOTMUCH_STATUS_FILE_ERROR;
110         goto DONE;
111     }
112
113     stream = g_mime_stream_file_new (file);
114     g_mime_stream_file_set_owner (GMIME_STREAM_FILE (stream), FALSE);
115
116     parser = g_mime_parser_new_with_stream (stream);
117
118     mime_message = g_mime_parser_construct_message (parser);
119
120     show_message_part (g_mime_message_get_mime_part (mime_message),
121                        &state,
122                        format,
123                        params,
124                        TRUE);
125
126   DONE:
127     if (mime_message)
128         g_object_unref (mime_message);
129
130     if (parser)
131         g_object_unref (parser);
132
133     if (stream)
134         g_object_unref (stream);
135
136     if (file)
137         fclose (file);
138
139     return ret;
140 }