]> git.notmuchmail.org Git - notmuch/blob - bindings/ruby/init.c
ruby: be consistent with notmuch's coding style
[notmuch] / bindings / ruby / init.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 /*
24  * Document-module: Notmuch
25  *
26  * == Summary
27  *
28  * Ruby extension to the <tt>notmuch</tt> mail library.
29  *
30  * == Classes
31  *
32  * Following are the classes that are most likely to be of interest to
33  * the user:
34  *
35  * - Notmuch::Database
36  * - Notmuch::FileNames
37  * - Notmuch::Query
38  * - Notmuch::Threads
39  * - Notmuch::Messages
40  * - Notmuch::Thread
41  * - Notmuch::Message
42  * - Notmuch::Tags
43  */
44
45 void
46 Init_notmuch (void)
47 {
48     VALUE mod;
49
50     ID_call = rb_intern ("call");
51     ID_db_create = rb_intern ("create");
52     ID_db_mode = rb_intern ("mode");
53
54     mod = rb_define_module ("Notmuch");
55
56     /*
57      * Document-const: Notmuch::MODE_READ_ONLY
58      *
59      * Open the database in read only mode
60      */
61     rb_define_const (mod, "MODE_READ_ONLY", INT2FIX (NOTMUCH_DATABASE_MODE_READ_ONLY));
62     /*
63      * Document-const: Notmuch::MODE_READ_WRITE
64      *
65      * Open the database in read write mode
66      */
67     rb_define_const (mod, "MODE_READ_WRITE", INT2FIX (NOTMUCH_DATABASE_MODE_READ_WRITE));
68     /*
69      * Document-const: Notmuch::SORT_OLDEST_FIRST
70      *
71      * Sort query results by oldest first
72      */
73     rb_define_const (mod, "SORT_OLDEST_FIRST", INT2FIX (NOTMUCH_SORT_OLDEST_FIRST));
74     /*
75      * Document-const: Notmuch::SORT_NEWEST_FIRST
76      *
77      * Sort query results by newest first
78      */
79     rb_define_const (mod, "SORT_NEWEST_FIRST", INT2FIX (NOTMUCH_SORT_NEWEST_FIRST));
80     /*
81      * Document-const: Notmuch::SORT_MESSAGE_ID
82      *
83      * Sort query results by message id
84      */
85     rb_define_const (mod, "SORT_MESSAGE_ID", INT2FIX (NOTMUCH_SORT_MESSAGE_ID));
86     /*
87      * Document-const: Notmuch::SORT_UNSORTED
88      *
89      * Do not sort query results
90      */
91     rb_define_const (mod, "SORT_UNSORTED", INT2FIX (NOTMUCH_SORT_UNSORTED));
92     /*
93      * Document-const: Notmuch::MESSAGE_FLAG_MATCH
94      *
95      * Message flag "match"
96      */
97     rb_define_const (mod, "MESSAGE_FLAG_MATCH", INT2FIX (NOTMUCH_MESSAGE_FLAG_MATCH));
98     /*
99      * Document-const: Notmuch::TAG_MAX
100      *
101      * Maximum allowed length of a tag
102      */
103     rb_define_const (mod, "TAG_MAX", INT2FIX (NOTMUCH_TAG_MAX));
104
105     /*
106      * Document-class: Notmuch::BaseError
107      *
108      * Base class for all notmuch exceptions
109      */
110     notmuch_rb_eBaseError = rb_define_class_under (mod, "BaseError", rb_eStandardError);
111     /*
112      * Document-class: Notmuch::DatabaseError
113      *
114      * Raised when the database can't be created or opened.
115      */
116     notmuch_rb_eDatabaseError = rb_define_class_under (mod, "DatabaseError", notmuch_rb_eBaseError);
117     /*
118      * Document-class: Notmuch::MemoryError
119      *
120      * Raised when notmuch is out of memory
121      */
122     notmuch_rb_eMemoryError = rb_define_class_under (mod, "MemoryError", notmuch_rb_eBaseError);
123     /*
124      * Document-class: Notmuch::ReadOnlyError
125      *
126      * Raised when an attempt was made to write to a database opened in read-only
127      * mode.
128      */
129     notmuch_rb_eReadOnlyError = rb_define_class_under (mod, "ReadOnlyError", notmuch_rb_eBaseError);
130     /*
131      * Document-class: Notmuch::XapianError
132      *
133      * Raised when a Xapian exception occurs
134      */
135     notmuch_rb_eXapianError = rb_define_class_under (mod, "XapianError", notmuch_rb_eBaseError);
136     /*
137      * Document-class: Notmuch::FileError
138      *
139      * Raised when an error occurs trying to read or write to a file.
140      */
141     notmuch_rb_eFileError = rb_define_class_under (mod, "FileError", notmuch_rb_eBaseError);
142     /*
143      * Document-class: Notmuch::FileNotEmailError
144      *
145      * Raised when a file is presented that doesn't appear to be an email message.
146      */
147     notmuch_rb_eFileNotEmailError = rb_define_class_under (mod, "FileNotEmailError", notmuch_rb_eBaseError);
148     /*
149      * Document-class: Notmuch::NullPointerError
150      *
151      * Raised when the user erroneously passes a +NULL+ pointer to a notmuch
152      * function.
153      */
154     notmuch_rb_eNullPointerError = rb_define_class_under (mod, "NullPointerError", notmuch_rb_eBaseError);
155     /*
156      * Document-class: Notmuch::TagTooLongError
157      *
158      * Raised when a tag value is too long (exceeds Notmuch::TAG_MAX)
159      */
160     notmuch_rb_eTagTooLongError = rb_define_class_under (mod, "TagTooLongError", notmuch_rb_eBaseError);
161     /*
162      * Document-class: Notmuch::UnbalancedFreezeThawError
163      *
164      * Raised when the notmuch_message_thaw function has been called more times
165      * than notmuch_message_freeze.
166      */
167     notmuch_rb_eUnbalancedFreezeThawError = rb_define_class_under (mod, "UnbalancedFreezeThawError",
168                                                                    notmuch_rb_eBaseError);
169     /*
170      * Document-class: Notmuch::UnbalancedAtomicError
171      *
172      * Raised when notmuch_database_end_atomic has been called more times than
173      * notmuch_database_begin_atomic
174      */
175     notmuch_rb_eUnbalancedAtomicError = rb_define_class_under (mod, "UnbalancedAtomicError",
176                                                                notmuch_rb_eBaseError);
177     /*
178      * Document-class: Notmuch::Database
179      *
180      * Notmuch database interaction
181      */
182     notmuch_rb_cDatabase = rb_define_class_under (mod, "Database", rb_cData);
183     rb_define_alloc_func (notmuch_rb_cDatabase, notmuch_rb_database_alloc);
184     rb_define_singleton_method (notmuch_rb_cDatabase, "open", notmuch_rb_database_open, -1); /* in database.c */
185     rb_define_method (notmuch_rb_cDatabase, "initialize", notmuch_rb_database_initialize, -1); /* in database.c */
186     rb_define_method (notmuch_rb_cDatabase, "close", notmuch_rb_database_close, 0); /* in database.c */
187     rb_define_method (notmuch_rb_cDatabase, "path", notmuch_rb_database_path, 0); /* in database.c */
188     rb_define_method (notmuch_rb_cDatabase, "version", notmuch_rb_database_version, 0); /* in database.c */
189     rb_define_method (notmuch_rb_cDatabase, "needs_upgrade?", notmuch_rb_database_needs_upgrade, 0); /* in database.c */
190     rb_define_method (notmuch_rb_cDatabase, "upgrade!", notmuch_rb_database_upgrade, 0); /* in database.c */
191     rb_define_method (notmuch_rb_cDatabase, "begin_atomic", notmuch_rb_database_begin_atomic, 0); /* in database.c */
192     rb_define_method (notmuch_rb_cDatabase, "end_atomic", notmuch_rb_database_end_atomic, 0); /* in database.c */
193     rb_define_method (notmuch_rb_cDatabase, "get_directory", notmuch_rb_database_get_directory, 1); /* in database.c */
194     rb_define_method (notmuch_rb_cDatabase, "add_message", notmuch_rb_database_add_message, 1); /* in database.c */
195     rb_define_method (notmuch_rb_cDatabase, "remove_message", notmuch_rb_database_remove_message, 1); /* in database.c */
196     rb_define_method (notmuch_rb_cDatabase, "query", notmuch_rb_database_query_create, 1); /* in database.c */
197
198     /*
199      * Document-class: Notmuch::Directory
200      *
201      * Notmuch directory
202      */
203     notmuch_rb_cDirectory = rb_define_class_under (mod, "Directory", rb_cData);
204     rb_undef_method (notmuch_rb_cDirectory, "initialize");
205     rb_define_method (notmuch_rb_cDirectory, "destroy!", notmuch_rb_directory_destroy, 0); /* in directory.c */
206     rb_define_method (notmuch_rb_cDirectory, "mtime", notmuch_rb_directory_get_mtime, 0); /* in directory.c */
207     rb_define_method (notmuch_rb_cDirectory, "mtime=", notmuch_rb_directory_set_mtime, 1); /* in directory.c */
208     rb_define_method (notmuch_rb_cDirectory, "child_files", notmuch_rb_directory_get_child_files, 0); /* in directory.c */
209     rb_define_method (notmuch_rb_cDirectory, "child_directories", notmuch_rb_directory_get_child_directories, 0); /* in directory.c */
210
211     /*
212      * Document-class: Notmuch::FileNames
213      *
214      * Notmuch file names
215      */
216     notmuch_rb_cFileNames = rb_define_class_under (mod, "FileNames", rb_cData);
217     rb_undef_method (notmuch_rb_cFileNames, "initialize");
218     rb_define_method (notmuch_rb_cFileNames, "destroy!", notmuch_rb_filenames_destroy, 0); /* in filenames.c */
219     rb_define_method (notmuch_rb_cFileNames, "each", notmuch_rb_filenames_each, 0); /* in filenames.c */
220     rb_include_module (notmuch_rb_cFileNames, rb_mEnumerable);
221
222     /*
223      * Document-class: Notmuch::Query
224      *
225      * Notmuch query
226      */
227     notmuch_rb_cQuery = rb_define_class_under (mod, "Query", rb_cData);
228     rb_undef_method (notmuch_rb_cQuery, "initialize");
229     rb_define_method (notmuch_rb_cQuery, "destroy!", notmuch_rb_query_destroy, 0); /* in query.c */
230     rb_define_method (notmuch_rb_cQuery, "sort", notmuch_rb_query_get_sort, 0); /* in query.c */
231     rb_define_method (notmuch_rb_cQuery, "sort=", notmuch_rb_query_set_sort, 1); /* in query.c */
232     rb_define_method (notmuch_rb_cQuery, "to_s", notmuch_rb_query_get_string, 0); /* in query.c */
233     rb_define_method (notmuch_rb_cQuery, "search_threads", notmuch_rb_query_search_threads, 0); /* in query.c */
234     rb_define_method (notmuch_rb_cQuery, "search_messages", notmuch_rb_query_search_messages, 0); /* in query.c */
235
236     /*
237      * Document-class: Notmuch::Threads
238      *
239      * Notmuch threads
240      */
241     notmuch_rb_cThreads = rb_define_class_under (mod, "Threads", rb_cData);
242     rb_undef_method (notmuch_rb_cThreads, "initialize");
243     rb_define_method (notmuch_rb_cThreads, "destroy!", notmuch_rb_threads_destroy, 0); /* in threads.c */
244     rb_define_method (notmuch_rb_cThreads, "each", notmuch_rb_threads_each, 0); /* in threads.c */
245     rb_include_module (notmuch_rb_cThreads, rb_mEnumerable);
246
247     /*
248      * Document-class: Notmuch::Messages
249      *
250      * Notmuch messages
251      */
252     notmuch_rb_cMessages = rb_define_class_under (mod, "Messages", rb_cData);
253     rb_undef_method (notmuch_rb_cMessages, "initialize");
254     rb_define_method (notmuch_rb_cMessages, "destroy!", notmuch_rb_messages_destroy, 0); /* in messages.c */
255     rb_define_method (notmuch_rb_cMessages, "each", notmuch_rb_messages_each, 0); /* in messages.c */
256     rb_define_method (notmuch_rb_cMessages, "tags", notmuch_rb_messages_collect_tags, 0); /* in messages.c */
257     rb_include_module (notmuch_rb_cMessages, rb_mEnumerable);
258
259     /*
260      * Document-class: Notmuch::Thread
261      *
262      * Notmuch thread
263      */
264     notmuch_rb_cThread = rb_define_class_under (mod, "Thread", rb_cData);
265     rb_undef_method (notmuch_rb_cThread, "initialize");
266     rb_define_method (notmuch_rb_cThread, "destroy!", notmuch_rb_thread_destroy, 0); /* in thread.c */
267     rb_define_method (notmuch_rb_cThread, "thread_id", notmuch_rb_thread_get_thread_id, 0); /* in thread.c */
268     rb_define_method (notmuch_rb_cThread, "total_messages", notmuch_rb_thread_get_total_messages, 0); /* in thread.c */
269     rb_define_method (notmuch_rb_cThread, "toplevel_messages", notmuch_rb_thread_get_toplevel_messages, 0); /* in thread.c */
270     rb_define_method (notmuch_rb_cThread, "matched_messages", notmuch_rb_thread_get_matched_messages, 0); /* in thread.c */
271     rb_define_method (notmuch_rb_cThread, "authors", notmuch_rb_thread_get_authors, 0); /* in thread.c */
272     rb_define_method (notmuch_rb_cThread, "subject", notmuch_rb_thread_get_subject, 0); /* in thread.c */
273     rb_define_method (notmuch_rb_cThread, "oldest_date", notmuch_rb_thread_get_oldest_date, 0); /* in thread.c */
274     rb_define_method (notmuch_rb_cThread, "newest_date", notmuch_rb_thread_get_newest_date, 0); /* in thread.c */
275     rb_define_method (notmuch_rb_cThread, "tags", notmuch_rb_thread_get_tags, 0); /* in thread.c */
276
277     /*
278      * Document-class: Notmuch::Message
279      *
280      * Notmuch message
281      */
282     notmuch_rb_cMessage = rb_define_class_under (mod, "Message", rb_cData);
283     rb_undef_method (notmuch_rb_cMessage, "initialize");
284     rb_define_method (notmuch_rb_cMessage, "destroy!", notmuch_rb_message_destroy, 0); /* in message.c */
285     rb_define_method (notmuch_rb_cMessage, "message_id", notmuch_rb_message_get_message_id, 0); /* in message.c */
286     rb_define_method (notmuch_rb_cMessage, "thread_id", notmuch_rb_message_get_thread_id, 0); /* in message.c */
287     rb_define_method (notmuch_rb_cMessage, "replies", notmuch_rb_message_get_replies, 0); /* in message.c */
288     rb_define_method (notmuch_rb_cMessage, "filename", notmuch_rb_message_get_filename, 0); /* in message.c */
289     rb_define_method (notmuch_rb_cMessage, "filenames", notmuch_rb_message_get_filenames, 0); /* in message.c */
290     rb_define_method (notmuch_rb_cMessage, "get_flag", notmuch_rb_message_get_flag, 1); /* in message.c */
291     rb_define_method (notmuch_rb_cMessage, "set_flag", notmuch_rb_message_set_flag, 2); /* in message.c */
292     rb_define_method (notmuch_rb_cMessage, "date", notmuch_rb_message_get_date, 0); /* in message.c */
293     rb_define_method (notmuch_rb_cMessage, "header", notmuch_rb_message_get_header, 1); /* in message.c */
294     rb_define_alias (notmuch_rb_cMessage, "[]", "header");
295     rb_define_method (notmuch_rb_cMessage, "tags", notmuch_rb_message_get_tags, 0); /* in message.c */
296     rb_define_method (notmuch_rb_cMessage, "add_tag", notmuch_rb_message_add_tag, 1); /* in message.c */
297     rb_define_alias (notmuch_rb_cMessage, "<<", "add_tag");
298     rb_define_method (notmuch_rb_cMessage, "remove_tag", notmuch_rb_message_remove_tag, 1); /* in message.c */
299     rb_define_method (notmuch_rb_cMessage, "remove_all_tags", notmuch_rb_message_remove_all_tags, 0); /* in message.c */
300     rb_define_method (notmuch_rb_cMessage, "maildir_flags_to_tags", notmuch_rb_message_maildir_flags_to_tags, 0); /* in message.c */
301     rb_define_method (notmuch_rb_cMessage, "tags_to_maildir_flags", notmuch_rb_message_tags_to_maildir_flags, 0); /* in message.c */
302     rb_define_method (notmuch_rb_cMessage, "freeze", notmuch_rb_message_freeze, 0); /* in message.c */
303     rb_define_method (notmuch_rb_cMessage, "thaw", notmuch_rb_message_thaw, 0); /* in message.c */
304
305     /*
306      * Document-class: Notmuch::Tags
307      *
308      * Notmuch tags
309      */
310     notmuch_rb_cTags = rb_define_class_under (mod, "Tags", rb_cData);
311     rb_undef_method (notmuch_rb_cTags, "initialize");
312     rb_define_method (notmuch_rb_cTags, "destroy!", notmuch_rb_tags_destroy, 0); /* in tags.c */
313     rb_define_method (notmuch_rb_cTags, "each", notmuch_rb_tags_each, 0); /* in tags.c */
314     rb_include_module (notmuch_rb_cTags, rb_mEnumerable);
315 }