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