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