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