]> git.notmuchmail.org Git - notmuch/blob - message.cc
22c7598d05e6d721b31e3791e569e7da8bf4a210
[notmuch] / 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 <xapian.h>
25
26 struct _notmuch_message {
27     notmuch_database_t *notmuch;
28     Xapian::docid doc_id;
29     char *message_id;
30     Xapian::Document doc;
31 };
32
33 struct _notmuch_tags {
34     Xapian::TermIterator iterator;
35     Xapian::TermIterator iterator_end;
36 };
37
38 struct _notmuch_thread_ids {
39     char *current;
40     char *next;
41 };
42
43 #define ARRAY_SIZE(arr) (sizeof (arr) / sizeof (arr[0]))
44
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.
49  */
50
51 typedef struct {
52     const char *name;
53     const char *prefix;
54 } prefix_t;
55
56 prefix_t NORMAL_PREFIX[] = {
57     { "subject", "S" },
58     { "body", "B" },
59     { "from_name", "FN" },
60     { "to_name", "TN" },
61     { "name", "N" },
62     { "attachment", "A" }
63 };
64
65 prefix_t BOOLEAN_PREFIX[] = {
66     { "type", "K" },
67     { "from_email", "FE" },
68     { "to_email", "TE" },
69     { "email", "E" },
70     { "date", "D" },
71     { "label", "L" },
72     { "tag", "L" },
73     { "source_id", "I" },
74     { "attachment_extension", "O" },
75     { "msgid", "Q" },
76     { "thread", "H" },
77     { "ref", "R" }
78 };
79
80 const char *
81 _find_prefix (const char *name)
82 {
83     unsigned int i;
84
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;
88
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;
92
93     return "";
94 }
95
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).
101  */
102 static int
103 _notmuch_message_destructor (notmuch_message_t *message)
104 {
105     message->doc.~Document ();
106
107     return 0;
108 }
109
110 notmuch_message_t *
111 _notmuch_message_create (const void *talloc_owner,
112                          notmuch_database_t *notmuch,
113                          unsigned int doc_id)
114 {
115     notmuch_message_t *message;
116
117     message = talloc (talloc_owner, notmuch_message_t);
118     if (unlikely (message == NULL))
119         return NULL;
120
121     message->notmuch = notmuch;
122     message->doc_id = doc_id;
123     message->message_id = NULL; /* lazily created */
124     new (&message->doc) Xapian::Document;
125
126     talloc_set_destructor (message, _notmuch_message_destructor);
127
128     message->doc = notmuch->xapian_db->get_document (doc_id);
129
130     return message;
131 }
132
133 const char *
134 notmuch_message_get_message_id (notmuch_message_t *message)
135 {
136     Xapian::TermIterator i;
137
138     if (message->message_id)
139         return message->message_id;
140
141     i = message->doc.termlist_begin ();
142     i.skip_to (_find_prefix ("msgid"));
143
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 ())
147         return NULL;
148
149     message->message_id = talloc_strdup (message, (*i).c_str () + 1);
150     return message->message_id;
151 }
152
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).
158  */
159 static int
160 _notmuch_tags_destructor (notmuch_tags_t *tags)
161 {
162     tags->iterator.~TermIterator ();
163     tags->iterator_end.~TermIterator ();
164
165     return 0;
166 }
167
168 notmuch_tags_t *
169 notmuch_message_get_tags (notmuch_message_t *message)
170 {
171     notmuch_tags_t *tags;
172
173     tags = talloc (message, notmuch_tags_t);
174     if (unlikely (tags == NULL))
175         return NULL;
176
177     new (&tags->iterator) Xapian::TermIterator;
178     new (&tags->iterator_end) Xapian::TermIterator;
179
180     talloc_set_destructor (tags, _notmuch_tags_destructor);
181
182     tags->iterator = message->doc.termlist_begin ();
183     tags->iterator.skip_to (_find_prefix ("tag"));
184     tags->iterator_end = message->doc.termlist_end ();
185
186     return tags;
187 }
188
189 notmuch_thread_ids_t *
190 notmuch_message_get_thread_ids (notmuch_message_t *message)
191 {
192     notmuch_thread_ids_t *thread_ids;
193     const char *id_str;
194
195     thread_ids = talloc (message, notmuch_thread_ids_t);
196     if (unlikely (thread_ids == NULL))
197         return NULL;
198
199     id_str = message->doc.get_value (NOTMUCH_VALUE_THREAD).c_str ();
200     thread_ids->next = talloc_strdup (message, id_str);
201
202     /* Initialize thread_ids->current and terminate first ID. */
203     notmuch_thread_ids_advance (thread_ids);
204
205     return thread_ids;
206 }
207
208 void
209 notmuch_message_destroy (notmuch_message_t *message)
210 {
211     talloc_free (message);
212 }
213
214 notmuch_bool_t
215 notmuch_tags_has_more (notmuch_tags_t *tags)
216 {
217     std::string s;
218
219     if (tags->iterator == tags->iterator_end)
220         return FALSE;
221
222     s = *tags->iterator;
223     if (s.size () && s[0] == 'L')
224         return TRUE;
225     else
226         return FALSE;
227 }
228
229 const char *
230 notmuch_tags_get (notmuch_tags_t *tags)
231 {
232     return talloc_strdup (tags, (*tags->iterator).c_str () + 1);
233 }
234
235 void
236 notmuch_tags_advance (notmuch_tags_t *tags)
237 {
238     tags->iterator++;
239 }
240
241 void
242 notmuch_tags_destroy (notmuch_tags_t *tags)
243 {
244     talloc_free (tags);
245 }
246
247 notmuch_bool_t
248 notmuch_thread_ids_has_more (notmuch_thread_ids_t *thread_ids)
249 {
250     if (thread_ids->current == NULL || *thread_ids->current == '\0')
251         return FALSE;
252     else
253         return TRUE;
254 }
255
256 const char *
257 notmuch_thread_ids_get (notmuch_thread_ids_t *thread_ids)
258 {
259     return thread_ids->current;
260 }
261
262 void
263 notmuch_thread_ids_advance (notmuch_thread_ids_t *thread_ids)
264 {
265     thread_ids->current = strsep (&thread_ids->next, ",");
266 }
267
268 void
269 notmuch_thread_ids_destroy (notmuch_thread_ids_t *thread_ids)
270 {
271     talloc_free (thread_ids);
272 }