unofficial mirror of notmuch@notmuchmail.org
 help / color / mirror / code / Atom feed
blob 4f006756405d4a830bb596ddd020280a55b669b9 8096 bytes (raw)
name: notmuch-show.c 	 # note: path name is non-authoritative(*)

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
 
/* notmuch - Not much of an email program, (just index and search)
 *
 * Copyright © 2009 Carl Worth
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see http://www.gnu.org/licenses/ .
 *
 * Author: Carl Worth <cworth@cworth.org>
 */

#include <jansson.h>
#include "notmuch-client.h"

json_t *show_part_content (GMimeObject *part);

static const char *
_get_tags_as_string (void *ctx, notmuch_message_t *message)
{
    notmuch_tags_t *tags;
    int first = 1;
    const char *tag;
    char *result;

    result = talloc_strdup (ctx, "");
    if (result == NULL)
	return NULL;

    for (tags = notmuch_message_get_tags (message);
	 notmuch_tags_has_more (tags);
	 notmuch_tags_advance (tags))
    {
	tag = notmuch_tags_get (tags);

	result = talloc_asprintf_append (result, "%s%s",
					 first ? "" : " ", tag);
	first = 0;
    }

    return result;
}

/* Get a nice, single-line summary of message. */
static const char *
_get_one_line_summary (void *ctx, notmuch_message_t *message)
{
    const char *from;
    time_t date;
    const char *relative_date;
    const char *tags;

    from = notmuch_message_get_header (message, "from");

    date = notmuch_message_get_date (message);
    relative_date = notmuch_time_relative_date (ctx, date);

    tags = _get_tags_as_string (ctx, message);

    return talloc_asprintf (ctx, "%s (%s) (%s)",
			    from, relative_date, tags);
}

json_t *
show_part_content (GMimeObject *part)
{
    GMimeStream *stream_out = g_mime_stream_mem_new ();
    GMimeStream *stream_filter = NULL;
    GMimeDataWrapper *wrapper;
    GByteArray *content_data;

    guint8 terminator[]={0};
    const char *charset;
    json_t *content;

    charset = g_mime_object_get_content_type_parameter (part, "charset");
    
    if (stream_out) {
	g_mime_stream_file_set_owner (GMIME_STREAM_FILE (stream_out), FALSE);
	stream_filter = g_mime_stream_filter_new(stream_out);
	g_mime_stream_filter_add(GMIME_STREAM_FILTER(stream_filter),
				 g_mime_filter_crlf_new(FALSE, FALSE));
        if (charset) {
          g_mime_stream_filter_add(GMIME_STREAM_FILTER(stream_filter),
                                   g_mime_filter_charset_new(charset, "UTF-8"));
        }
    }

    wrapper = g_mime_part_get_content_object (GMIME_PART (part));
    if (wrapper && stream_filter)
	g_mime_data_wrapper_write_to_stream (wrapper, stream_filter);

    content_data = g_mime_stream_mem_get_byte_array ((GMimeStreamMem *)stream_out);
    g_byte_array_append(content_data, terminator,1);
    content = json_string (content_data->data);
    if (stream_filter)
	g_object_unref(stream_filter);
    if (stream_out)
	g_object_unref(stream_out);
    
    return content;
}

static void
show_part (GMimeObject *part, int *part_count, void *output_arg)
{
    GMimeContentDisposition *disposition;
    GMimeContentType *content_type;
    json_t *output = output_arg;
    json_t *part_obj=json_object();

    disposition = g_mime_object_get_content_disposition (part);
    content_type = g_mime_object_get_content_type (GMIME_OBJECT (part));

    json_object_set (part_obj, "id", json_integer (*part_count));
    json_object_set (part_obj, "content-type", 
		     json_string(g_mime_content_type_to_string (content_type)));

    if (disposition &&
	strcmp (disposition->disposition, GMIME_DISPOSITION_ATTACHMENT) == 0)
    {
    	const char *filename = g_mime_part_get_filename (GMIME_PART (part));

	json_object_set (part_obj, "filename", 
			 json_string (filename));

    };


    if (g_mime_content_type_is_type (content_type, "text", "*"))
	json_object_set (part_obj, "text", show_part_content (part));
	

    json_array_append(output,part_obj);

}

static void
show_message (void *ctx, notmuch_message_t *message, int indent)
{
    const char *headers[] = {
	"Subject", "From", "To", "Cc", "Bcc", "Date"
    };
    const char *name, *value;
    unsigned int i;
    json_t *message_obj=json_object();
    json_t *header_obj=json_object();
    json_t *parts=json_array();

    // all of these calls need return-value checking
    json_object_set(message_obj,"id",json_string (notmuch_message_get_message_id (message)));
    json_object_set(message_obj,"depth",json_integer (indent));
    json_object_set(message_obj,"match",
		    notmuch_message_get_flag (message, NOTMUCH_MESSAGE_FLAG_MATCH) ? json_true() : json_false());
    json_object_set(message_obj,"filename",json_string (notmuch_message_get_filename (message)));

    json_object_set(header_obj,"summary", json_string (_get_one_line_summary (ctx, message)));

    for (i = 0; i < ARRAY_SIZE (headers); i++) {
	name = headers[i];
	value = notmuch_message_get_header (message, name);
	if (value)
	  json_object_set (header_obj, name, json_string (value));
    }

    json_object_set (message_obj, "header", header_obj);

    show_message_body (notmuch_message_get_filename (message), show_part, parts);
    
    json_object_set (message_obj, "parts", parts);
    json_dumpf(message_obj,stdout,JSON_INDENT(4));

}


static void
show_messages (void *ctx, notmuch_messages_t *messages, int indent,
	       notmuch_bool_t entire_thread)
{
    notmuch_message_t *message;
    notmuch_bool_t match;
    int next_indent;

    for (;
	 notmuch_messages_has_more (messages);
	 notmuch_messages_advance (messages))
    {
	message = notmuch_messages_get (messages);

	match = notmuch_message_get_flag (message, NOTMUCH_MESSAGE_FLAG_MATCH);

	next_indent = indent;

	if (match || entire_thread) {
	    show_message (ctx, message, indent);
	    next_indent = indent + 1;
	}

	show_messages (ctx, notmuch_message_get_replies (message),
		       next_indent, entire_thread);

	notmuch_message_destroy (message);
    }
}

int
notmuch_show_command (void *ctx, unused (int argc), unused (char *argv[]))
{
    notmuch_config_t *config;
    notmuch_database_t *notmuch;
    notmuch_query_t *query;
    notmuch_threads_t *threads;
    notmuch_thread_t *thread;
    notmuch_messages_t *messages;
    char *query_string;
    int entire_thread = 0;
    int i;

    for (i = 0; i < argc && argv[i][0] == '-'; i++) {
	if (strcmp (argv[i], "--") == 0) {
	    i++;
	    break;
	}
        if (strcmp(argv[i], "--entire-thread") == 0) {
	    entire_thread = 1;
	} else {
	    fprintf (stderr, "Unrecognized option: %s\n", argv[i]);
	    return 1;
	}
    }

    argc -= i;
    argv += i;

    config = notmuch_config_open (ctx, NULL, NULL);
    if (config == NULL)
	return 1;

    query_string = query_string_from_args (ctx, argc, argv);
    if (query_string == NULL) {
	fprintf (stderr, "Out of memory\n");
	return 1;
    }

    if (*query_string == '\0') {
	fprintf (stderr, "Error: notmuch show requires at least one search term.\n");
	return 1;
    }

    notmuch = notmuch_database_open (notmuch_config_get_database_path (config),
				     NOTMUCH_DATABASE_MODE_READ_ONLY);
    if (notmuch == NULL)
	return 1;

    query = notmuch_query_create (notmuch, query_string);
    if (query == NULL) {
	fprintf (stderr, "Out of memory\n");
	return 1;
    }

    for (threads = notmuch_query_search_threads (query);
	 notmuch_threads_has_more (threads);
	 notmuch_threads_advance (threads))
    {
	thread = notmuch_threads_get (threads);

	messages = notmuch_thread_get_toplevel_messages (thread);

	if (messages == NULL)
	    INTERNAL_ERROR ("Thread %s has no toplevel messages.\n",
			    notmuch_thread_get_thread_id (thread));

	show_messages (ctx, messages, 0, entire_thread);

	notmuch_thread_destroy (thread);
    }

    notmuch_query_destroy (query);
    notmuch_database_close (notmuch);

    return 0;
}

debug log:

solving 4f00675 ...
found 4f00675 in https://yhetil.org/notmuch/1260747071-4656-1-git-send-email-david@tethera.net/
found 376aacd in https://yhetil.org/notmuch.git/
preparing index
index prepared:
100644 376aacd7bcbe03be72d3562529f74d05d8efa1a3	notmuch-show.c

applying [1/1] https://yhetil.org/notmuch/1260747071-4656-1-git-send-email-david@tethera.net/
diff --git a/notmuch-show.c b/notmuch-show.c
index 376aacd..4f00675 100644

1:40: trailing whitespace.
    
1:61: trailing whitespace.
    
1:78: trailing whitespace.
    json_object_set (part_obj, "content-type", 
1:98: space before tab in indent.
    	const char *filename = g_mime_part_get_filename (GMIME_PART (part));
1:101: trailing whitespace.
	json_object_set (part_obj, "filename", 
Checking patch notmuch-show.c...
Applied patch notmuch-show.c cleanly.
warning: squelched 2 whitespace errors
warning: 7 lines add whitespace errors.

index at:
100644 4f006756405d4a830bb596ddd020280a55b669b9	notmuch-show.c

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

	https://yhetil.org/notmuch.git/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).