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