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