1 /* database.cc - The database interfaces of the notmuch mail library
3 * Copyright © 2009 Carl Worth
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.
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.
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/ .
18 * Author: Carl Worth <cworth@cworth.org>
21 #include "database-private.h"
22 #include "parse-time-vrp.h"
29 #include <glib.h> /* g_free, GPtrArray, GHashTable */
30 #include <glib-object.h> /* g_type_init */
32 #include <gmime/gmime.h> /* g_mime_init */
36 #define ARRAY_SIZE(arr) (sizeof (arr) / sizeof (arr[0]))
43 #define NOTMUCH_DATABASE_VERSION 1
45 #define STRINGIFY(s) _SUB_STRINGIFY(s)
46 #define _SUB_STRINGIFY(s) #s
48 /* Here's the current schema for our database (for NOTMUCH_DATABASE_VERSION):
50 * We currently have two different types of documents (mail and
51 * directory) and also some metadata.
55 * A mail document is associated with a particular email message file
56 * on disk. It is indexed with the following prefixed terms which the
57 * database uses to construct threads, etc.:
59 * Single terms of given prefix:
63 * id: Unique ID of mail. This is from the Message-ID header
64 * if present and not too long (see NOTMUCH_MESSAGE_ID_MAX).
65 * If it's present and too long, then we use
66 * "notmuch-sha1-<sha1_sum_of_message_id>".
67 * If this header is not present, we use
68 * "notmuch-sha1-<sha1_sum_of_entire_file>".
70 * thread: The ID of the thread to which the mail belongs
72 * replyto: The ID from the In-Reply-To header of the mail (if any).
74 * Multiple terms of given prefix:
76 * reference: All message IDs from In-Reply-To and References
77 * headers in the message.
79 * tag: Any tags associated with this message by the user.
81 * file-direntry: A colon-separated pair of values
82 * (INTEGER:STRING), where INTEGER is the
83 * document ID of a directory document, and
84 * STRING is the name of a file within that
85 * directory for this mail message.
87 * A mail document also has four values:
89 * TIMESTAMP: The time_t value corresponding to the message's
92 * MESSAGE_ID: The unique ID of the mail mess (see "id" above)
94 * FROM: The value of the "From" header
96 * SUBJECT: The value of the "Subject" header
98 * In addition, terms from the content of the message are added with
99 * "from", "to", "attachment", and "subject" prefixes for use by the
100 * user in searching. Similarly, terms from the path of the mail
101 * message are added with a "folder" prefix. But the database doesn't
102 * really care itself about any of these.
104 * The data portion of a mail document is empty.
108 * A directory document is used by a client of the notmuch library to
109 * maintain data necessary to allow for efficient polling of mail
112 * All directory documents contain one term:
114 * directory: The directory path (relative to the database path)
115 * Or the SHA1 sum of the directory path (if the
116 * path itself is too long to fit in a Xapian
119 * And all directory documents for directories other than top-level
120 * directories also contain the following term:
122 * directory-direntry: A colon-separated pair of values
123 * (INTEGER:STRING), where INTEGER is the
124 * document ID of the parent directory
125 * document, and STRING is the name of this
126 * directory within that parent.
128 * All directory documents have a single value:
130 * TIMESTAMP: The mtime of the directory (at last scan)
132 * The data portion of a directory document contains the path of the
133 * directory (relative to the database path).
137 * Xapian allows us to store arbitrary name-value pairs as
138 * "metadata". We currently use the following metadata names with the
141 * version The database schema version, (which is distinct
142 * from both the notmuch package version (see
143 * notmuch --version) and the libnotmuch library
144 * version. The version is stored as an base-10
145 * ASCII integer. The initial database version
146 * was 1, (though a schema existed before that
147 * were no "version" database value existed at
148 * all). Successive versions are allocated as
149 * changes are made to the database (such as by
150 * indexing new fields).
152 * last_thread_id The last thread ID generated. This is stored
153 * as a 16-byte hexadecimal ASCII representation
154 * of a 64-bit unsigned integer. The first ID
155 * generated is 1 and the value will be
156 * incremented for each thread ID.
158 * thread_id_* A pre-allocated thread ID for a particular
159 * message. This is actually an arbitrarily large
160 * family of metadata name. Any particular name is
161 * formed by concatenating "thread_id_" with a message
162 * ID (or the SHA1 sum of a message ID if it is very
163 * long---see description of 'id' in the mail
164 * document). The value stored is a thread ID.
166 * These thread ID metadata values are stored
167 * whenever a message references a parent message
168 * that does not yet exist in the database. A
169 * thread ID will be allocated and stored, and if
170 * the message is later added, the stored thread
171 * ID will be used (and the metadata value will
174 * Even before a message is added, it's
175 * pre-allocated thread ID is useful so that all
176 * descendant messages that reference this common
177 * parent can be recognized as belonging to the
181 /* With these prefix values we follow the conventions published here:
183 * http://xapian.org/docs/omega/termprefixes.html
185 * as much as makes sense. Note that I took some liberty in matching
186 * the reserved prefix values to notmuch concepts, (for example, 'G'
187 * is documented as "newsGroup (or similar entity - e.g. a web forum
188 * name)", for which I think the thread is the closest analogue in
189 * notmuch. This in spite of the fact that we will eventually be
190 * storing mailing-list messages where 'G' for "mailing list name"
191 * might be even a closer analogue. I'm treating the single-character
192 * prefixes preferentially for core notmuch concepts (which will be
193 * nearly universal to all mail messages).
196 static prefix_t BOOLEAN_PREFIX_INTERNAL[] = {
198 { "reference", "XREFERENCE" },
199 { "replyto", "XREPLYTO" },
200 { "directory", "XDIRECTORY" },
201 { "file-direntry", "XFDIRENTRY" },
202 { "directory-direntry", "XDDIRENTRY" },
205 static prefix_t BOOLEAN_PREFIX_EXTERNAL[] = {
212 static prefix_t PROBABILISTIC_PREFIX[]= {
215 { "attachment", "XATTACHMENT" },
216 { "subject", "XSUBJECT"},
217 { "folder", "XFOLDER"}
221 _find_prefix (const char *name)
225 for (i = 0; i < ARRAY_SIZE (BOOLEAN_PREFIX_INTERNAL); i++) {
226 if (strcmp (name, BOOLEAN_PREFIX_INTERNAL[i].name) == 0)
227 return BOOLEAN_PREFIX_INTERNAL[i].prefix;
230 for (i = 0; i < ARRAY_SIZE (BOOLEAN_PREFIX_EXTERNAL); i++) {
231 if (strcmp (name, BOOLEAN_PREFIX_EXTERNAL[i].name) == 0)
232 return BOOLEAN_PREFIX_EXTERNAL[i].prefix;
235 for (i = 0; i < ARRAY_SIZE (PROBABILISTIC_PREFIX); i++) {
236 if (strcmp (name, PROBABILISTIC_PREFIX[i].name) == 0)
237 return PROBABILISTIC_PREFIX[i].prefix;
240 INTERNAL_ERROR ("No prefix exists for '%s'\n", name);
246 notmuch_status_to_string (notmuch_status_t status)
249 case NOTMUCH_STATUS_SUCCESS:
250 return "No error occurred";
251 case NOTMUCH_STATUS_OUT_OF_MEMORY:
252 return "Out of memory";
253 case NOTMUCH_STATUS_READ_ONLY_DATABASE:
254 return "Attempt to write to a read-only database";
255 case NOTMUCH_STATUS_XAPIAN_EXCEPTION:
256 return "A Xapian exception occurred";
257 case NOTMUCH_STATUS_FILE_ERROR:
258 return "Something went wrong trying to read or write a file";
259 case NOTMUCH_STATUS_FILE_NOT_EMAIL:
260 return "File is not an email";
261 case NOTMUCH_STATUS_DUPLICATE_MESSAGE_ID:
262 return "Message ID is identical to a message in database";
263 case NOTMUCH_STATUS_NULL_POINTER:
264 return "Erroneous NULL pointer";
265 case NOTMUCH_STATUS_TAG_TOO_LONG:
266 return "Tag value is too long (exceeds NOTMUCH_TAG_MAX)";
267 case NOTMUCH_STATUS_UNBALANCED_FREEZE_THAW:
268 return "Unbalanced number of calls to notmuch_message_freeze/thaw";
269 case NOTMUCH_STATUS_UNBALANCED_ATOMIC:
270 return "Unbalanced number of calls to notmuch_database_begin_atomic/end_atomic";
272 case NOTMUCH_STATUS_LAST_STATUS:
273 return "Unknown error status value";
278 find_doc_ids_for_term (notmuch_database_t *notmuch,
280 Xapian::PostingIterator *begin,
281 Xapian::PostingIterator *end)
283 *begin = notmuch->xapian_db->postlist_begin (term);
285 *end = notmuch->xapian_db->postlist_end (term);
289 find_doc_ids (notmuch_database_t *notmuch,
290 const char *prefix_name,
292 Xapian::PostingIterator *begin,
293 Xapian::PostingIterator *end)
297 term = talloc_asprintf (notmuch, "%s%s",
298 _find_prefix (prefix_name), value);
300 find_doc_ids_for_term (notmuch, term, begin, end);
305 notmuch_private_status_t
306 _notmuch_database_find_unique_doc_id (notmuch_database_t *notmuch,
307 const char *prefix_name,
309 unsigned int *doc_id)
311 Xapian::PostingIterator i, end;
313 find_doc_ids (notmuch, prefix_name, value, &i, &end);
317 return NOTMUCH_PRIVATE_STATUS_NO_DOCUMENT_FOUND;
322 #if DEBUG_DATABASE_SANITY
326 INTERNAL_ERROR ("Term %s:%s is not unique as expected.\n",
330 return NOTMUCH_PRIVATE_STATUS_SUCCESS;
333 static Xapian::Document
334 find_document_for_doc_id (notmuch_database_t *notmuch, unsigned doc_id)
336 return notmuch->xapian_db->get_document (doc_id);
339 /* Generate a compressed version of 'message_id' of the form:
341 * notmuch-sha1-<sha1_sum_of_message_id>
344 _message_id_compressed (void *ctx, const char *message_id)
346 char *sha1, *compressed;
348 sha1 = notmuch_sha1_of_string (message_id);
350 compressed = talloc_asprintf (ctx, "notmuch-sha1-%s", sha1);
357 notmuch_database_find_message (notmuch_database_t *notmuch,
358 const char *message_id,
359 notmuch_message_t **message_ret)
361 notmuch_private_status_t status;
364 if (message_ret == NULL)
365 return NOTMUCH_STATUS_NULL_POINTER;
367 if (strlen (message_id) > NOTMUCH_MESSAGE_ID_MAX)
368 message_id = _message_id_compressed (notmuch, message_id);
371 status = _notmuch_database_find_unique_doc_id (notmuch, "id",
372 message_id, &doc_id);
374 if (status == NOTMUCH_PRIVATE_STATUS_NO_DOCUMENT_FOUND)
377 *message_ret = _notmuch_message_create (notmuch, notmuch, doc_id,
379 if (*message_ret == NULL)
380 return NOTMUCH_STATUS_OUT_OF_MEMORY;
383 return NOTMUCH_STATUS_SUCCESS;
384 } catch (const Xapian::Error &error) {
385 fprintf (stderr, "A Xapian exception occurred finding message: %s.\n",
386 error.get_msg().c_str());
387 notmuch->exception_reported = TRUE;
389 return NOTMUCH_STATUS_XAPIAN_EXCEPTION;
393 /* Advance 'str' past any whitespace or RFC 822 comments. A comment is
394 * a (potentially nested) parenthesized sequence with '\' used to
395 * escape any character (including parentheses).
397 * If the sequence to be skipped continues to the end of the string,
398 * then 'str' will be left pointing at the final terminating '\0'
402 skip_space_and_comments (const char **str)
407 while (*s && (isspace (*s) || *s == '(')) {
408 while (*s && isspace (*s))
413 while (*s && nesting) {
416 } else if (*s == ')') {
418 } else if (*s == '\\') {
430 /* Parse an RFC 822 message-id, discarding whitespace, any RFC 822
431 * comments, and the '<' and '>' delimiters.
433 * If not NULL, then *next will be made to point to the first character
434 * not parsed, (possibly pointing to the final '\0' terminator.
436 * Returns a newly talloc'ed string belonging to 'ctx'.
438 * Returns NULL if there is any error parsing the message-id. */
440 _parse_message_id (void *ctx, const char *message_id, const char **next)
445 if (message_id == NULL || *message_id == '\0')
450 skip_space_and_comments (&s);
452 /* Skip any unstructured text as well. */
453 while (*s && *s != '<')
464 skip_space_and_comments (&s);
467 while (*end && *end != '>')
476 if (end > s && *end == '>')
481 result = talloc_strndup (ctx, s, end - s + 1);
483 /* Finally, collapse any whitespace that is within the message-id
489 for (r = result, len = strlen (r); *r; r++, len--)
490 if (*r == ' ' || *r == '\t')
491 memmove (r, r+1, len);
497 /* Parse a References header value, putting a (talloc'ed under 'ctx')
498 * copy of each referenced message-id into 'hash'.
500 * We explicitly avoid including any reference identical to
501 * 'message_id' in the result (to avoid mass confusion when a single
502 * message references itself cyclically---and yes, mail messages are
503 * not infrequent in the wild that do this---don't ask me why).
506 parse_references (void *ctx,
507 const char *message_id,
513 if (refs == NULL || *refs == '\0')
517 ref = _parse_message_id (ctx, refs, &refs);
519 if (ref && strcmp (ref, message_id))
520 g_hash_table_insert (hash, ref, NULL);
525 notmuch_database_create (const char *path, notmuch_database_t **database)
527 notmuch_status_t status = NOTMUCH_STATUS_SUCCESS;
528 notmuch_database_t *notmuch = NULL;
529 char *notmuch_path = NULL;
534 fprintf (stderr, "Error: Cannot create a database for a NULL path.\n");
535 status = NOTMUCH_STATUS_NULL_POINTER;
539 err = stat (path, &st);
541 fprintf (stderr, "Error: Cannot create database at %s: %s.\n",
542 path, strerror (errno));
543 status = NOTMUCH_STATUS_FILE_ERROR;
547 if (! S_ISDIR (st.st_mode)) {
548 fprintf (stderr, "Error: Cannot create database at %s: Not a directory.\n",
550 status = NOTMUCH_STATUS_FILE_ERROR;
554 notmuch_path = talloc_asprintf (NULL, "%s/%s", path, ".notmuch");
556 err = mkdir (notmuch_path, 0755);
559 fprintf (stderr, "Error: Cannot create directory %s: %s.\n",
560 notmuch_path, strerror (errno));
561 status = NOTMUCH_STATUS_FILE_ERROR;
565 status = notmuch_database_open (path,
566 NOTMUCH_DATABASE_MODE_READ_WRITE,
570 status = notmuch_database_upgrade (notmuch, NULL, NULL);
572 notmuch_database_close(notmuch);
578 talloc_free (notmuch_path);
583 talloc_free (notmuch);
588 _notmuch_database_ensure_writable (notmuch_database_t *notmuch)
590 if (notmuch->mode == NOTMUCH_DATABASE_MODE_READ_ONLY) {
591 fprintf (stderr, "Cannot write to a read-only database.\n");
592 return NOTMUCH_STATUS_READ_ONLY_DATABASE;
595 return NOTMUCH_STATUS_SUCCESS;
599 notmuch_database_open (const char *path,
600 notmuch_database_mode_t mode,
601 notmuch_database_t **database)
603 notmuch_status_t status = NOTMUCH_STATUS_SUCCESS;
604 void *local = talloc_new (NULL);
605 notmuch_database_t *notmuch = NULL;
606 char *notmuch_path, *xapian_path;
609 unsigned int i, version;
610 static int initialized = 0;
613 fprintf (stderr, "Error: Cannot open a database for a NULL path.\n");
614 status = NOTMUCH_STATUS_NULL_POINTER;
618 if (! (notmuch_path = talloc_asprintf (local, "%s/%s", path, ".notmuch"))) {
619 fprintf (stderr, "Out of memory\n");
620 status = NOTMUCH_STATUS_OUT_OF_MEMORY;
624 err = stat (notmuch_path, &st);
626 fprintf (stderr, "Error opening database at %s: %s\n",
627 notmuch_path, strerror (errno));
628 status = NOTMUCH_STATUS_FILE_ERROR;
632 if (! (xapian_path = talloc_asprintf (local, "%s/%s", notmuch_path, "xapian"))) {
633 fprintf (stderr, "Out of memory\n");
634 status = NOTMUCH_STATUS_OUT_OF_MEMORY;
638 /* Initialize the GLib type system and threads */
641 /* Initialize gmime */
647 notmuch = talloc_zero (NULL, notmuch_database_t);
648 notmuch->exception_reported = FALSE;
649 notmuch->path = talloc_strdup (notmuch, path);
651 if (notmuch->path[strlen (notmuch->path) - 1] == '/')
652 notmuch->path[strlen (notmuch->path) - 1] = '\0';
654 notmuch->needs_upgrade = FALSE;
655 notmuch->mode = mode;
656 notmuch->atomic_nesting = 0;
658 string last_thread_id;
660 if (mode == NOTMUCH_DATABASE_MODE_READ_WRITE) {
661 notmuch->xapian_db = new Xapian::WritableDatabase (xapian_path,
662 Xapian::DB_CREATE_OR_OPEN);
663 version = notmuch_database_get_version (notmuch);
665 if (version > NOTMUCH_DATABASE_VERSION) {
667 "Error: Notmuch database at %s\n"
668 " has a newer database format version (%u) than supported by this\n"
669 " version of notmuch (%u). Refusing to open this database in\n"
670 " read-write mode.\n",
671 notmuch_path, version, NOTMUCH_DATABASE_VERSION);
672 notmuch->mode = NOTMUCH_DATABASE_MODE_READ_ONLY;
673 notmuch_database_destroy (notmuch);
675 status = NOTMUCH_STATUS_FILE_ERROR;
679 if (version < NOTMUCH_DATABASE_VERSION)
680 notmuch->needs_upgrade = TRUE;
682 notmuch->xapian_db = new Xapian::Database (xapian_path);
683 version = notmuch_database_get_version (notmuch);
684 if (version > NOTMUCH_DATABASE_VERSION)
687 "Warning: Notmuch database at %s\n"
688 " has a newer database format version (%u) than supported by this\n"
689 " version of notmuch (%u). Some operations may behave incorrectly,\n"
690 " (but the database will not be harmed since it is being opened\n"
691 " in read-only mode).\n",
692 notmuch_path, version, NOTMUCH_DATABASE_VERSION);
696 notmuch->last_doc_id = notmuch->xapian_db->get_lastdocid ();
697 last_thread_id = notmuch->xapian_db->get_metadata ("last_thread_id");
698 if (last_thread_id.empty ()) {
699 notmuch->last_thread_id = 0;
704 str = last_thread_id.c_str ();
705 notmuch->last_thread_id = strtoull (str, &end, 16);
707 INTERNAL_ERROR ("Malformed database last_thread_id: %s", str);
710 notmuch->query_parser = new Xapian::QueryParser;
711 notmuch->term_gen = new Xapian::TermGenerator;
712 notmuch->term_gen->set_stemmer (Xapian::Stem ("english"));
713 notmuch->value_range_processor = new Xapian::NumberValueRangeProcessor (NOTMUCH_VALUE_TIMESTAMP);
714 notmuch->date_range_processor = new ParseTimeValueRangeProcessor (NOTMUCH_VALUE_TIMESTAMP);
716 notmuch->query_parser->set_default_op (Xapian::Query::OP_AND);
717 notmuch->query_parser->set_database (*notmuch->xapian_db);
718 notmuch->query_parser->set_stemmer (Xapian::Stem ("english"));
719 notmuch->query_parser->set_stemming_strategy (Xapian::QueryParser::STEM_SOME);
720 notmuch->query_parser->add_valuerangeprocessor (notmuch->value_range_processor);
721 notmuch->query_parser->add_valuerangeprocessor (notmuch->date_range_processor);
723 for (i = 0; i < ARRAY_SIZE (BOOLEAN_PREFIX_EXTERNAL); i++) {
724 prefix_t *prefix = &BOOLEAN_PREFIX_EXTERNAL[i];
725 notmuch->query_parser->add_boolean_prefix (prefix->name,
729 for (i = 0; i < ARRAY_SIZE (PROBABILISTIC_PREFIX); i++) {
730 prefix_t *prefix = &PROBABILISTIC_PREFIX[i];
731 notmuch->query_parser->add_prefix (prefix->name, prefix->prefix);
733 } catch (const Xapian::Error &error) {
734 fprintf (stderr, "A Xapian exception occurred opening database: %s\n",
735 error.get_msg().c_str());
736 notmuch_database_destroy (notmuch);
738 status = NOTMUCH_STATUS_XAPIAN_EXCEPTION;
747 talloc_free (notmuch);
752 notmuch_database_close (notmuch_database_t *notmuch)
755 if (notmuch->xapian_db != NULL &&
756 notmuch->mode == NOTMUCH_DATABASE_MODE_READ_WRITE)
757 (static_cast <Xapian::WritableDatabase *> (notmuch->xapian_db))->flush ();
758 } catch (const Xapian::Error &error) {
759 if (! notmuch->exception_reported) {
760 fprintf (stderr, "Error: A Xapian exception occurred flushing database: %s\n",
761 error.get_msg().c_str());
765 /* Many Xapian objects (and thus notmuch objects) hold references to
766 * the database, so merely deleting the database may not suffice to
767 * close it. Thus, we explicitly close it here. */
768 if (notmuch->xapian_db != NULL) {
770 notmuch->xapian_db->close();
771 } catch (const Xapian::Error &error) {
776 delete notmuch->term_gen;
777 notmuch->term_gen = NULL;
778 delete notmuch->query_parser;
779 notmuch->query_parser = NULL;
780 delete notmuch->xapian_db;
781 notmuch->xapian_db = NULL;
782 delete notmuch->value_range_processor;
783 notmuch->value_range_processor = NULL;
784 delete notmuch->date_range_processor;
785 notmuch->date_range_processor = NULL;
789 notmuch_database_destroy (notmuch_database_t *notmuch)
791 notmuch_database_close (notmuch);
792 talloc_free (notmuch);
796 notmuch_database_get_path (notmuch_database_t *notmuch)
798 return notmuch->path;
802 notmuch_database_get_version (notmuch_database_t *notmuch)
804 unsigned int version;
805 string version_string;
809 version_string = notmuch->xapian_db->get_metadata ("version");
810 if (version_string.empty ())
813 str = version_string.c_str ();
814 if (str == NULL || *str == '\0')
817 version = strtoul (str, &end, 10);
819 INTERNAL_ERROR ("Malformed database version: %s", str);
825 notmuch_database_needs_upgrade (notmuch_database_t *notmuch)
827 return notmuch->needs_upgrade;
830 static volatile sig_atomic_t do_progress_notify = 0;
833 handle_sigalrm (unused (int signal))
835 do_progress_notify = 1;
838 /* Upgrade the current database.
840 * After opening a database in read-write mode, the client should
841 * check if an upgrade is needed (notmuch_database_needs_upgrade) and
842 * if so, upgrade with this function before making any modifications.
844 * The optional progress_notify callback can be used by the caller to
845 * provide progress indication to the user. If non-NULL it will be
846 * called periodically with 'count' as the number of messages upgraded
847 * so far and 'total' the overall number of messages that will be
851 notmuch_database_upgrade (notmuch_database_t *notmuch,
852 void (*progress_notify) (void *closure,
856 Xapian::WritableDatabase *db;
857 struct sigaction action;
858 struct itimerval timerval;
859 notmuch_bool_t timer_is_active = FALSE;
860 unsigned int version;
861 notmuch_status_t status;
862 unsigned int count = 0, total = 0;
864 status = _notmuch_database_ensure_writable (notmuch);
868 db = static_cast <Xapian::WritableDatabase *> (notmuch->xapian_db);
870 version = notmuch_database_get_version (notmuch);
872 if (version >= NOTMUCH_DATABASE_VERSION)
873 return NOTMUCH_STATUS_SUCCESS;
875 if (progress_notify) {
876 /* Setup our handler for SIGALRM */
877 memset (&action, 0, sizeof (struct sigaction));
878 action.sa_handler = handle_sigalrm;
879 sigemptyset (&action.sa_mask);
880 action.sa_flags = SA_RESTART;
881 sigaction (SIGALRM, &action, NULL);
883 /* Then start a timer to send SIGALRM once per second. */
884 timerval.it_interval.tv_sec = 1;
885 timerval.it_interval.tv_usec = 0;
886 timerval.it_value.tv_sec = 1;
887 timerval.it_value.tv_usec = 0;
888 setitimer (ITIMER_REAL, &timerval, NULL);
890 timer_is_active = TRUE;
893 /* Before version 1, each message document had its filename in the
894 * data field. Copy that into the new format by calling
895 * notmuch_message_add_filename.
898 notmuch_query_t *query = notmuch_query_create (notmuch, "");
899 notmuch_messages_t *messages;
900 notmuch_message_t *message;
902 Xapian::TermIterator t, t_end;
904 total = notmuch_query_count_messages (query);
906 for (messages = notmuch_query_search_messages (query);
907 notmuch_messages_valid (messages);
908 notmuch_messages_move_to_next (messages))
910 if (do_progress_notify) {
911 progress_notify (closure, (double) count / total);
912 do_progress_notify = 0;
915 message = notmuch_messages_get (messages);
917 filename = _notmuch_message_talloc_copy_data (message);
918 if (filename && *filename != '\0') {
919 _notmuch_message_add_filename (message, filename);
920 _notmuch_message_sync (message);
922 talloc_free (filename);
924 notmuch_message_destroy (message);
929 notmuch_query_destroy (query);
931 /* Also, before version 1 we stored directory timestamps in
932 * XTIMESTAMP documents instead of the current XDIRECTORY
933 * documents. So copy those as well. */
935 t_end = notmuch->xapian_db->allterms_end ("XTIMESTAMP");
937 for (t = notmuch->xapian_db->allterms_begin ("XTIMESTAMP");
941 Xapian::PostingIterator p, p_end;
942 std::string term = *t;
944 p_end = notmuch->xapian_db->postlist_end (term);
946 for (p = notmuch->xapian_db->postlist_begin (term);
950 Xapian::Document document;
952 notmuch_directory_t *directory;
954 if (do_progress_notify) {
955 progress_notify (closure, (double) count / total);
956 do_progress_notify = 0;
959 document = find_document_for_doc_id (notmuch, *p);
960 mtime = Xapian::sortable_unserialise (
961 document.get_value (NOTMUCH_VALUE_TIMESTAMP));
963 directory = _notmuch_directory_create (notmuch, term.c_str() + 10,
964 NOTMUCH_FIND_CREATE, &status);
965 notmuch_directory_set_mtime (directory, mtime);
966 notmuch_directory_destroy (directory);
971 db->set_metadata ("version", STRINGIFY (NOTMUCH_DATABASE_VERSION));
974 /* Now that the upgrade is complete we can remove the old data
975 * and documents that are no longer needed. */
977 notmuch_query_t *query = notmuch_query_create (notmuch, "");
978 notmuch_messages_t *messages;
979 notmuch_message_t *message;
982 for (messages = notmuch_query_search_messages (query);
983 notmuch_messages_valid (messages);
984 notmuch_messages_move_to_next (messages))
986 if (do_progress_notify) {
987 progress_notify (closure, (double) count / total);
988 do_progress_notify = 0;
991 message = notmuch_messages_get (messages);
993 filename = _notmuch_message_talloc_copy_data (message);
994 if (filename && *filename != '\0') {
995 _notmuch_message_clear_data (message);
996 _notmuch_message_sync (message);
998 talloc_free (filename);
1000 notmuch_message_destroy (message);
1003 notmuch_query_destroy (query);
1007 Xapian::TermIterator t, t_end;
1009 t_end = notmuch->xapian_db->allterms_end ("XTIMESTAMP");
1011 for (t = notmuch->xapian_db->allterms_begin ("XTIMESTAMP");
1015 Xapian::PostingIterator p, p_end;
1016 std::string term = *t;
1018 p_end = notmuch->xapian_db->postlist_end (term);
1020 for (p = notmuch->xapian_db->postlist_begin (term);
1024 if (do_progress_notify) {
1025 progress_notify (closure, (double) count / total);
1026 do_progress_notify = 0;
1029 db->delete_document (*p);
1034 if (timer_is_active) {
1035 /* Now stop the timer. */
1036 timerval.it_interval.tv_sec = 0;
1037 timerval.it_interval.tv_usec = 0;
1038 timerval.it_value.tv_sec = 0;
1039 timerval.it_value.tv_usec = 0;
1040 setitimer (ITIMER_REAL, &timerval, NULL);
1042 /* And disable the signal handler. */
1043 action.sa_handler = SIG_IGN;
1044 sigaction (SIGALRM, &action, NULL);
1047 return NOTMUCH_STATUS_SUCCESS;
1051 notmuch_database_begin_atomic (notmuch_database_t *notmuch)
1053 if (notmuch->mode == NOTMUCH_DATABASE_MODE_READ_ONLY ||
1054 notmuch->atomic_nesting > 0)
1058 (static_cast <Xapian::WritableDatabase *> (notmuch->xapian_db))->begin_transaction (false);
1059 } catch (const Xapian::Error &error) {
1060 fprintf (stderr, "A Xapian exception occurred beginning transaction: %s.\n",
1061 error.get_msg().c_str());
1062 notmuch->exception_reported = TRUE;
1063 return NOTMUCH_STATUS_XAPIAN_EXCEPTION;
1067 notmuch->atomic_nesting++;
1068 return NOTMUCH_STATUS_SUCCESS;
1072 notmuch_database_end_atomic (notmuch_database_t *notmuch)
1074 Xapian::WritableDatabase *db;
1076 if (notmuch->atomic_nesting == 0)
1077 return NOTMUCH_STATUS_UNBALANCED_ATOMIC;
1079 if (notmuch->mode == NOTMUCH_DATABASE_MODE_READ_ONLY ||
1080 notmuch->atomic_nesting > 1)
1083 db = static_cast <Xapian::WritableDatabase *> (notmuch->xapian_db);
1085 db->commit_transaction ();
1087 /* This is a hack for testing. Xapian never flushes on a
1088 * non-flushed commit, even if the flush threshold is 1.
1089 * However, we rely on flushing to test atomicity. */
1090 const char *thresh = getenv ("XAPIAN_FLUSH_THRESHOLD");
1091 if (thresh && atoi (thresh) == 1)
1093 } catch (const Xapian::Error &error) {
1094 fprintf (stderr, "A Xapian exception occurred committing transaction: %s.\n",
1095 error.get_msg().c_str());
1096 notmuch->exception_reported = TRUE;
1097 return NOTMUCH_STATUS_XAPIAN_EXCEPTION;
1101 notmuch->atomic_nesting--;
1102 return NOTMUCH_STATUS_SUCCESS;
1105 /* We allow the user to use arbitrarily long paths for directories. But
1106 * we have a term-length limit. So if we exceed that, we'll use the
1107 * SHA-1 of the path for the database term.
1109 * Note: This function may return the original value of 'path'. If it
1110 * does not, then the caller is responsible to free() the returned
1114 _notmuch_database_get_directory_db_path (const char *path)
1116 int term_len = strlen (_find_prefix ("directory")) + strlen (path);
1118 if (term_len > NOTMUCH_TERM_MAX)
1119 return notmuch_sha1_of_string (path);
1124 /* Given a path, split it into two parts: the directory part is all
1125 * components except for the last, and the basename is that last
1126 * component. Getting the return-value for either part is optional
1127 * (the caller can pass NULL).
1129 * The original 'path' can represent either a regular file or a
1130 * directory---the splitting will be carried out in the same way in
1131 * either case. Trailing slashes on 'path' will be ignored, and any
1132 * cases of multiple '/' characters appearing in series will be
1133 * treated as a single '/'.
1135 * Allocation (if any) will have 'ctx' as the talloc owner. But
1136 * pointers will be returned within the original path string whenever
1139 * Note: If 'path' is non-empty and contains no non-trailing slash,
1140 * (that is, consists of a filename with no parent directory), then
1141 * the directory returned will be an empty string. However, if 'path'
1142 * is an empty string, then both directory and basename will be
1146 _notmuch_database_split_path (void *ctx,
1148 const char **directory,
1149 const char **basename)
1153 if (path == NULL || *path == '\0') {
1158 return NOTMUCH_STATUS_SUCCESS;
1161 /* Find the last slash (not counting a trailing slash), if any. */
1163 slash = path + strlen (path) - 1;
1165 /* First, skip trailing slashes. */
1166 while (slash != path) {
1173 /* Then, find a slash. */
1174 while (slash != path) {
1184 /* Finally, skip multiple slashes. */
1185 while (slash != path) {
1192 if (slash == path) {
1194 *directory = talloc_strdup (ctx, "");
1199 *directory = talloc_strndup (ctx, path, slash - path + 1);
1202 return NOTMUCH_STATUS_SUCCESS;
1205 /* Find the document ID of the specified directory.
1207 * If (flags & NOTMUCH_FIND_CREATE), a new directory document will be
1208 * created if one does not exist for 'path'. Otherwise, if the
1209 * directory document does not exist, this sets *directory_id to
1210 * ((unsigned int)-1) and returns NOTMUCH_STATUS_SUCCESS.
1213 _notmuch_database_find_directory_id (notmuch_database_t *notmuch,
1215 notmuch_find_flags_t flags,
1216 unsigned int *directory_id)
1218 notmuch_directory_t *directory;
1219 notmuch_status_t status;
1223 return NOTMUCH_STATUS_SUCCESS;
1226 directory = _notmuch_directory_create (notmuch, path, flags, &status);
1227 if (status || !directory) {
1232 *directory_id = _notmuch_directory_get_document_id (directory);
1234 notmuch_directory_destroy (directory);
1236 return NOTMUCH_STATUS_SUCCESS;
1240 _notmuch_database_get_directory_path (void *ctx,
1241 notmuch_database_t *notmuch,
1242 unsigned int doc_id)
1244 Xapian::Document document;
1246 document = find_document_for_doc_id (notmuch, doc_id);
1248 return talloc_strdup (ctx, document.get_data ().c_str ());
1251 /* Given a legal 'filename' for the database, (either relative to
1252 * database path or absolute with initial components identical to
1253 * database path), return a new string (with 'ctx' as the talloc
1254 * owner) suitable for use as a direntry term value.
1256 * If (flags & NOTMUCH_FIND_CREATE), the necessary directory documents
1257 * will be created in the database as needed. Otherwise, if the
1258 * necessary directory documents do not exist, this sets
1259 * *direntry to NULL and returns NOTMUCH_STATUS_SUCCESS.
1262 _notmuch_database_filename_to_direntry (void *ctx,
1263 notmuch_database_t *notmuch,
1264 const char *filename,
1265 notmuch_find_flags_t flags,
1268 const char *relative, *directory, *basename;
1269 Xapian::docid directory_id;
1270 notmuch_status_t status;
1272 relative = _notmuch_database_relative_path (notmuch, filename);
1274 status = _notmuch_database_split_path (ctx, relative,
1275 &directory, &basename);
1279 status = _notmuch_database_find_directory_id (notmuch, directory, flags,
1281 if (status || directory_id == (unsigned int)-1) {
1286 *direntry = talloc_asprintf (ctx, "%u:%s", directory_id, basename);
1288 return NOTMUCH_STATUS_SUCCESS;
1291 /* Given a legal 'path' for the database, return the relative path.
1293 * The return value will be a pointer to the original path contents,
1294 * and will be either the original string (if 'path' was relative) or
1295 * a portion of the string (if path was absolute and begins with the
1299 _notmuch_database_relative_path (notmuch_database_t *notmuch,
1302 const char *db_path, *relative;
1303 unsigned int db_path_len;
1305 db_path = notmuch_database_get_path (notmuch);
1306 db_path_len = strlen (db_path);
1310 if (*relative == '/') {
1311 while (*relative == '/' && *(relative+1) == '/')
1314 if (strncmp (relative, db_path, db_path_len) == 0)
1316 relative += db_path_len;
1317 while (*relative == '/')
1326 notmuch_database_get_directory (notmuch_database_t *notmuch,
1328 notmuch_directory_t **directory)
1330 notmuch_status_t status;
1332 if (directory == NULL)
1333 return NOTMUCH_STATUS_NULL_POINTER;
1337 *directory = _notmuch_directory_create (notmuch, path,
1338 NOTMUCH_FIND_LOOKUP, &status);
1339 } catch (const Xapian::Error &error) {
1340 fprintf (stderr, "A Xapian exception occurred getting directory: %s.\n",
1341 error.get_msg().c_str());
1342 notmuch->exception_reported = TRUE;
1343 status = NOTMUCH_STATUS_XAPIAN_EXCEPTION;
1348 /* Allocate a document ID that satisfies the following criteria:
1350 * 1. The ID does not exist for any document in the Xapian database
1352 * 2. The ID was not previously returned from this function
1354 * 3. The ID is the smallest integer satisfying (1) and (2)
1356 * This function will trigger an internal error if these constraints
1357 * cannot all be satisfied, (that is, the pool of available document
1358 * IDs has been exhausted).
1361 _notmuch_database_generate_doc_id (notmuch_database_t *notmuch)
1363 assert (notmuch->last_doc_id >= notmuch->xapian_db->get_lastdocid ());
1365 notmuch->last_doc_id++;
1367 if (notmuch->last_doc_id == 0)
1368 INTERNAL_ERROR ("Xapian document IDs are exhausted.\n");
1370 return notmuch->last_doc_id;
1374 _notmuch_database_generate_thread_id (notmuch_database_t *notmuch)
1376 /* 16 bytes (+ terminator) for hexadecimal representation of
1377 * a 64-bit integer. */
1378 static char thread_id[17];
1379 Xapian::WritableDatabase *db;
1381 db = static_cast <Xapian::WritableDatabase *> (notmuch->xapian_db);
1383 notmuch->last_thread_id++;
1385 sprintf (thread_id, "%016" PRIx64, notmuch->last_thread_id);
1387 db->set_metadata ("last_thread_id", thread_id);
1393 _get_metadata_thread_id_key (void *ctx, const char *message_id)
1395 if (strlen (message_id) > NOTMUCH_MESSAGE_ID_MAX)
1396 message_id = _message_id_compressed (ctx, message_id);
1398 return talloc_asprintf (ctx, NOTMUCH_METADATA_THREAD_ID_PREFIX "%s",
1402 /* Find the thread ID to which the message with 'message_id' belongs.
1404 * Note: 'thread_id_ret' must not be NULL!
1405 * On success '*thread_id_ret' is set to a newly talloced string belonging to
1408 * Note: If there is no message in the database with the given
1409 * 'message_id' then a new thread_id will be allocated for this
1410 * message and stored in the database metadata, (where this same
1411 * thread ID can be looked up if the message is added to the database
1414 static notmuch_status_t
1415 _resolve_message_id_to_thread_id (notmuch_database_t *notmuch,
1417 const char *message_id,
1418 const char **thread_id_ret)
1420 notmuch_status_t status;
1421 notmuch_message_t *message;
1422 string thread_id_string;
1424 Xapian::WritableDatabase *db;
1426 status = notmuch_database_find_message (notmuch, message_id, &message);
1432 *thread_id_ret = talloc_steal (ctx,
1433 notmuch_message_get_thread_id (message));
1435 notmuch_message_destroy (message);
1437 return NOTMUCH_STATUS_SUCCESS;
1440 /* Message has not been seen yet.
1442 * We may have seen a reference to it already, in which case, we
1443 * can return the thread ID stored in the metadata. Otherwise, we
1444 * generate a new thread ID and store it there.
1446 db = static_cast <Xapian::WritableDatabase *> (notmuch->xapian_db);
1447 metadata_key = _get_metadata_thread_id_key (ctx, message_id);
1448 thread_id_string = notmuch->xapian_db->get_metadata (metadata_key);
1450 if (thread_id_string.empty()) {
1451 *thread_id_ret = talloc_strdup (ctx,
1452 _notmuch_database_generate_thread_id (notmuch));
1453 db->set_metadata (metadata_key, *thread_id_ret);
1455 *thread_id_ret = talloc_strdup (ctx, thread_id_string.c_str());
1458 talloc_free (metadata_key);
1460 return NOTMUCH_STATUS_SUCCESS;
1463 static notmuch_status_t
1464 _merge_threads (notmuch_database_t *notmuch,
1465 const char *winner_thread_id,
1466 const char *loser_thread_id)
1468 Xapian::PostingIterator loser, loser_end;
1469 notmuch_message_t *message = NULL;
1470 notmuch_private_status_t private_status;
1471 notmuch_status_t ret = NOTMUCH_STATUS_SUCCESS;
1473 find_doc_ids (notmuch, "thread", loser_thread_id, &loser, &loser_end);
1475 for ( ; loser != loser_end; loser++) {
1476 message = _notmuch_message_create (notmuch, notmuch,
1477 *loser, &private_status);
1478 if (message == NULL) {
1479 ret = COERCE_STATUS (private_status,
1480 "Cannot find document for doc_id from query");
1484 _notmuch_message_remove_term (message, "thread", loser_thread_id);
1485 _notmuch_message_add_term (message, "thread", winner_thread_id);
1486 _notmuch_message_sync (message);
1488 notmuch_message_destroy (message);
1494 notmuch_message_destroy (message);
1500 _my_talloc_free_for_g_hash (void *ptr)
1505 static notmuch_status_t
1506 _notmuch_database_link_message_to_parents (notmuch_database_t *notmuch,
1507 notmuch_message_t *message,
1508 notmuch_message_file_t *message_file,
1509 const char **thread_id)
1511 GHashTable *parents = NULL;
1512 const char *refs, *in_reply_to, *in_reply_to_message_id;
1513 GList *l, *keys = NULL;
1514 notmuch_status_t ret = NOTMUCH_STATUS_SUCCESS;
1516 parents = g_hash_table_new_full (g_str_hash, g_str_equal,
1517 _my_talloc_free_for_g_hash, NULL);
1519 refs = notmuch_message_file_get_header (message_file, "references");
1520 parse_references (message, notmuch_message_get_message_id (message),
1523 in_reply_to = notmuch_message_file_get_header (message_file, "in-reply-to");
1524 parse_references (message, notmuch_message_get_message_id (message),
1525 parents, in_reply_to);
1527 /* Carefully avoid adding any self-referential in-reply-to term. */
1528 in_reply_to_message_id = _parse_message_id (message, in_reply_to, NULL);
1529 if (in_reply_to_message_id &&
1530 strcmp (in_reply_to_message_id,
1531 notmuch_message_get_message_id (message)))
1533 _notmuch_message_add_term (message, "replyto",
1534 _parse_message_id (message, in_reply_to, NULL));
1537 keys = g_hash_table_get_keys (parents);
1538 for (l = keys; l; l = l->next) {
1539 char *parent_message_id;
1540 const char *parent_thread_id = NULL;
1542 parent_message_id = (char *) l->data;
1544 _notmuch_message_add_term (message, "reference",
1547 ret = _resolve_message_id_to_thread_id (notmuch,
1554 if (*thread_id == NULL) {
1555 *thread_id = talloc_strdup (message, parent_thread_id);
1556 _notmuch_message_add_term (message, "thread", *thread_id);
1557 } else if (strcmp (*thread_id, parent_thread_id)) {
1558 ret = _merge_threads (notmuch, *thread_id, parent_thread_id);
1568 g_hash_table_unref (parents);
1573 static notmuch_status_t
1574 _notmuch_database_link_message_to_children (notmuch_database_t *notmuch,
1575 notmuch_message_t *message,
1576 const char **thread_id)
1578 const char *message_id = notmuch_message_get_message_id (message);
1579 Xapian::PostingIterator child, children_end;
1580 notmuch_message_t *child_message = NULL;
1581 const char *child_thread_id;
1582 notmuch_status_t ret = NOTMUCH_STATUS_SUCCESS;
1583 notmuch_private_status_t private_status;
1585 find_doc_ids (notmuch, "reference", message_id, &child, &children_end);
1587 for ( ; child != children_end; child++) {
1589 child_message = _notmuch_message_create (message, notmuch,
1590 *child, &private_status);
1591 if (child_message == NULL) {
1592 ret = COERCE_STATUS (private_status,
1593 "Cannot find document for doc_id from query");
1597 child_thread_id = notmuch_message_get_thread_id (child_message);
1598 if (*thread_id == NULL) {
1599 *thread_id = talloc_strdup (message, child_thread_id);
1600 _notmuch_message_add_term (message, "thread", *thread_id);
1601 } else if (strcmp (*thread_id, child_thread_id)) {
1602 _notmuch_message_remove_term (child_message, "reference",
1604 _notmuch_message_sync (child_message);
1605 ret = _merge_threads (notmuch, *thread_id, child_thread_id);
1610 notmuch_message_destroy (child_message);
1611 child_message = NULL;
1616 notmuch_message_destroy (child_message);
1621 /* Given a (mostly empty) 'message' and its corresponding
1622 * 'message_file' link it to existing threads in the database.
1624 * The first check is in the metadata of the database to see if we
1625 * have pre-allocated a thread_id in advance for this message, (which
1626 * would have happened if a message was previously added that
1627 * referenced this one).
1629 * Second, we look at 'message_file' and its link-relevant headers
1630 * (References and In-Reply-To) for message IDs.
1632 * Finally, we look in the database for existing message that
1633 * reference 'message'.
1635 * In all cases, we assign to the current message the first thread_id
1636 * found (through either parent or child). We will also merge any
1637 * existing, distinct threads where this message belongs to both,
1638 * (which is not uncommon when messages are processed out of order).
1640 * Finally, if no thread ID has been found through parent or child, we
1641 * call _notmuch_message_generate_thread_id to generate a new thread
1642 * ID. This should only happen for new, top-level messages, (no
1643 * References or In-Reply-To header in this message, and no previously
1644 * added message refers to this message).
1646 static notmuch_status_t
1647 _notmuch_database_link_message (notmuch_database_t *notmuch,
1648 notmuch_message_t *message,
1649 notmuch_message_file_t *message_file)
1651 notmuch_status_t status;
1652 const char *message_id, *thread_id = NULL;
1656 message_id = notmuch_message_get_message_id (message);
1657 metadata_key = _get_metadata_thread_id_key (message, message_id);
1659 /* Check if we have already seen related messages to this one.
1660 * If we have then use the thread_id that we stored at that time.
1662 stored_id = notmuch->xapian_db->get_metadata (metadata_key);
1663 if (! stored_id.empty()) {
1664 Xapian::WritableDatabase *db;
1666 db = static_cast <Xapian::WritableDatabase *> (notmuch->xapian_db);
1668 /* Clear the metadata for this message ID. We don't need it
1670 db->set_metadata (metadata_key, "");
1671 thread_id = stored_id.c_str();
1673 _notmuch_message_add_term (message, "thread", thread_id);
1675 talloc_free (metadata_key);
1677 status = _notmuch_database_link_message_to_parents (notmuch, message,
1683 status = _notmuch_database_link_message_to_children (notmuch, message,
1688 /* If not part of any existing thread, generate a new thread ID. */
1689 if (thread_id == NULL) {
1690 thread_id = _notmuch_database_generate_thread_id (notmuch);
1692 _notmuch_message_add_term (message, "thread", thread_id);
1695 return NOTMUCH_STATUS_SUCCESS;
1699 notmuch_database_add_message (notmuch_database_t *notmuch,
1700 const char *filename,
1701 notmuch_message_t **message_ret)
1703 notmuch_message_file_t *message_file;
1704 notmuch_message_t *message = NULL;
1705 notmuch_status_t ret = NOTMUCH_STATUS_SUCCESS, ret2;
1706 notmuch_private_status_t private_status;
1708 const char *date, *header;
1709 const char *from, *to, *subject;
1710 char *message_id = NULL;
1713 *message_ret = NULL;
1715 ret = _notmuch_database_ensure_writable (notmuch);
1719 message_file = notmuch_message_file_open (filename);
1720 if (message_file == NULL)
1721 return NOTMUCH_STATUS_FILE_ERROR;
1723 /* Adding a message may change many documents. Do this all
1725 ret = notmuch_database_begin_atomic (notmuch);
1729 notmuch_message_file_restrict_headers (message_file,
1740 /* Before we do any real work, (especially before doing a
1741 * potential SHA-1 computation on the entire file's contents),
1742 * let's make sure that what we're looking at looks like an
1743 * actual email message.
1745 from = notmuch_message_file_get_header (message_file, "from");
1746 subject = notmuch_message_file_get_header (message_file, "subject");
1747 to = notmuch_message_file_get_header (message_file, "to");
1749 if ((from == NULL || *from == '\0') &&
1750 (subject == NULL || *subject == '\0') &&
1751 (to == NULL || *to == '\0'))
1753 ret = NOTMUCH_STATUS_FILE_NOT_EMAIL;
1757 /* Now that we're sure it's mail, the first order of business
1758 * is to find a message ID (or else create one ourselves). */
1760 header = notmuch_message_file_get_header (message_file, "message-id");
1761 if (header && *header != '\0') {
1762 message_id = _parse_message_id (message_file, header, NULL);
1764 /* So the header value isn't RFC-compliant, but it's
1765 * better than no message-id at all. */
1766 if (message_id == NULL)
1767 message_id = talloc_strdup (message_file, header);
1769 /* If a message ID is too long, substitute its sha1 instead. */
1770 if (message_id && strlen (message_id) > NOTMUCH_MESSAGE_ID_MAX) {
1771 char *compressed = _message_id_compressed (message_file,
1773 talloc_free (message_id);
1774 message_id = compressed;
1778 if (message_id == NULL ) {
1779 /* No message-id at all, let's generate one by taking a
1780 * hash over the file's contents. */
1781 char *sha1 = notmuch_sha1_of_file (filename);
1783 /* If that failed too, something is really wrong. Give up. */
1785 ret = NOTMUCH_STATUS_FILE_ERROR;
1789 message_id = talloc_asprintf (message_file,
1790 "notmuch-sha1-%s", sha1);
1794 /* Now that we have a message ID, we get a message object,
1795 * (which may or may not reference an existing document in the
1798 message = _notmuch_message_create_for_message_id (notmuch,
1802 talloc_free (message_id);
1804 if (message == NULL) {
1805 ret = COERCE_STATUS (private_status,
1806 "Unexpected status value from _notmuch_message_create_for_message_id");
1810 _notmuch_message_add_filename (message, filename);
1812 /* Is this a newly created message object? */
1813 if (private_status == NOTMUCH_PRIVATE_STATUS_NO_DOCUMENT_FOUND) {
1814 _notmuch_message_add_term (message, "type", "mail");
1816 ret = _notmuch_database_link_message (notmuch, message,
1821 date = notmuch_message_file_get_header (message_file, "date");
1822 _notmuch_message_set_header_values (message, date, from, subject);
1824 ret = _notmuch_message_index_file (message, filename);
1828 ret = NOTMUCH_STATUS_DUPLICATE_MESSAGE_ID;
1831 _notmuch_message_sync (message);
1832 } catch (const Xapian::Error &error) {
1833 fprintf (stderr, "A Xapian exception occurred adding message: %s.\n",
1834 error.get_msg().c_str());
1835 notmuch->exception_reported = TRUE;
1836 ret = NOTMUCH_STATUS_XAPIAN_EXCEPTION;
1842 if ((ret == NOTMUCH_STATUS_SUCCESS ||
1843 ret == NOTMUCH_STATUS_DUPLICATE_MESSAGE_ID) && message_ret)
1844 *message_ret = message;
1846 notmuch_message_destroy (message);
1850 notmuch_message_file_close (message_file);
1852 ret2 = notmuch_database_end_atomic (notmuch);
1853 if ((ret == NOTMUCH_STATUS_SUCCESS ||
1854 ret == NOTMUCH_STATUS_DUPLICATE_MESSAGE_ID) &&
1855 ret2 != NOTMUCH_STATUS_SUCCESS)
1862 notmuch_database_remove_message (notmuch_database_t *notmuch,
1863 const char *filename)
1865 notmuch_status_t status;
1866 notmuch_message_t *message;
1868 status = notmuch_database_find_message_by_filename (notmuch, filename,
1871 if (status == NOTMUCH_STATUS_SUCCESS && message) {
1872 status = _notmuch_message_remove_filename (message, filename);
1873 if (status == NOTMUCH_STATUS_SUCCESS)
1874 _notmuch_message_delete (message);
1875 else if (status == NOTMUCH_STATUS_DUPLICATE_MESSAGE_ID)
1876 _notmuch_message_sync (message);
1878 notmuch_message_destroy (message);
1885 notmuch_database_find_message_by_filename (notmuch_database_t *notmuch,
1886 const char *filename,
1887 notmuch_message_t **message_ret)
1890 const char *prefix = _find_prefix ("file-direntry");
1891 char *direntry, *term;
1892 Xapian::PostingIterator i, end;
1893 notmuch_status_t status;
1895 if (message_ret == NULL)
1896 return NOTMUCH_STATUS_NULL_POINTER;
1898 /* return NULL on any failure */
1899 *message_ret = NULL;
1901 local = talloc_new (notmuch);
1904 status = _notmuch_database_filename_to_direntry (
1905 local, notmuch, filename, NOTMUCH_FIND_LOOKUP, &direntry);
1906 if (status || !direntry)
1909 term = talloc_asprintf (local, "%s%s", prefix, direntry);
1911 find_doc_ids_for_term (notmuch, term, &i, &end);
1914 notmuch_private_status_t private_status;
1916 *message_ret = _notmuch_message_create (notmuch, notmuch, *i,
1918 if (*message_ret == NULL)
1919 status = NOTMUCH_STATUS_OUT_OF_MEMORY;
1921 } catch (const Xapian::Error &error) {
1922 fprintf (stderr, "Error: A Xapian exception occurred finding message by filename: %s\n",
1923 error.get_msg().c_str());
1924 notmuch->exception_reported = TRUE;
1925 status = NOTMUCH_STATUS_XAPIAN_EXCEPTION;
1929 talloc_free (local);
1931 if (status && *message_ret) {
1932 notmuch_message_destroy (*message_ret);
1933 *message_ret = NULL;
1938 notmuch_string_list_t *
1939 _notmuch_database_get_terms_with_prefix (void *ctx, Xapian::TermIterator &i,
1940 Xapian::TermIterator &end,
1943 int prefix_len = strlen (prefix);
1944 notmuch_string_list_t *list;
1946 list = _notmuch_string_list_create (ctx);
1947 if (unlikely (list == NULL))
1950 for (i.skip_to (prefix); i != end; i++) {
1951 /* Terminate loop at first term without desired prefix. */
1952 if (strncmp ((*i).c_str (), prefix, prefix_len))
1955 _notmuch_string_list_append (list, (*i).c_str () + prefix_len);
1962 notmuch_database_get_all_tags (notmuch_database_t *db)
1964 Xapian::TermIterator i, end;
1965 notmuch_string_list_t *tags;
1968 i = db->xapian_db->allterms_begin();
1969 end = db->xapian_db->allterms_end();
1970 tags = _notmuch_database_get_terms_with_prefix (db, i, end,
1971 _find_prefix ("tag"));
1972 _notmuch_string_list_sort (tags);
1973 return _notmuch_tags_create (db, tags);
1974 } catch (const Xapian::Error &error) {
1975 fprintf (stderr, "A Xapian exception occurred getting tags: %s.\n",
1976 error.get_msg().c_str());
1977 db->exception_reported = TRUE;