]> git.cworth.org Git - notmuch/blob - notmuch-client.h
Merge tag 'debian/0.25-6'
[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 https://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 #include <sysexits.h>
29
30 #include "compat.h"
31
32 #include "gmime-extra.h"
33
34 typedef GMimeCryptoContext notmuch_crypto_context_t;
35 /* This is automatically included only since gmime 2.6.10 */
36 #include <gmime/gmime-pkcs7-context.h>
37
38 #include "notmuch.h"
39
40 /* This is separate from notmuch-private.h because we're trying to
41  * keep notmuch.c from looking into any internals, (which helps us
42  * develop notmuch.h into a plausible library interface).
43  */
44 #include "xutil.h"
45
46 #include <stddef.h>
47 #include <string.h>
48 #include <sys/stat.h>
49 #include <sys/time.h>
50 #include <unistd.h>
51 #include <dirent.h>
52 #include <errno.h>
53 #include <signal.h>
54 #include <ctype.h>
55
56 #include "talloc-extra.h"
57
58 #define unused(x) x __attribute__ ((unused))
59
60 #define STRINGIFY(s) STRINGIFY_(s)
61 #define STRINGIFY_(s) #s
62
63 typedef struct mime_node mime_node_t;
64 struct sprinter;
65 struct notmuch_show_params;
66
67 typedef struct notmuch_show_format {
68     struct sprinter *(*new_sprinter) (const void *ctx, FILE *stream);
69     notmuch_status_t (*part) (const void *ctx, struct sprinter *sprinter,
70                               struct mime_node *node, int indent,
71                               const struct notmuch_show_params *params);
72 } notmuch_show_format_t;
73
74 typedef struct notmuch_crypto {
75     notmuch_bool_t verify;
76     notmuch_bool_t decrypt;
77 #if (GMIME_MAJOR_VERSION < 3)
78     notmuch_crypto_context_t* gpgctx;
79     notmuch_crypto_context_t* pkcs7ctx;
80     const char *gpgpath;
81 #endif
82 } notmuch_crypto_t;
83
84 typedef struct notmuch_show_params {
85     notmuch_bool_t entire_thread;
86     notmuch_bool_t omit_excluded;
87     notmuch_bool_t output_body;
88     int part;
89     notmuch_crypto_t crypto;
90     notmuch_bool_t include_html;
91     GMimeStream *out_stream;
92 } notmuch_show_params_t;
93
94 /* There's no point in continuing when we've detected that we've done
95  * something wrong internally (as opposed to the user passing in a
96  * bogus value).
97  *
98  * Note that __location__ comes from talloc.h.
99  */
100 #define INTERNAL_ERROR(format, ...)                     \
101     do {                                                \
102         fprintf(stderr,                                 \
103                 "Internal error: " format " (%s)\n",    \
104                 ##__VA_ARGS__, __location__);           \
105         exit (1);                                       \
106     } while (0)
107
108 #define ARRAY_SIZE(arr) (sizeof (arr) / sizeof (arr[0]))
109
110 #define STRNCMP_LITERAL(var, literal) \
111     strncmp ((var), (literal), sizeof (literal) - 1)
112
113 static inline void
114 chomp_newline (char *str)
115 {
116     if (str && str[strlen(str)-1] == '\n')
117         str[strlen(str)-1] = '\0';
118 }
119
120 /* Exit status code indicating temporary failure; user is invited to
121  * retry.
122  *
123  * For example, file(s) in the mail store were removed or renamed
124  * after notmuch new scanned the directories but before indexing the
125  * file(s). If the file was renamed, the indexing might not be
126  * complete, and the user is advised to re-run notmuch new.
127  */
128 #define NOTMUCH_EXIT_TEMPFAIL EX_TEMPFAIL
129
130 /* Exit status code indicating the requested format version is too old
131  * (support for that version has been dropped).  CLI code should use
132  * notmuch_exit_if_unsupported_format rather than directly exiting
133  * with this code.
134  */
135 #define NOTMUCH_EXIT_FORMAT_TOO_OLD 20
136 /* Exit status code indicating the requested format version is newer
137  * than the version supported by the CLI.  CLI code should use
138  * notmuch_exit_if_unsupported_format rather than directly exiting
139  * with this code.
140  */
141 #define NOTMUCH_EXIT_FORMAT_TOO_NEW 21
142
143 /* The current structured output format version.  Requests for format
144  * versions above this will return an error.  Backwards-incompatible
145  * changes such as removing map fields, changing the meaning of map
146  * fields, or changing the meanings of list elements should increase
147  * this.  New (required) map fields can be added without increasing
148  * this.
149  */
150 #define NOTMUCH_FORMAT_CUR 4
151 /* The minimum supported structured output format version.  Requests
152  * for format versions below this will return an error. */
153 #define NOTMUCH_FORMAT_MIN 1
154 /* The minimum non-deprecated structured output format version.
155  * Requests for format versions below this will print a stern warning.
156  * Must be between NOTMUCH_FORMAT_MIN and NOTMUCH_FORMAT_CUR,
157  * inclusive.
158  */
159 #define NOTMUCH_FORMAT_MIN_ACTIVE 1
160
161 /* The output format version requested by the caller on the command
162  * line.  If no format version is requested, this will be set to
163  * NOTMUCH_FORMAT_CUR.  Even though the command-line option is
164  * per-command, this is global because commands can share structured
165  * output code.
166  */
167 extern int notmuch_format_version;
168
169 typedef struct _notmuch_config notmuch_config_t;
170
171 /* Commands that support structured output should support the
172  * following argument
173  *  { NOTMUCH_OPT_INT, &notmuch_format_version, "format-version", 0, 0 }
174  * and should invoke notmuch_exit_if_unsupported_format to check the
175  * requested version.  If notmuch_format_version is outside the
176  * supported range, this will print a detailed diagnostic message for
177  * the user and exit with NOTMUCH_EXIT_FORMAT_TOO_{OLD,NEW} to inform
178  * the invoking program of the problem.
179  */
180 void
181 notmuch_exit_if_unsupported_format (void);
182
183 #if (GMIME_MAJOR_VERSION <3)
184 notmuch_crypto_context_t *
185 notmuch_crypto_get_context (notmuch_crypto_t *crypto, const char *protocol);
186 #endif
187
188 int
189 notmuch_crypto_cleanup (notmuch_crypto_t *crypto);
190
191 int
192 notmuch_count_command (notmuch_config_t *config, int argc, char *argv[]);
193
194 int
195 notmuch_dump_command (notmuch_config_t *config, int argc, char *argv[]);
196
197 int
198 notmuch_new_command (notmuch_config_t *config, int argc, char *argv[]);
199
200 int
201 notmuch_insert_command (notmuch_config_t *config, int argc, char *argv[]);
202
203 int
204 notmuch_reindex_command (notmuch_config_t *config, int argc, char *argv[]);
205
206 int
207 notmuch_reply_command (notmuch_config_t *config, int argc, char *argv[]);
208
209 int
210 notmuch_restore_command (notmuch_config_t *config, int argc, char *argv[]);
211
212 int
213 notmuch_search_command (notmuch_config_t *config, int argc, char *argv[]);
214
215 int
216 notmuch_address_command (notmuch_config_t *config, int argc, char *argv[]);
217
218 int
219 notmuch_setup_command (notmuch_config_t *config, int argc, char *argv[]);
220
221 int
222 notmuch_show_command (notmuch_config_t *config, int argc, char *argv[]);
223
224 int
225 notmuch_tag_command (notmuch_config_t *config, int argc, char *argv[]);
226
227 int
228 notmuch_config_command (notmuch_config_t *config, int argc, char *argv[]);
229
230 int
231 notmuch_compact_command (notmuch_config_t *config, int argc, char *argv[]);
232
233 const char *
234 notmuch_time_relative_date (const void *ctx, time_t then);
235
236 void
237 notmuch_time_print_formatted_seconds (double seconds);
238
239 double
240 notmuch_time_elapsed (struct timeval start, struct timeval end);
241
242 char *
243 query_string_from_args (void *ctx, int argc, char *argv[]);
244
245 notmuch_status_t
246 show_one_part (const char *filename, int part);
247
248 void
249 format_part_sprinter (const void *ctx, struct sprinter *sp, mime_node_t *node,
250                       notmuch_bool_t first, notmuch_bool_t output_body,
251                       notmuch_bool_t include_html);
252
253 void
254 format_headers_sprinter (struct sprinter *sp, GMimeMessage *message,
255                          notmuch_bool_t reply);
256
257 typedef enum {
258     NOTMUCH_SHOW_TEXT_PART_REPLY = 1 << 0,
259 } notmuch_show_text_part_flags;
260
261 void
262 show_text_part_content (GMimeObject *part, GMimeStream *stream_out,
263                         notmuch_show_text_part_flags flags);
264
265 char *
266 json_quote_chararray (const void *ctx, const char *str, const size_t len);
267
268 char *
269 json_quote_str (const void *ctx, const char *str);
270
271 /* notmuch-config.c */
272
273 typedef enum {
274     NOTMUCH_CONFIG_OPEN = 1 << 0,
275     NOTMUCH_CONFIG_CREATE = 1 << 1,
276 } notmuch_config_mode_t;
277
278 notmuch_config_t *
279 notmuch_config_open (void *ctx,
280                      const char *filename,
281                      notmuch_config_mode_t config_mode);
282
283 void
284 notmuch_config_close (notmuch_config_t *config);
285
286 int
287 notmuch_config_save (notmuch_config_t *config);
288
289 notmuch_bool_t
290 notmuch_config_is_new (notmuch_config_t *config);
291
292 const char *
293 notmuch_config_get_database_path (notmuch_config_t *config);
294
295 void
296 notmuch_config_set_database_path (notmuch_config_t *config,
297                                   const char *database_path);
298
299 #if (GMIME_MAJOR_VERSION < 3)
300 const char *
301 notmuch_config_get_crypto_gpg_path (notmuch_config_t *config);
302
303 void
304 notmuch_config_set_crypto_gpg_path (notmuch_config_t *config,
305                                   const char *gpg_path);
306 #endif
307
308 const char *
309 notmuch_config_get_user_name (notmuch_config_t *config);
310
311 void
312 notmuch_config_set_user_name (notmuch_config_t *config,
313                               const char *user_name);
314
315 const char *
316 notmuch_config_get_user_primary_email (notmuch_config_t *config);
317
318 void
319 notmuch_config_set_user_primary_email (notmuch_config_t *config,
320                                        const char *primary_email);
321
322 const char **
323 notmuch_config_get_user_other_email (notmuch_config_t *config,
324                                      size_t *length);
325
326 void
327 notmuch_config_set_user_other_email (notmuch_config_t *config,
328                                      const char *other_email[],
329                                      size_t length);
330
331 const char **
332 notmuch_config_get_new_tags (notmuch_config_t *config,
333                              size_t *length);
334 void
335 notmuch_config_set_new_tags (notmuch_config_t *config,
336                              const char *new_tags[],
337                              size_t length);
338
339 const char **
340 notmuch_config_get_new_ignore (notmuch_config_t *config,
341                                size_t *length);
342
343 void
344 notmuch_config_set_new_ignore (notmuch_config_t *config,
345                                const char *new_ignore[],
346                                size_t length);
347
348 notmuch_bool_t
349 notmuch_config_get_maildir_synchronize_flags (notmuch_config_t *config);
350
351 void
352 notmuch_config_set_maildir_synchronize_flags (notmuch_config_t *config,
353                                               notmuch_bool_t synchronize_flags);
354
355 const char **
356 notmuch_config_get_search_exclude_tags (notmuch_config_t *config, size_t *length);
357
358 void
359 notmuch_config_set_search_exclude_tags (notmuch_config_t *config,
360                                       const char *list[],
361                                       size_t length);
362
363 int
364 notmuch_run_hook (const char *db_path, const char *hook);
365
366 notmuch_bool_t
367 debugger_is_active (void);
368
369 /* mime-node.c */
370
371 /* mime_node_t represents a single node in a MIME tree.  A MIME tree
372  * abstracts the different ways of traversing different types of MIME
373  * parts, allowing a MIME message to be viewed as a generic tree of
374  * parts.  Message-type parts have one child, multipart-type parts
375  * have multiple children, and leaf parts have zero children.
376  */
377 struct mime_node {
378     /* The MIME object of this part.  This will be a GMimeMessage,
379      * GMimePart, GMimeMultipart, or a subclass of one of these.
380      *
381      * This will never be a GMimeMessagePart because GMimeMessagePart
382      * is structurally redundant with GMimeMessage.  If this part is a
383      * message (that is, 'part' is a GMimeMessage), then either
384      * envelope_file will be set to a notmuch_message_t (for top-level
385      * messages) or envelope_part will be set to a GMimeMessagePart
386      * (for embedded message parts).
387      */
388     GMimeObject *part;
389
390     /* If part is a GMimeMessage, these record the envelope of the
391      * message: either a notmuch_message_t representing a top-level
392      * message, or a GMimeMessagePart representing a MIME part
393      * containing a message.
394      */
395     notmuch_message_t *envelope_file;
396     GMimeMessagePart *envelope_part;
397
398     /* The number of children of this part. */
399     int nchildren;
400
401     /* The parent of this node or NULL if this is the root node. */
402     struct mime_node *parent;
403
404     /* The depth-first part number of this child if the MIME tree is
405      * being traversed in depth-first order, or -1 otherwise. */
406     int part_num;
407
408     /* True if decryption of this part was attempted. */
409     notmuch_bool_t decrypt_attempted;
410     /* True if decryption of this part's child succeeded.  In this
411      * case, the decrypted part is substituted for the second child of
412      * this part (which would usually be the encrypted data). */
413     notmuch_bool_t decrypt_success;
414
415     /* True if signature verification on this part was attempted. */
416     notmuch_bool_t verify_attempted;
417
418     /* The list of signatures for signed or encrypted containers. If
419      * there are no signatures, this will be NULL. */
420     GMimeSignatureList* sig_list;
421
422     /* Internal: Context inherited from the root iterator. */
423     struct mime_node_context *ctx;
424
425     /* Internal: For successfully decrypted multipart parts, the
426      * decrypted part to substitute for the second child. */
427     GMimeObject *decrypted_child;
428
429     /* Internal: The next child for depth-first traversal and the part
430      * number to assign it (or -1 if unknown). */
431     int next_child;
432     int next_part_num;
433 };
434
435 /* Construct a new MIME node pointing to the root message part of
436  * message. If crypto->verify is true, signed child parts will be
437  * verified. If crypto->decrypt is true, encrypted child parts will be
438  * decrypted.  If the crypto contexts (crypto->gpgctx or
439  * crypto->pkcs7) are NULL, they will be lazily initialized.
440  *
441  * Return value:
442  *
443  * NOTMUCH_STATUS_SUCCESS: Root node is returned in *node_out.
444  *
445  * NOTMUCH_STATUS_FILE_ERROR: Failed to open message file.
446  *
447  * NOTMUCH_STATUS_OUT_OF_MEMORY: Out of memory.
448  */
449 notmuch_status_t
450 mime_node_open (const void *ctx, notmuch_message_t *message,
451                 notmuch_crypto_t *crypto, mime_node_t **node_out);
452
453 /* Return a new MIME node for the requested child part of parent.
454  * parent will be used as the talloc context for the returned child
455  * node.
456  *
457  * In case of any failure, this function returns NULL, (after printing
458  * an error message on stderr).
459  */
460 mime_node_t *
461 mime_node_child (mime_node_t *parent, int child);
462
463 /* Return the nth child of node in a depth-first traversal.  If n is
464  * 0, returns node itself.  Returns NULL if there is no such part. */
465 mime_node_t *
466 mime_node_seek_dfs (mime_node_t *node, int n);
467
468 typedef enum dump_formats {
469     DUMP_FORMAT_AUTO,
470     DUMP_FORMAT_BATCH_TAG,
471     DUMP_FORMAT_SUP
472 } dump_format_t;
473
474 typedef enum dump_includes {
475     DUMP_INCLUDE_TAGS = 1,
476     DUMP_INCLUDE_CONFIG = 2,
477     DUMP_INCLUDE_PROPERTIES = 4
478 } dump_include_t;
479
480 #define DUMP_INCLUDE_DEFAULT (DUMP_INCLUDE_TAGS | DUMP_INCLUDE_CONFIG | DUMP_INCLUDE_PROPERTIES)
481
482 #define NOTMUCH_DUMP_VERSION 3
483
484 int
485 notmuch_database_dump (notmuch_database_t *notmuch,
486                        const char *output_file_name,
487                        const char *query_str,
488                        dump_format_t output_format,
489                        dump_include_t include,
490                        notmuch_bool_t gzip_output);
491
492 /* If status is non-zero (i.e. error) print appropriate
493    messages to stderr.
494 */
495
496 notmuch_status_t
497 print_status_query (const char *loc,
498                     const notmuch_query_t *query,
499                     notmuch_status_t status);
500
501 notmuch_status_t
502 print_status_database (const char *loc,
503                        const notmuch_database_t *database,
504                        notmuch_status_t status);
505
506 int
507 status_to_exit (notmuch_status_t status);
508
509 #include "command-line-arguments.h"
510
511 extern char *notmuch_requested_db_uuid;
512 extern const notmuch_opt_desc_t  notmuch_shared_options [];
513 void notmuch_exit_if_unmatched_db_uuid (notmuch_database_t *notmuch);
514
515 void notmuch_process_shared_options (const char* subcommand_name);
516 int notmuch_minimal_options (const char* subcommand_name,
517                              int argc, char **argv);
518 #endif