]> git.notmuchmail.org Git - notmuch/blob - query.cc
query: Remove the magic NOTMUCH_QUERY_ALL
[notmuch] / query.cc
1 /* query.cc - Support for searching 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_query {
27     notmuch_database_t *notmuch;
28     const char *query_string;
29     notmuch_sort_t sort;
30 };
31
32 struct _notmuch_results {
33     notmuch_database_t *notmuch;
34     Xapian::PostingIterator iterator;
35     Xapian::PostingIterator iterator_end;
36 };
37
38 notmuch_query_t *
39 notmuch_query_create (notmuch_database_t *notmuch,
40                       const char *query_string)
41 {
42     notmuch_query_t *query;
43
44     query = talloc (NULL, notmuch_query_t);
45     if (unlikely (query == NULL))
46         return NULL;
47
48     query->notmuch = notmuch;
49
50     query->query_string = talloc_strdup (query, query_string);
51
52     query->sort = NOTMUCH_SORT_DATE_OLDEST_FIRST;
53
54     return query;
55 }
56
57 void
58 notmuch_query_set_sort (notmuch_query_t *query, notmuch_sort_t sort)
59 {
60     query->sort = sort;
61 }
62
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).
68  */
69 static int
70 _notmuch_results_destructor (notmuch_results_t *results)
71 {
72     results->iterator.~PostingIterator ();
73     results->iterator_end.~PostingIterator ();
74
75     return 0;
76 }
77
78 notmuch_results_t *
79 notmuch_query_search (notmuch_query_t *query)
80 {
81     notmuch_results_t *results;
82
83     results = talloc (query, notmuch_results_t);
84     if (unlikely (results == NULL))
85         return NULL;
86
87     try {
88         if (strlen (query->query_string)) {
89             fprintf (stderr, "Error: Arbitrary search strings are not supported yet. Come back soon!\n");
90             exit (1);
91         }
92
93         results->notmuch = query->notmuch;
94         new (&results->iterator) Xapian::PostingIterator ();
95         new (&results->iterator_end) Xapian::PostingIterator ();
96
97         talloc_set_destructor (results, _notmuch_results_destructor);
98
99         results->iterator = query->notmuch->xapian_db->postlist_begin ("");
100         results->iterator_end = query->notmuch->xapian_db->postlist_end ("");
101
102     } catch (const Xapian::Error &error) {
103         fprintf (stderr, "A Xapian exception occurred: %s\n",
104                  error.get_msg().c_str());
105     }
106
107     return results;
108 }
109
110 void
111 notmuch_query_destroy (notmuch_query_t *query)
112 {
113     talloc_free (query);
114 }
115
116 notmuch_bool_t
117 notmuch_results_has_more (notmuch_results_t *results)
118 {
119     return (results->iterator != results->iterator_end);
120 }
121
122 notmuch_message_t *
123 notmuch_results_get (notmuch_results_t *results)
124 {
125     Xapian::docid doc_id;
126
127     doc_id = *results->iterator;
128
129     return _notmuch_message_create (results,
130                                     results->notmuch, doc_id);
131 }
132
133 void
134 notmuch_results_advance (notmuch_results_t *results)
135 {
136     results->iterator++;
137 }
138
139 void
140 notmuch_results_destroy (notmuch_results_t *results)
141 {
142     talloc_free (results);
143 }