]> git.notmuchmail.org Git - notmuch/blob - lib/notmuch.h
lib/config: add notmuch_config_get_values_string
[notmuch] / lib / notmuch.h
1 /* notmuch - Not much of an email library, (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 /**
22  * @defgroup notmuch The notmuch API
23  *
24  * Not much of an email library, (just index and search)
25  *
26  * @{
27  */
28
29 #ifndef NOTMUCH_H
30 #define NOTMUCH_H
31
32 #ifndef __DOXYGEN__
33
34 #ifdef  __cplusplus
35 # define NOTMUCH_BEGIN_DECLS  extern "C" {
36 # define NOTMUCH_END_DECLS    }
37 #else
38 # define NOTMUCH_BEGIN_DECLS
39 # define NOTMUCH_END_DECLS
40 #endif
41
42 NOTMUCH_BEGIN_DECLS
43
44 #include <time.h>
45
46 #pragma GCC visibility push(default)
47
48 #ifndef FALSE
49 #define FALSE 0
50 #endif
51
52 #ifndef TRUE
53 #define TRUE 1
54 #endif
55
56 /*
57  * The library version number.  This must agree with the soname
58  * version in Makefile.local.
59  */
60 #define LIBNOTMUCH_MAJOR_VERSION        5
61 #define LIBNOTMUCH_MINOR_VERSION        3
62 #define LIBNOTMUCH_MICRO_VERSION        0
63
64
65 #if defined (__clang_major__) && __clang_major__ >= 3 \
66     || defined (__GNUC__) && __GNUC__ >= 5 \
67     || defined (__GNUC__) && __GNUC__ == 4 && __GNUC_MINOR__ >= 5
68 #define NOTMUCH_DEPRECATED(major, minor) \
69     __attribute__ ((deprecated ("function deprecated as of libnotmuch " #major "." #minor)))
70 #else
71 #define NOTMUCH_DEPRECATED(major, minor) __attribute__ ((deprecated))
72 #endif
73
74
75 #endif /* __DOXYGEN__ */
76
77 /**
78  * Check the version of the notmuch library being compiled against.
79  *
80  * Return true if the library being compiled against is of the
81  * specified version or above. For example:
82  *
83  * @code
84  * #if LIBNOTMUCH_CHECK_VERSION(3, 1, 0)
85  *     (code requiring libnotmuch 3.1.0 or above)
86  * #endif
87  * @endcode
88  *
89  * LIBNOTMUCH_CHECK_VERSION has been defined since version 3.1.0; to
90  * check for versions prior to that, use:
91  *
92  * @code
93  * #if !defined(NOTMUCH_CHECK_VERSION)
94  *     (code requiring libnotmuch prior to 3.1.0)
95  * #endif
96  * @endcode
97  */
98 #define LIBNOTMUCH_CHECK_VERSION(major, minor, micro)                   \
99     (LIBNOTMUCH_MAJOR_VERSION > (major) ||                                      \
100      (LIBNOTMUCH_MAJOR_VERSION == (major) && LIBNOTMUCH_MINOR_VERSION > (minor)) || \
101      (LIBNOTMUCH_MAJOR_VERSION == (major) && LIBNOTMUCH_MINOR_VERSION == (minor) && \
102       LIBNOTMUCH_MICRO_VERSION >= (micro)))
103
104 /**
105  * Notmuch boolean type.
106  */
107 typedef int notmuch_bool_t;
108
109 /**
110  * Status codes used for the return values of most functions.
111  *
112  * A zero value (NOTMUCH_STATUS_SUCCESS) indicates that the function
113  * completed without error. Any other value indicates an error.
114  */
115 typedef enum _notmuch_status {
116     /**
117      * No error occurred.
118      */
119     NOTMUCH_STATUS_SUCCESS = 0,
120     /**
121      * Out of memory.
122      */
123     NOTMUCH_STATUS_OUT_OF_MEMORY,
124     /**
125      * An attempt was made to write to a database opened in read-only
126      * mode.
127      */
128     NOTMUCH_STATUS_READ_ONLY_DATABASE,
129     /**
130      * A Xapian exception occurred.
131      *
132      * @todo We don't really want to expose this lame XAPIAN_EXCEPTION
133      * value. Instead we should map to things like DATABASE_LOCKED or
134      * whatever.
135      */
136     NOTMUCH_STATUS_XAPIAN_EXCEPTION,
137     /**
138      * An error occurred trying to read or write to a file (this could
139      * be file not found, permission denied, etc.)
140      */
141     NOTMUCH_STATUS_FILE_ERROR,
142     /**
143      * A file was presented that doesn't appear to be an email
144      * message.
145      */
146     NOTMUCH_STATUS_FILE_NOT_EMAIL,
147     /**
148      * A file contains a message ID that is identical to a message
149      * already in the database.
150      */
151     NOTMUCH_STATUS_DUPLICATE_MESSAGE_ID,
152     /**
153      * The user erroneously passed a NULL pointer to a notmuch
154      * function.
155      */
156     NOTMUCH_STATUS_NULL_POINTER,
157     /**
158      * A tag value is too long (exceeds NOTMUCH_TAG_MAX).
159      */
160     NOTMUCH_STATUS_TAG_TOO_LONG,
161     /**
162      * The notmuch_message_thaw function has been called more times
163      * than notmuch_message_freeze.
164      */
165     NOTMUCH_STATUS_UNBALANCED_FREEZE_THAW,
166     /**
167      * notmuch_database_end_atomic has been called more times than
168      * notmuch_database_begin_atomic.
169      */
170     NOTMUCH_STATUS_UNBALANCED_ATOMIC,
171     /**
172      * The operation is not supported.
173      */
174     NOTMUCH_STATUS_UNSUPPORTED_OPERATION,
175     /**
176      * The operation requires a database upgrade.
177      */
178     NOTMUCH_STATUS_UPGRADE_REQUIRED,
179     /**
180      * There is a problem with the proposed path, e.g. a relative path
181      * passed to a function expecting an absolute path.
182      */
183     NOTMUCH_STATUS_PATH_ERROR,
184     /**
185      * The requested operation was ignored. Depending on the function,
186      * this may not be an actual error.
187      */
188     NOTMUCH_STATUS_IGNORED,
189     /**
190      * One of the arguments violates the preconditions for the
191      * function, in a way not covered by a more specific argument.
192      */
193     NOTMUCH_STATUS_ILLEGAL_ARGUMENT,
194     /**
195      * A MIME object claimed to have cryptographic protection which
196      * notmuch tried to handle, but the protocol was not specified in
197      * an intelligible way.
198      */
199     NOTMUCH_STATUS_MALFORMED_CRYPTO_PROTOCOL,
200     /**
201      * Notmuch attempted to do crypto processing, but could not
202      * initialize the engine needed to do so.
203      */
204     NOTMUCH_STATUS_FAILED_CRYPTO_CONTEXT_CREATION,
205     /**
206      * A MIME object claimed to have cryptographic protection, and
207      * notmuch attempted to process it, but the specific protocol was
208      * something that notmuch doesn't know how to handle.
209      */
210     NOTMUCH_STATUS_UNKNOWN_CRYPTO_PROTOCOL,
211     /**
212      * Unable to load a config file
213      */
214     NOTMUCH_STATUS_NO_CONFIG,
215     /**
216      * Database exists, so not (re)-created
217      */
218     NOTMUCH_STATUS_DATABASE_EXISTS,
219     /**
220      * Not an actual status value. Just a way to find out how many
221      * valid status values there are.
222      */
223     NOTMUCH_STATUS_LAST_STATUS
224 } notmuch_status_t;
225
226 /**
227  * Get a string representation of a notmuch_status_t value.
228  *
229  * The result is read-only.
230  */
231 const char *
232 notmuch_status_to_string (notmuch_status_t status);
233
234 /* Various opaque data types. For each notmuch_<foo>_t see the various
235  * notmuch_<foo> functions below. */
236 #ifndef __DOXYGEN__
237 typedef struct _notmuch_database notmuch_database_t;
238 typedef struct _notmuch_query notmuch_query_t;
239 typedef struct _notmuch_threads notmuch_threads_t;
240 typedef struct _notmuch_thread notmuch_thread_t;
241 typedef struct _notmuch_messages notmuch_messages_t;
242 typedef struct _notmuch_message notmuch_message_t;
243 typedef struct _notmuch_tags notmuch_tags_t;
244 typedef struct _notmuch_directory notmuch_directory_t;
245 typedef struct _notmuch_filenames notmuch_filenames_t;
246 typedef struct _notmuch_config_list notmuch_config_list_t;
247 typedef struct _notmuch_config_values notmuch_config_values_t;
248 typedef struct _notmuch_indexopts notmuch_indexopts_t;
249 #endif /* __DOXYGEN__ */
250
251 /**
252  * Create a new, empty notmuch database located at 'path'.
253  *
254  * The path should be a top-level directory to a collection of
255  * plain-text email messages (one message per file). This call will
256  * create a new ".notmuch" directory within 'path' where notmuch will
257  * store its data.
258  *
259  * After a successful call to notmuch_database_create, the returned
260  * database will be open so the caller should call
261  * notmuch_database_destroy when finished with it.
262  *
263  * The database will not yet have any data in it
264  * (notmuch_database_create itself is a very cheap function). Messages
265  * contained within 'path' can be added to the database by calling
266  * notmuch_database_index_file.
267  *
268  * In case of any failure, this function returns an error status and
269  * sets *database to NULL (after printing an error message on stderr).
270  *
271  * Return value:
272  *
273  * NOTMUCH_STATUS_SUCCESS: Successfully created the database.
274  *
275  * NOTMUCH_STATUS_NULL_POINTER: The given 'path' argument is NULL.
276  *
277  * NOTMUCH_STATUS_OUT_OF_MEMORY: Out of memory.
278  *
279  * NOTMUCH_STATUS_FILE_ERROR: An error occurred trying to create the
280  *      database file (such as permission denied, or file not found,
281  *      etc.), or the database already exists.
282  *
283  * NOTMUCH_STATUS_XAPIAN_EXCEPTION: A Xapian exception occurred.
284  */
285 notmuch_status_t
286 notmuch_database_create (const char *path, notmuch_database_t **database);
287
288 /**
289  * Like notmuch_database_create, except optionally return an error
290  * message. This message is allocated by malloc and should be freed by
291  * the caller.
292  */
293 notmuch_status_t
294 notmuch_database_create_verbose (const char *path,
295                                  notmuch_database_t **database,
296                                  char **error_message);
297
298 /**
299  * Database open mode for notmuch_database_open.
300  */
301 typedef enum {
302     /**
303      * Open database for reading only.
304      */
305     NOTMUCH_DATABASE_MODE_READ_ONLY = 0,
306     /**
307      * Open database for reading and writing.
308      */
309     NOTMUCH_DATABASE_MODE_READ_WRITE
310 } notmuch_database_mode_t;
311
312 /**
313  * Deprecated alias for notmuch_database_open_with_config with
314  * config_path=error_message=NULL
315  * @deprecated Deprecated as of libnotmuch 5.4 (notmuch 0.32)
316  */
317 /* NOTMUCH_DEPRECATED(5, 4) */
318 notmuch_status_t
319 notmuch_database_open (const char *path,
320                        notmuch_database_mode_t mode,
321                        notmuch_database_t **database);
322 /**
323  * Deprecated alias for notmuch_database_open_with_config with
324  * config_path=NULL
325  *
326  * @deprecated Deprecated as of libnotmuch 5.4 (notmuch 0.32)
327  *
328  */
329 /* NOTMUCH_DEPRECATED(5, 4) */
330 notmuch_status_t
331 notmuch_database_open_verbose (const char *path,
332                                notmuch_database_mode_t mode,
333                                notmuch_database_t **database,
334                                char **error_message);
335
336 /**
337  * Open an existing notmuch database located at 'database_path', using
338  * configuration in 'config_path'.
339  *
340  * @param[in]   database_path
341  * @parblock
342  * Path to existing database.
343  *
344  * A notmuch database is a Xapian database containing appropriate
345  * metadata.
346  *
347  * The database should have been created at some time in the past,
348  * (not necessarily by this process), by calling
349  * notmuch_database_create.
350  *
351  * If 'database_path' is NULL, use the location specified
352  *
353  * - in the environment variable NOTMUCH_DATABASE, if non-empty
354  *
355  * - in a configuration file, located as described under 'config_path'
356  *
357  * - by $XDG_DATA_HOME/notmuch/$PROFILE where XDG_DATA_HOME defaults
358  *   to "$HOME/.local/share" and PROFILE as as discussed in
359  *   'profile'
360  *
361  * If 'database_path' is non-NULL, but does not appear to be a Xapian
362  * database, check for a directory '.notmuch/xapian' below
363  * 'database_path' (this is the behavior of
364  * notmuch_database_open_verbose pre-0.32).
365  *
366  * @endparblock
367  * @param[in]   mode
368  * @parblock
369  * Mode to open database. Use one of #NOTMUCH_DATABASE_MODE_READ_WRITE
370  * or #NOTMUCH_DATABASE_MODE_READ_ONLY
371  *
372  * @endparblock
373  * @param[in]  config_path
374  * @parblock
375  * Path to config file.
376  *
377  * Config file is key-value, with mandatory sections. See
378  * <em>notmuch-config(5)</em> for more information. The key-value pair
379  * overrides the corresponding configuration data stored in the
380  * database (see <em>notmuch_database_get_config</em>)
381  *
382  * If <em>config_path</em> is NULL use the path specified
383  *
384  * - in environment variable <em>NOTMUCH_CONFIG</em>, if non-empty
385  *
386  * - by  <em>XDG_CONFIG_HOME</em>/notmuch/ where
387  *   XDG_CONFIG_HOME defaults to "$HOME/.config".
388  *
389  * - by $HOME/.notmuch-config
390  *
391  * If <em>config_path</em> is "" (empty string) then do not
392  * open any configuration file.
393  * @endparblock
394  * @param[in] profile:
395  * @parblock
396  * Name of profile (configuration/database variant).
397  *
398  * If non-NULL, append to the directory / file path determined for
399  * <em>config_path</em> and <em>database_path</em>.
400  *
401  * If NULL then use
402  * - environment variable NOTMUCH_PROFILE if defined,
403  * - otherwise "default" for directories and "" (empty string) for paths.
404  *
405  * @endparblock
406  * @param[out] database
407  * @parblock
408  * Pointer to database object. May not be NULL.
409  *
410  * The caller should call notmuch_database_destroy when finished with
411  * this database.
412  *
413  * In case of any failure, this function returns an error status and
414  * sets *database to NULL.
415  *
416  * @endparblock
417  * @param[out] error_message
418  * If non-NULL, store error message from opening the database.
419  * Any such message is allocated by \a malloc(3) and should be freed
420  * by the caller.
421  *
422  * @retval NOTMUCH_STATUS_SUCCESS: Successfully opened the database.
423  *
424  * @retval NOTMUCH_STATUS_NULL_POINTER: The given \a database
425  * argument is NULL.
426  *
427  * @retval NOTMUCH_STATUS_OUT_OF_MEMORY: Out of memory.
428  *
429  * @retval NOTMUCH_STATUS_FILE_ERROR: An error occurred trying to open the
430  *      database or config file (such as permission denied, or file not found,
431  *      etc.), or the database version is unknown.
432  *
433  * @retval NOTMUCH_STATUS_XAPIAN_EXCEPTION: A Xapian exception occurred.
434  *
435  * @since libnotmuch 5.4 (notmuch 0.32)
436  */
437
438 notmuch_status_t
439 notmuch_database_open_with_config (const char *database_path,
440                                    notmuch_database_mode_t mode,
441                                    const char *config_path,
442                                    const char *profile,
443                                    notmuch_database_t **database,
444                                    char **error_message);
445
446
447 /**
448  * Loads configuration from config file, database, and/or defaults
449  *
450  * For description of arguments, @see notmuch_database_open_with_config
451  *
452  * @retval NOTMUCH_STATUS_SUCCESS: Successfully loaded (some) configuration.
453  *
454  * @retval NOTMUCH_STATUS_OUT_OF_MEMORY: Out of memory.
455  *
456  * @retval NOTMUCH_STATUS_FILE_ERROR: An error occurred trying to open the
457  *      database or config file (such as permission denied, or file not found,
458  *      etc.)
459  *
460  * @retval NOTMUCH_STATUS_XAPIAN_EXCEPTION: A Xapian exception occurred.
461  *
462  * @since libnotmuch 5.4 (notmuch 0.32)
463  */
464
465 notmuch_status_t
466 notmuch_database_load_config (const char *database_path,
467                               const char *config_path,
468                               const char *profile,
469                               notmuch_database_t **database,
470                               char **error_message);
471
472 /**
473  * Create a new notmuch database located at 'database_path', using
474  * configuration in 'config_path'.
475  *
476  * For description of arguments, @see notmuch_database_open_with_config
477  *
478  * @retval NOTMUCH_STATUS_SUCCESS: Successfully created the database.
479  *
480  * @retval NOTMUCH_STATUS_DATABASE_EXISTS: Database already exists, not created
481  *
482  * @retval NOTMUCH_STATUS_OUT_OF_MEMORY: Out of memory.
483  *
484  * @retval NOTMUCH_STATUS_FILE_ERROR: An error occurred trying to open the
485  *      database or config file (such as permission denied, or file not found,
486  *      etc.)
487  *
488  * @retval NOTMUCH_STATUS_XAPIAN_EXCEPTION: A Xapian exception occurred.
489  *
490  * @since libnotmuch 5.4 (notmuch 0.32)
491  */
492
493 notmuch_status_t
494 notmuch_database_create_with_config (const char *database_path,
495                                      const char *config_path,
496                                      const char *profile,
497                                      notmuch_database_t **database,
498                                      char **error_message);
499
500 /**
501  * Retrieve last status string for given database.
502  *
503  */
504 const char *
505 notmuch_database_status_string (const notmuch_database_t *notmuch);
506
507 /**
508  * Commit changes and close the given notmuch database.
509  *
510  * After notmuch_database_close has been called, calls to other
511  * functions on objects derived from this database may either behave
512  * as if the database had not been closed (e.g., if the required data
513  * has been cached) or may fail with a
514  * NOTMUCH_STATUS_XAPIAN_EXCEPTION. The only further operation
515  * permitted on the database itself is to call
516  * notmuch_database_destroy.
517  *
518  * notmuch_database_close can be called multiple times.  Later calls
519  * have no effect.
520  *
521  * For writable databases, notmuch_database_close commits all changes
522  * to disk before closing the database.  If the caller is currently in
523  * an atomic section (there was a notmuch_database_begin_atomic
524  * without a matching notmuch_database_end_atomic), this will discard
525  * changes made in that atomic section (but still commit changes made
526  * prior to entering the atomic section).
527  *
528  * Return value:
529  *
530  * NOTMUCH_STATUS_SUCCESS: Successfully closed the database.
531  *
532  * NOTMUCH_STATUS_XAPIAN_EXCEPTION: A Xapian exception occurred; the
533  *      database has been closed but there are no guarantees the
534  *      changes to the database, if any, have been flushed to disk.
535  */
536 notmuch_status_t
537 notmuch_database_close (notmuch_database_t *database);
538
539 /**
540  * A callback invoked by notmuch_database_compact to notify the user
541  * of the progress of the compaction process.
542  */
543 typedef void (*notmuch_compact_status_cb_t)(const char *message, void *closure);
544
545 /**
546  * Compact a notmuch database, backing up the original database to the
547  * given path.
548  *
549  * The database will be opened with NOTMUCH_DATABASE_MODE_READ_WRITE
550  * during the compaction process to ensure no writes are made.
551  *
552  * If the optional callback function 'status_cb' is non-NULL, it will
553  * be called with diagnostic and informational messages. The argument
554  * 'closure' is passed verbatim to any callback invoked.
555  */
556 notmuch_status_t
557 notmuch_database_compact (const char *path,
558                           const char *backup_path,
559                           notmuch_compact_status_cb_t status_cb,
560                           void *closure);
561
562 /**
563  * Like notmuch_database_compact, but take an open database as a
564  * parameter.
565  *
566  * @since libnnotmuch 5.4 (notmuch 0.32)
567  */
568 notmuch_status_t
569 notmuch_database_compact_db (notmuch_database_t *database,
570                              const char *backup_path,
571                              notmuch_compact_status_cb_t status_cb,
572                              void *closure);
573
574 /**
575  * Destroy the notmuch database, closing it if necessary and freeing
576  * all associated resources.
577  *
578  * Return value as in notmuch_database_close if the database was open;
579  * notmuch_database_destroy itself has no failure modes.
580  */
581 notmuch_status_t
582 notmuch_database_destroy (notmuch_database_t *database);
583
584 /**
585  * Return the database path of the given database.
586  *
587  * The return value is a string owned by notmuch so should not be
588  * modified nor freed by the caller.
589  */
590 const char *
591 notmuch_database_get_path (notmuch_database_t *database);
592
593 /**
594  * Return the database format version of the given database.
595  *
596  * @retval 0 on error
597  */
598 unsigned int
599 notmuch_database_get_version (notmuch_database_t *database);
600
601 /**
602  * Can the database be upgraded to a newer database version?
603  *
604  * If this function returns TRUE, then the caller may call
605  * notmuch_database_upgrade to upgrade the database.  If the caller
606  * does not upgrade an out-of-date database, then some functions may
607  * fail with NOTMUCH_STATUS_UPGRADE_REQUIRED.  This always returns
608  * FALSE for a read-only database because there's no way to upgrade a
609  * read-only database.
610  *
611  * Also returns FALSE if an error occurs accessing the database.
612  *
613  */
614 notmuch_bool_t
615 notmuch_database_needs_upgrade (notmuch_database_t *database);
616
617 /**
618  * Upgrade the current database to the latest supported version.
619  *
620  * This ensures that all current notmuch functionality will be
621  * available on the database.  After opening a database in read-write
622  * mode, it is recommended that clients check if an upgrade is needed
623  * (notmuch_database_needs_upgrade) and if so, upgrade with this
624  * function before making any modifications.  If
625  * notmuch_database_needs_upgrade returns FALSE, this will be a no-op.
626  *
627  * The optional progress_notify callback can be used by the caller to
628  * provide progress indication to the user. If non-NULL it will be
629  * called periodically with 'progress' as a floating-point value in
630  * the range of [0.0 .. 1.0] indicating the progress made so far in
631  * the upgrade process.  The argument 'closure' is passed verbatim to
632  * any callback invoked.
633  */
634 notmuch_status_t
635 notmuch_database_upgrade (notmuch_database_t *database,
636                           void (*progress_notify)(void *closure,
637                                                   double progress),
638                           void *closure);
639
640 /**
641  * Begin an atomic database operation.
642  *
643  * Any modifications performed between a successful begin and a
644  * notmuch_database_end_atomic will be applied to the database
645  * atomically.  Note that, unlike a typical database transaction, this
646  * only ensures atomicity, not durability; neither begin nor end
647  * necessarily flush modifications to disk.
648  *
649  * Atomic sections may be nested.  begin_atomic and end_atomic must
650  * always be called in pairs.
651  *
652  * Return value:
653  *
654  * NOTMUCH_STATUS_SUCCESS: Successfully entered atomic section.
655  *
656  * NOTMUCH_STATUS_XAPIAN_EXCEPTION: A Xapian exception occurred;
657  *      atomic section not entered.
658  */
659 notmuch_status_t
660 notmuch_database_begin_atomic (notmuch_database_t *notmuch);
661
662 /**
663  * Indicate the end of an atomic database operation.
664  *
665  * Return value:
666  *
667  * NOTMUCH_STATUS_SUCCESS: Successfully completed atomic section.
668  *
669  * NOTMUCH_STATUS_XAPIAN_EXCEPTION: A Xapian exception occurred;
670  *      atomic section not ended.
671  *
672  * NOTMUCH_STATUS_UNBALANCED_ATOMIC: The database is not currently in
673  *      an atomic section.
674  */
675 notmuch_status_t
676 notmuch_database_end_atomic (notmuch_database_t *notmuch);
677
678 /**
679  * Return the committed database revision and UUID.
680  *
681  * The database revision number increases monotonically with each
682  * commit to the database.  Hence, all messages and message changes
683  * committed to the database (that is, visible to readers) have a last
684  * modification revision <= the committed database revision.  Any
685  * messages committed in the future will be assigned a modification
686  * revision > the committed database revision.
687  *
688  * The UUID is a NUL-terminated opaque string that uniquely identifies
689  * this database.  Two revision numbers are only comparable if they
690  * have the same database UUID.
691  */
692 unsigned long
693 notmuch_database_get_revision (notmuch_database_t *notmuch,
694                                const char **uuid);
695
696 /**
697  * Retrieve a directory object from the database for 'path'.
698  *
699  * Here, 'path' should be a path relative to the path of 'database'
700  * (see notmuch_database_get_path), or else should be an absolute path
701  * with initial components that match the path of 'database'.
702  *
703  * If this directory object does not exist in the database, this
704  * returns NOTMUCH_STATUS_SUCCESS and sets *directory to NULL.
705  *
706  * Otherwise the returned directory object is owned by the database
707  * and as such, will only be valid until notmuch_database_destroy is
708  * called.
709  *
710  * Return value:
711  *
712  * NOTMUCH_STATUS_SUCCESS: Successfully retrieved directory.
713  *
714  * NOTMUCH_STATUS_NULL_POINTER: The given 'directory' argument is NULL.
715  *
716  * NOTMUCH_STATUS_XAPIAN_EXCEPTION: A Xapian exception occurred;
717  *      directory not retrieved.
718  *
719  * NOTMUCH_STATUS_UPGRADE_REQUIRED: The caller must upgrade the
720  *      database to use this function.
721  */
722 notmuch_status_t
723 notmuch_database_get_directory (notmuch_database_t *database,
724                                 const char *path,
725                                 notmuch_directory_t **directory);
726
727 /**
728  * Add a message file to a database, indexing it for retrieval by
729  * future searches.  If a message already exists with the same message
730  * ID as the specified file, their indexes will be merged, and this
731  * new filename will also be associated with the existing message.
732  *
733  * Here, 'filename' should be a path relative to the path of
734  * 'database' (see notmuch_database_get_path), or else should be an
735  * absolute filename with initial components that match the path of
736  * 'database'.
737  *
738  * The file should be a single mail message (not a multi-message mbox)
739  * that is expected to remain at its current location, (since the
740  * notmuch database will reference the filename, and will not copy the
741  * entire contents of the file.
742  *
743  * If another message with the same message ID already exists in the
744  * database, rather than creating a new message, this adds the search
745  * terms from the identified file to the existing message's index, and
746  * adds 'filename' to the list of filenames known for the message.
747  *
748  * The 'indexopts' parameter can be NULL (meaning, use the indexing
749  * defaults from the database), or can be an explicit choice of
750  * indexing options that should govern the indexing of this specific
751  * 'filename'.
752  *
753  * If 'message' is not NULL, then, on successful return
754  * (NOTMUCH_STATUS_SUCCESS or NOTMUCH_STATUS_DUPLICATE_MESSAGE_ID) '*message'
755  * will be initialized to a message object that can be used for things
756  * such as adding tags to the just-added message. The user should call
757  * notmuch_message_destroy when done with the message. On any failure
758  * '*message' will be set to NULL.
759  *
760  * Return value:
761  *
762  * NOTMUCH_STATUS_SUCCESS: Message successfully added to database.
763  *
764  * NOTMUCH_STATUS_XAPIAN_EXCEPTION: A Xapian exception occurred,
765  *      message not added.
766  *
767  * NOTMUCH_STATUS_DUPLICATE_MESSAGE_ID: Message has the same message
768  *      ID as another message already in the database. The new
769  *      filename was successfully added to the message in the database
770  *      (if not already present) and the existing message is returned.
771  *
772  * NOTMUCH_STATUS_FILE_ERROR: an error occurred trying to open the
773  *      file, (such as permission denied, or file not found,
774  *      etc.). Nothing added to the database.
775  *
776  * NOTMUCH_STATUS_FILE_NOT_EMAIL: the contents of filename don't look
777  *      like an email message. Nothing added to the database.
778  *
779  * NOTMUCH_STATUS_READ_ONLY_DATABASE: Database was opened in read-only
780  *      mode so no message can be added.
781  *
782  * NOTMUCH_STATUS_UPGRADE_REQUIRED: The caller must upgrade the
783  *      database to use this function.
784  *
785  * @since libnotmuch 5.1 (notmuch 0.26)
786  */
787 notmuch_status_t
788 notmuch_database_index_file (notmuch_database_t *database,
789                              const char *filename,
790                              notmuch_indexopts_t *indexopts,
791                              notmuch_message_t **message);
792
793 /**
794  * Deprecated alias for notmuch_database_index_file called with
795  * NULL indexopts.
796  *
797  * @deprecated Deprecated as of libnotmuch 5.1 (notmuch 0.26). Please
798  * use notmuch_database_index_file instead.
799  *
800  */
801 NOTMUCH_DEPRECATED (5, 1)
802 notmuch_status_t
803 notmuch_database_add_message (notmuch_database_t *database,
804                               const char *filename,
805                               notmuch_message_t **message);
806
807 /**
808  * Remove a message filename from the given notmuch database. If the
809  * message has no more filenames, remove the message.
810  *
811  * If the same message (as determined by the message ID) is still
812  * available via other filenames, then the message will persist in the
813  * database for those filenames. When the last filename is removed for
814  * a particular message, the database content for that message will be
815  * entirely removed.
816  *
817  * Return value:
818  *
819  * NOTMUCH_STATUS_SUCCESS: The last filename was removed and the
820  *      message was removed from the database.
821  *
822  * NOTMUCH_STATUS_XAPIAN_EXCEPTION: A Xapian exception occurred,
823  *      message not removed.
824  *
825  * NOTMUCH_STATUS_DUPLICATE_MESSAGE_ID: This filename was removed but
826  *      the message persists in the database with at least one other
827  *      filename.
828  *
829  * NOTMUCH_STATUS_READ_ONLY_DATABASE: Database was opened in read-only
830  *      mode so no message can be removed.
831  *
832  * NOTMUCH_STATUS_UPGRADE_REQUIRED: The caller must upgrade the
833  *      database to use this function.
834  */
835 notmuch_status_t
836 notmuch_database_remove_message (notmuch_database_t *database,
837                                  const char *filename);
838
839 /**
840  * Find a message with the given message_id.
841  *
842  * If a message with the given message_id is found then, on successful return
843  * (NOTMUCH_STATUS_SUCCESS) '*message' will be initialized to a message
844  * object.  The caller should call notmuch_message_destroy when done with the
845  * message.
846  *
847  * On any failure or when the message is not found, this function initializes
848  * '*message' to NULL. This means, when NOTMUCH_STATUS_SUCCESS is returned, the
849  * caller is supposed to check '*message' for NULL to find out whether the
850  * message with the given message_id was found.
851  *
852  * Return value:
853  *
854  * NOTMUCH_STATUS_SUCCESS: Successful return, check '*message'.
855  *
856  * NOTMUCH_STATUS_NULL_POINTER: The given 'message' argument is NULL
857  *
858  * NOTMUCH_STATUS_OUT_OF_MEMORY: Out of memory, creating message object
859  *
860  * NOTMUCH_STATUS_XAPIAN_EXCEPTION: A Xapian exception occurred
861  */
862 notmuch_status_t
863 notmuch_database_find_message (notmuch_database_t *database,
864                                const char *message_id,
865                                notmuch_message_t **message);
866
867 /**
868  * Find a message with the given filename.
869  *
870  * If the database contains a message with the given filename then, on
871  * successful return (NOTMUCH_STATUS_SUCCESS) '*message' will be initialized to
872  * a message object. The caller should call notmuch_message_destroy when done
873  * with the message.
874  *
875  * On any failure or when the message is not found, this function initializes
876  * '*message' to NULL. This means, when NOTMUCH_STATUS_SUCCESS is returned, the
877  * caller is supposed to check '*message' for NULL to find out whether the
878  * message with the given filename is found.
879  *
880  * Return value:
881  *
882  * NOTMUCH_STATUS_SUCCESS: Successful return, check '*message'
883  *
884  * NOTMUCH_STATUS_NULL_POINTER: The given 'message' argument is NULL
885  *
886  * NOTMUCH_STATUS_OUT_OF_MEMORY: Out of memory, creating the message object
887  *
888  * NOTMUCH_STATUS_XAPIAN_EXCEPTION: A Xapian exception occurred
889  *
890  * NOTMUCH_STATUS_UPGRADE_REQUIRED: The caller must upgrade the
891  *      database to use this function.
892  */
893 notmuch_status_t
894 notmuch_database_find_message_by_filename (notmuch_database_t *notmuch,
895                                            const char *filename,
896                                            notmuch_message_t **message);
897
898 /**
899  * Return a list of all tags found in the database.
900  *
901  * This function creates a list of all tags found in the database. The
902  * resulting list contains all tags from all messages found in the database.
903  *
904  * On error this function returns NULL.
905  */
906 notmuch_tags_t *
907 notmuch_database_get_all_tags (notmuch_database_t *db);
908
909 /**
910  * Reopen an open notmuch database.
911  *
912  * @param [in] db       open notmuch database
913  * @param [in] mode     mode (read only or read-write) for reopened database.
914  *
915  * @retval #NOTMUCH_STATUS_SUCCESS
916  * @retval #NOTMUCH_STATUS_ILLEGAL_ARGUMENT     The passed database was not open.
917  * @retval #NOTMUCH_STATUS_XAPIAN_EXCEPTION     A Xapian exception occured
918  */
919 notmuch_status_t
920 notmuch_database_reopen (notmuch_database_t *db, notmuch_database_mode_t mode);
921
922 /**
923  * Create a new query for 'database'.
924  *
925  * Here, 'database' should be an open database, (see
926  * notmuch_database_open and notmuch_database_create).
927  *
928  * For the query string, we'll document the syntax here more
929  * completely in the future, but it's likely to be a specialized
930  * version of the general Xapian query syntax:
931  *
932  * https://xapian.org/docs/queryparser.html
933  *
934  * As a special case, passing either a length-zero string, (that is ""),
935  * or a string consisting of a single asterisk (that is "*"), will
936  * result in a query that returns all messages in the database.
937  *
938  * See notmuch_query_set_sort for controlling the order of results.
939  * See notmuch_query_search_messages and notmuch_query_search_threads
940  * to actually execute the query.
941  *
942  * User should call notmuch_query_destroy when finished with this
943  * query.
944  *
945  * Will return NULL if insufficient memory is available.
946  */
947 notmuch_query_t *
948 notmuch_query_create (notmuch_database_t *database,
949                       const char *query_string);
950
951 /**
952  * Sort values for notmuch_query_set_sort.
953  */
954 typedef enum {
955     /**
956      * Oldest first.
957      */
958     NOTMUCH_SORT_OLDEST_FIRST,
959     /**
960      * Newest first.
961      */
962     NOTMUCH_SORT_NEWEST_FIRST,
963     /**
964      * Sort by message-id.
965      */
966     NOTMUCH_SORT_MESSAGE_ID,
967     /**
968      * Do not sort.
969      */
970     NOTMUCH_SORT_UNSORTED
971 } notmuch_sort_t;
972
973 /**
974  * Return the query_string of this query. See notmuch_query_create.
975  */
976 const char *
977 notmuch_query_get_query_string (const notmuch_query_t *query);
978
979 /**
980  * Return the notmuch database of this query. See notmuch_query_create.
981  */
982 notmuch_database_t *
983 notmuch_query_get_database (const notmuch_query_t *query);
984
985 /**
986  * Exclude values for notmuch_query_set_omit_excluded. The strange
987  * order is to maintain backward compatibility: the old FALSE/TRUE
988  * options correspond to the new
989  * NOTMUCH_EXCLUDE_FLAG/NOTMUCH_EXCLUDE_TRUE options.
990  */
991 typedef enum {
992     NOTMUCH_EXCLUDE_FLAG,
993     NOTMUCH_EXCLUDE_TRUE,
994     NOTMUCH_EXCLUDE_FALSE,
995     NOTMUCH_EXCLUDE_ALL
996 } notmuch_exclude_t;
997
998 /**
999  * Specify whether to omit excluded results or simply flag them.  By
1000  * default, this is set to TRUE.
1001  *
1002  * If set to TRUE or ALL, notmuch_query_search_messages will omit excluded
1003  * messages from the results, and notmuch_query_search_threads will omit
1004  * threads that match only in excluded messages.  If set to TRUE,
1005  * notmuch_query_search_threads will include all messages in threads that
1006  * match in at least one non-excluded message.  Otherwise, if set to ALL,
1007  * notmuch_query_search_threads will omit excluded messages from all threads.
1008  *
1009  * If set to FALSE or FLAG then both notmuch_query_search_messages and
1010  * notmuch_query_search_threads will return all matching
1011  * messages/threads regardless of exclude status. If set to FLAG then
1012  * the exclude flag will be set for any excluded message that is
1013  * returned by notmuch_query_search_messages, and the thread counts
1014  * for threads returned by notmuch_query_search_threads will be the
1015  * number of non-excluded messages/matches. Otherwise, if set to
1016  * FALSE, then the exclude status is completely ignored.
1017  *
1018  * The performance difference when calling
1019  * notmuch_query_search_messages should be relatively small (and both
1020  * should be very fast).  However, in some cases,
1021  * notmuch_query_search_threads is very much faster when omitting
1022  * excluded messages as it does not need to construct the threads that
1023  * only match in excluded messages.
1024  */
1025 void
1026 notmuch_query_set_omit_excluded (notmuch_query_t *query,
1027                                  notmuch_exclude_t omit_excluded);
1028
1029 /**
1030  * Specify the sorting desired for this query.
1031  */
1032 void
1033 notmuch_query_set_sort (notmuch_query_t *query, notmuch_sort_t sort);
1034
1035 /**
1036  * Return the sort specified for this query. See
1037  * notmuch_query_set_sort.
1038  */
1039 notmuch_sort_t
1040 notmuch_query_get_sort (const notmuch_query_t *query);
1041
1042 /**
1043  * Add a tag that will be excluded from the query results by default.
1044  * This exclusion will be ignored if this tag appears explicitly in
1045  * the query.
1046  *
1047  * @returns
1048  *
1049  * NOTMUCH_STATUS_SUCCESS: excluded was added successfully.
1050  *
1051  * NOTMUCH_STATUS_XAPIAN_EXCEPTION: a Xapian exception occurred.
1052  *      Most likely a problem lazily parsing the query string.
1053  *
1054  * NOTMUCH_STATUS_IGNORED: tag is explicitly present in the query, so
1055  *              not excluded.
1056  */
1057 notmuch_status_t
1058 notmuch_query_add_tag_exclude (notmuch_query_t *query, const char *tag);
1059
1060 /**
1061  * Execute a query for threads, returning a notmuch_threads_t object
1062  * which can be used to iterate over the results. The returned threads
1063  * object is owned by the query and as such, will only be valid until
1064  * notmuch_query_destroy.
1065  *
1066  * Typical usage might be:
1067  *
1068  *     notmuch_query_t *query;
1069  *     notmuch_threads_t *threads;
1070  *     notmuch_thread_t *thread;
1071  *     notmuch_status_t stat;
1072  *
1073  *     query = notmuch_query_create (database, query_string);
1074  *
1075  *     for (stat = notmuch_query_search_threads (query, &threads);
1076  *          stat == NOTMUCH_STATUS_SUCCESS &&
1077  *          notmuch_threads_valid (threads);
1078  *          notmuch_threads_move_to_next (threads))
1079  *     {
1080  *         thread = notmuch_threads_get (threads);
1081  *         ....
1082  *         notmuch_thread_destroy (thread);
1083  *     }
1084  *
1085  *     notmuch_query_destroy (query);
1086  *
1087  * Note: If you are finished with a thread before its containing
1088  * query, you can call notmuch_thread_destroy to clean up some memory
1089  * sooner (as in the above example). Otherwise, if your thread objects
1090  * are long-lived, then you don't need to call notmuch_thread_destroy
1091  * and all the memory will still be reclaimed when the query is
1092  * destroyed.
1093  *
1094  * Note that there's no explicit destructor needed for the
1095  * notmuch_threads_t object. (For consistency, we do provide a
1096  * notmuch_threads_destroy function, but there's no good reason
1097  * to call it if the query is about to be destroyed).
1098  *
1099  * @since libnotmuch 5.0 (notmuch 0.25)
1100  */
1101 notmuch_status_t
1102 notmuch_query_search_threads (notmuch_query_t *query,
1103                               notmuch_threads_t **out);
1104
1105 /**
1106  * Deprecated alias for notmuch_query_search_threads.
1107  *
1108  * @deprecated Deprecated as of libnotmuch 5 (notmuch 0.25). Please
1109  * use notmuch_query_search_threads instead.
1110  *
1111  */
1112 NOTMUCH_DEPRECATED (5, 0)
1113 notmuch_status_t
1114 notmuch_query_search_threads_st (notmuch_query_t *query, notmuch_threads_t **out);
1115
1116 /**
1117  * Execute a query for messages, returning a notmuch_messages_t object
1118  * which can be used to iterate over the results. The returned
1119  * messages object is owned by the query and as such, will only be
1120  * valid until notmuch_query_destroy.
1121  *
1122  * Typical usage might be:
1123  *
1124  *     notmuch_query_t *query;
1125  *     notmuch_messages_t *messages;
1126  *     notmuch_message_t *message;
1127  *
1128  *     query = notmuch_query_create (database, query_string);
1129  *
1130  *     for (messages = notmuch_query_search_messages (query);
1131  *          notmuch_messages_valid (messages);
1132  *          notmuch_messages_move_to_next (messages))
1133  *     {
1134  *         message = notmuch_messages_get (messages);
1135  *         ....
1136  *         notmuch_message_destroy (message);
1137  *     }
1138  *
1139  *     notmuch_query_destroy (query);
1140  *
1141  * Note: If you are finished with a message before its containing
1142  * query, you can call notmuch_message_destroy to clean up some memory
1143  * sooner (as in the above example). Otherwise, if your message
1144  * objects are long-lived, then you don't need to call
1145  * notmuch_message_destroy and all the memory will still be reclaimed
1146  * when the query is destroyed.
1147  *
1148  * Note that there's no explicit destructor needed for the
1149  * notmuch_messages_t object. (For consistency, we do provide a
1150  * notmuch_messages_destroy function, but there's no good
1151  * reason to call it if the query is about to be destroyed).
1152  *
1153  * If a Xapian exception occurs this function will return NULL.
1154  *
1155  * @since libnotmuch 5 (notmuch 0.25)
1156  */
1157 notmuch_status_t
1158 notmuch_query_search_messages (notmuch_query_t *query,
1159                                notmuch_messages_t **out);
1160 /**
1161  * Deprecated alias for notmuch_query_search_messages
1162  *
1163  * @deprecated Deprecated as of libnotmuch 5 (notmuch 0.25). Please use
1164  * notmuch_query_search_messages instead.
1165  *
1166  */
1167
1168 NOTMUCH_DEPRECATED (5, 0)
1169 notmuch_status_t
1170 notmuch_query_search_messages_st (notmuch_query_t *query,
1171                                   notmuch_messages_t **out);
1172
1173 /**
1174  * Destroy a notmuch_query_t along with any associated resources.
1175  *
1176  * This will in turn destroy any notmuch_threads_t and
1177  * notmuch_messages_t objects generated by this query, (and in
1178  * turn any notmuch_thread_t and notmuch_message_t objects generated
1179  * from those results, etc.), if such objects haven't already been
1180  * destroyed.
1181  */
1182 void
1183 notmuch_query_destroy (notmuch_query_t *query);
1184
1185 /**
1186  * Is the given 'threads' iterator pointing at a valid thread.
1187  *
1188  * When this function returns TRUE, notmuch_threads_get will return a
1189  * valid object. Whereas when this function returns FALSE,
1190  * notmuch_threads_get will return NULL.
1191  *
1192  * If passed a NULL pointer, this function returns FALSE
1193  *
1194  * See the documentation of notmuch_query_search_threads for example
1195  * code showing how to iterate over a notmuch_threads_t object.
1196  */
1197 notmuch_bool_t
1198 notmuch_threads_valid (notmuch_threads_t *threads);
1199
1200 /**
1201  * Get the current thread from 'threads' as a notmuch_thread_t.
1202  *
1203  * Note: The returned thread belongs to 'threads' and has a lifetime
1204  * identical to it (and the query to which it belongs).
1205  *
1206  * See the documentation of notmuch_query_search_threads for example
1207  * code showing how to iterate over a notmuch_threads_t object.
1208  *
1209  * If an out-of-memory situation occurs, this function will return
1210  * NULL.
1211  */
1212 notmuch_thread_t *
1213 notmuch_threads_get (notmuch_threads_t *threads);
1214
1215 /**
1216  * Move the 'threads' iterator to the next thread.
1217  *
1218  * If 'threads' is already pointing at the last thread then the
1219  * iterator will be moved to a point just beyond that last thread,
1220  * (where notmuch_threads_valid will return FALSE and
1221  * notmuch_threads_get will return NULL).
1222  *
1223  * See the documentation of notmuch_query_search_threads for example
1224  * code showing how to iterate over a notmuch_threads_t object.
1225  */
1226 void
1227 notmuch_threads_move_to_next (notmuch_threads_t *threads);
1228
1229 /**
1230  * Destroy a notmuch_threads_t object.
1231  *
1232  * It's not strictly necessary to call this function. All memory from
1233  * the notmuch_threads_t object will be reclaimed when the
1234  * containing query object is destroyed.
1235  */
1236 void
1237 notmuch_threads_destroy (notmuch_threads_t *threads);
1238
1239 /**
1240  * Return the number of messages matching a search.
1241  *
1242  * This function performs a search and returns the number of matching
1243  * messages.
1244  *
1245  * @returns
1246  *
1247  * NOTMUCH_STATUS_SUCCESS: query completed successfully.
1248  *
1249  * NOTMUCH_STATUS_XAPIAN_EXCEPTION: a Xapian exception occurred. The
1250  *      value of *count is not defined.
1251  *
1252  * @since libnotmuch 5 (notmuch 0.25)
1253  */
1254 notmuch_status_t
1255 notmuch_query_count_messages (notmuch_query_t *query, unsigned int *count);
1256
1257 /**
1258  * Deprecated alias for notmuch_query_count_messages
1259  *
1260  *
1261  * @deprecated Deprecated since libnotmuch 5.0 (notmuch 0.25). Please
1262  * use notmuch_query_count_messages instead.
1263  */
1264 NOTMUCH_DEPRECATED (5, 0)
1265 notmuch_status_t
1266 notmuch_query_count_messages_st (notmuch_query_t *query, unsigned int *count);
1267
1268 /**
1269  * Return the number of threads matching a search.
1270  *
1271  * This function performs a search and returns the number of unique thread IDs
1272  * in the matching messages. This is the same as number of threads matching a
1273  * search.
1274  *
1275  * Note that this is a significantly heavier operation than
1276  * notmuch_query_count_messages{_st}().
1277  *
1278  * @returns
1279  *
1280  * NOTMUCH_STATUS_OUT_OF_MEMORY: Memory allocation failed. The value
1281  *      of *count is not defined
1282  *
1283  * NOTMUCH_STATUS_SUCCESS: query completed successfully.
1284  *
1285  * NOTMUCH_STATUS_XAPIAN_EXCEPTION: a Xapian exception occurred. The
1286  *      value of *count is not defined.
1287  *
1288  * @since libnotmuch 5 (notmuch 0.25)
1289  */
1290 notmuch_status_t
1291 notmuch_query_count_threads (notmuch_query_t *query, unsigned *count);
1292
1293 /**
1294  * Deprecated alias for notmuch_query_count_threads
1295  *
1296  * @deprecated Deprecated as of libnotmuch 5.0 (notmuch 0.25). Please
1297  * use notmuch_query_count_threads_st instead.
1298  */
1299 NOTMUCH_DEPRECATED (5, 0)
1300 notmuch_status_t
1301 notmuch_query_count_threads_st (notmuch_query_t *query, unsigned *count);
1302
1303 /**
1304  * Get the thread ID of 'thread'.
1305  *
1306  * The returned string belongs to 'thread' and as such, should not be
1307  * modified by the caller and will only be valid for as long as the
1308  * thread is valid, (which is until notmuch_thread_destroy or until
1309  * the query from which it derived is destroyed).
1310  */
1311 const char *
1312 notmuch_thread_get_thread_id (notmuch_thread_t *thread);
1313
1314 /**
1315  * Get the total number of messages in 'thread'.
1316  *
1317  * This count consists of all messages in the database belonging to
1318  * this thread. Contrast with notmuch_thread_get_matched_messages() .
1319  */
1320 int
1321 notmuch_thread_get_total_messages (notmuch_thread_t *thread);
1322
1323 /**
1324  * Get the total number of files in 'thread'.
1325  *
1326  * This sums notmuch_message_count_files over all messages in the
1327  * thread
1328  * @returns Non-negative integer
1329  * @since libnotmuch 5.0 (notmuch 0.25)
1330  */
1331
1332 int
1333 notmuch_thread_get_total_files (notmuch_thread_t *thread);
1334
1335 /**
1336  * Get a notmuch_messages_t iterator for the top-level messages in
1337  * 'thread' in oldest-first order.
1338  *
1339  * This iterator will not necessarily iterate over all of the messages
1340  * in the thread. It will only iterate over the messages in the thread
1341  * which are not replies to other messages in the thread.
1342  *
1343  * The returned list will be destroyed when the thread is destroyed.
1344  */
1345 notmuch_messages_t *
1346 notmuch_thread_get_toplevel_messages (notmuch_thread_t *thread);
1347
1348 /**
1349  * Get a notmuch_thread_t iterator for all messages in 'thread' in
1350  * oldest-first order.
1351  *
1352  * The returned list will be destroyed when the thread is destroyed.
1353  */
1354 notmuch_messages_t *
1355 notmuch_thread_get_messages (notmuch_thread_t *thread);
1356
1357 /**
1358  * Get the number of messages in 'thread' that matched the search.
1359  *
1360  * This count includes only the messages in this thread that were
1361  * matched by the search from which the thread was created and were
1362  * not excluded by any exclude tags passed in with the query (see
1363  * notmuch_query_add_tag_exclude). Contrast with
1364  * notmuch_thread_get_total_messages() .
1365  */
1366 int
1367 notmuch_thread_get_matched_messages (notmuch_thread_t *thread);
1368
1369 /**
1370  * Get the authors of 'thread' as a UTF-8 string.
1371  *
1372  * The returned string is a comma-separated list of the names of the
1373  * authors of mail messages in the query results that belong to this
1374  * thread.
1375  *
1376  * The string contains authors of messages matching the query first, then
1377  * non-matched authors (with the two groups separated by '|'). Within
1378  * each group, authors are ordered by date.
1379  *
1380  * The returned string belongs to 'thread' and as such, should not be
1381  * modified by the caller and will only be valid for as long as the
1382  * thread is valid, (which is until notmuch_thread_destroy or until
1383  * the query from which it derived is destroyed).
1384  */
1385 const char *
1386 notmuch_thread_get_authors (notmuch_thread_t *thread);
1387
1388 /**
1389  * Get the subject of 'thread' as a UTF-8 string.
1390  *
1391  * The subject is taken from the first message (according to the query
1392  * order---see notmuch_query_set_sort) in the query results that
1393  * belongs to this thread.
1394  *
1395  * The returned string belongs to 'thread' and as such, should not be
1396  * modified by the caller and will only be valid for as long as the
1397  * thread is valid, (which is until notmuch_thread_destroy or until
1398  * the query from which it derived is destroyed).
1399  */
1400 const char *
1401 notmuch_thread_get_subject (notmuch_thread_t *thread);
1402
1403 /**
1404  * Get the date of the oldest message in 'thread' as a time_t value.
1405  */
1406 time_t
1407 notmuch_thread_get_oldest_date (notmuch_thread_t *thread);
1408
1409 /**
1410  * Get the date of the newest message in 'thread' as a time_t value.
1411  */
1412 time_t
1413 notmuch_thread_get_newest_date (notmuch_thread_t *thread);
1414
1415 /**
1416  * Get the tags for 'thread', returning a notmuch_tags_t object which
1417  * can be used to iterate over all tags.
1418  *
1419  * Note: In the Notmuch database, tags are stored on individual
1420  * messages, not on threads. So the tags returned here will be all
1421  * tags of the messages which matched the search and which belong to
1422  * this thread.
1423  *
1424  * The tags object is owned by the thread and as such, will only be
1425  * valid for as long as the thread is valid, (for example, until
1426  * notmuch_thread_destroy or until the query from which it derived is
1427  * destroyed).
1428  *
1429  * Typical usage might be:
1430  *
1431  *     notmuch_thread_t *thread;
1432  *     notmuch_tags_t *tags;
1433  *     const char *tag;
1434  *
1435  *     thread = notmuch_threads_get (threads);
1436  *
1437  *     for (tags = notmuch_thread_get_tags (thread);
1438  *          notmuch_tags_valid (tags);
1439  *          notmuch_tags_move_to_next (tags))
1440  *     {
1441  *         tag = notmuch_tags_get (tags);
1442  *         ....
1443  *     }
1444  *
1445  *     notmuch_thread_destroy (thread);
1446  *
1447  * Note that there's no explicit destructor needed for the
1448  * notmuch_tags_t object. (For consistency, we do provide a
1449  * notmuch_tags_destroy function, but there's no good reason to call
1450  * it if the message is about to be destroyed).
1451  */
1452 notmuch_tags_t *
1453 notmuch_thread_get_tags (notmuch_thread_t *thread);
1454
1455 /**
1456  * Destroy a notmuch_thread_t object.
1457  */
1458 void
1459 notmuch_thread_destroy (notmuch_thread_t *thread);
1460
1461 /**
1462  * Is the given 'messages' iterator pointing at a valid message.
1463  *
1464  * When this function returns TRUE, notmuch_messages_get will return a
1465  * valid object. Whereas when this function returns FALSE,
1466  * notmuch_messages_get will return NULL.
1467  *
1468  * See the documentation of notmuch_query_search_messages for example
1469  * code showing how to iterate over a notmuch_messages_t object.
1470  */
1471 notmuch_bool_t
1472 notmuch_messages_valid (notmuch_messages_t *messages);
1473
1474 /**
1475  * Get the current message from 'messages' as a notmuch_message_t.
1476  *
1477  * Note: The returned message belongs to 'messages' and has a lifetime
1478  * identical to it (and the query to which it belongs).
1479  *
1480  * See the documentation of notmuch_query_search_messages for example
1481  * code showing how to iterate over a notmuch_messages_t object.
1482  *
1483  * If an out-of-memory situation occurs, this function will return
1484  * NULL.
1485  */
1486 notmuch_message_t *
1487 notmuch_messages_get (notmuch_messages_t *messages);
1488
1489 /**
1490  * Move the 'messages' iterator to the next message.
1491  *
1492  * If 'messages' is already pointing at the last message then the
1493  * iterator will be moved to a point just beyond that last message,
1494  * (where notmuch_messages_valid will return FALSE and
1495  * notmuch_messages_get will return NULL).
1496  *
1497  * See the documentation of notmuch_query_search_messages for example
1498  * code showing how to iterate over a notmuch_messages_t object.
1499  */
1500 void
1501 notmuch_messages_move_to_next (notmuch_messages_t *messages);
1502
1503 /**
1504  * Destroy a notmuch_messages_t object.
1505  *
1506  * It's not strictly necessary to call this function. All memory from
1507  * the notmuch_messages_t object will be reclaimed when the containing
1508  * query object is destroyed.
1509  */
1510 void
1511 notmuch_messages_destroy (notmuch_messages_t *messages);
1512
1513 /**
1514  * Return a list of tags from all messages.
1515  *
1516  * The resulting list is guaranteed not to contain duplicated tags.
1517  *
1518  * WARNING: You can no longer iterate over messages after calling this
1519  * function, because the iterator will point at the end of the list.
1520  * We do not have a function to reset the iterator yet and the only
1521  * way how you can iterate over the list again is to recreate the
1522  * message list.
1523  *
1524  * The function returns NULL on error.
1525  */
1526 notmuch_tags_t *
1527 notmuch_messages_collect_tags (notmuch_messages_t *messages);
1528
1529 /**
1530  * Get the database associated with this message.
1531  *
1532  * @since libnotmuch 5.2 (notmuch 0.27)
1533  */
1534 notmuch_database_t *
1535 notmuch_message_get_database (const notmuch_message_t *message);
1536
1537 /**
1538  * Get the message ID of 'message'.
1539  *
1540  * The returned string belongs to 'message' and as such, should not be
1541  * modified by the caller and will only be valid for as long as the
1542  * message is valid, (which is until the query from which it derived
1543  * is destroyed).
1544  *
1545  * This function will return NULL if triggers an unhandled Xapian
1546  * exception.
1547  */
1548 const char *
1549 notmuch_message_get_message_id (notmuch_message_t *message);
1550
1551 /**
1552  * Get the thread ID of 'message'.
1553  *
1554  * The returned string belongs to 'message' and as such, should not be
1555  * modified by the caller and will only be valid for as long as the
1556  * message is valid, (for example, until the user calls
1557  * notmuch_message_destroy on 'message' or until a query from which it
1558  * derived is destroyed).
1559  *
1560  * This function will return NULL if triggers an unhandled Xapian
1561  * exception.
1562  */
1563 const char *
1564 notmuch_message_get_thread_id (notmuch_message_t *message);
1565
1566 /**
1567  * Get a notmuch_messages_t iterator for all of the replies to
1568  * 'message'.
1569  *
1570  * Note: This call only makes sense if 'message' was ultimately
1571  * obtained from a notmuch_thread_t object, (such as by coming
1572  * directly from the result of calling notmuch_thread_get_
1573  * toplevel_messages or by any number of subsequent
1574  * calls to notmuch_message_get_replies).
1575  *
1576  * If 'message' was obtained through some non-thread means, (such as
1577  * by a call to notmuch_query_search_messages), then this function
1578  * will return NULL.
1579  *
1580  * If there are no replies to 'message', this function will return
1581  * NULL. (Note that notmuch_messages_valid will accept that NULL
1582  * value as legitimate, and simply return FALSE for it.)
1583  *
1584  * This function also returns NULL if it triggers a Xapian exception.
1585  *
1586  * The returned list will be destroyed when the thread is
1587  * destroyed.
1588  */
1589 notmuch_messages_t *
1590 notmuch_message_get_replies (notmuch_message_t *message);
1591
1592 /**
1593  * Get the total number of files associated with a message.
1594  * @returns Non-negative integer for file count.
1595  * @returns Negative integer for error.
1596  * @since libnotmuch 5.0 (notmuch 0.25)
1597  */
1598 int
1599 notmuch_message_count_files (notmuch_message_t *message);
1600
1601 /**
1602  * Get a filename for the email corresponding to 'message'.
1603  *
1604  * The returned filename is an absolute filename, (the initial
1605  * component will match notmuch_database_get_path() ).
1606  *
1607  * The returned string belongs to the message so should not be
1608  * modified or freed by the caller (nor should it be referenced after
1609  * the message is destroyed).
1610  *
1611  * Note: If this message corresponds to multiple files in the mail
1612  * store, (that is, multiple files contain identical message IDs),
1613  * this function will arbitrarily return a single one of those
1614  * filenames. See notmuch_message_get_filenames for returning the
1615  * complete list of filenames.
1616  *
1617  * This function returns NULL if it triggers a Xapian exception.
1618  */
1619 const char *
1620 notmuch_message_get_filename (notmuch_message_t *message);
1621
1622 /**
1623  * Get all filenames for the email corresponding to 'message'.
1624  *
1625  * Returns a notmuch_filenames_t iterator listing all the filenames
1626  * associated with 'message'. These files may not have identical
1627  * content, but each will have the identical Message-ID.
1628  *
1629  * Each filename in the iterator is an absolute filename, (the initial
1630  * component will match notmuch_database_get_path() ).
1631  *
1632  * This function returns NULL if it triggers a Xapian exception.
1633  */
1634 notmuch_filenames_t *
1635 notmuch_message_get_filenames (notmuch_message_t *message);
1636
1637 /**
1638  * Re-index the e-mail corresponding to 'message' using the supplied index options
1639  *
1640  * Returns the status of the re-index operation.  (see the return
1641  * codes documented in notmuch_database_index_file)
1642  *
1643  * After reindexing, the user should discard the message object passed
1644  * in here by calling notmuch_message_destroy, since it refers to the
1645  * original message, not to the reindexed message.
1646  */
1647 notmuch_status_t
1648 notmuch_message_reindex (notmuch_message_t *message,
1649                          notmuch_indexopts_t *indexopts);
1650
1651 /**
1652  * Message flags.
1653  */
1654 typedef enum _notmuch_message_flag {
1655     NOTMUCH_MESSAGE_FLAG_MATCH,
1656     NOTMUCH_MESSAGE_FLAG_EXCLUDED,
1657
1658     /* This message is a "ghost message", meaning it has no filenames
1659      * or content, but we know it exists because it was referenced by
1660      * some other message.  A ghost message has only a message ID and
1661      * thread ID.
1662      */
1663     NOTMUCH_MESSAGE_FLAG_GHOST,
1664 } notmuch_message_flag_t;
1665
1666 /**
1667  * Get a value of a flag for the email corresponding to 'message'.
1668  *
1669  * returns FALSE in case of errors.
1670  *
1671  * @deprecated Deprecated as of libnotmuch 5.3 (notmuch 0.31). Please
1672  * use notmuch_message_get_flag_st instead.
1673  */
1674 NOTMUCH_DEPRECATED (5, 3)
1675 notmuch_bool_t
1676 notmuch_message_get_flag (notmuch_message_t *message,
1677                           notmuch_message_flag_t flag);
1678
1679 /**
1680  * Get a value of a flag for the email corresponding to 'message'.
1681  *
1682  * @param message a message object
1683  * @param flag flag to check
1684  * @param is_set pointer to boolean to store flag value.
1685  *
1686  * @retval #NOTMUCH_STATUS_SUCCESS
1687  * @retval #NOTMUCH_STATUS_NULL_POINTER is_set is NULL
1688  * @retval #NOTMUCH_STATUS_XAPIAN_EXCEPTION Accessing the database
1689  * triggered an exception.
1690  *
1691  * @since libnotmuch 5.3 (notmuch 0.31)
1692  */
1693 notmuch_status_t
1694 notmuch_message_get_flag_st (notmuch_message_t *message,
1695                              notmuch_message_flag_t flag,
1696                              notmuch_bool_t *is_set);
1697
1698 /**
1699  * Set a value of a flag for the email corresponding to 'message'.
1700  */
1701 void
1702 notmuch_message_set_flag (notmuch_message_t *message,
1703                           notmuch_message_flag_t flag, notmuch_bool_t value);
1704
1705 /**
1706  * Get the date of 'message' as a time_t value.
1707  *
1708  * For the original textual representation of the Date header from the
1709  * message call notmuch_message_get_header() with a header value of
1710  * "date".
1711  *
1712  * Returns 0 in case of error.
1713  */
1714 time_t
1715 notmuch_message_get_date (notmuch_message_t *message);
1716
1717 /**
1718  * Get the value of the specified header from 'message' as a UTF-8 string.
1719  *
1720  * Common headers are stored in the database when the message is
1721  * indexed and will be returned from the database.  Other headers will
1722  * be read from the actual message file.
1723  *
1724  * The header name is case insensitive.
1725  *
1726  * The returned string belongs to the message so should not be
1727  * modified or freed by the caller (nor should it be referenced after
1728  * the message is destroyed).
1729  *
1730  * Returns an empty string ("") if the message does not contain a
1731  * header line matching 'header'. Returns NULL if any error occurs.
1732  */
1733 const char *
1734 notmuch_message_get_header (notmuch_message_t *message, const char *header);
1735
1736 /**
1737  * Get the tags for 'message', returning a notmuch_tags_t object which
1738  * can be used to iterate over all tags.
1739  *
1740  * The tags object is owned by the message and as such, will only be
1741  * valid for as long as the message is valid, (which is until the
1742  * query from which it derived is destroyed).
1743  *
1744  * Typical usage might be:
1745  *
1746  *     notmuch_message_t *message;
1747  *     notmuch_tags_t *tags;
1748  *     const char *tag;
1749  *
1750  *     message = notmuch_database_find_message (database, message_id);
1751  *
1752  *     for (tags = notmuch_message_get_tags (message);
1753  *          notmuch_tags_valid (tags);
1754  *          notmuch_tags_move_to_next (tags))
1755  *     {
1756  *         tag = notmuch_tags_get (tags);
1757  *         ....
1758  *     }
1759  *
1760  *     notmuch_message_destroy (message);
1761  *
1762  * Note that there's no explicit destructor needed for the
1763  * notmuch_tags_t object. (For consistency, we do provide a
1764  * notmuch_tags_destroy function, but there's no good reason to call
1765  * it if the message is about to be destroyed).
1766  */
1767 notmuch_tags_t *
1768 notmuch_message_get_tags (notmuch_message_t *message);
1769
1770 /**
1771  * The longest possible tag value.
1772  */
1773 #define NOTMUCH_TAG_MAX 200
1774
1775 /**
1776  * Add a tag to the given message.
1777  *
1778  * Return value:
1779  *
1780  * NOTMUCH_STATUS_SUCCESS: Tag successfully added to message
1781  *
1782  * NOTMUCH_STATUS_NULL_POINTER: The 'tag' argument is NULL
1783  *
1784  * NOTMUCH_STATUS_TAG_TOO_LONG: The length of 'tag' is too long
1785  *      (exceeds NOTMUCH_TAG_MAX)
1786  *
1787  * NOTMUCH_STATUS_READ_ONLY_DATABASE: Database was opened in read-only
1788  *      mode so message cannot be modified.
1789  */
1790 notmuch_status_t
1791 notmuch_message_add_tag (notmuch_message_t *message, const char *tag);
1792
1793 /**
1794  * Remove a tag from the given message.
1795  *
1796  * Return value:
1797  *
1798  * NOTMUCH_STATUS_SUCCESS: Tag successfully removed from message
1799  *
1800  * NOTMUCH_STATUS_NULL_POINTER: The 'tag' argument is NULL
1801  *
1802  * NOTMUCH_STATUS_TAG_TOO_LONG: The length of 'tag' is too long
1803  *      (exceeds NOTMUCH_TAG_MAX)
1804  *
1805  * NOTMUCH_STATUS_READ_ONLY_DATABASE: Database was opened in read-only
1806  *      mode so message cannot be modified.
1807  */
1808 notmuch_status_t
1809 notmuch_message_remove_tag (notmuch_message_t *message, const char *tag);
1810
1811 /**
1812  * Remove all tags from the given message.
1813  *
1814  * See notmuch_message_freeze for an example showing how to safely
1815  * replace tag values.
1816  *
1817  * @retval #NOTMUCH_STATUS_READ_ONLY_DATABASE: Database was opened in
1818  *      read-only mode so message cannot be modified.
1819  * @retval #NOTMUCH_STATUS_XAPIAN_EXCEPTION: an exception was thrown
1820  *      accessing the database.
1821  */
1822 notmuch_status_t
1823 notmuch_message_remove_all_tags (notmuch_message_t *message);
1824
1825 /**
1826  * Add/remove tags according to maildir flags in the message filename(s).
1827  *
1828  * This function examines the filenames of 'message' for maildir
1829  * flags, and adds or removes tags on 'message' as follows when these
1830  * flags are present:
1831  *
1832  *      Flag    Action if present
1833  *      ----    -----------------
1834  *      'D'     Adds the "draft" tag to the message
1835  *      'F'     Adds the "flagged" tag to the message
1836  *      'P'     Adds the "passed" tag to the message
1837  *      'R'     Adds the "replied" tag to the message
1838  *      'S'     Removes the "unread" tag from the message
1839  *
1840  * For each flag that is not present, the opposite action (add/remove)
1841  * is performed for the corresponding tags.
1842  *
1843  * Flags are identified as trailing components of the filename after a
1844  * sequence of ":2,".
1845  *
1846  * If there are multiple filenames associated with this message, the
1847  * flag is considered present if it appears in one or more
1848  * filenames. (That is, the flags from the multiple filenames are
1849  * combined with the logical OR operator.)
1850  *
1851  * A client can ensure that notmuch database tags remain synchronized
1852  * with maildir flags by calling this function after each call to
1853  * notmuch_database_index_file. See also
1854  * notmuch_message_tags_to_maildir_flags for synchronizing tag changes
1855  * back to maildir flags.
1856  */
1857 notmuch_status_t
1858 notmuch_message_maildir_flags_to_tags (notmuch_message_t *message);
1859
1860 /**
1861  * return TRUE if any filename of 'message' has maildir flag 'flag',
1862  * FALSE otherwise.
1863  *
1864  * Deprecated wrapper for notmuch_message_has_maildir_flag_st
1865  *
1866  * @returns FALSE in case of error
1867  * @deprecated libnotmuch 5.3 (notmuch 0.31)
1868  */
1869 NOTMUCH_DEPRECATED (5, 3)
1870 notmuch_bool_t
1871 notmuch_message_has_maildir_flag (notmuch_message_t *message, char flag);
1872
1873 /**
1874  * check message for maildir flag
1875  *
1876  * @param [in,out]      message message to check
1877  * @param [in] flag     flag to check for
1878  * @param [out] is_set  pointer to boolean
1879  *
1880  * @retval #NOTMUCH_STATUS_SUCCESS
1881  * @retval #NOTMUCH_STATUS_NULL_POINTER is_set is NULL
1882  * @retval #NOTMUCH_STATUS_XAPIAN_EXCEPTION Accessing the database
1883  * triggered an exception.
1884  */
1885 notmuch_status_t
1886 notmuch_message_has_maildir_flag_st (notmuch_message_t *message,
1887                                      char flag,
1888                                      notmuch_bool_t *is_set);
1889
1890 /**
1891  * Rename message filename(s) to encode tags as maildir flags.
1892  *
1893  * Specifically, for each filename corresponding to this message:
1894  *
1895  * If the filename is not in a maildir directory, do nothing.  (A
1896  * maildir directory is determined as a directory named "new" or
1897  * "cur".) Similarly, if the filename has invalid maildir info,
1898  * (repeated or outof-ASCII-order flag characters after ":2,"), then
1899  * do nothing.
1900  *
1901  * If the filename is in a maildir directory, rename the file so that
1902  * its filename ends with the sequence ":2," followed by zero or more
1903  * of the following single-character flags (in ASCII order):
1904  *
1905  *   * flag 'D' iff the message has the "draft" tag
1906  *   * flag 'F' iff the message has the "flagged" tag
1907  *   * flag 'P' iff the message has the "passed" tag
1908  *   * flag 'R' iff the message has the "replied" tag
1909  *   * flag 'S' iff the message does not have the "unread" tag
1910  *
1911  * Any existing flags unmentioned in the list above will be preserved
1912  * in the renaming.
1913  *
1914  * Also, if this filename is in a directory named "new", rename it to
1915  * be within the neighboring directory named "cur".
1916  *
1917  * A client can ensure that maildir filename flags remain synchronized
1918  * with notmuch database tags by calling this function after changing
1919  * tags, (after calls to notmuch_message_add_tag,
1920  * notmuch_message_remove_tag, or notmuch_message_freeze/
1921  * notmuch_message_thaw). See also notmuch_message_maildir_flags_to_tags
1922  * for synchronizing maildir flag changes back to tags.
1923  */
1924 notmuch_status_t
1925 notmuch_message_tags_to_maildir_flags (notmuch_message_t *message);
1926
1927 /**
1928  * Freeze the current state of 'message' within the database.
1929  *
1930  * This means that changes to the message state, (via
1931  * notmuch_message_add_tag, notmuch_message_remove_tag, and
1932  * notmuch_message_remove_all_tags), will not be committed to the
1933  * database until the message is thawed with notmuch_message_thaw.
1934  *
1935  * Multiple calls to freeze/thaw are valid and these calls will
1936  * "stack". That is there must be as many calls to thaw as to freeze
1937  * before a message is actually thawed.
1938  *
1939  * The ability to do freeze/thaw allows for safe transactions to
1940  * change tag values. For example, explicitly setting a message to
1941  * have a given set of tags might look like this:
1942  *
1943  *    notmuch_message_freeze (message);
1944  *
1945  *    notmuch_message_remove_all_tags (message);
1946  *
1947  *    for (i = 0; i < NUM_TAGS; i++)
1948  *        notmuch_message_add_tag (message, tags[i]);
1949  *
1950  *    notmuch_message_thaw (message);
1951  *
1952  * With freeze/thaw used like this, the message in the database is
1953  * guaranteed to have either the full set of original tag values, or
1954  * the full set of new tag values, but nothing in between.
1955  *
1956  * Imagine the example above without freeze/thaw and the operation
1957  * somehow getting interrupted. This could result in the message being
1958  * left with no tags if the interruption happened after
1959  * notmuch_message_remove_all_tags but before notmuch_message_add_tag.
1960  *
1961  * Return value:
1962  *
1963  * NOTMUCH_STATUS_SUCCESS: Message successfully frozen.
1964  *
1965  * NOTMUCH_STATUS_READ_ONLY_DATABASE: Database was opened in read-only
1966  *      mode so message cannot be modified.
1967  */
1968 notmuch_status_t
1969 notmuch_message_freeze (notmuch_message_t *message);
1970
1971 /**
1972  * Thaw the current 'message', synchronizing any changes that may have
1973  * occurred while 'message' was frozen into the notmuch database.
1974  *
1975  * See notmuch_message_freeze for an example of how to use this
1976  * function to safely provide tag changes.
1977  *
1978  * Multiple calls to freeze/thaw are valid and these calls with
1979  * "stack". That is there must be as many calls to thaw as to freeze
1980  * before a message is actually thawed.
1981  *
1982  * Return value:
1983  *
1984  * NOTMUCH_STATUS_SUCCESS: Message successfully thawed, (or at least
1985  *      its frozen count has successfully been reduced by 1).
1986  *
1987  * NOTMUCH_STATUS_UNBALANCED_FREEZE_THAW: An attempt was made to thaw
1988  *      an unfrozen message. That is, there have been an unbalanced
1989  *      number of calls to notmuch_message_freeze and
1990  *      notmuch_message_thaw.
1991  */
1992 notmuch_status_t
1993 notmuch_message_thaw (notmuch_message_t *message);
1994
1995 /**
1996  * Destroy a notmuch_message_t object.
1997  *
1998  * It can be useful to call this function in the case of a single
1999  * query object with many messages in the result, (such as iterating
2000  * over the entire database). Otherwise, it's fine to never call this
2001  * function and there will still be no memory leaks. (The memory from
2002  * the messages get reclaimed when the containing query is destroyed.)
2003  */
2004 void
2005 notmuch_message_destroy (notmuch_message_t *message);
2006
2007 /**
2008  * @name Message Properties
2009  *
2010  * This interface provides the ability to attach arbitrary (key,value)
2011  * string pairs to a message, to remove such pairs, and to iterate
2012  * over them.  The caller should take some care as to what keys they
2013  * add or delete values for, as other subsystems or extensions may
2014  * depend on these properties.
2015  *
2016  * Please see notmuch-properties(7) for more details about specific
2017  * properties and conventions around their use.
2018  *
2019  */
2020 /**@{*/
2021 /**
2022  * Retrieve the value for a single property key
2023  *
2024  * *value* is set to a string owned by the message or NULL if there is
2025  * no such key. In the case of multiple values for the given key, the
2026  * first one is retrieved.
2027  *
2028  * @returns
2029  * - NOTMUCH_STATUS_NULL_POINTER: *value* may not be NULL.
2030  * - NOTMUCH_STATUS_SUCCESS: No error occurred.
2031  * @since libnotmuch 4.4 (notmuch 0.23)
2032  */
2033 notmuch_status_t
2034 notmuch_message_get_property (notmuch_message_t *message, const char *key, const char **value);
2035
2036 /**
2037  * Add a (key,value) pair to a message
2038  *
2039  * @returns
2040  * - NOTMUCH_STATUS_ILLEGAL_ARGUMENT: *key* may not contain an '=' character.
2041  * - NOTMUCH_STATUS_NULL_POINTER: Neither *key* nor *value* may be NULL.
2042  * - NOTMUCH_STATUS_SUCCESS: No error occurred.
2043  * @since libnotmuch 4.4 (notmuch 0.23)
2044  */
2045 notmuch_status_t
2046 notmuch_message_add_property (notmuch_message_t *message, const char *key, const char *value);
2047
2048 /**
2049  * Remove a (key,value) pair from a message.
2050  *
2051  * It is not an error to remove a non-existent (key,value) pair
2052  *
2053  * @returns
2054  * - NOTMUCH_STATUS_ILLEGAL_ARGUMENT: *key* may not contain an '=' character.
2055  * - NOTMUCH_STATUS_NULL_POINTER: Neither *key* nor *value* may be NULL.
2056  * - NOTMUCH_STATUS_SUCCESS: No error occurred.
2057  * @since libnotmuch 4.4 (notmuch 0.23)
2058  */
2059 notmuch_status_t
2060 notmuch_message_remove_property (notmuch_message_t *message, const char *key, const char *value);
2061
2062 /**
2063  * Remove all (key,value) pairs from the given message.
2064  *
2065  * @param[in,out] message  message to operate on.
2066  * @param[in]     key      key to delete properties for. If NULL, delete
2067  *                         properties for all keys
2068  * @returns
2069  * - NOTMUCH_STATUS_READ_ONLY_DATABASE: Database was opened in
2070  *   read-only mode so message cannot be modified.
2071  * - NOTMUCH_STATUS_SUCCESS: No error occurred.
2072  *
2073  * @since libnotmuch 4.4 (notmuch 0.23)
2074  */
2075 notmuch_status_t
2076 notmuch_message_remove_all_properties (notmuch_message_t *message, const char *key);
2077
2078 /**
2079  * Remove all (prefix*,value) pairs from the given message
2080  *
2081  * @param[in,out] message  message to operate on.
2082  * @param[in]     prefix   delete properties with keys that start with prefix.
2083  *                         If NULL, delete all properties
2084  * @returns
2085  * - NOTMUCH_STATUS_READ_ONLY_DATABASE: Database was opened in
2086  *   read-only mode so message cannot be modified.
2087  * - NOTMUCH_STATUS_SUCCESS: No error occurred.
2088  *
2089  * @since libnotmuch 5.1 (notmuch 0.26)
2090  */
2091 notmuch_status_t
2092 notmuch_message_remove_all_properties_with_prefix (notmuch_message_t *message, const char *prefix);
2093
2094 /**
2095  * Opaque message property iterator
2096  */
2097 typedef struct _notmuch_string_map_iterator notmuch_message_properties_t;
2098
2099 /**
2100  * Get the properties for *message*, returning a
2101  * notmuch_message_properties_t object which can be used to iterate
2102  * over all properties.
2103  *
2104  * The notmuch_message_properties_t object is owned by the message and
2105  * as such, will only be valid for as long as the message is valid,
2106  * (which is until the query from which it derived is destroyed).
2107  *
2108  * @param[in] message  The message to examine
2109  * @param[in] key      key or key prefix
2110  * @param[in] exact    if TRUE, require exact match with key. Otherwise
2111  *                     treat as prefix.
2112  *
2113  * Typical usage might be:
2114  *
2115  *     notmuch_message_properties_t *list;
2116  *
2117  *     for (list = notmuch_message_get_properties (message, "testkey1", TRUE);
2118  *          notmuch_message_properties_valid (list); notmuch_message_properties_move_to_next (list)) {
2119  *        printf("%s\n", notmuch_message_properties_value(list));
2120  *     }
2121  *
2122  *     notmuch_message_properties_destroy (list);
2123  *
2124  * Note that there's no explicit destructor needed for the
2125  * notmuch_message_properties_t object. (For consistency, we do
2126  * provide a notmuch_message_properities_destroy function, but there's
2127  * no good reason to call it if the message is about to be destroyed).
2128  *
2129  * @since libnotmuch 4.4 (notmuch 0.23)
2130  */
2131 notmuch_message_properties_t *
2132 notmuch_message_get_properties (notmuch_message_t *message, const char *key, notmuch_bool_t exact);
2133
2134 /**
2135  * Return the number of properties named "key" belonging to the specific message.
2136  *
2137  * @param[in] message  The message to examine
2138  * @param[in] key      key to count
2139  * @param[out] count   The number of matching properties associated with this message.
2140  *
2141  * @returns
2142  *
2143  * NOTMUCH_STATUS_SUCCESS: successful count, possibly some other error.
2144  *
2145  * @since libnotmuch 5.2 (notmuch 0.27)
2146  */
2147 notmuch_status_t
2148 notmuch_message_count_properties (notmuch_message_t *message, const char *key, unsigned int *count);
2149
2150 /**
2151  * Is the given *properties* iterator pointing at a valid (key,value)
2152  * pair.
2153  *
2154  * When this function returns TRUE,
2155  * notmuch_message_properties_{key,value} will return a valid string,
2156  * and notmuch_message_properties_move_to_next will do what it
2157  * says. Whereas when this function returns FALSE, calling any of
2158  * these functions results in undefined behaviour.
2159  *
2160  * See the documentation of notmuch_message_get_properties for example
2161  * code showing how to iterate over a notmuch_message_properties_t
2162  * object.
2163  *
2164  * @since libnotmuch 4.4 (notmuch 0.23)
2165  */
2166 notmuch_bool_t
2167 notmuch_message_properties_valid (notmuch_message_properties_t *properties);
2168
2169 /**
2170  * Move the *properties* iterator to the next (key,value) pair
2171  *
2172  * If *properties* is already pointing at the last pair then the iterator
2173  * will be moved to a point just beyond that last pair, (where
2174  * notmuch_message_properties_valid will return FALSE).
2175  *
2176  * See the documentation of notmuch_message_get_properties for example
2177  * code showing how to iterate over a notmuch_message_properties_t object.
2178  *
2179  * @since libnotmuch 4.4 (notmuch 0.23)
2180  */
2181 void
2182 notmuch_message_properties_move_to_next (notmuch_message_properties_t *properties);
2183
2184 /**
2185  * Return the key from the current (key,value) pair.
2186  *
2187  * this could be useful if iterating for a prefix
2188  *
2189  * @since libnotmuch 4.4 (notmuch 0.23)
2190  */
2191 const char *
2192 notmuch_message_properties_key (notmuch_message_properties_t *properties);
2193
2194 /**
2195  * Return the value from the current (key,value) pair.
2196  *
2197  * This could be useful if iterating for a prefix.
2198  *
2199  * @since libnotmuch 4.4 (notmuch 0.23)
2200  */
2201 const char *
2202 notmuch_message_properties_value (notmuch_message_properties_t *properties);
2203
2204
2205 /**
2206  * Destroy a notmuch_message_properties_t object.
2207  *
2208  * It's not strictly necessary to call this function. All memory from
2209  * the notmuch_message_properties_t object will be reclaimed when the
2210  * containing message object is destroyed.
2211  *
2212  * @since libnotmuch 4.4 (notmuch 0.23)
2213  */
2214 void
2215 notmuch_message_properties_destroy (notmuch_message_properties_t *properties);
2216
2217 /**@}*/
2218
2219 /**
2220  * Is the given 'tags' iterator pointing at a valid tag.
2221  *
2222  * When this function returns TRUE, notmuch_tags_get will return a
2223  * valid string. Whereas when this function returns FALSE,
2224  * notmuch_tags_get will return NULL.
2225  *
2226  * See the documentation of notmuch_message_get_tags for example code
2227  * showing how to iterate over a notmuch_tags_t object.
2228  */
2229 notmuch_bool_t
2230 notmuch_tags_valid (notmuch_tags_t *tags);
2231
2232 /**
2233  * Get the current tag from 'tags' as a string.
2234  *
2235  * Note: The returned string belongs to 'tags' and has a lifetime
2236  * identical to it (and the query to which it ultimately belongs).
2237  *
2238  * See the documentation of notmuch_message_get_tags for example code
2239  * showing how to iterate over a notmuch_tags_t object.
2240  */
2241 const char *
2242 notmuch_tags_get (notmuch_tags_t *tags);
2243
2244 /**
2245  * Move the 'tags' iterator to the next tag.
2246  *
2247  * If 'tags' is already pointing at the last tag then the iterator
2248  * will be moved to a point just beyond that last tag, (where
2249  * notmuch_tags_valid will return FALSE and notmuch_tags_get will
2250  * return NULL).
2251  *
2252  * See the documentation of notmuch_message_get_tags for example code
2253  * showing how to iterate over a notmuch_tags_t object.
2254  */
2255 void
2256 notmuch_tags_move_to_next (notmuch_tags_t *tags);
2257
2258 /**
2259  * Destroy a notmuch_tags_t object.
2260  *
2261  * It's not strictly necessary to call this function. All memory from
2262  * the notmuch_tags_t object will be reclaimed when the containing
2263  * message or query objects are destroyed.
2264  */
2265 void
2266 notmuch_tags_destroy (notmuch_tags_t *tags);
2267
2268 /**
2269  * Store an mtime within the database for 'directory'.
2270  *
2271  * The 'directory' should be an object retrieved from the database
2272  * with notmuch_database_get_directory for a particular path.
2273  *
2274  * The intention is for the caller to use the mtime to allow efficient
2275  * identification of new messages to be added to the database. The
2276  * recommended usage is as follows:
2277  *
2278  *   o Read the mtime of a directory from the filesystem
2279  *
2280  *   o Call index_file for all mail files in the directory
2281  *
2282  *   o Call notmuch_directory_set_mtime with the mtime read from the
2283  *     filesystem.
2284  *
2285  * Then, when wanting to check for updates to the directory in the
2286  * future, the client can call notmuch_directory_get_mtime and know
2287  * that it only needs to add files if the mtime of the directory and
2288  * files are newer than the stored timestamp.
2289  *
2290  * Note: The notmuch_directory_get_mtime function does not allow the
2291  * caller to distinguish a timestamp of 0 from a non-existent
2292  * timestamp. So don't store a timestamp of 0 unless you are
2293  * comfortable with that.
2294  *
2295  * Return value:
2296  *
2297  * NOTMUCH_STATUS_SUCCESS: mtime successfully stored in database.
2298  *
2299  * NOTMUCH_STATUS_XAPIAN_EXCEPTION: A Xapian exception
2300  *      occurred, mtime not stored.
2301  *
2302  * NOTMUCH_STATUS_READ_ONLY_DATABASE: Database was opened in read-only
2303  *      mode so directory mtime cannot be modified.
2304  */
2305 notmuch_status_t
2306 notmuch_directory_set_mtime (notmuch_directory_t *directory,
2307                              time_t mtime);
2308
2309 /**
2310  * Get the mtime of a directory, (as previously stored with
2311  * notmuch_directory_set_mtime).
2312  *
2313  * Returns 0 if no mtime has previously been stored for this
2314  * directory.
2315  */
2316 time_t
2317 notmuch_directory_get_mtime (notmuch_directory_t *directory);
2318
2319 /**
2320  * Get a notmuch_filenames_t iterator listing all the filenames of
2321  * messages in the database within the given directory.
2322  *
2323  * The returned filenames will be the basename-entries only (not
2324  * complete paths).
2325  *
2326  * Returns NULL if it triggers a Xapian exception
2327  */
2328 notmuch_filenames_t *
2329 notmuch_directory_get_child_files (notmuch_directory_t *directory);
2330
2331 /**
2332  * Get a notmuch_filenames_t iterator listing all the filenames of
2333  * sub-directories in the database within the given directory.
2334  *
2335  * The returned filenames will be the basename-entries only (not
2336  * complete paths).
2337  *
2338  * Returns NULL if it triggers a Xapian exception
2339  */
2340 notmuch_filenames_t *
2341 notmuch_directory_get_child_directories (notmuch_directory_t *directory);
2342
2343 /**
2344  * Delete directory document from the database, and destroy the
2345  * notmuch_directory_t object. Assumes any child directories and files
2346  * have been deleted by the caller.
2347  *
2348  * @since libnotmuch 4.3 (notmuch 0.21)
2349  */
2350 notmuch_status_t
2351 notmuch_directory_delete (notmuch_directory_t *directory);
2352
2353 /**
2354  * Destroy a notmuch_directory_t object.
2355  */
2356 void
2357 notmuch_directory_destroy (notmuch_directory_t *directory);
2358
2359 /**
2360  * Is the given 'filenames' iterator pointing at a valid filename.
2361  *
2362  * When this function returns TRUE, notmuch_filenames_get will return
2363  * a valid string. Whereas when this function returns FALSE,
2364  * notmuch_filenames_get will return NULL.
2365  *
2366  * It is acceptable to pass NULL for 'filenames', in which case this
2367  * function will always return FALSE.
2368  */
2369 notmuch_bool_t
2370 notmuch_filenames_valid (notmuch_filenames_t *filenames);
2371
2372 /**
2373  * Get the current filename from 'filenames' as a string.
2374  *
2375  * Note: The returned string belongs to 'filenames' and has a lifetime
2376  * identical to it (and the directory to which it ultimately belongs).
2377  *
2378  * It is acceptable to pass NULL for 'filenames', in which case this
2379  * function will always return NULL.
2380  */
2381 const char *
2382 notmuch_filenames_get (notmuch_filenames_t *filenames);
2383
2384 /**
2385  * Move the 'filenames' iterator to the next filename.
2386  *
2387  * If 'filenames' is already pointing at the last filename then the
2388  * iterator will be moved to a point just beyond that last filename,
2389  * (where notmuch_filenames_valid will return FALSE and
2390  * notmuch_filenames_get will return NULL).
2391  *
2392  * It is acceptable to pass NULL for 'filenames', in which case this
2393  * function will do nothing.
2394  */
2395 void
2396 notmuch_filenames_move_to_next (notmuch_filenames_t *filenames);
2397
2398 /**
2399  * Destroy a notmuch_filenames_t object.
2400  *
2401  * It's not strictly necessary to call this function. All memory from
2402  * the notmuch_filenames_t object will be reclaimed when the
2403  * containing directory object is destroyed.
2404  *
2405  * It is acceptable to pass NULL for 'filenames', in which case this
2406  * function will do nothing.
2407  */
2408 void
2409 notmuch_filenames_destroy (notmuch_filenames_t *filenames);
2410
2411
2412 /**
2413  * set config 'key' to 'value'
2414  *
2415  * @since libnotmuch 4.4 (notmuch 0.23)
2416  * @retval #NOTMUCH_STATUS_READ_ONLY_DATABASE: Database was opened in
2417  *      read-only mode so message cannot be modified.
2418  * @retval #NOTMUCH_STATUS_XAPIAN_EXCEPTION: an exception was thrown
2419  *      accessing the database.
2420  * @retval #NOTMUCH_STATUS_SUCCESS
2421  */
2422 notmuch_status_t
2423 notmuch_database_set_config (notmuch_database_t *db, const char *key, const char *value);
2424
2425 /**
2426  * retrieve config item 'key', assign to  'value'
2427  *
2428  * keys which have not been previously set with n_d_set_config will
2429  * return an empty string.
2430  *
2431  * return value is allocated by malloc and should be freed by the
2432  * caller.
2433  *
2434  * @since libnotmuch 4.4 (notmuch 0.23)
2435  *
2436  */
2437 notmuch_status_t
2438 notmuch_database_get_config (notmuch_database_t *db, const char *key, char **value);
2439
2440 /**
2441  * Create an iterator for all config items with keys matching a given prefix
2442  *
2443  * @since libnotmuch 4.4 (notmuch 0.23)
2444  */
2445 notmuch_status_t
2446 notmuch_database_get_config_list (notmuch_database_t *db, const char *prefix,
2447                                   notmuch_config_list_t **out);
2448
2449 /**
2450  * Is 'config_list' iterator valid (i.e. _key, _value, _move_to_next can be called).
2451  *
2452  * @since libnotmuch 4.4 (notmuch 0.23)
2453  */
2454 notmuch_bool_t
2455 notmuch_config_list_valid (notmuch_config_list_t *config_list);
2456
2457 /**
2458  * return key for current config pair
2459  *
2460  * return value is owned by the iterator, and will be destroyed by the
2461  * next call to notmuch_config_list_key or notmuch_config_list_destroy.
2462  *
2463  * @since libnotmuch 4.4 (notmuch 0.23)
2464  */
2465 const char *
2466 notmuch_config_list_key (notmuch_config_list_t *config_list);
2467
2468 /**
2469  * return 'value' for current config pair
2470  *
2471  * return value is owned by the iterator, and will be destroyed by the
2472  * next call to notmuch_config_list_value or notmuch config_list_destroy
2473  *
2474  * @since libnotmuch 4.4 (notmuch 0.23)
2475  * @retval NULL for errors
2476  */
2477 const char *
2478 notmuch_config_list_value (notmuch_config_list_t *config_list);
2479
2480
2481 /**
2482  * move 'config_list' iterator to the next pair
2483  *
2484  * @since libnotmuch 4.4 (notmuch 0.23)
2485  */
2486 void
2487 notmuch_config_list_move_to_next (notmuch_config_list_t *config_list);
2488
2489 /**
2490  * free any resources held by 'config_list'
2491  *
2492  * @since libnotmuch 4.4 (notmuch 0.23)
2493  */
2494 void
2495 notmuch_config_list_destroy (notmuch_config_list_t *config_list);
2496
2497 /**
2498  * Configuration keys known to libnotmuch
2499  */
2500 typedef enum _notmuch_config_key {
2501     NOTMUCH_CONFIG_FIRST,
2502     NOTMUCH_CONFIG_DATABASE_PATH = NOTMUCH_CONFIG_FIRST,
2503     NOTMUCH_CONFIG_MAIL_ROOT,
2504     NOTMUCH_CONFIG_HOOK_DIR,
2505     NOTMUCH_CONFIG_BACKUP_DIR,
2506     NOTMUCH_CONFIG_EXCLUDE_TAGS,
2507     NOTMUCH_CONFIG_NEW_TAGS,
2508     NOTMUCH_CONFIG_NEW_IGNORE,
2509     NOTMUCH_CONFIG_SYNC_MAILDIR_FLAGS,
2510     NOTMUCH_CONFIG_PRIMARY_EMAIL,
2511     NOTMUCH_CONFIG_OTHER_EMAIL,
2512     NOTMUCH_CONFIG_USER_NAME,
2513     NOTMUCH_CONFIG_LAST
2514 } notmuch_config_key_t;
2515
2516 /**
2517  * get a configuration value from an open database.
2518  *
2519  * This value reflects all configuration information given at the time
2520  * the database was opened.
2521  *
2522  * @param[in] notmuch database
2523  * @param[in] key configuration key
2524  *
2525  * @since libnotmuch 5.4 (notmuch 0.32)
2526  *
2527  * @retval NULL if 'key' unknown or if no value is known for
2528  *         'key'.  Otherwise returns a string owned by notmuch which should
2529  *         not be modified nor freed by the caller.
2530  */
2531 const char *
2532 notmuch_config_get (notmuch_database_t *notmuch, notmuch_config_key_t key);
2533
2534 /**
2535  * set a configuration value from in an open database.
2536  *
2537  * This value reflects all configuration information given at the time
2538  * the database was opened.
2539  *
2540  * @param[in,out] notmuch database open read/write
2541  * @param[in] key configuration key
2542  * @param[in] val configuration value
2543  *
2544  * @since libnotmuch 5.4 (notmuch 0.32)
2545  *
2546  * @retval returns any return value for notmuch_database_set_config.
2547  */
2548 notmuch_status_t
2549 notmuch_config_set (notmuch_database_t *notmuch, notmuch_config_key_t key, const char *val);
2550
2551 /**
2552  * Returns an iterator for a ';'-delimited list of configuration values
2553  *
2554  * These values reflect all configuration information given at the
2555  * time the database was opened.
2556  *
2557  * @param[in] notmuch database
2558  * @param[in] key configuration key
2559  *
2560  * @since libnotmuch 5.4 (notmuch 0.32)
2561  *
2562  * @retval NULL in case of error.
2563  */
2564 notmuch_config_values_t *
2565 notmuch_config_get_values (notmuch_database_t *notmuch, notmuch_config_key_t key);
2566
2567 /**
2568  * Returns an iterator for a ';'-delimited list of configuration values
2569  *
2570  * These values reflect all configuration information given at the
2571  * time the database was opened.
2572  *
2573  * @param[in] notmuch database
2574  * @param[in] key configuration key
2575  *
2576  * @since libnotmuch 5.4 (notmuch 0.32)
2577  *
2578  * @retval NULL in case of error.
2579  */
2580 notmuch_config_values_t *
2581 notmuch_config_get_values_string (notmuch_database_t *notmuch, const char *key);
2582
2583 /**
2584  * Is the given 'config_values' iterator pointing at a valid element.
2585  *
2586  * @param[in] values iterator
2587  *
2588  * @since libnotmuch 5.4 (notmuch 0.32)
2589  *
2590  * @retval FALSE if passed a NULL pointer, or the iterator is exhausted.
2591  *
2592  */
2593 notmuch_bool_t
2594 notmuch_config_values_valid (notmuch_config_values_t *values);
2595
2596 /**
2597  * Get the current value from the 'values' iterator
2598  *
2599  * @param[in] values iterator
2600  *
2601  * @since libnotmuch 5.4 (notmuch 0.32)
2602  *
2603  * @retval a string with the same lifetime as the iterator
2604  */
2605 const char *
2606 notmuch_config_values_get (notmuch_config_values_t *values);
2607
2608 /**
2609  * Move the 'values' iterator to the next element
2610  *
2611  * @param[in,out] values iterator
2612  *
2613  * @since libnotmuch 5.4 (notmuch 0.32)
2614  *
2615  */
2616 void
2617 notmuch_config_values_move_to_next (notmuch_config_values_t *values);
2618
2619
2620 /**
2621  * reset the 'values' iterator to the first element
2622  *
2623  * @param[in,out] values iterator. A NULL value is ignored.
2624  *
2625  * @since libnotmuch 5.4 (notmuch 0.32)
2626  *
2627  */
2628 void
2629 notmuch_config_values_start (notmuch_config_values_t *values);
2630
2631 /**
2632  * Destroy a config values iterator, along with any associated
2633  * resources.
2634  *
2635  * @param[in,out] values iterator
2636  *
2637  * @since libnotmuch 5.4 (notmuch 0.32)
2638  */
2639 void
2640 notmuch_config_values_destroy (notmuch_config_values_t *values);
2641
2642 /**
2643  * get a configuration value from an open database as Boolean
2644  *
2645  * This value reflects all configuration information given at the time
2646  * the database was opened.
2647  *
2648  * @param[in] notmuch database
2649  * @param[in] key configuration key
2650  * @param[out] val configuration value, converted to Boolean
2651  *
2652  * @since libnotmuch 5.4 (notmuch 0.32)
2653  *
2654  * @retval #NOTMUCH_STATUS_ILLEGAL_ARGUMENT if either key is unknown
2655  * or the corresponding value does not convert to Boolean.
2656  */
2657 notmuch_status_t
2658 notmuch_config_get_bool (notmuch_database_t *notmuch,
2659                          notmuch_config_key_t key,
2660                          notmuch_bool_t *val);
2661 /**
2662  * get the current default indexing options for a given database.
2663  *
2664  * This object will survive until the database itself is destroyed,
2665  * but the caller may also release it earlier with
2666  * notmuch_indexopts_destroy.
2667  *
2668  * This object represents a set of options on how a message can be
2669  * added to the index.  At the moment it is a featureless stub.
2670  *
2671  * @since libnotmuch 5.1 (notmuch 0.26)
2672  * @retval NULL in case of error
2673  */
2674 notmuch_indexopts_t *
2675 notmuch_database_get_default_indexopts (notmuch_database_t *db);
2676
2677 /**
2678  * Stating a policy about how to decrypt messages.
2679  *
2680  * See index.decrypt in notmuch-config(1) for more details.
2681  */
2682 typedef enum {
2683     NOTMUCH_DECRYPT_FALSE,
2684     NOTMUCH_DECRYPT_TRUE,
2685     NOTMUCH_DECRYPT_AUTO,
2686     NOTMUCH_DECRYPT_NOSTASH,
2687 } notmuch_decryption_policy_t;
2688
2689 /**
2690  * Specify whether to decrypt encrypted parts while indexing.
2691  *
2692  * Be aware that the index is likely sufficient to reconstruct the
2693  * cleartext of the message itself, so please ensure that the notmuch
2694  * message index is adequately protected. DO NOT SET THIS FLAG TO TRUE
2695  * without considering the security of your index.
2696  *
2697  * @since libnotmuch 5.1 (notmuch 0.26)
2698  */
2699 notmuch_status_t
2700 notmuch_indexopts_set_decrypt_policy (notmuch_indexopts_t *indexopts,
2701                                       notmuch_decryption_policy_t decrypt_policy);
2702
2703 /**
2704  * Return whether to decrypt encrypted parts while indexing.
2705  * see notmuch_indexopts_set_decrypt_policy.
2706  *
2707  * @since libnotmuch 5.1 (notmuch 0.26)
2708  */
2709 notmuch_decryption_policy_t
2710 notmuch_indexopts_get_decrypt_policy (const notmuch_indexopts_t *indexopts);
2711
2712 /**
2713  * Destroy a notmuch_indexopts_t object.
2714  *
2715  * @since libnotmuch 5.1 (notmuch 0.26)
2716  */
2717 void
2718 notmuch_indexopts_destroy (notmuch_indexopts_t *options);
2719
2720
2721 /**
2722  * interrogate the library for compile time features
2723  *
2724  * @since libnotmuch 4.4 (notmuch 0.23)
2725  */
2726 notmuch_bool_t
2727 notmuch_built_with (const char *name);
2728 /**@}*/
2729
2730 #pragma GCC visibility pop
2731
2732 NOTMUCH_END_DECLS
2733
2734 #endif