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