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