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