]> git.notmuchmail.org Git - notmuch/blob - lib/message.cc
lib: Add new, public notmuch_message_get_filenames
[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 _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_filename_list_t *filename_list;
36     char *author;
37     notmuch_message_file_t *message_file;
38     notmuch_message_list_t *replies;
39     unsigned long flags;
40
41     Xapian::Document doc;
42 };
43
44 #define ARRAY_SIZE(arr) (sizeof (arr) / sizeof (arr[0]))
45
46 struct maildir_flag_tag {
47     char flag;
48     const char *tag;
49     bool inverse;
50 };
51
52 /* ASCII ordered table of Maildir flags and associated tags */
53 struct maildir_flag_tag flag2tag[] = {
54     { 'D', "draft",   false},
55     { 'F', "flagged", false},
56     { 'P', "passed",  false},
57     { 'R', "replied", false},
58     { 'S', "unread",  true }
59 };
60
61 /* We end up having to call the destructor explicitly because we had
62  * to use "placement new" in order to initialize C++ objects within a
63  * block that we allocated with talloc. So C++ is making talloc
64  * slightly less simple to use, (we wouldn't need
65  * talloc_set_destructor at all otherwise).
66  */
67 static int
68 _notmuch_message_destructor (notmuch_message_t *message)
69 {
70     message->doc.~Document ();
71
72     return 0;
73 }
74
75 static notmuch_message_t *
76 _notmuch_message_create_for_document (const void *talloc_owner,
77                                       notmuch_database_t *notmuch,
78                                       unsigned int doc_id,
79                                       Xapian::Document doc,
80                                       notmuch_private_status_t *status)
81 {
82     notmuch_message_t *message;
83
84     if (status)
85         *status = NOTMUCH_PRIVATE_STATUS_SUCCESS;
86
87     message = talloc (talloc_owner, notmuch_message_t);
88     if (unlikely (message == NULL)) {
89         if (status)
90             *status = NOTMUCH_PRIVATE_STATUS_OUT_OF_MEMORY;
91         return NULL;
92     }
93
94     message->notmuch = notmuch;
95     message->doc_id = doc_id;
96
97     message->frozen = 0;
98     message->flags = 0;
99
100     /* Each of these will be lazily created as needed. */
101     message->message_id = NULL;
102     message->thread_id = NULL;
103     message->in_reply_to = NULL;
104     message->filename_list = NULL;
105     message->message_file = NULL;
106     message->author = NULL;
107
108     message->replies = _notmuch_message_list_create (message);
109     if (unlikely (message->replies == NULL)) {
110         if (status)
111             *status = NOTMUCH_PRIVATE_STATUS_OUT_OF_MEMORY;
112         return NULL;
113     }
114
115     /* This is C++'s creepy "placement new", which is really just an
116      * ugly way to call a constructor for a pre-allocated object. So
117      * it's really not an error to not be checking for OUT_OF_MEMORY
118      * here, since this "new" isn't actually allocating memory. This
119      * is language-design comedy of the wrong kind. */
120
121     new (&message->doc) Xapian::Document;
122
123     talloc_set_destructor (message, _notmuch_message_destructor);
124
125     message->doc = doc;
126
127     return message;
128 }
129
130 /* Create a new notmuch_message_t object for an existing document in
131  * the database.
132  *
133  * Here, 'talloc owner' is an optional talloc context to which the new
134  * message will belong. This allows for the caller to not bother
135  * calling notmuch_message_destroy on the message, and no that all
136  * memory will be reclaimed with 'talloc_owner' is free. The caller
137  * still can call notmuch_message_destroy when finished with the
138  * message if desired.
139  *
140  * The 'talloc_owner' argument can also be NULL, in which case the
141  * caller *is* responsible for calling notmuch_message_destroy.
142  *
143  * If no document exists in the database with document ID of 'doc_id'
144  * then this function returns NULL and optionally sets *status to
145  * NOTMUCH_PRIVATE_STATUS_NO_DOCUMENT_FOUND.
146  *
147  * This function can also fail to due lack of available memory,
148  * returning NULL and optionally setting *status to
149  * NOTMUCH_PRIVATE_STATUS_OUT_OF_MEMORY.
150  *
151  * The caller can pass NULL for status if uninterested in
152  * distinguishing these two cases.
153  */
154 notmuch_message_t *
155 _notmuch_message_create (const void *talloc_owner,
156                          notmuch_database_t *notmuch,
157                          unsigned int doc_id,
158                          notmuch_private_status_t *status)
159 {
160     Xapian::Document doc;
161
162     try {
163         doc = notmuch->xapian_db->get_document (doc_id);
164     } catch (const Xapian::DocNotFoundError &error) {
165         if (status)
166             *status = NOTMUCH_PRIVATE_STATUS_NO_DOCUMENT_FOUND;
167         return NULL;
168     }
169
170     return _notmuch_message_create_for_document (talloc_owner, notmuch,
171                                                  doc_id, doc, status);
172 }
173
174 /* Create a new notmuch_message_t object for a specific message ID,
175  * (which may or may not already exist in the database).
176  *
177  * The 'notmuch' database will be the talloc owner of the returned
178  * message.
179  *
180  * This function returns a valid notmuch_message_t whether or not
181  * there is already a document in the database with the given message
182  * ID. These two cases can be distinguished by the value of *status:
183  *
184  *
185  *   NOTMUCH_PRIVATE_STATUS_SUCCESS:
186  *
187  *     There is already a document with message ID 'message_id' in the
188  *     database. The returned message can be used to query/modify the
189  *     document.
190  *   NOTMUCH_PRIVATE_STATUS_NO_DOCUMENT_FOUND:
191  *
192  *     No document with 'message_id' exists in the database. The
193  *     returned message contains a newly created document (not yet
194  *     added to the database) and a document ID that is known not to
195  *     exist in the database. The caller can modify the message, and a
196  *     call to _notmuch_message_sync will add * the document to the
197  *     database.
198  *
199  * If an error occurs, this function will return NULL and *status
200  * will be set as appropriate. (The status pointer argument must
201  * not be NULL.)
202  */
203 notmuch_message_t *
204 _notmuch_message_create_for_message_id (notmuch_database_t *notmuch,
205                                         const char *message_id,
206                                         notmuch_private_status_t *status_ret)
207 {
208     notmuch_message_t *message;
209     Xapian::Document doc;
210     Xapian::WritableDatabase *db;
211     unsigned int doc_id;
212     char *term;
213
214     *status_ret = NOTMUCH_PRIVATE_STATUS_SUCCESS;
215
216     message = notmuch_database_find_message (notmuch, message_id);
217     if (message)
218         return talloc_steal (notmuch, message);
219
220     term = talloc_asprintf (NULL, "%s%s",
221                             _find_prefix ("id"), message_id);
222     if (term == NULL) {
223         *status_ret = NOTMUCH_PRIVATE_STATUS_OUT_OF_MEMORY;
224         return NULL;
225     }
226
227     if (notmuch->mode == NOTMUCH_DATABASE_MODE_READ_ONLY)
228         INTERNAL_ERROR ("Failure to ensure database is writable.");
229
230     db = static_cast<Xapian::WritableDatabase *> (notmuch->xapian_db);
231     try {
232         doc.add_term (term, 0);
233         talloc_free (term);
234
235         doc.add_value (NOTMUCH_VALUE_MESSAGE_ID, message_id);
236
237         doc_id = _notmuch_database_generate_doc_id (notmuch);
238     } catch (const Xapian::Error &error) {
239         fprintf (stderr, "A Xapian exception occurred creating message: %s\n",
240                  error.get_msg().c_str());
241         notmuch->exception_reported = TRUE;
242         *status_ret = NOTMUCH_PRIVATE_STATUS_XAPIAN_EXCEPTION;
243         return NULL;
244     }
245
246     message = _notmuch_message_create_for_document (notmuch, notmuch,
247                                                     doc_id, doc, status_ret);
248
249     /* We want to inform the caller that we had to create a new
250      * document. */
251     if (*status_ret == NOTMUCH_PRIVATE_STATUS_SUCCESS)
252         *status_ret = NOTMUCH_PRIVATE_STATUS_NO_DOCUMENT_FOUND;
253
254     return message;
255 }
256
257 const char *
258 notmuch_message_get_message_id (notmuch_message_t *message)
259 {
260     Xapian::TermIterator i;
261
262     if (message->message_id)
263         return message->message_id;
264
265     i = message->doc.termlist_begin ();
266     i.skip_to (_find_prefix ("id"));
267
268     if (i == message->doc.termlist_end ())
269         INTERNAL_ERROR ("Message with document ID of %d has no message ID.\n",
270                         message->doc_id);
271
272     message->message_id = talloc_strdup (message, (*i).c_str () + 1);
273
274 #if DEBUG_DATABASE_SANITY
275     i++;
276
277     if (i != message->doc.termlist_end () &&
278         strncmp ((*i).c_str (), _find_prefix ("id"),
279                  strlen (_find_prefix ("id"))) == 0)
280     {
281         INTERNAL_ERROR ("Mail (doc_id: %d) has duplicate message IDs",
282                         message->doc_id);
283     }
284 #endif
285
286     return message->message_id;
287 }
288
289 static void
290 _notmuch_message_ensure_message_file (notmuch_message_t *message)
291 {
292     const char *filename;
293
294     if (message->message_file)
295         return;
296
297     filename = notmuch_message_get_filename (message);
298     if (unlikely (filename == NULL))
299         return;
300
301     message->message_file = _notmuch_message_file_open_ctx (message, filename);
302 }
303
304 const char *
305 notmuch_message_get_header (notmuch_message_t *message, const char *header)
306 {
307     _notmuch_message_ensure_message_file (message);
308     if (message->message_file == NULL)
309         return NULL;
310
311     return notmuch_message_file_get_header (message->message_file, header);
312 }
313
314 /* Return the message ID from the In-Reply-To header of 'message'.
315  *
316  * Returns an empty string ("") if 'message' has no In-Reply-To
317  * header.
318  *
319  * Returns NULL if any error occurs.
320  */
321 const char *
322 _notmuch_message_get_in_reply_to (notmuch_message_t *message)
323 {
324     const char *prefix = _find_prefix ("replyto");
325     int prefix_len = strlen (prefix);
326     Xapian::TermIterator i;
327     std::string in_reply_to;
328
329     if (message->in_reply_to)
330         return message->in_reply_to;
331
332     i = message->doc.termlist_begin ();
333     i.skip_to (prefix);
334
335     if (i != message->doc.termlist_end ())
336         in_reply_to = *i;
337
338     /* It's perfectly valid for a message to have no In-Reply-To
339      * header. For these cases, we return an empty string. */
340     if (i == message->doc.termlist_end () ||
341         strncmp (in_reply_to.c_str (), prefix, prefix_len))
342     {
343         message->in_reply_to = talloc_strdup (message, "");
344         return message->in_reply_to;
345     }
346
347     message->in_reply_to = talloc_strdup (message,
348                                           in_reply_to.c_str () + prefix_len);
349
350 #if DEBUG_DATABASE_SANITY
351     i++;
352
353     in_reply_to = *i;
354
355     if (i != message->doc.termlist_end () &&
356         strncmp ((*i).c_str (), prefix, prefix_len) == 0)
357     {
358        INTERNAL_ERROR ("Message %s has duplicate In-Reply-To IDs: %s and %s\n",
359                         notmuch_message_get_message_id (message),
360                         message->in_reply_to,
361                         (*i).c_str () + prefix_len);
362     }
363 #endif
364
365     return message->in_reply_to;
366 }
367
368 const char *
369 notmuch_message_get_thread_id (notmuch_message_t *message)
370 {
371     const char *prefix = _find_prefix ("thread");
372     Xapian::TermIterator i;
373     std::string id;
374
375     /* This code is written with the assumption that "thread" has a
376      * single-character prefix. */
377     assert (strlen (prefix) == 1);
378
379     if (message->thread_id)
380         return message->thread_id;
381
382     i = message->doc.termlist_begin ();
383     i.skip_to (prefix);
384
385     if (i != message->doc.termlist_end ())
386         id = *i;
387
388     if (i == message->doc.termlist_end () || id[0] != *prefix)
389         INTERNAL_ERROR ("Message with document ID of %d has no thread ID.\n",
390                         message->doc_id);
391
392     message->thread_id = talloc_strdup (message, id.c_str () + 1);
393
394 #if DEBUG_DATABASE_SANITY
395     i++;
396     id = *i;
397
398     if (i != message->doc.termlist_end () && id[0] == *prefix)
399     {
400         INTERNAL_ERROR ("Message %s has duplicate thread IDs: %s and %s\n",
401                         notmuch_message_get_message_id (message),
402                         message->thread_id,
403                         id.c_str () + 1);
404     }
405 #endif
406
407     return message->thread_id;
408 }
409
410 void
411 _notmuch_message_add_reply (notmuch_message_t *message,
412                             notmuch_message_node_t *reply)
413 {
414     _notmuch_message_list_append (message->replies, reply);
415 }
416
417 notmuch_messages_t *
418 notmuch_message_get_replies (notmuch_message_t *message)
419 {
420     return _notmuch_messages_create (message->replies);
421 }
422
423 /* Add an additional 'filename' for 'message'.
424  *
425  * This change will not be reflected in the database until the next
426  * call to _notmuch_message_sync. */
427 notmuch_status_t
428 _notmuch_message_add_filename (notmuch_message_t *message,
429                                const char *filename)
430 {
431     notmuch_status_t status;
432     void *local = talloc_new (message);
433     char *direntry;
434
435     if (message->filename_list) {
436         _notmuch_filename_list_destroy (message->filename_list);
437         message->filename_list = NULL;
438     }
439
440     if (filename == NULL)
441         INTERNAL_ERROR ("Message filename cannot be NULL.");
442
443     status = _notmuch_database_filename_to_direntry (local,
444                                                      message->notmuch,
445                                                      filename, &direntry);
446     if (status)
447         return status;
448
449     _notmuch_message_add_term (message, "file-direntry", direntry);
450
451     talloc_free (local);
452
453     return NOTMUCH_STATUS_SUCCESS;
454 }
455
456 char *
457 _notmuch_message_talloc_copy_data (notmuch_message_t *message)
458 {
459     return talloc_strdup (message, message->doc.get_data ().c_str ());
460 }
461
462 void
463 _notmuch_message_clear_data (notmuch_message_t *message)
464 {
465     message->doc.set_data ("");
466 }
467
468 static void
469 _notmuch_message_ensure_filename_list (notmuch_message_t *message)
470 {
471     const char *prefix = _find_prefix ("file-direntry");
472     int prefix_len = strlen (prefix);
473     Xapian::TermIterator i;
474
475     if (message->filename_list)
476         return;
477
478     message->filename_list = _notmuch_filename_list_create (message);
479
480     i = message->doc.termlist_begin ();
481     i.skip_to (prefix);
482
483     if (i == message->doc.termlist_end () ||
484         strncmp ((*i).c_str (), prefix, prefix_len))
485     {
486         /* A message document created by an old version of notmuch
487          * (prior to rename support) will have the filename in the
488          * data of the document rather than as a file-direntry term.
489          *
490          * It would be nice to do the upgrade of the document directly
491          * here, but the database is likely open in read-only mode. */
492         const char *data;
493
494         data = message->doc.get_data ().c_str ();
495
496         if (data == NULL)
497             INTERNAL_ERROR ("message with no filename");
498
499         _notmuch_filename_list_add_filename (message->filename_list, data);
500
501         return;
502     }
503
504     for (; i != message->doc.termlist_end (); i++) {
505         void *local = talloc_new (message);
506         const char *db_path, *directory, *basename, *filename;
507         char *colon, *direntry = NULL;
508         unsigned int directory_id;
509
510         /* Terminate loop at first term without desired prefix. */
511         if (strncmp ((*i).c_str (), prefix, prefix_len))
512             break;
513
514         direntry = talloc_strdup (local, (*i).c_str ());
515
516         direntry += prefix_len;
517
518         directory_id = strtol (direntry, &colon, 10);
519
520         if (colon == NULL || *colon != ':')
521             INTERNAL_ERROR ("malformed direntry");
522
523         basename = colon + 1;
524
525         *colon = '\0';
526
527         db_path = notmuch_database_get_path (message->notmuch);
528
529         directory = _notmuch_database_get_directory_path (local,
530                                                           message->notmuch,
531                                                           directory_id);
532
533         if (strlen (directory))
534             filename = talloc_asprintf (message, "%s/%s/%s",
535                                         db_path, directory, basename);
536         else
537             filename = talloc_asprintf (message, "%s/%s",
538                                         db_path, basename);
539
540         _notmuch_filename_list_add_filename (message->filename_list,
541                                              filename);
542
543         talloc_free (local);
544     }
545 }
546
547 const char *
548 notmuch_message_get_filename (notmuch_message_t *message)
549 {
550     _notmuch_message_ensure_filename_list (message);
551
552     if (message->filename_list == NULL)
553         return NULL;
554
555     if (message->filename_list->head == NULL ||
556         message->filename_list->head->filename == NULL)
557     {
558         INTERNAL_ERROR ("message with no filename");
559     }
560
561     return message->filename_list->head->filename;
562 }
563
564 notmuch_filenames_t *
565 notmuch_message_get_filenames (notmuch_message_t *message)
566 {
567     _notmuch_message_ensure_filename_list (message);
568
569     return _notmuch_filenames_create (message, message->filename_list);
570 }
571
572 notmuch_bool_t
573 notmuch_message_get_flag (notmuch_message_t *message,
574                           notmuch_message_flag_t flag)
575 {
576     return message->flags & (1 << flag);
577 }
578
579 void
580 notmuch_message_set_flag (notmuch_message_t *message,
581                           notmuch_message_flag_t flag, notmuch_bool_t enable)
582 {
583     if (enable)
584         message->flags |= (1 << flag);
585     else
586         message->flags &= ~(1 << flag);
587 }
588
589 time_t
590 notmuch_message_get_date (notmuch_message_t *message)
591 {
592     std::string value;
593
594     try {
595         value = message->doc.get_value (NOTMUCH_VALUE_TIMESTAMP);
596     } catch (Xapian::Error &error) {
597         INTERNAL_ERROR ("Failed to read timestamp value from document.");
598         return 0;
599     }
600
601     return Xapian::sortable_unserialise (value);
602 }
603
604 notmuch_tags_t *
605 notmuch_message_get_tags (notmuch_message_t *message)
606 {
607     Xapian::TermIterator i, end;
608     i = message->doc.termlist_begin();
609     end = message->doc.termlist_end();
610     return _notmuch_convert_tags(message, i, end);
611 }
612
613 const char *
614 notmuch_message_get_author (notmuch_message_t *message)
615 {
616     return message->author;
617 }
618
619 void
620 notmuch_message_set_author (notmuch_message_t *message,
621                             const char *author)
622 {
623     if (message->author)
624         talloc_free(message->author);
625     message->author = talloc_strdup(message, author);
626     return;
627 }
628
629 void
630 _notmuch_message_set_date (notmuch_message_t *message,
631                            const char *date)
632 {
633     time_t time_value;
634
635     /* GMime really doesn't want to see a NULL date, so protect its
636      * sensibilities. */
637     if (date == NULL || *date == '\0')
638         time_value = 0;
639     else
640         time_value = g_mime_utils_header_decode_date (date, NULL);
641
642     message->doc.add_value (NOTMUCH_VALUE_TIMESTAMP,
643                             Xapian::sortable_serialise (time_value));
644 }
645
646 /* Synchronize changes made to message->doc out into the database. */
647 void
648 _notmuch_message_sync (notmuch_message_t *message)
649 {
650     Xapian::WritableDatabase *db;
651
652     if (message->notmuch->mode == NOTMUCH_DATABASE_MODE_READ_ONLY)
653         return;
654
655     db = static_cast <Xapian::WritableDatabase *> (message->notmuch->xapian_db);
656     db->replace_document (message->doc_id, message->doc);
657 }
658
659 /* Ensure that 'message' is not holding any file object open. Future
660  * calls to various functions will still automatically open the
661  * message file as needed.
662  */
663 void
664 _notmuch_message_close (notmuch_message_t *message)
665 {
666     if (message->message_file) {
667         notmuch_message_file_close (message->message_file);
668         message->message_file = NULL;
669     }
670 }
671
672 /* Add a name:value term to 'message', (the actual term will be
673  * encoded by prefixing the value with a short prefix). See
674  * NORMAL_PREFIX and BOOLEAN_PREFIX arrays for the mapping of term
675  * names to prefix values.
676  *
677  * This change will not be reflected in the database until the next
678  * call to _notmuch_message_sync. */
679 notmuch_private_status_t
680 _notmuch_message_add_term (notmuch_message_t *message,
681                            const char *prefix_name,
682                            const char *value)
683 {
684
685     char *term;
686
687     if (value == NULL)
688         return NOTMUCH_PRIVATE_STATUS_NULL_POINTER;
689
690     term = talloc_asprintf (message, "%s%s",
691                             _find_prefix (prefix_name), value);
692
693     if (strlen (term) > NOTMUCH_TERM_MAX)
694         return NOTMUCH_PRIVATE_STATUS_TERM_TOO_LONG;
695
696     message->doc.add_term (term, 0);
697
698     talloc_free (term);
699
700     return NOTMUCH_PRIVATE_STATUS_SUCCESS;
701 }
702
703 /* Parse 'text' and add a term to 'message' for each parsed word. Each
704  * term will be added both prefixed (if prefix_name is not NULL) and
705  * also unprefixed). */
706 notmuch_private_status_t
707 _notmuch_message_gen_terms (notmuch_message_t *message,
708                             const char *prefix_name,
709                             const char *text)
710 {
711     Xapian::TermGenerator *term_gen = message->notmuch->term_gen;
712
713     if (text == NULL)
714         return NOTMUCH_PRIVATE_STATUS_NULL_POINTER;
715
716     term_gen->set_document (message->doc);
717
718     if (prefix_name) {
719         const char *prefix = _find_prefix (prefix_name);
720
721         term_gen->index_text (text, 1, prefix);
722     }
723
724     term_gen->index_text (text);
725
726     return NOTMUCH_PRIVATE_STATUS_SUCCESS;
727 }
728
729 /* Remove a name:value term from 'message', (the actual term will be
730  * encoded by prefixing the value with a short prefix). See
731  * NORMAL_PREFIX and BOOLEAN_PREFIX arrays for the mapping of term
732  * names to prefix values.
733  *
734  * This change will not be reflected in the database until the next
735  * call to _notmuch_message_sync. */
736 notmuch_private_status_t
737 _notmuch_message_remove_term (notmuch_message_t *message,
738                               const char *prefix_name,
739                               const char *value)
740 {
741     char *term;
742
743     if (value == NULL)
744         return NOTMUCH_PRIVATE_STATUS_NULL_POINTER;
745
746     term = talloc_asprintf (message, "%s%s",
747                             _find_prefix (prefix_name), value);
748
749     if (strlen (term) > NOTMUCH_TERM_MAX)
750         return NOTMUCH_PRIVATE_STATUS_TERM_TOO_LONG;
751
752     try {
753         message->doc.remove_term (term);
754     } catch (const Xapian::InvalidArgumentError) {
755         /* We'll let the philosopher's try to wrestle with the
756          * question of whether failing to remove that which was not
757          * there in the first place is failure. For us, we'll silently
758          * consider it all good. */
759     }
760
761     talloc_free (term);
762
763     return NOTMUCH_PRIVATE_STATUS_SUCCESS;
764 }
765
766 /* Change the message filename stored in the database.
767  *
768  * This change will not be reflected in the database until the next
769  * call to _notmuch_message_sync.
770  */
771 notmuch_status_t
772 _notmuch_message_rename (notmuch_message_t *message,
773                          const char *new_filename)
774 {
775     void *local = talloc_new (message);
776     char *direntry;
777     Xapian::PostingIterator i, end;
778     Xapian::Document document;
779     notmuch_private_status_t private_status;
780     notmuch_status_t status;
781     const char *old_filename;
782
783     old_filename = notmuch_message_get_filename(message);
784     old_filename = talloc_reference(local, old_filename);
785     if (unlikely (! old_filename))
786         return NOTMUCH_STATUS_OUT_OF_MEMORY;
787
788     status = _notmuch_message_add_filename (message, new_filename);
789     if (status)
790         return status;
791
792     status = _notmuch_database_filename_to_direntry (local, message->notmuch,
793                                                      old_filename, &direntry);
794     if (status)
795         return status;
796
797     private_status = _notmuch_message_remove_term (message, "file-direntry", direntry);
798     status = COERCE_STATUS (private_status,
799                             "Unexpected error from _notmuch_message_remove_term");
800
801     talloc_free (local);
802
803     return status;
804 }
805
806 notmuch_status_t
807 notmuch_message_add_tag (notmuch_message_t *message, const char *tag)
808 {
809     notmuch_private_status_t private_status;
810     notmuch_status_t status;
811
812     status = _notmuch_database_ensure_writable (message->notmuch);
813     if (status)
814         return status;
815
816     if (tag == NULL)
817         return NOTMUCH_STATUS_NULL_POINTER;
818
819     if (strlen (tag) > NOTMUCH_TAG_MAX)
820         return NOTMUCH_STATUS_TAG_TOO_LONG;
821
822     private_status = _notmuch_message_add_term (message, "tag", tag);
823     if (private_status) {
824         INTERNAL_ERROR ("_notmuch_message_add_term return unexpected value: %d\n",
825                         private_status);
826     }
827
828     if (! message->frozen)
829         _notmuch_message_sync (message);
830
831     return NOTMUCH_STATUS_SUCCESS;
832 }
833
834 notmuch_status_t
835 notmuch_message_remove_tag (notmuch_message_t *message, const char *tag)
836 {
837     notmuch_private_status_t private_status;
838     notmuch_status_t status;
839
840     status = _notmuch_database_ensure_writable (message->notmuch);
841     if (status)
842         return status;
843
844     if (tag == NULL)
845         return NOTMUCH_STATUS_NULL_POINTER;
846
847     if (strlen (tag) > NOTMUCH_TAG_MAX)
848         return NOTMUCH_STATUS_TAG_TOO_LONG;
849
850     private_status = _notmuch_message_remove_term (message, "tag", tag);
851     if (private_status) {
852         INTERNAL_ERROR ("_notmuch_message_remove_term return unexpected value: %d\n",
853                         private_status);
854     }
855
856     if (! message->frozen)
857         _notmuch_message_sync (message);
858
859     return NOTMUCH_STATUS_SUCCESS;
860 }
861
862 /* XXX: Needs to iterate over all message filenames. */
863 notmuch_status_t
864 notmuch_message_maildir_flags_to_tags (notmuch_message_t *message)
865 {
866     const char *flags, *p;
867     char f;
868     bool valid, unread;
869     unsigned i;
870     notmuch_status_t status;
871     const char *filename;
872
873     filename = notmuch_message_get_filename (message);
874
875     flags = strstr (filename, ":2,");
876     if (!flags)
877         return NOTMUCH_STATUS_FILE_NOT_EMAIL;
878     flags += 3;
879
880     /*  Check that the letters are valid Maildir flags */
881     f = 0;
882     valid = true;
883     for (p=flags; valid && *p; p++) {
884         switch (*p) {
885         case 'P':
886         case 'R':
887         case 'S':
888         case 'T':
889         case 'D':
890         case 'F':
891             if (*p > f) f=*p;
892             else valid = false;
893         break;
894         default:
895             valid = false;
896         }
897     }
898     if (!valid) {
899         fprintf (stderr, "Warning: Invalid maildir flags in filename %s\n", filename);
900         return NOTMUCH_STATUS_FILE_NOT_EMAIL;
901     }
902
903     status = notmuch_message_freeze (message);
904     if (status)
905         return status;
906     unread = true;
907     for (i = 0; i < ARRAY_SIZE(flag2tag); i++) {
908         if ((strchr (flags, flag2tag[i].flag) != NULL) ^ flag2tag[i].inverse) {
909             status = notmuch_message_add_tag (message, flag2tag[i].tag);
910         } else {
911             status = notmuch_message_remove_tag (message, flag2tag[i].tag);
912         }
913         if (status)
914             return status;
915     }
916     status = notmuch_message_thaw (message);
917
918     return status;
919 }
920
921 static void
922 maildir_get_new_flags(notmuch_message_t *message, char *flags)
923 {
924     notmuch_tags_t *tags;
925     const char *tag;
926     unsigned i;
927     char *p;
928
929     for (i = 0; i < ARRAY_SIZE(flag2tag); i++)
930         flags[i] = flag2tag[i].inverse ? flag2tag[i].flag : '\0';
931
932     for (tags = notmuch_message_get_tags (message);
933          notmuch_tags_valid (tags);
934          notmuch_tags_move_to_next (tags))
935     {
936         tag = notmuch_tags_get (tags);
937         for (i = 0; i < ARRAY_SIZE(flag2tag); i++) {
938             if (strcmp(tag, flag2tag[i].tag) == 0)
939                 flags[i] = flag2tag[i].inverse ? '\0' : flag2tag[i].flag;
940         }
941     }
942
943     p = flags;
944     for (i = 0; i < ARRAY_SIZE(flag2tag); i++) {
945         if (flags[i])
946             *p++ = flags[i];
947     }
948     *p = '\0';
949 }
950
951 static char *
952 maildir_get_subdir (char *filename)
953 {
954     char *p, *subdir = NULL;
955
956     p = filename + strlen (filename) - 1;
957     while (p > filename + 3 && *p != '/')
958         p--;
959     if (*p == '/') {
960         subdir = p - 3;
961         if (subdir > filename && *(subdir - 1) != '/')
962             subdir = NULL;
963     }
964     return subdir;
965 }
966
967 /* XXX: Needs to iterate over all filenames in the message
968  *
969  * XXX: Needs to ensure that existing, unsupported flags in the
970  *      filename are left unchanged (which also needs a test in the
971  *      test suite).
972  */
973 notmuch_status_t
974 notmuch_message_tags_to_maildir_flags (notmuch_message_t *message)
975 {
976     char flags[ARRAY_SIZE(flag2tag)+1];
977     const char *filename, *p;
978     char *filename_new, *subdir = NULL;
979     int ret;
980
981     maildir_get_new_flags (message, flags);
982
983     filename = notmuch_message_get_filename (message);
984     /* TODO: Iterate over all file names. */
985     p = strstr(filename, ":2,");
986     if ((p && strcmp (p+3, flags) == 0) ||
987         (!p && flags[0] == '\0')) {
988         // Return if flags are not to be changed - this suppresses
989         // moving the message from new/ to cur/ during initial
990         // tagging.
991         return NOTMUCH_STATUS_SUCCESS;
992     }
993     if (!p)
994         p = filename + strlen(filename);
995
996     filename_new = (char*)talloc_size(message, (p-filename) + 3 + sizeof(flags));
997     if (unlikely (filename_new == NULL))
998         return NOTMUCH_STATUS_OUT_OF_MEMORY;
999
1000     memcpy(filename_new, filename, p-filename);
1001     filename_new[p-filename] = '\0';
1002
1003     /* If message is in new/ move it under cur/. */
1004     subdir = maildir_get_subdir (filename_new);
1005     if (subdir && memcmp (subdir, "new/", 4) == 0)
1006         memcpy (subdir, "cur/", 4);
1007
1008     strcpy (filename_new+(p-filename), ":2,");
1009     strcpy (filename_new+(p-filename)+3, flags);
1010
1011     if (strcmp (filename, filename_new) != 0) {
1012         ret = rename (filename, filename_new);
1013         if (ret == -1) {
1014             perror (talloc_asprintf (message, "rename of %s to %s failed",
1015                                      filename, filename_new));
1016             exit (1);
1017         }
1018         return _notmuch_message_rename (message, filename_new);
1019         /* _notmuch_message_sync is our caller. Do not call it here. */
1020     }
1021     return NOTMUCH_STATUS_SUCCESS;
1022 }
1023
1024 notmuch_status_t
1025 notmuch_message_remove_all_tags (notmuch_message_t *message)
1026 {
1027     notmuch_private_status_t private_status;
1028     notmuch_status_t status;
1029     notmuch_tags_t *tags;
1030     const char *tag;
1031
1032     status = _notmuch_database_ensure_writable (message->notmuch);
1033     if (status)
1034         return status;
1035
1036     for (tags = notmuch_message_get_tags (message);
1037          notmuch_tags_valid (tags);
1038          notmuch_tags_move_to_next (tags))
1039     {
1040         tag = notmuch_tags_get (tags);
1041
1042         private_status = _notmuch_message_remove_term (message, "tag", tag);
1043         if (private_status) {
1044             INTERNAL_ERROR ("_notmuch_message_remove_term return unexpected value: %d\n",
1045                             private_status);
1046         }
1047     }
1048
1049     if (! message->frozen)
1050         _notmuch_message_sync (message);
1051
1052     return NOTMUCH_STATUS_SUCCESS;
1053 }
1054
1055 notmuch_status_t
1056 notmuch_message_freeze (notmuch_message_t *message)
1057 {
1058     notmuch_status_t status;
1059
1060     status = _notmuch_database_ensure_writable (message->notmuch);
1061     if (status)
1062         return status;
1063
1064     message->frozen++;
1065
1066     return NOTMUCH_STATUS_SUCCESS;
1067 }
1068
1069 notmuch_status_t
1070 notmuch_message_thaw (notmuch_message_t *message)
1071 {
1072     notmuch_status_t status;
1073
1074     status = _notmuch_database_ensure_writable (message->notmuch);
1075     if (status)
1076         return status;
1077
1078     if (message->frozen > 0) {
1079         message->frozen--;
1080         if (message->frozen == 0)
1081             _notmuch_message_sync (message);
1082         return NOTMUCH_STATUS_SUCCESS;
1083     } else {
1084         return NOTMUCH_STATUS_UNBALANCED_FREEZE_THAW;
1085     }
1086 }
1087
1088 void
1089 notmuch_message_destroy (notmuch_message_t *message)
1090 {
1091     talloc_free (message);
1092 }