]> git.cworth.org Git - notmuch/blob - bindings/ruby/tags.c
955d790f3bb79e7e0a100aec758fdf9d2b443a8b
[notmuch] / bindings / ruby / tags.c
1 /* The Ruby interface to the notmuch mail library
2  *
3  * Copyright © 2010, 2011 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 https://www.gnu.org/licenses/ .
17  *
18  * Author: Ali Polatel <alip@exherbo.org>
19  */
20
21 #include "defs.h"
22
23 VALUE
24 notmuch_rb_tags_get (notmuch_tags_t *tags)
25 {
26     VALUE rb_array = rb_ary_new ();
27
28     for (; notmuch_tags_valid (tags); notmuch_tags_move_to_next (tags)) {
29         const char *tag = notmuch_tags_get (tags);
30         rb_ary_push (rb_array, rb_str_new2 (tag));
31     }
32     return rb_array;
33 }
34
35 /*
36  * call-seq: TAGS.destroy! => nil
37  *
38  * Destroys the tags, freeing all resources allocated for it.
39  */
40 VALUE
41 notmuch_rb_tags_destroy (VALUE self)
42 {
43     notmuch_rb_object_destroy (self, &notmuch_rb_tags_type);
44
45     return Qnil;
46 }
47
48 /*
49  * call-seq: TAGS.each {|item| block } => TAGS
50  *
51  * Calls +block+ once for each element in +self+, passing that element as a
52  * parameter.
53  */
54 VALUE
55 notmuch_rb_tags_each (VALUE self)
56 {
57     const char *tag;
58     notmuch_tags_t *tags;
59
60     Data_Get_Notmuch_Tags (self, tags);
61
62     for (; notmuch_tags_valid (tags); notmuch_tags_move_to_next (tags)) {
63         tag = notmuch_tags_get (tags);
64         rb_yield (rb_str_new2 (tag));
65     }
66
67     return self;
68 }