1 /* The Ruby interface to the notmuch mail library
3 * Copyright © 2010, 2011 Ali Polatel
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.
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.
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/ .
18 * Author: Ali Polatel <alip@exherbo.org>
24 * call-seq: DIR.destroy! => nil
26 * Destroys the directory, freeing all resources allocated for it.
29 notmuch_rb_directory_destroy (VALUE self)
31 notmuch_directory_t *dir;
33 Data_Get_Struct (self, notmuch_directory_t, dir);
35 notmuch_directory_destroy (dir);
36 DATA_PTR (self) = NULL;
42 * call-seq: DIR.mtime => fixnum
44 * Returns the mtime of the directory or +0+ if no mtime has been previously
48 notmuch_rb_directory_get_mtime (VALUE self)
50 notmuch_directory_t *dir;
52 Data_Get_Notmuch_Directory (self, dir);
54 return UINT2NUM (notmuch_directory_get_mtime (dir));
58 * call-seq: DIR.mtime=(fixnum) => nil
60 * Store an mtime within the database for the directory object.
63 notmuch_rb_directory_set_mtime (VALUE self, VALUE mtimev)
66 notmuch_directory_t *dir;
68 Data_Get_Notmuch_Directory (self, dir);
70 if (!FIXNUM_P (mtimev))
71 rb_raise (rb_eTypeError, "First argument not a fixnum");
73 ret = notmuch_directory_set_mtime (dir, FIX2UINT (mtimev));
74 notmuch_rb_status_raise (ret);
80 * call-seq: DIR.child_files => FILENAMES
82 * Return a Notmuch::FileNames object, which is an +Enumerable+ listing all the
83 * filenames of messages in the database within the given directory.
86 notmuch_rb_directory_get_child_files (VALUE self)
88 notmuch_directory_t *dir;
89 notmuch_filenames_t *fnames;
91 Data_Get_Notmuch_Directory (self, dir);
93 fnames = notmuch_directory_get_child_files (dir);
95 return Data_Wrap_Struct (notmuch_rb_cFileNames, NULL, NULL, fnames);
99 * call-seq: DIR.child_directories => FILENAMES
101 * Return a Notmuch::FileNames object, which is an +Enumerable+ listing all the
102 * directories in the database within the given directory.
105 notmuch_rb_directory_get_child_directories (VALUE self)
107 notmuch_directory_t *dir;
108 notmuch_filenames_t *fnames;
110 Data_Get_Notmuch_Directory (self, dir);
112 fnames = notmuch_directory_get_child_directories (dir);
114 return Data_Wrap_Struct (notmuch_rb_cFileNames, NULL, NULL, fnames);