1 /* message.cc - Results of message-based searches from a notmuch database
3 * Copyright © 2009 Carl Worth
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.
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.
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/ .
18 * Author: Carl Worth <cworth@cworth.org>
21 #include "notmuch-private.h"
22 #include "database-private.h"
26 struct _notmuch_message {
27 notmuch_database_t *notmuch;
33 struct _notmuch_tags {
34 Xapian::TermIterator iterator;
35 Xapian::TermIterator iterator_end;
38 struct _notmuch_thread_ids {
43 #define ARRAY_SIZE(arr) (sizeof (arr) / sizeof (arr[0]))
45 /* These prefix values are specifically chosen to be compatible
46 * with sup, (http://sup.rubyforge.org), written by
47 * William Morgan <wmorgan-sup@masanjin.net>, and released
48 * under the GNU GPL v2.
56 prefix_t NORMAL_PREFIX[] = {
59 { "from_name", "FN" },
65 prefix_t BOOLEAN_PREFIX[] = {
67 { "from_email", "FE" },
74 { "attachment_extension", "O" },
81 _find_prefix (const char *name)
85 for (i = 0; i < ARRAY_SIZE (NORMAL_PREFIX); i++)
86 if (strcmp (name, NORMAL_PREFIX[i].name) == 0)
87 return NORMAL_PREFIX[i].prefix;
89 for (i = 0; i < ARRAY_SIZE (BOOLEAN_PREFIX); i++)
90 if (strcmp (name, BOOLEAN_PREFIX[i].name) == 0)
91 return BOOLEAN_PREFIX[i].prefix;
96 /* We end up having to call the destructor explicitly because we had
97 * to use "placement new" in order to initialize C++ objects within a
98 * block that we allocated with talloc. So C++ is making talloc
99 * slightly less simple to use, (we wouldn't need
100 * talloc_set_destructor at all otherwise).
103 _notmuch_message_destructor (notmuch_message_t *message)
105 message->doc.~Document ();
111 _notmuch_message_create (const void *talloc_owner,
112 notmuch_database_t *notmuch,
115 notmuch_message_t *message;
117 message = talloc (talloc_owner, notmuch_message_t);
118 if (unlikely (message == NULL))
121 message->notmuch = notmuch;
122 message->doc_id = doc_id;
123 message->message_id = NULL; /* lazily created */
124 new (&message->doc) Xapian::Document;
126 talloc_set_destructor (message, _notmuch_message_destructor);
128 message->doc = notmuch->xapian_db->get_document (doc_id);
134 notmuch_message_get_message_id (notmuch_message_t *message)
136 Xapian::TermIterator i;
138 if (message->message_id)
139 return message->message_id;
141 i = message->doc.termlist_begin ();
142 i.skip_to (_find_prefix ("msgid"));
144 /* XXX: This should really be an internal error, but we'll need to
145 * fix the add_message side of things first. */
146 if (i == message->doc.termlist_end ())
149 message->message_id = talloc_strdup (message, (*i).c_str () + 1);
150 return message->message_id;
153 /* We end up having to call the destructors explicitly because we had
154 * to use "placement new" in order to initialize C++ objects within a
155 * block that we allocated with talloc. So C++ is making talloc
156 * slightly less simple to use, (we wouldn't need
157 * talloc_set_destructor at all otherwise).
160 _notmuch_tags_destructor (notmuch_tags_t *tags)
162 tags->iterator.~TermIterator ();
163 tags->iterator_end.~TermIterator ();
169 notmuch_message_get_tags (notmuch_message_t *message)
171 notmuch_tags_t *tags;
173 tags = talloc (message, notmuch_tags_t);
174 if (unlikely (tags == NULL))
177 new (&tags->iterator) Xapian::TermIterator;
178 new (&tags->iterator_end) Xapian::TermIterator;
180 talloc_set_destructor (tags, _notmuch_tags_destructor);
182 tags->iterator = message->doc.termlist_begin ();
183 tags->iterator.skip_to (_find_prefix ("tag"));
184 tags->iterator_end = message->doc.termlist_end ();
189 notmuch_thread_ids_t *
190 notmuch_message_get_thread_ids (notmuch_message_t *message)
192 notmuch_thread_ids_t *thread_ids;
195 thread_ids = talloc (message, notmuch_thread_ids_t);
196 if (unlikely (thread_ids == NULL))
199 id_str = message->doc.get_value (NOTMUCH_VALUE_THREAD);
200 thread_ids->next = talloc_strdup (message, id_str.c_str ());
202 /* Initialize thread_ids->current and terminate first ID. */
203 notmuch_thread_ids_advance (thread_ids);
209 thread_id_generate (thread_id_t *thread_id)
211 static int seeded = 0;
218 dev_random = fopen ("/dev/random", "r");
219 if (dev_random == NULL) {
222 fread ((void *) &value, sizeof (value), 1, dev_random);
230 for (i = 0; i < NOTMUCH_THREAD_ID_DIGITS; i += 8) {
232 sprintf (s, "%08x", value);
237 /* Synchronize changes made to message->doc into the database. */
239 _notmuch_message_sync (notmuch_message_t *message)
241 Xapian::WritableDatabase *db = message->notmuch->xapian_db;
243 db->replace_document (message->doc_id, message->doc);
246 /* Add a name:value term to 'message', (the actual term will be
247 * encoded by prefixing the value with a short prefix). See
248 * NORMAL_PREFIX and BOOLEAN_PREFIX arrays for the mapping of term
249 * names to prefix values.
251 * This change will not be reflected in the database until the next
252 * call to _notmuch_message_set_sync. */
253 notmuch_private_status_t
254 _notmuch_message_add_term (notmuch_message_t *message,
255 const char *prefix_name,
262 return NOTMUCH_PRIVATE_STATUS_NULL_POINTER;
264 term = talloc_asprintf (message, "%s%s",
265 _find_prefix (prefix_name), value);
267 if (strlen (term) > NOTMUCH_TERM_MAX)
268 return NOTMUCH_PRIVATE_STATUS_TERM_TOO_LONG;
270 message->doc.add_term (term);
274 return NOTMUCH_PRIVATE_STATUS_SUCCESS;
277 /* Remove a name:value term from 'message', (the actual term will be
278 * encoded by prefixing the value with a short prefix). See
279 * NORMAL_PREFIX and BOOLEAN_PREFIX arrays for the mapping of term
280 * names to prefix values.
282 * This change will not be reflected in the database until the next
283 * call to _notmuch_message_set_sync. */
284 notmuch_private_status_t
285 _notmuch_message_remove_term (notmuch_message_t *message,
286 const char *prefix_name,
292 return NOTMUCH_PRIVATE_STATUS_NULL_POINTER;
294 term = talloc_asprintf (message, "%s%s",
295 _find_prefix (prefix_name), value);
297 if (strlen (term) > NOTMUCH_TERM_MAX)
298 return NOTMUCH_PRIVATE_STATUS_TERM_TOO_LONG;
300 message->doc.remove_term (term);
304 return NOTMUCH_PRIVATE_STATUS_SUCCESS;
308 notmuch_message_add_tag (notmuch_message_t *message, const char *tag)
310 notmuch_private_status_t status;
313 return NOTMUCH_STATUS_NULL_POINTER;
315 if (strlen (tag) > NOTMUCH_TAG_MAX)
316 return NOTMUCH_STATUS_TAG_TOO_LONG;
318 status = _notmuch_message_add_term (message, "tag", tag);
320 fprintf (stderr, "Internal error: _notmuch_message_add_term return unexpected value: %d\n",
325 _notmuch_message_sync (message);
327 return NOTMUCH_STATUS_SUCCESS;
331 notmuch_message_remove_tag (notmuch_message_t *message, const char *tag)
333 notmuch_private_status_t status;
336 return NOTMUCH_STATUS_NULL_POINTER;
338 if (strlen (tag) > NOTMUCH_TAG_MAX)
339 return NOTMUCH_STATUS_TAG_TOO_LONG;
341 status = _notmuch_message_remove_term (message, "tag", tag);
343 fprintf (stderr, "Internal error: _notmuch_message_remove_term return unexpected value: %d\n",
348 _notmuch_message_sync (message);
350 return NOTMUCH_STATUS_SUCCESS;
354 notmuch_message_destroy (notmuch_message_t *message)
356 talloc_free (message);
360 notmuch_tags_has_more (notmuch_tags_t *tags)
364 if (tags->iterator == tags->iterator_end)
368 if (s.size () && s[0] == 'L')
375 notmuch_tags_get (notmuch_tags_t *tags)
377 return talloc_strdup (tags, (*tags->iterator).c_str () + 1);
381 notmuch_tags_advance (notmuch_tags_t *tags)
387 notmuch_tags_destroy (notmuch_tags_t *tags)
393 notmuch_thread_ids_has_more (notmuch_thread_ids_t *thread_ids)
395 if (thread_ids->current == NULL || *thread_ids->current == '\0')
402 notmuch_thread_ids_get (notmuch_thread_ids_t *thread_ids)
404 return thread_ids->current;
408 notmuch_thread_ids_advance (notmuch_thread_ids_t *thread_ids)
410 thread_ids->current = strsep (&thread_ids->next, ",");
414 notmuch_thread_ids_destroy (notmuch_thread_ids_t *thread_ids)
416 talloc_free (thread_ids);