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