]> git.cworth.org Git - notmuch/blob - bindings/ruby/filenames.c
ruby: filenames: return string array directly
[notmuch] / bindings / ruby / filenames.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 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_filenames_get (notmuch_filenames_t *fnames)
25 {
26     VALUE rb_array = rb_ary_new ();
27
28     for (; notmuch_filenames_valid (fnames); notmuch_filenames_move_to_next (fnames))
29         rb_ary_push (rb_array, rb_str_new2 (notmuch_filenames_get (fnames)));
30     return rb_array;
31 }
32
33 /*
34  * call-seq: FILENAMES.destroy! => nil
35  *
36  * Destroys the filenames, freeing all resources allocated for it.
37  */
38 VALUE
39 notmuch_rb_filenames_destroy (VALUE self)
40 {
41     notmuch_rb_object_destroy (self, &notmuch_rb_filenames_type);
42
43     return Qnil;
44 }
45
46 /*
47  * call-seq: FILENAMES.each {|item| block } => FILENAMES
48  *
49  * Calls +block+ once for each element in +self+, passing that element as a
50  * parameter.
51  */
52 VALUE
53 notmuch_rb_filenames_each (VALUE self)
54 {
55     notmuch_filenames_t *fnames;
56
57     Data_Get_Notmuch_FileNames (self, fnames);
58
59     for (; notmuch_filenames_valid (fnames); notmuch_filenames_move_to_next (fnames))
60         rb_yield (rb_str_new2 (notmuch_filenames_get (fnames)));
61
62     return self;
63 }