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