]> git.notmuchmail.org Git - notmuch/blob - lib/database.cc
cce7847860e5a963532936eb0f9f4fb84af2a5c4
[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 <sys/time.h>
26 #include <signal.h>
27 #include <xapian.h>
28
29 #include <glib.h> /* g_free, GPtrArray, GHashTable */
30
31 using namespace std;
32
33 #define ARRAY_SIZE(arr) (sizeof (arr) / sizeof (arr[0]))
34
35 typedef struct {
36     const char *name;
37     const char *prefix;
38 } prefix_t;
39
40 #define NOTMUCH_DATABASE_VERSION 1
41
42 #define STRINGIFY(s) _SUB_STRINGIFY(s)
43 #define _SUB_STRINGIFY(s) #s
44
45 /* Here's the current schema for our database (for NOTMUCH_DATABASE_VERSION):
46  *
47  * We currently have two different types of documents: mail and directory.
48  *
49  * Mail document
50  * -------------
51  * A mail document is associated with a particular email message file
52  * on disk. It is indexed with the following prefixed terms which the
53  * database uses to construct threads, etc.:
54  *
55  *    Single terms of given prefix:
56  *
57  *      type:   mail
58  *
59  *      id:     Unique ID of mail, (from Message-ID header or generated
60  *              as "notmuch-sha1-<sha1_sum_of_entire_file>.
61  *
62  *      thread: The ID of the thread to which the mail belongs
63  *
64  *      replyto: The ID from the In-Reply-To header of the mail (if any).
65  *
66  *    Multiple terms of given prefix:
67  *
68  *      reference: All message IDs from In-Reply-To and Re ferences
69  *                 headers in the message.
70  *
71  *      tag:       Any tags associated with this message by the user.
72  *
73  *      file-direntry:  A colon-separated pair of values
74  *                      (INTEGER:STRING), where INTEGER is the
75  *                      document ID of a directory document, and
76  *                      STRING is the name of a file within that
77  *                      directory for this mail message.
78  *
79  *    A mail document also has two values:
80  *
81  *      TIMESTAMP:      The time_t value corresponding to the message's
82  *                      Date header.
83  *
84  *      MESSAGE_ID:     The unique ID of the mail mess (see "id" above)
85  *
86  * In addition, terms from the content of the message are added with
87  * "from", "to", "attachment", and "subject" prefixes for use by the
88  * user in searching. But the database doesn't really care itself
89  * about any of these.
90  *
91  * The data portion of a mail document is empty.
92  *
93  * Directory document
94  * ------------------
95  * A directory document is used by a client of the notmuch library to
96  * maintain data necessary to allow for efficient polling of mail
97  * directories.
98  *
99  * All directory documents contain one term:
100  *
101  *      directory:      The directory path (relative to the database path)
102  *                      Or the SHA1 sum of the directory path (if the
103  *                      path itself is too long to fit in a Xapian
104  *                      term).
105  *
106  * And all directory documents for directories other than top-level
107  * directories also contain the following term:
108  *
109  *      directory-direntry: A colon-separated pair of values
110  *                          (INTEGER:STRING), where INTEGER is the
111  *                          document ID of the parent directory
112  *                          document, and STRING is the name of this
113  *                          directory within that parent.
114  *
115  * All directory documents have a single value:
116  *
117  *      TIMESTAMP:      The mtime of the directory (at last scan)
118  *
119  * The data portion of a directory document contains the path of the
120  * directory (relative to the database path).
121  */
122
123 /* With these prefix values we follow the conventions published here:
124  *
125  * http://xapian.org/docs/omega/termprefixes.html
126  *
127  * as much as makes sense. Note that I took some liberty in matching
128  * the reserved prefix values to notmuch concepts, (for example, 'G'
129  * is documented as "newsGroup (or similar entity - e.g. a web forum
130  * name)", for which I think the thread is the closest analogue in
131  * notmuch. This in spite of the fact that we will eventually be
132  * storing mailing-list messages where 'G' for "mailing list name"
133  * might be even a closer analogue. I'm treating the single-character
134  * prefixes preferentially for core notmuch concepts (which will be
135  * nearly universal to all mail messages).
136  */
137
138 prefix_t BOOLEAN_PREFIX_INTERNAL[] = {
139     { "type",                   "T" },
140     { "reference",              "XREFERENCE" },
141     { "replyto",                "XREPLYTO" },
142     { "directory",              "XDIRECTORY" },
143     { "file-direntry",          "XFDIRENTRY" },
144     { "directory-direntry",     "XDDIRENTRY" },
145 };
146
147 prefix_t BOOLEAN_PREFIX_EXTERNAL[] = {
148     { "thread",                 "G" },
149     { "tag",                    "K" },
150     { "id",                     "Q" }
151 };
152
153 prefix_t PROBABILISTIC_PREFIX[]= {
154     { "from",                   "XFROM" },
155     { "to",                     "XTO" },
156     { "attachment",             "XATTACHMENT" },
157     { "subject",                "XSUBJECT"}
158 };
159
160 int
161 _internal_error (const char *format, ...)
162 {
163     va_list va_args;
164
165     va_start (va_args, format);
166
167     fprintf (stderr, "Internal error: ");
168     vfprintf (stderr, format, va_args);
169
170     exit (1);
171
172     return 1;
173 }
174
175 const char *
176 _find_prefix (const char *name)
177 {
178     unsigned int i;
179
180     for (i = 0; i < ARRAY_SIZE (BOOLEAN_PREFIX_INTERNAL); i++) {
181         if (strcmp (name, BOOLEAN_PREFIX_INTERNAL[i].name) == 0)
182             return BOOLEAN_PREFIX_INTERNAL[i].prefix;
183     }
184
185     for (i = 0; i < ARRAY_SIZE (BOOLEAN_PREFIX_EXTERNAL); i++) {
186         if (strcmp (name, BOOLEAN_PREFIX_EXTERNAL[i].name) == 0)
187             return BOOLEAN_PREFIX_EXTERNAL[i].prefix;
188     }
189
190     for (i = 0; i < ARRAY_SIZE (PROBABILISTIC_PREFIX); i++) {
191         if (strcmp (name, PROBABILISTIC_PREFIX[i].name) == 0)
192             return PROBABILISTIC_PREFIX[i].prefix;
193     }
194
195     INTERNAL_ERROR ("No prefix exists for '%s'\n", name);
196
197     return "";
198 }
199
200 const char *
201 notmuch_status_to_string (notmuch_status_t status)
202 {
203     switch (status) {
204     case NOTMUCH_STATUS_SUCCESS:
205         return "No error occurred";
206     case NOTMUCH_STATUS_OUT_OF_MEMORY:
207         return "Out of memory";
208     case NOTMUCH_STATUS_READ_ONLY_DATABASE:
209         return "Attempt to write to a read-only database";
210     case NOTMUCH_STATUS_XAPIAN_EXCEPTION:
211         return "A Xapian exception occurred";
212     case NOTMUCH_STATUS_FILE_ERROR:
213         return "Something went wrong trying to read or write a file";
214     case NOTMUCH_STATUS_FILE_NOT_EMAIL:
215         return "File is not an email";
216     case NOTMUCH_STATUS_DUPLICATE_MESSAGE_ID:
217         return "Message ID is identical to a message in database";
218     case NOTMUCH_STATUS_NULL_POINTER:
219         return "Erroneous NULL pointer";
220     case NOTMUCH_STATUS_TAG_TOO_LONG:
221         return "Tag value is too long (exceeds NOTMUCH_TAG_MAX)";
222     case NOTMUCH_STATUS_UNBALANCED_FREEZE_THAW:
223         return "Unbalanced number of calls to notmuch_message_freeze/thaw";
224     default:
225     case NOTMUCH_STATUS_LAST_STATUS:
226         return "Unknown error status value";
227     }
228 }
229
230 static void
231 find_doc_ids_for_term (notmuch_database_t *notmuch,
232                        const char *term,
233                        Xapian::PostingIterator *begin,
234                        Xapian::PostingIterator *end)
235 {
236     *begin = notmuch->xapian_db->postlist_begin (term);
237
238     *end = notmuch->xapian_db->postlist_end (term);
239 }
240
241 static void
242 find_doc_ids (notmuch_database_t *notmuch,
243               const char *prefix_name,
244               const char *value,
245               Xapian::PostingIterator *begin,
246               Xapian::PostingIterator *end)
247 {
248     char *term;
249
250     term = talloc_asprintf (notmuch, "%s%s",
251                             _find_prefix (prefix_name), value);
252
253     find_doc_ids_for_term (notmuch, term, begin, end);
254
255     talloc_free (term);
256 }
257
258 notmuch_private_status_t
259 _notmuch_database_find_unique_doc_id (notmuch_database_t *notmuch,
260                                       const char *prefix_name,
261                                       const char *value,
262                                       unsigned int *doc_id)
263 {
264     Xapian::PostingIterator i, end;
265
266     find_doc_ids (notmuch, prefix_name, value, &i, &end);
267
268     if (i == end) {
269         *doc_id = 0;
270         return NOTMUCH_PRIVATE_STATUS_NO_DOCUMENT_FOUND;
271     }
272
273     *doc_id = *i;
274
275 #if DEBUG_DATABASE_SANITY
276     i++;
277
278     if (i != end)
279         INTERNAL_ERROR ("Term %s:%s is not unique as expected.\n",
280                         prefix_name, value);
281 #endif
282
283     return NOTMUCH_PRIVATE_STATUS_SUCCESS;
284 }
285
286 static Xapian::Document
287 find_document_for_doc_id (notmuch_database_t *notmuch, unsigned doc_id)
288 {
289     return notmuch->xapian_db->get_document (doc_id);
290 }
291
292 notmuch_message_t *
293 notmuch_database_find_message (notmuch_database_t *notmuch,
294                                const char *message_id)
295 {
296     notmuch_private_status_t status;
297     unsigned int doc_id;
298
299     status = _notmuch_database_find_unique_doc_id (notmuch, "id",
300                                                    message_id, &doc_id);
301
302     if (status == NOTMUCH_PRIVATE_STATUS_NO_DOCUMENT_FOUND)
303         return NULL;
304
305     return _notmuch_message_create (notmuch, notmuch, doc_id, NULL);
306 }
307
308 /* Advance 'str' past any whitespace or RFC 822 comments. A comment is
309  * a (potentially nested) parenthesized sequence with '\' used to
310  * escape any character (including parentheses).
311  *
312  * If the sequence to be skipped continues to the end of the string,
313  * then 'str' will be left pointing at the final terminating '\0'
314  * character.
315  */
316 static void
317 skip_space_and_comments (const char **str)
318 {
319     const char *s;
320
321     s = *str;
322     while (*s && (isspace (*s) || *s == '(')) {
323         while (*s && isspace (*s))
324             s++;
325         if (*s == '(') {
326             int nesting = 1;
327             s++;
328             while (*s && nesting) {
329                 if (*s == '(') {
330                     nesting++;
331                 } else if (*s == ')') {
332                     nesting--;
333                 } else if (*s == '\\') {
334                     if (*(s+1))
335                         s++;
336                 }
337                 s++;
338             }
339         }
340     }
341
342     *str = s;
343 }
344
345 /* Parse an RFC 822 message-id, discarding whitespace, any RFC 822
346  * comments, and the '<' and '>' delimeters.
347  *
348  * If not NULL, then *next will be made to point to the first character
349  * not parsed, (possibly pointing to the final '\0' terminator.
350  *
351  * Returns a newly talloc'ed string belonging to 'ctx'.
352  *
353  * Returns NULL if there is any error parsing the message-id. */
354 static char *
355 _parse_message_id (void *ctx, const char *message_id, const char **next)
356 {
357     const char *s, *end;
358     char *result;
359
360     if (message_id == NULL || *message_id == '\0')
361         return NULL;
362
363     s = message_id;
364
365     skip_space_and_comments (&s);
366
367     /* Skip any unstructured text as well. */
368     while (*s && *s != '<')
369         s++;
370
371     if (*s == '<') {
372         s++;
373     } else {
374         if (next)
375             *next = s;
376         return NULL;
377     }
378
379     skip_space_and_comments (&s);
380
381     end = s;
382     while (*end && *end != '>')
383         end++;
384     if (next) {
385         if (*end)
386             *next = end + 1;
387         else
388             *next = end;
389     }
390
391     if (end > s && *end == '>')
392         end--;
393     if (end <= s)
394         return NULL;
395
396     result = talloc_strndup (ctx, s, end - s + 1);
397
398     /* Finally, collapse any whitespace that is within the message-id
399      * itself. */
400     {
401         char *r;
402         int len;
403
404         for (r = result, len = strlen (r); *r; r++, len--)
405             if (*r == ' ' || *r == '\t')
406                 memmove (r, r+1, len);
407     }
408
409     return result;
410 }
411
412 /* Parse a References header value, putting a (talloc'ed under 'ctx')
413  * copy of each referenced message-id into 'hash'.
414  *
415  * We explicitly avoid including any reference identical to
416  * 'message_id' in the result (to avoid mass confusion when a single
417  * message references itself cyclically---and yes, mail messages are
418  * not infrequent in the wild that do this---don't ask me why).
419 */
420 static void
421 parse_references (void *ctx,
422                   const char *message_id,
423                   GHashTable *hash,
424                   const char *refs)
425 {
426     char *ref;
427
428     if (refs == NULL || *refs == '\0')
429         return;
430
431     while (*refs) {
432         ref = _parse_message_id (ctx, refs, &refs);
433
434         if (ref && strcmp (ref, message_id))
435             g_hash_table_insert (hash, ref, NULL);
436     }
437 }
438
439 notmuch_database_t *
440 notmuch_database_create (const char *path)
441 {
442     notmuch_database_t *notmuch = NULL;
443     char *notmuch_path = NULL;
444     struct stat st;
445     int err;
446
447     if (path == NULL) {
448         fprintf (stderr, "Error: Cannot create a database for a NULL path.\n");
449         goto DONE;
450     }
451
452     err = stat (path, &st);
453     if (err) {
454         fprintf (stderr, "Error: Cannot create database at %s: %s.\n",
455                  path, strerror (errno));
456         goto DONE;
457     }
458
459     if (! S_ISDIR (st.st_mode)) {
460         fprintf (stderr, "Error: Cannot create database at %s: Not a directory.\n",
461                  path);
462         goto DONE;
463     }
464
465     notmuch_path = talloc_asprintf (NULL, "%s/%s", path, ".notmuch");
466
467     err = mkdir (notmuch_path, 0755);
468
469     if (err) {
470         fprintf (stderr, "Error: Cannot create directory %s: %s.\n",
471                  notmuch_path, strerror (errno));
472         goto DONE;
473     }
474
475     notmuch = notmuch_database_open (path,
476                                      NOTMUCH_DATABASE_MODE_READ_WRITE);
477     notmuch_database_upgrade (notmuch, NULL, NULL);
478
479   DONE:
480     if (notmuch_path)
481         talloc_free (notmuch_path);
482
483     return notmuch;
484 }
485
486 notmuch_status_t
487 _notmuch_database_ensure_writable (notmuch_database_t *notmuch)
488 {
489     if (notmuch->mode == NOTMUCH_DATABASE_MODE_READ_ONLY) {
490         fprintf (stderr, "Cannot write to a read-only database.\n");
491         return NOTMUCH_STATUS_READ_ONLY_DATABASE;
492     }
493
494     return NOTMUCH_STATUS_SUCCESS;
495 }
496
497 notmuch_database_t *
498 notmuch_database_open (const char *path,
499                        notmuch_database_mode_t mode)
500 {
501     notmuch_database_t *notmuch = NULL;
502     char *notmuch_path = NULL, *xapian_path = NULL;
503     struct stat st;
504     int err;
505     unsigned int i, version;
506
507     if (asprintf (&notmuch_path, "%s/%s", path, ".notmuch") == -1) {
508         notmuch_path = NULL;
509         fprintf (stderr, "Out of memory\n");
510         goto DONE;
511     }
512
513     err = stat (notmuch_path, &st);
514     if (err) {
515         fprintf (stderr, "Error opening database at %s: %s\n",
516                  notmuch_path, strerror (errno));
517         goto DONE;
518     }
519
520     if (asprintf (&xapian_path, "%s/%s", notmuch_path, "xapian") == -1) {
521         xapian_path = NULL;
522         fprintf (stderr, "Out of memory\n");
523         goto DONE;
524     }
525
526     notmuch = talloc (NULL, notmuch_database_t);
527     notmuch->exception_reported = FALSE;
528     notmuch->path = talloc_strdup (notmuch, path);
529
530     if (notmuch->path[strlen (notmuch->path) - 1] == '/')
531         notmuch->path[strlen (notmuch->path) - 1] = '\0';
532
533     notmuch->needs_upgrade = FALSE;
534     notmuch->mode = mode;
535     try {
536         if (mode == NOTMUCH_DATABASE_MODE_READ_WRITE) {
537             notmuch->xapian_db = new Xapian::WritableDatabase (xapian_path,
538                                                                Xapian::DB_CREATE_OR_OPEN);
539             version = notmuch_database_get_version (notmuch);
540
541             if (version > NOTMUCH_DATABASE_VERSION) {
542                 fprintf (stderr,
543                          "Error: Notmuch database at %s\n"
544                          "       has a newer database format version (%u) than supported by this\n"
545                          "       version of notmuch (%u). Refusing to open this database in\n"
546                          "       read-write mode.\n",
547                          notmuch_path, version, NOTMUCH_DATABASE_VERSION);
548                 notmuch->mode = NOTMUCH_DATABASE_MODE_READ_ONLY;
549                 notmuch_database_close (notmuch);
550                 notmuch = NULL;
551                 goto DONE;
552             }
553
554             if (version < NOTMUCH_DATABASE_VERSION)
555                 notmuch->needs_upgrade = TRUE;
556         } else {
557             notmuch->xapian_db = new Xapian::Database (xapian_path);
558             version = notmuch_database_get_version (notmuch);
559             if (version > NOTMUCH_DATABASE_VERSION)
560             {
561                 fprintf (stderr,
562                          "Warning: Notmuch database at %s\n"
563                          "         has a newer database format version (%u) than supported by this\n"
564                          "         version of notmuch (%u). Some operations may behave incorrectly,\n"
565                          "         (but the database will not be harmed since it is being opened\n"
566                          "         in read-only mode).\n",
567                          notmuch_path, version, NOTMUCH_DATABASE_VERSION);
568             }
569         }
570         notmuch->query_parser = new Xapian::QueryParser;
571         notmuch->term_gen = new Xapian::TermGenerator;
572         notmuch->term_gen->set_stemmer (Xapian::Stem ("english"));
573         notmuch->value_range_processor = new Xapian::NumberValueRangeProcessor (NOTMUCH_VALUE_TIMESTAMP);
574
575         notmuch->query_parser->set_default_op (Xapian::Query::OP_AND);
576         notmuch->query_parser->set_database (*notmuch->xapian_db);
577         notmuch->query_parser->set_stemmer (Xapian::Stem ("english"));
578         notmuch->query_parser->set_stemming_strategy (Xapian::QueryParser::STEM_SOME);
579         notmuch->query_parser->add_valuerangeprocessor (notmuch->value_range_processor);
580
581         for (i = 0; i < ARRAY_SIZE (BOOLEAN_PREFIX_EXTERNAL); i++) {
582             prefix_t *prefix = &BOOLEAN_PREFIX_EXTERNAL[i];
583             notmuch->query_parser->add_boolean_prefix (prefix->name,
584                                                        prefix->prefix);
585         }
586
587         for (i = 0; i < ARRAY_SIZE (PROBABILISTIC_PREFIX); i++) {
588             prefix_t *prefix = &PROBABILISTIC_PREFIX[i];
589             notmuch->query_parser->add_prefix (prefix->name, prefix->prefix);
590         }
591     } catch (const Xapian::Error &error) {
592         fprintf (stderr, "A Xapian exception occurred opening database: %s\n",
593                  error.get_msg().c_str());
594         notmuch = NULL;
595     }
596
597   DONE:
598     if (notmuch_path)
599         free (notmuch_path);
600     if (xapian_path)
601         free (xapian_path);
602
603     return notmuch;
604 }
605
606 void
607 notmuch_database_close (notmuch_database_t *notmuch)
608 {
609     try {
610         if (notmuch->mode == NOTMUCH_DATABASE_MODE_READ_WRITE)
611             (static_cast <Xapian::WritableDatabase *> (notmuch->xapian_db))->flush ();
612     } catch (const Xapian::Error &error) {
613         if (! notmuch->exception_reported) {
614             fprintf (stderr, "Error: A Xapian exception occurred flushing database: %s\n",
615                      error.get_msg().c_str());
616         }
617     }
618
619     delete notmuch->term_gen;
620     delete notmuch->query_parser;
621     delete notmuch->xapian_db;
622     delete notmuch->value_range_processor;
623     talloc_free (notmuch);
624 }
625
626 const char *
627 notmuch_database_get_path (notmuch_database_t *notmuch)
628 {
629     return notmuch->path;
630 }
631
632 unsigned int
633 notmuch_database_get_version (notmuch_database_t *notmuch)
634 {
635     unsigned int version;
636     string version_string;
637     const char *str;
638     char *end;
639
640     version_string = notmuch->xapian_db->get_metadata ("version");
641     if (version_string.empty ())
642         return 0;
643
644     str = version_string.c_str ();
645     if (str == NULL || *str == '\0')
646         return 0;
647
648     version = strtoul (str, &end, 10);
649     if (*end != '\0')
650         INTERNAL_ERROR ("Malformed database version: %s", str);
651
652     return version;
653 }
654
655 notmuch_bool_t
656 notmuch_database_needs_upgrade (notmuch_database_t *notmuch)
657 {
658     return notmuch->needs_upgrade;
659 }
660
661 static volatile sig_atomic_t do_progress_notify = 0;
662
663 static void
664 handle_sigalrm (unused (int signal))
665 {
666     do_progress_notify = 1;
667 }
668
669 /* Upgrade the current database.
670  *
671  * After opening a database in read-write mode, the client should
672  * check if an upgrade is needed (notmuch_database_needs_upgrade) and
673  * if so, upgrade with this function before making any modifications.
674  *
675  * The optional progress_notify callback can be used by the caller to
676  * provide progress indication to the user. If non-NULL it will be
677  * called periodically with 'count' as the number of messages upgraded
678  * so far and 'total' the overall number of messages that will be
679  * converted.
680  */
681 notmuch_status_t
682 notmuch_database_upgrade (notmuch_database_t *notmuch,
683                           void (*progress_notify) (void *closure,
684                                                    double progress),
685                           void *closure)
686 {
687     Xapian::WritableDatabase *db;
688     struct sigaction action;
689     struct itimerval timerval;
690     notmuch_bool_t timer_is_active = FALSE;
691     unsigned int version;
692     notmuch_status_t status;
693     unsigned int count = 0, total = 0;
694
695     status = _notmuch_database_ensure_writable (notmuch);
696     if (status)
697         return status;
698
699     db = static_cast <Xapian::WritableDatabase *> (notmuch->xapian_db);
700
701     version = notmuch_database_get_version (notmuch);
702
703     if (version >= NOTMUCH_DATABASE_VERSION)
704         return NOTMUCH_STATUS_SUCCESS;
705
706     if (progress_notify) {
707         /* Setup our handler for SIGALRM */
708         memset (&action, 0, sizeof (struct sigaction));
709         action.sa_handler = handle_sigalrm;
710         sigemptyset (&action.sa_mask);
711         action.sa_flags = SA_RESTART;
712         sigaction (SIGALRM, &action, NULL);
713
714         /* Then start a timer to send SIGALRM once per second. */
715         timerval.it_interval.tv_sec = 1;
716         timerval.it_interval.tv_usec = 0;
717         timerval.it_value.tv_sec = 1;
718         timerval.it_value.tv_usec = 0;
719         setitimer (ITIMER_REAL, &timerval, NULL);
720
721         timer_is_active = TRUE;
722     }
723
724     /* Before version 1, each message document had its filename in the
725      * data field. Copy that into the new format by calling
726      * notmuch_message_add_filename.
727      */
728     if (version < 1) {
729         notmuch_query_t *query = notmuch_query_create (notmuch, "");
730         notmuch_messages_t *messages;
731         notmuch_message_t *message;
732         char *filename;
733         Xapian::TermIterator t, t_end;
734
735         total = notmuch_query_count_messages (query);
736
737         for (messages = notmuch_query_search_messages (query);
738              notmuch_messages_has_more (messages);
739              notmuch_messages_advance (messages))
740         {
741             if (do_progress_notify) {
742                 progress_notify (closure, (double) count / total);
743                 do_progress_notify = 0;
744             }
745
746             message = notmuch_messages_get (messages);
747
748             filename = _notmuch_message_talloc_copy_data (message);
749             if (filename && *filename != '\0') {
750                 _notmuch_message_add_filename (message, filename);
751                 _notmuch_message_sync (message);
752             }
753             talloc_free (filename);
754
755             notmuch_message_destroy (message);
756
757             count++;
758         }
759
760         notmuch_query_destroy (query);
761
762         /* Also, before version 1 we stored directory timestamps in
763          * XTIMESTAMP documents instead of the current XDIRECTORY
764          * documents. So copy those as well. */
765
766         t_end = notmuch->xapian_db->allterms_end ("XTIMESTAMP");
767
768         for (t = notmuch->xapian_db->allterms_begin ("XTIMESTAMP");
769              t != t_end;
770              t++)
771         {
772             Xapian::PostingIterator p, p_end;
773             std::string term = *t;
774
775             p_end = notmuch->xapian_db->postlist_end (term);
776
777             for (p = notmuch->xapian_db->postlist_begin (term);
778                  p != p_end;
779                  p++)
780             {
781                 Xapian::Document document;
782                 time_t mtime;
783                 notmuch_directory_t *directory;
784
785                 if (do_progress_notify) {
786                     progress_notify (closure, (double) count / total);
787                     do_progress_notify = 0;
788                 }
789
790                 document = find_document_for_doc_id (notmuch, *p);
791                 mtime = Xapian::sortable_unserialise (
792                     document.get_value (NOTMUCH_VALUE_TIMESTAMP));
793
794                 directory = notmuch_database_get_directory (notmuch,
795                                                             term.c_str() + 10);
796                 notmuch_directory_set_mtime (directory, mtime);
797                 notmuch_directory_destroy (directory);
798             }
799         }
800     }
801
802     db->set_metadata ("version", STRINGIFY (NOTMUCH_DATABASE_VERSION));
803     db->flush ();
804
805     /* Now that the upgrade is complete we can remove the old data
806      * and documents that are no longer needed. */
807     if (version < 1) {
808         notmuch_query_t *query = notmuch_query_create (notmuch, "");
809         notmuch_messages_t *messages;
810         notmuch_message_t *message;
811         char *filename;
812
813         for (messages = notmuch_query_search_messages (query);
814              notmuch_messages_has_more (messages);
815              notmuch_messages_advance (messages))
816         {
817             if (do_progress_notify) {
818                 progress_notify (closure, (double) count / total);
819                 do_progress_notify = 0;
820             }
821
822             message = notmuch_messages_get (messages);
823
824             filename = _notmuch_message_talloc_copy_data (message);
825             if (filename && *filename != '\0') {
826                 _notmuch_message_clear_data (message);
827                 _notmuch_message_sync (message);
828             }
829             talloc_free (filename);
830
831             notmuch_message_destroy (message);
832         }
833
834         notmuch_query_destroy (query);
835     }
836
837     if (version < 1) {
838         Xapian::TermIterator t, t_end;
839
840         t_end = notmuch->xapian_db->allterms_end ("XTIMESTAMP");
841
842         for (t = notmuch->xapian_db->allterms_begin ("XTIMESTAMP");
843              t != t_end;
844              t++)
845         {
846             Xapian::PostingIterator p, p_end;
847             std::string term = *t;
848
849             p_end = notmuch->xapian_db->postlist_end (term);
850
851             for (p = notmuch->xapian_db->postlist_begin (term);
852                  p != p_end;
853                  p++)
854             {
855                 if (do_progress_notify) {
856                     progress_notify (closure, (double) count / total);
857                     do_progress_notify = 0;
858                 }
859
860                 db->delete_document (*p);
861             }
862         }
863     }
864
865     if (timer_is_active) {
866         /* Now stop the timer. */
867         timerval.it_interval.tv_sec = 0;
868         timerval.it_interval.tv_usec = 0;
869         timerval.it_value.tv_sec = 0;
870         timerval.it_value.tv_usec = 0;
871         setitimer (ITIMER_REAL, &timerval, NULL);
872
873         /* And disable the signal handler. */
874         action.sa_handler = SIG_IGN;
875         sigaction (SIGALRM, &action, NULL);
876     }
877
878     return NOTMUCH_STATUS_SUCCESS;
879 }
880
881 /* We allow the user to use arbitrarily long paths for directories. But
882  * we have a term-length limit. So if we exceed that, we'll use the
883  * SHA-1 of the path for the database term.
884  *
885  * Note: This function may return the original value of 'path'. If it
886  * does not, then the caller is responsible to free() the returned
887  * value.
888  */
889 const char *
890 _notmuch_database_get_directory_db_path (const char *path)
891 {
892     int term_len = strlen (_find_prefix ("directory")) + strlen (path);
893
894     if (term_len > NOTMUCH_TERM_MAX)
895         return notmuch_sha1_of_string (path);
896     else
897         return path;
898 }
899
900 /* Given a path, split it into two parts: the directory part is all
901  * components except for the last, and the basename is that last
902  * component. Getting the return-value for either part is optional
903  * (the caller can pass NULL).
904  *
905  * The original 'path' can represent either a regular file or a
906  * directory---the splitting will be carried out in the same way in
907  * either case. Trailing slashes on 'path' will be ignored, and any
908  * cases of multiple '/' characters appearing in series will be
909  * treated as a single '/'.
910  *
911  * Allocation (if any) will have 'ctx' as the talloc owner. But
912  * pointers will be returned within the original path string whenever
913  * possible.
914  *
915  * Note: If 'path' is non-empty and contains no non-trailing slash,
916  * (that is, consists of a filename with no parent directory), then
917  * the directory returned will be an empty string. However, if 'path'
918  * is an empty string, then both directory and basename will be
919  * returned as NULL.
920  */
921 notmuch_status_t
922 _notmuch_database_split_path (void *ctx,
923                               const char *path,
924                               const char **directory,
925                               const char **basename)
926 {
927     const char *slash;
928
929     if (path == NULL || *path == '\0') {
930         if (directory)
931             *directory = NULL;
932         if (basename)
933             *basename = NULL;
934         return NOTMUCH_STATUS_SUCCESS;
935     }
936
937     /* Find the last slash (not counting a trailing slash), if any. */
938
939     slash = path + strlen (path) - 1;
940
941     /* First, skip trailing slashes. */
942     while (slash != path) {
943         if (*slash != '/')
944             break;
945
946         --slash;
947     }
948
949     /* Then, find a slash. */
950     while (slash != path) {
951         if (*slash == '/')
952             break;
953
954         if (basename)
955             *basename = slash;
956
957         --slash;
958     }
959
960     /* Finally, skip multiple slashes. */
961     while (slash != path) {
962         if (*slash != '/')
963             break;
964
965         --slash;
966     }
967
968     if (slash == path) {
969         if (directory)
970             *directory = talloc_strdup (ctx, "");
971         if (basename)
972             *basename = path;
973     } else {
974         if (directory)
975             *directory = talloc_strndup (ctx, path, slash - path + 1);
976     }
977
978     return NOTMUCH_STATUS_SUCCESS;
979 }
980
981 notmuch_status_t
982 _notmuch_database_find_directory_id (notmuch_database_t *notmuch,
983                                      const char *path,
984                                      unsigned int *directory_id)
985 {
986     notmuch_directory_t *directory;
987     notmuch_status_t status;
988
989     if (path == NULL) {
990         *directory_id = 0;
991         return NOTMUCH_STATUS_SUCCESS;
992     }
993
994     directory = _notmuch_directory_create (notmuch, path, &status);
995     if (status) {
996         *directory_id = -1;
997         return status;
998     }
999
1000     *directory_id = _notmuch_directory_get_document_id (directory);
1001
1002     notmuch_directory_destroy (directory);
1003
1004     return NOTMUCH_STATUS_SUCCESS;
1005 }
1006
1007 const char *
1008 _notmuch_database_get_directory_path (void *ctx,
1009                                       notmuch_database_t *notmuch,
1010                                       unsigned int doc_id)
1011 {
1012     Xapian::Document document;
1013
1014     document = find_document_for_doc_id (notmuch, doc_id);
1015
1016     return talloc_strdup (ctx, document.get_data ().c_str ());
1017 }
1018
1019 /* Given a legal 'filename' for the database, (either relative to
1020  * database path or absolute with initial components identical to
1021  * database path), return a new string (with 'ctx' as the talloc
1022  * owner) suitable for use as a direntry term value.
1023  *
1024  * The necessary directory documents will be created in the database
1025  * as needed.
1026  */
1027 notmuch_status_t
1028 _notmuch_database_filename_to_direntry (void *ctx,
1029                                         notmuch_database_t *notmuch,
1030                                         const char *filename,
1031                                         char **direntry)
1032 {
1033     const char *relative, *directory, *basename;
1034     Xapian::docid directory_id;
1035     notmuch_status_t status;
1036
1037     relative = _notmuch_database_relative_path (notmuch, filename);
1038
1039     status = _notmuch_database_split_path (ctx, relative,
1040                                            &directory, &basename);
1041     if (status)
1042         return status;
1043
1044     status = _notmuch_database_find_directory_id (notmuch, directory,
1045                                                   &directory_id);
1046     if (status)
1047         return status;
1048
1049     *direntry = talloc_asprintf (ctx, "%u:%s", directory_id, basename);
1050
1051     return NOTMUCH_STATUS_SUCCESS;
1052 }
1053
1054 /* Given a legal 'path' for the database, return the relative path.
1055  *
1056  * The return value will be a pointer to the originl path contents,
1057  * and will be either the original string (if 'path' was relative) or
1058  * a portion of the string (if path was absolute and begins with the
1059  * database path).
1060  */
1061 const char *
1062 _notmuch_database_relative_path (notmuch_database_t *notmuch,
1063                                  const char *path)
1064 {
1065     const char *db_path, *relative;
1066     unsigned int db_path_len;
1067
1068     db_path = notmuch_database_get_path (notmuch);
1069     db_path_len = strlen (db_path);
1070
1071     relative = path;
1072
1073     if (*relative == '/') {
1074         while (*relative == '/' && *(relative+1) == '/')
1075             relative++;
1076
1077         if (strncmp (relative, db_path, db_path_len) == 0)
1078         {
1079             relative += db_path_len;
1080             while (*relative == '/')
1081                 relative++;
1082         }
1083     }
1084
1085     return relative;
1086 }
1087
1088 notmuch_directory_t *
1089 notmuch_database_get_directory (notmuch_database_t *notmuch,
1090                                 const char *path)
1091 {
1092     notmuch_status_t status;
1093
1094     return _notmuch_directory_create (notmuch, path, &status);
1095 }
1096
1097 /* Find the thread ID to which the message with 'message_id' belongs.
1098  *
1099  * Returns NULL if no message with message ID 'message_id' is in the
1100  * database.
1101  *
1102  * Otherwise, returns a newly talloced string belonging to 'ctx'.
1103  */
1104 static const char *
1105 _resolve_message_id_to_thread_id (notmuch_database_t *notmuch,
1106                                   void *ctx,
1107                                   const char *message_id)
1108 {
1109     notmuch_message_t *message;
1110     const char *ret = NULL;
1111
1112     message = notmuch_database_find_message (notmuch, message_id);
1113     if (message == NULL)
1114         goto DONE;
1115
1116     ret = talloc_steal (ctx, notmuch_message_get_thread_id (message));
1117
1118   DONE:
1119     if (message)
1120         notmuch_message_destroy (message);
1121
1122     return ret;
1123 }
1124
1125 static notmuch_status_t
1126 _merge_threads (notmuch_database_t *notmuch,
1127                 const char *winner_thread_id,
1128                 const char *loser_thread_id)
1129 {
1130     Xapian::PostingIterator loser, loser_end;
1131     notmuch_message_t *message = NULL;
1132     notmuch_private_status_t private_status;
1133     notmuch_status_t ret = NOTMUCH_STATUS_SUCCESS;
1134
1135     find_doc_ids (notmuch, "thread", loser_thread_id, &loser, &loser_end);
1136
1137     for ( ; loser != loser_end; loser++) {
1138         message = _notmuch_message_create (notmuch, notmuch,
1139                                            *loser, &private_status);
1140         if (message == NULL) {
1141             ret = COERCE_STATUS (private_status,
1142                                  "Cannot find document for doc_id from query");
1143             goto DONE;
1144         }
1145
1146         _notmuch_message_remove_term (message, "thread", loser_thread_id);
1147         _notmuch_message_add_term (message, "thread", winner_thread_id);
1148         _notmuch_message_sync (message);
1149
1150         notmuch_message_destroy (message);
1151         message = NULL;
1152     }
1153
1154   DONE:
1155     if (message)
1156         notmuch_message_destroy (message);
1157
1158     return ret;
1159 }
1160
1161 static void
1162 _my_talloc_free_for_g_hash (void *ptr)
1163 {
1164     talloc_free (ptr);
1165 }
1166
1167 static notmuch_status_t
1168 _notmuch_database_link_message_to_parents (notmuch_database_t *notmuch,
1169                                            notmuch_message_t *message,
1170                                            notmuch_message_file_t *message_file,
1171                                            const char **thread_id)
1172 {
1173     GHashTable *parents = NULL;
1174     const char *refs, *in_reply_to, *in_reply_to_message_id;
1175     GList *l, *keys = NULL;
1176     notmuch_status_t ret = NOTMUCH_STATUS_SUCCESS;
1177
1178     parents = g_hash_table_new_full (g_str_hash, g_str_equal,
1179                                      _my_talloc_free_for_g_hash, NULL);
1180
1181     refs = notmuch_message_file_get_header (message_file, "references");
1182     parse_references (message, notmuch_message_get_message_id (message),
1183                       parents, refs);
1184
1185     in_reply_to = notmuch_message_file_get_header (message_file, "in-reply-to");
1186     parse_references (message, notmuch_message_get_message_id (message),
1187                       parents, in_reply_to);
1188
1189     /* Carefully avoid adding any self-referential in-reply-to term. */
1190     in_reply_to_message_id = _parse_message_id (message, in_reply_to, NULL);
1191     if (in_reply_to_message_id &&
1192         strcmp (in_reply_to_message_id,
1193                 notmuch_message_get_message_id (message)))
1194     {
1195         _notmuch_message_add_term (message, "replyto",
1196                              _parse_message_id (message, in_reply_to, NULL));
1197     }
1198
1199     keys = g_hash_table_get_keys (parents);
1200     for (l = keys; l; l = l->next) {
1201         char *parent_message_id;
1202         const char *parent_thread_id;
1203
1204         parent_message_id = (char *) l->data;
1205         parent_thread_id = _resolve_message_id_to_thread_id (notmuch,
1206                                                              message,
1207                                                              parent_message_id);
1208
1209         if (parent_thread_id == NULL) {
1210             _notmuch_message_add_term (message, "reference",
1211                                        parent_message_id);
1212         } else {
1213             if (*thread_id == NULL) {
1214                 *thread_id = talloc_strdup (message, parent_thread_id);
1215                 _notmuch_message_add_term (message, "thread", *thread_id);
1216             } else if (strcmp (*thread_id, parent_thread_id)) {
1217                 ret = _merge_threads (notmuch, *thread_id, parent_thread_id);
1218                 if (ret)
1219                     goto DONE;
1220             }
1221         }
1222     }
1223
1224   DONE:
1225     if (keys)
1226         g_list_free (keys);
1227     if (parents)
1228         g_hash_table_unref (parents);
1229
1230     return ret;
1231 }
1232
1233 static notmuch_status_t
1234 _notmuch_database_link_message_to_children (notmuch_database_t *notmuch,
1235                                             notmuch_message_t *message,
1236                                             const char **thread_id)
1237 {
1238     const char *message_id = notmuch_message_get_message_id (message);
1239     Xapian::PostingIterator child, children_end;
1240     notmuch_message_t *child_message = NULL;
1241     const char *child_thread_id;
1242     notmuch_status_t ret = NOTMUCH_STATUS_SUCCESS;
1243     notmuch_private_status_t private_status;
1244
1245     find_doc_ids (notmuch, "reference", message_id, &child, &children_end);
1246
1247     for ( ; child != children_end; child++) {
1248
1249         child_message = _notmuch_message_create (message, notmuch,
1250                                                  *child, &private_status);
1251         if (child_message == NULL) {
1252             ret = COERCE_STATUS (private_status,
1253                                  "Cannot find document for doc_id from query");
1254             goto DONE;
1255         }
1256
1257         child_thread_id = notmuch_message_get_thread_id (child_message);
1258         if (*thread_id == NULL) {
1259             *thread_id = talloc_strdup (message, child_thread_id);
1260             _notmuch_message_add_term (message, "thread", *thread_id);
1261         } else if (strcmp (*thread_id, child_thread_id)) {
1262             _notmuch_message_remove_term (child_message, "reference",
1263                                           message_id);
1264             _notmuch_message_sync (child_message);
1265             ret = _merge_threads (notmuch, *thread_id, child_thread_id);
1266             if (ret)
1267                 goto DONE;
1268         }
1269
1270         notmuch_message_destroy (child_message);
1271         child_message = NULL;
1272     }
1273
1274   DONE:
1275     if (child_message)
1276         notmuch_message_destroy (child_message);
1277
1278     return ret;
1279 }
1280
1281 /* Given a (mostly empty) 'message' and its corresponding
1282  * 'message_file' link it to existing threads in the database.
1283  *
1284  * We first look at 'message_file' and its link-relevant headers
1285  * (References and In-Reply-To) for message IDs. We also look in the
1286  * database for existing message that reference 'message'.
1287  *
1288  * The end result is to call _notmuch_message_ensure_thread_id which
1289  * generates a new thread ID if the message doesn't connect to any
1290  * existing threads.
1291  */
1292 static notmuch_status_t
1293 _notmuch_database_link_message (notmuch_database_t *notmuch,
1294                                 notmuch_message_t *message,
1295                                 notmuch_message_file_t *message_file)
1296 {
1297     notmuch_status_t status;
1298     const char *thread_id = NULL;
1299
1300     status = _notmuch_database_link_message_to_parents (notmuch, message,
1301                                                         message_file,
1302                                                         &thread_id);
1303     if (status)
1304         return status;
1305
1306     status = _notmuch_database_link_message_to_children (notmuch, message,
1307                                                          &thread_id);
1308     if (status)
1309         return status;
1310
1311     if (thread_id == NULL)
1312         _notmuch_message_ensure_thread_id (message);
1313
1314     return NOTMUCH_STATUS_SUCCESS;
1315 }
1316
1317 notmuch_status_t
1318 notmuch_database_add_message (notmuch_database_t *notmuch,
1319                               const char *filename,
1320                               notmuch_message_t **message_ret)
1321 {
1322     notmuch_message_file_t *message_file;
1323     notmuch_message_t *message = NULL;
1324     notmuch_status_t ret = NOTMUCH_STATUS_SUCCESS;
1325     notmuch_private_status_t private_status;
1326
1327     const char *date, *header;
1328     const char *from, *to, *subject;
1329     char *message_id = NULL;
1330
1331     if (message_ret)
1332         *message_ret = NULL;
1333
1334     ret = _notmuch_database_ensure_writable (notmuch);
1335     if (ret)
1336         return ret;
1337
1338     message_file = notmuch_message_file_open (filename);
1339     if (message_file == NULL)
1340         return NOTMUCH_STATUS_FILE_ERROR;
1341
1342     notmuch_message_file_restrict_headers (message_file,
1343                                            "date",
1344                                            "from",
1345                                            "in-reply-to",
1346                                            "message-id",
1347                                            "references",
1348                                            "subject",
1349                                            "to",
1350                                            (char *) NULL);
1351
1352     try {
1353         /* Before we do any real work, (especially before doing a
1354          * potential SHA-1 computation on the entire file's contents),
1355          * let's make sure that what we're looking at looks like an
1356          * actual email message.
1357          */
1358         from = notmuch_message_file_get_header (message_file, "from");
1359         subject = notmuch_message_file_get_header (message_file, "subject");
1360         to = notmuch_message_file_get_header (message_file, "to");
1361
1362         if ((from == NULL || *from == '\0') &&
1363             (subject == NULL || *subject == '\0') &&
1364             (to == NULL || *to == '\0'))
1365         {
1366             ret = NOTMUCH_STATUS_FILE_NOT_EMAIL;
1367             goto DONE;
1368         }
1369
1370         /* Now that we're sure it's mail, the first order of business
1371          * is to find a message ID (or else create one ourselves). */
1372
1373         header = notmuch_message_file_get_header (message_file, "message-id");
1374         if (header && *header != '\0') {
1375             message_id = _parse_message_id (message_file, header, NULL);
1376
1377             /* So the header value isn't RFC-compliant, but it's
1378              * better than no message-id at all. */
1379             if (message_id == NULL)
1380                 message_id = talloc_strdup (message_file, header);
1381
1382             /* Reject a Message ID that's too long. */
1383             if (message_id && strlen (message_id) + 1 > NOTMUCH_TERM_MAX) {
1384                 talloc_free (message_id);
1385                 message_id = NULL;
1386             }
1387         }
1388
1389         if (message_id == NULL ) {
1390             /* No message-id at all, let's generate one by taking a
1391              * hash over the file's contents. */
1392             char *sha1 = notmuch_sha1_of_file (filename);
1393
1394             /* If that failed too, something is really wrong. Give up. */
1395             if (sha1 == NULL) {
1396                 ret = NOTMUCH_STATUS_FILE_ERROR;
1397                 goto DONE;
1398             }
1399
1400             message_id = talloc_asprintf (message_file,
1401                                           "notmuch-sha1-%s", sha1);
1402             free (sha1);
1403         }
1404
1405         /* Now that we have a message ID, we get a message object,
1406          * (which may or may not reference an existing document in the
1407          * database). */
1408
1409         message = _notmuch_message_create_for_message_id (notmuch,
1410                                                           message_id,
1411                                                           &private_status);
1412
1413         talloc_free (message_id);
1414
1415         if (message == NULL) {
1416             ret = COERCE_STATUS (private_status,
1417                                  "Unexpected status value from _notmuch_message_create_for_message_id");
1418             goto DONE;
1419         }
1420
1421         _notmuch_message_add_filename (message, filename);
1422
1423         /* Is this a newly created message object? */
1424         if (private_status == NOTMUCH_PRIVATE_STATUS_NO_DOCUMENT_FOUND) {
1425             _notmuch_message_add_term (message, "type", "mail");
1426
1427             ret = _notmuch_database_link_message (notmuch, message,
1428                                                   message_file);
1429             if (ret)
1430                 goto DONE;
1431
1432             date = notmuch_message_file_get_header (message_file, "date");
1433             _notmuch_message_set_date (message, date);
1434
1435             _notmuch_message_index_file (message, filename);
1436         } else {
1437             ret = NOTMUCH_STATUS_DUPLICATE_MESSAGE_ID;
1438         }
1439
1440         _notmuch_message_sync (message);
1441     } catch (const Xapian::Error &error) {
1442         fprintf (stderr, "A Xapian exception occurred adding message: %s.\n",
1443                  error.get_description().c_str());
1444         notmuch->exception_reported = TRUE;
1445         ret = NOTMUCH_STATUS_XAPIAN_EXCEPTION;
1446         goto DONE;
1447     }
1448
1449   DONE:
1450     if (message) {
1451         if (ret == NOTMUCH_STATUS_SUCCESS && message_ret)
1452             *message_ret = message;
1453         else
1454             notmuch_message_destroy (message);
1455     }
1456
1457     if (message_file)
1458         notmuch_message_file_close (message_file);
1459
1460     return ret;
1461 }
1462
1463 notmuch_status_t
1464 notmuch_database_remove_message (notmuch_database_t *notmuch,
1465                                  const char *filename)
1466 {
1467     Xapian::WritableDatabase *db;
1468     void *local = talloc_new (notmuch);
1469     const char *prefix = _find_prefix ("file-direntry");
1470     char *direntry, *term;
1471     Xapian::PostingIterator i, end;
1472     Xapian::Document document;
1473     notmuch_status_t status;
1474
1475     status = _notmuch_database_ensure_writable (notmuch);
1476     if (status)
1477         return status;
1478
1479     db = static_cast <Xapian::WritableDatabase *> (notmuch->xapian_db);
1480
1481     status = _notmuch_database_filename_to_direntry (local, notmuch,
1482                                                      filename, &direntry);
1483     if (status)
1484         return status;
1485
1486     term = talloc_asprintf (notmuch, "%s%s", prefix, direntry);
1487
1488     find_doc_ids_for_term (notmuch, term, &i, &end);
1489
1490     for ( ; i != end; i++) {
1491         Xapian::TermIterator j;
1492
1493         document = find_document_for_doc_id (notmuch, *i);
1494
1495         document.remove_term (term);
1496
1497         j = document.termlist_begin ();
1498         j.skip_to (prefix);
1499
1500         /* Was this the last file-direntry in the message? */
1501         if (j == document.termlist_end () ||
1502             strncmp ((*j).c_str (), prefix, strlen (prefix)))
1503         {
1504             db->delete_document (document.get_docid ());
1505             status = NOTMUCH_STATUS_SUCCESS;
1506         } else {
1507             db->replace_document (document.get_docid (), document);
1508             status = NOTMUCH_STATUS_DUPLICATE_MESSAGE_ID;
1509         }
1510     }
1511
1512     talloc_free (local);
1513
1514     return status;
1515 }
1516
1517 notmuch_tags_t *
1518 _notmuch_convert_tags (void *ctx, Xapian::TermIterator &i,
1519                        Xapian::TermIterator &end)
1520 {
1521     const char *prefix = _find_prefix ("tag");
1522     notmuch_tags_t *tags;
1523     std::string tag;
1524
1525     /* Currently this iteration is written with the assumption that
1526      * "tag" has a single-character prefix. */
1527     assert (strlen (prefix) == 1);
1528
1529     tags = _notmuch_tags_create (ctx);
1530     if (unlikely (tags == NULL))
1531         return NULL;
1532
1533     i.skip_to (prefix);
1534
1535     while (i != end) {
1536         tag = *i;
1537
1538         if (tag.empty () || tag[0] != *prefix)
1539             break;
1540
1541         _notmuch_tags_add_tag (tags, tag.c_str () + 1);
1542
1543         i++;
1544     }
1545
1546     _notmuch_tags_prepare_iterator (tags);
1547
1548     return tags;
1549 }
1550
1551 notmuch_tags_t *
1552 notmuch_database_get_all_tags (notmuch_database_t *db)
1553 {
1554     Xapian::TermIterator i, end;
1555     i = db->xapian_db->allterms_begin();
1556     end = db->xapian_db->allterms_end();
1557     return _notmuch_convert_tags(db, i, end);
1558 }