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