]> git.notmuchmail.org Git - notmuch/blob - bindings/ruby/directory.c
emacs: Add new option notmuch-search-hide-excluded
[notmuch] / bindings / ruby / directory.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 /*
24  * call-seq: DIR.destroy! => nil
25  *
26  * Destroys the directory, freeing all resources allocated for it.
27  */
28 VALUE
29 notmuch_rb_directory_destroy (VALUE self)
30 {
31     notmuch_rb_object_destroy (self, &notmuch_rb_directory_type);
32
33     return Qnil;
34 }
35
36 /*
37  * call-seq: DIR.mtime => fixnum
38  *
39  * Returns the mtime of the directory or +0+ if no mtime has been previously
40  * stored.
41  */
42 VALUE
43 notmuch_rb_directory_get_mtime (VALUE self)
44 {
45     notmuch_directory_t *dir;
46
47     Data_Get_Notmuch_Directory (self, dir);
48
49     return UINT2NUM (notmuch_directory_get_mtime (dir));
50 }
51
52 /*
53  * call-seq: DIR.mtime=(fixnum) => nil
54  *
55  * Store an mtime within the database for the directory object.
56  */
57 VALUE
58 notmuch_rb_directory_set_mtime (VALUE self, VALUE mtimev)
59 {
60     notmuch_status_t ret;
61     notmuch_directory_t *dir;
62
63     Data_Get_Notmuch_Directory (self, dir);
64
65     if (!FIXNUM_P (mtimev))
66         rb_raise (rb_eTypeError, "First argument not a fixnum");
67
68     ret = notmuch_directory_set_mtime (dir, FIX2UINT (mtimev));
69     notmuch_rb_status_raise (ret);
70
71     return Qtrue;
72 }
73
74 /*
75  * call-seq: DIR.child_files => FILENAMES
76  *
77  * Return a Notmuch::FileNames object, which is an +Enumerable+ listing all the
78  * filenames of messages in the database within the given directory.
79  */
80 VALUE
81 notmuch_rb_directory_get_child_files (VALUE self)
82 {
83     notmuch_directory_t *dir;
84     notmuch_filenames_t *fnames;
85
86     Data_Get_Notmuch_Directory (self, dir);
87
88     fnames = notmuch_directory_get_child_files (dir);
89
90     return notmuch_rb_filenames_get (fnames);
91 }
92
93 /*
94  * call-seq: DIR.child_directories => FILENAMES
95  *
96  * Return a Notmuch::FileNames object, which is an +Enumerable+ listing all the
97  * directories in the database within the given directory.
98  */
99 VALUE
100 notmuch_rb_directory_get_child_directories (VALUE self)
101 {
102     notmuch_directory_t *dir;
103     notmuch_filenames_t *fnames;
104
105     Data_Get_Notmuch_Directory (self, dir);
106
107     fnames = notmuch_directory_get_child_directories (dir);
108
109     return notmuch_rb_filenames_get (fnames);
110 }