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