]> git.notmuchmail.org Git - notmuch/blob - lib/message.cc
lib: Move message ID compression to _notmuch_message_create_for_message_id
[notmuch] / lib / message.cc
1 /* message.cc - Results of message-based searches from a notmuch database
2  *
3  * Copyright © 2009 Carl Worth
4  *
5  * This program is free software: you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation, either version 3 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program.  If not, see http://www.gnu.org/licenses/ .
17  *
18  * Author: Carl Worth <cworth@cworth.org>
19  */
20
21 #include "notmuch-private.h"
22 #include "database-private.h"
23
24 #include <stdint.h>
25
26 #include <gmime/gmime.h>
27
28 struct visible _notmuch_message {
29     notmuch_database_t *notmuch;
30     Xapian::docid doc_id;
31     int frozen;
32     char *message_id;
33     char *thread_id;
34     char *in_reply_to;
35     notmuch_string_list_t *tag_list;
36     notmuch_string_list_t *filename_term_list;
37     notmuch_string_list_t *filename_list;
38     char *author;
39     notmuch_message_file_t *message_file;
40     notmuch_message_list_t *replies;
41     unsigned long flags;
42
43     Xapian::Document doc;
44     Xapian::termcount termpos;
45 };
46
47 #define ARRAY_SIZE(arr) (sizeof (arr) / sizeof (arr[0]))
48
49 struct maildir_flag_tag {
50     char flag;
51     const char *tag;
52     notmuch_bool_t inverse;
53 };
54
55 /* ASCII ordered table of Maildir flags and associated tags */
56 static struct maildir_flag_tag flag2tag[] = {
57     { 'D', "draft",   FALSE},
58     { 'F', "flagged", FALSE},
59     { 'P', "passed",  FALSE},
60     { 'R', "replied", FALSE},
61     { 'S', "unread",  TRUE }
62 };
63
64 /* We end up having to call the destructor explicitly because we had
65  * to use "placement new" in order to initialize C++ objects within a
66  * block that we allocated with talloc. So C++ is making talloc
67  * slightly less simple to use, (we wouldn't need
68  * talloc_set_destructor at all otherwise).
69  */
70 static int
71 _notmuch_message_destructor (notmuch_message_t *message)
72 {
73     message->doc.~Document ();
74
75     return 0;
76 }
77
78 static notmuch_message_t *
79 _notmuch_message_create_for_document (const void *talloc_owner,
80                                       notmuch_database_t *notmuch,
81                                       unsigned int doc_id,
82                                       Xapian::Document doc,
83                                       notmuch_private_status_t *status)
84 {
85     notmuch_message_t *message;
86
87     if (status)
88         *status = NOTMUCH_PRIVATE_STATUS_SUCCESS;
89
90     message = talloc (talloc_owner, notmuch_message_t);
91     if (unlikely (message == NULL)) {
92         if (status)
93             *status = NOTMUCH_PRIVATE_STATUS_OUT_OF_MEMORY;
94         return NULL;
95     }
96
97     message->notmuch = notmuch;
98     message->doc_id = doc_id;
99
100     message->frozen = 0;
101     message->flags = 0;
102
103     /* Each of these will be lazily created as needed. */
104     message->message_id = NULL;
105     message->thread_id = NULL;
106     message->in_reply_to = NULL;
107     message->tag_list = NULL;
108     message->filename_term_list = NULL;
109     message->filename_list = NULL;
110     message->message_file = NULL;
111     message->author = NULL;
112
113     message->replies = _notmuch_message_list_create (message);
114     if (unlikely (message->replies == NULL)) {
115         if (status)
116             *status = NOTMUCH_PRIVATE_STATUS_OUT_OF_MEMORY;
117         return NULL;
118     }
119
120     /* This is C++'s creepy "placement new", which is really just an
121      * ugly way to call a constructor for a pre-allocated object. So
122      * it's really not an error to not be checking for OUT_OF_MEMORY
123      * here, since this "new" isn't actually allocating memory. This
124      * is language-design comedy of the wrong kind. */
125
126     new (&message->doc) Xapian::Document;
127
128     talloc_set_destructor (message, _notmuch_message_destructor);
129
130     message->doc = doc;
131     message->termpos = 0;
132
133     return message;
134 }
135
136 /* Create a new notmuch_message_t object for an existing document in
137  * the database.
138  *
139  * Here, 'talloc owner' is an optional talloc context to which the new
140  * message will belong. This allows for the caller to not bother
141  * calling notmuch_message_destroy on the message, and know that all
142  * memory will be reclaimed when 'talloc_owner' is freed. The caller
143  * still can call notmuch_message_destroy when finished with the
144  * message if desired.
145  *
146  * The 'talloc_owner' argument can also be NULL, in which case the
147  * caller *is* responsible for calling notmuch_message_destroy.
148  *
149  * If no document exists in the database with document ID of 'doc_id'
150  * then this function returns NULL and optionally sets *status to
151  * NOTMUCH_PRIVATE_STATUS_NO_DOCUMENT_FOUND.
152  *
153  * This function can also fail to due lack of available memory,
154  * returning NULL and optionally setting *status to
155  * NOTMUCH_PRIVATE_STATUS_OUT_OF_MEMORY.
156  *
157  * The caller can pass NULL for status if uninterested in
158  * distinguishing these two cases.
159  */
160 notmuch_message_t *
161 _notmuch_message_create (const void *talloc_owner,
162                          notmuch_database_t *notmuch,
163                          unsigned int doc_id,
164                          notmuch_private_status_t *status)
165 {
166     Xapian::Document doc;
167
168     try {
169         doc = notmuch->xapian_db->get_document (doc_id);
170     } catch (const Xapian::DocNotFoundError &error) {
171         if (status)
172             *status = NOTMUCH_PRIVATE_STATUS_NO_DOCUMENT_FOUND;
173         return NULL;
174     }
175
176     return _notmuch_message_create_for_document (talloc_owner, notmuch,
177                                                  doc_id, doc, status);
178 }
179
180 /* Create a new notmuch_message_t object for a specific message ID,
181  * (which may or may not already exist in the database).
182  *
183  * The 'notmuch' database will be the talloc owner of the returned
184  * message.
185  *
186  * This function returns a valid notmuch_message_t whether or not
187  * there is already a document in the database with the given message
188  * ID. These two cases can be distinguished by the value of *status:
189  *
190  *
191  *   NOTMUCH_PRIVATE_STATUS_SUCCESS:
192  *
193  *     There is already a document with message ID 'message_id' in the
194  *     database. The returned message can be used to query/modify the
195  *     document.
196  *
197  *   NOTMUCH_PRIVATE_STATUS_NO_DOCUMENT_FOUND:
198  *
199  *     No document with 'message_id' exists in the database. The
200  *     returned message contains a newly created document (not yet
201  *     added to the database) and a document ID that is known not to
202  *     exist in the database.  This message is "blank"; that is, it
203  *     contains only a message ID and no other metadata. The caller
204  *     can modify the message, and a call to _notmuch_message_sync
205  *     will add the document to the database.
206  *
207  * If an error occurs, this function will return NULL and *status
208  * will be set as appropriate. (The status pointer argument must
209  * not be NULL.)
210  */
211 notmuch_message_t *
212 _notmuch_message_create_for_message_id (notmuch_database_t *notmuch,
213                                         const char *message_id,
214                                         notmuch_private_status_t *status_ret)
215 {
216     notmuch_message_t *message;
217     Xapian::Document doc;
218     unsigned int doc_id;
219     char *term;
220
221     *status_ret = (notmuch_private_status_t) notmuch_database_find_message (notmuch,
222                                                                             message_id,
223                                                                             &message);
224     if (message)
225         return talloc_steal (notmuch, message);
226     else if (*status_ret)
227         return NULL;
228
229     /* If the message ID is too long, substitute its sha1 instead. */
230     if (strlen (message_id) > NOTMUCH_MESSAGE_ID_MAX)
231         message_id = _notmuch_message_id_compressed (message, message_id);
232
233     term = talloc_asprintf (NULL, "%s%s",
234                             _find_prefix ("id"), message_id);
235     if (term == NULL) {
236         *status_ret = NOTMUCH_PRIVATE_STATUS_OUT_OF_MEMORY;
237         return NULL;
238     }
239
240     if (notmuch->mode == NOTMUCH_DATABASE_MODE_READ_ONLY)
241         INTERNAL_ERROR ("Failure to ensure database is writable.");
242
243     try {
244         doc.add_term (term, 0);
245         talloc_free (term);
246
247         doc.add_value (NOTMUCH_VALUE_MESSAGE_ID, message_id);
248
249         doc_id = _notmuch_database_generate_doc_id (notmuch);
250     } catch (const Xapian::Error &error) {
251         fprintf (stderr, "A Xapian exception occurred creating message: %s\n",
252                  error.get_msg().c_str());
253         notmuch->exception_reported = TRUE;
254         *status_ret = NOTMUCH_PRIVATE_STATUS_XAPIAN_EXCEPTION;
255         return NULL;
256     }
257
258     message = _notmuch_message_create_for_document (notmuch, notmuch,
259                                                     doc_id, doc, status_ret);
260
261     /* We want to inform the caller that we had to create a new
262      * document. */
263     if (*status_ret == NOTMUCH_PRIVATE_STATUS_SUCCESS)
264         *status_ret = NOTMUCH_PRIVATE_STATUS_NO_DOCUMENT_FOUND;
265
266     return message;
267 }
268
269 static char *
270 _notmuch_message_get_term (notmuch_message_t *message,
271                            Xapian::TermIterator &i, Xapian::TermIterator &end,
272                            const char *prefix)
273 {
274     int prefix_len = strlen (prefix);
275     char *value;
276
277     i.skip_to (prefix);
278
279     if (i == end)
280         return NULL;
281
282     std::string term = *i;
283     if (strncmp (term.c_str(), prefix, prefix_len))
284         return NULL;
285
286     value = talloc_strdup (message, term.c_str() + prefix_len);
287
288 #if DEBUG_DATABASE_SANITY
289     i++;
290
291     if (i != end && strncmp ((*i).c_str (), prefix, prefix_len) == 0) {
292         INTERNAL_ERROR ("Mail (doc_id: %d) has duplicate %s terms: %s and %s\n",
293                         message->doc_id, prefix, value,
294                         (*i).c_str () + prefix_len);
295     }
296 #endif
297
298     return value;
299 }
300
301 void
302 _notmuch_message_ensure_metadata (notmuch_message_t *message)
303 {
304     Xapian::TermIterator i, end;
305     const char *thread_prefix = _find_prefix ("thread"),
306         *tag_prefix = _find_prefix ("tag"),
307         *id_prefix = _find_prefix ("id"),
308         *filename_prefix = _find_prefix ("file-direntry"),
309         *replyto_prefix = _find_prefix ("replyto");
310
311     /* We do this all in a single pass because Xapian decompresses the
312      * term list every time you iterate over it.  Thus, while this is
313      * slightly more costly than looking up individual fields if only
314      * one field of the message object is actually used, it's a huge
315      * win as more fields are used. */
316
317     i = message->doc.termlist_begin ();
318     end = message->doc.termlist_end ();
319
320     /* Get thread */
321     if (!message->thread_id)
322         message->thread_id =
323             _notmuch_message_get_term (message, i, end, thread_prefix);
324
325     /* Get tags */
326     assert (strcmp (thread_prefix, tag_prefix) < 0);
327     if (!message->tag_list) {
328         message->tag_list =
329             _notmuch_database_get_terms_with_prefix (message, i, end,
330                                                      tag_prefix);
331         _notmuch_string_list_sort (message->tag_list);
332     }
333
334     /* Get id */
335     assert (strcmp (tag_prefix, id_prefix) < 0);
336     if (!message->message_id)
337         message->message_id =
338             _notmuch_message_get_term (message, i, end, id_prefix);
339
340     /* Get filename list.  Here we get only the terms.  We lazily
341      * expand them to full file names when needed in
342      * _notmuch_message_ensure_filename_list. */
343     assert (strcmp (id_prefix, filename_prefix) < 0);
344     if (!message->filename_term_list && !message->filename_list)
345         message->filename_term_list =
346             _notmuch_database_get_terms_with_prefix (message, i, end,
347                                                      filename_prefix);
348
349     /* Get reply to */
350     assert (strcmp (filename_prefix, replyto_prefix) < 0);
351     if (!message->in_reply_to)
352         message->in_reply_to =
353             _notmuch_message_get_term (message, i, end, replyto_prefix);
354     /* It's perfectly valid for a message to have no In-Reply-To
355      * header. For these cases, we return an empty string. */
356     if (!message->in_reply_to)
357         message->in_reply_to = talloc_strdup (message, "");
358 }
359
360 static void
361 _notmuch_message_invalidate_metadata (notmuch_message_t *message,
362                                       const char *prefix_name)
363 {
364     if (strcmp ("thread", prefix_name) == 0) {
365         talloc_free (message->thread_id);
366         message->thread_id = NULL;
367     }
368
369     if (strcmp ("tag", prefix_name) == 0) {
370         talloc_unlink (message, message->tag_list);
371         message->tag_list = NULL;
372     }
373
374     if (strcmp ("file-direntry", prefix_name) == 0) {
375         talloc_free (message->filename_term_list);
376         talloc_free (message->filename_list);
377         message->filename_term_list = message->filename_list = NULL;
378     }
379
380     if (strcmp ("replyto", prefix_name) == 0) {
381         talloc_free (message->in_reply_to);
382         message->in_reply_to = NULL;
383     }
384 }
385
386 unsigned int
387 _notmuch_message_get_doc_id (notmuch_message_t *message)
388 {
389     return message->doc_id;
390 }
391
392 const char *
393 notmuch_message_get_message_id (notmuch_message_t *message)
394 {
395     if (!message->message_id)
396         _notmuch_message_ensure_metadata (message);
397     if (!message->message_id)
398         INTERNAL_ERROR ("Message with document ID of %u has no message ID.\n",
399                         message->doc_id);
400     return message->message_id;
401 }
402
403 static void
404 _notmuch_message_ensure_message_file (notmuch_message_t *message)
405 {
406     const char *filename;
407
408     if (message->message_file)
409         return;
410
411     filename = notmuch_message_get_filename (message);
412     if (unlikely (filename == NULL))
413         return;
414
415     message->message_file = _notmuch_message_file_open_ctx (message, filename);
416 }
417
418 const char *
419 notmuch_message_get_header (notmuch_message_t *message, const char *header)
420 {
421     Xapian::valueno slot = Xapian::BAD_VALUENO;
422
423     /* Fetch header from the appropriate xapian value field if
424      * available */
425     if (strcasecmp (header, "from") == 0)
426         slot = NOTMUCH_VALUE_FROM;
427     else if (strcasecmp (header, "subject") == 0)
428         slot = NOTMUCH_VALUE_SUBJECT;
429     else if (strcasecmp (header, "message-id") == 0)
430         slot = NOTMUCH_VALUE_MESSAGE_ID;
431
432     if (slot != Xapian::BAD_VALUENO) {
433         try {
434             std::string value = message->doc.get_value (slot);
435
436             /* If we have NOTMUCH_FEATURE_FROM_SUBJECT_ID_VALUES, then
437              * empty values indicate empty headers.  If we don't, then
438              * it could just mean we didn't record the header. */
439             if ((message->notmuch->features &
440                  NOTMUCH_FEATURE_FROM_SUBJECT_ID_VALUES) ||
441                 ! value.empty())
442                 return talloc_strdup (message, value.c_str ());
443
444         } catch (Xapian::Error &error) {
445             fprintf (stderr, "A Xapian exception occurred when reading header: %s\n",
446                      error.get_msg().c_str());
447             message->notmuch->exception_reported = TRUE;
448             return NULL;
449         }
450     }
451
452     /* Otherwise fall back to parsing the file */
453     _notmuch_message_ensure_message_file (message);
454     if (message->message_file == NULL)
455         return NULL;
456
457     return _notmuch_message_file_get_header (message->message_file, header);
458 }
459
460 /* Return the message ID from the In-Reply-To header of 'message'.
461  *
462  * Returns an empty string ("") if 'message' has no In-Reply-To
463  * header.
464  *
465  * Returns NULL if any error occurs.
466  */
467 const char *
468 _notmuch_message_get_in_reply_to (notmuch_message_t *message)
469 {
470     if (!message->in_reply_to)
471         _notmuch_message_ensure_metadata (message);
472     return message->in_reply_to;
473 }
474
475 const char *
476 notmuch_message_get_thread_id (notmuch_message_t *message)
477 {
478     if (!message->thread_id)
479         _notmuch_message_ensure_metadata (message);
480     if (!message->thread_id)
481         INTERNAL_ERROR ("Message with document ID of %u has no thread ID.\n",
482                         message->doc_id);
483     return message->thread_id;
484 }
485
486 void
487 _notmuch_message_add_reply (notmuch_message_t *message,
488                             notmuch_message_t *reply)
489 {
490     _notmuch_message_list_add_message (message->replies, reply);
491 }
492
493 notmuch_messages_t *
494 notmuch_message_get_replies (notmuch_message_t *message)
495 {
496     return _notmuch_messages_create (message->replies);
497 }
498
499 static void
500 _notmuch_message_remove_terms (notmuch_message_t *message, const char *prefix)
501 {
502     Xapian::TermIterator i;
503     size_t prefix_len = strlen (prefix);
504
505     while (1) {
506         i = message->doc.termlist_begin ();
507         i.skip_to (prefix);
508
509         /* Terminate loop when no terms remain with desired prefix. */
510         if (i == message->doc.termlist_end () ||
511             strncmp ((*i).c_str (), prefix, prefix_len))
512             break;
513
514         try {
515             message->doc.remove_term ((*i));
516         } catch (const Xapian::InvalidArgumentError) {
517             /* Ignore failure to remove non-existent term. */
518         }
519     }
520 }
521
522 /* Return true if p points at "new" or "cur". */
523 static bool is_maildir (const char *p)
524 {
525     return strcmp (p, "cur") == 0 || strcmp (p, "new") == 0;
526 }
527
528 /* Add "folder:" term for directory. */
529 static notmuch_status_t
530 _notmuch_message_add_folder_terms (notmuch_message_t *message,
531                                    const char *directory)
532 {
533     char *folder, *last;
534
535     folder = talloc_strdup (NULL, directory);
536     if (! folder)
537         return NOTMUCH_STATUS_OUT_OF_MEMORY;
538
539     /*
540      * If the message file is in a leaf directory named "new" or
541      * "cur", presume maildir and index the parent directory. Thus a
542      * "folder:" prefix search matches messages in the specified
543      * maildir folder, i.e. in the specified directory and its "new"
544      * and "cur" subdirectories.
545      *
546      * Note that this means the "folder:" prefix can't be used for
547      * distinguishing between message files in "new" or "cur". The
548      * "path:" prefix needs to be used for that.
549      *
550      * Note the deliberate difference to _filename_is_in_maildir(). We
551      * don't want to index different things depending on the existence
552      * or non-existence of all maildir sibling directories "new",
553      * "cur", and "tmp". Doing so would be surprising, and difficult
554      * for the user to fix in case all subdirectories were not in
555      * place during indexing.
556      */
557     last = strrchr (folder, '/');
558     if (last) {
559         if (is_maildir (last + 1))
560             *last = '\0';
561     } else if (is_maildir (folder)) {
562         *folder = '\0';
563     }
564
565     _notmuch_message_add_term (message, "folder", folder);
566
567     talloc_free (folder);
568
569     return NOTMUCH_STATUS_SUCCESS;
570 }
571
572 #define RECURSIVE_SUFFIX "/**"
573
574 /* Add "path:" terms for directory. */
575 static notmuch_status_t
576 _notmuch_message_add_path_terms (notmuch_message_t *message,
577                                  const char *directory)
578 {
579     /* Add exact "path:" term. */
580     _notmuch_message_add_term (message, "path", directory);
581
582     if (strlen (directory)) {
583         char *path, *p;
584
585         path = talloc_asprintf (NULL, "%s%s", directory, RECURSIVE_SUFFIX);
586         if (! path)
587             return NOTMUCH_STATUS_OUT_OF_MEMORY;
588
589         /* Add recursive "path:" terms for directory and all parents. */
590         for (p = path + strlen (path) - 1; p > path; p--) {
591             if (*p == '/') {
592                 strcpy (p, RECURSIVE_SUFFIX);
593                 _notmuch_message_add_term (message, "path", path);
594             }
595         }
596
597         talloc_free (path);
598     }
599
600     /* Recursive all-matching path:** for consistency. */
601     _notmuch_message_add_term (message, "path", "**");
602
603     return NOTMUCH_STATUS_SUCCESS;
604 }
605
606 /* Add directory based terms for all filenames of the message. */
607 static notmuch_status_t
608 _notmuch_message_add_directory_terms (void *ctx, notmuch_message_t *message)
609 {
610     const char *direntry_prefix = _find_prefix ("file-direntry");
611     int direntry_prefix_len = strlen (direntry_prefix);
612     Xapian::TermIterator i = message->doc.termlist_begin ();
613     notmuch_status_t status = NOTMUCH_STATUS_SUCCESS;
614
615     for (i.skip_to (direntry_prefix); i != message->doc.termlist_end (); i++) {
616         unsigned int directory_id;
617         const char *direntry, *directory;
618         char *colon;
619
620         /* Terminate loop at first term without desired prefix. */
621         if (strncmp ((*i).c_str (), direntry_prefix, direntry_prefix_len))
622             break;
623
624         /* Indicate that there are filenames remaining. */
625         status = NOTMUCH_STATUS_DUPLICATE_MESSAGE_ID;
626
627         direntry = (*i).c_str ();
628         direntry += direntry_prefix_len;
629
630         directory_id = strtol (direntry, &colon, 10);
631
632         if (colon == NULL || *colon != ':')
633             INTERNAL_ERROR ("malformed direntry");
634
635         directory = _notmuch_database_get_directory_path (ctx,
636                                                           message->notmuch,
637                                                           directory_id);
638
639         _notmuch_message_add_folder_terms (message, directory);
640         _notmuch_message_add_path_terms (message, directory);
641     }
642
643     return status;
644 }
645
646 /* Add an additional 'filename' for 'message'.
647  *
648  * This change will not be reflected in the database until the next
649  * call to _notmuch_message_sync. */
650 notmuch_status_t
651 _notmuch_message_add_filename (notmuch_message_t *message,
652                                const char *filename)
653 {
654     const char *relative, *directory;
655     notmuch_status_t status;
656     void *local = talloc_new (message);
657     char *direntry;
658
659     if (filename == NULL)
660         INTERNAL_ERROR ("Message filename cannot be NULL.");
661
662     if (! (message->notmuch->features & NOTMUCH_FEATURE_FILE_TERMS) ||
663         ! (message->notmuch->features & NOTMUCH_FEATURE_BOOL_FOLDER))
664         return NOTMUCH_STATUS_UPGRADE_REQUIRED;
665
666     relative = _notmuch_database_relative_path (message->notmuch, filename);
667
668     status = _notmuch_database_split_path (local, relative, &directory, NULL);
669     if (status)
670         return status;
671
672     status = _notmuch_database_filename_to_direntry (
673         local, message->notmuch, filename, NOTMUCH_FIND_CREATE, &direntry);
674     if (status)
675         return status;
676
677     /* New file-direntry allows navigating to this message with
678      * notmuch_directory_get_child_files() . */
679     _notmuch_message_add_term (message, "file-direntry", direntry);
680
681     _notmuch_message_add_folder_terms (message, directory);
682     _notmuch_message_add_path_terms (message, directory);
683
684     talloc_free (local);
685
686     return NOTMUCH_STATUS_SUCCESS;
687 }
688
689 /* Remove a particular 'filename' from 'message'.
690  *
691  * This change will not be reflected in the database until the next
692  * call to _notmuch_message_sync.
693  *
694  * If this message still has other filenames, returns
695  * NOTMUCH_STATUS_DUPLICATE_MESSAGE_ID.
696  *
697  * Note: This function does not remove a document from the database,
698  * even if the specified filename is the only filename for this
699  * message. For that functionality, see
700  * _notmuch_database_remove_message. */
701 notmuch_status_t
702 _notmuch_message_remove_filename (notmuch_message_t *message,
703                                   const char *filename)
704 {
705     void *local = talloc_new (message);
706     char *direntry;
707     notmuch_private_status_t private_status;
708     notmuch_status_t status;
709
710     if (! (message->notmuch->features & NOTMUCH_FEATURE_FILE_TERMS) ||
711         ! (message->notmuch->features & NOTMUCH_FEATURE_BOOL_FOLDER))
712         return NOTMUCH_STATUS_UPGRADE_REQUIRED;
713
714     status = _notmuch_database_filename_to_direntry (
715         local, message->notmuch, filename, NOTMUCH_FIND_LOOKUP, &direntry);
716     if (status || !direntry)
717         return status;
718
719     /* Unlink this file from its parent directory. */
720     private_status = _notmuch_message_remove_term (message,
721                                                    "file-direntry", direntry);
722     status = COERCE_STATUS (private_status,
723                             "Unexpected error from _notmuch_message_remove_term");
724     if (status)
725         return status;
726
727     /* Re-synchronize "folder:" and "path:" terms for this message. */
728
729     /* Remove all "folder:" terms. */
730     _notmuch_message_remove_terms (message, _find_prefix ("folder"));
731
732     /* Remove all "path:" terms. */
733     _notmuch_message_remove_terms (message, _find_prefix ("path"));
734
735     /* Add back terms for all remaining filenames of the message. */
736     status = _notmuch_message_add_directory_terms (local, message);
737
738     talloc_free (local);
739
740     return status;
741 }
742
743 /* Upgrade the "folder:" prefix from V1 to V2. */
744 #define FOLDER_PREFIX_V1       "XFOLDER"
745 #define ZFOLDER_PREFIX_V1      "Z" FOLDER_PREFIX_V1
746 void
747 _notmuch_message_upgrade_folder (notmuch_message_t *message)
748 {
749     /* Remove all old "folder:" terms. */
750     _notmuch_message_remove_terms (message, FOLDER_PREFIX_V1);
751
752     /* Remove all old "folder:" stemmed terms. */
753     _notmuch_message_remove_terms (message, ZFOLDER_PREFIX_V1);
754
755     /* Add new boolean "folder:" and "path:" terms. */
756     _notmuch_message_add_directory_terms (message, message);
757 }
758
759 char *
760 _notmuch_message_talloc_copy_data (notmuch_message_t *message)
761 {
762     return talloc_strdup (message, message->doc.get_data ().c_str ());
763 }
764
765 void
766 _notmuch_message_clear_data (notmuch_message_t *message)
767 {
768     message->doc.set_data ("");
769 }
770
771 static void
772 _notmuch_message_ensure_filename_list (notmuch_message_t *message)
773 {
774     notmuch_string_node_t *node;
775
776     if (message->filename_list)
777         return;
778
779     if (!message->filename_term_list)
780         _notmuch_message_ensure_metadata (message);
781
782     message->filename_list = _notmuch_string_list_create (message);
783     node = message->filename_term_list->head;
784
785     if (!node) {
786         /* A message document created by an old version of notmuch
787          * (prior to rename support) will have the filename in the
788          * data of the document rather than as a file-direntry term.
789          *
790          * It would be nice to do the upgrade of the document directly
791          * here, but the database is likely open in read-only mode. */
792         const char *data;
793
794         data = message->doc.get_data ().c_str ();
795
796         if (data == NULL)
797             INTERNAL_ERROR ("message with no filename");
798
799         _notmuch_string_list_append (message->filename_list, data);
800
801         return;
802     }
803
804     for (; node; node = node->next) {
805         void *local = talloc_new (message);
806         const char *db_path, *directory, *basename, *filename;
807         char *colon, *direntry = NULL;
808         unsigned int directory_id;
809
810         direntry = node->string;
811
812         directory_id = strtol (direntry, &colon, 10);
813
814         if (colon == NULL || *colon != ':')
815             INTERNAL_ERROR ("malformed direntry");
816
817         basename = colon + 1;
818
819         *colon = '\0';
820
821         db_path = notmuch_database_get_path (message->notmuch);
822
823         directory = _notmuch_database_get_directory_path (local,
824                                                           message->notmuch,
825                                                           directory_id);
826
827         if (strlen (directory))
828             filename = talloc_asprintf (message, "%s/%s/%s",
829                                         db_path, directory, basename);
830         else
831             filename = talloc_asprintf (message, "%s/%s",
832                                         db_path, basename);
833
834         _notmuch_string_list_append (message->filename_list, filename);
835
836         talloc_free (local);
837     }
838
839     talloc_free (message->filename_term_list);
840     message->filename_term_list = NULL;
841 }
842
843 const char *
844 notmuch_message_get_filename (notmuch_message_t *message)
845 {
846     _notmuch_message_ensure_filename_list (message);
847
848     if (message->filename_list == NULL)
849         return NULL;
850
851     if (message->filename_list->head == NULL ||
852         message->filename_list->head->string == NULL)
853     {
854         INTERNAL_ERROR ("message with no filename");
855     }
856
857     return message->filename_list->head->string;
858 }
859
860 notmuch_filenames_t *
861 notmuch_message_get_filenames (notmuch_message_t *message)
862 {
863     _notmuch_message_ensure_filename_list (message);
864
865     return _notmuch_filenames_create (message, message->filename_list);
866 }
867
868 notmuch_bool_t
869 notmuch_message_get_flag (notmuch_message_t *message,
870                           notmuch_message_flag_t flag)
871 {
872     return message->flags & (1 << flag);
873 }
874
875 void
876 notmuch_message_set_flag (notmuch_message_t *message,
877                           notmuch_message_flag_t flag, notmuch_bool_t enable)
878 {
879     if (enable)
880         message->flags |= (1 << flag);
881     else
882         message->flags &= ~(1 << flag);
883 }
884
885 time_t
886 notmuch_message_get_date (notmuch_message_t *message)
887 {
888     std::string value;
889
890     try {
891         value = message->doc.get_value (NOTMUCH_VALUE_TIMESTAMP);
892     } catch (Xapian::Error &error) {
893         fprintf (stderr, "A Xapian exception occurred when reading date: %s\n",
894                  error.get_msg().c_str());
895         message->notmuch->exception_reported = TRUE;
896         return 0;
897     }
898
899     return Xapian::sortable_unserialise (value);
900 }
901
902 notmuch_tags_t *
903 notmuch_message_get_tags (notmuch_message_t *message)
904 {
905     notmuch_tags_t *tags;
906
907     if (!message->tag_list)
908         _notmuch_message_ensure_metadata (message);
909
910     tags = _notmuch_tags_create (message, message->tag_list);
911     /* _notmuch_tags_create steals the reference to the tag_list, but
912      * in this case it's still used by the message, so we add an
913      * *additional* talloc reference to the list.  As a result, it's
914      * possible to modify the message tags (which talloc_unlink's the
915      * current list from the message) while still iterating because
916      * the iterator will keep the current list alive. */
917     if (!talloc_reference (message, message->tag_list))
918         return NULL;
919
920     return tags;
921 }
922
923 const char *
924 _notmuch_message_get_author (notmuch_message_t *message)
925 {
926     return message->author;
927 }
928
929 void
930 _notmuch_message_set_author (notmuch_message_t *message,
931                             const char *author)
932 {
933     if (message->author)
934         talloc_free(message->author);
935     message->author = talloc_strdup(message, author);
936     return;
937 }
938
939 void
940 _notmuch_message_set_header_values (notmuch_message_t *message,
941                                     const char *date,
942                                     const char *from,
943                                     const char *subject)
944 {
945     time_t time_value;
946
947     /* GMime really doesn't want to see a NULL date, so protect its
948      * sensibilities. */
949     if (date == NULL || *date == '\0')
950         time_value = 0;
951     else
952         time_value = g_mime_utils_header_decode_date (date, NULL);
953
954     message->doc.add_value (NOTMUCH_VALUE_TIMESTAMP,
955                             Xapian::sortable_serialise (time_value));
956     message->doc.add_value (NOTMUCH_VALUE_FROM, from);
957     message->doc.add_value (NOTMUCH_VALUE_SUBJECT, subject);
958 }
959
960 /* Synchronize changes made to message->doc out into the database. */
961 void
962 _notmuch_message_sync (notmuch_message_t *message)
963 {
964     Xapian::WritableDatabase *db;
965
966     if (message->notmuch->mode == NOTMUCH_DATABASE_MODE_READ_ONLY)
967         return;
968
969     db = static_cast <Xapian::WritableDatabase *> (message->notmuch->xapian_db);
970     db->replace_document (message->doc_id, message->doc);
971 }
972
973 /* Delete a message document from the database. */
974 notmuch_status_t
975 _notmuch_message_delete (notmuch_message_t *message)
976 {
977     notmuch_status_t status;
978     Xapian::WritableDatabase *db;
979
980     status = _notmuch_database_ensure_writable (message->notmuch);
981     if (status)
982         return status;
983
984     db = static_cast <Xapian::WritableDatabase *> (message->notmuch->xapian_db);
985     db->delete_document (message->doc_id);
986     return NOTMUCH_STATUS_SUCCESS;
987 }
988
989 /* Ensure that 'message' is not holding any file object open. Future
990  * calls to various functions will still automatically open the
991  * message file as needed.
992  */
993 void
994 _notmuch_message_close (notmuch_message_t *message)
995 {
996     if (message->message_file) {
997         _notmuch_message_file_close (message->message_file);
998         message->message_file = NULL;
999     }
1000 }
1001
1002 /* Add a name:value term to 'message', (the actual term will be
1003  * encoded by prefixing the value with a short prefix). See
1004  * NORMAL_PREFIX and BOOLEAN_PREFIX arrays for the mapping of term
1005  * names to prefix values.
1006  *
1007  * This change will not be reflected in the database until the next
1008  * call to _notmuch_message_sync. */
1009 notmuch_private_status_t
1010 _notmuch_message_add_term (notmuch_message_t *message,
1011                            const char *prefix_name,
1012                            const char *value)
1013 {
1014
1015     char *term;
1016
1017     if (value == NULL)
1018         return NOTMUCH_PRIVATE_STATUS_NULL_POINTER;
1019
1020     term = talloc_asprintf (message, "%s%s",
1021                             _find_prefix (prefix_name), value);
1022
1023     if (strlen (term) > NOTMUCH_TERM_MAX)
1024         return NOTMUCH_PRIVATE_STATUS_TERM_TOO_LONG;
1025
1026     message->doc.add_term (term, 0);
1027
1028     talloc_free (term);
1029
1030     _notmuch_message_invalidate_metadata (message, prefix_name);
1031
1032     return NOTMUCH_PRIVATE_STATUS_SUCCESS;
1033 }
1034
1035 /* Parse 'text' and add a term to 'message' for each parsed word. Each
1036  * term will be added both prefixed (if prefix_name is not NULL) and
1037  * also non-prefixed). */
1038 notmuch_private_status_t
1039 _notmuch_message_gen_terms (notmuch_message_t *message,
1040                             const char *prefix_name,
1041                             const char *text)
1042 {
1043     Xapian::TermGenerator *term_gen = message->notmuch->term_gen;
1044
1045     if (text == NULL)
1046         return NOTMUCH_PRIVATE_STATUS_NULL_POINTER;
1047
1048     term_gen->set_document (message->doc);
1049
1050     if (prefix_name) {
1051         const char *prefix = _find_prefix (prefix_name);
1052
1053         term_gen->set_termpos (message->termpos);
1054         term_gen->index_text (text, 1, prefix);
1055         /* Create a gap between this an the next terms so they don't
1056          * appear to be a phrase. */
1057         message->termpos = term_gen->get_termpos () + 100;
1058
1059         _notmuch_message_invalidate_metadata (message, prefix_name);
1060     }
1061
1062     term_gen->set_termpos (message->termpos);
1063     term_gen->index_text (text);
1064     /* Create a term gap, as above. */
1065     message->termpos = term_gen->get_termpos () + 100;
1066
1067     return NOTMUCH_PRIVATE_STATUS_SUCCESS;
1068 }
1069
1070 /* Remove a name:value term from 'message', (the actual term will be
1071  * encoded by prefixing the value with a short prefix). See
1072  * NORMAL_PREFIX and BOOLEAN_PREFIX arrays for the mapping of term
1073  * names to prefix values.
1074  *
1075  * This change will not be reflected in the database until the next
1076  * call to _notmuch_message_sync. */
1077 notmuch_private_status_t
1078 _notmuch_message_remove_term (notmuch_message_t *message,
1079                               const char *prefix_name,
1080                               const char *value)
1081 {
1082     char *term;
1083
1084     if (value == NULL)
1085         return NOTMUCH_PRIVATE_STATUS_NULL_POINTER;
1086
1087     term = talloc_asprintf (message, "%s%s",
1088                             _find_prefix (prefix_name), value);
1089
1090     if (strlen (term) > NOTMUCH_TERM_MAX)
1091         return NOTMUCH_PRIVATE_STATUS_TERM_TOO_LONG;
1092
1093     try {
1094         message->doc.remove_term (term);
1095     } catch (const Xapian::InvalidArgumentError) {
1096         /* We'll let the philosopher's try to wrestle with the
1097          * question of whether failing to remove that which was not
1098          * there in the first place is failure. For us, we'll silently
1099          * consider it all good. */
1100     }
1101
1102     talloc_free (term);
1103
1104     _notmuch_message_invalidate_metadata (message, prefix_name);
1105
1106     return NOTMUCH_PRIVATE_STATUS_SUCCESS;
1107 }
1108
1109 notmuch_status_t
1110 notmuch_message_add_tag (notmuch_message_t *message, const char *tag)
1111 {
1112     notmuch_private_status_t private_status;
1113     notmuch_status_t status;
1114
1115     status = _notmuch_database_ensure_writable (message->notmuch);
1116     if (status)
1117         return status;
1118
1119     if (tag == NULL)
1120         return NOTMUCH_STATUS_NULL_POINTER;
1121
1122     if (strlen (tag) > NOTMUCH_TAG_MAX)
1123         return NOTMUCH_STATUS_TAG_TOO_LONG;
1124
1125     private_status = _notmuch_message_add_term (message, "tag", tag);
1126     if (private_status) {
1127         INTERNAL_ERROR ("_notmuch_message_add_term return unexpected value: %d\n",
1128                         private_status);
1129     }
1130
1131     if (! message->frozen)
1132         _notmuch_message_sync (message);
1133
1134     return NOTMUCH_STATUS_SUCCESS;
1135 }
1136
1137 notmuch_status_t
1138 notmuch_message_remove_tag (notmuch_message_t *message, const char *tag)
1139 {
1140     notmuch_private_status_t private_status;
1141     notmuch_status_t status;
1142
1143     status = _notmuch_database_ensure_writable (message->notmuch);
1144     if (status)
1145         return status;
1146
1147     if (tag == NULL)
1148         return NOTMUCH_STATUS_NULL_POINTER;
1149
1150     if (strlen (tag) > NOTMUCH_TAG_MAX)
1151         return NOTMUCH_STATUS_TAG_TOO_LONG;
1152
1153     private_status = _notmuch_message_remove_term (message, "tag", tag);
1154     if (private_status) {
1155         INTERNAL_ERROR ("_notmuch_message_remove_term return unexpected value: %d\n",
1156                         private_status);
1157     }
1158
1159     if (! message->frozen)
1160         _notmuch_message_sync (message);
1161
1162     return NOTMUCH_STATUS_SUCCESS;
1163 }
1164
1165 /* Is the given filename within a maildir directory?
1166  *
1167  * Specifically, is the final directory component of 'filename' either
1168  * "cur" or "new". If so, return a pointer to that final directory
1169  * component within 'filename'. If not, return NULL.
1170  *
1171  * A non-NULL return value is guaranteed to be a valid string pointer
1172  * pointing to the characters "new/" or "cur/", (but not
1173  * NUL-terminated).
1174  */
1175 static const char *
1176 _filename_is_in_maildir (const char *filename)
1177 {
1178     const char *slash, *dir = NULL;
1179
1180     /* Find the last '/' separating directory from filename. */
1181     slash = strrchr (filename, '/');
1182     if (slash == NULL)
1183         return NULL;
1184
1185     /* Jump back 4 characters to where the previous '/' will be if the
1186      * directory is named "cur" or "new". */
1187     if (slash - filename < 4)
1188         return NULL;
1189
1190     slash -= 4;
1191
1192     if (*slash != '/')
1193         return NULL;
1194
1195     dir = slash + 1;
1196
1197     if (STRNCMP_LITERAL (dir, "cur/") == 0 ||
1198         STRNCMP_LITERAL (dir, "new/") == 0)
1199     {
1200         return dir;
1201     }
1202
1203     return NULL;
1204 }
1205
1206 notmuch_status_t
1207 notmuch_message_maildir_flags_to_tags (notmuch_message_t *message)
1208 {
1209     const char *flags;
1210     notmuch_status_t status;
1211     notmuch_filenames_t *filenames;
1212     const char *filename, *dir;
1213     char *combined_flags = talloc_strdup (message, "");
1214     unsigned i;
1215     int seen_maildir_info = 0;
1216
1217     for (filenames = notmuch_message_get_filenames (message);
1218          notmuch_filenames_valid (filenames);
1219          notmuch_filenames_move_to_next (filenames))
1220     {
1221         filename = notmuch_filenames_get (filenames);
1222         dir = _filename_is_in_maildir (filename);
1223
1224         if (! dir)
1225             continue;
1226
1227         flags = strstr (filename, ":2,");
1228         if (flags) {
1229             seen_maildir_info = 1;
1230             flags += 3;
1231             combined_flags = talloc_strdup_append (combined_flags, flags);
1232         } else if (STRNCMP_LITERAL (dir, "new/") == 0) {
1233             /* Messages are delivered to new/ with no "info" part, but
1234              * they effectively have default maildir flags.  According
1235              * to the spec, we should ignore the info part for
1236              * messages in new/, but some MUAs (mutt) can set maildir
1237              * flags on messages in new/, so we're liberal in what we
1238              * accept. */
1239             seen_maildir_info = 1;
1240         }
1241     }
1242
1243     /* If none of the filenames have any maildir info field (not even
1244      * an empty info with no flags set) then there's no information to
1245      * go on, so do nothing. */
1246     if (! seen_maildir_info)
1247         return NOTMUCH_STATUS_SUCCESS;
1248
1249     status = notmuch_message_freeze (message);
1250     if (status)
1251         return status;
1252
1253     for (i = 0; i < ARRAY_SIZE(flag2tag); i++) {
1254         if ((strchr (combined_flags, flag2tag[i].flag) != NULL)
1255             ^ 
1256             flag2tag[i].inverse)
1257         {
1258             status = notmuch_message_add_tag (message, flag2tag[i].tag);
1259         } else {
1260             status = notmuch_message_remove_tag (message, flag2tag[i].tag);
1261         }
1262         if (status)
1263             return status;
1264     }
1265     status = notmuch_message_thaw (message);
1266
1267     talloc_free (combined_flags);
1268
1269     return status;
1270 }
1271
1272 /* From the set of tags on 'message' and the flag2tag table, compute a
1273  * set of maildir-flag actions to be taken, (flags that should be
1274  * either set or cleared).
1275  *
1276  * The result is returned as two talloced strings: to_set, and to_clear
1277  */
1278 static void
1279 _get_maildir_flag_actions (notmuch_message_t *message,
1280                            char **to_set_ret,
1281                            char **to_clear_ret)
1282 {
1283     char *to_set, *to_clear;
1284     notmuch_tags_t *tags;
1285     const char *tag;
1286     unsigned i;
1287
1288     to_set = talloc_strdup (message, "");
1289     to_clear = talloc_strdup (message, "");
1290
1291     /* First, find flags for all set tags. */
1292     for (tags = notmuch_message_get_tags (message);
1293          notmuch_tags_valid (tags);
1294          notmuch_tags_move_to_next (tags))
1295     {
1296         tag = notmuch_tags_get (tags);
1297
1298         for (i = 0; i < ARRAY_SIZE (flag2tag); i++) {
1299             if (strcmp (tag, flag2tag[i].tag) == 0) {
1300                 if (flag2tag[i].inverse)
1301                     to_clear = talloc_asprintf_append (to_clear,
1302                                                        "%c",
1303                                                        flag2tag[i].flag);
1304                 else
1305                     to_set = talloc_asprintf_append (to_set,
1306                                                      "%c",
1307                                                      flag2tag[i].flag);
1308             }
1309         }
1310     }
1311
1312     /* Then, find the flags for all tags not present. */
1313     for (i = 0; i < ARRAY_SIZE (flag2tag); i++) {
1314         if (flag2tag[i].inverse) {
1315             if (strchr (to_clear, flag2tag[i].flag) == NULL)
1316                 to_set = talloc_asprintf_append (to_set, "%c", flag2tag[i].flag);
1317         } else {
1318             if (strchr (to_set, flag2tag[i].flag) == NULL)
1319                 to_clear = talloc_asprintf_append (to_clear, "%c", flag2tag[i].flag);
1320         }
1321     }
1322
1323     *to_set_ret = to_set;
1324     *to_clear_ret = to_clear;
1325 }
1326
1327 /* Given 'filename' and a set of maildir flags to set and to clear,
1328  * compute the new maildir filename.
1329  *
1330  * If the existing filename is in the directory "new", the new
1331  * filename will be in the directory "cur", except for the case when
1332  * no flags are changed and the existing filename does not contain
1333  * maildir info (starting with ",2:").
1334  *
1335  * After a sequence of ":2," in the filename, any subsequent
1336  * single-character flags will be added or removed according to the
1337  * characters in flags_to_set and flags_to_clear. Any existing flags
1338  * not mentioned in either string will remain. The final list of flags
1339  * will be in ASCII order.
1340  *
1341  * If the original flags seem invalid, (repeated characters or
1342  * non-ASCII ordering of flags), this function will return NULL
1343  * (meaning that renaming would not be safe and should not occur).
1344  */
1345 static char*
1346 _new_maildir_filename (void *ctx,
1347                        const char *filename,
1348                        const char *flags_to_set,
1349                        const char *flags_to_clear)
1350 {
1351     const char *info, *flags;
1352     unsigned int flag, last_flag;
1353     char *filename_new, *dir;
1354     char flag_map[128];
1355     int flags_in_map = 0;
1356     notmuch_bool_t flags_changed = FALSE;
1357     unsigned int i;
1358     char *s;
1359
1360     memset (flag_map, 0, sizeof (flag_map));
1361
1362     info = strstr (filename, ":2,");
1363
1364     if (info == NULL) {
1365         info = filename + strlen(filename);
1366     } else {
1367         /* Loop through existing flags in filename. */
1368         for (flags = info + 3, last_flag = 0;
1369              *flags;
1370              last_flag = flag, flags++)
1371         {
1372             flag = *flags;
1373
1374             /* Original flags not in ASCII order. Abort. */
1375             if (flag < last_flag)
1376                 return NULL;
1377
1378             /* Non-ASCII flag. Abort. */
1379             if (flag > sizeof(flag_map) - 1)
1380                 return NULL;
1381
1382             /* Repeated flag value. Abort. */
1383             if (flag_map[flag])
1384                 return NULL;
1385
1386             flag_map[flag] = 1;
1387             flags_in_map++;
1388         }
1389     }
1390
1391     /* Then set and clear our flags from tags. */
1392     for (flags = flags_to_set; *flags; flags++) {
1393         flag = *flags;
1394         if (flag_map[flag] == 0) {
1395             flag_map[flag] = 1;
1396             flags_in_map++;
1397             flags_changed = TRUE;
1398         }
1399     }
1400
1401     for (flags = flags_to_clear; *flags; flags++) {
1402         flag = *flags;
1403         if (flag_map[flag]) {
1404             flag_map[flag] = 0;
1405             flags_in_map--;
1406             flags_changed = TRUE;
1407         }
1408     }
1409
1410     /* Messages in new/ without maildir info can be kept in new/ if no
1411      * flags have changed. */
1412     dir = (char *) _filename_is_in_maildir (filename);
1413     if (dir && STRNCMP_LITERAL (dir, "new/") == 0 && !*info && !flags_changed)
1414         return talloc_strdup (ctx, filename);
1415
1416     filename_new = (char *) talloc_size (ctx,
1417                                          info - filename +
1418                                          strlen (":2,") + flags_in_map + 1);
1419     if (unlikely (filename_new == NULL))
1420         return NULL;
1421
1422     strncpy (filename_new, filename, info - filename);
1423     filename_new[info - filename] = '\0';
1424
1425     strcat (filename_new, ":2,");
1426
1427     s = filename_new + strlen (filename_new);
1428     for (i = 0; i < sizeof (flag_map); i++)
1429     {
1430         if (flag_map[i]) {
1431             *s = i;
1432             s++;
1433         }
1434     }
1435     *s = '\0';
1436
1437     /* If message is in new/ move it under cur/. */
1438     dir = (char *) _filename_is_in_maildir (filename_new);
1439     if (dir && STRNCMP_LITERAL (dir, "new/") == 0)
1440         memcpy (dir, "cur/", 4);
1441
1442     return filename_new;
1443 }
1444
1445 notmuch_status_t
1446 notmuch_message_tags_to_maildir_flags (notmuch_message_t *message)
1447 {
1448     notmuch_filenames_t *filenames;
1449     const char *filename;
1450     char *filename_new;
1451     char *to_set, *to_clear;
1452     notmuch_status_t status = NOTMUCH_STATUS_SUCCESS;
1453
1454     _get_maildir_flag_actions (message, &to_set, &to_clear);
1455
1456     for (filenames = notmuch_message_get_filenames (message);
1457          notmuch_filenames_valid (filenames);
1458          notmuch_filenames_move_to_next (filenames))
1459     {
1460         filename = notmuch_filenames_get (filenames);
1461
1462         if (! _filename_is_in_maildir (filename))
1463             continue;
1464
1465         filename_new = _new_maildir_filename (message, filename,
1466                                               to_set, to_clear);
1467         if (filename_new == NULL)
1468             continue;
1469
1470         if (strcmp (filename, filename_new)) {
1471             int err;
1472             notmuch_status_t new_status;
1473
1474             err = rename (filename, filename_new);
1475             if (err)
1476                 continue;
1477
1478             new_status = _notmuch_message_remove_filename (message,
1479                                                            filename);
1480             /* Hold on to only the first error. */
1481             if (! status && new_status
1482                 && new_status != NOTMUCH_STATUS_DUPLICATE_MESSAGE_ID) {
1483                 status = new_status;
1484                 continue;
1485             }
1486
1487             new_status = _notmuch_message_add_filename (message,
1488                                                         filename_new);
1489             /* Hold on to only the first error. */
1490             if (! status && new_status) {
1491                 status = new_status;
1492                 continue;
1493             }
1494
1495             _notmuch_message_sync (message);
1496         }
1497
1498         talloc_free (filename_new);
1499     }
1500
1501     talloc_free (to_set);
1502     talloc_free (to_clear);
1503
1504     return status;
1505 }
1506
1507 notmuch_status_t
1508 notmuch_message_remove_all_tags (notmuch_message_t *message)
1509 {
1510     notmuch_private_status_t private_status;
1511     notmuch_status_t status;
1512     notmuch_tags_t *tags;
1513     const char *tag;
1514
1515     status = _notmuch_database_ensure_writable (message->notmuch);
1516     if (status)
1517         return status;
1518
1519     for (tags = notmuch_message_get_tags (message);
1520          notmuch_tags_valid (tags);
1521          notmuch_tags_move_to_next (tags))
1522     {
1523         tag = notmuch_tags_get (tags);
1524
1525         private_status = _notmuch_message_remove_term (message, "tag", tag);
1526         if (private_status) {
1527             INTERNAL_ERROR ("_notmuch_message_remove_term return unexpected value: %d\n",
1528                             private_status);
1529         }
1530     }
1531
1532     if (! message->frozen)
1533         _notmuch_message_sync (message);
1534
1535     talloc_free (tags);
1536     return NOTMUCH_STATUS_SUCCESS;
1537 }
1538
1539 notmuch_status_t
1540 notmuch_message_freeze (notmuch_message_t *message)
1541 {
1542     notmuch_status_t status;
1543
1544     status = _notmuch_database_ensure_writable (message->notmuch);
1545     if (status)
1546         return status;
1547
1548     message->frozen++;
1549
1550     return NOTMUCH_STATUS_SUCCESS;
1551 }
1552
1553 notmuch_status_t
1554 notmuch_message_thaw (notmuch_message_t *message)
1555 {
1556     notmuch_status_t status;
1557
1558     status = _notmuch_database_ensure_writable (message->notmuch);
1559     if (status)
1560         return status;
1561
1562     if (message->frozen > 0) {
1563         message->frozen--;
1564         if (message->frozen == 0)
1565             _notmuch_message_sync (message);
1566         return NOTMUCH_STATUS_SUCCESS;
1567     } else {
1568         return NOTMUCH_STATUS_UNBALANCED_FREEZE_THAW;
1569     }
1570 }
1571
1572 void
1573 notmuch_message_destroy (notmuch_message_t *message)
1574 {
1575     talloc_free (message);
1576 }