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