]> git.notmuchmail.org Git - notmuch/blob - lib/notmuch.h
lib: Update doc of notmuch_database_{needs_upgrade,upgrade}
[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 http://www.gnu.org/licenses/ .
17  *
18  * Author: Carl Worth <cworth@cworth.org>
19  */
20
21 /**
22  * @defgroup notmuch The notmuch API
23  *
24  * Not much of an email library, (just index and search)
25  *
26  * @{
27  */
28
29 #ifndef NOTMUCH_H
30 #define NOTMUCH_H
31
32 #ifndef __DOXYGEN__
33
34 #ifdef  __cplusplus
35 # define NOTMUCH_BEGIN_DECLS  extern "C" {
36 # define NOTMUCH_END_DECLS    }
37 #else
38 # define NOTMUCH_BEGIN_DECLS
39 # define NOTMUCH_END_DECLS
40 #endif
41
42 NOTMUCH_BEGIN_DECLS
43
44 #include <time.h>
45
46 #ifndef FALSE
47 #define FALSE 0
48 #endif
49
50 #ifndef TRUE
51 #define TRUE 1
52 #endif
53
54 /*
55  * The library version number.  This must agree with the soname
56  * version in Makefile.local.
57  */
58 #define LIBNOTMUCH_MAJOR_VERSION        3
59 #define LIBNOTMUCH_MINOR_VERSION        1
60 #define LIBNOTMUCH_MICRO_VERSION        0
61
62 #endif /* __DOXYGEN__ */
63
64 /**
65  * Check the version of the notmuch library being compiled against.
66  *
67  * Return true if the library being compiled against is of the
68  * specified version or above. For example:
69  *
70  * @code
71  * #if LIBNOTMUCH_CHECK_VERSION(3, 1, 0)
72  *     (code requiring libnotmuch 3.1.0 or above)
73  * #endif
74  * @endcode
75  *
76  * LIBNOTMUCH_CHECK_VERSION has been defined since version 3.1.0; to
77  * check for versions prior to that, use:
78  *
79  * @code
80  * #if !defined(NOTMUCH_CHECK_VERSION)
81  *     (code requiring libnotmuch prior to 3.1.0)
82  * #endif
83  * @endcode
84  */
85 #define LIBNOTMUCH_CHECK_VERSION (major, minor, micro)                  \
86     (LIBNOTMUCH_MAJOR_VERSION > (major) ||                                      \
87      (LIBNOTMUCH_MAJOR_VERSION == (major) && LIBNOTMUCH_MINOR_VERSION > (minor)) || \
88      (LIBNOTMUCH_MAJOR_VERSION == (major) && LIBNOTMUCH_MINOR_VERSION == (minor) && \
89       LIBNOTMUCH_MICRO_VERSION >= (micro)))
90
91 /**
92  * Notmuch boolean type.
93  */
94 typedef int notmuch_bool_t;
95
96 /**
97  * Status codes used for the return values of most functions.
98  *
99  * A zero value (NOTMUCH_STATUS_SUCCESS) indicates that the function
100  * completed without error. Any other value indicates an error.
101  */
102 typedef enum _notmuch_status {
103     /**
104      * No error occurred.
105      */
106     NOTMUCH_STATUS_SUCCESS = 0,
107     /**
108      * Out of memory.
109      */
110     NOTMUCH_STATUS_OUT_OF_MEMORY,
111     /**
112      * An attempt was made to write to a database opened in read-only
113      * mode.
114      */
115     NOTMUCH_STATUS_READ_ONLY_DATABASE,
116     /**
117      * A Xapian exception occurred.
118      */
119     NOTMUCH_STATUS_XAPIAN_EXCEPTION,
120     /**
121      * An error occurred trying to read or write to a file (this could
122      * be file not found, permission denied, etc.)
123      *
124      * @todo We don't really want to expose this lame XAPIAN_EXCEPTION
125      * value. Instead we should map to things like DATABASE_LOCKED or
126      * whatever.
127      */
128     NOTMUCH_STATUS_FILE_ERROR,
129     /**
130      * A file was presented that doesn't appear to be an email
131      * message.
132      */
133     NOTMUCH_STATUS_FILE_NOT_EMAIL,
134     /**
135      * A file contains a message ID that is identical to a message
136      * already in the database.
137      */
138     NOTMUCH_STATUS_DUPLICATE_MESSAGE_ID,
139     /**
140      * The user erroneously passed a NULL pointer to a notmuch
141      * function.
142      */
143     NOTMUCH_STATUS_NULL_POINTER,
144     /**
145      * A tag value is too long (exceeds NOTMUCH_TAG_MAX).
146      */
147     NOTMUCH_STATUS_TAG_TOO_LONG,
148     /**
149      * The notmuch_message_thaw function has been called more times
150      * than notmuch_message_freeze.
151      */
152     NOTMUCH_STATUS_UNBALANCED_FREEZE_THAW,
153     /**
154      * notmuch_database_end_atomic has been called more times than
155      * notmuch_database_begin_atomic.
156      */
157     NOTMUCH_STATUS_UNBALANCED_ATOMIC,
158     /**
159      * The operation is not supported.
160      */
161     NOTMUCH_STATUS_UNSUPPORTED_OPERATION,
162     /**
163      * The operation requires a database upgrade.
164      */
165     NOTMUCH_STATUS_UPGRADE_REQUIRED,
166     /**
167      * Not an actual status value. Just a way to find out how many
168      * valid status values there are.
169      */
170     NOTMUCH_STATUS_LAST_STATUS
171 } notmuch_status_t;
172
173 /**
174  * Get a string representation of a notmuch_status_t value.
175  *
176  * The result is read-only.
177  */
178 const char *
179 notmuch_status_to_string (notmuch_status_t status);
180
181 /* Various opaque data types. For each notmuch_<foo>_t see the various
182  * notmuch_<foo> functions below. */
183 #ifndef __DOXYGEN__
184 typedef struct _notmuch_database notmuch_database_t;
185 typedef struct _notmuch_query notmuch_query_t;
186 typedef struct _notmuch_threads notmuch_threads_t;
187 typedef struct _notmuch_thread notmuch_thread_t;
188 typedef struct _notmuch_messages notmuch_messages_t;
189 typedef struct _notmuch_message notmuch_message_t;
190 typedef struct _notmuch_tags notmuch_tags_t;
191 typedef struct _notmuch_directory notmuch_directory_t;
192 typedef struct _notmuch_filenames notmuch_filenames_t;
193 #endif /* __DOXYGEN__ */
194
195 /**
196  * Create a new, empty notmuch database located at 'path'.
197  *
198  * The path should be a top-level directory to a collection of
199  * plain-text email messages (one message per file). This call will
200  * create a new ".notmuch" directory within 'path' where notmuch will
201  * store its data.
202  *
203  * After a successful call to notmuch_database_create, the returned
204  * database will be open so the caller should call
205  * notmuch_database_destroy when finished with it.
206  *
207  * The database will not yet have any data in it
208  * (notmuch_database_create itself is a very cheap function). Messages
209  * contained within 'path' can be added to the database by calling
210  * notmuch_database_add_message.
211  *
212  * In case of any failure, this function returns an error status and
213  * sets *database to NULL (after printing an error message on stderr).
214  *
215  * Return value:
216  *
217  * NOTMUCH_STATUS_SUCCESS: Successfully created the database.
218  *
219  * NOTMUCH_STATUS_NULL_POINTER: The given 'path' argument is NULL.
220  *
221  * NOTMUCH_STATUS_OUT_OF_MEMORY: Out of memory.
222  *
223  * NOTMUCH_STATUS_FILE_ERROR: An error occurred trying to create the
224  *      database file (such as permission denied, or file not found,
225  *      etc.), or the database already exists.
226  *
227  * NOTMUCH_STATUS_XAPIAN_EXCEPTION: A Xapian exception occurred.
228  */
229 notmuch_status_t
230 notmuch_database_create (const char *path, notmuch_database_t **database);
231
232 /**
233  * Database open mode for notmuch_database_open.
234  */
235 typedef enum {
236     /**
237      * Open database for reading only.
238      */
239     NOTMUCH_DATABASE_MODE_READ_ONLY = 0,
240     /**
241      * Open database for reading and writing.
242      */
243     NOTMUCH_DATABASE_MODE_READ_WRITE
244 } notmuch_database_mode_t;
245
246 /**
247  * Open an existing notmuch database located at 'path'.
248  *
249  * The database should have been created at some time in the past,
250  * (not necessarily by this process), by calling
251  * notmuch_database_create with 'path'. By default the database should be
252  * opened for reading only. In order to write to the database you need to
253  * pass the NOTMUCH_DATABASE_MODE_READ_WRITE mode.
254  *
255  * An existing notmuch database can be identified by the presence of a
256  * directory named ".notmuch" below 'path'.
257  *
258  * The caller should call notmuch_database_destroy when finished with
259  * this database.
260  *
261  * In case of any failure, this function returns an error status and
262  * sets *database to NULL (after printing an error message on stderr).
263  *
264  * Return value:
265  *
266  * NOTMUCH_STATUS_SUCCESS: Successfully opened the database.
267  *
268  * NOTMUCH_STATUS_NULL_POINTER: The given 'path' argument is NULL.
269  *
270  * NOTMUCH_STATUS_OUT_OF_MEMORY: Out of memory.
271  *
272  * NOTMUCH_STATUS_FILE_ERROR: An error occurred trying to open the
273  *      database file (such as permission denied, or file not found,
274  *      etc.), or the database version is unknown.
275  *
276  * NOTMUCH_STATUS_XAPIAN_EXCEPTION: A Xapian exception occurred.
277  */
278 notmuch_status_t
279 notmuch_database_open (const char *path,
280                        notmuch_database_mode_t mode,
281                        notmuch_database_t **database);
282
283 /**
284  * Close the given notmuch database.
285  *
286  * After notmuch_database_close has been called, calls to other
287  * functions on objects derived from this database may either behave
288  * as if the database had not been closed (e.g., if the required data
289  * has been cached) or may fail with a
290  * NOTMUCH_STATUS_XAPIAN_EXCEPTION.
291  *
292  * notmuch_database_close can be called multiple times.  Later calls
293  * have no effect.
294  *
295  * Return value:
296  *
297  * NOTMUCH_STATUS_SUCCESS: Successfully closed the database.
298  *
299  * NOTMUCH_STATUS_XAPIAN_EXCEPTION: A Xapian exception occurred; the
300  *      database has been closed but there are no guarantees the
301  *      changes to the database, if any, have been flushed to disk.
302  */
303 notmuch_status_t
304 notmuch_database_close (notmuch_database_t *database);
305
306 /**
307  * A callback invoked by notmuch_database_compact to notify the user
308  * of the progress of the compaction process.
309  */
310 typedef void (*notmuch_compact_status_cb_t)(const char *message, void *closure);
311
312 /**
313  * Compact a notmuch database, backing up the original database to the
314  * given path.
315  *
316  * The database will be opened with NOTMUCH_DATABASE_MODE_READ_WRITE
317  * during the compaction process to ensure no writes are made.
318  *
319  * If the optional callback function 'status_cb' is non-NULL, it will
320  * be called with diagnostic and informational messages. The argument
321  * 'closure' is passed verbatim to any callback invoked.
322  */
323 notmuch_status_t
324 notmuch_database_compact (const char* path,
325                           const char* backup_path,
326                           notmuch_compact_status_cb_t status_cb,
327                           void *closure);
328
329 /**
330  * Destroy the notmuch database, closing it if necessary and freeing
331  * all associated resources.
332  *
333  * Return value as in notmuch_database_close if the database was open;
334  * notmuch_database_destroy itself has no failure modes.
335  */
336 notmuch_status_t
337 notmuch_database_destroy (notmuch_database_t *database);
338
339 /**
340  * Return the database path of the given database.
341  *
342  * The return value is a string owned by notmuch so should not be
343  * modified nor freed by the caller.
344  */
345 const char *
346 notmuch_database_get_path (notmuch_database_t *database);
347
348 /**
349  * Return the database format version of the given database.
350  */
351 unsigned int
352 notmuch_database_get_version (notmuch_database_t *database);
353
354 /**
355  * Can the database be upgraded to a newer database version?
356  *
357  * If this function returns TRUE, then the caller may call
358  * notmuch_database_upgrade to upgrade the database.  If the caller
359  * does not upgrade an out-of-date database, then some functions may
360  * fail with NOTMUCH_STATUS_UPGRADE_REQUIRED.  This always returns
361  * FALSE for a read-only database because there's no way to upgrade a
362  * read-only database.
363  */
364 notmuch_bool_t
365 notmuch_database_needs_upgrade (notmuch_database_t *database);
366
367 /**
368  * Upgrade the current database to the latest supported version.
369  *
370  * This ensures that all current notmuch functionality will be
371  * available on the database.  After opening a database in read-write
372  * mode, it is recommended that clients check if an upgrade is needed
373  * (notmuch_database_needs_upgrade) and if so, upgrade with this
374  * function before making any modifications.  If
375  * notmuch_database_needs_upgrade returns FALSE, this will be a no-op.
376  *
377  * The optional progress_notify callback can be used by the caller to
378  * provide progress indication to the user. If non-NULL it will be
379  * called periodically with 'progress' as a floating-point value in
380  * the range of [0.0 .. 1.0] indicating the progress made so far in
381  * the upgrade process.  The argument 'closure' is passed verbatim to
382  * any callback invoked.
383  */
384 notmuch_status_t
385 notmuch_database_upgrade (notmuch_database_t *database,
386                           void (*progress_notify) (void *closure,
387                                                    double progress),
388                           void *closure);
389
390 /**
391  * Begin an atomic database operation.
392  *
393  * Any modifications performed between a successful begin and a
394  * notmuch_database_end_atomic will be applied to the database
395  * atomically.  Note that, unlike a typical database transaction, this
396  * only ensures atomicity, not durability; neither begin nor end
397  * necessarily flush modifications to disk.
398  *
399  * Atomic sections may be nested.  begin_atomic and end_atomic must
400  * always be called in pairs.
401  *
402  * Return value:
403  *
404  * NOTMUCH_STATUS_SUCCESS: Successfully entered atomic section.
405  *
406  * NOTMUCH_STATUS_XAPIAN_EXCEPTION: A Xapian exception occurred;
407  *      atomic section not entered.
408  */
409 notmuch_status_t
410 notmuch_database_begin_atomic (notmuch_database_t *notmuch);
411
412 /**
413  * Indicate the end of an atomic database operation.
414  *
415  * Return value:
416  *
417  * NOTMUCH_STATUS_SUCCESS: Successfully completed atomic section.
418  *
419  * NOTMUCH_STATUS_XAPIAN_EXCEPTION: A Xapian exception occurred;
420  *      atomic section not ended.
421  *
422  * NOTMUCH_STATUS_UNBALANCED_ATOMIC: The database is not currently in
423  *      an atomic section.
424  */
425 notmuch_status_t
426 notmuch_database_end_atomic (notmuch_database_t *notmuch);
427
428 /**
429  * Retrieve a directory object from the database for 'path'.
430  *
431  * Here, 'path' should be a path relative to the path of 'database'
432  * (see notmuch_database_get_path), or else should be an absolute path
433  * with initial components that match the path of 'database'.
434  *
435  * If this directory object does not exist in the database, this
436  * returns NOTMUCH_STATUS_SUCCESS and sets *directory to NULL.
437  *
438  * Otherwise the returned directory object is owned by the database
439  * and as such, will only be valid until notmuch_database_destroy is
440  * called.
441  *
442  * Return value:
443  *
444  * NOTMUCH_STATUS_SUCCESS: Successfully retrieved directory.
445  *
446  * NOTMUCH_STATUS_NULL_POINTER: The given 'directory' argument is NULL.
447  *
448  * NOTMUCH_STATUS_XAPIAN_EXCEPTION: A Xapian exception occurred;
449  *      directory not retrieved.
450  *
451  * NOTMUCH_STATUS_UPGRADE_REQUIRED: The caller must upgrade the
452  *      database to use this function.
453  */
454 notmuch_status_t
455 notmuch_database_get_directory (notmuch_database_t *database,
456                                 const char *path,
457                                 notmuch_directory_t **directory);
458
459 /**
460  * Add a new message to the given notmuch database or associate an
461  * additional filename with an existing message.
462  *
463  * Here, 'filename' should be a path relative to the path of
464  * 'database' (see notmuch_database_get_path), or else should be an
465  * absolute filename with initial components that match the path of
466  * 'database'.
467  *
468  * The file should be a single mail message (not a multi-message mbox)
469  * that is expected to remain at its current location, (since the
470  * notmuch database will reference the filename, and will not copy the
471  * entire contents of the file.
472  *
473  * If another message with the same message ID already exists in the
474  * database, rather than creating a new message, this adds 'filename'
475  * to the list of the filenames for the existing message.
476  *
477  * If 'message' is not NULL, then, on successful return
478  * (NOTMUCH_STATUS_SUCCESS or NOTMUCH_STATUS_DUPLICATE_MESSAGE_ID) '*message'
479  * will be initialized to a message object that can be used for things
480  * such as adding tags to the just-added message. The user should call
481  * notmuch_message_destroy when done with the message. On any failure
482  * '*message' will be set to NULL.
483  *
484  * Return value:
485  *
486  * NOTMUCH_STATUS_SUCCESS: Message successfully added to database.
487  *
488  * NOTMUCH_STATUS_XAPIAN_EXCEPTION: A Xapian exception occurred,
489  *      message not added.
490  *
491  * NOTMUCH_STATUS_DUPLICATE_MESSAGE_ID: Message has the same message
492  *      ID as another message already in the database. The new
493  *      filename was successfully added to the message in the database
494  *      (if not already present) and the existing message is returned.
495  *
496  * NOTMUCH_STATUS_FILE_ERROR: an error occurred trying to open the
497  *      file, (such as permission denied, or file not found,
498  *      etc.). Nothing added to the database.
499  *
500  * NOTMUCH_STATUS_FILE_NOT_EMAIL: the contents of filename don't look
501  *      like an email message. Nothing added to the database.
502  *
503  * NOTMUCH_STATUS_READ_ONLY_DATABASE: Database was opened in read-only
504  *      mode so no message can be added.
505  *
506  * NOTMUCH_STATUS_UPGRADE_REQUIRED: The caller must upgrade the
507  *      database to use this function.
508  */
509 notmuch_status_t
510 notmuch_database_add_message (notmuch_database_t *database,
511                               const char *filename,
512                               notmuch_message_t **message);
513
514 /**
515  * Remove a message filename from the given notmuch database. If the
516  * message has no more filenames, remove the message.
517  *
518  * If the same message (as determined by the message ID) is still
519  * available via other filenames, then the message will persist in the
520  * database for those filenames. When the last filename is removed for
521  * a particular message, the database content for that message will be
522  * entirely removed.
523  *
524  * Return value:
525  *
526  * NOTMUCH_STATUS_SUCCESS: The last filename was removed and the
527  *      message was removed from the database.
528  *
529  * NOTMUCH_STATUS_XAPIAN_EXCEPTION: A Xapian exception occurred,
530  *      message not removed.
531  *
532  * NOTMUCH_STATUS_DUPLICATE_MESSAGE_ID: This filename was removed but
533  *      the message persists in the database with at least one other
534  *      filename.
535  *
536  * NOTMUCH_STATUS_READ_ONLY_DATABASE: Database was opened in read-only
537  *      mode so no message can be removed.
538  *
539  * NOTMUCH_STATUS_UPGRADE_REQUIRED: The caller must upgrade the
540  *      database to use this function.
541  */
542 notmuch_status_t
543 notmuch_database_remove_message (notmuch_database_t *database,
544                                  const char *filename);
545
546 /**
547  * Find a message with the given message_id.
548  *
549  * If a message with the given message_id is found then, on successful return
550  * (NOTMUCH_STATUS_SUCCESS) '*message' will be initialized to a message
551  * object.  The caller should call notmuch_message_destroy when done with the
552  * message.
553  *
554  * On any failure or when the message is not found, this function initializes
555  * '*message' to NULL. This means, when NOTMUCH_STATUS_SUCCESS is returned, the
556  * caller is supposed to check '*message' for NULL to find out whether the
557  * message with the given message_id was found.
558  *
559  * Return value:
560  *
561  * NOTMUCH_STATUS_SUCCESS: Successful return, check '*message'.
562  *
563  * NOTMUCH_STATUS_NULL_POINTER: The given 'message' argument is NULL
564  *
565  * NOTMUCH_STATUS_OUT_OF_MEMORY: Out of memory, creating message object
566  *
567  * NOTMUCH_STATUS_XAPIAN_EXCEPTION: A Xapian exception occurred
568  */
569 notmuch_status_t
570 notmuch_database_find_message (notmuch_database_t *database,
571                                const char *message_id,
572                                notmuch_message_t **message);
573
574 /**
575  * Find a message with the given filename.
576  *
577  * If the database contains a message with the given filename then, on
578  * successful return (NOTMUCH_STATUS_SUCCESS) '*message' will be initialized to
579  * a message object. The caller should call notmuch_message_destroy when done
580  * with the message.
581  *
582  * On any failure or when the message is not found, this function initializes
583  * '*message' to NULL. This means, when NOTMUCH_STATUS_SUCCESS is returned, the
584  * caller is supposed to check '*message' for NULL to find out whether the
585  * message with the given filename is found.
586  *
587  * Return value:
588  *
589  * NOTMUCH_STATUS_SUCCESS: Successful return, check '*message'
590  *
591  * NOTMUCH_STATUS_NULL_POINTER: The given 'message' argument is NULL
592  *
593  * NOTMUCH_STATUS_OUT_OF_MEMORY: Out of memory, creating the message object
594  *
595  * NOTMUCH_STATUS_XAPIAN_EXCEPTION: A Xapian exception occurred
596  *
597  * NOTMUCH_STATUS_UPGRADE_REQUIRED: The caller must upgrade the
598  *      database to use this function.
599  */
600 notmuch_status_t
601 notmuch_database_find_message_by_filename (notmuch_database_t *notmuch,
602                                            const char *filename,
603                                            notmuch_message_t **message);
604
605 /**
606  * Return a list of all tags found in the database.
607  *
608  * This function creates a list of all tags found in the database. The
609  * resulting list contains all tags from all messages found in the database.
610  *
611  * On error this function returns NULL.
612  */
613 notmuch_tags_t *
614 notmuch_database_get_all_tags (notmuch_database_t *db);
615
616 /**
617  * Create a new query for 'database'.
618  *
619  * Here, 'database' should be an open database, (see
620  * notmuch_database_open and notmuch_database_create).
621  *
622  * For the query string, we'll document the syntax here more
623  * completely in the future, but it's likely to be a specialized
624  * version of the general Xapian query syntax:
625  *
626  * http://xapian.org/docs/queryparser.html
627  *
628  * As a special case, passing either a length-zero string, (that is ""),
629  * or a string consisting of a single asterisk (that is "*"), will
630  * result in a query that returns all messages in the database.
631  *
632  * See notmuch_query_set_sort for controlling the order of results.
633  * See notmuch_query_search_messages and notmuch_query_search_threads
634  * to actually execute the query.
635  *
636  * User should call notmuch_query_destroy when finished with this
637  * query.
638  *
639  * Will return NULL if insufficient memory is available.
640  */
641 notmuch_query_t *
642 notmuch_query_create (notmuch_database_t *database,
643                       const char *query_string);
644
645 /**
646  * Sort values for notmuch_query_set_sort.
647  */
648 typedef enum {
649     /**
650      * Oldest first.
651      */
652     NOTMUCH_SORT_OLDEST_FIRST,
653     /**
654      * Newest first.
655      */
656     NOTMUCH_SORT_NEWEST_FIRST,
657     /**
658      * Sort by message-id.
659      */
660     NOTMUCH_SORT_MESSAGE_ID,
661     /**
662      * Do not sort.
663      */
664     NOTMUCH_SORT_UNSORTED
665 } notmuch_sort_t;
666
667 /**
668  * Return the query_string of this query. See notmuch_query_create.
669  */
670 const char *
671 notmuch_query_get_query_string (notmuch_query_t *query);
672
673 /**
674  * Exclude values for notmuch_query_set_omit_excluded. The strange
675  * order is to maintain backward compatibility: the old FALSE/TRUE
676  * options correspond to the new
677  * NOTMUCH_EXCLUDE_FLAG/NOTMUCH_EXCLUDE_TRUE options.
678  */
679 typedef enum {
680     NOTMUCH_EXCLUDE_FLAG,
681     NOTMUCH_EXCLUDE_TRUE,
682     NOTMUCH_EXCLUDE_FALSE,
683     NOTMUCH_EXCLUDE_ALL
684 } notmuch_exclude_t;
685
686 /**
687  * Specify whether to omit excluded results or simply flag them.  By
688  * default, this is set to TRUE.
689  *
690  * If set to TRUE or ALL, notmuch_query_search_messages will omit excluded
691  * messages from the results, and notmuch_query_search_threads will omit
692  * threads that match only in excluded messages.  If set to TRUE,
693  * notmuch_query_search_threads will include all messages in threads that
694  * match in at least one non-excluded message.  Otherwise, if set to ALL,
695  * notmuch_query_search_threads will omit excluded messages from all threads.
696  *
697  * If set to FALSE or FLAG then both notmuch_query_search_messages and
698  * notmuch_query_search_threads will return all matching
699  * messages/threads regardless of exclude status. If set to FLAG then
700  * the exclude flag will be set for any excluded message that is
701  * returned by notmuch_query_search_messages, and the thread counts
702  * for threads returned by notmuch_query_search_threads will be the
703  * number of non-excluded messages/matches. Otherwise, if set to
704  * FALSE, then the exclude status is completely ignored.
705  *
706  * The performance difference when calling
707  * notmuch_query_search_messages should be relatively small (and both
708  * should be very fast).  However, in some cases,
709  * notmuch_query_search_threads is very much faster when omitting
710  * excluded messages as it does not need to construct the threads that
711  * only match in excluded messages.
712  */
713 void
714 notmuch_query_set_omit_excluded (notmuch_query_t *query,
715                                  notmuch_exclude_t omit_excluded);
716
717 /**
718  * Specify the sorting desired for this query.
719  */
720 void
721 notmuch_query_set_sort (notmuch_query_t *query, notmuch_sort_t sort);
722
723 /**
724  * Return the sort specified for this query. See
725  * notmuch_query_set_sort.
726  */
727 notmuch_sort_t
728 notmuch_query_get_sort (notmuch_query_t *query);
729
730 /**
731  * Add a tag that will be excluded from the query results by default.
732  * This exclusion will be overridden if this tag appears explicitly in
733  * the query.
734  */
735 void
736 notmuch_query_add_tag_exclude (notmuch_query_t *query, const char *tag);
737
738 /**
739  * Execute a query for threads, returning a notmuch_threads_t object
740  * which can be used to iterate over the results. The returned threads
741  * object is owned by the query and as such, will only be valid until
742  * notmuch_query_destroy.
743  *
744  * Typical usage might be:
745  *
746  *     notmuch_query_t *query;
747  *     notmuch_threads_t *threads;
748  *     notmuch_thread_t *thread;
749  *
750  *     query = notmuch_query_create (database, query_string);
751  *
752  *     for (threads = notmuch_query_search_threads (query);
753  *          notmuch_threads_valid (threads);
754  *          notmuch_threads_move_to_next (threads))
755  *     {
756  *         thread = notmuch_threads_get (threads);
757  *         ....
758  *         notmuch_thread_destroy (thread);
759  *     }
760  *
761  *     notmuch_query_destroy (query);
762  *
763  * Note: If you are finished with a thread before its containing
764  * query, you can call notmuch_thread_destroy to clean up some memory
765  * sooner (as in the above example). Otherwise, if your thread objects
766  * are long-lived, then you don't need to call notmuch_thread_destroy
767  * and all the memory will still be reclaimed when the query is
768  * destroyed.
769  *
770  * Note that there's no explicit destructor needed for the
771  * notmuch_threads_t object. (For consistency, we do provide a
772  * notmuch_threads_destroy function, but there's no good reason
773  * to call it if the query is about to be destroyed).
774  *
775  * If a Xapian exception occurs this function will return NULL.
776  */
777 notmuch_threads_t *
778 notmuch_query_search_threads (notmuch_query_t *query);
779
780 /**
781  * Execute a query for messages, returning a notmuch_messages_t object
782  * which can be used to iterate over the results. The returned
783  * messages object is owned by the query and as such, will only be
784  * valid until notmuch_query_destroy.
785  *
786  * Typical usage might be:
787  *
788  *     notmuch_query_t *query;
789  *     notmuch_messages_t *messages;
790  *     notmuch_message_t *message;
791  *
792  *     query = notmuch_query_create (database, query_string);
793  *
794  *     for (messages = notmuch_query_search_messages (query);
795  *          notmuch_messages_valid (messages);
796  *          notmuch_messages_move_to_next (messages))
797  *     {
798  *         message = notmuch_messages_get (messages);
799  *         ....
800  *         notmuch_message_destroy (message);
801  *     }
802  *
803  *     notmuch_query_destroy (query);
804  *
805  * Note: If you are finished with a message before its containing
806  * query, you can call notmuch_message_destroy to clean up some memory
807  * sooner (as in the above example). Otherwise, if your message
808  * objects are long-lived, then you don't need to call
809  * notmuch_message_destroy and all the memory will still be reclaimed
810  * when the query is destroyed.
811  *
812  * Note that there's no explicit destructor needed for the
813  * notmuch_messages_t object. (For consistency, we do provide a
814  * notmuch_messages_destroy function, but there's no good
815  * reason to call it if the query is about to be destroyed).
816  *
817  * If a Xapian exception occurs this function will return NULL.
818  */
819 notmuch_messages_t *
820 notmuch_query_search_messages (notmuch_query_t *query);
821
822 /**
823  * Destroy a notmuch_query_t along with any associated resources.
824  *
825  * This will in turn destroy any notmuch_threads_t and
826  * notmuch_messages_t objects generated by this query, (and in
827  * turn any notmuch_thread_t and notmuch_message_t objects generated
828  * from those results, etc.), if such objects haven't already been
829  * destroyed.
830  */
831 void
832 notmuch_query_destroy (notmuch_query_t *query);
833
834 /**
835  * Is the given 'threads' iterator pointing at a valid thread.
836  *
837  * When this function returns TRUE, notmuch_threads_get will return a
838  * valid object. Whereas when this function returns FALSE,
839  * notmuch_threads_get will return NULL.
840  *
841  * If passed a NULL pointer, this function returns FALSE
842  *
843  * See the documentation of notmuch_query_search_threads for example
844  * code showing how to iterate over a notmuch_threads_t object.
845  */
846 notmuch_bool_t
847 notmuch_threads_valid (notmuch_threads_t *threads);
848
849 /**
850  * Get the current thread from 'threads' as a notmuch_thread_t.
851  *
852  * Note: The returned thread belongs to 'threads' and has a lifetime
853  * identical to it (and the query to which it belongs).
854  *
855  * See the documentation of notmuch_query_search_threads for example
856  * code showing how to iterate over a notmuch_threads_t object.
857  *
858  * If an out-of-memory situation occurs, this function will return
859  * NULL.
860  */
861 notmuch_thread_t *
862 notmuch_threads_get (notmuch_threads_t *threads);
863
864 /**
865  * Move the 'threads' iterator to the next thread.
866  *
867  * If 'threads' is already pointing at the last thread then the
868  * iterator will be moved to a point just beyond that last thread,
869  * (where notmuch_threads_valid will return FALSE and
870  * notmuch_threads_get will return NULL).
871  *
872  * See the documentation of notmuch_query_search_threads for example
873  * code showing how to iterate over a notmuch_threads_t object.
874  */
875 void
876 notmuch_threads_move_to_next (notmuch_threads_t *threads);
877
878 /**
879  * Destroy a notmuch_threads_t object.
880  *
881  * It's not strictly necessary to call this function. All memory from
882  * the notmuch_threads_t object will be reclaimed when the
883  * containing query object is destroyed.
884  */
885 void
886 notmuch_threads_destroy (notmuch_threads_t *threads);
887
888 /**
889  * Return an estimate of the number of messages matching a search.
890  *
891  * This function performs a search and returns Xapian's best
892  * guess as to number of matching messages.
893  *
894  * If a Xapian exception occurs, this function may return 0 (after
895  * printing a message).
896  */
897 unsigned
898 notmuch_query_count_messages (notmuch_query_t *query);
899
900 /**
901  * Return the number of threads matching a search.
902  *
903  * This function performs a search and returns the number of unique thread IDs
904  * in the matching messages. This is the same as number of threads matching a
905  * search.
906  *
907  * Note that this is a significantly heavier operation than
908  * notmuch_query_count_messages().
909  *
910  * If an error occurs, this function may return 0.
911  */
912 unsigned
913 notmuch_query_count_threads (notmuch_query_t *query);
914
915 /**
916  * Get the thread ID of 'thread'.
917  *
918  * The returned string belongs to 'thread' and as such, should not be
919  * modified by the caller and will only be valid for as long as the
920  * thread is valid, (which is until notmuch_thread_destroy or until
921  * the query from which it derived is destroyed).
922  */
923 const char *
924 notmuch_thread_get_thread_id (notmuch_thread_t *thread);
925
926 /**
927  * Get the total number of messages in 'thread'.
928  *
929  * This count consists of all messages in the database belonging to
930  * this thread. Contrast with notmuch_thread_get_matched_messages() .
931  */
932 int
933 notmuch_thread_get_total_messages (notmuch_thread_t *thread);
934
935 /**
936  * Get a notmuch_messages_t iterator for the top-level messages in
937  * 'thread' in oldest-first order.
938  *
939  * This iterator will not necessarily iterate over all of the messages
940  * in the thread. It will only iterate over the messages in the thread
941  * which are not replies to other messages in the thread.
942  *
943  * The returned list will be destroyed when the thread is destroyed.
944  */
945 notmuch_messages_t *
946 notmuch_thread_get_toplevel_messages (notmuch_thread_t *thread);
947
948 /**
949  * Get a notmuch_thread_t iterator for all messages in 'thread' in
950  * oldest-first order.
951  *
952  * The returned list will be destroyed when the thread is destroyed.
953  */
954 notmuch_messages_t *
955 notmuch_thread_get_messages (notmuch_thread_t *thread);
956
957 /**
958  * Get the number of messages in 'thread' that matched the search.
959  *
960  * This count includes only the messages in this thread that were
961  * matched by the search from which the thread was created and were
962  * not excluded by any exclude tags passed in with the query (see
963  * notmuch_query_add_tag_exclude). Contrast with
964  * notmuch_thread_get_total_messages() .
965  */
966 int
967 notmuch_thread_get_matched_messages (notmuch_thread_t *thread);
968
969 /**
970  * Get the authors of 'thread' as a UTF-8 string.
971  *
972  * The returned string is a comma-separated list of the names of the
973  * authors of mail messages in the query results that belong to this
974  * thread.
975  *
976  * The returned string belongs to 'thread' and as such, should not be
977  * modified by the caller and will only be valid for as long as the
978  * thread is valid, (which is until notmuch_thread_destroy or until
979  * the query from which it derived is destroyed).
980  */
981 const char *
982 notmuch_thread_get_authors (notmuch_thread_t *thread);
983
984 /**
985  * Get the subject of 'thread' as a UTF-8 string.
986  *
987  * The subject is taken from the first message (according to the query
988  * order---see notmuch_query_set_sort) in the query results that
989  * belongs to this thread.
990  *
991  * The returned string belongs to 'thread' and as such, should not be
992  * modified by the caller and will only be valid for as long as the
993  * thread is valid, (which is until notmuch_thread_destroy or until
994  * the query from which it derived is destroyed).
995  */
996 const char *
997 notmuch_thread_get_subject (notmuch_thread_t *thread);
998
999 /**
1000  * Get the date of the oldest message in 'thread' as a time_t value.
1001  */
1002 time_t
1003 notmuch_thread_get_oldest_date (notmuch_thread_t *thread);
1004
1005 /**
1006  * Get the date of the newest message in 'thread' as a time_t value.
1007  */
1008 time_t
1009 notmuch_thread_get_newest_date (notmuch_thread_t *thread);
1010
1011 /**
1012  * Get the tags for 'thread', returning a notmuch_tags_t object which
1013  * can be used to iterate over all tags.
1014  *
1015  * Note: In the Notmuch database, tags are stored on individual
1016  * messages, not on threads. So the tags returned here will be all
1017  * tags of the messages which matched the search and which belong to
1018  * this thread.
1019  *
1020  * The tags object is owned by the thread and as such, will only be
1021  * valid for as long as the thread is valid, (for example, until
1022  * notmuch_thread_destroy or until the query from which it derived is
1023  * destroyed).
1024  *
1025  * Typical usage might be:
1026  *
1027  *     notmuch_thread_t *thread;
1028  *     notmuch_tags_t *tags;
1029  *     const char *tag;
1030  *
1031  *     thread = notmuch_threads_get (threads);
1032  *
1033  *     for (tags = notmuch_thread_get_tags (thread);
1034  *          notmuch_tags_valid (tags);
1035  *          notmuch_tags_move_to_next (tags))
1036  *     {
1037  *         tag = notmuch_tags_get (tags);
1038  *         ....
1039  *     }
1040  *
1041  *     notmuch_thread_destroy (thread);
1042  *
1043  * Note that there's no explicit destructor needed for the
1044  * notmuch_tags_t object. (For consistency, we do provide a
1045  * notmuch_tags_destroy function, but there's no good reason to call
1046  * it if the message is about to be destroyed).
1047  */
1048 notmuch_tags_t *
1049 notmuch_thread_get_tags (notmuch_thread_t *thread);
1050
1051 /**
1052  * Destroy a notmuch_thread_t object.
1053  */
1054 void
1055 notmuch_thread_destroy (notmuch_thread_t *thread);
1056
1057 /**
1058  * Is the given 'messages' iterator pointing at a valid message.
1059  *
1060  * When this function returns TRUE, notmuch_messages_get will return a
1061  * valid object. Whereas when this function returns FALSE,
1062  * notmuch_messages_get will return NULL.
1063  *
1064  * See the documentation of notmuch_query_search_messages for example
1065  * code showing how to iterate over a notmuch_messages_t object.
1066  */
1067 notmuch_bool_t
1068 notmuch_messages_valid (notmuch_messages_t *messages);
1069
1070 /**
1071  * Get the current message from 'messages' as a notmuch_message_t.
1072  *
1073  * Note: The returned message belongs to 'messages' and has a lifetime
1074  * identical to it (and the query to which it belongs).
1075  *
1076  * See the documentation of notmuch_query_search_messages for example
1077  * code showing how to iterate over a notmuch_messages_t object.
1078  *
1079  * If an out-of-memory situation occurs, this function will return
1080  * NULL.
1081  */
1082 notmuch_message_t *
1083 notmuch_messages_get (notmuch_messages_t *messages);
1084
1085 /**
1086  * Move the 'messages' iterator to the next message.
1087  *
1088  * If 'messages' is already pointing at the last message then the
1089  * iterator will be moved to a point just beyond that last message,
1090  * (where notmuch_messages_valid will return FALSE and
1091  * notmuch_messages_get will return NULL).
1092  *
1093  * See the documentation of notmuch_query_search_messages for example
1094  * code showing how to iterate over a notmuch_messages_t object.
1095  */
1096 void
1097 notmuch_messages_move_to_next (notmuch_messages_t *messages);
1098
1099 /**
1100  * Destroy a notmuch_messages_t object.
1101  *
1102  * It's not strictly necessary to call this function. All memory from
1103  * the notmuch_messages_t object will be reclaimed when the containing
1104  * query object is destroyed.
1105  */
1106 void
1107 notmuch_messages_destroy (notmuch_messages_t *messages);
1108
1109 /**
1110  * Return a list of tags from all messages.
1111  *
1112  * The resulting list is guaranteed not to contain duplicated tags.
1113  *
1114  * WARNING: You can no longer iterate over messages after calling this
1115  * function, because the iterator will point at the end of the list.
1116  * We do not have a function to reset the iterator yet and the only
1117  * way how you can iterate over the list again is to recreate the
1118  * message list.
1119  *
1120  * The function returns NULL on error.
1121  */
1122 notmuch_tags_t *
1123 notmuch_messages_collect_tags (notmuch_messages_t *messages);
1124
1125 /**
1126  * Get the message ID of 'message'.
1127  *
1128  * The returned string belongs to 'message' and as such, should not be
1129  * modified by the caller and will only be valid for as long as the
1130  * message is valid, (which is until the query from which it derived
1131  * is destroyed).
1132  *
1133  * This function will not return NULL since Notmuch ensures that every
1134  * message has a unique message ID, (Notmuch will generate an ID for a
1135  * message if the original file does not contain one).
1136  */
1137 const char *
1138 notmuch_message_get_message_id (notmuch_message_t *message);
1139
1140 /**
1141  * Get the thread ID of 'message'.
1142  *
1143  * The returned string belongs to 'message' and as such, should not be
1144  * modified by the caller and will only be valid for as long as the
1145  * message is valid, (for example, until the user calls
1146  * notmuch_message_destroy on 'message' or until a query from which it
1147  * derived is destroyed).
1148  *
1149  * This function will not return NULL since Notmuch ensures that every
1150  * message belongs to a single thread.
1151  */
1152 const char *
1153 notmuch_message_get_thread_id (notmuch_message_t *message);
1154
1155 /**
1156  * Get a notmuch_messages_t iterator for all of the replies to
1157  * 'message'.
1158  *
1159  * Note: This call only makes sense if 'message' was ultimately
1160  * obtained from a notmuch_thread_t object, (such as by coming
1161  * directly from the result of calling notmuch_thread_get_
1162  * toplevel_messages or by any number of subsequent
1163  * calls to notmuch_message_get_replies).
1164  *
1165  * If 'message' was obtained through some non-thread means, (such as
1166  * by a call to notmuch_query_search_messages), then this function
1167  * will return NULL.
1168  *
1169  * If there are no replies to 'message', this function will return
1170  * NULL. (Note that notmuch_messages_valid will accept that NULL
1171  * value as legitimate, and simply return FALSE for it.)
1172  */
1173 notmuch_messages_t *
1174 notmuch_message_get_replies (notmuch_message_t *message);
1175
1176 /**
1177  * Get a filename for the email corresponding to 'message'.
1178  *
1179  * The returned filename is an absolute filename, (the initial
1180  * component will match notmuch_database_get_path() ).
1181  *
1182  * The returned string belongs to the message so should not be
1183  * modified or freed by the caller (nor should it be referenced after
1184  * the message is destroyed).
1185  *
1186  * Note: If this message corresponds to multiple files in the mail
1187  * store, (that is, multiple files contain identical message IDs),
1188  * this function will arbitrarily return a single one of those
1189  * filenames. See notmuch_message_get_filenames for returning the
1190  * complete list of filenames.
1191  */
1192 const char *
1193 notmuch_message_get_filename (notmuch_message_t *message);
1194
1195 /**
1196  * Get all filenames for the email corresponding to 'message'.
1197  *
1198  * Returns a notmuch_filenames_t iterator listing all the filenames
1199  * associated with 'message'. These files may not have identical
1200  * content, but each will have the identical Message-ID.
1201  *
1202  * Each filename in the iterator is an absolute filename, (the initial
1203  * component will match notmuch_database_get_path() ).
1204  */
1205 notmuch_filenames_t *
1206 notmuch_message_get_filenames (notmuch_message_t *message);
1207
1208 /**
1209  * Message flags.
1210  */
1211 typedef enum _notmuch_message_flag {
1212     NOTMUCH_MESSAGE_FLAG_MATCH,
1213     NOTMUCH_MESSAGE_FLAG_EXCLUDED
1214 } notmuch_message_flag_t;
1215
1216 /**
1217  * Get a value of a flag for the email corresponding to 'message'.
1218  */
1219 notmuch_bool_t
1220 notmuch_message_get_flag (notmuch_message_t *message,
1221                           notmuch_message_flag_t flag);
1222
1223 /**
1224  * Set a value of a flag for the email corresponding to 'message'.
1225  */
1226 void
1227 notmuch_message_set_flag (notmuch_message_t *message,
1228                           notmuch_message_flag_t flag, notmuch_bool_t value);
1229
1230 /**
1231  * Get the date of 'message' as a time_t value.
1232  *
1233  * For the original textual representation of the Date header from the
1234  * message call notmuch_message_get_header() with a header value of
1235  * "date".
1236  */
1237 time_t
1238 notmuch_message_get_date  (notmuch_message_t *message);
1239
1240 /**
1241  * Get the value of the specified header from 'message' as a UTF-8 string.
1242  *
1243  * Common headers are stored in the database when the message is
1244  * indexed and will be returned from the database.  Other headers will
1245  * be read from the actual message file.
1246  *
1247  * The header name is case insensitive.
1248  *
1249  * The returned string belongs to the message so should not be
1250  * modified or freed by the caller (nor should it be referenced after
1251  * the message is destroyed).
1252  *
1253  * Returns an empty string ("") if the message does not contain a
1254  * header line matching 'header'. Returns NULL if any error occurs.
1255  */
1256 const char *
1257 notmuch_message_get_header (notmuch_message_t *message, const char *header);
1258
1259 /**
1260  * Get the tags for 'message', returning a notmuch_tags_t object which
1261  * can be used to iterate over all tags.
1262  *
1263  * The tags object is owned by the message and as such, will only be
1264  * valid for as long as the message is valid, (which is until the
1265  * query from which it derived is destroyed).
1266  *
1267  * Typical usage might be:
1268  *
1269  *     notmuch_message_t *message;
1270  *     notmuch_tags_t *tags;
1271  *     const char *tag;
1272  *
1273  *     message = notmuch_database_find_message (database, message_id);
1274  *
1275  *     for (tags = notmuch_message_get_tags (message);
1276  *          notmuch_tags_valid (tags);
1277  *          notmuch_tags_move_to_next (tags))
1278  *     {
1279  *         tag = notmuch_tags_get (tags);
1280  *         ....
1281  *     }
1282  *
1283  *     notmuch_message_destroy (message);
1284  *
1285  * Note that there's no explicit destructor needed for the
1286  * notmuch_tags_t object. (For consistency, we do provide a
1287  * notmuch_tags_destroy function, but there's no good reason to call
1288  * it if the message is about to be destroyed).
1289  */
1290 notmuch_tags_t *
1291 notmuch_message_get_tags (notmuch_message_t *message);
1292
1293 /**
1294  * The longest possible tag value.
1295  */
1296 #define NOTMUCH_TAG_MAX 200
1297
1298 /**
1299  * Add a tag to the given message.
1300  *
1301  * Return value:
1302  *
1303  * NOTMUCH_STATUS_SUCCESS: Tag successfully added to message
1304  *
1305  * NOTMUCH_STATUS_NULL_POINTER: The 'tag' argument is NULL
1306  *
1307  * NOTMUCH_STATUS_TAG_TOO_LONG: The length of 'tag' is too long
1308  *      (exceeds NOTMUCH_TAG_MAX)
1309  *
1310  * NOTMUCH_STATUS_READ_ONLY_DATABASE: Database was opened in read-only
1311  *      mode so message cannot be modified.
1312  */
1313 notmuch_status_t
1314 notmuch_message_add_tag (notmuch_message_t *message, const char *tag);
1315
1316 /**
1317  * Remove a tag from the given message.
1318  *
1319  * Return value:
1320  *
1321  * NOTMUCH_STATUS_SUCCESS: Tag successfully removed from message
1322  *
1323  * NOTMUCH_STATUS_NULL_POINTER: The 'tag' argument is NULL
1324  *
1325  * NOTMUCH_STATUS_TAG_TOO_LONG: The length of 'tag' is too long
1326  *      (exceeds NOTMUCH_TAG_MAX)
1327  *
1328  * NOTMUCH_STATUS_READ_ONLY_DATABASE: Database was opened in read-only
1329  *      mode so message cannot be modified.
1330  */
1331 notmuch_status_t
1332 notmuch_message_remove_tag (notmuch_message_t *message, const char *tag);
1333
1334 /**
1335  * Remove all tags from the given message.
1336  *
1337  * See notmuch_message_freeze for an example showing how to safely
1338  * replace tag values.
1339  *
1340  * NOTMUCH_STATUS_READ_ONLY_DATABASE: Database was opened in read-only
1341  *      mode so message cannot be modified.
1342  */
1343 notmuch_status_t
1344 notmuch_message_remove_all_tags (notmuch_message_t *message);
1345
1346 /**
1347  * Add/remove tags according to maildir flags in the message filename(s).
1348  *
1349  * This function examines the filenames of 'message' for maildir
1350  * flags, and adds or removes tags on 'message' as follows when these
1351  * flags are present:
1352  *
1353  *      Flag    Action if present
1354  *      ----    -----------------
1355  *      'D'     Adds the "draft" tag to the message
1356  *      'F'     Adds the "flagged" tag to the message
1357  *      'P'     Adds the "passed" tag to the message
1358  *      'R'     Adds the "replied" tag to the message
1359  *      'S'     Removes the "unread" tag from the message
1360  *
1361  * For each flag that is not present, the opposite action (add/remove)
1362  * is performed for the corresponding tags.
1363  *
1364  * Flags are identified as trailing components of the filename after a
1365  * sequence of ":2,".
1366  *
1367  * If there are multiple filenames associated with this message, the
1368  * flag is considered present if it appears in one or more
1369  * filenames. (That is, the flags from the multiple filenames are
1370  * combined with the logical OR operator.)
1371  *
1372  * A client can ensure that notmuch database tags remain synchronized
1373  * with maildir flags by calling this function after each call to
1374  * notmuch_database_add_message. See also
1375  * notmuch_message_tags_to_maildir_flags for synchronizing tag changes
1376  * back to maildir flags.
1377  */
1378 notmuch_status_t
1379 notmuch_message_maildir_flags_to_tags (notmuch_message_t *message);
1380
1381 /**
1382  * Rename message filename(s) to encode tags as maildir flags.
1383  *
1384  * Specifically, for each filename corresponding to this message:
1385  *
1386  * If the filename is not in a maildir directory, do nothing.  (A
1387  * maildir directory is determined as a directory named "new" or
1388  * "cur".) Similarly, if the filename has invalid maildir info,
1389  * (repeated or outof-ASCII-order flag characters after ":2,"), then
1390  * do nothing.
1391  *
1392  * If the filename is in a maildir directory, rename the file so that
1393  * its filename ends with the sequence ":2," followed by zero or more
1394  * of the following single-character flags (in ASCII order):
1395  *
1396  *   'D' iff the message has the "draft" tag
1397  *   'F' iff the message has the "flagged" tag
1398  *   'P' iff the message has the "passed" tag
1399  *   'R' iff the message has the "replied" tag
1400  *   'S' iff the message does not have the "unread" tag
1401  *
1402  * Any existing flags unmentioned in the list above will be preserved
1403  * in the renaming.
1404  *
1405  * Also, if this filename is in a directory named "new", rename it to
1406  * be within the neighboring directory named "cur".
1407  *
1408  * A client can ensure that maildir filename flags remain synchronized
1409  * with notmuch database tags by calling this function after changing
1410  * tags, (after calls to notmuch_message_add_tag,
1411  * notmuch_message_remove_tag, or notmuch_message_freeze/
1412  * notmuch_message_thaw). See also notmuch_message_maildir_flags_to_tags
1413  * for synchronizing maildir flag changes back to tags.
1414  */
1415 notmuch_status_t
1416 notmuch_message_tags_to_maildir_flags (notmuch_message_t *message);
1417
1418 /**
1419  * Freeze the current state of 'message' within the database.
1420  *
1421  * This means that changes to the message state, (via
1422  * notmuch_message_add_tag, notmuch_message_remove_tag, and
1423  * notmuch_message_remove_all_tags), will not be committed to the
1424  * database until the message is thawed with notmuch_message_thaw.
1425  *
1426  * Multiple calls to freeze/thaw are valid and these calls will
1427  * "stack". That is there must be as many calls to thaw as to freeze
1428  * before a message is actually thawed.
1429  *
1430  * The ability to do freeze/thaw allows for safe transactions to
1431  * change tag values. For example, explicitly setting a message to
1432  * have a given set of tags might look like this:
1433  *
1434  *    notmuch_message_freeze (message);
1435  *
1436  *    notmuch_message_remove_all_tags (message);
1437  *
1438  *    for (i = 0; i < NUM_TAGS; i++)
1439  *        notmuch_message_add_tag (message, tags[i]);
1440  *
1441  *    notmuch_message_thaw (message);
1442  *
1443  * With freeze/thaw used like this, the message in the database is
1444  * guaranteed to have either the full set of original tag values, or
1445  * the full set of new tag values, but nothing in between.
1446  *
1447  * Imagine the example above without freeze/thaw and the operation
1448  * somehow getting interrupted. This could result in the message being
1449  * left with no tags if the interruption happened after
1450  * notmuch_message_remove_all_tags but before notmuch_message_add_tag.
1451  *
1452  * Return value:
1453  *
1454  * NOTMUCH_STATUS_SUCCESS: Message successfully frozen.
1455  *
1456  * NOTMUCH_STATUS_READ_ONLY_DATABASE: Database was opened in read-only
1457  *      mode so message cannot be modified.
1458  */
1459 notmuch_status_t
1460 notmuch_message_freeze (notmuch_message_t *message);
1461
1462 /**
1463  * Thaw the current 'message', synchronizing any changes that may have
1464  * occurred while 'message' was frozen into the notmuch database.
1465  *
1466  * See notmuch_message_freeze for an example of how to use this
1467  * function to safely provide tag changes.
1468  *
1469  * Multiple calls to freeze/thaw are valid and these calls with
1470  * "stack". That is there must be as many calls to thaw as to freeze
1471  * before a message is actually thawed.
1472  *
1473  * Return value:
1474  *
1475  * NOTMUCH_STATUS_SUCCESS: Message successfully thawed, (or at least
1476  *      its frozen count has successfully been reduced by 1).
1477  *
1478  * NOTMUCH_STATUS_UNBALANCED_FREEZE_THAW: An attempt was made to thaw
1479  *      an unfrozen message. That is, there have been an unbalanced
1480  *      number of calls to notmuch_message_freeze and
1481  *      notmuch_message_thaw.
1482  */
1483 notmuch_status_t
1484 notmuch_message_thaw (notmuch_message_t *message);
1485
1486 /**
1487  * Destroy a notmuch_message_t object.
1488  *
1489  * It can be useful to call this function in the case of a single
1490  * query object with many messages in the result, (such as iterating
1491  * over the entire database). Otherwise, it's fine to never call this
1492  * function and there will still be no memory leaks. (The memory from
1493  * the messages get reclaimed when the containing query is destroyed.)
1494  */
1495 void
1496 notmuch_message_destroy (notmuch_message_t *message);
1497
1498 /**
1499  * Is the given 'tags' iterator pointing at a valid tag.
1500  *
1501  * When this function returns TRUE, notmuch_tags_get will return a
1502  * valid string. Whereas when this function returns FALSE,
1503  * notmuch_tags_get will return NULL.
1504  *
1505  * See the documentation of notmuch_message_get_tags for example code
1506  * showing how to iterate over a notmuch_tags_t object.
1507  */
1508 notmuch_bool_t
1509 notmuch_tags_valid (notmuch_tags_t *tags);
1510
1511 /**
1512  * Get the current tag from 'tags' as a string.
1513  *
1514  * Note: The returned string belongs to 'tags' and has a lifetime
1515  * identical to it (and the query to which it ultimately belongs).
1516  *
1517  * See the documentation of notmuch_message_get_tags for example code
1518  * showing how to iterate over a notmuch_tags_t object.
1519  */
1520 const char *
1521 notmuch_tags_get (notmuch_tags_t *tags);
1522
1523 /**
1524  * Move the 'tags' iterator to the next tag.
1525  *
1526  * If 'tags' is already pointing at the last tag then the iterator
1527  * will be moved to a point just beyond that last tag, (where
1528  * notmuch_tags_valid will return FALSE and notmuch_tags_get will
1529  * return NULL).
1530  *
1531  * See the documentation of notmuch_message_get_tags for example code
1532  * showing how to iterate over a notmuch_tags_t object.
1533  */
1534 void
1535 notmuch_tags_move_to_next (notmuch_tags_t *tags);
1536
1537 /**
1538  * Destroy a notmuch_tags_t object.
1539  *
1540  * It's not strictly necessary to call this function. All memory from
1541  * the notmuch_tags_t object will be reclaimed when the containing
1542  * message or query objects are destroyed.
1543  */
1544 void
1545 notmuch_tags_destroy (notmuch_tags_t *tags);
1546
1547 /**
1548  * Store an mtime within the database for 'directory'.
1549  *
1550  * The 'directory' should be an object retrieved from the database
1551  * with notmuch_database_get_directory for a particular path.
1552  *
1553  * The intention is for the caller to use the mtime to allow efficient
1554  * identification of new messages to be added to the database. The
1555  * recommended usage is as follows:
1556  *
1557  *   o Read the mtime of a directory from the filesystem
1558  *
1559  *   o Call add_message for all mail files in the directory
1560  *
1561  *   o Call notmuch_directory_set_mtime with the mtime read from the
1562  *     filesystem.
1563  *
1564  * Then, when wanting to check for updates to the directory in the
1565  * future, the client can call notmuch_directory_get_mtime and know
1566  * that it only needs to add files if the mtime of the directory and
1567  * files are newer than the stored timestamp.
1568  *
1569  * Note: The notmuch_directory_get_mtime function does not allow the
1570  * caller to distinguish a timestamp of 0 from a non-existent
1571  * timestamp. So don't store a timestamp of 0 unless you are
1572  * comfortable with that.
1573  *
1574  * Return value:
1575  *
1576  * NOTMUCH_STATUS_SUCCESS: mtime successfully stored in database.
1577  *
1578  * NOTMUCH_STATUS_XAPIAN_EXCEPTION: A Xapian exception
1579  *      occurred, mtime not stored.
1580  *
1581  * NOTMUCH_STATUS_READ_ONLY_DATABASE: Database was opened in read-only
1582  *      mode so directory mtime cannot be modified.
1583  */
1584 notmuch_status_t
1585 notmuch_directory_set_mtime (notmuch_directory_t *directory,
1586                              time_t mtime);
1587
1588 /**
1589  * Get the mtime of a directory, (as previously stored with
1590  * notmuch_directory_set_mtime).
1591  *
1592  * Returns 0 if no mtime has previously been stored for this
1593  * directory.
1594  */
1595 time_t
1596 notmuch_directory_get_mtime (notmuch_directory_t *directory);
1597
1598 /**
1599  * Get a notmuch_filenames_t iterator listing all the filenames of
1600  * messages in the database within the given directory.
1601  *
1602  * The returned filenames will be the basename-entries only (not
1603  * complete paths).
1604  */
1605 notmuch_filenames_t *
1606 notmuch_directory_get_child_files (notmuch_directory_t *directory);
1607
1608 /**
1609  * Get a notmuch_filenams_t iterator listing all the filenames of
1610  * sub-directories in the database within the given directory.
1611  *
1612  * The returned filenames will be the basename-entries only (not
1613  * complete paths).
1614  */
1615 notmuch_filenames_t *
1616 notmuch_directory_get_child_directories (notmuch_directory_t *directory);
1617
1618 /**
1619  * Destroy a notmuch_directory_t object.
1620  */
1621 void
1622 notmuch_directory_destroy (notmuch_directory_t *directory);
1623
1624 /**
1625  * Is the given 'filenames' iterator pointing at a valid filename.
1626  *
1627  * When this function returns TRUE, notmuch_filenames_get will return
1628  * a valid string. Whereas when this function returns FALSE,
1629  * notmuch_filenames_get will return NULL.
1630  *
1631  * It is acceptable to pass NULL for 'filenames', in which case this
1632  * function will always return FALSE.
1633  */
1634 notmuch_bool_t
1635 notmuch_filenames_valid (notmuch_filenames_t *filenames);
1636
1637 /**
1638  * Get the current filename from 'filenames' as a string.
1639  *
1640  * Note: The returned string belongs to 'filenames' and has a lifetime
1641  * identical to it (and the directory to which it ultimately belongs).
1642  *
1643  * It is acceptable to pass NULL for 'filenames', in which case this
1644  * function will always return NULL.
1645  */
1646 const char *
1647 notmuch_filenames_get (notmuch_filenames_t *filenames);
1648
1649 /**
1650  * Move the 'filenames' iterator to the next filename.
1651  *
1652  * If 'filenames' is already pointing at the last filename then the
1653  * iterator will be moved to a point just beyond that last filename,
1654  * (where notmuch_filenames_valid will return FALSE and
1655  * notmuch_filenames_get will return NULL).
1656  *
1657  * It is acceptable to pass NULL for 'filenames', in which case this
1658  * function will do nothing.
1659  */
1660 void
1661 notmuch_filenames_move_to_next (notmuch_filenames_t *filenames);
1662
1663 /**
1664  * Destroy a notmuch_filenames_t object.
1665  *
1666  * It's not strictly necessary to call this function. All memory from
1667  * the notmuch_filenames_t object will be reclaimed when the
1668  * containing directory object is destroyed.
1669  *
1670  * It is acceptable to pass NULL for 'filenames', in which case this
1671  * function will do nothing.
1672  */
1673 void
1674 notmuch_filenames_destroy (notmuch_filenames_t *filenames);
1675
1676 /* @} */
1677
1678 NOTMUCH_END_DECLS
1679
1680 #endif