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