]> git.notmuchmail.org Git - notmuch/blob - lib/notmuch.h
Include <stdint.h> to get uint32_t in C++ file with gcc 4.4
[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_XAPIAN_EXCEPTION: A Xapian exception occurred
61  *
62  * NOTMUCH_STATUS_FILE_ERROR: An error occurred trying to read or
63  *      write to a file (this could be file not found, permission
64  *      denied, etc.)
65  *
66  * NOTMUCH_STATUS_FILE_NOT_EMAIL: A file was presented that doesn't
67  *      appear to be an email message.
68  *
69  * NOTMUCH_STATUS_DUPLICATE_MESSAGE_ID: A file contains a message ID
70  *      that is identical to a message already in the database.
71  *
72  * NOTMUCH_STATUS_NULL_POINTER: The user erroneously passed a NULL
73  *      pointer to a notmuch function.
74  *
75  * NOTMUCH_STATUS_TAG_TOO_LONG: A tag value is too long (exceeds
76  *      NOTMUCH_TAG_MAX)
77  *
78  * NOTMUCH_STATUS_UNBALANCED_FREEZE_THAW: The notmuch_message_thaw
79  *      function has been called more times than notmuch_message_freeze.
80  *
81  * And finally:
82  *
83  * NOTMUCH_STATUS_LAST_STATUS: Not an actual status value. Just a way
84  *      to find out how many valid status values there are.
85  */
86 typedef enum _notmuch_status {
87     NOTMUCH_STATUS_SUCCESS = 0,
88     NOTMUCH_STATUS_OUT_OF_MEMORY,
89     NOTMUCH_STATUS_XAPIAN_EXCEPTION,
90     NOTMUCH_STATUS_FILE_ERROR,
91     NOTMUCH_STATUS_FILE_NOT_EMAIL,
92     NOTMUCH_STATUS_DUPLICATE_MESSAGE_ID,
93     NOTMUCH_STATUS_NULL_POINTER,
94     NOTMUCH_STATUS_TAG_TOO_LONG,
95     NOTMUCH_STATUS_UNBALANCED_FREEZE_THAW,
96
97     NOTMUCH_STATUS_LAST_STATUS
98 } notmuch_status_t;
99
100 /* Get a string representation of a notmuch_status_t value.
101  *
102  * The result is readonly.
103  */
104 const char *
105 notmuch_status_to_string (notmuch_status_t status);
106
107 /* Various opaque data types. For each notmuch_<foo>_t see the various
108  * notmuch_<foo> functions below. */
109 typedef struct _notmuch_database notmuch_database_t;
110 typedef struct _notmuch_query notmuch_query_t;
111 typedef struct _notmuch_threads notmuch_threads_t;
112 typedef struct _notmuch_thread notmuch_thread_t;
113 typedef struct _notmuch_messages notmuch_messages_t;
114 typedef struct _notmuch_message notmuch_message_t;
115 typedef struct _notmuch_tags notmuch_tags_t;
116
117 /* Create a new, empty notmuch database located at 'path'.
118  *
119  * The path should be a top-level directory to a collection of
120  * plain-text email messages (one message per file). This call will
121  * create a new ".notmuch" directory within 'path' where notmuch will
122  * store its data.
123  *
124  * After a successful call to notmuch_database_create, the returned
125  * database will be open so the caller should call
126  * notmuch_database_close when finished with it.
127  *
128  * The database will not yet have any data in it
129  * (notmuch_database_create itself is a very cheap function). Messages
130  * contained within 'path' can be added to the database by calling
131  * notmuch_database_add_message.
132  *
133  * In case of any failure, this function returns NULL, (after printing
134  * an error message on stderr).
135  */
136 notmuch_database_t *
137 notmuch_database_create (const char *path);
138
139 /* XXX: I think I'd like this to take an extra argument of
140  * notmuch_status_t* for returning a status value on failure. */
141
142 /* Open an existing notmuch database located at 'path'.
143  *
144  * The database should have been created at some time in the past,
145  * (not necessarily by this process), by calling
146  * notmuch_database_create with 'path'.
147  *
148  * An existing notmuch database can be identified by the presence of a
149  * directory named ".notmuch" below 'path'.
150  *
151  * The caller should call notmuch_database_close when finished with
152  * this database.
153  *
154  * In case of any failure, this function returns NULL, (after printing
155  * an error message on stderr).
156  */
157 notmuch_database_t *
158 notmuch_database_open (const char *path);
159
160 /* Close the given notmuch database, freeing all associated
161  * resources. See notmuch_database_open. */
162 void
163 notmuch_database_close (notmuch_database_t *database);
164
165 /* Return the database path of the given database.
166  *
167  * The return value is a string owned by notmuch so should not be
168  * modified nor freed by the caller. */
169 const char *
170 notmuch_database_get_path (notmuch_database_t *database);
171
172 /* Store a timestamp within the database.
173  *
174  * The Notmuch database will not interpret this key nor the timestamp
175  * values at all. It will merely store them together and return the
176  * timestamp when notmuch_database_get_timestamp is called with the
177  * same value for 'key'.
178  *
179  * The intention is for the caller to use the timestamp to allow
180  * efficient identification of new messages to be added to the
181  * database. The recommended usage is as follows:
182  *
183  *   o Read the mtime of a directory from the filesystem
184  *
185  *   o Call add_message for all mail files in the directory
186  *
187  *   o Call notmuch_database_set_timestamp with the path of the
188  *     directory as 'key' and the originally read mtime as 'value'.
189  *
190  * Then, when wanting to check for updates to the directory in the
191  * future, the client can call notmuch_database_get_timestamp and know
192  * that it only needs to add files if the mtime of the directory and
193  * files are newer than the stored timestamp.
194  *
195  * Note: The notmuch_database_get_timestamp function does not allow
196  * the caller to distinguish a timestamp of 0 from a non-existent
197  * timestamp. So don't store a timestamp of 0 unless you are
198  * comfortable with that.
199  *
200  * Return value:
201  *
202  * NOTMUCH_STATUS_SUCCESS: Timestamp successfully stored in database.
203  *
204  * NOTMUCH_STATUS_XAPIAN_EXCEPTION: A Xapian exception
205  *      occurred. Timestamp not stored.
206  */
207 notmuch_status_t
208 notmuch_database_set_timestamp (notmuch_database_t *database,
209                                 const char *key, time_t timestamp);
210
211 /* Retrieve a timestamp from the database.
212  *
213  * Returns the timestamp value previously stored by calling
214  * notmuch_database_set_timestamp with the same value for 'key'.
215  *
216  * Returns 0 if no timestamp is stored for 'key' or if any error
217  * occurred querying the database.
218  */
219 time_t
220 notmuch_database_get_timestamp (notmuch_database_t *database,
221                                 const char *key);
222
223 /* Add a new message to the given notmuch database.
224  *
225  * Here,'filename' should be a path relative to the the path of
226  * 'database' (see notmuch_database_get_path), or else should be an
227  * absolute filename with initial components that match the path of
228  * 'database'.
229  *
230  * The file should be a single mail message (not a multi-message mbox)
231  * that is expected to remain at its current location, (since the
232  * notmuch database will reference the filename, and will not copy the
233  * entire contents of the file.
234  *
235  * If 'message' is not NULL, then, on successful return '*message'
236  * will be initialized to a message object that can be used for things
237  * such as adding tags to the just-added message. The user should call
238  * notmuch_message_destroy when done with the message. On any failure
239  * '*message' will be set to NULL.
240  *
241  * Return value:
242  *
243  * NOTMUCH_STATUS_SUCCESS: Message successfully added to database.
244  *
245  * NOTMUCH_STATUS_DUPLICATE_MESSAGE_ID: Message has the same message
246  *      ID as another message already in the database. Nothing added
247  *      to the database.
248  *
249  * NOTMUCH_STATUS_FILE_ERROR: an error occurred trying to open the
250  *      file, (such as permission denied, or file not found,
251  *      etc.). Nothing added to the database.
252  *
253  * NOTMUCH_STATUS_FILE_NOT_EMAIL: the contents of filename don't look
254  *      like an email message. Nothing added to the database.
255  */
256 notmuch_status_t
257 notmuch_database_add_message (notmuch_database_t *database,
258                               const char *filename,
259                               notmuch_message_t **message);
260
261 /* Find a message with the given messsage_id.
262  *
263  * If the database contains a message with the given message_id, then
264  * a new notmuch_message_t object is returned. The caller should call
265  * notmuch_message_destroy when done with the message.
266  *
267  * If no message is found with the given message_id or if an
268  * out-of-memory situation occurs, this function returns NULL.
269  */
270 notmuch_message_t *
271 notmuch_database_find_message (notmuch_database_t *database,
272                                const char *message_id);
273
274 /* Create a new query for 'database'.
275  *
276  * Here, 'database' should be an open database, (see
277  * notmuch_database_open and notmuch_database_create).
278  *
279  * For the query string, we'll document the syntax here more
280  * completely in the future, but it's likely to be a specialized
281  * version of the general Xapian query syntax:
282  *
283  * http://xapian.org/docs/queryparser.html
284  *
285  * As a special case, passing a length-zero string, (that is ""), will
286  * result in a query that returns all messages in the database.
287  *
288  * See notmuch_query_set_sort for controlling the order of results and
289  * notmuch_query_search to actually execute the query.
290  *
291  * User should call notmuch_query_destroy when finished with this
292  * query.
293  *
294  * Will return NULL if insufficient memory is available.
295  */
296 notmuch_query_t *
297 notmuch_query_create (notmuch_database_t *database,
298                       const char *query_string);
299
300 /* Sort values for notmuch_query_set_sort */
301 typedef enum {
302     NOTMUCH_SORT_DATE,
303     NOTMUCH_SORT_DATE_REVERSE,
304     NOTMUCH_SORT_MESSAGE_ID
305 } notmuch_sort_t;
306
307 /* Specify the sorting desired for this query. */
308 void
309 notmuch_query_set_sort (notmuch_query_t *query, notmuch_sort_t sort);
310
311 /* Execute a query for threads, returning a notmuch_threads_t object
312  * which can be used to iterate over the results. The returned threads
313  * object is owned by the query and as such, will only be valid until
314  * notmuch_query_destroy.
315  *
316  * The 'first' and 'max_threads' arguments can be used to obtain
317  * partial results from the search. For example, to get results 10 at
318  * a time, pass 'max_threads' as 10 and for 'first' pass the values 0,
319  * 10, 20, etc. As a special case, a value of -1 for 'max_threads'
320  * indicates that no limiting is to be performed. So a search with
321  * 'first' == 0 and 'max_threads' == -1 will return the complete
322  * results of the search.
323  *
324  * Typical usage might be:
325  *
326  *     notmuch_query_t *query;
327  *     notmuch_threads_t *threads;
328  *     notmuch_thread_t *thread;
329  *
330  *     query = notmuch_query_create (database, query_string);
331  *
332  *     for (threads = notmuch_query_search_threads (query);
333  *          notmuch_threads_has_more (threads);
334  *          notmuch_threads_advance (threads))
335  *     {
336  *         thread = notmuch_threads_get (threads);
337  *         ....
338  *         notmuch_thread_destroy (thread);
339  *     }
340  *
341  *     notmuch_query_destroy (query);
342  *
343  * Note: If you are finished with a thread before its containing
344  * query, you can call notmuch_thread_destroy to clean up some memory
345  * sooner (as in the above example). Otherwise, if your thread objects
346  * are long-lived, then you don't need to call notmuch_thread_destroy
347  * and all the memory will still be reclaimed when the query is
348  * destroyed.
349  *
350  * Note that there's no explicit destructor needed for the
351  * notmuch_threads_t object. (For consistency, we do provide a
352  * notmuch_threads_destroy function, but there's no good reason
353  * to call it if the query is about to be destroyed).
354  */
355 notmuch_threads_t *
356 notmuch_query_search_threads (notmuch_query_t *query,
357                               int first, int max_threads);
358
359 /* Execute a query for messages, returning a notmuch_messages_t object
360  * which can be used to iterate over the results. The returned
361  * messages object is owned by the query and as such, will only be
362  * valid until notmuch_query_destroy.
363  *
364  * The 'first' and 'max_messages' arguments can be used to obtain
365  * partial results from the search. For example, to get results 10 at
366  * a time, pass 'max_messages' as 10 and for 'first' pass the values
367  * 0, 10, 20, etc. As a special case, a value of -1 for 'max_messages'
368  * indicates that no limiting is to be performed. So a search with
369  * 'first' == 0 and 'max_messages' == -1 will return the complete
370  * results of the search.
371  *
372  * Typical usage might be:
373  *
374  *     notmuch_query_t *query;
375  *     notmuch_messages_t *messages;
376  *     notmuch_message_t *message;
377  *
378  *     query = notmuch_query_create (database, query_string);
379  *
380  *     for (messages = notmuch_query_search_messages (query);
381  *          notmuch_messages_has_more (messages);
382  *          notmuch_messages_advance (messages))
383  *     {
384  *         message = notmuch_messages_get (messages);
385  *         ....
386  *         notmuch_message_destroy (message);
387  *     }
388  *
389  *     notmuch_query_destroy (query);
390  *
391  * Note: If you are finished with a message before its containing
392  * query, you can call notmuch_message_destroy to clean up some memory
393  * sooner (as in the above example). Otherwise, if your message
394  * objects are long-lived, then you don't need to call
395  * notmuch_message_destroy and all the memory will still be reclaimed
396  * when the query is destroyed.
397  *
398  * Note that there's no explicit destructor needed for the
399  * notmuch_messages_t object. (For consistency, we do provide a
400  * notmuch_messages_destroy function, but there's no good
401  * reason to call it if the query is about to be destroyed).
402  */
403 notmuch_messages_t *
404 notmuch_query_search_messages (notmuch_query_t *query,
405                                int first, int max_messages);
406
407 /* Destroy a notmuch_query_t along with any associated resources.
408  *
409  * This will in turn destroy any notmuch_threads_t and
410  * notmuch_messages_t objects generated by this query, (and in
411  * turn any notmuch_thrad_t and notmuch_message_t objects generated
412  * from those results, etc.), if such objects haven't already been
413  * destroyed.
414  */
415 void
416 notmuch_query_destroy (notmuch_query_t *query);
417
418 /* Does the given notmuch_threads_t object contain any more
419  * results.
420  *
421  * When this function returns TRUE, notmuch_threads_get will
422  * return a valid object. Whereas when this function returns FALSE,
423  * notmuch_threads_get will return NULL.
424  *
425  * See the documentation of notmuch_query_search_threads for example
426  * code showing how to iterate over a notmuch_threads_t object.
427  */
428 notmuch_bool_t
429 notmuch_threads_has_more (notmuch_threads_t *threads);
430
431 /* Get the current thread from 'threads' as a notmuch_thread_t.
432  *
433  * Note: The returned thread belongs to 'threads' and has a lifetime
434  * identical to it (and the query to which it belongs).
435  *
436  * See the documentation of notmuch_query_search_threads for example
437  * code showing how to iterate over a notmuch_threads_t object.
438  *
439  * If an out-of-memory situation occurs, this function will return
440  * NULL.
441  */
442 notmuch_thread_t *
443 notmuch_threads_get (notmuch_threads_t *threads);
444
445 /* Advance the 'threads' iterator to the next thread.
446  *
447  * See the documentation of notmuch_query_search_threads for example
448  * code showing how to iterate over a notmuch_threads_t object.
449  */
450 void
451 notmuch_threads_advance (notmuch_threads_t *threads);
452
453 /* Destroy a notmuch_threads_t object.
454  *
455  * It's not strictly necessary to call this function. All memory from
456  * the notmuch_threads_t object will be reclaimed when the
457  * containg query object is destroyed.
458  */
459 void
460 notmuch_threads_destroy (notmuch_threads_t *threads);
461
462 /* Get the thread ID of 'thread'.
463  *
464  * The returned string belongs to 'thread' and as such, should not be
465  * modified by the caller and will only be valid for as long as the
466  * thread is valid, (which is until notmuch_thread_destroy or until
467  * the query from which it derived is destroyed).
468  */
469 const char *
470 notmuch_thread_get_thread_id (notmuch_thread_t *thread);
471
472 /* Get the total number of messages in 'thread'.
473  *
474  * This count consists of all messages in the database belonging to
475  * this thread. Contrast with notmuch_thread_get_matched_messages() .
476  */
477 int
478 notmuch_thread_get_total_messages (notmuch_thread_t *thread);
479
480 /* Get a notmuch_messages_t iterator for the top-level messages in
481  * 'thread'.
482  *
483  * This iterator will not necessarily iterate over all of the messages
484  * in the thread. It will only iterate over the messages in the thread
485  * which are not replies to other messages in the thread.
486  *
487  * To iterate over all messages in the thread, the caller will need to
488  * iterate over the result of notmuch_message_get_replies for each
489  * top-level message (and do that recursively for the resulting
490  * messages, etc.).
491  */
492 notmuch_messages_t *
493 notmuch_thread_get_toplevel_messages (notmuch_thread_t *thread);
494
495 /* Get the number of messages in 'thread' that matched the search.
496  *
497  * This count includes only the messages in this thread that were
498  * matched by the search from which the thread was created. Contrast
499  * with notmuch_thread_get_total_messages() .
500  */
501 int
502 notmuch_thread_get_matched_messages (notmuch_thread_t *thread);
503
504 /* Get the authors of 'thread'
505  *
506  * The returned string is a comma-separated list of the names of the
507  * authors of mail messages in the query results that belong to this
508  * thread.
509  *
510  * The returned string belongs to 'thread' and as such, should not be
511  * modified by the caller and will only be valid for as long as the
512  * thread is valid, (which is until notmuch_thread_destroy or until
513  * the query from which it derived is destroyed).
514  */
515 const char *
516 notmuch_thread_get_authors (notmuch_thread_t *thread);
517
518 /* Get the subject of 'thread'
519  *
520  * The subject is taken from the first message (according to the query
521  * order---see notmuch_query_set_sort) in the query results that
522  * belongs to this thread.
523  *
524  * The returned string belongs to 'thread' and as such, should not be
525  * modified by the caller and will only be valid for as long as the
526  * thread is valid, (which is until notmuch_thread_destroy or until
527  * the query from which it derived is destroyed).
528  */
529 const char *
530 notmuch_thread_get_subject (notmuch_thread_t *thread);
531
532 /* Get the date of the oldest message in 'thread' as a time_t value.
533  */
534 time_t
535 notmuch_thread_get_oldest_date (notmuch_thread_t *thread);
536
537 /* Get the date of the oldest message in 'thread' as a time_t value.
538  */
539 time_t
540 notmuch_thread_get_newest_date (notmuch_thread_t *thread);
541
542 /* Get the tags for 'thread', returning a notmuch_tags_t object which
543  * can be used to iterate over all tags.
544  *
545  * Note: In the Notmuch database, tags are stored on individual
546  * messages, not on threads. So the tags returned here will be all
547  * tags of the messages which matched the search and which belong to
548  * this thread.
549  *
550  * The tags object is owned by the thread and as such, will only be
551  * valid for as long as the thread is valid, (for example, until
552  * notmuch_thread_destroy or until the query from which it derived is
553  * destroyed).
554  *
555  * Typical usage might be:
556  *
557  *     notmuch_thread_t *thread;
558  *     notmuch_tags_t *tags;
559  *     const char *tag;
560  *
561  *     thread = notmuch_threads_get (threads);
562  *
563  *     for (tags = notmuch_thread_get_tags (thread);
564  *          notmuch_tags_has_more (tags);
565  *          notmuch_result_advance (tags))
566  *     {
567  *         tag = notmuch_tags_get (tags);
568  *         ....
569  *     }
570  *
571  *     notmuch_thread_destroy (thread);
572  *
573  * Note that there's no explicit destructor needed for the
574  * notmuch_tags_t object. (For consistency, we do provide a
575  * notmuch_tags_destroy function, but there's no good reason to call
576  * it if the message is about to be destroyed).
577  */
578 notmuch_tags_t *
579 notmuch_thread_get_tags (notmuch_thread_t *thread);
580
581 /* Destroy a notmuch_thread_t object. */
582 void
583 notmuch_thread_destroy (notmuch_thread_t *thread);
584
585 /* Does the given notmuch_messages_t object contain any more
586  * messages.
587  *
588  * When this function returns TRUE, notmuch_messages_get will return a
589  * valid object. Whereas when this function returns FALSE,
590  * notmuch_messages_get will return NULL.
591  *
592  * See the documentation of notmuch_query_search_messages for example
593  * code showing how to iterate over a notmuch_messages_t object.
594  */
595 notmuch_bool_t
596 notmuch_messages_has_more (notmuch_messages_t *messages);
597
598 /* Get the current message from 'messages' as a notmuch_message_t.
599  *
600  * Note: The returned message belongs to 'messages' and has a lifetime
601  * identical to it (and the query to which it belongs).
602  *
603  * See the documentation of notmuch_query_search_messages for example
604  * code showing how to iterate over a notmuch_messages_t object.
605  *
606  * If an out-of-memory situation occurs, this function will return
607  * NULL.
608  */
609 notmuch_message_t *
610 notmuch_messages_get (notmuch_messages_t *messages);
611
612 /* Advance the 'messages' iterator to the next result.
613  *
614  * See the documentation of notmuch_query_search_messages for example
615  * code showing how to iterate over a notmuch_messages_t object.
616  */
617 void
618 notmuch_messages_advance (notmuch_messages_t *messages);
619
620 /* Destroy a notmuch_messages_t object.
621  *
622  * It's not strictly necessary to call this function. All memory from
623  * the notmuch_messages_t object will be reclaimed when the containg
624  * query object is destroyed.
625  */
626 void
627 notmuch_messages_destroy (notmuch_messages_t *messages);
628
629 /* Get the message ID of 'message'.
630  *
631  * The returned string belongs to 'message' and as such, should not be
632  * modified by the caller and will only be valid for as long as the
633  * message is valid, (which is until the query from which it derived
634  * is destroyed).
635  *
636  * This function will not return NULL since Notmuch ensures that every
637  * message has a unique message ID, (Notmuch will generate an ID for a
638  * message if the original file does not contain one).
639  */
640 const char *
641 notmuch_message_get_message_id (notmuch_message_t *message);
642
643 /* Get the thread ID of 'message'.
644  *
645  * The returned string belongs to 'message' and as such, should not be
646  * modified by the caller and will only be valid for as long as the
647  * message is valid, (for example, until the user calls
648  * notmuch_message_destroy on 'message' or until a query from which it
649  * derived is destroyed).
650  *
651  * This function will not return NULL since Notmuch ensures that every
652  * message belongs to a single thread.
653  */
654 const char *
655 notmuch_message_get_thread_id (notmuch_message_t *message);
656
657 /* Get a notmuch_messages_t iterator for all of the replies to
658  * 'message'.
659  *
660  * Note: This call only makes sense if 'message' was ultimately
661  * obtained from a notmuch_thread_t object, (such as by coming
662  * directly from the result of calling notmuch_thread_get_
663  * toplevel_messages or by any number of subsequent
664  * calls to notmuch_message_get_replies).
665  *
666  * If 'message' was obtained through some non-thread means, (such as
667  * by a call to notmuch_query_search_messages), then this function
668  * will return NULL.
669  *
670  * If there are no replies to 'message', this function will return
671  * NULL. (Note that notmuch_messages_has_more will accept that NULL
672  * value as legitimate, and simply return FALSE for it.)
673  */
674 notmuch_messages_t *
675 notmuch_message_get_replies (notmuch_message_t *message);
676
677 /* Get the filename for the email corresponding to 'message'.
678  *
679  * The returned filename is an absolute filename, (the initial
680  * component will match notmuch_database_get_path() ).
681  *
682  * The returned string belongs to the message so should not be
683  * modified or freed by the caller (nor should it be referenced after
684  * the message is destroyed). */
685 const char *
686 notmuch_message_get_filename (notmuch_message_t *message);
687
688 /* Get the date of 'message' as a time_t value.
689  *
690  * For the original textual representation of the Date header from the
691  * message call notmuch_message_get_header() with a header value of
692  * "date". */
693 time_t
694 notmuch_message_get_date  (notmuch_message_t *message);
695
696 /* Get the value of the specified header from 'message'.
697  *
698  * The value will be read from the actual message file, not from the
699  * notmuch database. The header name is case insensitive.
700  *
701  * The returned string belongs to the message so should not be
702  * modified or freed by the caller (nor should it be referenced after
703  * the message is destroyed).
704  *
705  * Returns an empty string ("") if the message does not contain a
706  * header line matching 'header'. Returns NULL if any error occurs.
707  */
708 const char *
709 notmuch_message_get_header (notmuch_message_t *message, const char *header);
710
711 /* Get the tags for 'message', returning a notmuch_tags_t object which
712  * can be used to iterate over all tags.
713  *
714  * The tags object is owned by the message and as such, will only be
715  * valid for as long as the message is valid, (which is until the
716  * query from which it derived is destroyed).
717  *
718  * Typical usage might be:
719  *
720  *     notmuch_message_t *message;
721  *     notmuch_tags_t *tags;
722  *     const char *tag;
723  *
724  *     message = notmuch_database_find_message (database, message_id);
725  *
726  *     for (tags = notmuch_message_get_tags (message);
727  *          notmuch_tags_has_more (tags);
728  *          notmuch_result_advance (tags))
729  *     {
730  *         tag = notmuch_tags_get (tags);
731  *         ....
732  *     }
733  *
734  *     notmuch_message_destroy (message);
735  *
736  * Note that there's no explicit destructor needed for the
737  * notmuch_tags_t object. (For consistency, we do provide a
738  * notmuch_tags_destroy function, but there's no good reason to call
739  * it if the message is about to be destroyed).
740  */
741 notmuch_tags_t *
742 notmuch_message_get_tags (notmuch_message_t *message);
743
744 /* The longest possible tag value. */
745 #define NOTMUCH_TAG_MAX 200
746
747 /* Add a tag to the given message.
748  *
749  * Return value:
750  *
751  * NOTMUCH_STATUS_SUCCESS: Tag successfully added to message
752  *
753  * NOTMUCH_STATUS_NULL_POINTER: The 'tag' argument is NULL
754  *
755  * NOTMUCH_STATUS_TAG_TOO_LONG: The length of 'tag' is too long
756  *      (exceeds NOTMUCH_TAG_MAX)
757  */
758 notmuch_status_t
759 notmuch_message_add_tag (notmuch_message_t *message, const char *tag);
760
761 /* Remove a tag from the given message.
762  *
763  * Return value:
764  *
765  * NOTMUCH_STATUS_SUCCESS: Tag successfully removed from message
766  *
767  * NOTMUCH_STATUS_NULL_POINTER: The 'tag' argument is NULL
768  *
769  * NOTMUCH_STATUS_TAG_TOO_LONG: The length of 'tag' is too long
770  *      (exceeds NOTMUCH_TAG_MAX)
771  */
772 notmuch_status_t
773 notmuch_message_remove_tag (notmuch_message_t *message, const char *tag);
774
775 /* Remove all tags from the given message.
776  *
777  * See notmuch_message_freeze for an example showing how to safely
778  * replace tag values.
779  */
780 void
781 notmuch_message_remove_all_tags (notmuch_message_t *message);
782
783 /* Freeze the current state of 'message' within the database.
784  *
785  * This means that changes to the message state, (via
786  * notmuch_message_add_tag, notmuch_message_remove_tag, and
787  * notmuch_message_remove_all_tags), will not be committed to the
788  * database until the message is thawed with notmuch_message_thaw.
789  *
790  * Multiple calls to freeze/thaw are valid and these calls with
791  * "stack". That is there must be as many calls to thaw as to freeze
792  * before a message is actually thawed.
793  *
794  * The ability to do freeze/thaw allows for safe transactions to
795  * change tag values. For example, explicitly setting a message to
796  * have a given set of tags might look like this:
797  *
798  *    notmuch_message_freeze (message);
799  *
800  *    notmuch_message_remove_all_tags (message);
801  *
802  *    for (i = 0; i < NUM_TAGS; i++)
803  *        notmuch_message_add_tag (message, tags[i]);
804  *
805  *    notmuch_message_thaw (message);
806  *
807  * With freeze/thaw used like this, the message in the database is
808  * guaranteed to have either the full set of original tag value, or
809  * the full set of new tag values, but nothing in between.
810  *
811  * Imagine the example above without freeze/thaw and the operation
812  * somehow getting interrupted. This could result in the message being
813  * left with no tags if the interruption happened after
814  * notmuch_message_remove_all_tags but before notmuch_message_add_tag.
815  */
816 void
817 notmuch_message_freeze (notmuch_message_t *message);
818
819 /* Thaw the current 'message', synchronizing any changes that may have
820  * occurred while 'message' was frozen into the notmuch database.
821  *
822  * See notmuch_message_freeze for an example of how to use this
823  * function to safely provide tag changes.
824  *
825  * Multiple calls to freeze/thaw are valid and these calls with
826  * "stack". That is there must be as many calls to thaw as to freeze
827  * before a message is actually thawed.
828  *
829  * Return value:
830  *
831  * NOTMUCH_STATUS_SUCCESS: Message successfully thawed, (or at least
832  *      its frozen count has successfully been reduced by 1).
833  *
834  * NOTMUCH_STATUS_UNBALANCE_FREEZE_THAW: An attempt was made to thaw
835  *      an unfrozen message. That is, there have been an unbalanced
836  *      number of calls to notmuch_message_freeze and
837  *      notmuch_message_thaw.
838  */
839 notmuch_status_t
840 notmuch_message_thaw (notmuch_message_t *message);
841
842 /* Destroy a notmuch_message_t object.
843  *
844  * It can be useful to call this function in the case of a single
845  * query object with many messages in the result, (such as iterating
846  * over the entire database). Otherwise, it's fine to never call this
847  * function and there will still be no memory leaks. (The memory from
848  * the messages get reclaimed when the containing query is destroyed.)
849  */
850 void
851 notmuch_message_destroy (notmuch_message_t *message);
852
853 /* Does the given notmuch_tags_t object contain any more tags.
854  *
855  * When this function returns TRUE, notmuch_tags_get will return a
856  * valid string. Whereas when this function returns FALSE,
857  * notmuch_tags_get will return NULL.
858  *
859  * See the documentation of notmuch_message_get_tags for example code
860  * showing how to iterate over a notmuch_tags_t object.
861  */
862 notmuch_bool_t
863 notmuch_tags_has_more (notmuch_tags_t *tags);
864
865 /* Get the current tag from 'tags' as a string.
866  *
867  * Note: The returned string belongs to 'tags' and has a lifetime
868  * identical to it (and the query to which it utlimately belongs).
869  *
870  * See the documentation of notmuch_message_get_tags for example code
871  * showing how to iterate over a notmuch_tags_t object.
872  */
873 const char *
874 notmuch_tags_get (notmuch_tags_t *tags);
875
876 /* Advance the 'tags' iterator to the next tag.
877  *
878  * See the documentation of notmuch_message_get_tags for example code
879  * showing how to iterate over a notmuch_tags_t object.
880  */
881 void
882 notmuch_tags_advance (notmuch_tags_t *tags);
883
884 /* Destroy a notmuch_tags_t object.
885  *
886  * It's not strictly necessary to call this function. All memory from
887  * the notmuch_tags_t object will be reclaimed when the containg
888  * message or query objects are destroyed.
889  */
890 void
891 notmuch_tags_destroy (notmuch_tags_t *tags);
892
893 NOTMUCH_END_DECLS
894
895 #endif