]> git.notmuchmail.org Git - notmuch/blob - lib/notmuch.h
02586a9126e3033c53bab1ea4d08a5b4752ceeda
[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        0
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      * Not an actual status value. Just a way to find out how many
196      * valid status values there are.
197      */
198     NOTMUCH_STATUS_LAST_STATUS
199 } notmuch_status_t;
200
201 /**
202  * Get a string representation of a notmuch_status_t value.
203  *
204  * The result is read-only.
205  */
206 const char *
207 notmuch_status_to_string (notmuch_status_t status);
208
209 /* Various opaque data types. For each notmuch_<foo>_t see the various
210  * notmuch_<foo> functions below. */
211 #ifndef __DOXYGEN__
212 typedef struct _notmuch_database notmuch_database_t;
213 typedef struct _notmuch_query notmuch_query_t;
214 typedef struct _notmuch_threads notmuch_threads_t;
215 typedef struct _notmuch_thread notmuch_thread_t;
216 typedef struct _notmuch_messages notmuch_messages_t;
217 typedef struct _notmuch_message notmuch_message_t;
218 typedef struct _notmuch_tags notmuch_tags_t;
219 typedef struct _notmuch_directory notmuch_directory_t;
220 typedef struct _notmuch_filenames notmuch_filenames_t;
221 typedef struct _notmuch_config_list notmuch_config_list_t;
222 typedef struct _notmuch_param notmuch_param_t;
223 #endif /* __DOXYGEN__ */
224
225 /**
226  * Create a new, empty notmuch database located at 'path'.
227  *
228  * The path should be a top-level directory to a collection of
229  * plain-text email messages (one message per file). This call will
230  * create a new ".notmuch" directory within 'path' where notmuch will
231  * store its data.
232  *
233  * After a successful call to notmuch_database_create, the returned
234  * database will be open so the caller should call
235  * notmuch_database_destroy when finished with it.
236  *
237  * The database will not yet have any data in it
238  * (notmuch_database_create itself is a very cheap function). Messages
239  * contained within 'path' can be added to the database by calling
240  * notmuch_database_add_message.
241  *
242  * In case of any failure, this function returns an error status and
243  * sets *database to NULL (after printing an error message on stderr).
244  *
245  * Return value:
246  *
247  * NOTMUCH_STATUS_SUCCESS: Successfully created the database.
248  *
249  * NOTMUCH_STATUS_NULL_POINTER: The given 'path' argument is NULL.
250  *
251  * NOTMUCH_STATUS_OUT_OF_MEMORY: Out of memory.
252  *
253  * NOTMUCH_STATUS_FILE_ERROR: An error occurred trying to create the
254  *      database file (such as permission denied, or file not found,
255  *      etc.), or the database already exists.
256  *
257  * NOTMUCH_STATUS_XAPIAN_EXCEPTION: A Xapian exception occurred.
258  */
259 notmuch_status_t
260 notmuch_database_create (const char *path, notmuch_database_t **database);
261
262 /**
263  * Like notmuch_database_create, except optionally return an error
264  * message. This message is allocated by malloc and should be freed by
265  * the caller.
266  */
267 notmuch_status_t
268 notmuch_database_create_verbose (const char *path,
269                                  notmuch_database_t **database,
270                                  char **error_message);
271
272 /**
273  * Database open mode for notmuch_database_open.
274  */
275 typedef enum {
276     /**
277      * Open database for reading only.
278      */
279     NOTMUCH_DATABASE_MODE_READ_ONLY = 0,
280     /**
281      * Open database for reading and writing.
282      */
283     NOTMUCH_DATABASE_MODE_READ_WRITE
284 } notmuch_database_mode_t;
285
286 /**
287  * Open an existing notmuch database located at 'path'.
288  *
289  * The database should have been created at some time in the past,
290  * (not necessarily by this process), by calling
291  * notmuch_database_create with 'path'. By default the database should be
292  * opened for reading only. In order to write to the database you need to
293  * pass the NOTMUCH_DATABASE_MODE_READ_WRITE mode.
294  *
295  * An existing notmuch database can be identified by the presence of a
296  * directory named ".notmuch" below 'path'.
297  *
298  * The caller should call notmuch_database_destroy when finished with
299  * this database.
300  *
301  * In case of any failure, this function returns an error status and
302  * sets *database to NULL (after printing an error message on stderr).
303  *
304  * Return value:
305  *
306  * NOTMUCH_STATUS_SUCCESS: Successfully opened the database.
307  *
308  * NOTMUCH_STATUS_NULL_POINTER: The given 'path' argument is NULL.
309  *
310  * NOTMUCH_STATUS_OUT_OF_MEMORY: Out of memory.
311  *
312  * NOTMUCH_STATUS_FILE_ERROR: An error occurred trying to open the
313  *      database file (such as permission denied, or file not found,
314  *      etc.), or the database version is unknown.
315  *
316  * NOTMUCH_STATUS_XAPIAN_EXCEPTION: A Xapian exception occurred.
317  */
318 notmuch_status_t
319 notmuch_database_open (const char *path,
320                        notmuch_database_mode_t mode,
321                        notmuch_database_t **database);
322 /**
323  * Like notmuch_database_open, except optionally return an error
324  * message. This message is allocated by malloc and should be freed by
325  * the caller.
326  */
327
328 notmuch_status_t
329 notmuch_database_open_verbose (const char *path,
330                                notmuch_database_mode_t mode,
331                                notmuch_database_t **database,
332                                char **error_message);
333
334 /**
335  * Retrieve last status string for given database.
336  *
337  */
338 const char *
339 notmuch_database_status_string (const notmuch_database_t *notmuch);
340
341 /**
342  * Commit changes and close the given notmuch database.
343  *
344  * After notmuch_database_close has been called, calls to other
345  * functions on objects derived from this database may either behave
346  * as if the database had not been closed (e.g., if the required data
347  * has been cached) or may fail with a
348  * NOTMUCH_STATUS_XAPIAN_EXCEPTION. The only further operation
349  * permitted on the database itself is to call
350  * notmuch_database_destroy.
351  *
352  * notmuch_database_close can be called multiple times.  Later calls
353  * have no effect.
354  *
355  * For writable databases, notmuch_database_close commits all changes
356  * to disk before closing the database.  If the caller is currently in
357  * an atomic section (there was a notmuch_database_begin_atomic
358  * without a matching notmuch_database_end_atomic), this will discard
359  * changes made in that atomic section (but still commit changes made
360  * prior to entering the atomic section).
361  *
362  * Return value:
363  *
364  * NOTMUCH_STATUS_SUCCESS: Successfully closed the database.
365  *
366  * NOTMUCH_STATUS_XAPIAN_EXCEPTION: A Xapian exception occurred; the
367  *      database has been closed but there are no guarantees the
368  *      changes to the database, if any, have been flushed to disk.
369  */
370 notmuch_status_t
371 notmuch_database_close (notmuch_database_t *database);
372
373 /**
374  * A callback invoked by notmuch_database_compact to notify the user
375  * of the progress of the compaction process.
376  */
377 typedef void (*notmuch_compact_status_cb_t)(const char *message, void *closure);
378
379 /**
380  * Compact a notmuch database, backing up the original database to the
381  * given path.
382  *
383  * The database will be opened with NOTMUCH_DATABASE_MODE_READ_WRITE
384  * during the compaction process to ensure no writes are made.
385  *
386  * If the optional callback function 'status_cb' is non-NULL, it will
387  * be called with diagnostic and informational messages. The argument
388  * 'closure' is passed verbatim to any callback invoked.
389  */
390 notmuch_status_t
391 notmuch_database_compact (const char* path,
392                           const char* backup_path,
393                           notmuch_compact_status_cb_t status_cb,
394                           void *closure);
395
396 /**
397  * Destroy the notmuch database, closing it if necessary and freeing
398  * all associated resources.
399  *
400  * Return value as in notmuch_database_close if the database was open;
401  * notmuch_database_destroy itself has no failure modes.
402  */
403 notmuch_status_t
404 notmuch_database_destroy (notmuch_database_t *database);
405
406 /**
407  * Return the database path of the given database.
408  *
409  * The return value is a string owned by notmuch so should not be
410  * modified nor freed by the caller.
411  */
412 const char *
413 notmuch_database_get_path (notmuch_database_t *database);
414
415 /**
416  * Return the database format version of the given database.
417  */
418 unsigned int
419 notmuch_database_get_version (notmuch_database_t *database);
420
421 /**
422  * Can the database be upgraded to a newer database version?
423  *
424  * If this function returns TRUE, then the caller may call
425  * notmuch_database_upgrade to upgrade the database.  If the caller
426  * does not upgrade an out-of-date database, then some functions may
427  * fail with NOTMUCH_STATUS_UPGRADE_REQUIRED.  This always returns
428  * FALSE for a read-only database because there's no way to upgrade a
429  * read-only database.
430  */
431 notmuch_bool_t
432 notmuch_database_needs_upgrade (notmuch_database_t *database);
433
434 /**
435  * Upgrade the current database to the latest supported version.
436  *
437  * This ensures that all current notmuch functionality will be
438  * available on the database.  After opening a database in read-write
439  * mode, it is recommended that clients check if an upgrade is needed
440  * (notmuch_database_needs_upgrade) and if so, upgrade with this
441  * function before making any modifications.  If
442  * notmuch_database_needs_upgrade returns FALSE, this will be a no-op.
443  *
444  * The optional progress_notify callback can be used by the caller to
445  * provide progress indication to the user. If non-NULL it will be
446  * called periodically with 'progress' as a floating-point value in
447  * the range of [0.0 .. 1.0] indicating the progress made so far in
448  * the upgrade process.  The argument 'closure' is passed verbatim to
449  * any callback invoked.
450  */
451 notmuch_status_t
452 notmuch_database_upgrade (notmuch_database_t *database,
453                           void (*progress_notify) (void *closure,
454                                                    double progress),
455                           void *closure);
456
457 /**
458  * Begin an atomic database operation.
459  *
460  * Any modifications performed between a successful begin and a
461  * notmuch_database_end_atomic will be applied to the database
462  * atomically.  Note that, unlike a typical database transaction, this
463  * only ensures atomicity, not durability; neither begin nor end
464  * necessarily flush modifications to disk.
465  *
466  * Atomic sections may be nested.  begin_atomic and end_atomic must
467  * always be called in pairs.
468  *
469  * Return value:
470  *
471  * NOTMUCH_STATUS_SUCCESS: Successfully entered atomic section.
472  *
473  * NOTMUCH_STATUS_XAPIAN_EXCEPTION: A Xapian exception occurred;
474  *      atomic section not entered.
475  */
476 notmuch_status_t
477 notmuch_database_begin_atomic (notmuch_database_t *notmuch);
478
479 /**
480  * Indicate the end of an atomic database operation.
481  *
482  * Return value:
483  *
484  * NOTMUCH_STATUS_SUCCESS: Successfully completed atomic section.
485  *
486  * NOTMUCH_STATUS_XAPIAN_EXCEPTION: A Xapian exception occurred;
487  *      atomic section not ended.
488  *
489  * NOTMUCH_STATUS_UNBALANCED_ATOMIC: The database is not currently in
490  *      an atomic section.
491  */
492 notmuch_status_t
493 notmuch_database_end_atomic (notmuch_database_t *notmuch);
494
495 /**
496  * Return the committed database revision and UUID.
497  *
498  * The database revision number increases monotonically with each
499  * commit to the database.  Hence, all messages and message changes
500  * committed to the database (that is, visible to readers) have a last
501  * modification revision <= the committed database revision.  Any
502  * messages committed in the future will be assigned a modification
503  * revision > the committed database revision.
504  *
505  * The UUID is a NUL-terminated opaque string that uniquely identifies
506  * this database.  Two revision numbers are only comparable if they
507  * have the same database UUID.
508  */
509 unsigned long
510 notmuch_database_get_revision (notmuch_database_t *notmuch,
511                                 const char **uuid);
512
513 /**
514  * Retrieve a directory object from the database for 'path'.
515  *
516  * Here, 'path' should be a path relative to the path of 'database'
517  * (see notmuch_database_get_path), or else should be an absolute path
518  * with initial components that match the path of 'database'.
519  *
520  * If this directory object does not exist in the database, this
521  * returns NOTMUCH_STATUS_SUCCESS and sets *directory to NULL.
522  *
523  * Otherwise the returned directory object is owned by the database
524  * and as such, will only be valid until notmuch_database_destroy is
525  * called.
526  *
527  * Return value:
528  *
529  * NOTMUCH_STATUS_SUCCESS: Successfully retrieved directory.
530  *
531  * NOTMUCH_STATUS_NULL_POINTER: The given 'directory' argument is NULL.
532  *
533  * NOTMUCH_STATUS_XAPIAN_EXCEPTION: A Xapian exception occurred;
534  *      directory not retrieved.
535  *
536  * NOTMUCH_STATUS_UPGRADE_REQUIRED: The caller must upgrade the
537  *      database to use this function.
538  */
539 notmuch_status_t
540 notmuch_database_get_directory (notmuch_database_t *database,
541                                 const char *path,
542                                 notmuch_directory_t **directory);
543
544 /**
545  * Add a message file to a database, indexing it for retrieval by
546  * future searches.  If a message already exists with the same message
547  * ID as the specified file, their indexes will be merged, and this
548  * new filename will also be associated with the existing message.
549  *
550  * Here, 'filename' should be a path relative to the path of
551  * 'database' (see notmuch_database_get_path), or else should be an
552  * absolute filename with initial components that match the path of
553  * 'database'.
554  *
555  * The file should be a single mail message (not a multi-message mbox)
556  * that is expected to remain at its current location, (since the
557  * notmuch database will reference the filename, and will not copy the
558  * entire contents of the file.
559  *
560  * If another message with the same message ID already exists in the
561  * database, rather than creating a new message, this adds the search
562  * terms from the identified file to the existing message's index, and
563  * adds 'filename' to the list of filenames known for the message.
564  *
565  * If 'message' is not NULL, then, on successful return
566  * (NOTMUCH_STATUS_SUCCESS or NOTMUCH_STATUS_DUPLICATE_MESSAGE_ID) '*message'
567  * will be initialized to a message object that can be used for things
568  * such as adding tags to the just-added message. The user should call
569  * notmuch_message_destroy when done with the message. On any failure
570  * '*message' will be set to NULL.
571  *
572  * Return value:
573  *
574  * NOTMUCH_STATUS_SUCCESS: Message successfully added to database.
575  *
576  * NOTMUCH_STATUS_XAPIAN_EXCEPTION: A Xapian exception occurred,
577  *      message not added.
578  *
579  * NOTMUCH_STATUS_DUPLICATE_MESSAGE_ID: Message has the same message
580  *      ID as another message already in the database. The new
581  *      filename was successfully added to the message in the database
582  *      (if not already present) and the existing message is returned.
583  *
584  * NOTMUCH_STATUS_FILE_ERROR: an error occurred trying to open the
585  *      file, (such as permission denied, or file not found,
586  *      etc.). Nothing added to the database.
587  *
588  * NOTMUCH_STATUS_FILE_NOT_EMAIL: the contents of filename don't look
589  *      like an email message. Nothing added to the database.
590  *
591  * NOTMUCH_STATUS_READ_ONLY_DATABASE: Database was opened in read-only
592  *      mode so no message can be added.
593  *
594  * NOTMUCH_STATUS_UPGRADE_REQUIRED: The caller must upgrade the
595  *      database to use this function.
596  */
597 notmuch_status_t
598 notmuch_database_add_message (notmuch_database_t *database,
599                               const char *filename,
600                               notmuch_message_t **message);
601
602 /**
603  * Remove a message filename from the given notmuch database. If the
604  * message has no more filenames, remove the message.
605  *
606  * If the same message (as determined by the message ID) is still
607  * available via other filenames, then the message will persist in the
608  * database for those filenames. When the last filename is removed for
609  * a particular message, the database content for that message will be
610  * entirely removed.
611  *
612  * Return value:
613  *
614  * NOTMUCH_STATUS_SUCCESS: The last filename was removed and the
615  *      message was removed from the database.
616  *
617  * NOTMUCH_STATUS_XAPIAN_EXCEPTION: A Xapian exception occurred,
618  *      message not removed.
619  *
620  * NOTMUCH_STATUS_DUPLICATE_MESSAGE_ID: This filename was removed but
621  *      the message persists in the database with at least one other
622  *      filename.
623  *
624  * NOTMUCH_STATUS_READ_ONLY_DATABASE: Database was opened in read-only
625  *      mode so no message can be removed.
626  *
627  * NOTMUCH_STATUS_UPGRADE_REQUIRED: The caller must upgrade the
628  *      database to use this function.
629  */
630 notmuch_status_t
631 notmuch_database_remove_message (notmuch_database_t *database,
632                                  const char *filename);
633
634 /**
635  * Find a message with the given message_id.
636  *
637  * If a message with the given message_id is found then, on successful return
638  * (NOTMUCH_STATUS_SUCCESS) '*message' will be initialized to a message
639  * object.  The caller should call notmuch_message_destroy when done with the
640  * message.
641  *
642  * On any failure or when the message is not found, this function initializes
643  * '*message' to NULL. This means, when NOTMUCH_STATUS_SUCCESS is returned, the
644  * caller is supposed to check '*message' for NULL to find out whether the
645  * message with the given message_id was found.
646  *
647  * Return value:
648  *
649  * NOTMUCH_STATUS_SUCCESS: Successful return, check '*message'.
650  *
651  * NOTMUCH_STATUS_NULL_POINTER: The given 'message' argument is NULL
652  *
653  * NOTMUCH_STATUS_OUT_OF_MEMORY: Out of memory, creating message object
654  *
655  * NOTMUCH_STATUS_XAPIAN_EXCEPTION: A Xapian exception occurred
656  */
657 notmuch_status_t
658 notmuch_database_find_message (notmuch_database_t *database,
659                                const char *message_id,
660                                notmuch_message_t **message);
661
662 /**
663  * Find a message with the given filename.
664  *
665  * If the database contains a message with the given filename then, on
666  * successful return (NOTMUCH_STATUS_SUCCESS) '*message' will be initialized to
667  * a message object. The caller should call notmuch_message_destroy when done
668  * with the message.
669  *
670  * On any failure or when the message is not found, this function initializes
671  * '*message' to NULL. This means, when NOTMUCH_STATUS_SUCCESS is returned, the
672  * caller is supposed to check '*message' for NULL to find out whether the
673  * message with the given filename is found.
674  *
675  * Return value:
676  *
677  * NOTMUCH_STATUS_SUCCESS: Successful return, check '*message'
678  *
679  * NOTMUCH_STATUS_NULL_POINTER: The given 'message' argument is NULL
680  *
681  * NOTMUCH_STATUS_OUT_OF_MEMORY: Out of memory, creating the message object
682  *
683  * NOTMUCH_STATUS_XAPIAN_EXCEPTION: A Xapian exception occurred
684  *
685  * NOTMUCH_STATUS_UPGRADE_REQUIRED: The caller must upgrade the
686  *      database to use this function.
687  */
688 notmuch_status_t
689 notmuch_database_find_message_by_filename (notmuch_database_t *notmuch,
690                                            const char *filename,
691                                            notmuch_message_t **message);
692
693 /**
694  * Return a list of all tags found in the database.
695  *
696  * This function creates a list of all tags found in the database. The
697  * resulting list contains all tags from all messages found in the database.
698  *
699  * On error this function returns NULL.
700  */
701 notmuch_tags_t *
702 notmuch_database_get_all_tags (notmuch_database_t *db);
703
704 /**
705  * Create a new query for 'database'.
706  *
707  * Here, 'database' should be an open database, (see
708  * notmuch_database_open and notmuch_database_create).
709  *
710  * For the query string, we'll document the syntax here more
711  * completely in the future, but it's likely to be a specialized
712  * version of the general Xapian query syntax:
713  *
714  * https://xapian.org/docs/queryparser.html
715  *
716  * As a special case, passing either a length-zero string, (that is ""),
717  * or a string consisting of a single asterisk (that is "*"), will
718  * result in a query that returns all messages in the database.
719  *
720  * See notmuch_query_set_sort for controlling the order of results.
721  * See notmuch_query_search_messages and notmuch_query_search_threads
722  * to actually execute the query.
723  *
724  * User should call notmuch_query_destroy when finished with this
725  * query.
726  *
727  * Will return NULL if insufficient memory is available.
728  */
729 notmuch_query_t *
730 notmuch_query_create (notmuch_database_t *database,
731                       const char *query_string);
732
733 /**
734  * Sort values for notmuch_query_set_sort.
735  */
736 typedef enum {
737     /**
738      * Oldest first.
739      */
740     NOTMUCH_SORT_OLDEST_FIRST,
741     /**
742      * Newest first.
743      */
744     NOTMUCH_SORT_NEWEST_FIRST,
745     /**
746      * Sort by message-id.
747      */
748     NOTMUCH_SORT_MESSAGE_ID,
749     /**
750      * Do not sort.
751      */
752     NOTMUCH_SORT_UNSORTED
753 } notmuch_sort_t;
754
755 /**
756  * Return the query_string of this query. See notmuch_query_create.
757  */
758 const char *
759 notmuch_query_get_query_string (const notmuch_query_t *query);
760
761 /**
762  * Return the notmuch database of this query. See notmuch_query_create.
763  */
764 notmuch_database_t *
765 notmuch_query_get_database (const notmuch_query_t *query);
766
767 /**
768  * Exclude values for notmuch_query_set_omit_excluded. The strange
769  * order is to maintain backward compatibility: the old FALSE/TRUE
770  * options correspond to the new
771  * NOTMUCH_EXCLUDE_FLAG/NOTMUCH_EXCLUDE_TRUE options.
772  */
773 typedef enum {
774     NOTMUCH_EXCLUDE_FLAG,
775     NOTMUCH_EXCLUDE_TRUE,
776     NOTMUCH_EXCLUDE_FALSE,
777     NOTMUCH_EXCLUDE_ALL
778 } notmuch_exclude_t;
779
780 /**
781  * Specify whether to omit excluded results or simply flag them.  By
782  * default, this is set to TRUE.
783  *
784  * If set to TRUE or ALL, notmuch_query_search_messages will omit excluded
785  * messages from the results, and notmuch_query_search_threads will omit
786  * threads that match only in excluded messages.  If set to TRUE,
787  * notmuch_query_search_threads will include all messages in threads that
788  * match in at least one non-excluded message.  Otherwise, if set to ALL,
789  * notmuch_query_search_threads will omit excluded messages from all threads.
790  *
791  * If set to FALSE or FLAG then both notmuch_query_search_messages and
792  * notmuch_query_search_threads will return all matching
793  * messages/threads regardless of exclude status. If set to FLAG then
794  * the exclude flag will be set for any excluded message that is
795  * returned by notmuch_query_search_messages, and the thread counts
796  * for threads returned by notmuch_query_search_threads will be the
797  * number of non-excluded messages/matches. Otherwise, if set to
798  * FALSE, then the exclude status is completely ignored.
799  *
800  * The performance difference when calling
801  * notmuch_query_search_messages should be relatively small (and both
802  * should be very fast).  However, in some cases,
803  * notmuch_query_search_threads is very much faster when omitting
804  * excluded messages as it does not need to construct the threads that
805  * only match in excluded messages.
806  */
807 void
808 notmuch_query_set_omit_excluded (notmuch_query_t *query,
809                                  notmuch_exclude_t omit_excluded);
810
811 /**
812  * Specify the sorting desired for this query.
813  */
814 void
815 notmuch_query_set_sort (notmuch_query_t *query, notmuch_sort_t sort);
816
817 /**
818  * Return the sort specified for this query. See
819  * notmuch_query_set_sort.
820  */
821 notmuch_sort_t
822 notmuch_query_get_sort (const notmuch_query_t *query);
823
824 /**
825  * Add a tag that will be excluded from the query results by default.
826  * This exclusion will be ignored if this tag appears explicitly in
827  * the query.
828  *
829  * @returns
830  *
831  * NOTMUCH_STATUS_SUCCESS: excluded was added successfully.
832  *
833  * NOTMUCH_STATUS_XAPIAN_EXCEPTION: a Xapian exception occured.
834  *      Most likely a problem lazily parsing the query string.
835  *
836  * NOTMUCH_STATUS_IGNORED: tag is explicitly present in the query, so
837  *              not excluded.
838  */
839 notmuch_status_t
840 notmuch_query_add_tag_exclude (notmuch_query_t *query, const char *tag);
841
842 /**
843  * Execute a query for threads, returning a notmuch_threads_t object
844  * which can be used to iterate over the results. The returned threads
845  * object is owned by the query and as such, will only be valid until
846  * notmuch_query_destroy.
847  *
848  * Typical usage might be:
849  *
850  *     notmuch_query_t *query;
851  *     notmuch_threads_t *threads;
852  *     notmuch_thread_t *thread;
853  *
854  *     query = notmuch_query_create (database, query_string);
855  *
856  *     for (threads = notmuch_query_search_threads (query);
857  *          notmuch_threads_valid (threads);
858  *          notmuch_threads_move_to_next (threads))
859  *     {
860  *         thread = notmuch_threads_get (threads);
861  *         ....
862  *         notmuch_thread_destroy (thread);
863  *     }
864  *
865  *     notmuch_query_destroy (query);
866  *
867  * Note: If you are finished with a thread before its containing
868  * query, you can call notmuch_thread_destroy to clean up some memory
869  * sooner (as in the above example). Otherwise, if your thread objects
870  * are long-lived, then you don't need to call notmuch_thread_destroy
871  * and all the memory will still be reclaimed when the query is
872  * destroyed.
873  *
874  * Note that there's no explicit destructor needed for the
875  * notmuch_threads_t object. (For consistency, we do provide a
876  * notmuch_threads_destroy function, but there's no good reason
877  * to call it if the query is about to be destroyed).
878  *
879  * @since libnotmuch 5.0 (notmuch 0.25)
880  */
881 notmuch_status_t
882 notmuch_query_search_threads (notmuch_query_t *query,
883                               notmuch_threads_t **out);
884
885 /**
886  * Deprecated alias for notmuch_query_search_threads.
887  *
888  * @deprecated Deprecated as of libnotmuch 5 (notmuch 0.25). Please
889  * use notmuch_query_search_threads instead.
890  *
891  */
892 NOTMUCH_DEPRECATED(5,0)
893 notmuch_status_t
894 notmuch_query_search_threads_st (notmuch_query_t *query, notmuch_threads_t **out);
895
896 /**
897  * Execute a query for messages, returning a notmuch_messages_t object
898  * which can be used to iterate over the results. The returned
899  * messages object is owned by the query and as such, will only be
900  * valid until notmuch_query_destroy.
901  *
902  * Typical usage might be:
903  *
904  *     notmuch_query_t *query;
905  *     notmuch_messages_t *messages;
906  *     notmuch_message_t *message;
907  *
908  *     query = notmuch_query_create (database, query_string);
909  *
910  *     for (messages = notmuch_query_search_messages (query);
911  *          notmuch_messages_valid (messages);
912  *          notmuch_messages_move_to_next (messages))
913  *     {
914  *         message = notmuch_messages_get (messages);
915  *         ....
916  *         notmuch_message_destroy (message);
917  *     }
918  *
919  *     notmuch_query_destroy (query);
920  *
921  * Note: If you are finished with a message before its containing
922  * query, you can call notmuch_message_destroy to clean up some memory
923  * sooner (as in the above example). Otherwise, if your message
924  * objects are long-lived, then you don't need to call
925  * notmuch_message_destroy and all the memory will still be reclaimed
926  * when the query is destroyed.
927  *
928  * Note that there's no explicit destructor needed for the
929  * notmuch_messages_t object. (For consistency, we do provide a
930  * notmuch_messages_destroy function, but there's no good
931  * reason to call it if the query is about to be destroyed).
932  *
933  * If a Xapian exception occurs this function will return NULL.
934  *
935  * @since libnotmuch 5 (notmuch 0.25)
936  */
937 notmuch_status_t
938 notmuch_query_search_messages (notmuch_query_t *query,
939                                notmuch_messages_t **out);
940 /**
941  * Deprecated alias for notmuch_query_search_messages
942  *
943  * @deprecated Deprecated as of libnotmuch 5 (notmuch 0.25). Please use
944  * notmuch_query_search_messages instead.
945  *
946  */
947
948 NOTMUCH_DEPRECATED(5,0)
949 notmuch_status_t
950 notmuch_query_search_messages_st (notmuch_query_t *query,
951                                   notmuch_messages_t **out);
952
953 /**
954  * Destroy a notmuch_query_t along with any associated resources.
955  *
956  * This will in turn destroy any notmuch_threads_t and
957  * notmuch_messages_t objects generated by this query, (and in
958  * turn any notmuch_thread_t and notmuch_message_t objects generated
959  * from those results, etc.), if such objects haven't already been
960  * destroyed.
961  */
962 void
963 notmuch_query_destroy (notmuch_query_t *query);
964
965 /**
966  * Is the given 'threads' iterator pointing at a valid thread.
967  *
968  * When this function returns TRUE, notmuch_threads_get will return a
969  * valid object. Whereas when this function returns FALSE,
970  * notmuch_threads_get will return NULL.
971  *
972  * If passed a NULL pointer, this function returns FALSE
973  *
974  * See the documentation of notmuch_query_search_threads for example
975  * code showing how to iterate over a notmuch_threads_t object.
976  */
977 notmuch_bool_t
978 notmuch_threads_valid (notmuch_threads_t *threads);
979
980 /**
981  * Get the current thread from 'threads' as a notmuch_thread_t.
982  *
983  * Note: The returned thread belongs to 'threads' and has a lifetime
984  * identical to it (and the query to which it belongs).
985  *
986  * See the documentation of notmuch_query_search_threads for example
987  * code showing how to iterate over a notmuch_threads_t object.
988  *
989  * If an out-of-memory situation occurs, this function will return
990  * NULL.
991  */
992 notmuch_thread_t *
993 notmuch_threads_get (notmuch_threads_t *threads);
994
995 /**
996  * Move the 'threads' iterator to the next thread.
997  *
998  * If 'threads' is already pointing at the last thread then the
999  * iterator will be moved to a point just beyond that last thread,
1000  * (where notmuch_threads_valid will return FALSE and
1001  * notmuch_threads_get will return NULL).
1002  *
1003  * See the documentation of notmuch_query_search_threads for example
1004  * code showing how to iterate over a notmuch_threads_t object.
1005  */
1006 void
1007 notmuch_threads_move_to_next (notmuch_threads_t *threads);
1008
1009 /**
1010  * Destroy a notmuch_threads_t object.
1011  *
1012  * It's not strictly necessary to call this function. All memory from
1013  * the notmuch_threads_t object will be reclaimed when the
1014  * containing query object is destroyed.
1015  */
1016 void
1017 notmuch_threads_destroy (notmuch_threads_t *threads);
1018
1019 /**
1020  * Return the number of messages matching a search.
1021  *
1022  * This function performs a search and returns the number of matching
1023  * messages.
1024  *
1025  * @returns
1026  *
1027  * NOTMUCH_STATUS_SUCCESS: query completed successfully.
1028  *
1029  * NOTMUCH_STATUS_XAPIAN_EXCEPTION: a Xapian exception occured. The
1030  *      value of *count is not defined.
1031  *
1032  * @since libnotmuch 5 (notmuch 0.25)
1033  */
1034 notmuch_status_t
1035 notmuch_query_count_messages (notmuch_query_t *query, unsigned int *count);
1036
1037 /**
1038  * Deprecated alias for notmuch_query_count_messages
1039  *
1040  *
1041  * @deprecated Deprecated since libnotmuch 5.0 (notmuch 0.25). Please
1042  * use notmuch_query_count_messages instead.
1043  */
1044 NOTMUCH_DEPRECATED(5,0)
1045 notmuch_status_t
1046 notmuch_query_count_messages_st (notmuch_query_t *query, unsigned int *count);
1047
1048 /**
1049  * Return the number of threads matching a search.
1050  *
1051  * This function performs a search and returns the number of unique thread IDs
1052  * in the matching messages. This is the same as number of threads matching a
1053  * search.
1054  *
1055  * Note that this is a significantly heavier operation than
1056  * notmuch_query_count_messages{_st}().
1057  *
1058  * @returns
1059  *
1060  * NOTMUCH_STATUS_OUT_OF_MEMORY: Memory allocation failed. The value
1061  *      of *count is not defined
1062
1063  * NOTMUCH_STATUS_SUCCESS: query completed successfully.
1064  *
1065  * NOTMUCH_STATUS_XAPIAN_EXCEPTION: a Xapian exception occured. The
1066  *      value of *count is not defined.
1067  *
1068  * @since libnotmuch 5 (notmuch 0.25)
1069  */
1070 notmuch_status_t
1071 notmuch_query_count_threads (notmuch_query_t *query, unsigned *count);
1072
1073 /**
1074  * Deprecated alias for notmuch_query_count_threads
1075  *
1076  * @deprecated Deprecated as of libnotmuch 5.0 (notmuch 0.25). Please
1077  * use notmuch_query_count_threads_st instead.
1078  */
1079 NOTMUCH_DEPRECATED(5,0)
1080 notmuch_status_t
1081 notmuch_query_count_threads_st (notmuch_query_t *query, unsigned *count);
1082
1083 /**
1084  * Get the thread ID of 'thread'.
1085  *
1086  * The returned string belongs to 'thread' and as such, should not be
1087  * modified by the caller and will only be valid for as long as the
1088  * thread is valid, (which is until notmuch_thread_destroy or until
1089  * the query from which it derived is destroyed).
1090  */
1091 const char *
1092 notmuch_thread_get_thread_id (notmuch_thread_t *thread);
1093
1094 /**
1095  * Get the total number of messages in 'thread'.
1096  *
1097  * This count consists of all messages in the database belonging to
1098  * this thread. Contrast with notmuch_thread_get_matched_messages() .
1099  */
1100 int
1101 notmuch_thread_get_total_messages (notmuch_thread_t *thread);
1102
1103 /**
1104  * Get the total number of files in 'thread'.
1105  *
1106  * This sums notmuch_message_count_files over all messages in the
1107  * thread
1108  * @returns Non-negative integer
1109  * @since libnotmuch 5.0 (notmuch 0.25)
1110  */
1111
1112 int
1113 notmuch_thread_get_total_files (notmuch_thread_t *thread);
1114
1115 /**
1116  * Get a notmuch_messages_t iterator for the top-level messages in
1117  * 'thread' in oldest-first order.
1118  *
1119  * This iterator will not necessarily iterate over all of the messages
1120  * in the thread. It will only iterate over the messages in the thread
1121  * which are not replies to other messages in the thread.
1122  *
1123  * The returned list will be destroyed when the thread is destroyed.
1124  */
1125 notmuch_messages_t *
1126 notmuch_thread_get_toplevel_messages (notmuch_thread_t *thread);
1127
1128 /**
1129  * Get a notmuch_thread_t iterator for all messages in 'thread' in
1130  * oldest-first order.
1131  *
1132  * The returned list will be destroyed when the thread is destroyed.
1133  */
1134 notmuch_messages_t *
1135 notmuch_thread_get_messages (notmuch_thread_t *thread);
1136
1137 /**
1138  * Get the number of messages in 'thread' that matched the search.
1139  *
1140  * This count includes only the messages in this thread that were
1141  * matched by the search from which the thread was created and were
1142  * not excluded by any exclude tags passed in with the query (see
1143  * notmuch_query_add_tag_exclude). Contrast with
1144  * notmuch_thread_get_total_messages() .
1145  */
1146 int
1147 notmuch_thread_get_matched_messages (notmuch_thread_t *thread);
1148
1149 /**
1150  * Get the authors of 'thread' as a UTF-8 string.
1151  *
1152  * The returned string is a comma-separated list of the names of the
1153  * authors of mail messages in the query results that belong to this
1154  * thread.
1155  *
1156  * The string contains authors of messages matching the query first, then
1157  * non-matched authors (with the two groups separated by '|'). Within
1158  * each group, authors are ordered by date.
1159  *
1160  * The returned string belongs to 'thread' and as such, should not be
1161  * modified by the caller and will only be valid for as long as the
1162  * thread is valid, (which is until notmuch_thread_destroy or until
1163  * the query from which it derived is destroyed).
1164  */
1165 const char *
1166 notmuch_thread_get_authors (notmuch_thread_t *thread);
1167
1168 /**
1169  * Get the subject of 'thread' as a UTF-8 string.
1170  *
1171  * The subject is taken from the first message (according to the query
1172  * order---see notmuch_query_set_sort) in the query results that
1173  * belongs to this thread.
1174  *
1175  * The returned string belongs to 'thread' and as such, should not be
1176  * modified by the caller and will only be valid for as long as the
1177  * thread is valid, (which is until notmuch_thread_destroy or until
1178  * the query from which it derived is destroyed).
1179  */
1180 const char *
1181 notmuch_thread_get_subject (notmuch_thread_t *thread);
1182
1183 /**
1184  * Get the date of the oldest message in 'thread' as a time_t value.
1185  */
1186 time_t
1187 notmuch_thread_get_oldest_date (notmuch_thread_t *thread);
1188
1189 /**
1190  * Get the date of the newest message in 'thread' as a time_t value.
1191  */
1192 time_t
1193 notmuch_thread_get_newest_date (notmuch_thread_t *thread);
1194
1195 /**
1196  * Get the tags for 'thread', returning a notmuch_tags_t object which
1197  * can be used to iterate over all tags.
1198  *
1199  * Note: In the Notmuch database, tags are stored on individual
1200  * messages, not on threads. So the tags returned here will be all
1201  * tags of the messages which matched the search and which belong to
1202  * this thread.
1203  *
1204  * The tags object is owned by the thread and as such, will only be
1205  * valid for as long as the thread is valid, (for example, until
1206  * notmuch_thread_destroy or until the query from which it derived is
1207  * destroyed).
1208  *
1209  * Typical usage might be:
1210  *
1211  *     notmuch_thread_t *thread;
1212  *     notmuch_tags_t *tags;
1213  *     const char *tag;
1214  *
1215  *     thread = notmuch_threads_get (threads);
1216  *
1217  *     for (tags = notmuch_thread_get_tags (thread);
1218  *          notmuch_tags_valid (tags);
1219  *          notmuch_tags_move_to_next (tags))
1220  *     {
1221  *         tag = notmuch_tags_get (tags);
1222  *         ....
1223  *     }
1224  *
1225  *     notmuch_thread_destroy (thread);
1226  *
1227  * Note that there's no explicit destructor needed for the
1228  * notmuch_tags_t object. (For consistency, we do provide a
1229  * notmuch_tags_destroy function, but there's no good reason to call
1230  * it if the message is about to be destroyed).
1231  */
1232 notmuch_tags_t *
1233 notmuch_thread_get_tags (notmuch_thread_t *thread);
1234
1235 /**
1236  * Destroy a notmuch_thread_t object.
1237  */
1238 void
1239 notmuch_thread_destroy (notmuch_thread_t *thread);
1240
1241 /**
1242  * Is the given 'messages' iterator pointing at a valid message.
1243  *
1244  * When this function returns TRUE, notmuch_messages_get will return a
1245  * valid object. Whereas when this function returns FALSE,
1246  * notmuch_messages_get will return NULL.
1247  *
1248  * See the documentation of notmuch_query_search_messages for example
1249  * code showing how to iterate over a notmuch_messages_t object.
1250  */
1251 notmuch_bool_t
1252 notmuch_messages_valid (notmuch_messages_t *messages);
1253
1254 /**
1255  * Get the current message from 'messages' as a notmuch_message_t.
1256  *
1257  * Note: The returned message belongs to 'messages' and has a lifetime
1258  * identical to it (and the query to which it belongs).
1259  *
1260  * See the documentation of notmuch_query_search_messages for example
1261  * code showing how to iterate over a notmuch_messages_t object.
1262  *
1263  * If an out-of-memory situation occurs, this function will return
1264  * NULL.
1265  */
1266 notmuch_message_t *
1267 notmuch_messages_get (notmuch_messages_t *messages);
1268
1269 /**
1270  * Move the 'messages' iterator to the next message.
1271  *
1272  * If 'messages' is already pointing at the last message then the
1273  * iterator will be moved to a point just beyond that last message,
1274  * (where notmuch_messages_valid will return FALSE and
1275  * notmuch_messages_get will return NULL).
1276  *
1277  * See the documentation of notmuch_query_search_messages for example
1278  * code showing how to iterate over a notmuch_messages_t object.
1279  */
1280 void
1281 notmuch_messages_move_to_next (notmuch_messages_t *messages);
1282
1283 /**
1284  * Destroy a notmuch_messages_t object.
1285  *
1286  * It's not strictly necessary to call this function. All memory from
1287  * the notmuch_messages_t object will be reclaimed when the containing
1288  * query object is destroyed.
1289  */
1290 void
1291 notmuch_messages_destroy (notmuch_messages_t *messages);
1292
1293 /**
1294  * Return a list of tags from all messages.
1295  *
1296  * The resulting list is guaranteed not to contain duplicated tags.
1297  *
1298  * WARNING: You can no longer iterate over messages after calling this
1299  * function, because the iterator will point at the end of the list.
1300  * We do not have a function to reset the iterator yet and the only
1301  * way how you can iterate over the list again is to recreate the
1302  * message list.
1303  *
1304  * The function returns NULL on error.
1305  */
1306 notmuch_tags_t *
1307 notmuch_messages_collect_tags (notmuch_messages_t *messages);
1308
1309 /**
1310  * Get the message ID of 'message'.
1311  *
1312  * The returned string belongs to 'message' and as such, should not be
1313  * modified by the caller and will only be valid for as long as the
1314  * message is valid, (which is until the query from which it derived
1315  * is destroyed).
1316  *
1317  * This function will not return NULL since Notmuch ensures that every
1318  * message has a unique message ID, (Notmuch will generate an ID for a
1319  * message if the original file does not contain one).
1320  */
1321 const char *
1322 notmuch_message_get_message_id (notmuch_message_t *message);
1323
1324 /**
1325  * Get the thread ID of 'message'.
1326  *
1327  * The returned string belongs to 'message' and as such, should not be
1328  * modified by the caller and will only be valid for as long as the
1329  * message is valid, (for example, until the user calls
1330  * notmuch_message_destroy on 'message' or until a query from which it
1331  * derived is destroyed).
1332  *
1333  * This function will not return NULL since Notmuch ensures that every
1334  * message belongs to a single thread.
1335  */
1336 const char *
1337 notmuch_message_get_thread_id (notmuch_message_t *message);
1338
1339 /**
1340  * Get a notmuch_messages_t iterator for all of the replies to
1341  * 'message'.
1342  *
1343  * Note: This call only makes sense if 'message' was ultimately
1344  * obtained from a notmuch_thread_t object, (such as by coming
1345  * directly from the result of calling notmuch_thread_get_
1346  * toplevel_messages or by any number of subsequent
1347  * calls to notmuch_message_get_replies).
1348  *
1349  * If 'message' was obtained through some non-thread means, (such as
1350  * by a call to notmuch_query_search_messages), then this function
1351  * will return NULL.
1352  *
1353  * If there are no replies to 'message', this function will return
1354  * NULL. (Note that notmuch_messages_valid will accept that NULL
1355  * value as legitimate, and simply return FALSE for it.)
1356  */
1357 notmuch_messages_t *
1358 notmuch_message_get_replies (notmuch_message_t *message);
1359
1360 /**
1361  * Get the total number of files associated with a message.
1362  * @returns Non-negative integer
1363  * @since libnotmuch 5.0 (notmuch 0.25)
1364  */
1365 int
1366 notmuch_message_count_files (notmuch_message_t *message);
1367
1368 /**
1369  * Get a filename for the email corresponding to 'message'.
1370  *
1371  * The returned filename is an absolute filename, (the initial
1372  * component will match notmuch_database_get_path() ).
1373  *
1374  * The returned string belongs to the message so should not be
1375  * modified or freed by the caller (nor should it be referenced after
1376  * the message is destroyed).
1377  *
1378  * Note: If this message corresponds to multiple files in the mail
1379  * store, (that is, multiple files contain identical message IDs),
1380  * this function will arbitrarily return a single one of those
1381  * filenames. See notmuch_message_get_filenames for returning the
1382  * complete list of filenames.
1383  */
1384 const char *
1385 notmuch_message_get_filename (notmuch_message_t *message);
1386
1387 /**
1388  * Get all filenames for the email corresponding to 'message'.
1389  *
1390  * Returns a notmuch_filenames_t iterator listing all the filenames
1391  * associated with 'message'. These files may not have identical
1392  * content, but each will have the identical Message-ID.
1393  *
1394  * Each filename in the iterator is an absolute filename, (the initial
1395  * component will match notmuch_database_get_path() ).
1396  */
1397 notmuch_filenames_t *
1398 notmuch_message_get_filenames (notmuch_message_t *message);
1399
1400 /**
1401  * Re-index the e-mail corresponding to 'message' using the supplied index options
1402  *
1403  * Returns the status of the re-index operation.  (see the return
1404  * codes documented in notmuch_database_add_message)
1405  *
1406  * After reindexing, the user should discard the message object passed
1407  * in here by calling notmuch_message_destroy, since it refers to the
1408  * original message, not to the reindexed message.
1409  */
1410 notmuch_status_t
1411 notmuch_message_reindex (notmuch_message_t *message,
1412                          notmuch_param_t *indexopts);
1413
1414 /**
1415  * Message flags.
1416  */
1417 typedef enum _notmuch_message_flag {
1418     NOTMUCH_MESSAGE_FLAG_MATCH,
1419     NOTMUCH_MESSAGE_FLAG_EXCLUDED,
1420
1421     /* This message is a "ghost message", meaning it has no filenames
1422      * or content, but we know it exists because it was referenced by
1423      * some other message.  A ghost message has only a message ID and
1424      * thread ID.
1425      */
1426     NOTMUCH_MESSAGE_FLAG_GHOST,
1427 } notmuch_message_flag_t;
1428
1429 /**
1430  * Get a value of a flag for the email corresponding to 'message'.
1431  */
1432 notmuch_bool_t
1433 notmuch_message_get_flag (notmuch_message_t *message,
1434                           notmuch_message_flag_t flag);
1435
1436 /**
1437  * Set a value of a flag for the email corresponding to 'message'.
1438  */
1439 void
1440 notmuch_message_set_flag (notmuch_message_t *message,
1441                           notmuch_message_flag_t flag, notmuch_bool_t value);
1442
1443 /**
1444  * Get the date of 'message' as a time_t value.
1445  *
1446  * For the original textual representation of the Date header from the
1447  * message call notmuch_message_get_header() with a header value of
1448  * "date".
1449  */
1450 time_t
1451 notmuch_message_get_date  (notmuch_message_t *message);
1452
1453 /**
1454  * Get the value of the specified header from 'message' as a UTF-8 string.
1455  *
1456  * Common headers are stored in the database when the message is
1457  * indexed and will be returned from the database.  Other headers will
1458  * be read from the actual message file.
1459  *
1460  * The header name is case insensitive.
1461  *
1462  * The returned string belongs to the message so should not be
1463  * modified or freed by the caller (nor should it be referenced after
1464  * the message is destroyed).
1465  *
1466  * Returns an empty string ("") if the message does not contain a
1467  * header line matching 'header'. Returns NULL if any error occurs.
1468  */
1469 const char *
1470 notmuch_message_get_header (notmuch_message_t *message, const char *header);
1471
1472 /**
1473  * Get the tags for 'message', returning a notmuch_tags_t object which
1474  * can be used to iterate over all tags.
1475  *
1476  * The tags object is owned by the message and as such, will only be
1477  * valid for as long as the message is valid, (which is until the
1478  * query from which it derived is destroyed).
1479  *
1480  * Typical usage might be:
1481  *
1482  *     notmuch_message_t *message;
1483  *     notmuch_tags_t *tags;
1484  *     const char *tag;
1485  *
1486  *     message = notmuch_database_find_message (database, message_id);
1487  *
1488  *     for (tags = notmuch_message_get_tags (message);
1489  *          notmuch_tags_valid (tags);
1490  *          notmuch_tags_move_to_next (tags))
1491  *     {
1492  *         tag = notmuch_tags_get (tags);
1493  *         ....
1494  *     }
1495  *
1496  *     notmuch_message_destroy (message);
1497  *
1498  * Note that there's no explicit destructor needed for the
1499  * notmuch_tags_t object. (For consistency, we do provide a
1500  * notmuch_tags_destroy function, but there's no good reason to call
1501  * it if the message is about to be destroyed).
1502  */
1503 notmuch_tags_t *
1504 notmuch_message_get_tags (notmuch_message_t *message);
1505
1506 /**
1507  * The longest possible tag value.
1508  */
1509 #define NOTMUCH_TAG_MAX 200
1510
1511 /**
1512  * Add a tag to the given message.
1513  *
1514  * Return value:
1515  *
1516  * NOTMUCH_STATUS_SUCCESS: Tag successfully added to message
1517  *
1518  * NOTMUCH_STATUS_NULL_POINTER: The 'tag' argument is NULL
1519  *
1520  * NOTMUCH_STATUS_TAG_TOO_LONG: The length of 'tag' is too long
1521  *      (exceeds NOTMUCH_TAG_MAX)
1522  *
1523  * NOTMUCH_STATUS_READ_ONLY_DATABASE: Database was opened in read-only
1524  *      mode so message cannot be modified.
1525  */
1526 notmuch_status_t
1527 notmuch_message_add_tag (notmuch_message_t *message, const char *tag);
1528
1529 /**
1530  * Remove a tag from the given message.
1531  *
1532  * Return value:
1533  *
1534  * NOTMUCH_STATUS_SUCCESS: Tag successfully removed from message
1535  *
1536  * NOTMUCH_STATUS_NULL_POINTER: The 'tag' argument is NULL
1537  *
1538  * NOTMUCH_STATUS_TAG_TOO_LONG: The length of 'tag' is too long
1539  *      (exceeds NOTMUCH_TAG_MAX)
1540  *
1541  * NOTMUCH_STATUS_READ_ONLY_DATABASE: Database was opened in read-only
1542  *      mode so message cannot be modified.
1543  */
1544 notmuch_status_t
1545 notmuch_message_remove_tag (notmuch_message_t *message, const char *tag);
1546
1547 /**
1548  * Remove all tags from the given message.
1549  *
1550  * See notmuch_message_freeze for an example showing how to safely
1551  * replace tag values.
1552  *
1553  * NOTMUCH_STATUS_READ_ONLY_DATABASE: Database was opened in read-only
1554  *      mode so message cannot be modified.
1555  */
1556 notmuch_status_t
1557 notmuch_message_remove_all_tags (notmuch_message_t *message);
1558
1559 /**
1560  * Add/remove tags according to maildir flags in the message filename(s).
1561  *
1562  * This function examines the filenames of 'message' for maildir
1563  * flags, and adds or removes tags on 'message' as follows when these
1564  * flags are present:
1565  *
1566  *      Flag    Action if present
1567  *      ----    -----------------
1568  *      'D'     Adds the "draft" tag to the message
1569  *      'F'     Adds the "flagged" tag to the message
1570  *      'P'     Adds the "passed" tag to the message
1571  *      'R'     Adds the "replied" tag to the message
1572  *      'S'     Removes the "unread" tag from the message
1573  *
1574  * For each flag that is not present, the opposite action (add/remove)
1575  * is performed for the corresponding tags.
1576  *
1577  * Flags are identified as trailing components of the filename after a
1578  * sequence of ":2,".
1579  *
1580  * If there are multiple filenames associated with this message, the
1581  * flag is considered present if it appears in one or more
1582  * filenames. (That is, the flags from the multiple filenames are
1583  * combined with the logical OR operator.)
1584  *
1585  * A client can ensure that notmuch database tags remain synchronized
1586  * with maildir flags by calling this function after each call to
1587  * notmuch_database_add_message. See also
1588  * notmuch_message_tags_to_maildir_flags for synchronizing tag changes
1589  * back to maildir flags.
1590  */
1591 notmuch_status_t
1592 notmuch_message_maildir_flags_to_tags (notmuch_message_t *message);
1593
1594 /**
1595  * Rename message filename(s) to encode tags as maildir flags.
1596  *
1597  * Specifically, for each filename corresponding to this message:
1598  *
1599  * If the filename is not in a maildir directory, do nothing.  (A
1600  * maildir directory is determined as a directory named "new" or
1601  * "cur".) Similarly, if the filename has invalid maildir info,
1602  * (repeated or outof-ASCII-order flag characters after ":2,"), then
1603  * do nothing.
1604  *
1605  * If the filename is in a maildir directory, rename the file so that
1606  * its filename ends with the sequence ":2," followed by zero or more
1607  * of the following single-character flags (in ASCII order):
1608  *
1609  *   * flag 'D' iff the message has the "draft" tag
1610  *   * flag 'F' iff the message has the "flagged" tag
1611  *   * flag 'P' iff the message has the "passed" tag
1612  *   * flag 'R' iff the message has the "replied" tag
1613  *   * flag 'S' iff the message does not have the "unread" tag
1614  *
1615  * Any existing flags unmentioned in the list above will be preserved
1616  * in the renaming.
1617  *
1618  * Also, if this filename is in a directory named "new", rename it to
1619  * be within the neighboring directory named "cur".
1620  *
1621  * A client can ensure that maildir filename flags remain synchronized
1622  * with notmuch database tags by calling this function after changing
1623  * tags, (after calls to notmuch_message_add_tag,
1624  * notmuch_message_remove_tag, or notmuch_message_freeze/
1625  * notmuch_message_thaw). See also notmuch_message_maildir_flags_to_tags
1626  * for synchronizing maildir flag changes back to tags.
1627  */
1628 notmuch_status_t
1629 notmuch_message_tags_to_maildir_flags (notmuch_message_t *message);
1630
1631 /**
1632  * Freeze the current state of 'message' within the database.
1633  *
1634  * This means that changes to the message state, (via
1635  * notmuch_message_add_tag, notmuch_message_remove_tag, and
1636  * notmuch_message_remove_all_tags), will not be committed to the
1637  * database until the message is thawed with notmuch_message_thaw.
1638  *
1639  * Multiple calls to freeze/thaw are valid and these calls will
1640  * "stack". That is there must be as many calls to thaw as to freeze
1641  * before a message is actually thawed.
1642  *
1643  * The ability to do freeze/thaw allows for safe transactions to
1644  * change tag values. For example, explicitly setting a message to
1645  * have a given set of tags might look like this:
1646  *
1647  *    notmuch_message_freeze (message);
1648  *
1649  *    notmuch_message_remove_all_tags (message);
1650  *
1651  *    for (i = 0; i < NUM_TAGS; i++)
1652  *        notmuch_message_add_tag (message, tags[i]);
1653  *
1654  *    notmuch_message_thaw (message);
1655  *
1656  * With freeze/thaw used like this, the message in the database is
1657  * guaranteed to have either the full set of original tag values, or
1658  * the full set of new tag values, but nothing in between.
1659  *
1660  * Imagine the example above without freeze/thaw and the operation
1661  * somehow getting interrupted. This could result in the message being
1662  * left with no tags if the interruption happened after
1663  * notmuch_message_remove_all_tags but before notmuch_message_add_tag.
1664  *
1665  * Return value:
1666  *
1667  * NOTMUCH_STATUS_SUCCESS: Message successfully frozen.
1668  *
1669  * NOTMUCH_STATUS_READ_ONLY_DATABASE: Database was opened in read-only
1670  *      mode so message cannot be modified.
1671  */
1672 notmuch_status_t
1673 notmuch_message_freeze (notmuch_message_t *message);
1674
1675 /**
1676  * Thaw the current 'message', synchronizing any changes that may have
1677  * occurred while 'message' was frozen into the notmuch database.
1678  *
1679  * See notmuch_message_freeze for an example of how to use this
1680  * function to safely provide tag changes.
1681  *
1682  * Multiple calls to freeze/thaw are valid and these calls with
1683  * "stack". That is there must be as many calls to thaw as to freeze
1684  * before a message is actually thawed.
1685  *
1686  * Return value:
1687  *
1688  * NOTMUCH_STATUS_SUCCESS: Message successfully thawed, (or at least
1689  *      its frozen count has successfully been reduced by 1).
1690  *
1691  * NOTMUCH_STATUS_UNBALANCED_FREEZE_THAW: An attempt was made to thaw
1692  *      an unfrozen message. That is, there have been an unbalanced
1693  *      number of calls to notmuch_message_freeze and
1694  *      notmuch_message_thaw.
1695  */
1696 notmuch_status_t
1697 notmuch_message_thaw (notmuch_message_t *message);
1698
1699 /**
1700  * Destroy a notmuch_message_t object.
1701  *
1702  * It can be useful to call this function in the case of a single
1703  * query object with many messages in the result, (such as iterating
1704  * over the entire database). Otherwise, it's fine to never call this
1705  * function and there will still be no memory leaks. (The memory from
1706  * the messages get reclaimed when the containing query is destroyed.)
1707  */
1708 void
1709 notmuch_message_destroy (notmuch_message_t *message);
1710
1711 /**
1712  * @name Message Properties
1713  *
1714  * This interface provides the ability to attach arbitrary (key,value)
1715  * string pairs to a message, to remove such pairs, and to iterate
1716  * over them.  The caller should take some care as to what keys they
1717  * add or delete values for, as other subsystems or extensions may
1718  * depend on these properties.
1719  *
1720  */
1721 /**@{*/
1722 /**
1723  * Retrieve the value for a single property key
1724  *
1725  * *value* is set to a string owned by the message or NULL if there is
1726  * no such key. In the case of multiple values for the given key, the
1727  * first one is retrieved.
1728  *
1729  * @returns
1730  * - NOTMUCH_STATUS_NULL_POINTER: *value* may not be NULL.
1731  * - NOTMUCH_STATUS_SUCCESS: No error occured.
1732  * @since libnotmuch 4.4 (notmuch 0.23)
1733  */
1734 notmuch_status_t
1735 notmuch_message_get_property (notmuch_message_t *message, const char *key, const char **value);
1736
1737 /**
1738  * Add a (key,value) pair to a message
1739  *
1740  * @returns
1741  * - NOTMUCH_STATUS_ILLEGAL_ARGUMENT: *key* may not contain an '=' character.
1742  * - NOTMUCH_STATUS_NULL_POINTER: Neither *key* nor *value* may be NULL.
1743  * - NOTMUCH_STATUS_SUCCESS: No error occured.
1744  * @since libnotmuch 4.4 (notmuch 0.23)
1745  */
1746 notmuch_status_t
1747 notmuch_message_add_property (notmuch_message_t *message, const char *key, const char *value);
1748
1749 /**
1750  * Remove a (key,value) pair from a message.
1751  *
1752  * It is not an error to remove a non-existant (key,value) pair
1753  *
1754  * @returns
1755  * - NOTMUCH_STATUS_ILLEGAL_ARGUMENT: *key* may not contain an '=' character.
1756  * - NOTMUCH_STATUS_NULL_POINTER: Neither *key* nor *value* may be NULL.
1757  * - NOTMUCH_STATUS_SUCCESS: No error occured.
1758  * @since libnotmuch 4.4 (notmuch 0.23)
1759  */
1760 notmuch_status_t
1761 notmuch_message_remove_property (notmuch_message_t *message, const char *key, const char *value);
1762
1763 /**
1764  * Remove all (key,value) pairs from the given message.
1765  *
1766  * @param[in,out] message  message to operate on.
1767  * @param[in]     key      key to delete properties for. If NULL, delete
1768  *                         properties for all keys
1769  * @returns
1770  * - NOTMUCH_STATUS_READ_ONLY_DATABASE: Database was opened in
1771  *   read-only mode so message cannot be modified.
1772  * - NOTMUCH_STATUS_SUCCESS: No error occured.
1773  *
1774  * @since libnotmuch 4.4 (notmuch 0.23)
1775  */
1776 notmuch_status_t
1777 notmuch_message_remove_all_properties (notmuch_message_t *message, const char *key);
1778
1779 /**
1780  * Opaque message property iterator
1781  */
1782 typedef struct _notmuch_string_map_iterator notmuch_message_properties_t;
1783
1784 /**
1785  * Get the properties for *message*, returning a
1786  * notmuch_message_properties_t object which can be used to iterate
1787  * over all properties.
1788  *
1789  * The notmuch_message_properties_t object is owned by the message and
1790  * as such, will only be valid for as long as the message is valid,
1791  * (which is until the query from which it derived is destroyed).
1792  *
1793  * @param[in] message  The message to examine
1794  * @param[in] key      key or key prefix
1795  * @param[in] exact    if TRUE, require exact match with key. Otherwise
1796  *                     treat as prefix.
1797  *
1798  * Typical usage might be:
1799  *
1800  *     notmuch_message_properties_t *list;
1801  *
1802  *     for (list = notmuch_message_get_properties (message, "testkey1", TRUE);
1803  *          notmuch_message_properties_valid (list); notmuch_message_properties_move_to_next (list)) {
1804  *        printf("%s\n", notmuch_message_properties_value(list));
1805  *     }
1806  *
1807  *     notmuch_message_properties_destroy (list);
1808  *
1809  * Note that there's no explicit destructor needed for the
1810  * notmuch_message_properties_t object. (For consistency, we do
1811  * provide a notmuch_message_properities_destroy function, but there's
1812  * no good reason to call it if the message is about to be destroyed).
1813  *
1814  * @since libnotmuch 4.4 (notmuch 0.23)
1815  */
1816 notmuch_message_properties_t *
1817 notmuch_message_get_properties (notmuch_message_t *message, const char *key, notmuch_bool_t exact);
1818
1819 /**
1820  * Is the given *properties* iterator pointing at a valid (key,value)
1821  * pair.
1822  *
1823  * When this function returns TRUE,
1824  * notmuch_message_properties_{key,value} will return a valid string,
1825  * and notmuch_message_properties_move_to_next will do what it
1826  * says. Whereas when this function returns FALSE, calling any of
1827  * these functions results in undefined behaviour.
1828  *
1829  * See the documentation of notmuch_message_properties_get for example
1830  * code showing how to iterate over a notmuch_message_properties_t
1831  * object.
1832  *
1833  * @since libnotmuch 4.4 (notmuch 0.23)
1834  */
1835 notmuch_bool_t
1836 notmuch_message_properties_valid (notmuch_message_properties_t *properties);
1837
1838 /**
1839  * Move the *properties* iterator to the next (key,value) pair
1840  *
1841  * If *properties* is already pointing at the last pair then the iterator
1842  * will be moved to a point just beyond that last pair, (where
1843  * notmuch_message_properties_valid will return FALSE).
1844  *
1845  * See the documentation of notmuch_message_get_properties for example
1846  * code showing how to iterate over a notmuch_message_properties_t object.
1847  *
1848  * @since libnotmuch 4.4 (notmuch 0.23)
1849  */
1850 void
1851 notmuch_message_properties_move_to_next (notmuch_message_properties_t *properties);
1852
1853 /**
1854  * Return the key from the current (key,value) pair.
1855  *
1856  * this could be useful if iterating for a prefix
1857  *
1858  * @since libnotmuch 4.4 (notmuch 0.23)
1859  */
1860 const char *
1861 notmuch_message_properties_key (notmuch_message_properties_t *properties);
1862
1863 /**
1864  * Return the value from the current (key,value) pair.
1865  *
1866  * This could be useful if iterating for a prefix.
1867  *
1868  * @since libnotmuch 4.4 (notmuch 0.23)
1869  */
1870 const char *
1871 notmuch_message_properties_value (notmuch_message_properties_t *properties);
1872
1873
1874 /**
1875  * Destroy a notmuch_message_properties_t object.
1876  *
1877  * It's not strictly necessary to call this function. All memory from
1878  * the notmuch_message_properties_t object will be reclaimed when the
1879  * containing message object is destroyed.
1880  *
1881  * @since libnotmuch 4.4 (notmuch 0.23)
1882  */
1883 void
1884 notmuch_message_properties_destroy (notmuch_message_properties_t *properties);
1885
1886 /**@}*/
1887
1888 /**
1889  * Is the given 'tags' iterator pointing at a valid tag.
1890  *
1891  * When this function returns TRUE, notmuch_tags_get will return a
1892  * valid string. Whereas when this function returns FALSE,
1893  * notmuch_tags_get will return NULL.
1894  *
1895  * See the documentation of notmuch_message_get_tags for example code
1896  * showing how to iterate over a notmuch_tags_t object.
1897  */
1898 notmuch_bool_t
1899 notmuch_tags_valid (notmuch_tags_t *tags);
1900
1901 /**
1902  * Get the current tag from 'tags' as a string.
1903  *
1904  * Note: The returned string belongs to 'tags' and has a lifetime
1905  * identical to it (and the query to which it ultimately belongs).
1906  *
1907  * See the documentation of notmuch_message_get_tags for example code
1908  * showing how to iterate over a notmuch_tags_t object.
1909  */
1910 const char *
1911 notmuch_tags_get (notmuch_tags_t *tags);
1912
1913 /**
1914  * Move the 'tags' iterator to the next tag.
1915  *
1916  * If 'tags' is already pointing at the last tag then the iterator
1917  * will be moved to a point just beyond that last tag, (where
1918  * notmuch_tags_valid will return FALSE and notmuch_tags_get will
1919  * return NULL).
1920  *
1921  * See the documentation of notmuch_message_get_tags for example code
1922  * showing how to iterate over a notmuch_tags_t object.
1923  */
1924 void
1925 notmuch_tags_move_to_next (notmuch_tags_t *tags);
1926
1927 /**
1928  * Destroy a notmuch_tags_t object.
1929  *
1930  * It's not strictly necessary to call this function. All memory from
1931  * the notmuch_tags_t object will be reclaimed when the containing
1932  * message or query objects are destroyed.
1933  */
1934 void
1935 notmuch_tags_destroy (notmuch_tags_t *tags);
1936
1937 /**
1938  * Store an mtime within the database for 'directory'.
1939  *
1940  * The 'directory' should be an object retrieved from the database
1941  * with notmuch_database_get_directory for a particular path.
1942  *
1943  * The intention is for the caller to use the mtime to allow efficient
1944  * identification of new messages to be added to the database. The
1945  * recommended usage is as follows:
1946  *
1947  *   o Read the mtime of a directory from the filesystem
1948  *
1949  *   o Call add_message for all mail files in the directory
1950  *
1951  *   o Call notmuch_directory_set_mtime with the mtime read from the
1952  *     filesystem.
1953  *
1954  * Then, when wanting to check for updates to the directory in the
1955  * future, the client can call notmuch_directory_get_mtime and know
1956  * that it only needs to add files if the mtime of the directory and
1957  * files are newer than the stored timestamp.
1958  *
1959  * Note: The notmuch_directory_get_mtime function does not allow the
1960  * caller to distinguish a timestamp of 0 from a non-existent
1961  * timestamp. So don't store a timestamp of 0 unless you are
1962  * comfortable with that.
1963  *
1964  * Return value:
1965  *
1966  * NOTMUCH_STATUS_SUCCESS: mtime successfully stored in database.
1967  *
1968  * NOTMUCH_STATUS_XAPIAN_EXCEPTION: A Xapian exception
1969  *      occurred, mtime not stored.
1970  *
1971  * NOTMUCH_STATUS_READ_ONLY_DATABASE: Database was opened in read-only
1972  *      mode so directory mtime cannot be modified.
1973  */
1974 notmuch_status_t
1975 notmuch_directory_set_mtime (notmuch_directory_t *directory,
1976                              time_t mtime);
1977
1978 /**
1979  * Get the mtime of a directory, (as previously stored with
1980  * notmuch_directory_set_mtime).
1981  *
1982  * Returns 0 if no mtime has previously been stored for this
1983  * directory.
1984  */
1985 time_t
1986 notmuch_directory_get_mtime (notmuch_directory_t *directory);
1987
1988 /**
1989  * Get a notmuch_filenames_t iterator listing all the filenames of
1990  * messages in the database within the given directory.
1991  *
1992  * The returned filenames will be the basename-entries only (not
1993  * complete paths).
1994  */
1995 notmuch_filenames_t *
1996 notmuch_directory_get_child_files (notmuch_directory_t *directory);
1997
1998 /**
1999  * Get a notmuch_filenames_t iterator listing all the filenames of
2000  * sub-directories in the database within the given directory.
2001  *
2002  * The returned filenames will be the basename-entries only (not
2003  * complete paths).
2004  */
2005 notmuch_filenames_t *
2006 notmuch_directory_get_child_directories (notmuch_directory_t *directory);
2007
2008 /**
2009  * Delete directory document from the database, and destroy the
2010  * notmuch_directory_t object. Assumes any child directories and files
2011  * have been deleted by the caller.
2012  *
2013  * @since libnotmuch 4.3 (notmuch 0.21)
2014  */
2015 notmuch_status_t
2016 notmuch_directory_delete (notmuch_directory_t *directory);
2017
2018 /**
2019  * Destroy a notmuch_directory_t object.
2020  */
2021 void
2022 notmuch_directory_destroy (notmuch_directory_t *directory);
2023
2024 /**
2025  * Is the given 'filenames' iterator pointing at a valid filename.
2026  *
2027  * When this function returns TRUE, notmuch_filenames_get will return
2028  * a valid string. Whereas when this function returns FALSE,
2029  * notmuch_filenames_get will return NULL.
2030  *
2031  * It is acceptable to pass NULL for 'filenames', in which case this
2032  * function will always return FALSE.
2033  */
2034 notmuch_bool_t
2035 notmuch_filenames_valid (notmuch_filenames_t *filenames);
2036
2037 /**
2038  * Get the current filename from 'filenames' as a string.
2039  *
2040  * Note: The returned string belongs to 'filenames' and has a lifetime
2041  * identical to it (and the directory to which it ultimately belongs).
2042  *
2043  * It is acceptable to pass NULL for 'filenames', in which case this
2044  * function will always return NULL.
2045  */
2046 const char *
2047 notmuch_filenames_get (notmuch_filenames_t *filenames);
2048
2049 /**
2050  * Move the 'filenames' iterator to the next filename.
2051  *
2052  * If 'filenames' is already pointing at the last filename then the
2053  * iterator will be moved to a point just beyond that last filename,
2054  * (where notmuch_filenames_valid will return FALSE and
2055  * notmuch_filenames_get will return NULL).
2056  *
2057  * It is acceptable to pass NULL for 'filenames', in which case this
2058  * function will do nothing.
2059  */
2060 void
2061 notmuch_filenames_move_to_next (notmuch_filenames_t *filenames);
2062
2063 /**
2064  * Destroy a notmuch_filenames_t object.
2065  *
2066  * It's not strictly necessary to call this function. All memory from
2067  * the notmuch_filenames_t object will be reclaimed when the
2068  * containing directory object is destroyed.
2069  *
2070  * It is acceptable to pass NULL for 'filenames', in which case this
2071  * function will do nothing.
2072  */
2073 void
2074 notmuch_filenames_destroy (notmuch_filenames_t *filenames);
2075
2076
2077 /**
2078  * set config 'key' to 'value'
2079  *
2080  * @since libnotmuch 4.4 (notmuch 0.23)
2081  */
2082 notmuch_status_t
2083 notmuch_database_set_config (notmuch_database_t *db, const char *key, const char *value);
2084
2085 /**
2086  * retrieve config item 'key', assign to  'value'
2087  *
2088  * keys which have not been previously set with n_d_set_config will
2089  * return an empty string.
2090  *
2091  * return value is allocated by malloc and should be freed by the
2092  * caller.
2093  *
2094  * @since libnotmuch 4.4 (notmuch 0.23)
2095  */
2096 notmuch_status_t
2097 notmuch_database_get_config (notmuch_database_t *db, const char *key, char **value);
2098
2099 /**
2100  * Create an iterator for all config items with keys matching a given prefix
2101  *
2102  * @since libnotmuch 4.4 (notmuch 0.23)
2103  */
2104 notmuch_status_t
2105 notmuch_database_get_config_list (notmuch_database_t *db, const char *prefix, notmuch_config_list_t **out);
2106
2107 /**
2108  * Is 'config_list' iterator valid (i.e. _key, _value, _move_to_next can be called).
2109  *
2110  * @since libnotmuch 4.4 (notmuch 0.23)
2111  */
2112 notmuch_bool_t
2113 notmuch_config_list_valid (notmuch_config_list_t *config_list);
2114
2115 /**
2116  * return key for current config pair
2117  *
2118  * return value is owned by the iterator, and will be destroyed by the
2119  * next call to notmuch_config_list_key or notmuch_config_list_destroy.
2120  *
2121  * @since libnotmuch 4.4 (notmuch 0.23)
2122  */
2123 const char *
2124 notmuch_config_list_key (notmuch_config_list_t *config_list);
2125
2126 /**
2127  * return 'value' for current config pair
2128  *
2129  * return value is owned by the iterator, and will be destroyed by the
2130  * next call to notmuch_config_list_value or notmuch config_list_destroy
2131  *
2132  * @since libnotmuch 4.4 (notmuch 0.23)
2133  */
2134 const char *
2135 notmuch_config_list_value (notmuch_config_list_t *config_list);
2136
2137
2138 /**
2139  * move 'config_list' iterator to the next pair
2140  *
2141  * @since libnotmuch 4.4 (notmuch 0.23)
2142  */
2143 void
2144 notmuch_config_list_move_to_next (notmuch_config_list_t *config_list);
2145
2146 /**
2147  * free any resources held by 'config_list'
2148  *
2149  * @since libnotmuch 4.4 (notmuch 0.23)
2150  */
2151 void
2152 notmuch_config_list_destroy (notmuch_config_list_t *config_list);
2153
2154 /**
2155  * interrogate the library for compile time features
2156  *
2157  * @since libnotmuch 4.4 (notmuch 0.23)
2158  */
2159 notmuch_bool_t
2160 notmuch_built_with (const char *name);
2161 /* @} */
2162
2163 #pragma GCC visibility pop
2164
2165 NOTMUCH_END_DECLS
2166
2167 #endif