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