]> git.notmuchmail.org Git - notmuch/blob - bindings/ruby/messages.c
ruby: Kill garbage collection related cruft.
[notmuch] / bindings / ruby / messages.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: MESSAGES.destroy => nil
25  *
26  * Destroys the messages, freeing all resources allocated for it.
27  */
28 VALUE
29 notmuch_rb_messages_destroy(VALUE self)
30 {
31     notmuch_messages_t *fnames;
32
33     Data_Get_Struct(self, notmuch_messages_t, fnames);
34
35     notmuch_messages_destroy(fnames);
36
37     return Qnil;
38 }
39
40 /* call-seq: MESSAGES.each {|item| block } => MESSAGES
41  *
42  * Calls +block+ once for each message in +self+, passing that element as a
43  * parameter.
44  */
45 VALUE
46 notmuch_rb_messages_each(VALUE self)
47 {
48     notmuch_message_t *message;
49     notmuch_messages_t *messages;
50
51     Data_Get_Struct(self, notmuch_messages_t, messages);
52     if (!messages)
53         return self;
54
55     for (; notmuch_messages_valid(messages); notmuch_messages_move_to_next(messages)) {
56         message = notmuch_messages_get(messages);
57         rb_yield(Data_Wrap_Struct(notmuch_rb_cMessage, NULL, NULL, message));
58     }
59
60     return self;
61 }
62
63 /*
64  * call-seq: MESSAGES.tags => TAGS
65  *
66  * Collect tags from the messages
67  */
68 VALUE
69 notmuch_rb_messages_collect_tags(VALUE self)
70 {
71     notmuch_tags_t *tags;
72     notmuch_messages_t *messages;
73
74     Data_Get_Struct(self, notmuch_messages_t, messages);
75
76     tags = notmuch_messages_collect_tags(messages);
77     if (!tags)
78         rb_raise(notmuch_rb_eMemoryError, "Out of memory");
79
80     return Data_Wrap_Struct(notmuch_rb_cTags, NULL, NULL, tags);
81 }