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 https://www.gnu.org/licenses/ .
18 * Author: Ali Polatel <alip@exherbo.org>
24 * call-seq: MESSAGE.destroy! => nil
26 * Destroys the message, freeing all resources allocated for it.
29 notmuch_rb_message_destroy (VALUE self)
31 notmuch_message_t *message;
33 Data_Get_Notmuch_Message (self, message);
35 notmuch_message_destroy (message);
36 DATA_PTR (self) = NULL;
42 * call-seq: MESSAGE.message_id => String
44 * Get the message ID of 'message'.
47 notmuch_rb_message_get_message_id (VALUE self)
50 notmuch_message_t *message;
52 Data_Get_Notmuch_Message (self, message);
54 msgid = notmuch_message_get_message_id (message);
56 return rb_str_new2 (msgid);
60 * call-seq: MESSAGE.thread_id => String
62 * Get the thread ID of 'message'.
65 notmuch_rb_message_get_thread_id (VALUE self)
68 notmuch_message_t *message;
70 Data_Get_Notmuch_Message (self, message);
72 tid = notmuch_message_get_thread_id (message);
74 return rb_str_new2 (tid);
78 * call-seq: MESSAGE.replies => MESSAGES
80 * Get a Notmuch::Messages enumerable for all of the replies to 'message'.
83 notmuch_rb_message_get_replies (VALUE self)
85 notmuch_messages_t *messages;
86 notmuch_message_t *message;
88 Data_Get_Notmuch_Message (self, message);
90 messages = notmuch_message_get_replies (message);
92 return Data_Wrap_Struct (notmuch_rb_cMessages, NULL, NULL, messages);
96 * call-seq: MESSAGE.filename => String
98 * Get a filename for the email corresponding to 'message'
101 notmuch_rb_message_get_filename (VALUE self)
104 notmuch_message_t *message;
106 Data_Get_Notmuch_Message (self, message);
108 fname = notmuch_message_get_filename (message);
110 return rb_str_new2 (fname);
114 * call-seq: MESSAGE.filenames => FILENAMES
116 * Get all filenames for the email corresponding to MESSAGE.
119 notmuch_rb_message_get_filenames (VALUE self)
121 notmuch_filenames_t *fnames;
122 notmuch_message_t *message;
124 Data_Get_Notmuch_Message (self, message);
126 fnames = notmuch_message_get_filenames (message);
128 return Data_Wrap_Struct (notmuch_rb_cFileNames, NULL, NULL, fnames);
132 * call-seq: MESSAGE.get_flag (flag) => true or false
134 * Get a value of a flag for the email corresponding to 'message'
137 notmuch_rb_message_get_flag (VALUE self, VALUE flagv)
139 notmuch_message_t *message;
141 Data_Get_Notmuch_Message (self, message);
143 if (!FIXNUM_P (flagv))
144 rb_raise (rb_eTypeError, "Flag not a Fixnum");
146 return notmuch_message_get_flag (message, FIX2INT (flagv)) ? Qtrue : Qfalse;
150 * call-seq: MESSAGE.set_flag (flag, value) => nil
152 * Set a value of a flag for the email corresponding to 'message'
155 notmuch_rb_message_set_flag (VALUE self, VALUE flagv, VALUE valuev)
157 notmuch_message_t *message;
159 Data_Get_Notmuch_Message (self, message);
161 if (!FIXNUM_P (flagv))
162 rb_raise (rb_eTypeError, "Flag not a Fixnum");
164 notmuch_message_set_flag (message, FIX2INT (flagv), RTEST (valuev));
170 * call-seq: MESSAGE.date => Fixnum
172 * Get the date of 'message'
175 notmuch_rb_message_get_date (VALUE self)
177 notmuch_message_t *message;
179 Data_Get_Notmuch_Message (self, message);
181 return UINT2NUM (notmuch_message_get_date (message));
185 * call-seq: MESSAGE.header (name) => String
187 * Get the value of the specified header from 'message'
190 notmuch_rb_message_get_header (VALUE self, VALUE headerv)
192 const char *header, *value;
193 notmuch_message_t *message;
195 Data_Get_Notmuch_Message (self, message);
197 SafeStringValue (headerv);
198 header = RSTRING_PTR (headerv);
200 value = notmuch_message_get_header (message, header);
202 rb_raise (notmuch_rb_eMemoryError, "Out of memory");
204 return rb_str_new2 (value);
208 * call-seq: MESSAGE.tags => TAGS
210 * Get a Notmuch::Tags enumerable for all of the tags of 'message'.
213 notmuch_rb_message_get_tags (VALUE self)
215 notmuch_message_t *message;
216 notmuch_tags_t *tags;
218 Data_Get_Notmuch_Message (self, message);
220 tags = notmuch_message_get_tags (message);
222 rb_raise (notmuch_rb_eMemoryError, "Out of memory");
224 return Data_Wrap_Struct (notmuch_rb_cTags, NULL, NULL, tags);
228 * call-seq: MESSAGE.add_tag (tag) => true
230 * Add a tag to the 'message'
233 notmuch_rb_message_add_tag (VALUE self, VALUE tagv)
236 notmuch_status_t ret;
237 notmuch_message_t *message;
239 Data_Get_Notmuch_Message (self, message);
241 SafeStringValue (tagv);
242 tag = RSTRING_PTR (tagv);
244 ret = notmuch_message_add_tag (message, tag);
245 notmuch_rb_status_raise (ret);
251 * call-seq: MESSAGE.remove_tag (tag) => true
253 * Remove a tag from the 'message'
256 notmuch_rb_message_remove_tag (VALUE self, VALUE tagv)
259 notmuch_status_t ret;
260 notmuch_message_t *message;
262 Data_Get_Notmuch_Message (self, message);
264 SafeStringValue (tagv);
265 tag = RSTRING_PTR (tagv);
267 ret = notmuch_message_remove_tag (message, tag);
268 notmuch_rb_status_raise (ret);
274 * call-seq: MESSAGE.remove_all_tags => true
276 * Remove all tags of the 'message'
279 notmuch_rb_message_remove_all_tags (VALUE self)
281 notmuch_status_t ret;
282 notmuch_message_t *message;
284 Data_Get_Notmuch_Message (self, message);
286 ret = notmuch_message_remove_all_tags (message);
287 notmuch_rb_status_raise (ret);
293 * call-seq: MESSAGE.maildir_flags_to_tags => true
295 * Add/remove tags according to maildir flags in the message filename (s)
298 notmuch_rb_message_maildir_flags_to_tags (VALUE self)
300 notmuch_status_t ret;
301 notmuch_message_t *message;
303 Data_Get_Notmuch_Message (self, message);
305 ret = notmuch_message_maildir_flags_to_tags (message);
306 notmuch_rb_status_raise (ret);
312 * call-seq: MESSAGE.tags_to_maildir_flags => true
314 * Rename message filename (s) to encode tags as maildir flags
317 notmuch_rb_message_tags_to_maildir_flags (VALUE self)
319 notmuch_status_t ret;
320 notmuch_message_t *message;
322 Data_Get_Notmuch_Message (self, message);
324 ret = notmuch_message_tags_to_maildir_flags (message);
325 notmuch_rb_status_raise (ret);
331 * call-seq: MESSAGE.freeze => true
333 * Freeze the 'message'
336 notmuch_rb_message_freeze (VALUE self)
338 notmuch_status_t ret;
339 notmuch_message_t *message;
341 Data_Get_Notmuch_Message (self, message);
343 ret = notmuch_message_freeze (message);
344 notmuch_rb_status_raise (ret);
350 * call-seq: MESSAGE.thaw => true
355 notmuch_rb_message_thaw (VALUE self)
357 notmuch_status_t ret;
358 notmuch_message_t *message;
360 Data_Get_Notmuch_Message (self, message);
362 ret = notmuch_message_thaw (message);
363 notmuch_rb_status_raise (ret);