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