1 /* notmuch - Not much of an email program, (just index and search)
3 * Copyright © 2009 Carl Worth
4 * Copyright © 2009 Keith Packard
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.
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.
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/ .
19 * Authors: Carl Worth <cworth@cworth.org>
20 * Keith Packard <keithp@keithp.com>
23 #include "notmuch-client.h"
25 typedef struct show_message_state {
28 } show_message_state_t;
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,
38 state->part_count += 1;
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)));
46 selected = (params->part <= 0 || state->part_count == params->part);
48 if (selected || state->in_zone) {
49 if (!first && (params->part <= 0 || state->in_zone))
50 fputs (format->part_sep, stdout);
52 format->part (part, &(state->part_count));
55 if (GMIME_IS_MULTIPART (part)) {
56 GMimeMultipart *multipart = GMIME_MULTIPART (part);
62 for (i = 0; i < g_mime_multipart_get_count (multipart); i++) {
63 show_message_part (g_mime_multipart_get_part (multipart, i),
64 state, format, params, i == 0);
70 } else if (GMIME_IS_MESSAGE_PART (part)) {
71 GMimeMessage *mime_message = g_mime_message_part_get_message (GMIME_MESSAGE_PART (part));
76 show_message_part (g_mime_message_get_mime_part (mime_message),
77 state, format, params, TRUE);
83 if (selected || state->in_zone) {
85 format->part_end (part);
90 show_message_body (const char *filename,
91 const notmuch_show_format_t *format,
92 notmuch_show_params_t *params)
94 GMimeStream *stream = NULL;
95 GMimeParser *parser = NULL;
96 GMimeMessage *mime_message = NULL;
97 notmuch_status_t ret = NOTMUCH_STATUS_SUCCESS;
99 show_message_state_t state;
101 state.part_count = 0;
104 file = fopen (filename, "r");
106 fprintf (stderr, "Error opening %s: %s\n", filename, strerror (errno));
107 ret = NOTMUCH_STATUS_FILE_ERROR;
111 stream = g_mime_stream_file_new (file);
112 g_mime_stream_file_set_owner (GMIME_STREAM_FILE (stream), FALSE);
114 parser = g_mime_parser_new_with_stream (stream);
116 mime_message = g_mime_parser_construct_message (parser);
118 show_message_part (g_mime_message_get_mime_part (mime_message),
126 g_object_unref (mime_message);
129 g_object_unref (parser);
132 g_object_unref (stream);