]> git.notmuchmail.org Git - notmuch/blob - bindings/ruby/database.c
debian: build depend on dh-python
[notmuch] / bindings / ruby / database.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 http://www.gnu.org/licenses/ .
17  *
18  * Author: Ali Polatel <alip@exherbo.org>
19  */
20
21 #include "defs.h"
22
23 VALUE
24 notmuch_rb_database_alloc (VALUE klass)
25 {
26     return Data_Wrap_Struct (klass, NULL, NULL, NULL);
27 }
28
29 /*
30  * call-seq: Notmuch::Database.new(path [, {:create => false, :mode => Notmuch::MODE_READ_ONLY}]) => DB
31  *
32  * Create or open a notmuch database using the given path.
33  *
34  * If :create is +true+, create the database instead of opening.
35  *
36  * The argument :mode specifies the open mode of the database.
37  */
38 VALUE
39 notmuch_rb_database_initialize (int argc, VALUE *argv, VALUE self)
40 {
41     const char *path;
42     int create, mode;
43     VALUE pathv, hashv;
44     VALUE modev;
45     notmuch_database_t *database;
46     notmuch_status_t ret;
47
48     /* Check arguments */
49     rb_scan_args (argc, argv, "11", &pathv, &hashv);
50
51     SafeStringValue (pathv);
52     path = RSTRING_PTR (pathv);
53
54     if (!NIL_P (hashv)) {
55         Check_Type (hashv, T_HASH);
56         create = RTEST (rb_hash_aref (hashv, ID2SYM (ID_db_create)));
57         modev = rb_hash_aref (hashv, ID2SYM (ID_db_mode));
58         if (NIL_P (modev))
59             mode = NOTMUCH_DATABASE_MODE_READ_ONLY;
60         else if (!FIXNUM_P (modev))
61             rb_raise (rb_eTypeError, ":mode isn't a Fixnum");
62         else {
63             mode = FIX2INT (modev);
64             switch (mode) {
65             case NOTMUCH_DATABASE_MODE_READ_ONLY:
66             case NOTMUCH_DATABASE_MODE_READ_WRITE:
67                 break;
68             default:
69                 rb_raise ( rb_eTypeError, "Invalid mode");
70             }
71         }
72     } else {
73         create = 0;
74         mode = NOTMUCH_DATABASE_MODE_READ_ONLY;
75     }
76
77     Check_Type (self, T_DATA);
78     if (create)
79         ret = notmuch_database_create (path, &database);
80     else
81         ret = notmuch_database_open (path, mode, &database);
82     notmuch_rb_status_raise (ret);
83
84     DATA_PTR (self) = database;
85
86     return self;
87 }
88
89 /*
90  * call-seq: Notmuch::Database.open(path [, ahash]) {|db| ...}
91  *
92  * Identical to new, except that when it is called with a block, it yields with
93  * the new instance and closes it, and returns the result which is returned from
94  * the block.
95  */
96 VALUE
97 notmuch_rb_database_open (int argc, VALUE *argv, VALUE klass)
98 {
99     VALUE obj;
100
101     obj = rb_class_new_instance (argc, argv, klass);
102     if (!rb_block_given_p ())
103         return obj;
104
105     return rb_ensure (rb_yield, obj, notmuch_rb_database_close, obj);
106 }
107
108 /*
109  * call-seq: DB.close => nil
110  *
111  * Close the notmuch database.
112  */
113 VALUE
114 notmuch_rb_database_close (VALUE self)
115 {
116     notmuch_database_t *db;
117
118     Data_Get_Notmuch_Database (self, db);
119     notmuch_database_destroy (db);
120     DATA_PTR (self) = NULL;
121
122     return Qnil;
123 }
124
125 /*
126  * call-seq: DB.path => String
127  *
128  * Return the path of the database
129  */
130 VALUE
131 notmuch_rb_database_path (VALUE self)
132 {
133     notmuch_database_t *db;
134
135     Data_Get_Notmuch_Database (self, db);
136
137     return rb_str_new2 (notmuch_database_get_path (db));
138 }
139
140 /*
141  * call-seq: DB.version => Fixnum
142  *
143  * Return the version of the database
144  */
145 VALUE
146 notmuch_rb_database_version (VALUE self)
147 {
148     notmuch_database_t *db;
149
150     Data_Get_Notmuch_Database (self, db);
151
152     return INT2FIX (notmuch_database_get_version (db));
153 }
154
155 /*
156  * call-seq: DB.needs_upgrade? => true or false
157  *
158  * Return the +true+ if the database needs upgrading, +false+ otherwise
159  */
160 VALUE
161 notmuch_rb_database_needs_upgrade (VALUE self)
162 {
163     notmuch_database_t *db;
164
165     Data_Get_Notmuch_Database (self, db);
166
167     return notmuch_database_needs_upgrade (db) ? Qtrue : Qfalse;
168 }
169
170 static void
171 notmuch_rb_upgrade_notify (void *closure, double progress)
172 {
173     VALUE *block = (VALUE *) closure;
174     rb_funcall (*block, ID_call, 1, rb_float_new (progress));
175 }
176
177 /*
178  * call-seq: DB.upgrade! [{|progress| block }] => nil
179  *
180  * Upgrade the database.
181  *
182  * If a block is given the block is called with a progress indicator as a
183  * floating point value in the range of [0.0..1.0].
184  */
185 VALUE
186 notmuch_rb_database_upgrade (VALUE self)
187 {
188     notmuch_status_t ret;
189     void (*pnotify) (void *closure, double progress);
190     notmuch_database_t *db;
191     VALUE block;
192
193     Data_Get_Notmuch_Database (self, db);
194
195     if (rb_block_given_p ()) {
196         pnotify = notmuch_rb_upgrade_notify;
197         block = rb_block_proc ();
198     }
199     else
200         pnotify = NULL;
201
202     ret = notmuch_database_upgrade (db, pnotify, pnotify ? &block : NULL);
203     notmuch_rb_status_raise (ret);
204
205     return Qtrue;
206 }
207
208 /*
209  * call-seq: DB.begin_atomic => nil
210  *
211  * Begin an atomic database operation.
212  */
213 VALUE
214 notmuch_rb_database_begin_atomic (VALUE self)
215 {
216     notmuch_status_t ret;
217     notmuch_database_t *db;
218
219     Data_Get_Notmuch_Database (self, db);
220
221     ret = notmuch_database_begin_atomic (db);
222     notmuch_rb_status_raise (ret);
223
224     return Qtrue;
225 }
226
227 /*
228  * call-seq: DB.end_atomic => nil
229  *
230  * Indicate the end of an atomic database operation.
231  */
232 VALUE
233 notmuch_rb_database_end_atomic (VALUE self)
234 {
235     notmuch_status_t ret;
236     notmuch_database_t *db;
237
238     Data_Get_Notmuch_Database (self, db);
239
240     ret = notmuch_database_end_atomic (db);
241     notmuch_rb_status_raise (ret);
242
243     return Qtrue;
244 }
245
246 /*
247  * call-seq: DB.get_directory(path) => DIR
248  *
249  * Retrieve a directory object from the database for 'path'
250  */
251 VALUE
252 notmuch_rb_database_get_directory (VALUE self, VALUE pathv)
253 {
254     const char *path;
255     notmuch_status_t ret;
256     notmuch_directory_t *dir;
257     notmuch_database_t *db;
258
259     Data_Get_Notmuch_Database (self, db);
260
261     SafeStringValue (pathv);
262     path = RSTRING_PTR (pathv);
263
264     ret = notmuch_database_get_directory (db, path, &dir);
265     notmuch_rb_status_raise (ret);
266     if (dir)
267         return Data_Wrap_Struct (notmuch_rb_cDirectory, NULL, NULL, dir);
268     return Qnil;
269 }
270
271 /*
272  * call-seq: DB.add_message(path) => MESSAGE, isdup
273  *
274  * Add a message to the database and return it.
275  *
276  * +isdup+ is a boolean that specifies whether the added message was a
277  * duplicate.
278  */
279 VALUE
280 notmuch_rb_database_add_message (VALUE self, VALUE pathv)
281 {
282     const char *path;
283     notmuch_status_t ret;
284     notmuch_message_t *message;
285     notmuch_database_t *db;
286
287     Data_Get_Notmuch_Database (self, db);
288
289     SafeStringValue (pathv);
290     path = RSTRING_PTR (pathv);
291
292     ret = notmuch_database_add_message (db, path, &message);
293     notmuch_rb_status_raise (ret);
294     return rb_assoc_new (Data_Wrap_Struct (notmuch_rb_cMessage, NULL, NULL, message),
295         (ret == NOTMUCH_STATUS_DUPLICATE_MESSAGE_ID) ? Qtrue : Qfalse);
296 }
297
298 /*
299  * call-seq: DB.remove_message (path) => isdup
300  *
301  * Remove a message from the database.
302  *
303  * +isdup+ is a boolean that specifies whether the removed message was a
304  * duplicate.
305  */
306 VALUE
307 notmuch_rb_database_remove_message (VALUE self, VALUE pathv)
308 {
309     const char *path;
310     notmuch_status_t ret;
311     notmuch_database_t *db;
312
313     Data_Get_Notmuch_Database (self, db);
314
315     SafeStringValue (pathv);
316     path = RSTRING_PTR (pathv);
317
318     ret = notmuch_database_remove_message (db, path);
319     notmuch_rb_status_raise (ret);
320     return (ret == NOTMUCH_STATUS_DUPLICATE_MESSAGE_ID) ? Qtrue : Qfalse;
321 }
322
323 /*
324  * call-seq: DB.find_message(id) => MESSAGE or nil
325  *
326  * Find a message by message id.
327  */
328 VALUE
329 notmuch_rb_database_find_message (VALUE self, VALUE idv)
330 {
331     const char *id;
332     notmuch_status_t ret;
333     notmuch_database_t *db;
334     notmuch_message_t *message;
335
336     Data_Get_Notmuch_Database (self, db);
337
338     SafeStringValue (idv);
339     id = RSTRING_PTR (idv);
340
341     ret = notmuch_database_find_message (db, id, &message);
342     notmuch_rb_status_raise (ret);
343
344     if (message)
345         return Data_Wrap_Struct (notmuch_rb_cMessage, NULL, NULL, message);
346     return Qnil;
347 }
348
349 /*
350  * call-seq: DB.find_message_by_filename(path) => MESSAGE or nil
351  *
352  * Find a message by filename.
353  */
354 VALUE
355 notmuch_rb_database_find_message_by_filename (VALUE self, VALUE pathv)
356 {
357     const char *path;
358     notmuch_status_t ret;
359     notmuch_database_t *db;
360     notmuch_message_t *message;
361
362     Data_Get_Notmuch_Database (self, db);
363
364     SafeStringValue (pathv);
365     path = RSTRING_PTR (pathv);
366
367     ret = notmuch_database_find_message_by_filename (db, path, &message);
368     notmuch_rb_status_raise (ret);
369
370     if (message)
371         return Data_Wrap_Struct (notmuch_rb_cMessage, NULL, NULL, message);
372     return Qnil;
373 }
374
375 /*
376  * call-seq: DB.query(query) => QUERY
377  *
378  * Retrieve a query object for the query string 'query'
379  */
380 VALUE
381 notmuch_rb_database_query_create (VALUE self, VALUE qstrv)
382 {
383     const char *qstr;
384     notmuch_query_t *query;
385     notmuch_database_t *db;
386
387     Data_Get_Notmuch_Database (self, db);
388
389     SafeStringValue (qstrv);
390     qstr = RSTRING_PTR (qstrv);
391
392     query = notmuch_query_create (db, qstr);
393     if (!query)
394         rb_raise (notmuch_rb_eMemoryError, "Out of memory");
395
396     return Data_Wrap_Struct (notmuch_rb_cQuery, NULL, NULL, query);
397 }