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