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