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