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