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