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