]> git.notmuchmail.org Git - notmuch/blob - lib/message.cc
ee52672a6ca5e1c1d514a31bb63271ac03725baa
[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 notmuch_status_t
863 notmuch_message_maildir_flags_to_tags (notmuch_message_t *message)
864 {
865     const char *flags;
866     notmuch_status_t status;
867     notmuch_filenames_t *filenames;
868     const char *filename;
869     char *combined_flags = talloc_strdup (message, "");
870     unsigned i;
871
872     for (filenames = notmuch_message_get_filenames (message);
873          notmuch_filenames_valid (filenames);
874          notmuch_filenames_move_to_next (filenames))
875     {
876         filename = notmuch_filenames_get (filenames);
877
878         flags = strstr (filename, ":2,");
879         if (! flags)
880             continue;
881
882         flags += 3;
883
884         combined_flags = talloc_strdup_append (combined_flags, flags);
885     }
886
887     status = notmuch_message_freeze (message);
888     if (status)
889         return status;
890
891     for (i = 0; i < ARRAY_SIZE(flag2tag); i++) {
892         if ((strchr (combined_flags, flag2tag[i].flag) != NULL)
893             ^ 
894             flag2tag[i].inverse)
895         {
896             status = notmuch_message_add_tag (message, flag2tag[i].tag);
897         } else {
898             status = notmuch_message_remove_tag (message, flag2tag[i].tag);
899         }
900         if (status)
901             return status;
902     }
903     status = notmuch_message_thaw (message);
904
905     talloc_free (combined_flags);
906
907     return status;
908 }
909
910 static void
911 maildir_get_new_flags(notmuch_message_t *message, char *flags)
912 {
913     notmuch_tags_t *tags;
914     const char *tag;
915     unsigned i;
916     char *p;
917
918     for (i = 0; i < ARRAY_SIZE(flag2tag); i++)
919         flags[i] = flag2tag[i].inverse ? flag2tag[i].flag : '\0';
920
921     for (tags = notmuch_message_get_tags (message);
922          notmuch_tags_valid (tags);
923          notmuch_tags_move_to_next (tags))
924     {
925         tag = notmuch_tags_get (tags);
926         for (i = 0; i < ARRAY_SIZE(flag2tag); i++) {
927             if (strcmp(tag, flag2tag[i].tag) == 0)
928                 flags[i] = flag2tag[i].inverse ? '\0' : flag2tag[i].flag;
929         }
930     }
931
932     p = flags;
933     for (i = 0; i < ARRAY_SIZE(flag2tag); i++) {
934         if (flags[i])
935             *p++ = flags[i];
936     }
937     *p = '\0';
938 }
939
940 static char *
941 maildir_get_subdir (char *filename)
942 {
943     char *p, *subdir = NULL;
944
945     p = filename + strlen (filename) - 1;
946     while (p > filename + 3 && *p != '/')
947         p--;
948     if (*p == '/') {
949         subdir = p - 3;
950         if (subdir > filename && *(subdir - 1) != '/')
951             subdir = NULL;
952     }
953     return subdir;
954 }
955
956 /* XXX: Needs to iterate over all filenames in the message
957  *
958  * XXX: Needs to ensure that existing, unsupported flags in the
959  *      filename are left unchanged (which also needs a test in the
960  *      test suite).
961  */
962 notmuch_status_t
963 notmuch_message_tags_to_maildir_flags (notmuch_message_t *message)
964 {
965     char flags[ARRAY_SIZE(flag2tag)+1];
966     const char *filename, *p;
967     char *filename_new, *subdir = NULL;
968     int ret;
969
970     maildir_get_new_flags (message, flags);
971
972     filename = notmuch_message_get_filename (message);
973     /* TODO: Iterate over all file names. */
974     p = strstr(filename, ":2,");
975     if ((p && strcmp (p+3, flags) == 0) ||
976         (!p && flags[0] == '\0')) {
977         // Return if flags are not to be changed - this suppresses
978         // moving the message from new/ to cur/ during initial
979         // tagging.
980         return NOTMUCH_STATUS_SUCCESS;
981     }
982     if (!p)
983         p = filename + strlen(filename);
984
985     filename_new = (char*)talloc_size(message, (p-filename) + 3 + sizeof(flags));
986     if (unlikely (filename_new == NULL))
987         return NOTMUCH_STATUS_OUT_OF_MEMORY;
988
989     memcpy(filename_new, filename, p-filename);
990     filename_new[p-filename] = '\0';
991
992     /* If message is in new/ move it under cur/. */
993     subdir = maildir_get_subdir (filename_new);
994     if (subdir && memcmp (subdir, "new/", 4) == 0)
995         memcpy (subdir, "cur/", 4);
996
997     strcpy (filename_new+(p-filename), ":2,");
998     strcpy (filename_new+(p-filename)+3, flags);
999
1000     if (strcmp (filename, filename_new) != 0) {
1001         ret = rename (filename, filename_new);
1002         if (ret == -1) {
1003             perror (talloc_asprintf (message, "rename of %s to %s failed",
1004                                      filename, filename_new));
1005             exit (1);
1006         }
1007         return _notmuch_message_rename (message, filename_new);
1008         /* _notmuch_message_sync is our caller. Do not call it here. */
1009     }
1010     return NOTMUCH_STATUS_SUCCESS;
1011 }
1012
1013 notmuch_status_t
1014 notmuch_message_remove_all_tags (notmuch_message_t *message)
1015 {
1016     notmuch_private_status_t private_status;
1017     notmuch_status_t status;
1018     notmuch_tags_t *tags;
1019     const char *tag;
1020
1021     status = _notmuch_database_ensure_writable (message->notmuch);
1022     if (status)
1023         return status;
1024
1025     for (tags = notmuch_message_get_tags (message);
1026          notmuch_tags_valid (tags);
1027          notmuch_tags_move_to_next (tags))
1028     {
1029         tag = notmuch_tags_get (tags);
1030
1031         private_status = _notmuch_message_remove_term (message, "tag", tag);
1032         if (private_status) {
1033             INTERNAL_ERROR ("_notmuch_message_remove_term return unexpected value: %d\n",
1034                             private_status);
1035         }
1036     }
1037
1038     if (! message->frozen)
1039         _notmuch_message_sync (message);
1040
1041     return NOTMUCH_STATUS_SUCCESS;
1042 }
1043
1044 notmuch_status_t
1045 notmuch_message_freeze (notmuch_message_t *message)
1046 {
1047     notmuch_status_t status;
1048
1049     status = _notmuch_database_ensure_writable (message->notmuch);
1050     if (status)
1051         return status;
1052
1053     message->frozen++;
1054
1055     return NOTMUCH_STATUS_SUCCESS;
1056 }
1057
1058 notmuch_status_t
1059 notmuch_message_thaw (notmuch_message_t *message)
1060 {
1061     notmuch_status_t status;
1062
1063     status = _notmuch_database_ensure_writable (message->notmuch);
1064     if (status)
1065         return status;
1066
1067     if (message->frozen > 0) {
1068         message->frozen--;
1069         if (message->frozen == 0)
1070             _notmuch_message_sync (message);
1071         return NOTMUCH_STATUS_SUCCESS;
1072     } else {
1073         return NOTMUCH_STATUS_UNBALANCED_FREEZE_THAW;
1074     }
1075 }
1076
1077 void
1078 notmuch_message_destroy (notmuch_message_t *message)
1079 {
1080     talloc_free (message);
1081 }