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