]> git.notmuchmail.org Git - notmuch/blob - lib/database.cc
Print information about where Xapian exception occurred.
[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
23 #include <iostream>
24
25 #include <xapian.h>
26
27 #include <glib.h> /* g_free, GPtrArray, GHashTable */
28
29 using namespace std;
30
31 #define ARRAY_SIZE(arr) (sizeof (arr) / sizeof (arr[0]))
32
33 typedef struct {
34     const char *name;
35     const char *prefix;
36 } prefix_t;
37
38 /* Here's the current schema for our database:
39  *
40  * We currently have two different types of documents: mail and timestamps.
41  *
42  * Mail document
43  * -------------
44  * A mail document is associated with a particular email message file
45  * on disk. It is indexed with the following prefixed terms which the
46  * database uses to construct threads, etc.:
47  *
48  *    Single terms of given prefix:
49  *
50  *      type:   mail
51  *
52  *      id:     Unique ID of mail, (from Message-ID header or generated
53  *              as "notmuch-sha1-<sha1_sum_of_entire_file>.
54  *
55  *      thread: The ID of the thread to which the mail belongs
56  *
57  *      replyto: The ID from the In-Reply-To header of the mail (if any).
58  *
59  *    Multiple terms of given prefix:
60  *
61  *      reference: All message IDs from In-Reply-To and Re ferences
62  *                 headers in the message.
63  *
64  *      tag:       Any tags associated with this message by the user.
65  *
66  *    A mail document also has two values:
67  *
68  *      TIMESTAMP:      The time_t value corresponding to the message's
69  *                      Date header.
70  *
71  *      MESSAGE_ID:     The unique ID of the mail mess (see "id" above)
72  *
73  * In addition, terms from the content of the message are added with
74  * "from", "to", "attachment", and "subject" prefixes for use by the
75  * user in searching. But the database doesn't really care itself
76  * about any of these.
77  *
78  * Timestamp document
79  * ------------------
80  * A timestamp document is used by a client of the notmuch library to
81  * maintain data necessary to allow for efficient polling of mail
82  * directories. The notmuch library does no interpretation of
83  * timestamps, but merely allows the user to store and retrieve
84  * timestamps as name/value pairs.
85  *
86  * The timestamp document is indexed with a single prefixed term:
87  *
88  *      timestamp:      The user's key value (likely a directory name)
89  *
90  * and has a single value:
91  *
92  *      TIMESTAMP:      The time_t value from the user.
93  */
94
95 /* With these prefix values we follow the conventions published here:
96  *
97  * http://xapian.org/docs/omega/termprefixes.html
98  *
99  * as much as makes sense. Note that I took some liberty in matching
100  * the reserved prefix values to notmuch concepts, (for example, 'G'
101  * is documented as "newsGroup (or similar entity - e.g. a web forum
102  * name)", for which I think the thread is the closest analogue in
103  * notmuch. This in spite of the fact that we will eventually be
104  * storing mailing-list messages where 'G' for "mailing list name"
105  * might be even a closer analogue. I'm treating the single-character
106  * prefixes preferentially for core notmuch concepts (which will be
107  * nearly universal to all mail messages).
108  */
109
110 prefix_t BOOLEAN_PREFIX_INTERNAL[] = {
111     { "type", "T" },
112     { "reference", "XREFERENCE" },
113     { "replyto", "XREPLYTO" },
114     { "timestamp", "XTIMESTAMP" },
115 };
116
117 prefix_t BOOLEAN_PREFIX_EXTERNAL[] = {
118     { "thread", "G" },
119     { "tag", "K" },
120     { "id", "Q" }
121 };
122
123 prefix_t PROBABILISTIC_PREFIX[]= {
124     { "from", "XFROM" },
125     { "to", "XTO" },
126     { "attachment", "XATTACHMENT" },
127     { "subject", "XSUBJECT"}
128 };
129
130 int
131 _internal_error (const char *format, ...)
132 {
133     va_list va_args;
134
135     va_start (va_args, format);
136
137     fprintf (stderr, "Internal error: ");
138     vfprintf (stderr, format, va_args);
139
140     exit (1);
141
142     return 1;
143 }
144
145 const char *
146 _find_prefix (const char *name)
147 {
148     unsigned int i;
149
150     for (i = 0; i < ARRAY_SIZE (BOOLEAN_PREFIX_INTERNAL); i++)
151         if (strcmp (name, BOOLEAN_PREFIX_INTERNAL[i].name) == 0)
152             return BOOLEAN_PREFIX_INTERNAL[i].prefix;
153
154     for (i = 0; i < ARRAY_SIZE (BOOLEAN_PREFIX_EXTERNAL); i++)
155         if (strcmp (name, BOOLEAN_PREFIX_EXTERNAL[i].name) == 0)
156             return BOOLEAN_PREFIX_EXTERNAL[i].prefix;
157
158     for (i = 0; i < ARRAY_SIZE (PROBABILISTIC_PREFIX); i++)
159         if (strcmp (name, PROBABILISTIC_PREFIX[i].name) == 0)
160             return PROBABILISTIC_PREFIX[i].prefix;
161
162     INTERNAL_ERROR ("No prefix exists for '%s'\n", name);
163
164     return "";
165 }
166
167 const char *
168 notmuch_status_to_string (notmuch_status_t status)
169 {
170     switch (status) {
171     case NOTMUCH_STATUS_SUCCESS:
172         return "No error occurred";
173     case NOTMUCH_STATUS_OUT_OF_MEMORY:
174         return "Out of memory";
175     case NOTMUCH_STATUS_READONLY_DATABASE:
176         return "The database is read-only";
177     case NOTMUCH_STATUS_XAPIAN_EXCEPTION:
178         return "A Xapian exception occurred";
179     case NOTMUCH_STATUS_FILE_ERROR:
180         return "Something went wrong trying to read or write a file";
181     case NOTMUCH_STATUS_FILE_NOT_EMAIL:
182         return "File is not an email";
183     case NOTMUCH_STATUS_DUPLICATE_MESSAGE_ID:
184         return "Message ID is identical to a message in database";
185     case NOTMUCH_STATUS_NULL_POINTER:
186         return "Erroneous NULL pointer";
187     case NOTMUCH_STATUS_TAG_TOO_LONG:
188         return "Tag value is too long (exceeds NOTMUCH_TAG_MAX)";
189     case NOTMUCH_STATUS_UNBALANCED_FREEZE_THAW:
190         return "Unbalanced number of calls to notmuch_message_freeze/thaw";
191     default:
192     case NOTMUCH_STATUS_LAST_STATUS:
193         return "Unknown error status value";
194     }
195 }
196
197 static void
198 find_doc_ids (notmuch_database_t *notmuch,
199               const char *prefix_name,
200               const char *value,
201               Xapian::PostingIterator *begin,
202               Xapian::PostingIterator *end)
203 {
204     Xapian::PostingIterator i;
205     char *term;
206
207     term = talloc_asprintf (notmuch, "%s%s",
208                             _find_prefix (prefix_name), value);
209
210     *begin = notmuch->xapian_db->postlist_begin (term);
211
212     *end = notmuch->xapian_db->postlist_end (term);
213
214     talloc_free (term);
215 }
216
217 static notmuch_private_status_t
218 find_unique_doc_id (notmuch_database_t *notmuch,
219                     const char *prefix_name,
220                     const char *value,
221                     unsigned int *doc_id)
222 {
223     Xapian::PostingIterator i, end;
224
225     find_doc_ids (notmuch, prefix_name, value, &i, &end);
226
227     if (i == end) {
228         *doc_id = 0;
229         return NOTMUCH_PRIVATE_STATUS_NO_DOCUMENT_FOUND;
230     } else {
231         *doc_id = *i;
232         return NOTMUCH_PRIVATE_STATUS_SUCCESS;
233     }
234 }
235
236 static Xapian::Document
237 find_document_for_doc_id (notmuch_database_t *notmuch, unsigned doc_id)
238 {
239     return notmuch->xapian_db->get_document (doc_id);
240 }
241
242 static notmuch_private_status_t
243 find_unique_document (notmuch_database_t *notmuch,
244                       const char *prefix_name,
245                       const char *value,
246                       Xapian::Document *document,
247                       unsigned int *doc_id)
248 {
249     notmuch_private_status_t status;
250
251     status = find_unique_doc_id (notmuch, prefix_name, value, doc_id);
252
253     if (status) {
254         *document = Xapian::Document ();
255         return status;
256     }
257
258     *document = find_document_for_doc_id (notmuch, *doc_id);
259     return NOTMUCH_PRIVATE_STATUS_SUCCESS;
260 }
261
262 notmuch_message_t *
263 notmuch_database_find_message (notmuch_database_t *notmuch,
264                                const char *message_id)
265 {
266     notmuch_private_status_t status;
267     unsigned int doc_id;
268
269     status = find_unique_doc_id (notmuch, "id", message_id, &doc_id);
270
271     if (status == NOTMUCH_PRIVATE_STATUS_NO_DOCUMENT_FOUND)
272         return NULL;
273
274     return _notmuch_message_create (notmuch, notmuch, doc_id, NULL);
275 }
276
277 /* Advance 'str' past any whitespace or RFC 822 comments. A comment is
278  * a (potentially nested) parenthesized sequence with '\' used to
279  * escape any character (including parentheses).
280  *
281  * If the sequence to be skipped continues to the end of the string,
282  * then 'str' will be left pointing at the final terminating '\0'
283  * character.
284  */
285 static void
286 skip_space_and_comments (const char **str)
287 {
288     const char *s;
289
290     s = *str;
291     while (*s && (isspace (*s) || *s == '(')) {
292         while (*s && isspace (*s))
293             s++;
294         if (*s == '(') {
295             int nesting = 1;
296             s++;
297             while (*s && nesting) {
298                 if (*s == '(')
299                     nesting++;
300                 else if (*s == ')')
301                     nesting--;
302                 else if (*s == '\\')
303                     if (*(s+1))
304                         s++;
305                 s++;
306             }
307         }
308     }
309
310     *str = s;
311 }
312
313 /* Parse an RFC 822 message-id, discarding whitespace, any RFC 822
314  * comments, and the '<' and '>' delimeters.
315  *
316  * If not NULL, then *next will be made to point to the first character
317  * not parsed, (possibly pointing to the final '\0' terminator.
318  *
319  * Returns a newly talloc'ed string belonging to 'ctx'.
320  *
321  * Returns NULL if there is any error parsing the message-id. */
322 static char *
323 _parse_message_id (void *ctx, const char *message_id, const char **next)
324 {
325     const char *s, *end;
326     char *result;
327
328     if (message_id == NULL || *message_id == '\0')
329         return NULL;
330
331     s = message_id;
332
333     skip_space_and_comments (&s);
334
335     /* Skip any unstructured text as well. */
336     while (*s && *s != '<')
337         s++;
338
339     if (*s == '<') {
340         s++;
341     } else {
342         if (next)
343             *next = s;
344         return NULL;
345     }
346
347     skip_space_and_comments (&s);
348
349     end = s;
350     while (*end && *end != '>')
351         end++;
352     if (next) {
353         if (*end)
354             *next = end + 1;
355         else
356             *next = end;
357     }
358
359     if (end > s && *end == '>')
360         end--;
361     if (end <= s)
362         return NULL;
363
364     result = talloc_strndup (ctx, s, end - s + 1);
365
366     /* Finally, collapse any whitespace that is within the message-id
367      * itself. */
368     {
369         char *r;
370         int len;
371
372         for (r = result, len = strlen (r); *r; r++, len--)
373             if (*r == ' ' || *r == '\t')
374                 memmove (r, r+1, len);
375     }
376
377     return result;
378 }
379
380 /* Parse a References header value, putting a (talloc'ed under 'ctx')
381  * copy of each referenced message-id into 'hash'.
382  *
383  * We explicitly avoid including any reference identical to
384  * 'message_id' in the result (to avoid mass confusion when a single
385  * message references itself cyclically---and yes, mail messages are
386  * not infrequent in the wild that do this---don't ask me why).
387 */
388 static void
389 parse_references (void *ctx,
390                   const char *message_id,
391                   GHashTable *hash,
392                   const char *refs)
393 {
394     char *ref;
395
396     if (refs == NULL || *refs == '\0')
397         return;
398
399     while (*refs) {
400         ref = _parse_message_id (ctx, refs, &refs);
401
402         if (ref && strcmp (ref, message_id))
403             g_hash_table_insert (hash, ref, NULL);
404     }
405 }
406
407 notmuch_database_t *
408 notmuch_database_create (const char *path)
409 {
410     notmuch_database_t *notmuch = NULL;
411     char *notmuch_path = NULL;
412     struct stat st;
413     int err;
414
415     if (path == NULL) {
416         fprintf (stderr, "Error: Cannot create a database for a NULL path.\n");
417         goto DONE;
418     }
419
420     err = stat (path, &st);
421     if (err) {
422         fprintf (stderr, "Error: Cannot create database at %s: %s.\n",
423                  path, strerror (errno));
424         goto DONE;
425     }
426
427     if (! S_ISDIR (st.st_mode)) {
428         fprintf (stderr, "Error: Cannot create database at %s: Not a directory.\n",
429                  path);
430         goto DONE;
431     }
432
433     notmuch_path = talloc_asprintf (NULL, "%s/%s", path, ".notmuch");
434
435     err = mkdir (notmuch_path, 0755);
436
437     if (err) {
438         fprintf (stderr, "Error: Cannot create directory %s: %s.\n",
439                  notmuch_path, strerror (errno));
440         goto DONE;
441     }
442
443     notmuch = notmuch_database_open (path,
444                                      NOTMUCH_DATABASE_MODE_READ_WRITE);
445
446   DONE:
447     if (notmuch_path)
448         talloc_free (notmuch_path);
449
450     return notmuch;
451 }
452
453 notmuch_database_t *
454 notmuch_database_open (const char *path,
455                        notmuch_database_mode_t mode)
456 {
457     notmuch_database_t *notmuch = NULL;
458     char *notmuch_path = NULL, *xapian_path = NULL;
459     struct stat st;
460     int err;
461     unsigned int i;
462
463     if (asprintf (&notmuch_path, "%s/%s", path, ".notmuch") == -1) {
464         notmuch_path = NULL;
465         fprintf (stderr, "Out of memory\n");
466         goto DONE;
467     }
468
469     err = stat (notmuch_path, &st);
470     if (err) {
471         fprintf (stderr, "Error opening database at %s: %s\n",
472                  notmuch_path, strerror (errno));
473         goto DONE;
474     }
475
476     if (asprintf (&xapian_path, "%s/%s", notmuch_path, "xapian") == -1) {
477         xapian_path = NULL;
478         fprintf (stderr, "Out of memory\n");
479         goto DONE;
480     }
481
482     notmuch = talloc (NULL, notmuch_database_t);
483     notmuch->path = talloc_strdup (notmuch, path);
484
485     if (notmuch->path[strlen (notmuch->path) - 1] == '/')
486         notmuch->path[strlen (notmuch->path) - 1] = '\0';
487
488     notmuch->mode = mode;
489     try {
490         if (mode == NOTMUCH_DATABASE_MODE_READ_WRITE) {
491             notmuch->xapian_db = new Xapian::WritableDatabase (xapian_path,
492                                                                Xapian::DB_CREATE_OR_OPEN);
493         } else {
494             notmuch->xapian_db = new Xapian::Database (xapian_path);
495         }
496         notmuch->query_parser = new Xapian::QueryParser;
497         notmuch->term_gen = new Xapian::TermGenerator;
498         notmuch->term_gen->set_stemmer (Xapian::Stem ("english"));
499
500         notmuch->query_parser->set_default_op (Xapian::Query::OP_AND);
501         notmuch->query_parser->set_database (*notmuch->xapian_db);
502         notmuch->query_parser->set_stemmer (Xapian::Stem ("english"));
503         notmuch->query_parser->set_stemming_strategy (Xapian::QueryParser::STEM_SOME);
504
505         for (i = 0; i < ARRAY_SIZE (BOOLEAN_PREFIX_EXTERNAL); i++) {
506             prefix_t *prefix = &BOOLEAN_PREFIX_EXTERNAL[i];
507             notmuch->query_parser->add_boolean_prefix (prefix->name,
508                                                        prefix->prefix);
509         }
510
511         for (i = 0; i < ARRAY_SIZE (PROBABILISTIC_PREFIX); i++) {
512             prefix_t *prefix = &PROBABILISTIC_PREFIX[i];
513             notmuch->query_parser->add_prefix (prefix->name, prefix->prefix);
514         }
515     } catch (const Xapian::Error &error) {
516         fprintf (stderr, "A Xapian exception occurred opening database: %s\n",
517                  error.get_msg().c_str());
518         notmuch = NULL;
519     }
520     
521   DONE:
522     if (notmuch_path)
523         free (notmuch_path);
524     if (xapian_path)
525         free (xapian_path);
526
527     return notmuch;
528 }
529
530 void
531 notmuch_database_close (notmuch_database_t *notmuch)
532 {
533     if (notmuch->mode == NOTMUCH_DATABASE_MODE_READ_WRITE)
534         (static_cast <Xapian::WritableDatabase *> (notmuch->xapian_db))->flush ();
535
536     delete notmuch->term_gen;
537     delete notmuch->query_parser;
538     delete notmuch->xapian_db;
539     talloc_free (notmuch);
540 }
541
542 const char *
543 notmuch_database_get_path (notmuch_database_t *notmuch)
544 {
545     return notmuch->path;
546 }
547
548 static notmuch_private_status_t
549 find_timestamp_document (notmuch_database_t *notmuch, const char *db_key,
550                          Xapian::Document *doc, unsigned int *doc_id)
551 {
552     return find_unique_document (notmuch, "timestamp", db_key, doc, doc_id);
553 }
554
555 /* We allow the user to use arbitrarily long keys for timestamps,
556  * (they're for filesystem paths after all, which have no limit we
557  * know about). But we have a term-length limit. So if we exceed that,
558  * we'll use the SHA-1 of the user's key as the actual key for
559  * constructing a database term.
560  *
561  * Caution: This function returns a newly allocated string which the
562  * caller should free() when finished.
563  */
564 static char *
565 timestamp_db_key (const char *key)
566 {
567     int term_len = strlen (_find_prefix ("timestamp")) + strlen (key);
568
569     if (term_len > NOTMUCH_TERM_MAX)
570         return notmuch_sha1_of_string (key);
571     else
572         return strdup (key);
573 }
574
575 notmuch_status_t
576 notmuch_database_set_timestamp (notmuch_database_t *notmuch,
577                                 const char *key, time_t timestamp)
578 {
579     Xapian::Document doc;
580     Xapian::WritableDatabase *db;
581     unsigned int doc_id;
582     notmuch_private_status_t status;
583     notmuch_status_t ret = NOTMUCH_STATUS_SUCCESS;
584     char *db_key = NULL;
585
586     if (notmuch->mode == NOTMUCH_DATABASE_MODE_READ_ONLY) {
587         fprintf (stderr, "Attempted to update a read-only database.\n");
588         return NOTMUCH_STATUS_READONLY_DATABASE;
589     }
590
591     db = static_cast <Xapian::WritableDatabase *> (notmuch->xapian_db);
592     db_key = timestamp_db_key (key);
593
594     try {
595         status = find_timestamp_document (notmuch, db_key, &doc, &doc_id);
596
597         doc.add_value (NOTMUCH_VALUE_TIMESTAMP,
598                        Xapian::sortable_serialise (timestamp));
599
600         if (status == NOTMUCH_PRIVATE_STATUS_NO_DOCUMENT_FOUND) {
601             char *term = talloc_asprintf (NULL, "%s%s",
602                                           _find_prefix ("timestamp"), db_key);
603             doc.add_term (term);
604             talloc_free (term);
605
606             db->add_document (doc);
607         } else {
608             db->replace_document (doc_id, doc);
609         }
610
611     } catch (const Xapian::Error &error) {
612         fprintf (stderr, "A Xapian exception occurred setting timestamp: %s.\n",
613                  error.get_msg().c_str());
614         ret = NOTMUCH_STATUS_XAPIAN_EXCEPTION;
615     }
616
617     if (db_key)
618         free (db_key);
619
620     return ret;
621 }
622
623 time_t
624 notmuch_database_get_timestamp (notmuch_database_t *notmuch, const char *key)
625 {
626     Xapian::Document doc;
627     unsigned int doc_id;
628     notmuch_private_status_t status;
629     char *db_key = NULL;
630     time_t ret = 0;
631
632     db_key = timestamp_db_key (key);
633
634     try {
635         status = find_timestamp_document (notmuch, db_key, &doc, &doc_id);
636
637         if (status == NOTMUCH_PRIVATE_STATUS_NO_DOCUMENT_FOUND)
638             goto DONE;
639
640         ret =  Xapian::sortable_unserialise (doc.get_value (NOTMUCH_VALUE_TIMESTAMP));
641     } catch (Xapian::Error &error) {
642         goto DONE;
643     }
644
645   DONE:
646     if (db_key)
647         free (db_key);
648
649     return ret;
650 }
651
652 /* Find the thread ID to which the message with 'message_id' belongs.
653  *
654  * Returns NULL if no message with message ID 'message_id' is in the
655  * database.
656  *
657  * Otherwise, returns a newly talloced string belonging to 'ctx'.
658  */
659 static const char *
660 _resolve_message_id_to_thread_id (notmuch_database_t *notmuch,
661                                   void *ctx,
662                                   const char *message_id)
663 {
664     notmuch_message_t *message;
665     const char *ret = NULL;
666
667     message = notmuch_database_find_message (notmuch, message_id);
668     if (message == NULL)
669         goto DONE;
670
671     ret = talloc_steal (ctx, notmuch_message_get_thread_id (message));
672
673   DONE:
674     if (message)
675         notmuch_message_destroy (message);
676
677     return ret;
678 }
679
680 static notmuch_status_t
681 _merge_threads (notmuch_database_t *notmuch,
682                 const char *winner_thread_id,
683                 const char *loser_thread_id)
684 {
685     Xapian::PostingIterator loser, loser_end;
686     notmuch_message_t *message = NULL;
687     notmuch_private_status_t private_status;
688     notmuch_status_t ret = NOTMUCH_STATUS_SUCCESS;
689
690     find_doc_ids (notmuch, "thread", loser_thread_id, &loser, &loser_end);
691
692     for ( ; loser != loser_end; loser++) {
693         message = _notmuch_message_create (notmuch, notmuch,
694                                            *loser, &private_status);
695         if (message == NULL) {
696             ret = COERCE_STATUS (private_status,
697                                  "Cannot find document for doc_id from query");
698             goto DONE;
699         }
700
701         _notmuch_message_remove_term (message, "thread", loser_thread_id);
702         _notmuch_message_add_term (message, "thread", winner_thread_id);
703         _notmuch_message_sync (message);
704
705         notmuch_message_destroy (message);
706         message = NULL;
707     }
708
709   DONE:
710     if (message)
711         notmuch_message_destroy (message);
712
713     return ret;
714 }
715
716 static void
717 _my_talloc_free_for_g_hash (void *ptr)
718 {
719     talloc_free (ptr);
720 }
721
722 static notmuch_status_t
723 _notmuch_database_link_message_to_parents (notmuch_database_t *notmuch,
724                                            notmuch_message_t *message,
725                                            notmuch_message_file_t *message_file,
726                                            const char **thread_id)
727 {
728     GHashTable *parents = NULL;
729     const char *refs, *in_reply_to, *in_reply_to_message_id;
730     GList *l, *keys = NULL;
731     notmuch_status_t ret = NOTMUCH_STATUS_SUCCESS;
732
733     parents = g_hash_table_new_full (g_str_hash, g_str_equal,
734                                      _my_talloc_free_for_g_hash, NULL);
735
736     refs = notmuch_message_file_get_header (message_file, "references");
737     parse_references (message, notmuch_message_get_message_id (message),
738                       parents, refs);
739
740     in_reply_to = notmuch_message_file_get_header (message_file, "in-reply-to");
741     parse_references (message, notmuch_message_get_message_id (message),
742                       parents, in_reply_to);
743
744     /* Carefully avoid adding any self-referential in-reply-to term. */
745     in_reply_to_message_id = _parse_message_id (message, in_reply_to, NULL);
746     if (in_reply_to_message_id &&
747         strcmp (in_reply_to_message_id,
748                 notmuch_message_get_message_id (message)))
749     {
750         _notmuch_message_add_term (message, "replyto",
751                              _parse_message_id (message, in_reply_to, NULL));
752     }
753
754     keys = g_hash_table_get_keys (parents);
755     for (l = keys; l; l = l->next) {
756         char *parent_message_id;
757         const char *parent_thread_id;
758
759         parent_message_id = (char *) l->data;
760         parent_thread_id = _resolve_message_id_to_thread_id (notmuch,
761                                                              message,
762                                                              parent_message_id);
763
764         if (parent_thread_id == NULL) {
765             _notmuch_message_add_term (message, "reference",
766                                        parent_message_id);
767         } else {
768             if (*thread_id == NULL) {
769                 *thread_id = talloc_strdup (message, parent_thread_id);
770                 _notmuch_message_add_term (message, "thread", *thread_id);
771             } else if (strcmp (*thread_id, parent_thread_id)) {
772                 ret = _merge_threads (notmuch, *thread_id, parent_thread_id);
773                 if (ret)
774                     goto DONE;
775             }
776         }
777     }
778
779   DONE:
780     if (keys)
781         g_list_free (keys);
782     if (parents)
783         g_hash_table_unref (parents);
784
785     return ret;
786 }
787
788 static notmuch_status_t
789 _notmuch_database_link_message_to_children (notmuch_database_t *notmuch,
790                                             notmuch_message_t *message,
791                                             const char **thread_id)
792 {
793     const char *message_id = notmuch_message_get_message_id (message);
794     Xapian::PostingIterator child, children_end;
795     notmuch_message_t *child_message = NULL;
796     const char *child_thread_id;
797     notmuch_status_t ret = NOTMUCH_STATUS_SUCCESS;
798     notmuch_private_status_t private_status;
799
800     find_doc_ids (notmuch, "reference", message_id, &child, &children_end);
801
802     for ( ; child != children_end; child++) {
803
804         child_message = _notmuch_message_create (message, notmuch,
805                                                  *child, &private_status);
806         if (child_message == NULL) {
807             ret = COERCE_STATUS (private_status,
808                                  "Cannot find document for doc_id from query");
809             goto DONE;
810         }
811
812         child_thread_id = notmuch_message_get_thread_id (child_message);
813         if (*thread_id == NULL) {
814             *thread_id = talloc_strdup (message, child_thread_id);
815             _notmuch_message_add_term (message, "thread", *thread_id);
816         } else if (strcmp (*thread_id, child_thread_id)) {
817             _notmuch_message_remove_term (child_message, "reference",
818                                           message_id);
819             _notmuch_message_sync (child_message);
820             ret = _merge_threads (notmuch, *thread_id, child_thread_id);
821             if (ret)
822                 goto DONE;
823         }
824
825         notmuch_message_destroy (child_message);
826         child_message = NULL;
827     }
828
829   DONE:
830     if (child_message)
831         notmuch_message_destroy (child_message);
832
833     return ret;
834 }
835
836 /* Given a (mostly empty) 'message' and its corresponding
837  * 'message_file' link it to existing threads in the database.
838  *
839  * We first look at 'message_file' and its link-relevant headers
840  * (References and In-Reply-To) for message IDs. We also look in the
841  * database for existing message that reference 'message'.p
842  *
843  * The end result is to call _notmuch_message_add_thread_id with one
844  * or more thread IDs to which this message belongs, (including
845  * generating a new thread ID if necessary if the message doesn't
846  * connect to any existing threads).
847  */
848 static notmuch_status_t
849 _notmuch_database_link_message (notmuch_database_t *notmuch,
850                                 notmuch_message_t *message,
851                                 notmuch_message_file_t *message_file)
852 {
853     notmuch_status_t status;
854     const char *thread_id = NULL;
855
856     status = _notmuch_database_link_message_to_parents (notmuch, message,
857                                                         message_file,
858                                                         &thread_id);
859     if (status)
860         return status;
861
862     status = _notmuch_database_link_message_to_children (notmuch, message,
863                                                          &thread_id);
864     if (status)
865         return status;
866
867     if (thread_id == NULL)
868         _notmuch_message_ensure_thread_id (message);
869
870     return NOTMUCH_STATUS_SUCCESS;
871 }
872
873 notmuch_status_t
874 notmuch_database_add_message (notmuch_database_t *notmuch,
875                               const char *filename,
876                               notmuch_message_t **message_ret)
877 {
878     notmuch_message_file_t *message_file;
879     notmuch_message_t *message = NULL;
880     notmuch_status_t ret = NOTMUCH_STATUS_SUCCESS;
881     notmuch_private_status_t private_status;
882
883     const char *date, *header;
884     const char *from, *to, *subject;
885     char *message_id;
886
887     if (message_ret)
888         *message_ret = NULL;
889
890     message_file = notmuch_message_file_open (filename);
891     if (message_file == NULL) {
892         ret = NOTMUCH_STATUS_FILE_ERROR;
893         goto DONE;
894     }
895
896     notmuch_message_file_restrict_headers (message_file,
897                                            "date",
898                                            "from",
899                                            "in-reply-to",
900                                            "message-id",
901                                            "references",
902                                            "subject",
903                                            "to",
904                                            (char *) NULL);
905
906     try {
907         /* Before we do any real work, (especially before doing a
908          * potential SHA-1 computation on the entire file's contents),
909          * let's make sure that what we're looking at looks like an
910          * actual email message.
911          */
912         from = notmuch_message_file_get_header (message_file, "from");
913         subject = notmuch_message_file_get_header (message_file, "subject");
914         to = notmuch_message_file_get_header (message_file, "to");
915
916         if ((from == NULL || *from == '\0') &&
917             (subject == NULL || *subject == '\0') &&
918             (to == NULL || *to == '\0'))
919         {
920             ret = NOTMUCH_STATUS_FILE_NOT_EMAIL;
921             goto DONE;
922         }
923
924         /* Now that we're sure it's mail, the first order of business
925          * is to find a message ID (or else create one ourselves). */
926
927         header = notmuch_message_file_get_header (message_file, "message-id");
928         if (header && *header != '\0') {
929             message_id = _parse_message_id (message_file, header, NULL);
930             /* So the header value isn't RFC-compliant, but it's
931              * better than no message-id at all. */
932             if (message_id == NULL)
933                 message_id = talloc_strdup (message_file, header);
934         } else {
935             /* No message-id at all, let's generate one by taking a
936              * hash over the file's contents. */
937             char *sha1 = notmuch_sha1_of_file (filename);
938
939             /* If that failed too, something is really wrong. Give up. */
940             if (sha1 == NULL) {
941                 ret = NOTMUCH_STATUS_FILE_ERROR;
942                 goto DONE;
943             }
944
945             message_id = talloc_asprintf (message_file,
946                                           "notmuch-sha1-%s", sha1);
947             free (sha1);
948         }
949
950         /* Now that we have a message ID, we get a message object,
951          * (which may or may not reference an existing document in the
952          * database). */
953
954         message = _notmuch_message_create_for_message_id (notmuch,
955                                                           message_id,
956                                                           &private_status);
957
958         talloc_free (message_id);
959
960         if (message == NULL) {
961             ret = COERCE_STATUS (private_status,
962                                  "Unexpected status value from _notmuch_message_create_for_message_id");
963             goto DONE;
964         }
965
966         /* Is this a newly created message object? */
967         if (private_status == NOTMUCH_PRIVATE_STATUS_NO_DOCUMENT_FOUND) {
968             _notmuch_message_set_filename (message, filename);
969             _notmuch_message_add_term (message, "type", "mail");
970         } else {
971             ret = NOTMUCH_STATUS_DUPLICATE_MESSAGE_ID;
972             goto DONE;
973         }
974
975         ret = _notmuch_database_link_message (notmuch, message, message_file);
976         if (ret)
977             goto DONE;
978
979         date = notmuch_message_file_get_header (message_file, "date");
980         _notmuch_message_set_date (message, date);
981
982         _notmuch_message_index_file (message, filename);
983
984         _notmuch_message_sync (message);
985     } catch (const Xapian::Error &error) {
986         fprintf (stderr, "A Xapian exception occurred adding message: %s.\n",
987                  error.get_description().c_str());
988         ret = NOTMUCH_STATUS_XAPIAN_EXCEPTION;
989         goto DONE;
990     }
991
992   DONE:
993     if (message) {
994         if (ret == NOTMUCH_STATUS_SUCCESS && message_ret)
995             *message_ret = message;
996         else
997             notmuch_message_destroy (message);
998     }
999
1000     if (message_file)
1001         notmuch_message_file_close (message_file);
1002
1003     return ret;
1004 }