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