X-Git-Url: https://git.notmuchmail.org/git?a=blobdiff_plain;ds=sidebyside;f=message.cc;h=74a173e1ec2060d2bfbe7b2cc498cac5ddcfae85;hb=97775ef438a6015c63d6a5cf25f85937153cde59;hp=338d953f2dfb744f8b98c677ab1cf5c711a1f823;hpb=defd216487bb6549d6e866fe578d2c3d3de77fd6;p=notmuch diff --git a/message.cc b/message.cc index 338d953f..74a173e1 100644 --- a/message.cc +++ b/message.cc @@ -190,14 +190,14 @@ notmuch_thread_ids_t * notmuch_message_get_thread_ids (notmuch_message_t *message) { notmuch_thread_ids_t *thread_ids; - const char *id_str; + std::string id_str; thread_ids = talloc (message, notmuch_thread_ids_t); if (unlikely (thread_ids == NULL)) return NULL; - id_str = message->doc.get_value (NOTMUCH_VALUE_THREAD).c_str (); - thread_ids->next = talloc_strdup (message, id_str); + id_str = message->doc.get_value (NOTMUCH_VALUE_THREAD); + thread_ids->next = talloc_strdup (message, id_str.c_str ()); /* Initialize thread_ids->current and terminate first ID. */ notmuch_thread_ids_advance (thread_ids); @@ -214,6 +214,13 @@ _notmuch_message_sync (notmuch_message_t *message) db->replace_document (message->doc_id, message->doc); } +/* Add a name:value term to 'message', (the actual term will be + * encoded by prefixing the value with a short prefix). See + * NORMAL_PREFIX and BOOLEAN_PREFIX arrays for the mapping of term + * names to prefix values. + * + * This change will not be reflected in the database until the next + * call to _notmuch_message_set_sync. */ notmuch_private_status_t _notmuch_message_add_term (notmuch_message_t *message, const char *prefix_name, @@ -232,13 +239,19 @@ _notmuch_message_add_term (notmuch_message_t *message, return NOTMUCH_PRIVATE_STATUS_TERM_TOO_LONG; message->doc.add_term (term); - _notmuch_message_sync (message); talloc_free (term); return NOTMUCH_PRIVATE_STATUS_SUCCESS; } +/* Remove a name:value term from 'message', (the actual term will be + * encoded by prefixing the value with a short prefix). See + * NORMAL_PREFIX and BOOLEAN_PREFIX arrays for the mapping of term + * names to prefix values. + * + * This change will not be reflected in the database until the next + * call to _notmuch_message_set_sync. */ notmuch_private_status_t _notmuch_message_remove_term (notmuch_message_t *message, const char *prefix_name, @@ -256,7 +269,6 @@ _notmuch_message_remove_term (notmuch_message_t *message, return NOTMUCH_PRIVATE_STATUS_TERM_TOO_LONG; message->doc.remove_term (term); - _notmuch_message_sync (message); talloc_free (term); @@ -281,6 +293,8 @@ notmuch_message_add_tag (notmuch_message_t *message, const char *tag) exit (1); } + _notmuch_message_sync (message); + return NOTMUCH_STATUS_SUCCESS; } @@ -302,6 +316,8 @@ notmuch_message_remove_tag (notmuch_message_t *message, const char *tag) exit (1); } + _notmuch_message_sync (message); + return NOTMUCH_STATUS_SUCCESS; }