1 /* notmuch - Not much of an email program, (just index and search)
3 * Copyright © 2009 Carl Worth
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.
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.
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/ .
18 * Author: Carl Worth <cworth@cworth.org>
21 #ifndef NOTMUCH_CLIENT_H
22 #define NOTMUCH_CLIENT_H
25 #define _GNU_SOURCE /* for getline */
33 #include "gmime-extra.h"
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).
54 #include "talloc-extra.h"
58 #define unused(x) x ## _unused __attribute__ ((unused))
60 #define STRINGIFY(s) STRINGIFY_ (s)
61 #define STRINGIFY_(s) #s
63 typedef struct mime_node mime_node_t;
65 struct notmuch_show_params;
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;
74 typedef struct notmuch_show_params {
79 _notmuch_crypto_t crypto;
81 GMimeStream *out_stream;
82 } notmuch_show_params_t;
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
88 * Note that __location__ comes from talloc.h.
90 #define INTERNAL_ERROR(format, ...) \
93 "Internal error: " format " (%s)\n", \
94 ##__VA_ARGS__, __location__); \
98 #define ARRAY_SIZE(arr) (sizeof (arr) / sizeof (arr[0]))
100 #define STRNCMP_LITERAL(var, literal) \
101 strncmp ((var), (literal), sizeof (literal) - 1)
104 chomp_newline (char *str)
106 if (str && str[strlen (str) - 1] == '\n')
107 str[strlen (str) - 1] = '\0';
110 /* Exit status code indicating temporary failure; user is invited to
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.
118 #define NOTMUCH_EXIT_TEMPFAIL EX_TEMPFAIL
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
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
131 #define NOTMUCH_EXIT_FORMAT_TOO_NEW 21
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
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,
149 #define NOTMUCH_FORMAT_MIN_ACTIVE 1
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
157 extern int notmuch_format_version;
159 typedef struct _notmuch_config notmuch_config_t;
161 /* Commands that support structured output should support the
163 * { NOTMUCH_OPT_INT, ¬much_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.
171 notmuch_exit_if_unsupported_format (void);
174 notmuch_count_command (notmuch_config_t *config, int argc, char *argv[]);
177 notmuch_dump_command (notmuch_config_t *config, int argc, char *argv[]);
180 notmuch_new_command (notmuch_config_t *config, int argc, char *argv[]);
183 notmuch_insert_command (notmuch_config_t *config, int argc, char *argv[]);
186 notmuch_reindex_command (notmuch_config_t *config, int argc, char *argv[]);
189 notmuch_reply_command (notmuch_config_t *config, int argc, char *argv[]);
192 notmuch_restore_command (notmuch_config_t *config, int argc, char *argv[]);
195 notmuch_search_command (notmuch_config_t *config, int argc, char *argv[]);
198 notmuch_address_command (notmuch_config_t *config, int argc, char *argv[]);
201 notmuch_setup_command (notmuch_config_t *config, int argc, char *argv[]);
204 notmuch_show_command (notmuch_config_t *config, int argc, char *argv[]);
207 notmuch_tag_command (notmuch_config_t *config, int argc, char *argv[]);
210 notmuch_config_command (notmuch_config_t *config, int argc, char *argv[]);
213 notmuch_compact_command (notmuch_config_t *config, int argc, char *argv[]);
216 notmuch_time_relative_date (const void *ctx, time_t then);
219 notmuch_time_print_formatted_seconds (double seconds);
222 notmuch_time_elapsed (struct timeval start, struct timeval end);
225 query_string_from_args (void *ctx, int argc, char *argv[]);
228 show_one_part (const char *filename, int part);
231 format_part_sprinter (const void *ctx, struct sprinter *sp, mime_node_t *node,
236 format_headers_sprinter (struct sprinter *sp, GMimeMessage *message,
237 bool reply, const _notmuch_message_crypto_t *msg_crypto);
240 NOTMUCH_SHOW_TEXT_PART_REPLY = 1 << 0,
241 } notmuch_show_text_part_flags;
244 show_text_part_content (GMimeObject *part, GMimeStream *stream_out,
245 notmuch_show_text_part_flags flags);
248 json_quote_chararray (const void *ctx, const char *str, const size_t len);
251 json_quote_str (const void *ctx, const char *str);
253 /* notmuch-config.c */
256 NOTMUCH_CONFIG_OPEN = 1 << 0,
257 NOTMUCH_CONFIG_CREATE = 1 << 1,
258 } notmuch_config_mode_t;
261 notmuch_config_open (void *ctx,
262 const char *filename,
263 notmuch_config_mode_t config_mode);
266 notmuch_config_close (notmuch_config_t *config);
269 notmuch_config_save (notmuch_config_t *config);
272 notmuch_config_is_new (notmuch_config_t *config);
275 notmuch_config_get_database_path (notmuch_config_t *config);
278 notmuch_config_set_database_path (notmuch_config_t *config,
279 const char *database_path);
282 notmuch_config_get_user_name (notmuch_config_t *config);
285 notmuch_config_set_user_name (notmuch_config_t *config,
286 const char *user_name);
289 notmuch_config_get_user_primary_email (notmuch_config_t *config);
292 notmuch_config_set_user_primary_email (notmuch_config_t *config,
293 const char *primary_email);
296 notmuch_config_get_user_other_email (notmuch_config_t *config,
300 notmuch_config_set_user_other_email (notmuch_config_t *config,
301 const char *other_email[],
305 notmuch_config_get_new_tags (notmuch_config_t *config,
308 notmuch_config_set_new_tags (notmuch_config_t *config,
309 const char *new_tags[],
313 notmuch_config_get_new_ignore (notmuch_config_t *config,
317 notmuch_config_set_new_ignore (notmuch_config_t *config,
318 const char *new_ignore[],
322 notmuch_config_get_maildir_synchronize_flags (notmuch_config_t *config);
325 notmuch_config_set_maildir_synchronize_flags (notmuch_config_t *config,
326 bool synchronize_flags);
329 notmuch_config_get_search_exclude_tags (notmuch_config_t *config, size_t *length);
332 notmuch_config_set_search_exclude_tags (notmuch_config_t *config,
337 notmuch_run_hook (const char *db_path, const char *hook);
340 debugger_is_active (void);
344 /* mime_node_t represents a single node in a MIME tree. A MIME tree
345 * abstracts the different ways of traversing different types of MIME
346 * parts, allowing a MIME message to be viewed as a generic tree of
347 * parts. Message-type parts have one child, multipart-type parts
348 * have multiple children, and leaf parts have zero children.
351 /* The MIME object of this part. This will be a GMimeMessage,
352 * GMimePart, GMimeMultipart, or a subclass of one of these.
354 * This will never be a GMimeMessagePart because GMimeMessagePart
355 * is structurally redundant with GMimeMessage. If this part is a
356 * message (that is, 'part' is a GMimeMessage), then either
357 * envelope_file will be set to a notmuch_message_t (for top-level
358 * messages) or envelope_part will be set to a GMimeMessagePart
359 * (for embedded message parts).
363 /* If part is a GMimeMessage, these record the envelope of the
364 * message: either a notmuch_message_t representing a top-level
365 * message, or a GMimeMessagePart representing a MIME part
366 * containing a message.
368 notmuch_message_t *envelope_file;
369 GMimeMessagePart *envelope_part;
371 /* The number of children of this part. */
374 /* The parent of this node or NULL if this is the root node. */
375 struct mime_node *parent;
377 /* The depth-first part number of this child if the MIME tree is
378 * being traversed in depth-first order, or -1 otherwise. */
381 /* True if decryption of this part was attempted. */
382 bool decrypt_attempted;
383 /* True if decryption of this part's child succeeded. In this
384 * case, the decrypted part is substituted for the second child of
385 * this part (which would usually be the encrypted data). */
386 bool decrypt_success;
388 /* True if signature verification on this part was attempted. */
389 bool verify_attempted;
391 /* The list of signatures for signed or encrypted containers. If
392 * there are no signatures, this will be NULL. */
393 GMimeSignatureList *sig_list;
395 /* Internal: Context inherited from the root iterator. */
396 struct mime_node_context *ctx;
398 /* Internal: For successfully decrypted multipart parts, the
399 * decrypted part to substitute for the second child; or, for
400 * PKCS#7 parts, the part returned after removing/processing the
401 * PKCS#7 transformation */
402 GMimeObject *unwrapped_child;
404 /* Internal: The next child for depth-first traversal and the part
405 * number to assign it (or -1 if unknown). */
410 /* Construct a new MIME node pointing to the root message part of
411 * message. If crypto->verify is true, signed child parts will be
412 * verified. If crypto->decrypt is NOTMUCH_DECRYPT_TRUE, encrypted
413 * child parts will be decrypted using either stored session keys or
414 * asymmetric crypto. If crypto->decrypt is NOTMUCH_DECRYPT_AUTO,
415 * only session keys will be tried. If the crypto contexts
416 * (crypto->gpgctx or crypto->pkcs7) are NULL, they will be lazily
421 * NOTMUCH_STATUS_SUCCESS: Root node is returned in *node_out.
423 * NOTMUCH_STATUS_FILE_ERROR: Failed to open message file.
425 * NOTMUCH_STATUS_OUT_OF_MEMORY: Out of memory.
428 mime_node_open (const void *ctx, notmuch_message_t *message,
429 _notmuch_crypto_t *crypto, mime_node_t **node_out);
431 /* Return a new MIME node for the requested child part of parent.
432 * parent will be used as the talloc context for the returned child
435 * In case of any failure, this function returns NULL, (after printing
436 * an error message on stderr).
439 mime_node_child (mime_node_t *parent, int child);
441 /* Return the nth child of node in a depth-first traversal. If n is
442 * 0, returns node itself. Returns NULL if there is no such part. */
444 mime_node_seek_dfs (mime_node_t *node, int n);
446 const _notmuch_message_crypto_t *
447 mime_node_get_message_crypto_status (mime_node_t *node);
449 typedef enum dump_formats {
451 DUMP_FORMAT_BATCH_TAG,
455 typedef enum dump_includes {
456 DUMP_INCLUDE_TAGS = 1,
457 DUMP_INCLUDE_CONFIG = 2,
458 DUMP_INCLUDE_PROPERTIES = 4
461 #define DUMP_INCLUDE_DEFAULT (DUMP_INCLUDE_TAGS | DUMP_INCLUDE_CONFIG | DUMP_INCLUDE_PROPERTIES)
463 #define NOTMUCH_DUMP_VERSION 3
466 notmuch_database_dump (notmuch_database_t *notmuch,
467 const char *output_file_name,
468 const char *query_str,
469 dump_format_t output_format,
470 dump_include_t include,
473 /* If status indicates error print appropriate
474 * messages to stderr.
478 print_status_query (const char *loc,
479 const notmuch_query_t *query,
480 notmuch_status_t status);
483 print_status_message (const char *loc,
484 const notmuch_message_t *message,
485 notmuch_status_t status);
488 print_status_database (const char *loc,
489 const notmuch_database_t *database,
490 notmuch_status_t status);
493 status_to_exit (notmuch_status_t status);
496 print_status_gzbytes (const char *loc,
500 /* the __location__ macro is defined in talloc.h */
501 #define ASSERT_GZBYTES(file, bytes) ((print_status_gzbytes (__location__, file, bytes)) ? exit (1) : 0)
502 #define GZPRINTF(file, fmt, ...) ASSERT_GZBYTES (file, gzprintf (file, fmt, ##__VA_ARGS__));
503 #define GZPUTS(file, str) ASSERT_GZBYTES(file, gzputs (file, str));
505 #include "command-line-arguments.h"
507 extern const char *notmuch_requested_db_uuid;
508 extern const notmuch_opt_desc_t notmuch_shared_options [];
509 void notmuch_exit_if_unmatched_db_uuid (notmuch_database_t *notmuch);
511 void notmuch_process_shared_options (const char *subcommand_name);
512 int notmuch_minimal_options (const char *subcommand_name,
513 int argc, char **argv);
516 /* the state chosen by the user invoking one of the notmuch
517 * subcommands that does indexing */
518 struct _notmuch_client_indexing_cli_choices {
520 bool decrypt_policy_set;
521 notmuch_indexopts_t *opts;
523 extern struct _notmuch_client_indexing_cli_choices indexing_cli_choices;
524 extern const notmuch_opt_desc_t notmuch_shared_indexing_options [];
526 notmuch_process_shared_indexing_options (notmuch_database_t *notmuch);