1 /* message.cc - Results of message-based searches from a notmuch database
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 https://www.gnu.org/licenses/ .
18 * Author: Carl Worth <cworth@cworth.org>
21 #include "notmuch-private.h"
22 #include "database-private.h"
23 #include "message-private.h"
27 #include <gmime/gmime.h>
29 struct _notmuch_message {
30 notmuch_database_t *notmuch;
37 notmuch_string_list_t *tag_list;
38 notmuch_string_list_t *filename_term_list;
39 notmuch_string_list_t *filename_list;
42 notmuch_message_file_t *message_file;
43 notmuch_string_list_t *property_term_list;
44 notmuch_string_map_t *property_map;
45 notmuch_string_list_t *reference_list;
46 notmuch_message_list_t *replies;
48 /* For flags that are initialized on-demand, lazy_flags indicates
49 * if each flag has been initialized. */
50 unsigned long lazy_flags;
52 /* Message document modified since last sync */
55 /* last view of database the struct is synced with */
56 unsigned long last_view;
59 Xapian::termcount termpos;
62 #define ARRAY_SIZE(arr) (sizeof (arr) / sizeof (arr[0]))
64 struct maildir_flag_tag {
70 /* ASCII ordered table of Maildir flags and associated tags */
71 static const struct maildir_flag_tag flag2tag[] = {
72 { 'D', "draft", false },
73 { 'F', "flagged", false },
74 { 'P', "passed", false },
75 { 'R', "replied", false },
76 { 'S', "unread", true }
79 /* We end up having to call the destructor explicitly because we had
80 * to use "placement new" in order to initialize C++ objects within a
81 * block that we allocated with talloc. So C++ is making talloc
82 * slightly less simple to use, (we wouldn't need
83 * talloc_set_destructor at all otherwise).
86 _notmuch_message_destructor (notmuch_message_t *message)
88 message->doc.~Document ();
93 #define LOG_XAPIAN_EXCEPTION(message, error) _log_xapian_exception (__location__, message, error)
96 _log_xapian_exception (const char *where, notmuch_message_t *message, const Xapian::Error error)
98 notmuch_database_t *notmuch = notmuch_message_get_database (message);
100 _notmuch_database_log (notmuch,
101 "A Xapian exception occurred at %s: %s\n",
103 error.get_msg ().c_str ());
104 notmuch->exception_reported = true;
107 static notmuch_message_t *
108 _notmuch_message_create_for_document (const void *talloc_owner,
109 notmuch_database_t *notmuch,
111 Xapian::Document doc,
112 notmuch_private_status_t *status)
114 notmuch_message_t *message;
117 *status = NOTMUCH_PRIVATE_STATUS_SUCCESS;
119 message = talloc (talloc_owner, notmuch_message_t);
120 if (unlikely (message == NULL)) {
122 *status = NOTMUCH_PRIVATE_STATUS_OUT_OF_MEMORY;
126 message->notmuch = notmuch;
127 message->doc_id = doc_id;
131 message->lazy_flags = 0;
133 /* the message is initially not synchronized with Xapian */
134 message->last_view = 0;
136 /* Calculated after the thread structure is computed */
137 message->thread_depth = 0;
139 /* Each of these will be lazily created as needed. */
140 message->message_id = NULL;
141 message->thread_id = NULL;
142 message->in_reply_to = NULL;
143 message->tag_list = NULL;
144 message->filename_term_list = NULL;
145 message->filename_list = NULL;
146 message->maildir_flags = NULL;
147 message->message_file = NULL;
148 message->author = NULL;
149 message->property_term_list = NULL;
150 message->property_map = NULL;
151 message->reference_list = NULL;
153 message->replies = _notmuch_message_list_create (message);
154 if (unlikely (message->replies == NULL)) {
156 *status = NOTMUCH_PRIVATE_STATUS_OUT_OF_MEMORY;
160 /* This is C++'s creepy "placement new", which is really just an
161 * ugly way to call a constructor for a pre-allocated object. So
162 * it's really not an error to not be checking for OUT_OF_MEMORY
163 * here, since this "new" isn't actually allocating memory. This
164 * is language-design comedy of the wrong kind. */
166 new (&message->doc) Xapian::Document;
168 talloc_set_destructor (message, _notmuch_message_destructor);
171 message->termpos = 0;
172 message->modified = false;
177 /* Create a new notmuch_message_t object for an existing document in
180 * Here, 'talloc owner' is an optional talloc context to which the new
181 * message will belong. This allows for the caller to not bother
182 * calling notmuch_message_destroy on the message, and know that all
183 * memory will be reclaimed when 'talloc_owner' is freed. The caller
184 * still can call notmuch_message_destroy when finished with the
185 * message if desired.
187 * The 'talloc_owner' argument can also be NULL, in which case the
188 * caller *is* responsible for calling notmuch_message_destroy.
190 * If no document exists in the database with document ID of 'doc_id'
191 * then this function returns NULL and optionally sets *status to
192 * NOTMUCH_PRIVATE_STATUS_NO_DOCUMENT_FOUND.
194 * This function can also fail to due lack of available memory,
195 * returning NULL and optionally setting *status to
196 * NOTMUCH_PRIVATE_STATUS_OUT_OF_MEMORY.
198 * The caller can pass NULL for status if uninterested in
199 * distinguishing these two cases.
202 _notmuch_message_create (const void *talloc_owner,
203 notmuch_database_t *notmuch,
205 notmuch_private_status_t *status)
207 Xapian::Document doc;
210 doc = notmuch->xapian_db->get_document (doc_id);
211 } catch (const Xapian::DocNotFoundError &error) {
213 *status = NOTMUCH_PRIVATE_STATUS_NO_DOCUMENT_FOUND;
217 return _notmuch_message_create_for_document (talloc_owner, notmuch,
218 doc_id, doc, status);
221 /* Create a new notmuch_message_t object for a specific message ID,
222 * (which may or may not already exist in the database).
224 * The 'notmuch' database will be the talloc owner of the returned
227 * This function returns a valid notmuch_message_t whether or not
228 * there is already a document in the database with the given message
229 * ID. These two cases can be distinguished by the value of *status:
232 * NOTMUCH_PRIVATE_STATUS_SUCCESS:
234 * There is already a document with message ID 'message_id' in the
235 * database. The returned message can be used to query/modify the
236 * document. The message may be a ghost message.
238 * NOTMUCH_PRIVATE_STATUS_NO_DOCUMENT_FOUND:
240 * No document with 'message_id' exists in the database. The
241 * returned message contains a newly created document (not yet
242 * added to the database) and a document ID that is known not to
243 * exist in the database. This message is "blank"; that is, it
244 * contains only a message ID and no other metadata. The caller
245 * can modify the message, and a call to _notmuch_message_sync
246 * will add the document to the database.
248 * If an error occurs, this function will return NULL and *status
249 * will be set as appropriate. (The status pointer argument must
253 _notmuch_message_create_for_message_id (notmuch_database_t *notmuch,
254 const char *message_id,
255 notmuch_private_status_t *status_ret)
257 notmuch_message_t *message;
258 Xapian::Document doc;
262 *status_ret = (notmuch_private_status_t) notmuch_database_find_message (notmuch,
266 return talloc_steal (notmuch, message);
267 else if (*status_ret)
270 /* If the message ID is too long, substitute its sha1 instead. */
271 if (strlen (message_id) > NOTMUCH_MESSAGE_ID_MAX)
272 message_id = _notmuch_message_id_compressed (message, message_id);
274 term = talloc_asprintf (NULL, "%s%s",
275 _find_prefix ("id"), message_id);
277 *status_ret = NOTMUCH_PRIVATE_STATUS_OUT_OF_MEMORY;
281 if (_notmuch_database_mode (notmuch) == NOTMUCH_DATABASE_MODE_READ_ONLY)
282 INTERNAL_ERROR ("Failure to ensure database is writable.");
285 doc.add_term (term, 0);
288 doc.add_value (NOTMUCH_VALUE_MESSAGE_ID, message_id);
290 doc_id = _notmuch_database_generate_doc_id (notmuch);
291 } catch (const Xapian::Error &error) {
292 _notmuch_database_log (notmuch,
293 "A Xapian exception occurred creating message: %s\n",
294 error.get_msg ().c_str ());
295 notmuch->exception_reported = true;
296 *status_ret = NOTMUCH_PRIVATE_STATUS_XAPIAN_EXCEPTION;
300 message = _notmuch_message_create_for_document (notmuch, notmuch,
301 doc_id, doc, status_ret);
303 /* We want to inform the caller that we had to create a new
305 if (*status_ret == NOTMUCH_PRIVATE_STATUS_SUCCESS)
306 *status_ret = NOTMUCH_PRIVATE_STATUS_NO_DOCUMENT_FOUND;
312 _notmuch_message_get_term (notmuch_message_t *message,
313 Xapian::TermIterator &i, Xapian::TermIterator &end,
316 int prefix_len = strlen (prefix);
324 const std::string &term = *i;
326 if (strncmp (term.c_str (), prefix, prefix_len))
329 value = talloc_strdup (message, term.c_str () + prefix_len);
331 #if DEBUG_DATABASE_SANITY
334 if (i != end && strncmp ((*i).c_str (), prefix, prefix_len) == 0) {
335 INTERNAL_ERROR ("Mail (doc_id: %d) has duplicate %s terms: %s and %s\n",
336 message->doc_id, prefix, value,
337 (*i).c_str () + prefix_len);
345 _notmuch_message_ensure_metadata (notmuch_message_t *message, void *field)
347 Xapian::TermIterator i, end;
349 if (field && (message->last_view >= message->notmuch->view))
352 const char *thread_prefix = _find_prefix ("thread"),
353 *tag_prefix = _find_prefix ("tag"),
354 *id_prefix = _find_prefix ("id"),
355 *type_prefix = _find_prefix ("type"),
356 *filename_prefix = _find_prefix ("file-direntry"),
357 *property_prefix = _find_prefix ("property"),
358 *reference_prefix = _find_prefix ("reference"),
359 *replyto_prefix = _find_prefix ("replyto");
361 /* We do this all in a single pass because Xapian decompresses the
362 * term list every time you iterate over it. Thus, while this is
363 * slightly more costly than looking up individual fields if only
364 * one field of the message object is actually used, it's a huge
365 * win as more fields are used. */
366 for (int count = 0; count < 3; count++) {
368 i = message->doc.termlist_begin ();
369 end = message->doc.termlist_end ();
372 if (! message->thread_id)
374 _notmuch_message_get_term (message, i, end, thread_prefix);
377 assert (strcmp (thread_prefix, tag_prefix) < 0);
378 if (! message->tag_list) {
380 _notmuch_database_get_terms_with_prefix (message, i, end,
382 _notmuch_string_list_sort (message->tag_list);
386 assert (strcmp (tag_prefix, id_prefix) < 0);
387 if (! message->message_id)
388 message->message_id =
389 _notmuch_message_get_term (message, i, end, id_prefix);
391 /* Get document type */
392 assert (strcmp (id_prefix, type_prefix) < 0);
393 if (! NOTMUCH_TEST_BIT (message->lazy_flags, NOTMUCH_MESSAGE_FLAG_GHOST)) {
394 i.skip_to (type_prefix);
395 /* "T" is the prefix "type" fields. See
396 * BOOLEAN_PREFIX_INTERNAL. */
398 NOTMUCH_CLEAR_BIT (&message->flags, NOTMUCH_MESSAGE_FLAG_GHOST);
399 else if (*i == "Tghost")
400 NOTMUCH_SET_BIT (&message->flags, NOTMUCH_MESSAGE_FLAG_GHOST);
402 INTERNAL_ERROR ("Message without type term");
403 NOTMUCH_SET_BIT (&message->lazy_flags, NOTMUCH_MESSAGE_FLAG_GHOST);
406 /* Get filename list. Here we get only the terms. We lazily
407 * expand them to full file names when needed in
408 * _notmuch_message_ensure_filename_list. */
409 assert (strcmp (type_prefix, filename_prefix) < 0);
410 if (! message->filename_term_list && ! message->filename_list)
411 message->filename_term_list =
412 _notmuch_database_get_terms_with_prefix (message, i, end,
416 /* Get property terms. Mimic the setup with filenames above */
417 assert (strcmp (filename_prefix, property_prefix) < 0);
418 if (! message->property_map && ! message->property_term_list)
419 message->property_term_list =
420 _notmuch_database_get_terms_with_prefix (message, i, end,
424 assert (strcmp (property_prefix, reference_prefix) < 0);
425 if (! message->reference_list) {
426 message->reference_list =
427 _notmuch_database_get_terms_with_prefix (message, i, end,
432 assert (strcmp (property_prefix, replyto_prefix) < 0);
433 if (! message->in_reply_to)
434 message->in_reply_to =
435 _notmuch_message_get_term (message, i, end, replyto_prefix);
438 /* It's perfectly valid for a message to have no In-Reply-To
439 * header. For these cases, we return an empty string. */
440 if (! message->in_reply_to)
441 message->in_reply_to = talloc_strdup (message, "");
443 /* all the way without an exception */
445 } catch (const Xapian::DatabaseModifiedError &error) {
446 notmuch_status_t status = notmuch_database_reopen (message->notmuch,
447 NOTMUCH_DATABASE_MODE_READ_ONLY);
448 if (status != NOTMUCH_STATUS_SUCCESS)
449 INTERNAL_ERROR ("unhandled error from notmuch_database_reopen: %s\n",
450 notmuch_status_to_string (status));
453 message->last_view = message->notmuch->view;
457 _notmuch_message_invalidate_metadata (notmuch_message_t *message,
458 const char *prefix_name)
460 if (strcmp ("thread", prefix_name) == 0) {
461 talloc_free (message->thread_id);
462 message->thread_id = NULL;
465 if (strcmp ("tag", prefix_name) == 0) {
466 talloc_unlink (message, message->tag_list);
467 message->tag_list = NULL;
470 if (strcmp ("type", prefix_name) == 0) {
471 NOTMUCH_CLEAR_BIT (&message->flags, NOTMUCH_MESSAGE_FLAG_GHOST);
472 NOTMUCH_CLEAR_BIT (&message->lazy_flags, NOTMUCH_MESSAGE_FLAG_GHOST);
475 if (strcmp ("file-direntry", prefix_name) == 0) {
476 talloc_free (message->filename_term_list);
477 talloc_free (message->filename_list);
478 message->filename_term_list = message->filename_list = NULL;
481 if (strcmp ("property", prefix_name) == 0) {
483 if (message->property_term_list)
484 talloc_free (message->property_term_list);
485 message->property_term_list = NULL;
487 if (message->property_map)
488 talloc_unlink (message, message->property_map);
490 message->property_map = NULL;
493 if (strcmp ("replyto", prefix_name) == 0) {
494 talloc_free (message->in_reply_to);
495 message->in_reply_to = NULL;
500 _notmuch_message_get_doc_id (notmuch_message_t *message)
502 return message->doc_id;
506 notmuch_message_get_message_id (notmuch_message_t *message)
509 _notmuch_message_ensure_metadata (message, message->message_id);
510 } catch (const Xapian::Error &error) {
511 LOG_XAPIAN_EXCEPTION (message, error);
515 if (! message->message_id)
516 INTERNAL_ERROR ("Message with document ID of %u has no message ID.\n",
518 return message->message_id;
522 _notmuch_message_ensure_message_file (notmuch_message_t *message)
524 const char *filename;
526 if (message->message_file)
529 filename = notmuch_message_get_filename (message);
530 if (unlikely (filename == NULL))
533 message->message_file = _notmuch_message_file_open_ctx (
534 notmuch_message_get_database (message), message, filename);
538 notmuch_message_get_header (notmuch_message_t *message, const char *header)
540 Xapian::valueno slot = Xapian::BAD_VALUENO;
542 /* Fetch header from the appropriate xapian value field if
544 if (strcasecmp (header, "from") == 0)
545 slot = NOTMUCH_VALUE_FROM;
546 else if (strcasecmp (header, "subject") == 0)
547 slot = NOTMUCH_VALUE_SUBJECT;
548 else if (strcasecmp (header, "message-id") == 0)
549 slot = NOTMUCH_VALUE_MESSAGE_ID;
551 if (slot != Xapian::BAD_VALUENO) {
553 std::string value = message->doc.get_value (slot);
555 /* If we have NOTMUCH_FEATURE_FROM_SUBJECT_ID_VALUES, then
556 * empty values indicate empty headers. If we don't, then
557 * it could just mean we didn't record the header. */
558 if ((message->notmuch->features &
559 NOTMUCH_FEATURE_FROM_SUBJECT_ID_VALUES) ||
561 return talloc_strdup (message, value.c_str ());
563 } catch (Xapian::Error &error) {
564 LOG_XAPIAN_EXCEPTION (message, error);
569 /* Otherwise fall back to parsing the file */
570 _notmuch_message_ensure_message_file (message);
571 if (message->message_file == NULL)
574 return _notmuch_message_file_get_header (message->message_file, header);
577 /* Return the message ID from the In-Reply-To header of 'message'.
579 * Returns an empty string ("") if 'message' has no In-Reply-To
582 * Returns NULL if any error occurs.
585 _notmuch_message_get_in_reply_to (notmuch_message_t *message)
587 _notmuch_message_ensure_metadata (message, message->in_reply_to);
588 return message->in_reply_to;
592 notmuch_message_get_thread_id (notmuch_message_t *message)
595 _notmuch_message_ensure_metadata (message, message->thread_id);
596 } catch (Xapian::Error &error) {
597 LOG_XAPIAN_EXCEPTION (message, error);
600 if (! message->thread_id)
601 INTERNAL_ERROR ("Message with document ID of %u has no thread ID.\n",
603 return message->thread_id;
607 _notmuch_message_add_reply (notmuch_message_t *message,
608 notmuch_message_t *reply)
610 _notmuch_message_list_add_message (message->replies, reply);
614 _notmuch_message_get_thread_depth (notmuch_message_t *message)
616 return message->thread_depth;
620 _notmuch_message_label_depths (notmuch_message_t *message,
623 message->thread_depth = depth;
625 for (notmuch_messages_t *messages = _notmuch_messages_create (message->replies);
626 notmuch_messages_valid (messages);
627 notmuch_messages_move_to_next (messages)) {
628 notmuch_message_t *child = notmuch_messages_get (messages);
629 _notmuch_message_label_depths (child, depth + 1);
633 const notmuch_string_list_t *
634 _notmuch_message_get_references (notmuch_message_t *message)
636 _notmuch_message_ensure_metadata (message, message->reference_list);
637 return message->reference_list;
641 _cmpmsg (const void *pa, const void *pb)
643 notmuch_message_t **a = (notmuch_message_t **) pa;
644 notmuch_message_t **b = (notmuch_message_t **) pb;
645 time_t time_a = notmuch_message_get_date (*a);
646 time_t time_b = notmuch_message_get_date (*b);
648 if (time_a == time_b)
650 else if (time_a < time_b)
656 notmuch_message_list_t *
657 _notmuch_message_sort_subtrees (void *ctx, notmuch_message_list_t *list)
661 size_t capacity = 16;
666 void *local = talloc_new (NULL);
667 notmuch_message_list_t *new_list = _notmuch_message_list_create (ctx);
668 notmuch_message_t **message_array = talloc_zero_array (local, notmuch_message_t *, capacity);
670 for (notmuch_messages_t *messages = _notmuch_messages_create (list);
671 notmuch_messages_valid (messages);
672 notmuch_messages_move_to_next (messages)) {
673 notmuch_message_t *root = notmuch_messages_get (messages);
674 if (count >= capacity) {
676 message_array = talloc_realloc (local, message_array, notmuch_message_t *, capacity);
678 message_array[count++] = root;
679 root->replies = _notmuch_message_sort_subtrees (root, root->replies);
682 qsort (message_array, count, sizeof (notmuch_message_t *), _cmpmsg);
683 for (size_t i = 0; i < count; i++) {
684 _notmuch_message_list_add_message (new_list, message_array[i]);
693 notmuch_message_get_replies (notmuch_message_t *message)
695 return _notmuch_messages_create (message->replies);
699 _notmuch_message_remove_terms (notmuch_message_t *message, const char *prefix)
701 Xapian::TermIterator i;
702 size_t prefix_len = 0;
704 prefix_len = strlen (prefix);
707 i = message->doc.termlist_begin ();
710 /* Terminate loop when no terms remain with desired prefix. */
711 if (i == message->doc.termlist_end () ||
712 strncmp ((*i).c_str (), prefix, prefix_len))
716 message->doc.remove_term ((*i));
717 message->modified = true;
718 } catch (const Xapian::InvalidArgumentError) {
719 /* Ignore failure to remove non-existent term. */
725 /* Remove all terms generated by indexing, i.e. not tags or
726 * properties, along with any automatic tags*/
727 /* According to Xapian API docs, none of these calls throw
729 static notmuch_private_status_t
730 _notmuch_message_remove_indexed_terms (notmuch_message_t *message)
732 Xapian::TermIterator i;
735 id_prefix = _find_prefix ("id"),
736 property_prefix = _find_prefix ("property"),
737 tag_prefix = _find_prefix ("tag"),
738 type_prefix = _find_prefix ("type");
740 /* Make sure we have the data to restore to Xapian*/
741 _notmuch_message_ensure_metadata (message, NULL);
743 /* Empirically, it turns out to be faster to remove all the terms,
744 * and add back the ones we want. */
745 message->doc.clear_terms ();
746 message->modified = true;
748 /* still a mail message */
749 message->doc.add_term (type_prefix + "mail");
751 /* Put back message-id */
752 message->doc.add_term (id_prefix + message->message_id);
754 /* Put back non-automatic tags */
755 for (notmuch_tags_t *tags = notmuch_message_get_tags (message);
756 notmuch_tags_valid (tags);
757 notmuch_tags_move_to_next (tags)) {
759 const char *tag = notmuch_tags_get (tags);
761 if (strcmp (tag, "encrypted") != 0 &&
762 strcmp (tag, "signed") != 0 &&
763 strcmp (tag, "attachment") != 0) {
764 std::string term = tag_prefix + tag;
765 message->doc.add_term (term);
769 /* Put back properties */
770 notmuch_message_properties_t *list;
772 for (list = notmuch_message_get_properties (message, "", false);
773 notmuch_message_properties_valid (list); notmuch_message_properties_move_to_next (list)) {
774 std::string term = property_prefix +
775 notmuch_message_properties_key (list) + "=" +
776 notmuch_message_properties_value (list);
778 message->doc.add_term (term);
781 notmuch_message_properties_destroy (list);
783 return NOTMUCH_PRIVATE_STATUS_SUCCESS;
787 /* Return true if p points at "new" or "cur". */
789 is_maildir (const char *p)
791 return strcmp (p, "cur") == 0 || strcmp (p, "new") == 0;
794 /* Add "folder:" term for directory. */
795 static notmuch_status_t
796 _notmuch_message_add_folder_terms (notmuch_message_t *message,
797 const char *directory)
801 folder = talloc_strdup (NULL, directory);
803 return NOTMUCH_STATUS_OUT_OF_MEMORY;
806 * If the message file is in a leaf directory named "new" or
807 * "cur", presume maildir and index the parent directory. Thus a
808 * "folder:" prefix search matches messages in the specified
809 * maildir folder, i.e. in the specified directory and its "new"
810 * and "cur" subdirectories.
812 * Note that this means the "folder:" prefix can't be used for
813 * distinguishing between message files in "new" or "cur". The
814 * "path:" prefix needs to be used for that.
816 * Note the deliberate difference to _filename_is_in_maildir(). We
817 * don't want to index different things depending on the existence
818 * or non-existence of all maildir sibling directories "new",
819 * "cur", and "tmp". Doing so would be surprising, and difficult
820 * for the user to fix in case all subdirectories were not in
821 * place during indexing.
823 last = strrchr (folder, '/');
825 if (is_maildir (last + 1))
827 } else if (is_maildir (folder)) {
831 if (notmuch_status_t status = COERCE_STATUS (_notmuch_message_add_term (message, "folder",
833 "adding folder term"))
836 talloc_free (folder);
838 message->modified = true;
839 return NOTMUCH_STATUS_SUCCESS;
842 #define RECURSIVE_SUFFIX "/**"
844 /* Add "path:" terms for directory. */
845 static notmuch_status_t
846 _notmuch_message_add_path_terms (notmuch_message_t *message,
847 const char *directory)
849 notmuch_status_t status;
851 /* Add exact "path:" term. */
852 status = COERCE_STATUS (_notmuch_message_add_term (message, "path", directory),
857 if (strlen (directory)) {
860 path = talloc_asprintf (NULL, "%s%s", directory, RECURSIVE_SUFFIX);
862 return NOTMUCH_STATUS_OUT_OF_MEMORY;
864 /* Add recursive "path:" terms for directory and all parents. */
865 for (p = path + strlen (path) - 1; p > path; p--) {
867 strcpy (p, RECURSIVE_SUFFIX);
868 status = COERCE_STATUS (_notmuch_message_add_term (message, "path", path),
878 /* Recursive all-matching path:** for consistency. */
879 status = COERCE_STATUS (_notmuch_message_add_term (message, "path", "**"),
884 return NOTMUCH_STATUS_SUCCESS;
887 /* Add directory based terms for all filenames of the message. */
888 static notmuch_status_t
889 _notmuch_message_add_directory_terms (void *ctx, notmuch_message_t *message)
891 const char *direntry_prefix = _find_prefix ("file-direntry");
892 int direntry_prefix_len = strlen (direntry_prefix);
893 Xapian::TermIterator i = message->doc.termlist_begin ();
894 notmuch_status_t status = NOTMUCH_STATUS_SUCCESS;
896 for (i.skip_to (direntry_prefix); i != message->doc.termlist_end (); i++) {
897 unsigned int directory_id;
898 const char *direntry, *directory;
900 const std::string &term = *i;
902 /* Terminate loop at first term without desired prefix. */
903 if (strncmp (term.c_str (), direntry_prefix, direntry_prefix_len))
906 /* Indicate that there are filenames remaining. */
907 status = NOTMUCH_STATUS_DUPLICATE_MESSAGE_ID;
909 direntry = term.c_str ();
910 direntry += direntry_prefix_len;
912 directory_id = strtol (direntry, &colon, 10);
914 if (colon == NULL || *colon != ':')
915 INTERNAL_ERROR ("malformed direntry");
917 directory = _notmuch_database_get_directory_path (ctx,
921 _notmuch_message_add_folder_terms (message, directory);
922 _notmuch_message_add_path_terms (message, directory);
928 /* Add an additional 'filename' for 'message'.
930 * This change will not be reflected in the database until the next
931 * call to _notmuch_message_sync. */
933 _notmuch_message_add_filename (notmuch_message_t *message,
934 const char *filename)
936 const char *relative, *directory;
937 notmuch_status_t status;
938 void *local = talloc_new (message);
941 if (filename == NULL)
942 INTERNAL_ERROR ("Message filename cannot be NULL.");
944 if (! (message->notmuch->features & NOTMUCH_FEATURE_FILE_TERMS) ||
945 ! (message->notmuch->features & NOTMUCH_FEATURE_BOOL_FOLDER))
946 return NOTMUCH_STATUS_UPGRADE_REQUIRED;
948 relative = _notmuch_database_relative_path (message->notmuch, filename);
950 status = _notmuch_database_split_path (local, relative, &directory, NULL);
954 status = _notmuch_database_filename_to_direntry (
955 local, message->notmuch, filename, NOTMUCH_FIND_CREATE, &direntry);
959 /* New file-direntry allows navigating to this message with
960 * notmuch_directory_get_child_files() . */
961 status = COERCE_STATUS (_notmuch_message_add_term (message, "file-direntry", direntry),
962 "adding file-direntry term");
966 _notmuch_message_add_folder_terms (message, directory);
967 _notmuch_message_add_path_terms (message, directory);
971 return NOTMUCH_STATUS_SUCCESS;
974 /* Remove a particular 'filename' from 'message'.
976 * This change will not be reflected in the database until the next
977 * call to _notmuch_message_sync.
979 * If this message still has other filenames, returns
980 * NOTMUCH_STATUS_DUPLICATE_MESSAGE_ID.
982 * Note: This function does not remove a document from the database,
983 * even if the specified filename is the only filename for this
984 * message. For that functionality, see
985 * notmuch_database_remove_message. */
987 _notmuch_message_remove_filename (notmuch_message_t *message,
988 const char *filename)
990 void *local = talloc_new (message);
992 notmuch_private_status_t private_status;
993 notmuch_status_t status;
995 if (! (message->notmuch->features & NOTMUCH_FEATURE_FILE_TERMS) ||
996 ! (message->notmuch->features & NOTMUCH_FEATURE_BOOL_FOLDER))
997 return NOTMUCH_STATUS_UPGRADE_REQUIRED;
999 status = _notmuch_database_filename_to_direntry (
1000 local, message->notmuch, filename, NOTMUCH_FIND_LOOKUP, &direntry);
1001 if (status || ! direntry)
1004 /* Unlink this file from its parent directory. */
1005 private_status = _notmuch_message_remove_term (message,
1006 "file-direntry", direntry);
1007 status = COERCE_STATUS (private_status,
1008 "Unexpected error from _notmuch_message_remove_term");
1012 /* Re-synchronize "folder:" and "path:" terms for this message. */
1014 /* Remove all "folder:" terms. */
1015 _notmuch_message_remove_terms (message, _find_prefix ("folder"));
1017 /* Remove all "path:" terms. */
1018 _notmuch_message_remove_terms (message, _find_prefix ("path"));
1020 /* Add back terms for all remaining filenames of the message. */
1021 status = _notmuch_message_add_directory_terms (local, message);
1023 talloc_free (local);
1028 /* Upgrade the "folder:" prefix from V1 to V2. */
1029 #define FOLDER_PREFIX_V1 "XFOLDER"
1030 #define ZFOLDER_PREFIX_V1 "Z" FOLDER_PREFIX_V1
1032 _notmuch_message_upgrade_folder (notmuch_message_t *message)
1034 /* Remove all old "folder:" terms. */
1035 _notmuch_message_remove_terms (message, FOLDER_PREFIX_V1);
1037 /* Remove all old "folder:" stemmed terms. */
1038 _notmuch_message_remove_terms (message, ZFOLDER_PREFIX_V1);
1040 /* Add new boolean "folder:" and "path:" terms. */
1041 _notmuch_message_add_directory_terms (message, message);
1045 _notmuch_message_talloc_copy_data (notmuch_message_t *message)
1047 return talloc_strdup (message, message->doc.get_data ().c_str ());
1051 _notmuch_message_clear_data (notmuch_message_t *message)
1053 message->doc.set_data ("");
1054 message->modified = true;
1058 _notmuch_message_ensure_filename_list (notmuch_message_t *message)
1060 notmuch_string_node_t *node;
1062 if (message->filename_list)
1065 _notmuch_message_ensure_metadata (message, message->filename_term_list);
1067 message->filename_list = _notmuch_string_list_create (message);
1068 node = message->filename_term_list->head;
1071 /* A message document created by an old version of notmuch
1072 * (prior to rename support) will have the filename in the
1073 * data of the document rather than as a file-direntry term.
1075 * It would be nice to do the upgrade of the document directly
1076 * here, but the database is likely open in read-only mode. */
1078 std::string datastr = message->doc.get_data ();
1079 const char *data = datastr.c_str ();
1082 INTERNAL_ERROR ("message with no filename");
1084 _notmuch_string_list_append (message->filename_list, data);
1089 for (; node; node = node->next) {
1090 void *local = talloc_new (message);
1091 const char *db_path, *directory, *basename, *filename;
1092 char *colon, *direntry = NULL;
1093 unsigned int directory_id;
1095 direntry = node->string;
1097 directory_id = strtol (direntry, &colon, 10);
1099 if (colon == NULL || *colon != ':')
1100 INTERNAL_ERROR ("malformed direntry");
1102 basename = colon + 1;
1106 db_path = notmuch_config_get (message->notmuch, NOTMUCH_CONFIG_MAIL_ROOT);
1108 directory = _notmuch_database_get_directory_path (local,
1112 if (strlen (directory))
1113 filename = talloc_asprintf (message, "%s/%s/%s",
1114 db_path, directory, basename);
1116 filename = talloc_asprintf (message, "%s/%s",
1119 _notmuch_string_list_append (message->filename_list, filename);
1121 talloc_free (local);
1124 talloc_free (message->filename_term_list);
1125 message->filename_term_list = NULL;
1129 notmuch_message_get_filename (notmuch_message_t *message)
1132 _notmuch_message_ensure_filename_list (message);
1133 } catch (Xapian::Error &error) {
1134 LOG_XAPIAN_EXCEPTION (message, error);
1138 if (message->filename_list == NULL)
1141 if (message->filename_list->head == NULL ||
1142 message->filename_list->head->string == NULL) {
1143 INTERNAL_ERROR ("message with no filename");
1146 return message->filename_list->head->string;
1149 notmuch_filenames_t *
1150 notmuch_message_get_filenames (notmuch_message_t *message)
1153 _notmuch_message_ensure_filename_list (message);
1154 } catch (Xapian::Error &error) {
1155 LOG_XAPIAN_EXCEPTION (message, error);
1159 return _notmuch_filenames_create (message, message->filename_list);
1163 notmuch_message_count_files (notmuch_message_t *message)
1166 _notmuch_message_ensure_filename_list (message);
1167 } catch (Xapian::Error &error) {
1168 LOG_XAPIAN_EXCEPTION (message, error);
1172 return _notmuch_string_list_length (message->filename_list);
1176 notmuch_message_get_flag_st (notmuch_message_t *message,
1177 notmuch_message_flag_t flag,
1178 notmuch_bool_t *is_set)
1181 return NOTMUCH_STATUS_NULL_POINTER;
1184 if (flag == NOTMUCH_MESSAGE_FLAG_GHOST &&
1185 ! NOTMUCH_TEST_BIT (message->lazy_flags, flag))
1186 _notmuch_message_ensure_metadata (message, NULL);
1187 } catch (Xapian::Error &error) {
1188 LOG_XAPIAN_EXCEPTION (message, error);
1189 return NOTMUCH_STATUS_XAPIAN_EXCEPTION;
1192 *is_set = NOTMUCH_TEST_BIT (message->flags, flag);
1193 return NOTMUCH_STATUS_SUCCESS;
1197 notmuch_message_get_flag (notmuch_message_t *message,
1198 notmuch_message_flag_t flag)
1200 notmuch_bool_t is_set;
1201 notmuch_status_t status;
1203 status = notmuch_message_get_flag_st (message, flag, &is_set);
1212 notmuch_message_set_flag (notmuch_message_t *message,
1213 notmuch_message_flag_t flag, notmuch_bool_t enable)
1216 NOTMUCH_SET_BIT (&message->flags, flag);
1218 NOTMUCH_CLEAR_BIT (&message->flags, flag);
1219 NOTMUCH_SET_BIT (&message->lazy_flags, flag);
1223 notmuch_message_get_date (notmuch_message_t *message)
1228 value = message->doc.get_value (NOTMUCH_VALUE_TIMESTAMP);
1229 } catch (Xapian::Error &error) {
1230 LOG_XAPIAN_EXCEPTION (message, error);
1235 /* sortable_unserialise is undefined on empty string */
1237 return Xapian::sortable_unserialise (value);
1241 notmuch_message_get_tags (notmuch_message_t *message)
1243 notmuch_tags_t *tags;
1246 _notmuch_message_ensure_metadata (message, message->tag_list);
1247 } catch (Xapian::Error &error) {
1248 LOG_XAPIAN_EXCEPTION (message, error);
1252 tags = _notmuch_tags_create (message, message->tag_list);
1253 /* _notmuch_tags_create steals the reference to the tag_list, but
1254 * in this case it's still used by the message, so we add an
1255 * *additional* talloc reference to the list. As a result, it's
1256 * possible to modify the message tags (which talloc_unlink's the
1257 * current list from the message) while still iterating because
1258 * the iterator will keep the current list alive. */
1259 if (! talloc_reference (message, message->tag_list))
1266 _notmuch_message_get_author (notmuch_message_t *message)
1268 return message->author;
1272 _notmuch_message_set_author (notmuch_message_t *message,
1275 if (message->author)
1276 talloc_free (message->author);
1277 message->author = talloc_strdup (message, author);
1282 _notmuch_message_set_header_values (notmuch_message_t *message,
1285 const char *subject)
1289 /* GMime really doesn't want to see a NULL date, so protect its
1291 if (date == NULL || *date == '\0') {
1294 time_value = g_mime_utils_header_decode_date_unix (date);
1296 * Workaround for https://bugzilla.gnome.org/show_bug.cgi?id=779923
1302 message->doc.add_value (NOTMUCH_VALUE_TIMESTAMP,
1303 Xapian::sortable_serialise (time_value));
1304 message->doc.add_value (NOTMUCH_VALUE_FROM, from);
1305 message->doc.add_value (NOTMUCH_VALUE_SUBJECT, subject);
1306 message->modified = true;
1310 _notmuch_message_update_subject (notmuch_message_t *message,
1311 const char *subject)
1313 message->doc.add_value (NOTMUCH_VALUE_SUBJECT, subject);
1314 message->modified = true;
1317 /* Upgrade a message to support NOTMUCH_FEATURE_LAST_MOD. The caller
1318 * must call _notmuch_message_sync. */
1320 _notmuch_message_upgrade_last_mod (notmuch_message_t *message)
1322 /* _notmuch_message_sync will update the last modification
1323 * revision; we just have to ask it to. */
1324 message->modified = true;
1327 /* Synchronize changes made to message->doc out into the database. */
1329 _notmuch_message_sync (notmuch_message_t *message)
1331 if (_notmuch_database_mode (message->notmuch) == NOTMUCH_DATABASE_MODE_READ_ONLY)
1334 if (! message->modified)
1337 /* Update the last modification of this message. */
1338 if (message->notmuch->features & NOTMUCH_FEATURE_LAST_MOD)
1339 /* sortable_serialise gives a reasonably compact encoding,
1340 * which directly translates to reduced IO when scanning the
1341 * value stream. Since it's built for doubles, we only get 53
1342 * effective bits, but that's still enough for the database to
1343 * last a few centuries at 1 million revisions per second. */
1344 message->doc.add_value (NOTMUCH_VALUE_LAST_MOD,
1345 Xapian::sortable_serialise (
1346 _notmuch_database_new_revision (
1347 message->notmuch)));
1349 message->notmuch->writable_xapian_db->
1350 replace_document (message->doc_id, message->doc);
1351 message->modified = false;
1354 /* Delete a message document from the database, leaving a ghost
1355 * message in its place */
1357 _notmuch_message_delete (notmuch_message_t *message)
1359 notmuch_status_t status;
1360 const char *mid, *tid;
1361 notmuch_message_t *ghost;
1362 notmuch_private_status_t private_status;
1363 notmuch_database_t *notmuch;
1364 unsigned int count = 0;
1367 mid = notmuch_message_get_message_id (message);
1368 tid = notmuch_message_get_thread_id (message);
1369 notmuch = message->notmuch;
1371 status = _notmuch_database_ensure_writable (message->notmuch);
1375 message->notmuch->writable_xapian_db->delete_document (message->doc_id);
1377 /* if this was a ghost to begin with, we are done */
1378 private_status = _notmuch_message_has_term (message, "type", "ghost", &is_ghost);
1380 return COERCE_STATUS (private_status,
1381 "Error trying to determine whether message was a ghost");
1383 return NOTMUCH_STATUS_SUCCESS;
1385 /* look for a non-ghost message in the same thread */
1387 Xapian::PostingIterator thread_doc, thread_doc_end;
1388 Xapian::PostingIterator mail_doc, mail_doc_end;
1390 _notmuch_database_find_doc_ids (message->notmuch, "thread", tid, &thread_doc,
1392 _notmuch_database_find_doc_ids (message->notmuch, "type", "mail", &mail_doc, &mail_doc_end);
1394 while (count == 0 &&
1395 thread_doc != thread_doc_end &&
1396 mail_doc != mail_doc_end) {
1397 thread_doc.skip_to (*mail_doc);
1398 if (thread_doc != thread_doc_end) {
1399 if (*thread_doc == *mail_doc) {
1402 mail_doc.skip_to (*thread_doc);
1403 if (mail_doc != mail_doc_end && *thread_doc == *mail_doc)
1408 } catch (Xapian::Error &error) {
1409 LOG_XAPIAN_EXCEPTION (message, error);
1410 return NOTMUCH_STATUS_XAPIAN_EXCEPTION;
1413 /* reintroduce a ghost in its place because there are still
1414 * other active messages in this thread: */
1415 ghost = _notmuch_message_create_for_message_id (notmuch, mid, &private_status);
1416 if (private_status == NOTMUCH_PRIVATE_STATUS_NO_DOCUMENT_FOUND) {
1417 private_status = _notmuch_message_initialize_ghost (ghost, tid);
1418 if (! private_status)
1419 _notmuch_message_sync (ghost);
1420 } else if (private_status == NOTMUCH_PRIVATE_STATUS_SUCCESS) {
1421 /* this is deeply weird, and we should not have gotten
1422 * into this state. is there a better error message to
1424 status = NOTMUCH_STATUS_DUPLICATE_MESSAGE_ID;
1427 notmuch_message_destroy (ghost);
1428 status = COERCE_STATUS (private_status, "Error converting to ghost message");
1430 /* the thread now contains only ghosts: delete them */
1432 Xapian::PostingIterator doc, doc_end;
1434 _notmuch_database_find_doc_ids (message->notmuch, "thread", tid, &doc, &doc_end);
1436 for (; doc != doc_end; doc++) {
1437 message->notmuch->writable_xapian_db->delete_document (*doc);
1439 } catch (Xapian::Error &error) {
1440 LOG_XAPIAN_EXCEPTION (message, error);
1441 return NOTMUCH_STATUS_XAPIAN_EXCEPTION;
1448 /* Transform a blank message into a ghost message. The caller must
1449 * _notmuch_message_sync the message. */
1450 notmuch_private_status_t
1451 _notmuch_message_initialize_ghost (notmuch_message_t *message,
1452 const char *thread_id)
1454 notmuch_private_status_t status;
1456 status = _notmuch_message_add_term (message, "type", "ghost");
1459 status = _notmuch_message_add_term (message, "thread", thread_id);
1463 return NOTMUCH_PRIVATE_STATUS_SUCCESS;
1466 /* Ensure that 'message' is not holding any file object open. Future
1467 * calls to various functions will still automatically open the
1468 * message file as needed.
1471 _notmuch_message_close (notmuch_message_t *message)
1473 if (message->message_file) {
1474 _notmuch_message_file_close (message->message_file);
1475 message->message_file = NULL;
1479 /* Add a name:value term to 'message', (the actual term will be
1480 * encoded by prefixing the value with a short prefix). See
1481 * NORMAL_PREFIX and BOOLEAN_PREFIX arrays for the mapping of term
1482 * names to prefix values.
1484 * This change will not be reflected in the database until the next
1485 * call to _notmuch_message_sync. */
1486 NODISCARD notmuch_private_status_t
1487 _notmuch_message_add_term (notmuch_message_t *message,
1488 const char *prefix_name,
1493 notmuch_private_status_t status = NOTMUCH_PRIVATE_STATUS_SUCCESS;
1496 return NOTMUCH_PRIVATE_STATUS_NULL_POINTER;
1498 term = talloc_asprintf (message, "%s%s",
1499 _find_prefix (prefix_name), value);
1500 if (strlen (term) > NOTMUCH_TERM_MAX) {
1501 status = NOTMUCH_PRIVATE_STATUS_TERM_TOO_LONG;
1506 message->doc.add_term (term, 0);
1507 message->modified = true;
1508 _notmuch_message_invalidate_metadata (message, prefix_name);
1509 } catch (Xapian::Error &error) {
1510 LOG_XAPIAN_EXCEPTION (message, error);
1511 status = NOTMUCH_PRIVATE_STATUS_XAPIAN_EXCEPTION;
1519 /* Parse 'text' and add a term to 'message' for each parsed word. Each
1520 * term will be added with the appropriate prefix if prefix_name is
1523 notmuch_private_status_t
1524 _notmuch_message_gen_terms (notmuch_message_t *message,
1525 const char *prefix_name,
1528 Xapian::TermGenerator *term_gen = message->notmuch->term_gen;
1531 return NOTMUCH_PRIVATE_STATUS_NULL_POINTER;
1533 term_gen->set_document (message->doc);
1534 term_gen->set_termpos (message->termpos);
1537 const char *prefix = _notmuch_database_prefix (message->notmuch, prefix_name);
1539 return NOTMUCH_PRIVATE_STATUS_BAD_PREFIX;
1541 _notmuch_message_invalidate_metadata (message, prefix_name);
1542 term_gen->index_text (text, 1, prefix);
1544 term_gen->index_text (text);
1547 /* Create a gap between this an the next terms so they don't
1548 * appear to be a phrase. */
1549 message->termpos = term_gen->get_termpos () + 100;
1551 return NOTMUCH_PRIVATE_STATUS_SUCCESS;
1554 /* Remove a name:value term from 'message', (the actual term will be
1555 * encoded by prefixing the value with a short prefix). See
1556 * NORMAL_PREFIX and BOOLEAN_PREFIX arrays for the mapping of term
1557 * names to prefix values.
1559 * This change will not be reflected in the database until the next
1560 * call to _notmuch_message_sync. */
1561 NODISCARD notmuch_private_status_t
1562 _notmuch_message_remove_term (notmuch_message_t *message,
1563 const char *prefix_name,
1569 return NOTMUCH_PRIVATE_STATUS_NULL_POINTER;
1571 term = talloc_asprintf (message, "%s%s",
1572 _find_prefix (prefix_name), value);
1574 if (strlen (term) > NOTMUCH_TERM_MAX)
1575 return NOTMUCH_PRIVATE_STATUS_TERM_TOO_LONG;
1578 message->doc.remove_term (term);
1579 message->modified = true;
1580 } catch (const Xapian::InvalidArgumentError &error) {
1581 /* We'll let the philosophers try to wrestle with the
1582 * question of whether failing to remove that which was not
1583 * there in the first place is failure. For us, we'll silently
1584 * consider it all good. */
1585 LOG_XAPIAN_EXCEPTION (message, error);
1590 _notmuch_message_invalidate_metadata (message, prefix_name);
1592 return NOTMUCH_PRIVATE_STATUS_SUCCESS;
1595 notmuch_private_status_t
1596 _notmuch_message_has_term (notmuch_message_t *message,
1597 const char *prefix_name,
1603 notmuch_private_status_t status = NOTMUCH_PRIVATE_STATUS_SUCCESS;
1606 return NOTMUCH_PRIVATE_STATUS_NULL_POINTER;
1608 term = talloc_asprintf (message, "%s%s",
1609 _find_prefix (prefix_name), value);
1611 if (strlen (term) > NOTMUCH_TERM_MAX)
1612 return NOTMUCH_PRIVATE_STATUS_TERM_TOO_LONG;
1615 /* Look for the exact term */
1616 Xapian::TermIterator i = message->doc.termlist_begin ();
1618 if (i != message->doc.termlist_end () &&
1619 ! strcmp ((*i).c_str (), term))
1621 } catch (Xapian::Error &error) {
1622 status = NOTMUCH_PRIVATE_STATUS_XAPIAN_EXCEPTION;
1631 notmuch_message_add_tag (notmuch_message_t *message, const char *tag)
1633 notmuch_private_status_t private_status;
1634 notmuch_status_t status;
1637 status = _notmuch_database_ensure_writable (message->notmuch);
1642 return NOTMUCH_STATUS_NULL_POINTER;
1644 if (strlen (tag) > NOTMUCH_TAG_MAX)
1645 return NOTMUCH_STATUS_TAG_TOO_LONG;
1647 private_status = _notmuch_message_add_term (message, "tag", tag);
1648 if (private_status) {
1649 return COERCE_STATUS (private_status,
1650 "_notmuch_message_remove_term return unexpected value: %d\n",
1654 if (! message->frozen)
1655 _notmuch_message_sync (message);
1657 } catch (Xapian::Error &error) {
1658 LOG_XAPIAN_EXCEPTION (message, error);
1659 return NOTMUCH_STATUS_XAPIAN_EXCEPTION;
1662 return NOTMUCH_STATUS_SUCCESS;
1666 notmuch_message_remove_tag (notmuch_message_t *message, const char *tag)
1668 notmuch_private_status_t private_status;
1669 notmuch_status_t status;
1672 status = _notmuch_database_ensure_writable (message->notmuch);
1677 return NOTMUCH_STATUS_NULL_POINTER;
1679 if (strlen (tag) > NOTMUCH_TAG_MAX)
1680 return NOTMUCH_STATUS_TAG_TOO_LONG;
1682 private_status = _notmuch_message_remove_term (message, "tag", tag);
1683 if (private_status) {
1684 return COERCE_STATUS (private_status,
1685 "_notmuch_message_remove_term return unexpected value: %d\n",
1689 if (! message->frozen)
1690 _notmuch_message_sync (message);
1691 } catch (Xapian::Error &error) {
1692 LOG_XAPIAN_EXCEPTION (message, error);
1693 return NOTMUCH_STATUS_XAPIAN_EXCEPTION;
1696 return NOTMUCH_STATUS_SUCCESS;
1699 /* Is the given filename within a maildir directory?
1701 * Specifically, is the final directory component of 'filename' either
1702 * "cur" or "new". If so, return a pointer to that final directory
1703 * component within 'filename'. If not, return NULL.
1705 * A non-NULL return value is guaranteed to be a valid string pointer
1706 * pointing to the characters "new/" or "cur/", (but not
1710 _filename_is_in_maildir (const char *filename)
1712 const char *slash, *dir = NULL;
1714 /* Find the last '/' separating directory from filename. */
1715 slash = strrchr (filename, '/');
1719 /* Jump back 4 characters to where the previous '/' will be if the
1720 * directory is named "cur" or "new". */
1721 if (slash - filename < 4)
1731 if (STRNCMP_LITERAL (dir, "cur/") == 0 ||
1732 STRNCMP_LITERAL (dir, "new/") == 0) {
1739 static notmuch_status_t
1740 _ensure_maildir_flags (notmuch_message_t *message, bool force)
1743 notmuch_filenames_t *filenames;
1744 const char *filename, *dir;
1745 char *combined_flags = talloc_strdup (message, "");
1746 int seen_maildir_info = 0;
1748 if (message->maildir_flags) {
1750 talloc_free (message->maildir_flags);
1751 message->maildir_flags = NULL;
1754 filenames = notmuch_message_get_filenames (message);
1756 return NOTMUCH_STATUS_XAPIAN_EXCEPTION;
1758 notmuch_filenames_valid (filenames);
1759 notmuch_filenames_move_to_next (filenames)) {
1760 filename = notmuch_filenames_get (filenames);
1761 dir = _filename_is_in_maildir (filename);
1766 flags = strstr (filename, ":2,");
1768 seen_maildir_info = 1;
1770 combined_flags = talloc_strdup_append (combined_flags, flags);
1771 } else if (STRNCMP_LITERAL (dir, "new/") == 0) {
1772 /* Messages are delivered to new/ with no "info" part, but
1773 * they effectively have default maildir flags. According
1774 * to the spec, we should ignore the info part for
1775 * messages in new/, but some MUAs (mutt) can set maildir
1776 * flags on messages in new/, so we're liberal in what we
1778 seen_maildir_info = 1;
1781 if (seen_maildir_info)
1782 message->maildir_flags = combined_flags;
1783 return NOTMUCH_STATUS_SUCCESS;
1787 notmuch_message_has_maildir_flag (notmuch_message_t *message, char flag)
1789 notmuch_status_t status;
1792 status = notmuch_message_has_maildir_flag_st (message, flag, &ret);
1800 notmuch_message_has_maildir_flag_st (notmuch_message_t *message,
1802 notmuch_bool_t *is_set)
1804 notmuch_status_t status;
1807 return NOTMUCH_STATUS_NULL_POINTER;
1809 status = _ensure_maildir_flags (message, false);
1813 *is_set = message->maildir_flags && (strchr (message->maildir_flags, flag) != NULL);
1814 return NOTMUCH_STATUS_SUCCESS;
1818 notmuch_message_maildir_flags_to_tags (notmuch_message_t *message)
1820 notmuch_status_t status;
1823 status = _ensure_maildir_flags (message, true);
1826 /* If none of the filenames have any maildir info field (not even
1827 * an empty info with no flags set) then there's no information to
1828 * go on, so do nothing. */
1829 if (! message->maildir_flags)
1830 return NOTMUCH_STATUS_SUCCESS;
1832 status = notmuch_message_freeze (message);
1836 for (i = 0; i < ARRAY_SIZE (flag2tag); i++) {
1837 if ((strchr (message->maildir_flags, flag2tag[i].flag) != NULL)
1839 flag2tag[i].inverse) {
1840 status = notmuch_message_add_tag (message, flag2tag[i].tag);
1842 status = notmuch_message_remove_tag (message, flag2tag[i].tag);
1847 status = notmuch_message_thaw (message);
1852 /* From the set of tags on 'message' and the flag2tag table, compute a
1853 * set of maildir-flag actions to be taken, (flags that should be
1854 * either set or cleared).
1856 * The result is returned as two talloced strings: to_set, and to_clear
1859 _get_maildir_flag_actions (notmuch_message_t *message,
1861 char **to_clear_ret)
1863 char *to_set, *to_clear;
1864 notmuch_tags_t *tags;
1868 to_set = talloc_strdup (message, "");
1869 to_clear = talloc_strdup (message, "");
1871 /* First, find flags for all set tags. */
1872 for (tags = notmuch_message_get_tags (message);
1873 notmuch_tags_valid (tags);
1874 notmuch_tags_move_to_next (tags)) {
1875 tag = notmuch_tags_get (tags);
1877 for (i = 0; i < ARRAY_SIZE (flag2tag); i++) {
1878 if (strcmp (tag, flag2tag[i].tag) == 0) {
1879 if (flag2tag[i].inverse)
1880 to_clear = talloc_asprintf_append (to_clear,
1884 to_set = talloc_asprintf_append (to_set,
1891 /* Then, find the flags for all tags not present. */
1892 for (i = 0; i < ARRAY_SIZE (flag2tag); i++) {
1893 if (flag2tag[i].inverse) {
1894 if (strchr (to_clear, flag2tag[i].flag) == NULL)
1895 to_set = talloc_asprintf_append (to_set, "%c", flag2tag[i].flag);
1897 if (strchr (to_set, flag2tag[i].flag) == NULL)
1898 to_clear = talloc_asprintf_append (to_clear, "%c", flag2tag[i].flag);
1902 *to_set_ret = to_set;
1903 *to_clear_ret = to_clear;
1906 /* Given 'filename' and a set of maildir flags to set and to clear,
1907 * compute the new maildir filename.
1909 * If the existing filename is in the directory "new", the new
1910 * filename will be in the directory "cur", except for the case when
1911 * no flags are changed and the existing filename does not contain
1912 * maildir info (starting with ",2:").
1914 * After a sequence of ":2," in the filename, any subsequent
1915 * single-character flags will be added or removed according to the
1916 * characters in flags_to_set and flags_to_clear. Any existing flags
1917 * not mentioned in either string will remain. The final list of flags
1918 * will be in ASCII order.
1920 * If the original flags seem invalid, (repeated characters or
1921 * non-ASCII ordering of flags), this function will return NULL
1922 * (meaning that renaming would not be safe and should not occur).
1925 _new_maildir_filename (void *ctx,
1926 const char *filename,
1927 const char *flags_to_set,
1928 const char *flags_to_clear)
1930 const char *info, *flags;
1931 unsigned int flag, last_flag;
1932 char *filename_new, *dir;
1934 int flags_in_map = 0;
1935 bool flags_changed = false;
1939 memset (flag_map, 0, sizeof (flag_map));
1941 info = strstr (filename, ":2,");
1944 info = filename + strlen (filename);
1946 /* Loop through existing flags in filename. */
1947 for (flags = info + 3, last_flag = 0;
1949 last_flag = flag, flags++) {
1952 /* Original flags not in ASCII order. Abort. */
1953 if (flag < last_flag)
1956 /* Non-ASCII flag. Abort. */
1957 if (flag > sizeof (flag_map) - 1)
1960 /* Repeated flag value. Abort. */
1969 /* Then set and clear our flags from tags. */
1970 for (flags = flags_to_set; *flags; flags++) {
1972 if (flag_map[flag] == 0) {
1975 flags_changed = true;
1979 for (flags = flags_to_clear; *flags; flags++) {
1981 if (flag_map[flag]) {
1984 flags_changed = true;
1988 /* Messages in new/ without maildir info can be kept in new/ if no
1989 * flags have changed. */
1990 dir = (char *) _filename_is_in_maildir (filename);
1991 if (dir && STRNCMP_LITERAL (dir, "new/") == 0 && ! *info && ! flags_changed)
1992 return talloc_strdup (ctx, filename);
1994 filename_new = (char *) talloc_size (ctx,
1996 strlen (":2,") + flags_in_map + 1);
1997 if (unlikely (filename_new == NULL))
2000 strncpy (filename_new, filename, info - filename);
2001 filename_new[info - filename] = '\0';
2003 strcat (filename_new, ":2,");
2005 s = filename_new + strlen (filename_new);
2006 for (i = 0; i < sizeof (flag_map); i++) {
2014 /* If message is in new/ move it under cur/. */
2015 dir = (char *) _filename_is_in_maildir (filename_new);
2016 if (dir && STRNCMP_LITERAL (dir, "new/") == 0)
2017 memcpy (dir, "cur/", 4);
2019 return filename_new;
2023 notmuch_message_tags_to_maildir_flags (notmuch_message_t *message)
2025 notmuch_filenames_t *filenames;
2026 const char *filename;
2028 char *to_set, *to_clear;
2029 notmuch_status_t status = NOTMUCH_STATUS_SUCCESS;
2031 _get_maildir_flag_actions (message, &to_set, &to_clear);
2033 for (filenames = notmuch_message_get_filenames (message);
2034 notmuch_filenames_valid (filenames);
2035 notmuch_filenames_move_to_next (filenames)) {
2036 filename = notmuch_filenames_get (filenames);
2038 if (! _filename_is_in_maildir (filename))
2041 filename_new = _new_maildir_filename (message, filename,
2043 if (filename_new == NULL)
2046 if (strcmp (filename, filename_new)) {
2048 notmuch_status_t new_status;
2050 err = rename (filename, filename_new);
2054 new_status = _notmuch_message_remove_filename (message,
2056 /* Hold on to only the first error. */
2057 if (! status && new_status
2058 && new_status != NOTMUCH_STATUS_DUPLICATE_MESSAGE_ID) {
2059 status = new_status;
2063 new_status = _notmuch_message_add_filename (message,
2065 /* Hold on to only the first error. */
2066 if (! status && new_status) {
2067 status = new_status;
2071 _notmuch_message_sync (message);
2074 talloc_free (filename_new);
2077 talloc_free (to_set);
2078 talloc_free (to_clear);
2084 notmuch_message_remove_all_tags (notmuch_message_t *message)
2086 notmuch_private_status_t private_status;
2087 notmuch_status_t status;
2088 notmuch_tags_t *tags;
2091 status = _notmuch_database_ensure_writable (message->notmuch);
2094 tags = notmuch_message_get_tags (message);
2096 return NOTMUCH_STATUS_XAPIAN_EXCEPTION;
2099 notmuch_tags_valid (tags);
2100 notmuch_tags_move_to_next (tags)) {
2101 tag = notmuch_tags_get (tags);
2103 private_status = _notmuch_message_remove_term (message, "tag", tag);
2104 if (private_status) {
2105 return COERCE_STATUS (private_status,
2106 "_notmuch_message_remove_term return unexpected value: %d\n",
2111 if (! message->frozen)
2112 _notmuch_message_sync (message);
2115 return NOTMUCH_STATUS_SUCCESS;
2119 notmuch_message_freeze (notmuch_message_t *message)
2121 notmuch_status_t status;
2123 status = _notmuch_database_ensure_writable (message->notmuch);
2129 return NOTMUCH_STATUS_SUCCESS;
2133 notmuch_message_thaw (notmuch_message_t *message)
2135 notmuch_status_t status;
2137 status = _notmuch_database_ensure_writable (message->notmuch);
2141 if (message->frozen > 0) {
2143 if (message->frozen == 0)
2144 _notmuch_message_sync (message);
2145 return NOTMUCH_STATUS_SUCCESS;
2147 return NOTMUCH_STATUS_UNBALANCED_FREEZE_THAW;
2152 notmuch_message_destroy (notmuch_message_t *message)
2154 talloc_free (message);
2157 notmuch_database_t *
2158 notmuch_message_get_database (const notmuch_message_t *message)
2160 return message->notmuch;
2164 _notmuch_message_ensure_property_map (notmuch_message_t *message)
2166 notmuch_string_node_t *node;
2168 if (message->property_map)
2171 _notmuch_message_ensure_metadata (message, message->property_term_list);
2173 message->property_map = _notmuch_string_map_create (message);
2175 for (node = message->property_term_list->head; node; node = node->next) {
2179 value = strchr (node->string, '=');
2181 INTERNAL_ERROR ("malformed property term");
2187 _notmuch_string_map_append (message->property_map, key, value);
2191 talloc_free (message->property_term_list);
2192 message->property_term_list = NULL;
2195 notmuch_string_map_t *
2196 _notmuch_message_property_map (notmuch_message_t *message)
2198 _notmuch_message_ensure_property_map (message);
2200 return message->property_map;
2204 _notmuch_message_frozen (notmuch_message_t *message)
2206 return message->frozen;
2210 notmuch_message_reindex (notmuch_message_t *message,
2211 notmuch_indexopts_t *indexopts)
2213 notmuch_database_t *notmuch = NULL;
2214 notmuch_status_t ret = NOTMUCH_STATUS_SUCCESS;
2215 notmuch_private_status_t private_status;
2216 notmuch_filenames_t *orig_filenames = NULL;
2217 const char *orig_thread_id = NULL;
2218 notmuch_message_file_t *message_file = NULL;
2222 if (message == NULL)
2223 return NOTMUCH_STATUS_NULL_POINTER;
2225 /* Save in case we need to delete message */
2226 orig_thread_id = notmuch_message_get_thread_id (message);
2227 if (! orig_thread_id) {
2228 /* the following is correct as long as there is only one reason
2229 * n_m_get_thread_id returns NULL
2231 return NOTMUCH_STATUS_XAPIAN_EXCEPTION;
2234 /* strdup it because the metadata may be invalidated */
2235 orig_thread_id = talloc_strdup (message, orig_thread_id);
2237 notmuch = notmuch_message_get_database (message);
2239 ret = _notmuch_database_ensure_writable (notmuch);
2243 orig_filenames = notmuch_message_get_filenames (message);
2245 private_status = _notmuch_message_remove_indexed_terms (message);
2246 if (private_status) {
2247 ret = COERCE_STATUS (private_status, "error removing terms");
2251 ret = notmuch_message_remove_all_properties_with_prefix (message, "index.");
2253 goto DONE; /* XXX TODO: distinguish from other error returns above? */
2254 if (indexopts && notmuch_indexopts_get_decrypt_policy (indexopts) == NOTMUCH_DECRYPT_FALSE) {
2255 ret = notmuch_message_remove_all_properties (message, "session-key");
2260 /* re-add the filenames with the associated indexopts */
2261 for (; notmuch_filenames_valid (orig_filenames);
2262 notmuch_filenames_move_to_next (orig_filenames)) {
2265 const char *from, *to, *subject;
2266 char *message_id = NULL;
2267 const char *thread_id = NULL;
2269 const char *filename = notmuch_filenames_get (orig_filenames);
2271 message_file = _notmuch_message_file_open (notmuch, filename);
2272 if (message_file == NULL)
2275 ret = _notmuch_message_file_get_headers (message_file,
2276 &from, &subject, &to, &date,
2281 /* XXX TODO: deal with changing message id? */
2283 _notmuch_message_add_filename (message, filename);
2285 ret = _notmuch_database_link_message_to_parents (notmuch, message,
2291 if (thread_id == NULL)
2292 thread_id = orig_thread_id;
2294 ret = COERCE_STATUS (_notmuch_message_add_term (message, "thread", thread_id),
2295 "adding thread term");
2299 /* Take header values only from first filename */
2301 _notmuch_message_set_header_values (message, date, from, subject);
2303 ret = _notmuch_message_index_file (message, indexopts, message_file);
2305 if (ret == NOTMUCH_STATUS_FILE_ERROR)
2311 _notmuch_message_file_close (message_file);
2312 message_file = NULL;
2315 /* put back thread id to help cleanup */
2316 ret = COERCE_STATUS (_notmuch_message_add_term (message, "thread", orig_thread_id),
2317 "adding thread term");
2321 ret = _notmuch_message_delete (message);
2323 _notmuch_message_sync (message);
2328 _notmuch_message_file_close (message_file);
2330 /* XXX TODO destroy orig_filenames? */