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"
26 struct _notmuch_query {
27 notmuch_database_t *notmuch;
28 const char *query_string;
32 struct _notmuch_results {
33 notmuch_database_t *notmuch;
34 Xapian::MSetIterator iterator;
35 Xapian::MSetIterator iterator_end;
39 notmuch_query_create (notmuch_database_t *notmuch,
40 const char *query_string)
42 notmuch_query_t *query;
44 query = talloc (NULL, notmuch_query_t);
45 if (unlikely (query == NULL))
48 query->notmuch = notmuch;
50 query->query_string = talloc_strdup (query, query_string);
52 query->sort = NOTMUCH_SORT_DATE_OLDEST_FIRST;
58 notmuch_query_set_sort (notmuch_query_t *query, notmuch_sort_t sort)
63 /* We end up having to call the destructors explicitly because we had
64 * to use "placement new" in order to initialize C++ objects within a
65 * block that we allocated with talloc. So C++ is making talloc
66 * slightly less simple to use, (we wouldn't need
67 * talloc_set_destructor at all otherwise).
70 _notmuch_results_destructor (notmuch_results_t *results)
72 results->iterator.~MSetIterator ();
73 results->iterator_end.~MSetIterator ();
79 notmuch_query_search (notmuch_query_t *query)
81 notmuch_database_t *notmuch = query->notmuch;
82 const char *query_string = query->query_string;
83 notmuch_results_t *results;
85 results = talloc (query, notmuch_results_t);
86 if (unlikely (results == NULL))
90 Xapian::Enquire enquire (*notmuch->xapian_db);
91 Xapian::Query mail_query ("Kmail");
92 Xapian::Query string_query, final_query;
94 unsigned int flags = (Xapian::QueryParser::FLAG_BOOLEAN &
95 Xapian::QueryParser::FLAG_PHRASE &
96 Xapian::QueryParser::FLAG_LOVEHATE &
97 Xapian::QueryParser::FLAG_BOOLEAN_ANY_CASE &
98 Xapian::QueryParser::FLAG_WILDCARD);
100 if (strcmp (query_string, "") == 0) {
101 final_query = mail_query;
103 string_query = notmuch->query_parser->
104 parse_query (query_string, flags);
105 final_query = Xapian::Query (Xapian::Query::OP_AND,
106 mail_query, string_query);
109 switch (query->sort) {
110 case NOTMUCH_SORT_DATE_OLDEST_FIRST:
111 enquire.set_sort_by_value (NOTMUCH_VALUE_DATE, FALSE);
113 case NOTMUCH_SORT_DATE_NEWEST_FIRST:
114 enquire.set_sort_by_value (NOTMUCH_VALUE_DATE, TRUE);
116 case NOTMUCH_SORT_MESSAGE_ID:
117 enquire.set_sort_by_value (NOTMUCH_VALUE_MESSAGE_ID, FALSE);
121 enquire.set_query (final_query);
123 mset = enquire.get_mset (0, notmuch->xapian_db->get_doccount ());
125 results->notmuch = notmuch;
127 new (&results->iterator) Xapian::MSetIterator ();
128 new (&results->iterator_end) Xapian::MSetIterator ();
130 talloc_set_destructor (results, _notmuch_results_destructor);
132 results->iterator = mset.begin ();
133 results->iterator_end = mset.end ();
135 } catch (const Xapian::Error &error) {
136 fprintf (stderr, "A Xapian exception occurred: %s\n",
137 error.get_msg().c_str());
144 notmuch_query_destroy (notmuch_query_t *query)
150 notmuch_results_has_more (notmuch_results_t *results)
152 return (results->iterator != results->iterator_end);
156 notmuch_results_get (notmuch_results_t *results)
158 Xapian::docid doc_id;
160 doc_id = *results->iterator;
162 return _notmuch_message_create (results,
163 results->notmuch, doc_id);
167 notmuch_results_advance (notmuch_results_t *results)
173 notmuch_results_destroy (notmuch_results_t *results)
175 talloc_free (results);