]> git.notmuchmail.org Git - notmuch/blob - bindings/ruby/query.c
Initial ruby bindings
[notmuch] / bindings / ruby / query.c
1 /* The Ruby interface to the notmuch mail library
2  *
3  * Copyright © 2010 Ali Polatel
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: Ali Polatel <alip@exherbo.org>
19  */
20
21 #include "defs.h"
22
23 /*
24  * call-seq: QUERY.sort=(fixnum) => nil
25  *
26  * Set sort type of the +QUERY+
27  */
28 VALUE
29 notmuch_rb_query_set_sort(VALUE self, VALUE sortv)
30 {
31     notmuch_rb_query_t *query;
32
33     Data_Get_Struct(self, notmuch_rb_query_t, query);
34
35     if (!FIXNUM_P(sortv))
36         rb_raise(rb_eTypeError, "Not a fixnum");
37
38     notmuch_query_set_sort(query->nm_query, FIX2UINT(sortv));
39     return Qnil;
40 }
41
42 /*
43  * call-seq: QUERY.search_threads => THREADS
44  *
45  * Search for threads
46  */
47 VALUE
48 notmuch_rb_query_search_threads(VALUE self)
49 {
50     notmuch_rb_query_t *query;
51     notmuch_rb_threads_t *threads;
52     VALUE threadsv;
53
54     Data_Get_Struct(self, notmuch_rb_query_t, query);
55
56     threadsv = Data_Make_Struct(notmuch_rb_cThreads, notmuch_rb_threads_t,
57             notmuch_rb_threads_mark, notmuch_rb_threads_free, threads);
58     threads->nm_threads = notmuch_query_search_threads(query->nm_query);
59     threads->query = self;
60     if (!threads->nm_threads)
61         rb_raise(notmuch_rb_eMemoryError, "out of memory");
62
63     return threadsv;
64 }
65
66 /*
67  * call-seq: QUERY.search_messages => MESSAGES
68  *
69  * Search for messages
70  */
71 VALUE
72 notmuch_rb_query_search_messages(VALUE self)
73 {
74     notmuch_rb_query_t *query;
75     notmuch_rb_messages_t *messages;
76     VALUE messagesv;
77
78     Data_Get_Struct(self, notmuch_rb_query_t, query);
79
80     messagesv = Data_Make_Struct(notmuch_rb_cMessages, notmuch_rb_messages_t,
81             notmuch_rb_messages_mark, notmuch_rb_messages_free, messages);
82     messages->nm_messages = notmuch_query_search_messages(query->nm_query);
83     messages->parent = self;
84     if (!messages->nm_messages)
85         rb_raise(notmuch_rb_eMemoryError, "out of memory");
86
87     return messagesv;
88 }