]> git.notmuchmail.org Git - notmuch/blob - lib/database.cc
6a7ce29933638892180ebe94059070ce578ee298
[notmuch] / lib / database.cc
1 /* database.cc - The database interfaces of the notmuch mail library
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 #include "database-private.h"
22 #include "parse-time-vrp.h"
23 #include "string-util.h"
24
25 #include <iostream>
26
27 #include <sys/time.h>
28 #include <sys/stat.h>
29 #include <signal.h>
30 #include <ftw.h>
31
32 #include <glib.h> /* g_free, GPtrArray, GHashTable */
33 #include <glib-object.h> /* g_type_init */
34
35 #include <gmime/gmime.h> /* g_mime_init */
36
37 using namespace std;
38
39 #define ARRAY_SIZE(arr) (sizeof (arr) / sizeof (arr[0]))
40
41 typedef struct {
42     const char *name;
43     const char *prefix;
44 } prefix_t;
45
46 #define NOTMUCH_DATABASE_VERSION 3
47
48 #define STRINGIFY(s) _SUB_STRINGIFY(s)
49 #define _SUB_STRINGIFY(s) #s
50
51 /* Here's the current schema for our database (for NOTMUCH_DATABASE_VERSION):
52  *
53  * We currently have two different types of documents (mail and
54  * directory) and also some metadata.
55  *
56  * Mail document
57  * -------------
58  * A mail document is associated with a particular email message. It
59  * is stored in one or more files on disk (though only one has its
60  * content indexed) and is uniquely identified  by its "id" field
61  * (which is generally the message ID). It is indexed with the
62  * following prefixed terms which the database uses to construct
63  * threads, etc.:
64  *
65  *    Single terms of given prefix:
66  *
67  *      type:   mail
68  *
69  *      id:     Unique ID of mail. This is from the Message-ID header
70  *              if present and not too long (see NOTMUCH_MESSAGE_ID_MAX).
71  *              If it's present and too long, then we use
72  *              "notmuch-sha1-<sha1_sum_of_message_id>".
73  *              If this header is not present, we use
74  *              "notmuch-sha1-<sha1_sum_of_entire_file>".
75  *
76  *      thread: The ID of the thread to which the mail belongs
77  *
78  *      replyto: The ID from the In-Reply-To header of the mail (if any).
79  *
80  *    Multiple terms of given prefix:
81  *
82  *      reference: All message IDs from In-Reply-To and References
83  *                 headers in the message.
84  *
85  *      tag:       Any tags associated with this message by the user.
86  *
87  *      file-direntry:  A colon-separated pair of values
88  *                      (INTEGER:STRING), where INTEGER is the
89  *                      document ID of a directory document, and
90  *                      STRING is the name of a file within that
91  *                      directory for this mail message.
92  *
93  *    A mail document also has four values:
94  *
95  *      TIMESTAMP:      The time_t value corresponding to the message's
96  *                      Date header.
97  *
98  *      MESSAGE_ID:     The unique ID of the mail mess (see "id" above)
99  *
100  *      FROM:           The value of the "From" header
101  *
102  *      SUBJECT:        The value of the "Subject" header
103  *
104  * In addition, terms from the content of the message are added with
105  * "from", "to", "attachment", and "subject" prefixes for use by the
106  * user in searching. Similarly, terms from the path of the mail
107  * message are added with "folder" and "path" prefixes. But the
108  * database doesn't really care itself about any of these.
109  *
110  * The data portion of a mail document is empty.
111  *
112  * Directory document
113  * ------------------
114  * A directory document is used by a client of the notmuch library to
115  * maintain data necessary to allow for efficient polling of mail
116  * directories.
117  *
118  * All directory documents contain one term:
119  *
120  *      directory:      The directory path (relative to the database path)
121  *                      Or the SHA1 sum of the directory path (if the
122  *                      path itself is too long to fit in a Xapian
123  *                      term).
124  *
125  * And all directory documents for directories other than top-level
126  * directories also contain the following term:
127  *
128  *      directory-direntry: A colon-separated pair of values
129  *                          (INTEGER:STRING), where INTEGER is the
130  *                          document ID of the parent directory
131  *                          document, and STRING is the name of this
132  *                          directory within that parent.
133  *
134  * All directory documents have a single value:
135  *
136  *      TIMESTAMP:      The mtime of the directory (at last scan)
137  *
138  * The data portion of a directory document contains the path of the
139  * directory (relative to the database path).
140  *
141  * Database metadata
142  * -----------------
143  * Xapian allows us to store arbitrary name-value pairs as
144  * "metadata". We currently use the following metadata names with the
145  * given meanings:
146  *
147  *      version         The database schema version, (which is distinct
148  *                      from both the notmuch package version (see
149  *                      notmuch --version) and the libnotmuch library
150  *                      version. The version is stored as an base-10
151  *                      ASCII integer. The initial database version
152  *                      was 1, (though a schema existed before that
153  *                      were no "version" database value existed at
154  *                      all). Successive versions are allocated as
155  *                      changes are made to the database (such as by
156  *                      indexing new fields).
157  *
158  *      features        The set of features supported by this
159  *                      database. This consists of a set of
160  *                      '\n'-separated lines, where each is a feature
161  *                      name, a '\t', and compatibility flags.  If the
162  *                      compatibility flags contain 'w', then the
163  *                      opener must support this feature to safely
164  *                      write this database.  If the compatibility
165  *                      flags contain 'r', then the opener must
166  *                      support this feature to read this database.
167  *                      Introduced in database version 3.
168  *
169  *      last_thread_id  The last thread ID generated. This is stored
170  *                      as a 16-byte hexadecimal ASCII representation
171  *                      of a 64-bit unsigned integer. The first ID
172  *                      generated is 1 and the value will be
173  *                      incremented for each thread ID.
174  *
175  *      thread_id_*     A pre-allocated thread ID for a particular
176  *                      message. This is actually an arbitrarily large
177  *                      family of metadata name. Any particular name is
178  *                      formed by concatenating "thread_id_" with a message
179  *                      ID (or the SHA1 sum of a message ID if it is very
180  *                      long---see description of 'id' in the mail
181  *                      document). The value stored is a thread ID.
182  *
183  *                      These thread ID metadata values are stored
184  *                      whenever a message references a parent message
185  *                      that does not yet exist in the database. A
186  *                      thread ID will be allocated and stored, and if
187  *                      the message is later added, the stored thread
188  *                      ID will be used (and the metadata value will
189  *                      be cleared).
190  *
191  *                      Even before a message is added, it's
192  *                      pre-allocated thread ID is useful so that all
193  *                      descendant messages that reference this common
194  *                      parent can be recognized as belonging to the
195  *                      same thread.
196  */
197
198 /* With these prefix values we follow the conventions published here:
199  *
200  * http://xapian.org/docs/omega/termprefixes.html
201  *
202  * as much as makes sense. Note that I took some liberty in matching
203  * the reserved prefix values to notmuch concepts, (for example, 'G'
204  * is documented as "newsGroup (or similar entity - e.g. a web forum
205  * name)", for which I think the thread is the closest analogue in
206  * notmuch. This in spite of the fact that we will eventually be
207  * storing mailing-list messages where 'G' for "mailing list name"
208  * might be even a closer analogue. I'm treating the single-character
209  * prefixes preferentially for core notmuch concepts (which will be
210  * nearly universal to all mail messages).
211  */
212
213 static prefix_t BOOLEAN_PREFIX_INTERNAL[] = {
214     { "type",                   "T" },
215     { "reference",              "XREFERENCE" },
216     { "replyto",                "XREPLYTO" },
217     { "directory",              "XDIRECTORY" },
218     { "file-direntry",          "XFDIRENTRY" },
219     { "directory-direntry",     "XDDIRENTRY" },
220 };
221
222 static prefix_t BOOLEAN_PREFIX_EXTERNAL[] = {
223     { "thread",                 "G" },
224     { "tag",                    "K" },
225     { "is",                     "K" },
226     { "id",                     "Q" },
227     { "path",                   "P" },
228     /*
229      * Without the ":", since this is a multi-letter prefix, Xapian
230      * will add a colon itself if the first letter of the path is
231      * upper-case ASCII. Including the ":" forces there to always be a
232      * colon, which keeps our own logic simpler.
233      */
234     { "folder",                 "XFOLDER:" },
235 };
236
237 static prefix_t PROBABILISTIC_PREFIX[]= {
238     { "from",                   "XFROM" },
239     { "to",                     "XTO" },
240     { "attachment",             "XATTACHMENT" },
241     { "subject",                "XSUBJECT"},
242 };
243
244 const char *
245 _find_prefix (const char *name)
246 {
247     unsigned int i;
248
249     for (i = 0; i < ARRAY_SIZE (BOOLEAN_PREFIX_INTERNAL); i++) {
250         if (strcmp (name, BOOLEAN_PREFIX_INTERNAL[i].name) == 0)
251             return BOOLEAN_PREFIX_INTERNAL[i].prefix;
252     }
253
254     for (i = 0; i < ARRAY_SIZE (BOOLEAN_PREFIX_EXTERNAL); i++) {
255         if (strcmp (name, BOOLEAN_PREFIX_EXTERNAL[i].name) == 0)
256             return BOOLEAN_PREFIX_EXTERNAL[i].prefix;
257     }
258
259     for (i = 0; i < ARRAY_SIZE (PROBABILISTIC_PREFIX); i++) {
260         if (strcmp (name, PROBABILISTIC_PREFIX[i].name) == 0)
261             return PROBABILISTIC_PREFIX[i].prefix;
262     }
263
264     INTERNAL_ERROR ("No prefix exists for '%s'\n", name);
265
266     return "";
267 }
268
269 static const struct {
270     /* NOTMUCH_FEATURE_* value. */
271     _notmuch_features value;
272     /* Feature name as it appears in the database.  This name should
273      * be appropriate for displaying to the user if an older version
274      * of notmuch doesn't support this feature. */
275     const char *name;
276     /* Compatibility flags when this feature is declared. */
277     const char *flags;
278 } feature_names[] = {
279     { NOTMUCH_FEATURE_FILE_TERMS,
280       "multiple paths per message", "rw" },
281     { NOTMUCH_FEATURE_DIRECTORY_DOCS,
282       "relative directory paths", "rw" },
283     /* Header values are not required for reading a database because a
284      * reader can just refer to the message file. */
285     { NOTMUCH_FEATURE_FROM_SUBJECT_ID_VALUES,
286       "from/subject/message-ID in database", "w" },
287     { NOTMUCH_FEATURE_BOOL_FOLDER,
288       "exact folder:/path: search", "rw" },
289 };
290
291 const char *
292 notmuch_status_to_string (notmuch_status_t status)
293 {
294     switch (status) {
295     case NOTMUCH_STATUS_SUCCESS:
296         return "No error occurred";
297     case NOTMUCH_STATUS_OUT_OF_MEMORY:
298         return "Out of memory";
299     case NOTMUCH_STATUS_READ_ONLY_DATABASE:
300         return "Attempt to write to a read-only database";
301     case NOTMUCH_STATUS_XAPIAN_EXCEPTION:
302         return "A Xapian exception occurred";
303     case NOTMUCH_STATUS_FILE_ERROR:
304         return "Something went wrong trying to read or write a file";
305     case NOTMUCH_STATUS_FILE_NOT_EMAIL:
306         return "File is not an email";
307     case NOTMUCH_STATUS_DUPLICATE_MESSAGE_ID:
308         return "Message ID is identical to a message in database";
309     case NOTMUCH_STATUS_NULL_POINTER:
310         return "Erroneous NULL pointer";
311     case NOTMUCH_STATUS_TAG_TOO_LONG:
312         return "Tag value is too long (exceeds NOTMUCH_TAG_MAX)";
313     case NOTMUCH_STATUS_UNBALANCED_FREEZE_THAW:
314         return "Unbalanced number of calls to notmuch_message_freeze/thaw";
315     case NOTMUCH_STATUS_UNBALANCED_ATOMIC:
316         return "Unbalanced number of calls to notmuch_database_begin_atomic/end_atomic";
317     case NOTMUCH_STATUS_UNSUPPORTED_OPERATION:
318         return "Unsupported operation";
319     default:
320     case NOTMUCH_STATUS_LAST_STATUS:
321         return "Unknown error status value";
322     }
323 }
324
325 static void
326 find_doc_ids_for_term (notmuch_database_t *notmuch,
327                        const char *term,
328                        Xapian::PostingIterator *begin,
329                        Xapian::PostingIterator *end)
330 {
331     *begin = notmuch->xapian_db->postlist_begin (term);
332
333     *end = notmuch->xapian_db->postlist_end (term);
334 }
335
336 static void
337 find_doc_ids (notmuch_database_t *notmuch,
338               const char *prefix_name,
339               const char *value,
340               Xapian::PostingIterator *begin,
341               Xapian::PostingIterator *end)
342 {
343     char *term;
344
345     term = talloc_asprintf (notmuch, "%s%s",
346                             _find_prefix (prefix_name), value);
347
348     find_doc_ids_for_term (notmuch, term, begin, end);
349
350     talloc_free (term);
351 }
352
353 notmuch_private_status_t
354 _notmuch_database_find_unique_doc_id (notmuch_database_t *notmuch,
355                                       const char *prefix_name,
356                                       const char *value,
357                                       unsigned int *doc_id)
358 {
359     Xapian::PostingIterator i, end;
360
361     find_doc_ids (notmuch, prefix_name, value, &i, &end);
362
363     if (i == end) {
364         *doc_id = 0;
365         return NOTMUCH_PRIVATE_STATUS_NO_DOCUMENT_FOUND;
366     }
367
368     *doc_id = *i;
369
370 #if DEBUG_DATABASE_SANITY
371     i++;
372
373     if (i != end)
374         INTERNAL_ERROR ("Term %s:%s is not unique as expected.\n",
375                         prefix_name, value);
376 #endif
377
378     return NOTMUCH_PRIVATE_STATUS_SUCCESS;
379 }
380
381 static Xapian::Document
382 find_document_for_doc_id (notmuch_database_t *notmuch, unsigned doc_id)
383 {
384     return notmuch->xapian_db->get_document (doc_id);
385 }
386
387 /* Generate a compressed version of 'message_id' of the form:
388  *
389  *      notmuch-sha1-<sha1_sum_of_message_id>
390  */
391 static char *
392 _message_id_compressed (void *ctx, const char *message_id)
393 {
394     char *sha1, *compressed;
395
396     sha1 = _notmuch_sha1_of_string (message_id);
397
398     compressed = talloc_asprintf (ctx, "notmuch-sha1-%s", sha1);
399     free (sha1);
400
401     return compressed;
402 }
403
404 notmuch_status_t
405 notmuch_database_find_message (notmuch_database_t *notmuch,
406                                const char *message_id,
407                                notmuch_message_t **message_ret)
408 {
409     notmuch_private_status_t status;
410     unsigned int doc_id;
411
412     if (message_ret == NULL)
413         return NOTMUCH_STATUS_NULL_POINTER;
414
415     if (strlen (message_id) > NOTMUCH_MESSAGE_ID_MAX)
416         message_id = _message_id_compressed (notmuch, message_id);
417
418     try {
419         status = _notmuch_database_find_unique_doc_id (notmuch, "id",
420                                                        message_id, &doc_id);
421
422         if (status == NOTMUCH_PRIVATE_STATUS_NO_DOCUMENT_FOUND)
423             *message_ret = NULL;
424         else {
425             *message_ret = _notmuch_message_create (notmuch, notmuch, doc_id,
426                                                     NULL);
427             if (*message_ret == NULL)
428                 return NOTMUCH_STATUS_OUT_OF_MEMORY;
429         }
430
431         return NOTMUCH_STATUS_SUCCESS;
432     } catch (const Xapian::Error &error) {
433         fprintf (stderr, "A Xapian exception occurred finding message: %s.\n",
434                  error.get_msg().c_str());
435         notmuch->exception_reported = TRUE;
436         *message_ret = NULL;
437         return NOTMUCH_STATUS_XAPIAN_EXCEPTION;
438     }
439 }
440
441 /* Advance 'str' past any whitespace or RFC 822 comments. A comment is
442  * a (potentially nested) parenthesized sequence with '\' used to
443  * escape any character (including parentheses).
444  *
445  * If the sequence to be skipped continues to the end of the string,
446  * then 'str' will be left pointing at the final terminating '\0'
447  * character.
448  */
449 static void
450 skip_space_and_comments (const char **str)
451 {
452     const char *s;
453
454     s = *str;
455     while (*s && (isspace (*s) || *s == '(')) {
456         while (*s && isspace (*s))
457             s++;
458         if (*s == '(') {
459             int nesting = 1;
460             s++;
461             while (*s && nesting) {
462                 if (*s == '(') {
463                     nesting++;
464                 } else if (*s == ')') {
465                     nesting--;
466                 } else if (*s == '\\') {
467                     if (*(s+1))
468                         s++;
469                 }
470                 s++;
471             }
472         }
473     }
474
475     *str = s;
476 }
477
478 /* Parse an RFC 822 message-id, discarding whitespace, any RFC 822
479  * comments, and the '<' and '>' delimiters.
480  *
481  * If not NULL, then *next will be made to point to the first character
482  * not parsed, (possibly pointing to the final '\0' terminator.
483  *
484  * Returns a newly talloc'ed string belonging to 'ctx'.
485  *
486  * Returns NULL if there is any error parsing the message-id. */
487 static char *
488 _parse_message_id (void *ctx, const char *message_id, const char **next)
489 {
490     const char *s, *end;
491     char *result;
492
493     if (message_id == NULL || *message_id == '\0')
494         return NULL;
495
496     s = message_id;
497
498     skip_space_and_comments (&s);
499
500     /* Skip any unstructured text as well. */
501     while (*s && *s != '<')
502         s++;
503
504     if (*s == '<') {
505         s++;
506     } else {
507         if (next)
508             *next = s;
509         return NULL;
510     }
511
512     skip_space_and_comments (&s);
513
514     end = s;
515     while (*end && *end != '>')
516         end++;
517     if (next) {
518         if (*end)
519             *next = end + 1;
520         else
521             *next = end;
522     }
523
524     if (end > s && *end == '>')
525         end--;
526     if (end <= s)
527         return NULL;
528
529     result = talloc_strndup (ctx, s, end - s + 1);
530
531     /* Finally, collapse any whitespace that is within the message-id
532      * itself. */
533     {
534         char *r;
535         int len;
536
537         for (r = result, len = strlen (r); *r; r++, len--)
538             if (*r == ' ' || *r == '\t')
539                 memmove (r, r+1, len);
540     }
541
542     return result;
543 }
544
545 /* Parse a References header value, putting a (talloc'ed under 'ctx')
546  * copy of each referenced message-id into 'hash'.
547  *
548  * We explicitly avoid including any reference identical to
549  * 'message_id' in the result (to avoid mass confusion when a single
550  * message references itself cyclically---and yes, mail messages are
551  * not infrequent in the wild that do this---don't ask me why).
552  *
553  * Return the last reference parsed, if it is not equal to message_id.
554  */
555 static char *
556 parse_references (void *ctx,
557                   const char *message_id,
558                   GHashTable *hash,
559                   const char *refs)
560 {
561     char *ref, *last_ref = NULL;
562
563     if (refs == NULL || *refs == '\0')
564         return NULL;
565
566     while (*refs) {
567         ref = _parse_message_id (ctx, refs, &refs);
568
569         if (ref && strcmp (ref, message_id)) {
570             g_hash_table_insert (hash, ref, NULL);
571             last_ref = ref;
572         }
573     }
574
575     /* The return value of this function is used to add a parent
576      * reference to the database.  We should avoid making a message
577      * its own parent, thus the above check.
578      */
579     return last_ref;
580 }
581
582 notmuch_status_t
583 notmuch_database_create (const char *path, notmuch_database_t **database)
584 {
585     notmuch_status_t status = NOTMUCH_STATUS_SUCCESS;
586     notmuch_database_t *notmuch = NULL;
587     char *notmuch_path = NULL;
588     struct stat st;
589     int err;
590
591     if (path == NULL) {
592         fprintf (stderr, "Error: Cannot create a database for a NULL path.\n");
593         status = NOTMUCH_STATUS_NULL_POINTER;
594         goto DONE;
595     }
596
597     err = stat (path, &st);
598     if (err) {
599         fprintf (stderr, "Error: Cannot create database at %s: %s.\n",
600                  path, strerror (errno));
601         status = NOTMUCH_STATUS_FILE_ERROR;
602         goto DONE;
603     }
604
605     if (! S_ISDIR (st.st_mode)) {
606         fprintf (stderr, "Error: Cannot create database at %s: Not a directory.\n",
607                  path);
608         status = NOTMUCH_STATUS_FILE_ERROR;
609         goto DONE;
610     }
611
612     notmuch_path = talloc_asprintf (NULL, "%s/%s", path, ".notmuch");
613
614     err = mkdir (notmuch_path, 0755);
615
616     if (err) {
617         fprintf (stderr, "Error: Cannot create directory %s: %s.\n",
618                  notmuch_path, strerror (errno));
619         status = NOTMUCH_STATUS_FILE_ERROR;
620         goto DONE;
621     }
622
623     status = notmuch_database_open (path,
624                                     NOTMUCH_DATABASE_MODE_READ_WRITE,
625                                     &notmuch);
626     if (status)
627         goto DONE;
628
629     /* Upgrade doesn't add this feature to existing databases, but new
630      * databases have it. */
631     notmuch->features |= NOTMUCH_FEATURE_FROM_SUBJECT_ID_VALUES;
632
633     status = notmuch_database_upgrade (notmuch, NULL, NULL);
634     if (status) {
635         notmuch_database_close(notmuch);
636         notmuch = NULL;
637     }
638
639   DONE:
640     if (notmuch_path)
641         talloc_free (notmuch_path);
642
643     if (database)
644         *database = notmuch;
645     else
646         talloc_free (notmuch);
647     return status;
648 }
649
650 notmuch_status_t
651 _notmuch_database_ensure_writable (notmuch_database_t *notmuch)
652 {
653     if (notmuch->mode == NOTMUCH_DATABASE_MODE_READ_ONLY) {
654         fprintf (stderr, "Cannot write to a read-only database.\n");
655         return NOTMUCH_STATUS_READ_ONLY_DATABASE;
656     }
657
658     return NOTMUCH_STATUS_SUCCESS;
659 }
660
661 /* Parse a database features string from the given database version.
662  * Returns the feature bit set.
663  *
664  * For version < 3, this ignores the features string and returns a
665  * hard-coded set of features.
666  *
667  * If there are unrecognized features that are required to open the
668  * database in mode (which should be 'r' or 'w'), return a
669  * comma-separated list of unrecognized but required features in
670  * *incompat_out suitable for presenting to the user.  *incompat_out
671  * will be allocated from ctx.
672  */
673 static _notmuch_features
674 _parse_features (const void *ctx, const char *features, unsigned int version,
675                  char mode, char **incompat_out)
676 {
677     _notmuch_features res = static_cast<_notmuch_features>(0);
678     unsigned int namelen, i;
679     size_t llen = 0;
680     const char *flags;
681
682     /* Prior to database version 3, features were implied by the
683      * version number. */
684     if (version == 0)
685         return NOTMUCH_FEATURES_V0;
686     else if (version == 1)
687         return NOTMUCH_FEATURES_V1;
688     else if (version == 2)
689         return NOTMUCH_FEATURES_V2;
690
691     /* Parse the features string */
692     while ((features = strtok_len_c (features + llen, "\n", &llen)) != NULL) {
693         flags = strchr (features, '\t');
694         if (! flags || flags > features + llen)
695             continue;
696         namelen = flags - features;
697
698         for (i = 0; i < ARRAY_SIZE (feature_names); ++i) {
699             if (strlen (feature_names[i].name) == namelen &&
700                 strncmp (feature_names[i].name, features, namelen) == 0) {
701                 res |= feature_names[i].value;
702                 break;
703             }
704         }
705
706         if (i == ARRAY_SIZE (feature_names) && incompat_out) {
707             /* Unrecognized feature */
708             const char *have = strchr (flags, mode);
709             if (have && have < features + llen) {
710                 /* This feature is required to access this database in
711                  * 'mode', but we don't understand it. */
712                 if (! *incompat_out)
713                     *incompat_out = talloc_strdup (ctx, "");
714                 *incompat_out = talloc_asprintf_append_buffer (
715                     *incompat_out, "%s%.*s", **incompat_out ? ", " : "",
716                     namelen, features);
717             }
718         }
719     }
720
721     return res;
722 }
723
724 static char *
725 _print_features (const void *ctx, unsigned int features)
726 {
727     unsigned int i;
728     char *res = talloc_strdup (ctx, "");
729
730     for (i = 0; i < ARRAY_SIZE (feature_names); ++i)
731         if (features & feature_names[i].value)
732             res = talloc_asprintf_append_buffer (
733                 res, "%s\t%s\n", feature_names[i].name, feature_names[i].flags);
734
735     return res;
736 }
737
738 notmuch_status_t
739 notmuch_database_open (const char *path,
740                        notmuch_database_mode_t mode,
741                        notmuch_database_t **database)
742 {
743     notmuch_status_t status = NOTMUCH_STATUS_SUCCESS;
744     void *local = talloc_new (NULL);
745     notmuch_database_t *notmuch = NULL;
746     char *notmuch_path, *xapian_path, *incompat_features;
747     struct stat st;
748     int err;
749     unsigned int i, version;
750     static int initialized = 0;
751
752     if (path == NULL) {
753         fprintf (stderr, "Error: Cannot open a database for a NULL path.\n");
754         status = NOTMUCH_STATUS_NULL_POINTER;
755         goto DONE;
756     }
757
758     if (! (notmuch_path = talloc_asprintf (local, "%s/%s", path, ".notmuch"))) {
759         fprintf (stderr, "Out of memory\n");
760         status = NOTMUCH_STATUS_OUT_OF_MEMORY;
761         goto DONE;
762     }
763
764     err = stat (notmuch_path, &st);
765     if (err) {
766         fprintf (stderr, "Error opening database at %s: %s\n",
767                  notmuch_path, strerror (errno));
768         status = NOTMUCH_STATUS_FILE_ERROR;
769         goto DONE;
770     }
771
772     if (! (xapian_path = talloc_asprintf (local, "%s/%s", notmuch_path, "xapian"))) {
773         fprintf (stderr, "Out of memory\n");
774         status = NOTMUCH_STATUS_OUT_OF_MEMORY;
775         goto DONE;
776     }
777
778     /* Initialize the GLib type system and threads */
779 #if !GLIB_CHECK_VERSION(2, 35, 1)
780     g_type_init ();
781 #endif
782
783     /* Initialize gmime */
784     if (! initialized) {
785         g_mime_init (GMIME_ENABLE_RFC2047_WORKAROUNDS);
786         initialized = 1;
787     }
788
789     notmuch = talloc_zero (NULL, notmuch_database_t);
790     notmuch->exception_reported = FALSE;
791     notmuch->path = talloc_strdup (notmuch, path);
792
793     if (notmuch->path[strlen (notmuch->path) - 1] == '/')
794         notmuch->path[strlen (notmuch->path) - 1] = '\0';
795
796     notmuch->mode = mode;
797     notmuch->atomic_nesting = 0;
798     try {
799         string last_thread_id;
800
801         if (mode == NOTMUCH_DATABASE_MODE_READ_WRITE) {
802             notmuch->xapian_db = new Xapian::WritableDatabase (xapian_path,
803                                                                Xapian::DB_CREATE_OR_OPEN);
804         } else {
805             notmuch->xapian_db = new Xapian::Database (xapian_path);
806         }
807
808         /* Check version.  As of database version 3, we represent
809          * changes in terms of features, so assume a version bump
810          * means a dramatically incompatible change. */
811         version = notmuch_database_get_version (notmuch);
812         if (version > NOTMUCH_DATABASE_VERSION) {
813             fprintf (stderr,
814                      "Error: Notmuch database at %s\n"
815                      "       has a newer database format version (%u) than supported by this\n"
816                      "       version of notmuch (%u).\n",
817                      notmuch_path, version, NOTMUCH_DATABASE_VERSION);
818             notmuch->mode = NOTMUCH_DATABASE_MODE_READ_ONLY;
819             notmuch_database_destroy (notmuch);
820             notmuch = NULL;
821             status = NOTMUCH_STATUS_FILE_ERROR;
822             goto DONE;
823         }
824
825         /* Check features. */
826         incompat_features = NULL;
827         notmuch->features = _parse_features (
828             local, notmuch->xapian_db->get_metadata ("features").c_str (),
829             version, mode == NOTMUCH_DATABASE_MODE_READ_WRITE ? 'w' : 'r',
830             &incompat_features);
831         if (incompat_features) {
832             fprintf (stderr,
833                      "Error: Notmuch database at %s\n"
834                      "       requires features (%s)\n"
835                      "       not supported by this version of notmuch.\n",
836                      notmuch_path, incompat_features);
837             notmuch->mode = NOTMUCH_DATABASE_MODE_READ_ONLY;
838             notmuch_database_destroy (notmuch);
839             notmuch = NULL;
840             status = NOTMUCH_STATUS_FILE_ERROR;
841             goto DONE;
842         }
843
844         notmuch->last_doc_id = notmuch->xapian_db->get_lastdocid ();
845         last_thread_id = notmuch->xapian_db->get_metadata ("last_thread_id");
846         if (last_thread_id.empty ()) {
847             notmuch->last_thread_id = 0;
848         } else {
849             const char *str;
850             char *end;
851
852             str = last_thread_id.c_str ();
853             notmuch->last_thread_id = strtoull (str, &end, 16);
854             if (*end != '\0')
855                 INTERNAL_ERROR ("Malformed database last_thread_id: %s", str);
856         }
857
858         notmuch->query_parser = new Xapian::QueryParser;
859         notmuch->term_gen = new Xapian::TermGenerator;
860         notmuch->term_gen->set_stemmer (Xapian::Stem ("english"));
861         notmuch->value_range_processor = new Xapian::NumberValueRangeProcessor (NOTMUCH_VALUE_TIMESTAMP);
862         notmuch->date_range_processor = new ParseTimeValueRangeProcessor (NOTMUCH_VALUE_TIMESTAMP);
863
864         notmuch->query_parser->set_default_op (Xapian::Query::OP_AND);
865         notmuch->query_parser->set_database (*notmuch->xapian_db);
866         notmuch->query_parser->set_stemmer (Xapian::Stem ("english"));
867         notmuch->query_parser->set_stemming_strategy (Xapian::QueryParser::STEM_SOME);
868         notmuch->query_parser->add_valuerangeprocessor (notmuch->value_range_processor);
869         notmuch->query_parser->add_valuerangeprocessor (notmuch->date_range_processor);
870
871         for (i = 0; i < ARRAY_SIZE (BOOLEAN_PREFIX_EXTERNAL); i++) {
872             prefix_t *prefix = &BOOLEAN_PREFIX_EXTERNAL[i];
873             notmuch->query_parser->add_boolean_prefix (prefix->name,
874                                                        prefix->prefix);
875         }
876
877         for (i = 0; i < ARRAY_SIZE (PROBABILISTIC_PREFIX); i++) {
878             prefix_t *prefix = &PROBABILISTIC_PREFIX[i];
879             notmuch->query_parser->add_prefix (prefix->name, prefix->prefix);
880         }
881     } catch (const Xapian::Error &error) {
882         fprintf (stderr, "A Xapian exception occurred opening database: %s\n",
883                  error.get_msg().c_str());
884         notmuch_database_destroy (notmuch);
885         notmuch = NULL;
886         status = NOTMUCH_STATUS_XAPIAN_EXCEPTION;
887     }
888
889   DONE:
890     talloc_free (local);
891
892     if (database)
893         *database = notmuch;
894     else
895         talloc_free (notmuch);
896     return status;
897 }
898
899 notmuch_status_t
900 notmuch_database_close (notmuch_database_t *notmuch)
901 {
902     notmuch_status_t status = NOTMUCH_STATUS_SUCCESS;
903
904     try {
905         if (notmuch->xapian_db != NULL &&
906             notmuch->mode == NOTMUCH_DATABASE_MODE_READ_WRITE)
907             (static_cast <Xapian::WritableDatabase *> (notmuch->xapian_db))->flush ();
908     } catch (const Xapian::Error &error) {
909         status = NOTMUCH_STATUS_XAPIAN_EXCEPTION;
910         if (! notmuch->exception_reported) {
911             fprintf (stderr, "Error: A Xapian exception occurred flushing database: %s\n",
912                      error.get_msg().c_str());
913         }
914     }
915
916     /* Many Xapian objects (and thus notmuch objects) hold references to
917      * the database, so merely deleting the database may not suffice to
918      * close it.  Thus, we explicitly close it here. */
919     if (notmuch->xapian_db != NULL) {
920         try {
921             notmuch->xapian_db->close();
922         } catch (const Xapian::Error &error) {
923             /* don't clobber previous error status */
924             if (status == NOTMUCH_STATUS_SUCCESS)
925                 status = NOTMUCH_STATUS_XAPIAN_EXCEPTION;
926         }
927     }
928
929     delete notmuch->term_gen;
930     notmuch->term_gen = NULL;
931     delete notmuch->query_parser;
932     notmuch->query_parser = NULL;
933     delete notmuch->xapian_db;
934     notmuch->xapian_db = NULL;
935     delete notmuch->value_range_processor;
936     notmuch->value_range_processor = NULL;
937     delete notmuch->date_range_processor;
938     notmuch->date_range_processor = NULL;
939
940     return status;
941 }
942
943 #if HAVE_XAPIAN_COMPACT
944 static int
945 unlink_cb (const char *path,
946            unused (const struct stat *sb),
947            unused (int type),
948            unused (struct FTW *ftw))
949 {
950     return remove (path);
951 }
952
953 static int
954 rmtree (const char *path)
955 {
956     return nftw (path, unlink_cb, 64, FTW_DEPTH | FTW_PHYS);
957 }
958
959 class NotmuchCompactor : public Xapian::Compactor
960 {
961     notmuch_compact_status_cb_t status_cb;
962     void *status_closure;
963
964 public:
965     NotmuchCompactor(notmuch_compact_status_cb_t cb, void *closure) :
966         status_cb (cb), status_closure (closure) { }
967
968     virtual void
969     set_status (const std::string &table, const std::string &status)
970     {
971         char *msg;
972
973         if (status_cb == NULL)
974             return;
975
976         if (status.length () == 0)
977             msg = talloc_asprintf (NULL, "compacting table %s", table.c_str());
978         else
979             msg = talloc_asprintf (NULL, "     %s", status.c_str());
980
981         if (msg == NULL) {
982             return;
983         }
984
985         status_cb (msg, status_closure);
986         talloc_free (msg);
987     }
988 };
989
990 /* Compacts the given database, optionally saving the original database
991  * in backup_path. Additionally, a callback function can be provided to
992  * give the user feedback on the progress of the (likely long-lived)
993  * compaction process.
994  *
995  * The backup path must point to a directory on the same volume as the
996  * original database. Passing a NULL backup_path will result in the
997  * uncompacted database being deleted after compaction has finished.
998  * Note that the database write lock will be held during the
999  * compaction process to protect data integrity.
1000  */
1001 notmuch_status_t
1002 notmuch_database_compact (const char *path,
1003                           const char *backup_path,
1004                           notmuch_compact_status_cb_t status_cb,
1005                           void *closure)
1006 {
1007     void *local;
1008     char *notmuch_path, *xapian_path, *compact_xapian_path;
1009     notmuch_status_t ret = NOTMUCH_STATUS_SUCCESS;
1010     notmuch_database_t *notmuch = NULL;
1011     struct stat statbuf;
1012     notmuch_bool_t keep_backup;
1013
1014     local = talloc_new (NULL);
1015     if (! local)
1016         return NOTMUCH_STATUS_OUT_OF_MEMORY;
1017
1018     ret = notmuch_database_open (path, NOTMUCH_DATABASE_MODE_READ_WRITE, &notmuch);
1019     if (ret) {
1020         goto DONE;
1021     }
1022
1023     if (! (notmuch_path = talloc_asprintf (local, "%s/%s", path, ".notmuch"))) {
1024         ret = NOTMUCH_STATUS_OUT_OF_MEMORY;
1025         goto DONE;
1026     }
1027
1028     if (! (xapian_path = talloc_asprintf (local, "%s/%s", notmuch_path, "xapian"))) {
1029         ret = NOTMUCH_STATUS_OUT_OF_MEMORY;
1030         goto DONE;
1031     }
1032
1033     if (! (compact_xapian_path = talloc_asprintf (local, "%s.compact", xapian_path))) {
1034         ret = NOTMUCH_STATUS_OUT_OF_MEMORY;
1035         goto DONE;
1036     }
1037
1038     if (backup_path == NULL) {
1039         if (! (backup_path = talloc_asprintf (local, "%s.old", xapian_path))) {
1040             ret = NOTMUCH_STATUS_OUT_OF_MEMORY;
1041             goto DONE;
1042         }
1043         keep_backup = FALSE;
1044     }
1045     else {
1046         keep_backup = TRUE;
1047     }
1048
1049     if (stat (backup_path, &statbuf) != -1) {
1050         fprintf (stderr, "Path already exists: %s\n", backup_path);
1051         ret = NOTMUCH_STATUS_FILE_ERROR;
1052         goto DONE;
1053     }
1054     if (errno != ENOENT) {
1055         fprintf (stderr, "Unknown error while stat()ing path: %s\n",
1056                  strerror (errno));
1057         ret = NOTMUCH_STATUS_FILE_ERROR;
1058         goto DONE;
1059     }
1060
1061     /* Unconditionally attempt to remove old work-in-progress database (if
1062      * any). This is "protected" by database lock. If this fails due to write
1063      * errors (etc), the following code will fail and provide error message.
1064      */
1065     (void) rmtree (compact_xapian_path);
1066
1067     try {
1068         NotmuchCompactor compactor (status_cb, closure);
1069
1070         compactor.set_renumber (false);
1071         compactor.add_source (xapian_path);
1072         compactor.set_destdir (compact_xapian_path);
1073         compactor.compact ();
1074     } catch (const Xapian::Error &error) {
1075         fprintf (stderr, "Error while compacting: %s\n", error.get_msg().c_str());
1076         ret = NOTMUCH_STATUS_XAPIAN_EXCEPTION;
1077         goto DONE;
1078     }
1079
1080     if (rename (xapian_path, backup_path)) {
1081         fprintf (stderr, "Error moving %s to %s: %s\n",
1082                  xapian_path, backup_path, strerror (errno));
1083         ret = NOTMUCH_STATUS_FILE_ERROR;
1084         goto DONE;
1085     }
1086
1087     if (rename (compact_xapian_path, xapian_path)) {
1088         fprintf (stderr, "Error moving %s to %s: %s\n",
1089                  compact_xapian_path, xapian_path, strerror (errno));
1090         ret = NOTMUCH_STATUS_FILE_ERROR;
1091         goto DONE;
1092     }
1093
1094     if (! keep_backup) {
1095         if (rmtree (backup_path)) {
1096             fprintf (stderr, "Error removing old database %s: %s\n",
1097                      backup_path, strerror (errno));
1098             ret = NOTMUCH_STATUS_FILE_ERROR;
1099             goto DONE;
1100         }
1101     }
1102
1103   DONE:
1104     if (notmuch) {
1105         notmuch_status_t ret2;
1106
1107         ret2 = notmuch_database_destroy (notmuch);
1108
1109         /* don't clobber previous error status */
1110         if (ret == NOTMUCH_STATUS_SUCCESS && ret2 != NOTMUCH_STATUS_SUCCESS)
1111             ret = ret2;
1112     }
1113
1114     talloc_free (local);
1115
1116     return ret;
1117 }
1118 #else
1119 notmuch_status_t
1120 notmuch_database_compact (unused (const char *path),
1121                           unused (const char *backup_path),
1122                           unused (notmuch_compact_status_cb_t status_cb),
1123                           unused (void *closure))
1124 {
1125     fprintf (stderr, "notmuch was compiled against a xapian version lacking compaction support.\n");
1126     return NOTMUCH_STATUS_UNSUPPORTED_OPERATION;
1127 }
1128 #endif
1129
1130 notmuch_status_t
1131 notmuch_database_destroy (notmuch_database_t *notmuch)
1132 {
1133     notmuch_status_t status;
1134
1135     status = notmuch_database_close (notmuch);
1136     talloc_free (notmuch);
1137
1138     return status;
1139 }
1140
1141 const char *
1142 notmuch_database_get_path (notmuch_database_t *notmuch)
1143 {
1144     return notmuch->path;
1145 }
1146
1147 unsigned int
1148 notmuch_database_get_version (notmuch_database_t *notmuch)
1149 {
1150     unsigned int version;
1151     string version_string;
1152     const char *str;
1153     char *end;
1154
1155     version_string = notmuch->xapian_db->get_metadata ("version");
1156     if (version_string.empty ())
1157         return 0;
1158
1159     str = version_string.c_str ();
1160     if (str == NULL || *str == '\0')
1161         return 0;
1162
1163     version = strtoul (str, &end, 10);
1164     if (*end != '\0')
1165         INTERNAL_ERROR ("Malformed database version: %s", str);
1166
1167     return version;
1168 }
1169
1170 notmuch_bool_t
1171 notmuch_database_needs_upgrade (notmuch_database_t *notmuch)
1172 {
1173     return notmuch->mode == NOTMUCH_DATABASE_MODE_READ_WRITE &&
1174         ((NOTMUCH_FEATURES_CURRENT & ~notmuch->features) ||
1175          (notmuch_database_get_version (notmuch) < NOTMUCH_DATABASE_VERSION));
1176 }
1177
1178 static volatile sig_atomic_t do_progress_notify = 0;
1179
1180 static void
1181 handle_sigalrm (unused (int signal))
1182 {
1183     do_progress_notify = 1;
1184 }
1185
1186 /* Upgrade the current database.
1187  *
1188  * After opening a database in read-write mode, the client should
1189  * check if an upgrade is needed (notmuch_database_needs_upgrade) and
1190  * if so, upgrade with this function before making any modifications.
1191  *
1192  * The optional progress_notify callback can be used by the caller to
1193  * provide progress indication to the user. If non-NULL it will be
1194  * called periodically with 'count' as the number of messages upgraded
1195  * so far and 'total' the overall number of messages that will be
1196  * converted.
1197  */
1198 notmuch_status_t
1199 notmuch_database_upgrade (notmuch_database_t *notmuch,
1200                           void (*progress_notify) (void *closure,
1201                                                    double progress),
1202                           void *closure)
1203 {
1204     void *local = talloc_new (NULL);
1205     Xapian::TermIterator t, t_end;
1206     Xapian::WritableDatabase *db;
1207     struct sigaction action;
1208     struct itimerval timerval;
1209     notmuch_bool_t timer_is_active = FALSE;
1210     enum _notmuch_features target_features, new_features;
1211     notmuch_status_t status;
1212     unsigned int count = 0, total = 0;
1213
1214     status = _notmuch_database_ensure_writable (notmuch);
1215     if (status)
1216         return status;
1217
1218     db = static_cast <Xapian::WritableDatabase *> (notmuch->xapian_db);
1219
1220     target_features = notmuch->features | NOTMUCH_FEATURES_CURRENT;
1221     new_features = NOTMUCH_FEATURES_CURRENT & ~notmuch->features;
1222
1223     if (! new_features)
1224         return NOTMUCH_STATUS_SUCCESS;
1225
1226     if (progress_notify) {
1227         /* Setup our handler for SIGALRM */
1228         memset (&action, 0, sizeof (struct sigaction));
1229         action.sa_handler = handle_sigalrm;
1230         sigemptyset (&action.sa_mask);
1231         action.sa_flags = SA_RESTART;
1232         sigaction (SIGALRM, &action, NULL);
1233
1234         /* Then start a timer to send SIGALRM once per second. */
1235         timerval.it_interval.tv_sec = 1;
1236         timerval.it_interval.tv_usec = 0;
1237         timerval.it_value.tv_sec = 1;
1238         timerval.it_value.tv_usec = 0;
1239         setitimer (ITIMER_REAL, &timerval, NULL);
1240
1241         timer_is_active = TRUE;
1242     }
1243
1244     /* Perform the upgrade in a transaction. */
1245     db->begin_transaction (true);
1246
1247     /* Set the target features so we write out changes in the desired
1248      * format. */
1249     notmuch->features = target_features;
1250
1251     /* Perform per-message upgrades. */
1252     if (new_features &
1253         (NOTMUCH_FEATURE_FILE_TERMS | NOTMUCH_FEATURE_BOOL_FOLDER)) {
1254         notmuch_query_t *query = notmuch_query_create (notmuch, "");
1255         notmuch_messages_t *messages;
1256         notmuch_message_t *message;
1257         char *filename;
1258
1259         total = notmuch_query_count_messages (query);
1260
1261         for (messages = notmuch_query_search_messages (query);
1262              notmuch_messages_valid (messages);
1263              notmuch_messages_move_to_next (messages))
1264         {
1265             if (do_progress_notify) {
1266                 progress_notify (closure, (double) count / total);
1267                 do_progress_notify = 0;
1268             }
1269
1270             message = notmuch_messages_get (messages);
1271
1272             /* Before version 1, each message document had its
1273              * filename in the data field. Copy that into the new
1274              * format by calling notmuch_message_add_filename.
1275              */
1276             if (new_features & NOTMUCH_FEATURE_FILE_TERMS) {
1277                 filename = _notmuch_message_talloc_copy_data (message);
1278                 if (filename && *filename != '\0') {
1279                     _notmuch_message_add_filename (message, filename);
1280                     _notmuch_message_clear_data (message);
1281                 }
1282                 talloc_free (filename);
1283             }
1284
1285             /* Prior to version 2, the "folder:" prefix was
1286              * probabilistic and stemmed. Change it to the current
1287              * boolean prefix. Add "path:" prefixes while at it.
1288              */
1289             if (new_features & NOTMUCH_FEATURE_BOOL_FOLDER)
1290                 _notmuch_message_upgrade_folder (message);
1291
1292             _notmuch_message_sync (message);
1293
1294             notmuch_message_destroy (message);
1295
1296             count++;
1297         }
1298
1299         notmuch_query_destroy (query);
1300     }
1301
1302     /* Perform per-directory upgrades. */
1303
1304     /* Before version 1 we stored directory timestamps in
1305      * XTIMESTAMP documents instead of the current XDIRECTORY
1306      * documents. So copy those as well. */
1307     if (new_features & NOTMUCH_FEATURE_DIRECTORY_DOCS) {
1308         t_end = notmuch->xapian_db->allterms_end ("XTIMESTAMP");
1309
1310         for (t = notmuch->xapian_db->allterms_begin ("XTIMESTAMP");
1311              t != t_end;
1312              t++)
1313         {
1314             Xapian::PostingIterator p, p_end;
1315             std::string term = *t;
1316
1317             p_end = notmuch->xapian_db->postlist_end (term);
1318
1319             for (p = notmuch->xapian_db->postlist_begin (term);
1320                  p != p_end;
1321                  p++)
1322             {
1323                 Xapian::Document document;
1324                 time_t mtime;
1325                 notmuch_directory_t *directory;
1326
1327                 if (do_progress_notify) {
1328                     progress_notify (closure, (double) count / total);
1329                     do_progress_notify = 0;
1330                 }
1331
1332                 document = find_document_for_doc_id (notmuch, *p);
1333                 mtime = Xapian::sortable_unserialise (
1334                     document.get_value (NOTMUCH_VALUE_TIMESTAMP));
1335
1336                 directory = _notmuch_directory_create (notmuch, term.c_str() + 10,
1337                                                        NOTMUCH_FIND_CREATE, &status);
1338                 notmuch_directory_set_mtime (directory, mtime);
1339                 notmuch_directory_destroy (directory);
1340
1341                 db->delete_document (*p);
1342             }
1343         }
1344     }
1345
1346     db->set_metadata ("features", _print_features (local, notmuch->features));
1347     db->set_metadata ("version", STRINGIFY (NOTMUCH_DATABASE_VERSION));
1348
1349     db->commit_transaction ();
1350
1351     if (timer_is_active) {
1352         /* Now stop the timer. */
1353         timerval.it_interval.tv_sec = 0;
1354         timerval.it_interval.tv_usec = 0;
1355         timerval.it_value.tv_sec = 0;
1356         timerval.it_value.tv_usec = 0;
1357         setitimer (ITIMER_REAL, &timerval, NULL);
1358
1359         /* And disable the signal handler. */
1360         action.sa_handler = SIG_IGN;
1361         sigaction (SIGALRM, &action, NULL);
1362     }
1363
1364     talloc_free (local);
1365     return NOTMUCH_STATUS_SUCCESS;
1366 }
1367
1368 notmuch_status_t
1369 notmuch_database_begin_atomic (notmuch_database_t *notmuch)
1370 {
1371     if (notmuch->mode == NOTMUCH_DATABASE_MODE_READ_ONLY ||
1372         notmuch->atomic_nesting > 0)
1373         goto DONE;
1374
1375     try {
1376         (static_cast <Xapian::WritableDatabase *> (notmuch->xapian_db))->begin_transaction (false);
1377     } catch (const Xapian::Error &error) {
1378         fprintf (stderr, "A Xapian exception occurred beginning transaction: %s.\n",
1379                  error.get_msg().c_str());
1380         notmuch->exception_reported = TRUE;
1381         return NOTMUCH_STATUS_XAPIAN_EXCEPTION;
1382     }
1383
1384 DONE:
1385     notmuch->atomic_nesting++;
1386     return NOTMUCH_STATUS_SUCCESS;
1387 }
1388
1389 notmuch_status_t
1390 notmuch_database_end_atomic (notmuch_database_t *notmuch)
1391 {
1392     Xapian::WritableDatabase *db;
1393
1394     if (notmuch->atomic_nesting == 0)
1395         return NOTMUCH_STATUS_UNBALANCED_ATOMIC;
1396
1397     if (notmuch->mode == NOTMUCH_DATABASE_MODE_READ_ONLY ||
1398         notmuch->atomic_nesting > 1)
1399         goto DONE;
1400
1401     db = static_cast <Xapian::WritableDatabase *> (notmuch->xapian_db);
1402     try {
1403         db->commit_transaction ();
1404
1405         /* This is a hack for testing.  Xapian never flushes on a
1406          * non-flushed commit, even if the flush threshold is 1.
1407          * However, we rely on flushing to test atomicity. */
1408         const char *thresh = getenv ("XAPIAN_FLUSH_THRESHOLD");
1409         if (thresh && atoi (thresh) == 1)
1410             db->flush ();
1411     } catch (const Xapian::Error &error) {
1412         fprintf (stderr, "A Xapian exception occurred committing transaction: %s.\n",
1413                  error.get_msg().c_str());
1414         notmuch->exception_reported = TRUE;
1415         return NOTMUCH_STATUS_XAPIAN_EXCEPTION;
1416     }
1417
1418 DONE:
1419     notmuch->atomic_nesting--;
1420     return NOTMUCH_STATUS_SUCCESS;
1421 }
1422
1423 /* We allow the user to use arbitrarily long paths for directories. But
1424  * we have a term-length limit. So if we exceed that, we'll use the
1425  * SHA-1 of the path for the database term.
1426  *
1427  * Note: This function may return the original value of 'path'. If it
1428  * does not, then the caller is responsible to free() the returned
1429  * value.
1430  */
1431 const char *
1432 _notmuch_database_get_directory_db_path (const char *path)
1433 {
1434     int term_len = strlen (_find_prefix ("directory")) + strlen (path);
1435
1436     if (term_len > NOTMUCH_TERM_MAX)
1437         return _notmuch_sha1_of_string (path);
1438     else
1439         return path;
1440 }
1441
1442 /* Given a path, split it into two parts: the directory part is all
1443  * components except for the last, and the basename is that last
1444  * component. Getting the return-value for either part is optional
1445  * (the caller can pass NULL).
1446  *
1447  * The original 'path' can represent either a regular file or a
1448  * directory---the splitting will be carried out in the same way in
1449  * either case. Trailing slashes on 'path' will be ignored, and any
1450  * cases of multiple '/' characters appearing in series will be
1451  * treated as a single '/'.
1452  *
1453  * Allocation (if any) will have 'ctx' as the talloc owner. But
1454  * pointers will be returned within the original path string whenever
1455  * possible.
1456  *
1457  * Note: If 'path' is non-empty and contains no non-trailing slash,
1458  * (that is, consists of a filename with no parent directory), then
1459  * the directory returned will be an empty string. However, if 'path'
1460  * is an empty string, then both directory and basename will be
1461  * returned as NULL.
1462  */
1463 notmuch_status_t
1464 _notmuch_database_split_path (void *ctx,
1465                               const char *path,
1466                               const char **directory,
1467                               const char **basename)
1468 {
1469     const char *slash;
1470
1471     if (path == NULL || *path == '\0') {
1472         if (directory)
1473             *directory = NULL;
1474         if (basename)
1475             *basename = NULL;
1476         return NOTMUCH_STATUS_SUCCESS;
1477     }
1478
1479     /* Find the last slash (not counting a trailing slash), if any. */
1480
1481     slash = path + strlen (path) - 1;
1482
1483     /* First, skip trailing slashes. */
1484     while (slash != path) {
1485         if (*slash != '/')
1486             break;
1487
1488         --slash;
1489     }
1490
1491     /* Then, find a slash. */
1492     while (slash != path) {
1493         if (*slash == '/')
1494             break;
1495
1496         if (basename)
1497             *basename = slash;
1498
1499         --slash;
1500     }
1501
1502     /* Finally, skip multiple slashes. */
1503     while (slash != path) {
1504         if (*slash != '/')
1505             break;
1506
1507         --slash;
1508     }
1509
1510     if (slash == path) {
1511         if (directory)
1512             *directory = talloc_strdup (ctx, "");
1513         if (basename)
1514             *basename = path;
1515     } else {
1516         if (directory)
1517             *directory = talloc_strndup (ctx, path, slash - path + 1);
1518     }
1519
1520     return NOTMUCH_STATUS_SUCCESS;
1521 }
1522
1523 /* Find the document ID of the specified directory.
1524  *
1525  * If (flags & NOTMUCH_FIND_CREATE), a new directory document will be
1526  * created if one does not exist for 'path'.  Otherwise, if the
1527  * directory document does not exist, this sets *directory_id to
1528  * ((unsigned int)-1) and returns NOTMUCH_STATUS_SUCCESS.
1529  */
1530 notmuch_status_t
1531 _notmuch_database_find_directory_id (notmuch_database_t *notmuch,
1532                                      const char *path,
1533                                      notmuch_find_flags_t flags,
1534                                      unsigned int *directory_id)
1535 {
1536     notmuch_directory_t *directory;
1537     notmuch_status_t status;
1538
1539     if (path == NULL) {
1540         *directory_id = 0;
1541         return NOTMUCH_STATUS_SUCCESS;
1542     }
1543
1544     directory = _notmuch_directory_create (notmuch, path, flags, &status);
1545     if (status || !directory) {
1546         *directory_id = -1;
1547         return status;
1548     }
1549
1550     *directory_id = _notmuch_directory_get_document_id (directory);
1551
1552     notmuch_directory_destroy (directory);
1553
1554     return NOTMUCH_STATUS_SUCCESS;
1555 }
1556
1557 const char *
1558 _notmuch_database_get_directory_path (void *ctx,
1559                                       notmuch_database_t *notmuch,
1560                                       unsigned int doc_id)
1561 {
1562     Xapian::Document document;
1563
1564     document = find_document_for_doc_id (notmuch, doc_id);
1565
1566     return talloc_strdup (ctx, document.get_data ().c_str ());
1567 }
1568
1569 /* Given a legal 'filename' for the database, (either relative to
1570  * database path or absolute with initial components identical to
1571  * database path), return a new string (with 'ctx' as the talloc
1572  * owner) suitable for use as a direntry term value.
1573  *
1574  * If (flags & NOTMUCH_FIND_CREATE), the necessary directory documents
1575  * will be created in the database as needed.  Otherwise, if the
1576  * necessary directory documents do not exist, this sets
1577  * *direntry to NULL and returns NOTMUCH_STATUS_SUCCESS.
1578  */
1579 notmuch_status_t
1580 _notmuch_database_filename_to_direntry (void *ctx,
1581                                         notmuch_database_t *notmuch,
1582                                         const char *filename,
1583                                         notmuch_find_flags_t flags,
1584                                         char **direntry)
1585 {
1586     const char *relative, *directory, *basename;
1587     Xapian::docid directory_id;
1588     notmuch_status_t status;
1589
1590     relative = _notmuch_database_relative_path (notmuch, filename);
1591
1592     status = _notmuch_database_split_path (ctx, relative,
1593                                            &directory, &basename);
1594     if (status)
1595         return status;
1596
1597     status = _notmuch_database_find_directory_id (notmuch, directory, flags,
1598                                                   &directory_id);
1599     if (status || directory_id == (unsigned int)-1) {
1600         *direntry = NULL;
1601         return status;
1602     }
1603
1604     *direntry = talloc_asprintf (ctx, "%u:%s", directory_id, basename);
1605
1606     return NOTMUCH_STATUS_SUCCESS;
1607 }
1608
1609 /* Given a legal 'path' for the database, return the relative path.
1610  *
1611  * The return value will be a pointer to the original path contents,
1612  * and will be either the original string (if 'path' was relative) or
1613  * a portion of the string (if path was absolute and begins with the
1614  * database path).
1615  */
1616 const char *
1617 _notmuch_database_relative_path (notmuch_database_t *notmuch,
1618                                  const char *path)
1619 {
1620     const char *db_path, *relative;
1621     unsigned int db_path_len;
1622
1623     db_path = notmuch_database_get_path (notmuch);
1624     db_path_len = strlen (db_path);
1625
1626     relative = path;
1627
1628     if (*relative == '/') {
1629         while (*relative == '/' && *(relative+1) == '/')
1630             relative++;
1631
1632         if (strncmp (relative, db_path, db_path_len) == 0)
1633         {
1634             relative += db_path_len;
1635             while (*relative == '/')
1636                 relative++;
1637         }
1638     }
1639
1640     return relative;
1641 }
1642
1643 notmuch_status_t
1644 notmuch_database_get_directory (notmuch_database_t *notmuch,
1645                                 const char *path,
1646                                 notmuch_directory_t **directory)
1647 {
1648     notmuch_status_t status;
1649
1650     if (directory == NULL)
1651         return NOTMUCH_STATUS_NULL_POINTER;
1652     *directory = NULL;
1653
1654     try {
1655         *directory = _notmuch_directory_create (notmuch, path,
1656                                                 NOTMUCH_FIND_LOOKUP, &status);
1657     } catch (const Xapian::Error &error) {
1658         fprintf (stderr, "A Xapian exception occurred getting directory: %s.\n",
1659                  error.get_msg().c_str());
1660         notmuch->exception_reported = TRUE;
1661         status = NOTMUCH_STATUS_XAPIAN_EXCEPTION;
1662     }
1663     return status;
1664 }
1665
1666 /* Allocate a document ID that satisfies the following criteria:
1667  *
1668  * 1. The ID does not exist for any document in the Xapian database
1669  *
1670  * 2. The ID was not previously returned from this function
1671  *
1672  * 3. The ID is the smallest integer satisfying (1) and (2)
1673  *
1674  * This function will trigger an internal error if these constraints
1675  * cannot all be satisfied, (that is, the pool of available document
1676  * IDs has been exhausted).
1677  */
1678 unsigned int
1679 _notmuch_database_generate_doc_id (notmuch_database_t *notmuch)
1680 {
1681     assert (notmuch->last_doc_id >= notmuch->xapian_db->get_lastdocid ());
1682
1683     notmuch->last_doc_id++;
1684
1685     if (notmuch->last_doc_id == 0)
1686         INTERNAL_ERROR ("Xapian document IDs are exhausted.\n");
1687
1688     return notmuch->last_doc_id;
1689 }
1690
1691 static const char *
1692 _notmuch_database_generate_thread_id (notmuch_database_t *notmuch)
1693 {
1694     /* 16 bytes (+ terminator) for hexadecimal representation of
1695      * a 64-bit integer. */
1696     static char thread_id[17];
1697     Xapian::WritableDatabase *db;
1698
1699     db = static_cast <Xapian::WritableDatabase *> (notmuch->xapian_db);
1700
1701     notmuch->last_thread_id++;
1702
1703     sprintf (thread_id, "%016" PRIx64, notmuch->last_thread_id);
1704
1705     db->set_metadata ("last_thread_id", thread_id);
1706
1707     return thread_id;
1708 }
1709
1710 static char *
1711 _get_metadata_thread_id_key (void *ctx, const char *message_id)
1712 {
1713     if (strlen (message_id) > NOTMUCH_MESSAGE_ID_MAX)
1714         message_id = _message_id_compressed (ctx, message_id);
1715
1716     return talloc_asprintf (ctx, NOTMUCH_METADATA_THREAD_ID_PREFIX "%s",
1717                             message_id);
1718 }
1719
1720 /* Find the thread ID to which the message with 'message_id' belongs.
1721  *
1722  * Note: 'thread_id_ret' must not be NULL!
1723  * On success '*thread_id_ret' is set to a newly talloced string belonging to
1724  * 'ctx'.
1725  *
1726  * Note: If there is no message in the database with the given
1727  * 'message_id' then a new thread_id will be allocated for this
1728  * message and stored in the database metadata, (where this same
1729  * thread ID can be looked up if the message is added to the database
1730  * later).
1731  */
1732 static notmuch_status_t
1733 _resolve_message_id_to_thread_id (notmuch_database_t *notmuch,
1734                                   void *ctx,
1735                                   const char *message_id,
1736                                   const char **thread_id_ret)
1737 {
1738     notmuch_status_t status;
1739     notmuch_message_t *message;
1740     string thread_id_string;
1741     char *metadata_key;
1742     Xapian::WritableDatabase *db;
1743
1744     status = notmuch_database_find_message (notmuch, message_id, &message);
1745
1746     if (status)
1747         return status;
1748
1749     if (message) {
1750         *thread_id_ret = talloc_steal (ctx,
1751                                        notmuch_message_get_thread_id (message));
1752
1753         notmuch_message_destroy (message);
1754
1755         return NOTMUCH_STATUS_SUCCESS;
1756     }
1757
1758     /* Message has not been seen yet.
1759      *
1760      * We may have seen a reference to it already, in which case, we
1761      * can return the thread ID stored in the metadata. Otherwise, we
1762      * generate a new thread ID and store it there.
1763      */
1764     db = static_cast <Xapian::WritableDatabase *> (notmuch->xapian_db);
1765     metadata_key = _get_metadata_thread_id_key (ctx, message_id);
1766     thread_id_string = notmuch->xapian_db->get_metadata (metadata_key);
1767
1768     if (thread_id_string.empty()) {
1769         *thread_id_ret = talloc_strdup (ctx,
1770                                         _notmuch_database_generate_thread_id (notmuch));
1771         db->set_metadata (metadata_key, *thread_id_ret);
1772     } else {
1773         *thread_id_ret = talloc_strdup (ctx, thread_id_string.c_str());
1774     }
1775
1776     talloc_free (metadata_key);
1777
1778     return NOTMUCH_STATUS_SUCCESS;
1779 }
1780
1781 static notmuch_status_t
1782 _merge_threads (notmuch_database_t *notmuch,
1783                 const char *winner_thread_id,
1784                 const char *loser_thread_id)
1785 {
1786     Xapian::PostingIterator loser, loser_end;
1787     notmuch_message_t *message = NULL;
1788     notmuch_private_status_t private_status;
1789     notmuch_status_t ret = NOTMUCH_STATUS_SUCCESS;
1790
1791     find_doc_ids (notmuch, "thread", loser_thread_id, &loser, &loser_end);
1792
1793     for ( ; loser != loser_end; loser++) {
1794         message = _notmuch_message_create (notmuch, notmuch,
1795                                            *loser, &private_status);
1796         if (message == NULL) {
1797             ret = COERCE_STATUS (private_status,
1798                                  "Cannot find document for doc_id from query");
1799             goto DONE;
1800         }
1801
1802         _notmuch_message_remove_term (message, "thread", loser_thread_id);
1803         _notmuch_message_add_term (message, "thread", winner_thread_id);
1804         _notmuch_message_sync (message);
1805
1806         notmuch_message_destroy (message);
1807         message = NULL;
1808     }
1809
1810   DONE:
1811     if (message)
1812         notmuch_message_destroy (message);
1813
1814     return ret;
1815 }
1816
1817 static void
1818 _my_talloc_free_for_g_hash (void *ptr)
1819 {
1820     talloc_free (ptr);
1821 }
1822
1823 static notmuch_status_t
1824 _notmuch_database_link_message_to_parents (notmuch_database_t *notmuch,
1825                                            notmuch_message_t *message,
1826                                            notmuch_message_file_t *message_file,
1827                                            const char **thread_id)
1828 {
1829     GHashTable *parents = NULL;
1830     const char *refs, *in_reply_to, *in_reply_to_message_id;
1831     const char *last_ref_message_id, *this_message_id;
1832     GList *l, *keys = NULL;
1833     notmuch_status_t ret = NOTMUCH_STATUS_SUCCESS;
1834
1835     parents = g_hash_table_new_full (g_str_hash, g_str_equal,
1836                                      _my_talloc_free_for_g_hash, NULL);
1837     this_message_id = notmuch_message_get_message_id (message);
1838
1839     refs = _notmuch_message_file_get_header (message_file, "references");
1840     last_ref_message_id = parse_references (message,
1841                                             this_message_id,
1842                                             parents, refs);
1843
1844     in_reply_to = _notmuch_message_file_get_header (message_file, "in-reply-to");
1845     in_reply_to_message_id = parse_references (message,
1846                                                this_message_id,
1847                                                parents, in_reply_to);
1848
1849     /* For the parent of this message, use the last message ID of the
1850      * References header, if available.  If not, fall back to the
1851      * first message ID in the In-Reply-To header. */
1852     if (last_ref_message_id) {
1853         _notmuch_message_add_term (message, "replyto",
1854                                    last_ref_message_id);
1855     } else if (in_reply_to_message_id) {
1856         _notmuch_message_add_term (message, "replyto",
1857                              in_reply_to_message_id);
1858     }
1859
1860     keys = g_hash_table_get_keys (parents);
1861     for (l = keys; l; l = l->next) {
1862         char *parent_message_id;
1863         const char *parent_thread_id = NULL;
1864
1865         parent_message_id = (char *) l->data;
1866
1867         _notmuch_message_add_term (message, "reference",
1868                                    parent_message_id);
1869
1870         ret = _resolve_message_id_to_thread_id (notmuch,
1871                                                 message,
1872                                                 parent_message_id,
1873                                                 &parent_thread_id);
1874         if (ret)
1875             goto DONE;
1876
1877         if (*thread_id == NULL) {
1878             *thread_id = talloc_strdup (message, parent_thread_id);
1879             _notmuch_message_add_term (message, "thread", *thread_id);
1880         } else if (strcmp (*thread_id, parent_thread_id)) {
1881             ret = _merge_threads (notmuch, *thread_id, parent_thread_id);
1882             if (ret)
1883                 goto DONE;
1884         }
1885     }
1886
1887   DONE:
1888     if (keys)
1889         g_list_free (keys);
1890     if (parents)
1891         g_hash_table_unref (parents);
1892
1893     return ret;
1894 }
1895
1896 static notmuch_status_t
1897 _notmuch_database_link_message_to_children (notmuch_database_t *notmuch,
1898                                             notmuch_message_t *message,
1899                                             const char **thread_id)
1900 {
1901     const char *message_id = notmuch_message_get_message_id (message);
1902     Xapian::PostingIterator child, children_end;
1903     notmuch_message_t *child_message = NULL;
1904     const char *child_thread_id;
1905     notmuch_status_t ret = NOTMUCH_STATUS_SUCCESS;
1906     notmuch_private_status_t private_status;
1907
1908     find_doc_ids (notmuch, "reference", message_id, &child, &children_end);
1909
1910     for ( ; child != children_end; child++) {
1911
1912         child_message = _notmuch_message_create (message, notmuch,
1913                                                  *child, &private_status);
1914         if (child_message == NULL) {
1915             ret = COERCE_STATUS (private_status,
1916                                  "Cannot find document for doc_id from query");
1917             goto DONE;
1918         }
1919
1920         child_thread_id = notmuch_message_get_thread_id (child_message);
1921         if (*thread_id == NULL) {
1922             *thread_id = talloc_strdup (message, child_thread_id);
1923             _notmuch_message_add_term (message, "thread", *thread_id);
1924         } else if (strcmp (*thread_id, child_thread_id)) {
1925             _notmuch_message_remove_term (child_message, "reference",
1926                                           message_id);
1927             _notmuch_message_sync (child_message);
1928             ret = _merge_threads (notmuch, *thread_id, child_thread_id);
1929             if (ret)
1930                 goto DONE;
1931         }
1932
1933         notmuch_message_destroy (child_message);
1934         child_message = NULL;
1935     }
1936
1937   DONE:
1938     if (child_message)
1939         notmuch_message_destroy (child_message);
1940
1941     return ret;
1942 }
1943
1944 /* Given a (mostly empty) 'message' and its corresponding
1945  * 'message_file' link it to existing threads in the database.
1946  *
1947  * The first check is in the metadata of the database to see if we
1948  * have pre-allocated a thread_id in advance for this message, (which
1949  * would have happened if a message was previously added that
1950  * referenced this one).
1951  *
1952  * Second, we look at 'message_file' and its link-relevant headers
1953  * (References and In-Reply-To) for message IDs.
1954  *
1955  * Finally, we look in the database for existing message that
1956  * reference 'message'.
1957  *
1958  * In all cases, we assign to the current message the first thread_id
1959  * found (through either parent or child). We will also merge any
1960  * existing, distinct threads where this message belongs to both,
1961  * (which is not uncommon when messages are processed out of order).
1962  *
1963  * Finally, if no thread ID has been found through parent or child, we
1964  * call _notmuch_message_generate_thread_id to generate a new thread
1965  * ID. This should only happen for new, top-level messages, (no
1966  * References or In-Reply-To header in this message, and no previously
1967  * added message refers to this message).
1968  */
1969 static notmuch_status_t
1970 _notmuch_database_link_message (notmuch_database_t *notmuch,
1971                                 notmuch_message_t *message,
1972                                 notmuch_message_file_t *message_file)
1973 {
1974     notmuch_status_t status;
1975     const char *message_id, *thread_id = NULL;
1976     char *metadata_key;
1977     string stored_id;
1978
1979     message_id = notmuch_message_get_message_id (message);
1980     metadata_key = _get_metadata_thread_id_key (message, message_id);
1981
1982     /* Check if we have already seen related messages to this one.
1983      * If we have then use the thread_id that we stored at that time.
1984      */
1985     stored_id = notmuch->xapian_db->get_metadata (metadata_key);
1986     if (! stored_id.empty()) {
1987         Xapian::WritableDatabase *db;
1988
1989         db = static_cast <Xapian::WritableDatabase *> (notmuch->xapian_db);
1990
1991         /* Clear the metadata for this message ID. We don't need it
1992          * anymore. */
1993         db->set_metadata (metadata_key, "");
1994         thread_id = stored_id.c_str();
1995
1996         _notmuch_message_add_term (message, "thread", thread_id);
1997     }
1998     talloc_free (metadata_key);
1999
2000     status = _notmuch_database_link_message_to_parents (notmuch, message,
2001                                                         message_file,
2002                                                         &thread_id);
2003     if (status)
2004         return status;
2005
2006     status = _notmuch_database_link_message_to_children (notmuch, message,
2007                                                          &thread_id);
2008     if (status)
2009         return status;
2010
2011     /* If not part of any existing thread, generate a new thread ID. */
2012     if (thread_id == NULL) {
2013         thread_id = _notmuch_database_generate_thread_id (notmuch);
2014
2015         _notmuch_message_add_term (message, "thread", thread_id);
2016     }
2017
2018     return NOTMUCH_STATUS_SUCCESS;
2019 }
2020
2021 notmuch_status_t
2022 notmuch_database_add_message (notmuch_database_t *notmuch,
2023                               const char *filename,
2024                               notmuch_message_t **message_ret)
2025 {
2026     notmuch_message_file_t *message_file;
2027     notmuch_message_t *message = NULL;
2028     notmuch_status_t ret = NOTMUCH_STATUS_SUCCESS, ret2;
2029     notmuch_private_status_t private_status;
2030
2031     const char *date, *header;
2032     const char *from, *to, *subject;
2033     char *message_id = NULL;
2034
2035     if (message_ret)
2036         *message_ret = NULL;
2037
2038     ret = _notmuch_database_ensure_writable (notmuch);
2039     if (ret)
2040         return ret;
2041
2042     message_file = _notmuch_message_file_open (filename);
2043     if (message_file == NULL)
2044         return NOTMUCH_STATUS_FILE_ERROR;
2045
2046     /* Adding a message may change many documents.  Do this all
2047      * atomically. */
2048     ret = notmuch_database_begin_atomic (notmuch);
2049     if (ret)
2050         goto DONE;
2051
2052     /* Parse message up front to get better error status. */
2053     ret = _notmuch_message_file_parse (message_file);
2054     if (ret)
2055         goto DONE;
2056
2057     try {
2058         /* Before we do any real work, (especially before doing a
2059          * potential SHA-1 computation on the entire file's contents),
2060          * let's make sure that what we're looking at looks like an
2061          * actual email message.
2062          */
2063         from = _notmuch_message_file_get_header (message_file, "from");
2064         subject = _notmuch_message_file_get_header (message_file, "subject");
2065         to = _notmuch_message_file_get_header (message_file, "to");
2066
2067         if ((from == NULL || *from == '\0') &&
2068             (subject == NULL || *subject == '\0') &&
2069             (to == NULL || *to == '\0'))
2070         {
2071             ret = NOTMUCH_STATUS_FILE_NOT_EMAIL;
2072             goto DONE;
2073         }
2074
2075         /* Now that we're sure it's mail, the first order of business
2076          * is to find a message ID (or else create one ourselves). */
2077
2078         header = _notmuch_message_file_get_header (message_file, "message-id");
2079         if (header && *header != '\0') {
2080             message_id = _parse_message_id (message_file, header, NULL);
2081
2082             /* So the header value isn't RFC-compliant, but it's
2083              * better than no message-id at all. */
2084             if (message_id == NULL)
2085                 message_id = talloc_strdup (message_file, header);
2086
2087             /* If a message ID is too long, substitute its sha1 instead. */
2088             if (message_id && strlen (message_id) > NOTMUCH_MESSAGE_ID_MAX) {
2089                 char *compressed = _message_id_compressed (message_file,
2090                                                            message_id);
2091                 talloc_free (message_id);
2092                 message_id = compressed;
2093             }
2094         }
2095
2096         if (message_id == NULL ) {
2097             /* No message-id at all, let's generate one by taking a
2098              * hash over the file's contents. */
2099             char *sha1 = _notmuch_sha1_of_file (filename);
2100
2101             /* If that failed too, something is really wrong. Give up. */
2102             if (sha1 == NULL) {
2103                 ret = NOTMUCH_STATUS_FILE_ERROR;
2104                 goto DONE;
2105             }
2106
2107             message_id = talloc_asprintf (message_file,
2108                                           "notmuch-sha1-%s", sha1);
2109             free (sha1);
2110         }
2111
2112         /* Now that we have a message ID, we get a message object,
2113          * (which may or may not reference an existing document in the
2114          * database). */
2115
2116         message = _notmuch_message_create_for_message_id (notmuch,
2117                                                           message_id,
2118                                                           &private_status);
2119
2120         talloc_free (message_id);
2121
2122         if (message == NULL) {
2123             ret = COERCE_STATUS (private_status,
2124                                  "Unexpected status value from _notmuch_message_create_for_message_id");
2125             goto DONE;
2126         }
2127
2128         _notmuch_message_add_filename (message, filename);
2129
2130         /* Is this a newly created message object? */
2131         if (private_status == NOTMUCH_PRIVATE_STATUS_NO_DOCUMENT_FOUND) {
2132             _notmuch_message_add_term (message, "type", "mail");
2133
2134             ret = _notmuch_database_link_message (notmuch, message,
2135                                                   message_file);
2136             if (ret)
2137                 goto DONE;
2138
2139             date = _notmuch_message_file_get_header (message_file, "date");
2140             _notmuch_message_set_header_values (message, date, from, subject);
2141
2142             ret = _notmuch_message_index_file (message, message_file);
2143             if (ret)
2144                 goto DONE;
2145         } else {
2146             ret = NOTMUCH_STATUS_DUPLICATE_MESSAGE_ID;
2147         }
2148
2149         _notmuch_message_sync (message);
2150     } catch (const Xapian::Error &error) {
2151         fprintf (stderr, "A Xapian exception occurred adding message: %s.\n",
2152                  error.get_msg().c_str());
2153         notmuch->exception_reported = TRUE;
2154         ret = NOTMUCH_STATUS_XAPIAN_EXCEPTION;
2155         goto DONE;
2156     }
2157
2158   DONE:
2159     if (message) {
2160         if ((ret == NOTMUCH_STATUS_SUCCESS ||
2161              ret == NOTMUCH_STATUS_DUPLICATE_MESSAGE_ID) && message_ret)
2162             *message_ret = message;
2163         else
2164             notmuch_message_destroy (message);
2165     }
2166
2167     if (message_file)
2168         _notmuch_message_file_close (message_file);
2169
2170     ret2 = notmuch_database_end_atomic (notmuch);
2171     if ((ret == NOTMUCH_STATUS_SUCCESS ||
2172          ret == NOTMUCH_STATUS_DUPLICATE_MESSAGE_ID) &&
2173         ret2 != NOTMUCH_STATUS_SUCCESS)
2174         ret = ret2;
2175
2176     return ret;
2177 }
2178
2179 notmuch_status_t
2180 notmuch_database_remove_message (notmuch_database_t *notmuch,
2181                                  const char *filename)
2182 {
2183     notmuch_status_t status;
2184     notmuch_message_t *message;
2185
2186     status = notmuch_database_find_message_by_filename (notmuch, filename,
2187                                                         &message);
2188
2189     if (status == NOTMUCH_STATUS_SUCCESS && message) {
2190             status = _notmuch_message_remove_filename (message, filename);
2191             if (status == NOTMUCH_STATUS_SUCCESS)
2192                 _notmuch_message_delete (message);
2193             else if (status == NOTMUCH_STATUS_DUPLICATE_MESSAGE_ID)
2194                 _notmuch_message_sync (message);
2195
2196             notmuch_message_destroy (message);
2197     }
2198
2199     return status;
2200 }
2201
2202 notmuch_status_t
2203 notmuch_database_find_message_by_filename (notmuch_database_t *notmuch,
2204                                            const char *filename,
2205                                            notmuch_message_t **message_ret)
2206 {
2207     void *local;
2208     const char *prefix = _find_prefix ("file-direntry");
2209     char *direntry, *term;
2210     Xapian::PostingIterator i, end;
2211     notmuch_status_t status;
2212
2213     if (message_ret == NULL)
2214         return NOTMUCH_STATUS_NULL_POINTER;
2215
2216     /* return NULL on any failure */
2217     *message_ret = NULL;
2218
2219     local = talloc_new (notmuch);
2220
2221     try {
2222         status = _notmuch_database_filename_to_direntry (
2223             local, notmuch, filename, NOTMUCH_FIND_LOOKUP, &direntry);
2224         if (status || !direntry)
2225             goto DONE;
2226
2227         term = talloc_asprintf (local, "%s%s", prefix, direntry);
2228
2229         find_doc_ids_for_term (notmuch, term, &i, &end);
2230
2231         if (i != end) {
2232             notmuch_private_status_t private_status;
2233
2234             *message_ret = _notmuch_message_create (notmuch, notmuch, *i,
2235                                                     &private_status);
2236             if (*message_ret == NULL)
2237                 status = NOTMUCH_STATUS_OUT_OF_MEMORY;
2238         }
2239     } catch (const Xapian::Error &error) {
2240         fprintf (stderr, "Error: A Xapian exception occurred finding message by filename: %s\n",
2241                  error.get_msg().c_str());
2242         notmuch->exception_reported = TRUE;
2243         status = NOTMUCH_STATUS_XAPIAN_EXCEPTION;
2244     }
2245
2246   DONE:
2247     talloc_free (local);
2248
2249     if (status && *message_ret) {
2250         notmuch_message_destroy (*message_ret);
2251         *message_ret = NULL;
2252     }
2253     return status;
2254 }
2255
2256 notmuch_string_list_t *
2257 _notmuch_database_get_terms_with_prefix (void *ctx, Xapian::TermIterator &i,
2258                                          Xapian::TermIterator &end,
2259                                          const char *prefix)
2260 {
2261     int prefix_len = strlen (prefix);
2262     notmuch_string_list_t *list;
2263
2264     list = _notmuch_string_list_create (ctx);
2265     if (unlikely (list == NULL))
2266         return NULL;
2267
2268     for (i.skip_to (prefix); i != end; i++) {
2269         /* Terminate loop at first term without desired prefix. */
2270         if (strncmp ((*i).c_str (), prefix, prefix_len))
2271             break;
2272
2273         _notmuch_string_list_append (list, (*i).c_str () + prefix_len);
2274     }
2275
2276     return list;
2277 }
2278
2279 notmuch_tags_t *
2280 notmuch_database_get_all_tags (notmuch_database_t *db)
2281 {
2282     Xapian::TermIterator i, end;
2283     notmuch_string_list_t *tags;
2284
2285     try {
2286         i = db->xapian_db->allterms_begin();
2287         end = db->xapian_db->allterms_end();
2288         tags = _notmuch_database_get_terms_with_prefix (db, i, end,
2289                                                         _find_prefix ("tag"));
2290         _notmuch_string_list_sort (tags);
2291         return _notmuch_tags_create (db, tags);
2292     } catch (const Xapian::Error &error) {
2293         fprintf (stderr, "A Xapian exception occurred getting tags: %s.\n",
2294                  error.get_msg().c_str());
2295         db->exception_reported = TRUE;
2296         return NULL;
2297     }
2298 }