1 /* query.cc - Support for searching 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"
24 #include <glib.h> /* GHashTable, GPtrArray */
26 struct _notmuch_query {
27 notmuch_database_t *notmuch;
28 const char *query_string;
30 notmuch_string_list_t *exclude_terms;
31 notmuch_exclude_t omit_excluded;
34 typedef struct _notmuch_mset_messages {
35 notmuch_messages_t base;
36 notmuch_database_t *notmuch;
37 Xapian::MSetIterator iterator;
38 Xapian::MSetIterator iterator_end;
39 } notmuch_mset_messages_t;
41 struct _notmuch_doc_id_set {
42 unsigned char *bitmap;
46 #define DOCIDSET_WORD(bit) ((bit) / CHAR_BIT)
47 #define DOCIDSET_BIT(bit) ((bit) % CHAR_BIT)
49 struct visible _notmuch_threads {
50 notmuch_query_t *query;
52 /* The ordered list of doc ids matched by the query. */
54 /* Our iterator's current position in doc_ids. */
55 unsigned int doc_id_pos;
56 /* The set of matched docid's that have not been assigned to a
57 * thread. Initially, this contains every docid in doc_ids. */
58 notmuch_doc_id_set_t match_set;
61 /* We need this in the message functions so forward declare. */
63 _notmuch_doc_id_set_init (void *ctx,
64 notmuch_doc_id_set_t *doc_ids,
70 char *env = getenv ("NOTMUCH_DEBUG_QUERY");
71 return (env && strcmp (env, "") != 0);
75 notmuch_query_create (notmuch_database_t *notmuch,
76 const char *query_string)
78 notmuch_query_t *query;
81 fprintf (stderr, "Query string is:\n%s\n", query_string);
83 query = talloc (NULL, notmuch_query_t);
84 if (unlikely (query == NULL))
87 query->notmuch = notmuch;
89 query->query_string = talloc_strdup (query, query_string);
91 query->sort = NOTMUCH_SORT_NEWEST_FIRST;
93 query->exclude_terms = _notmuch_string_list_create (query);
95 query->omit_excluded = NOTMUCH_EXCLUDE_TRUE;
101 notmuch_query_get_query_string (notmuch_query_t *query)
103 return query->query_string;
107 notmuch_query_set_omit_excluded (notmuch_query_t *query,
108 notmuch_exclude_t omit_excluded)
110 query->omit_excluded = omit_excluded;
114 notmuch_query_set_sort (notmuch_query_t *query, notmuch_sort_t sort)
120 notmuch_query_get_sort (notmuch_query_t *query)
126 notmuch_query_add_tag_exclude (notmuch_query_t *query, const char *tag)
128 char *term = talloc_asprintf (query, "%s%s", _find_prefix ("tag"), tag);
129 _notmuch_string_list_append (query->exclude_terms, term);
132 /* We end up having to call the destructors explicitly because we had
133 * to use "placement new" in order to initialize C++ objects within a
134 * block that we allocated with talloc. So C++ is making talloc
135 * slightly less simple to use, (we wouldn't need
136 * talloc_set_destructor at all otherwise).
139 _notmuch_messages_destructor (notmuch_mset_messages_t *messages)
141 messages->iterator.~MSetIterator ();
142 messages->iterator_end.~MSetIterator ();
147 /* Return a query that matches messages with the excluded tags
148 * registered with query. Any tags that explicitly appear in xquery
149 * will not be excluded, and will be removed from the list of exclude
150 * tags. The caller of this function has to combine the returned
151 * query appropriately.*/
153 _notmuch_exclude_tags (notmuch_query_t *query, Xapian::Query xquery)
155 Xapian::Query exclude_query = Xapian::Query::MatchNothing;
157 for (notmuch_string_node_t *term = query->exclude_terms->head; term;
159 Xapian::TermIterator it = xquery.get_terms_begin ();
160 Xapian::TermIterator end = xquery.get_terms_end ();
161 for (; it != end; it++) {
162 if ((*it).compare (term->string) == 0)
166 exclude_query = Xapian::Query (Xapian::Query::OP_OR,
167 exclude_query, Xapian::Query (term->string));
169 term->string = talloc_strdup (query, "");
171 return exclude_query;
175 notmuch_query_search_messages (notmuch_query_t *query)
177 notmuch_database_t *notmuch = query->notmuch;
178 const char *query_string = query->query_string;
179 notmuch_mset_messages_t *messages;
181 messages = talloc (query, notmuch_mset_messages_t);
182 if (unlikely (messages == NULL))
187 messages->base.is_of_list_type = FALSE;
188 messages->base.iterator = NULL;
189 messages->notmuch = notmuch;
190 new (&messages->iterator) Xapian::MSetIterator ();
191 new (&messages->iterator_end) Xapian::MSetIterator ();
193 talloc_set_destructor (messages, _notmuch_messages_destructor);
195 Xapian::Enquire enquire (*notmuch->xapian_db);
196 Xapian::Query mail_query (talloc_asprintf (query, "%s%s",
197 _find_prefix ("type"),
199 Xapian::Query string_query, final_query, exclude_query;
201 Xapian::MSetIterator iterator;
202 unsigned int flags = (Xapian::QueryParser::FLAG_BOOLEAN |
203 Xapian::QueryParser::FLAG_PHRASE |
204 Xapian::QueryParser::FLAG_LOVEHATE |
205 Xapian::QueryParser::FLAG_BOOLEAN_ANY_CASE |
206 Xapian::QueryParser::FLAG_WILDCARD |
207 Xapian::QueryParser::FLAG_PURE_NOT);
209 if (strcmp (query_string, "") == 0 ||
210 strcmp (query_string, "*") == 0)
212 final_query = mail_query;
214 string_query = notmuch->query_parser->
215 parse_query (query_string, flags);
216 final_query = Xapian::Query (Xapian::Query::OP_AND,
217 mail_query, string_query);
219 messages->base.excluded_doc_ids = NULL;
221 if (query->exclude_terms) {
222 exclude_query = _notmuch_exclude_tags (query, final_query);
224 if (query->omit_excluded != NOTMUCH_EXCLUDE_FALSE)
225 final_query = Xapian::Query (Xapian::Query::OP_AND_NOT,
226 final_query, exclude_query);
228 exclude_query = Xapian::Query (Xapian::Query::OP_AND,
229 exclude_query, final_query);
231 enquire.set_weighting_scheme (Xapian::BoolWeight());
232 enquire.set_query (exclude_query);
234 mset = enquire.get_mset (0, notmuch->xapian_db->get_doccount ());
236 GArray *excluded_doc_ids = g_array_new (FALSE, FALSE, sizeof (unsigned int));
238 for (iterator = mset.begin (); iterator != mset.end (); iterator++) {
239 unsigned int doc_id = *iterator;
240 g_array_append_val (excluded_doc_ids, doc_id);
242 messages->base.excluded_doc_ids = talloc (messages, _notmuch_doc_id_set);
243 _notmuch_doc_id_set_init (query, messages->base.excluded_doc_ids,
245 g_array_unref (excluded_doc_ids);
250 enquire.set_weighting_scheme (Xapian::BoolWeight());
252 switch (query->sort) {
253 case NOTMUCH_SORT_OLDEST_FIRST:
254 enquire.set_sort_by_value (NOTMUCH_VALUE_TIMESTAMP, FALSE);
256 case NOTMUCH_SORT_NEWEST_FIRST:
257 enquire.set_sort_by_value (NOTMUCH_VALUE_TIMESTAMP, TRUE);
259 case NOTMUCH_SORT_MESSAGE_ID:
260 enquire.set_sort_by_value (NOTMUCH_VALUE_MESSAGE_ID, FALSE);
262 case NOTMUCH_SORT_UNSORTED:
266 if (_debug_query ()) {
267 fprintf (stderr, "Exclude query is:\n%s\n",
268 exclude_query.get_description ().c_str ());
269 fprintf (stderr, "Final query is:\n%s\n",
270 final_query.get_description ().c_str ());
273 enquire.set_query (final_query);
275 mset = enquire.get_mset (0, notmuch->xapian_db->get_doccount ());
277 messages->iterator = mset.begin ();
278 messages->iterator_end = mset.end ();
280 return &messages->base;
282 } catch (const Xapian::Error &error) {
283 fprintf (stderr, "A Xapian exception occurred performing query: %s\n",
284 error.get_msg().c_str());
285 fprintf (stderr, "Query string was: %s\n", query->query_string);
286 notmuch->exception_reported = TRUE;
287 talloc_free (messages);
293 _notmuch_mset_messages_valid (notmuch_messages_t *messages)
295 notmuch_mset_messages_t *mset_messages;
297 mset_messages = (notmuch_mset_messages_t *) messages;
299 return (mset_messages->iterator != mset_messages->iterator_end);
303 _notmuch_mset_messages_get_doc_id (notmuch_messages_t *messages)
305 notmuch_mset_messages_t *mset_messages;
307 mset_messages = (notmuch_mset_messages_t *) messages;
309 if (! _notmuch_mset_messages_valid (&mset_messages->base))
312 return *mset_messages->iterator;
316 _notmuch_mset_messages_get (notmuch_messages_t *messages)
318 notmuch_message_t *message;
319 Xapian::docid doc_id;
320 notmuch_private_status_t status;
321 notmuch_mset_messages_t *mset_messages;
323 mset_messages = (notmuch_mset_messages_t *) messages;
325 if (! _notmuch_mset_messages_valid (&mset_messages->base))
328 doc_id = *mset_messages->iterator;
330 message = _notmuch_message_create (mset_messages,
331 mset_messages->notmuch, doc_id,
334 if (message == NULL &&
335 status == NOTMUCH_PRIVATE_STATUS_NO_DOCUMENT_FOUND)
337 INTERNAL_ERROR ("a messages iterator contains a non-existent document ID.\n");
340 if (messages->excluded_doc_ids &&
341 _notmuch_doc_id_set_contains (messages->excluded_doc_ids, doc_id))
342 notmuch_message_set_flag (message, NOTMUCH_MESSAGE_FLAG_EXCLUDED, TRUE);
348 _notmuch_mset_messages_move_to_next (notmuch_messages_t *messages)
350 notmuch_mset_messages_t *mset_messages;
352 mset_messages = (notmuch_mset_messages_t *) messages;
354 mset_messages->iterator++;
357 static notmuch_bool_t
358 _notmuch_doc_id_set_init (void *ctx,
359 notmuch_doc_id_set_t *doc_ids,
362 unsigned int max = 0;
363 unsigned char *bitmap;
365 for (unsigned int i = 0; i < arr->len; i++)
366 max = MAX(max, g_array_index (arr, unsigned int, i));
367 bitmap = talloc_zero_array (ctx, unsigned char, DOCIDSET_WORD(max) + 1);
372 doc_ids->bitmap = bitmap;
373 doc_ids->bound = max + 1;
375 for (unsigned int i = 0; i < arr->len; i++) {
376 unsigned int doc_id = g_array_index (arr, unsigned int, i);
377 bitmap[DOCIDSET_WORD(doc_id)] |= 1 << DOCIDSET_BIT(doc_id);
384 _notmuch_doc_id_set_contains (notmuch_doc_id_set_t *doc_ids,
387 if (doc_id >= doc_ids->bound)
389 return doc_ids->bitmap[DOCIDSET_WORD(doc_id)] & (1 << DOCIDSET_BIT(doc_id));
393 _notmuch_doc_id_set_remove (notmuch_doc_id_set_t *doc_ids,
396 if (doc_id < doc_ids->bound)
397 doc_ids->bitmap[DOCIDSET_WORD(doc_id)] &= ~(1 << DOCIDSET_BIT(doc_id));
400 /* Glib objects force use to use a talloc destructor as well, (but not
401 * nearly as ugly as the for messages due to C++ objects). At
402 * this point, I'd really like to have some talloc-friendly
403 * equivalents for the few pieces of glib that I'm using. */
405 _notmuch_threads_destructor (notmuch_threads_t *threads)
407 if (threads->doc_ids)
408 g_array_unref (threads->doc_ids);
414 notmuch_query_search_threads (notmuch_query_t *query)
416 notmuch_threads_t *threads;
417 notmuch_messages_t *messages;
419 threads = talloc (query, notmuch_threads_t);
422 threads->doc_ids = NULL;
423 talloc_set_destructor (threads, _notmuch_threads_destructor);
425 threads->query = query;
427 messages = notmuch_query_search_messages (query);
428 if (messages == NULL) {
429 talloc_free (threads);
433 threads->doc_ids = g_array_new (FALSE, FALSE, sizeof (unsigned int));
434 while (notmuch_messages_valid (messages)) {
435 unsigned int doc_id = _notmuch_mset_messages_get_doc_id (messages);
436 g_array_append_val (threads->doc_ids, doc_id);
437 notmuch_messages_move_to_next (messages);
439 threads->doc_id_pos = 0;
441 talloc_free (messages);
443 if (! _notmuch_doc_id_set_init (threads, &threads->match_set,
445 talloc_free (threads);
453 notmuch_query_destroy (notmuch_query_t *query)
459 notmuch_threads_valid (notmuch_threads_t *threads)
463 while (threads->doc_id_pos < threads->doc_ids->len) {
464 doc_id = g_array_index (threads->doc_ids, unsigned int,
465 threads->doc_id_pos);
466 if (_notmuch_doc_id_set_contains (&threads->match_set, doc_id))
469 threads->doc_id_pos++;
472 return threads->doc_id_pos < threads->doc_ids->len;
476 notmuch_threads_get (notmuch_threads_t *threads)
480 if (! notmuch_threads_valid (threads))
483 doc_id = g_array_index (threads->doc_ids, unsigned int,
484 threads->doc_id_pos);
485 return _notmuch_thread_create (threads->query,
486 threads->query->notmuch,
489 threads->query->exclude_terms,
490 threads->query->omit_excluded,
491 threads->query->sort);
495 notmuch_threads_move_to_next (notmuch_threads_t *threads)
497 threads->doc_id_pos++;
501 notmuch_threads_destroy (notmuch_threads_t *threads)
503 talloc_free (threads);
507 notmuch_query_count_messages (notmuch_query_t *query)
509 notmuch_database_t *notmuch = query->notmuch;
510 const char *query_string = query->query_string;
511 Xapian::doccount count = 0;
514 Xapian::Enquire enquire (*notmuch->xapian_db);
515 Xapian::Query mail_query (talloc_asprintf (query, "%s%s",
516 _find_prefix ("type"),
518 Xapian::Query string_query, final_query, exclude_query;
520 unsigned int flags = (Xapian::QueryParser::FLAG_BOOLEAN |
521 Xapian::QueryParser::FLAG_PHRASE |
522 Xapian::QueryParser::FLAG_LOVEHATE |
523 Xapian::QueryParser::FLAG_BOOLEAN_ANY_CASE |
524 Xapian::QueryParser::FLAG_WILDCARD |
525 Xapian::QueryParser::FLAG_PURE_NOT);
527 if (strcmp (query_string, "") == 0 ||
528 strcmp (query_string, "*") == 0)
530 final_query = mail_query;
532 string_query = notmuch->query_parser->
533 parse_query (query_string, flags);
534 final_query = Xapian::Query (Xapian::Query::OP_AND,
535 mail_query, string_query);
538 exclude_query = _notmuch_exclude_tags (query, final_query);
540 final_query = Xapian::Query (Xapian::Query::OP_AND_NOT,
541 final_query, exclude_query);
543 enquire.set_weighting_scheme(Xapian::BoolWeight());
544 enquire.set_docid_order(Xapian::Enquire::ASCENDING);
546 if (_debug_query ()) {
547 fprintf (stderr, "Exclude query is:\n%s\n",
548 exclude_query.get_description ().c_str ());
549 fprintf (stderr, "Final query is:\n%s\n",
550 final_query.get_description ().c_str ());
553 enquire.set_query (final_query);
555 mset = enquire.get_mset (0, notmuch->xapian_db->get_doccount ());
557 count = mset.get_matches_estimated();
559 } catch (const Xapian::Error &error) {
560 fprintf (stderr, "A Xapian exception occurred: %s\n",
561 error.get_msg().c_str());
562 fprintf (stderr, "Query string was: %s\n", query->query_string);
569 notmuch_query_count_threads (notmuch_query_t *query)
571 notmuch_messages_t *messages;
577 query->sort = NOTMUCH_SORT_UNSORTED;
578 messages = notmuch_query_search_messages (query);
580 if (messages == NULL)
583 hash = g_hash_table_new_full (g_str_hash, g_str_equal, NULL, NULL);
585 talloc_free (messages);
589 while (notmuch_messages_valid (messages)) {
590 notmuch_message_t *message = notmuch_messages_get (messages);
591 const char *thread_id = notmuch_message_get_thread_id (message);
592 char *thread_id_copy = talloc_strdup (messages, thread_id);
593 if (unlikely (thread_id_copy == NULL)) {
594 notmuch_message_destroy (message);
598 g_hash_table_insert (hash, thread_id_copy, NULL);
599 notmuch_message_destroy (message);
600 notmuch_messages_move_to_next (messages);
603 count = g_hash_table_size (hash);
606 g_hash_table_unref (hash);
607 talloc_free (messages);