]> git.notmuchmail.org Git - notmuch/blob - notmuch-client.h
880b153e70875a7cd0165fae989a5203f86015c8
[notmuch] / notmuch-client.h
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 #ifndef NOTMUCH_CLIENT_H
22 #define NOTMUCH_CLIENT_H
23
24 #ifndef _GNU_SOURCE
25 #define _GNU_SOURCE /* for getline */
26 #endif
27 #include <stdio.h>
28
29 #include "compat.h"
30
31 #include <gmime/gmime.h>
32
33 /* GMIME_CHECK_VERSION in gmime 2.4 is not usable from the
34  * preprocessor (it calls a runtime function). But since
35  * GMIME_MAJOR_VERSION and friends were added in gmime 2.6, we can use
36  * these to check the version number. */
37 #ifdef GMIME_MAJOR_VERSION
38 #define GMIME_ATLEAST_26
39 #endif
40
41 #include "notmuch.h"
42
43 /* This is separate from notmuch-private.h because we're trying to
44  * keep notmuch.c from looking into any internals, (which helps us
45  * develop notmuch.h into a plausible library interface).
46  */
47 #include "xutil.h"
48
49 #include <stddef.h>
50 #include <string.h>
51 #include <sys/stat.h>
52 #include <sys/time.h>
53 #include <unistd.h>
54 #include <dirent.h>
55 #include <errno.h>
56 #include <signal.h>
57
58 #include <talloc.h>
59
60 #define unused(x) x __attribute__ ((unused))
61
62 #define STRINGIFY(s) STRINGIFY_(s)
63 #define STRINGIFY_(s) #s
64
65 typedef struct mime_node mime_node_t;
66 struct notmuch_show_params;
67
68 typedef struct notmuch_show_format {
69     const char *message_set_start;
70     notmuch_status_t (*part) (const void *ctx,
71                               struct mime_node *node, int indent,
72                               const struct notmuch_show_params *params);
73     const char *message_start;
74     void (*message) (const void *ctx,
75                      notmuch_message_t *message,
76                      int indent);
77     const char *header_start;
78     void (*header) (const void *ctx,
79                     notmuch_message_t *message);
80     void (*header_message_part) (GMimeMessage *message);
81     const char *header_end;
82     const char *body_start;
83     void (*part_start) (GMimeObject *part,
84                         int *part_count);
85     void (*part_encstatus) (int status);
86 #ifdef GMIME_ATLEAST_26
87     void (*part_sigstatus) (GMimeSignatureList* siglist);
88 #else
89     void (*part_sigstatus) (const GMimeSignatureValidity* validity);
90 #endif
91     void (*part_content) (GMimeObject *part);
92     void (*part_end) (GMimeObject *part);
93     const char *part_sep;
94     const char *body_end;
95     const char *message_end;
96     const char *message_set_sep;
97     const char *message_set_end;
98 } notmuch_show_format_t;
99
100 typedef struct notmuch_show_params {
101     notmuch_bool_t entire_thread;
102     notmuch_bool_t omit_excluded;
103     notmuch_bool_t raw;
104     int part;
105 #ifdef GMIME_ATLEAST_26
106     GMimeCryptoContext* cryptoctx;
107 #else
108     GMimeCipherContext* cryptoctx;
109 #endif
110     notmuch_bool_t decrypt;
111 } notmuch_show_params_t;
112
113 /* There's no point in continuing when we've detected that we've done
114  * something wrong internally (as opposed to the user passing in a
115  * bogus value).
116  *
117  * Note that __location__ comes from talloc.h.
118  */
119 #define INTERNAL_ERROR(format, ...)                     \
120     do {                                                \
121         fprintf(stderr,                                 \
122                 "Internal error: " format " (%s)\n",    \
123                 ##__VA_ARGS__, __location__);           \
124         exit (1);                                       \
125     } while (0)
126
127 #define ARRAY_SIZE(arr) (sizeof (arr) / sizeof (arr[0]))
128
129 #define STRNCMP_LITERAL(var, literal) \
130     strncmp ((var), (literal), sizeof (literal) - 1)
131
132 static inline void
133 chomp_newline (char *str)
134 {
135     if (str && str[strlen(str)-1] == '\n')
136         str[strlen(str)-1] = '\0';
137 }
138
139 int
140 notmuch_count_command (void *ctx, int argc, char *argv[]);
141
142 int
143 notmuch_dump_command (void *ctx, int argc, char *argv[]);
144
145 int
146 notmuch_new_command (void *ctx, int argc, char *argv[]);
147
148 int
149 notmuch_reply_command (void *ctx, int argc, char *argv[]);
150
151 int
152 notmuch_restore_command (void *ctx, int argc, char *argv[]);
153
154 int
155 notmuch_search_command (void *ctx, int argc, char *argv[]);
156
157 int
158 notmuch_setup_command (void *ctx, int argc, char *argv[]);
159
160 int
161 notmuch_show_command (void *ctx, int argc, char *argv[]);
162
163 int
164 notmuch_tag_command (void *ctx, int argc, char *argv[]);
165
166 int
167 notmuch_search_tags_command (void *ctx, int argc, char *argv[]);
168
169 int
170 notmuch_cat_command (void *ctx, int argc, char *argv[]);
171
172 int
173 notmuch_config_command (void *ctx, int argc, char *argv[]);
174
175 const char *
176 notmuch_time_relative_date (const void *ctx, time_t then);
177
178 void
179 notmuch_time_print_formatted_seconds (double seconds);
180
181 double
182 notmuch_time_elapsed (struct timeval start, struct timeval end);
183
184 char *
185 query_string_from_args (void *ctx, int argc, char *argv[]);
186
187 notmuch_status_t
188 show_message_body (notmuch_message_t *message,
189                    const notmuch_show_format_t *format,
190                    notmuch_show_params_t *params);
191
192 notmuch_status_t
193 show_one_part (const char *filename, int part);
194
195 void
196 format_part_json (const void *ctx, mime_node_t *node, notmuch_bool_t first);
197
198 void
199 format_headers_json (const void *ctx, GMimeMessage *message, notmuch_bool_t reply);
200
201 typedef enum {
202     NOTMUCH_SHOW_TEXT_PART_REPLY = 1 << 0,
203 } notmuch_show_text_part_flags;
204
205 void
206 show_text_part_content (GMimeObject *part, GMimeStream *stream_out,
207                         notmuch_show_text_part_flags flags);
208
209 char *
210 json_quote_chararray (const void *ctx, const char *str, const size_t len);
211
212 char *
213 json_quote_str (const void *ctx, const char *str);
214
215 /* notmuch-config.c */
216
217 typedef struct _notmuch_config notmuch_config_t;
218
219 notmuch_config_t *
220 notmuch_config_open (void *ctx,
221                      const char *filename,
222                      notmuch_bool_t *is_new_ret);
223
224 void
225 notmuch_config_close (notmuch_config_t *config);
226
227 int
228 notmuch_config_save (notmuch_config_t *config);
229
230 const char *
231 notmuch_config_get_database_path (notmuch_config_t *config);
232
233 void
234 notmuch_config_set_database_path (notmuch_config_t *config,
235                                   const char *database_path);
236
237 const char *
238 notmuch_config_get_user_name (notmuch_config_t *config);
239
240 void
241 notmuch_config_set_user_name (notmuch_config_t *config,
242                               const char *user_name);
243
244 const char *
245 notmuch_config_get_user_primary_email (notmuch_config_t *config);
246
247 void
248 notmuch_config_set_user_primary_email (notmuch_config_t *config,
249                                        const char *primary_email);
250
251 const char **
252 notmuch_config_get_user_other_email (notmuch_config_t *config,
253                                      size_t *length);
254
255 void
256 notmuch_config_set_user_other_email (notmuch_config_t *config,
257                                      const char *other_email[],
258                                      size_t length);
259
260 const char **
261 notmuch_config_get_new_tags (notmuch_config_t *config,
262                              size_t *length);
263 void
264 notmuch_config_set_new_tags (notmuch_config_t *config,
265                              const char *new_tags[],
266                              size_t length);
267
268 const char **
269 notmuch_config_get_new_ignore (notmuch_config_t *config,
270                                size_t *length);
271
272 void
273 notmuch_config_set_new_ignore (notmuch_config_t *config,
274                                const char *new_ignore[],
275                                size_t length);
276
277 notmuch_bool_t
278 notmuch_config_get_maildir_synchronize_flags (notmuch_config_t *config);
279
280 void
281 notmuch_config_set_maildir_synchronize_flags (notmuch_config_t *config,
282                                               notmuch_bool_t synchronize_flags);
283
284 const char **
285 notmuch_config_get_search_exclude_tags (notmuch_config_t *config, size_t *length);
286
287 void
288 notmuch_config_set_search_exclude_tags (notmuch_config_t *config,
289                                       const char *list[],
290                                       size_t length);
291
292 int
293 notmuch_run_hook (const char *db_path, const char *hook);
294
295 notmuch_bool_t
296 debugger_is_active (void);
297
298 /* mime-node.c */
299
300 /* mime_node_t represents a single node in a MIME tree.  A MIME tree
301  * abstracts the different ways of traversing different types of MIME
302  * parts, allowing a MIME message to be viewed as a generic tree of
303  * parts.  Message-type parts have one child, multipart-type parts
304  * have multiple children, and leaf parts have zero children.
305  */
306 struct mime_node {
307     /* The MIME object of this part.  This will be a GMimeMessage,
308      * GMimePart, GMimeMultipart, or a subclass of one of these.
309      *
310      * This will never be a GMimeMessagePart because GMimeMessagePart
311      * is structurally redundant with GMimeMessage.  If this part is a
312      * message (that is, 'part' is a GMimeMessage), then either
313      * envelope_file will be set to a notmuch_message_t (for top-level
314      * messages) or envelope_part will be set to a GMimeMessagePart
315      * (for embedded message parts).
316      */
317     GMimeObject *part;
318
319     /* If part is a GMimeMessage, these record the envelope of the
320      * message: either a notmuch_message_t representing a top-level
321      * message, or a GMimeMessagePart representing a MIME part
322      * containing a message.
323      */
324     notmuch_message_t *envelope_file;
325     GMimeMessagePart *envelope_part;
326
327     /* The number of children of this part. */
328     int nchildren;
329
330     /* The parent of this node or NULL if this is the root node. */
331     struct mime_node *parent;
332
333     /* The depth-first part number of this child if the MIME tree is
334      * being traversed in depth-first order, or -1 otherwise. */
335     int part_num;
336
337     /* True if decryption of this part was attempted. */
338     notmuch_bool_t decrypt_attempted;
339     /* True if decryption of this part's child succeeded.  In this
340      * case, the decrypted part is substituted for the second child of
341      * this part (which would usually be the encrypted data). */
342     notmuch_bool_t decrypt_success;
343
344     /* True if signature verification on this part was attempted. */
345     notmuch_bool_t verify_attempted;
346 #ifdef GMIME_ATLEAST_26
347     /* The list of signatures for signed or encrypted containers. If
348      * there are no signatures, this will be NULL. */
349     GMimeSignatureList* sig_list;
350 #else
351     /* For signed or encrypted containers, the validity of the
352      * signature.  May be NULL if signature verification failed.  If
353      * there are simply no signatures, this will be non-NULL with an
354      * empty signers list. */
355     const GMimeSignatureValidity *sig_validity;
356 #endif
357
358     /* Internal: Context inherited from the root iterator. */
359     struct mime_node_context *ctx;
360
361     /* Internal: For successfully decrypted multipart parts, the
362      * decrypted part to substitute for the second child. */
363     GMimeObject *decrypted_child;
364
365     /* Internal: The next child for depth-first traversal and the part
366      * number to assign it (or -1 if unknown). */
367     int next_child;
368     int next_part_num;
369 };
370
371 /* Construct a new MIME node pointing to the root message part of
372  * message.  If cryptoctx is non-NULL, it will be used to verify
373  * signatures on any child parts.  If decrypt is true, then cryptoctx
374  * will additionally be used to decrypt any encrypted child parts.
375  *
376  * Return value:
377  *
378  * NOTMUCH_STATUS_SUCCESS: Root node is returned in *node_out.
379  *
380  * NOTMUCH_STATUS_FILE_ERROR: Failed to open message file.
381  *
382  * NOTMUCH_STATUS_OUT_OF_MEMORY: Out of memory.
383  */
384 notmuch_status_t
385 mime_node_open (const void *ctx, notmuch_message_t *message,
386 #ifdef GMIME_ATLEAST_26
387                 GMimeCryptoContext *cryptoctx,
388 #else
389                 GMimeCipherContext *cryptoctx,
390 #endif
391                 notmuch_bool_t decrypt, mime_node_t **node_out);
392
393 /* Return a new MIME node for the requested child part of parent.
394  * parent will be used as the talloc context for the returned child
395  * node.
396  *
397  * In case of any failure, this function returns NULL, (after printing
398  * an error message on stderr).
399  */
400 mime_node_t *
401 mime_node_child (mime_node_t *parent, int child);
402
403 /* Return the nth child of node in a depth-first traversal.  If n is
404  * 0, returns node itself.  Returns NULL if there is no such part. */
405 mime_node_t *
406 mime_node_seek_dfs (mime_node_t *node, int n);
407
408 #include "command-line-arguments.h"
409 #endif