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