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