1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
|
#![allow(dead_code, non_camel_case_types)]
//! Re-presentation of the notmuch C API.
use libc::{
c_char,
c_double,
c_int,
c_uint,
c_void,
time_t,
};
use std::{
error,
fmt,
str,
};
use utils::{
ToStr,
};
pub type notmuch_bool_t = c_int;
pub type notmuch_compact_status_cb_t = extern fn(*const c_char, *mut c_void);
notmuch_enum! {
#[repr(C)]
#[derive(Copy, Debug)]
pub enum notmuch_status_t => NotmuchStatus {
NOTMUCH_STATUS_SUCCESS => Success,
NOTMUCH_STATUS_OUT_OF_MEMORY => OutOfMemory,
NOTMUCH_STATUS_READ_ONLY_DATABASE => ReadOnlyDatabase,
NOTMUCH_STATUS_XAPIAN_EXCEPTION => XapianException,
NOTMUCH_STATUS_FILE_ERROR => FileError,
NOTMUCH_STATUS_FILE_NOT_EMAIL => FileNotEmail,
NOTMUCH_STATUS_DUPLICATE_MESSAGE_ID => DuplicateMessageID,
NOTMUCH_STATUS_NULL_POINTER => NullPointer,
NOTMUCH_STATUS_TAG_TOO_LONG => TagTooLong,
NOTMUCH_STATUS_UNBALANCED_FREEZE_THAW => UnbalancedFreezeThaw,
NOTMUCH_STATUS_UNBALANCED_ATOMIC => UnbalancedAtomic,
NOTMUCH_STATUS_UNSUPPORTED_OPERATION => UnsupportedOperation,
NOTMUCH_STATUS_UPGRADE_REQUIRED => UpgradeRequired,
// Not an actual status value. Just a way to find out how many
// valid status values there are.
NOTMUCH_STATUS_LAST_STATUS => LastStatus
}
}
impl notmuch_status_t {
pub fn is_ok(&self) -> bool {
match *self {
notmuch_status_t::NOTMUCH_STATUS_SUCCESS => true,
_ => false,
}
}
pub fn as_result(self) -> Result<(), Self> {
match self.is_ok() {
true => Ok(()),
false => Err(self),
}
}
}
impl ToStr for NotmuchStatus {
fn to_str<'a>(&self) -> Result<&'a str, str::Utf8Error> {
unsafe {
notmuch_status_to_string((*self).into())
}.to_str()
}
}
impl fmt::Display for NotmuchStatus {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "{}", self.to_str().unwrap())
}
}
impl error::Error for NotmuchStatus {
fn description(&self) -> &str {
self.to_str().unwrap()
}
}
notmuch_enum! {
#[repr(C)]
#[derive(Copy, Debug)]
pub enum notmuch_database_mode_t => NotmuchDatabaseMode {
NOTMUCH_DATABASE_MODE_READ_ONLY => ReadOnly,
NOTMUCH_DATABASE_MODE_READ_WRITE => ReadWrite
}
}
notmuch_enum! {
#[repr(C)]
#[derive(Copy, Debug)]
pub enum notmuch_sort_t => NotmuchSort {
NOTMUCH_SORT_OLDEST_FIRST => OldestFirst,
NOTMUCH_SORT_NEWEST_FIRST => NewestFirst,
NOTMUCH_SORT_MESSAGE_ID => MessageID,
NOTMUCH_SORT_UNSORTED => ReadWrite
}
}
notmuch_enum! {
#[repr(C)]
#[derive(Copy, Debug)]
pub enum notmuch_exclude_t => NotmuchExclude {
NOTMUCH_EXCLUDE_FLAG => Flag,
NOTMUCH_EXCLUDE_TRUE => True,
NOTMUCH_EXCLUDE_FALSE => False,
NOTMUCH_EXCLUDE_ALL => All
}
}
notmuch_enum! {
#[repr(C)]
#[derive(Copy, Debug)]
pub enum notmuch_message_flag_t => NotmuchMessageFlag {
NOTMUCH_MESSAGE_FLAG_MATCH => Match,
NOTMUCH_MESSAGE_FLAG_EXCLUDED => Excluded,
NOTMUCH_MESSAGE_FLAG_GHOST => Ghost
}
}
#[repr(C)] pub struct notmuch_database_t;
#[repr(C)] pub struct notmuch_query_t;
#[repr(C)] pub struct notmuch_threads_t;
#[repr(C)] pub struct notmuch_thread_t;
#[repr(C)] pub struct notmuch_messages_t;
#[repr(C)] pub struct notmuch_message_t;
#[repr(C)] pub struct notmuch_tags_t;
#[repr(C)] pub struct notmuch_directory_t;
#[repr(C)] pub struct notmuch_filenames_t;
#[link(name = "notmuch")]
extern {
pub fn notmuch_status_to_string(
status: notmuch_status_t,
) -> *const c_char;
pub fn notmuch_database_create(
path: *const c_char,
database: *mut *mut notmuch_database_t,
) -> notmuch_status_t;
pub fn notmuch_database_open(
path: *const c_char,
mode: notmuch_database_mode_t,
database: *mut *mut notmuch_database_t,
) -> notmuch_status_t;
pub fn notmuch_database_close(
database: *mut notmuch_database_t,
) -> notmuch_status_t;
pub fn notmuch_database_compact(
path: *const c_char,
backup_path: *const c_char,
status_cb: Option<notmuch_compact_status_cb_t>,
closure: *mut c_void,
) -> notmuch_status_t;
pub fn notmuch_database_destroy(
database: *mut notmuch_database_t,
) -> notmuch_status_t;
pub fn notmuch_database_get_path(
database: *mut notmuch_database_t,
) -> *const c_char;
pub fn notmuch_database_get_version(
database: *mut notmuch_database_t,
) -> c_uint;
pub fn notmuch_database_needs_upgrade(
database: *mut notmuch_database_t,
) -> notmuch_bool_t;
pub fn notmuch_database_upgrade(
database: *mut notmuch_database_t,
progress_notify: Option<extern fn(*mut c_void, c_double)>,
closure: *mut c_void,
) -> notmuch_status_t;
pub fn notmuch_database_begin_atomic(
notmuch: *mut notmuch_database_t,
) -> notmuch_status_t;
pub fn notmuch_database_end_atomic(
notmuch: *mut notmuch_database_t,
) -> notmuch_status_t;
pub fn notmuch_database_get_directory(
database: *mut notmuch_database_t,
path: *const c_char,
directory: *mut *mut notmuch_directory_t,
) -> notmuch_status_t;
pub fn notmuch_database_add_message(
database: *mut notmuch_database_t,
filename: *const c_char,
message: *mut *mut notmuch_message_t,
) -> notmuch_status_t;
pub fn notmuch_database_remove_message(
database: *mut notmuch_database_t,
filename: *const c_char,
) -> notmuch_status_t;
pub fn notmuch_database_find_message(
database: *mut notmuch_database_t,
message_id: *const c_char,
message: *mut *mut notmuch_message_t,
) -> notmuch_status_t;
pub fn notmuch_database_find_message_by_filename(
database: *mut notmuch_database_t,
filename: *const c_char,
message: *mut *mut notmuch_message_t,
) -> notmuch_status_t;
pub fn notmuch_database_get_all_tags(
db: *mut notmuch_database_t,
) -> *mut notmuch_tags_t;
pub fn notmuch_query_create(
database: *mut notmuch_database_t,
query_string: *const c_char,
) -> *mut notmuch_query_t;
pub fn notmuch_query_get_query_string(
query: *mut notmuch_query_t,
) -> *const c_char;
pub fn notmuch_query_set_omit_excluded(
query: *mut notmuch_query_t,
omit_excluded: notmuch_exclude_t,
);
pub fn notmuch_query_set_sort(
query: *mut notmuch_query_t,
sort: notmuch_sort_t,
);
pub fn notmuch_query_get_sort(
query: *mut notmuch_query_t,
) -> notmuch_sort_t;
pub fn notmuch_query_add_tag_exclude(
query: *mut notmuch_query_t,
tag: *const c_char,
);
pub fn notmuch_query_search_threads(
query: *mut notmuch_query_t,
) -> *mut notmuch_threads_t;
pub fn notmuch_query_search_messages(
query: *mut notmuch_query_t,
) -> *mut notmuch_messages_t;
pub fn notmuch_query_destroy(
query: *mut notmuch_query_t,
);
pub fn notmuch_threads_valid(
threads: *mut notmuch_threads_t,
) -> notmuch_bool_t;
pub fn notmuch_threads_get(
threads: *mut notmuch_threads_t,
) -> *mut notmuch_thread_t;
pub fn notmuch_threads_move_to_next(
threads: *mut notmuch_threads_t,
);
pub fn notmuch_threads_destroy(
threads: *mut notmuch_threads_t,
);
pub fn notmuch_query_count_messages(
query: *mut notmuch_query_t,
) -> c_uint;
pub fn notmuch_count_threads(
query: *mut notmuch_query_t,
) -> c_uint;
pub fn notmuch_thread_get_thread_id(
thread: *mut notmuch_thread_t,
) -> *const c_char;
pub fn notmuch_thread_get_total_messages(
thread: *mut notmuch_thread_t,
) -> c_int;
pub fn notmuch_thread_get_toplevel_messages(
thread: *mut notmuch_thread_t,
) -> *mut notmuch_messages_t;
pub fn notmuch_thread_get_messages(
thread: *mut notmuch_thread_t,
) -> *mut notmuch_messages_t;
pub fn notmuch_thread_get_matched_messages(
thread: *mut notmuch_thread_t,
) -> c_int;
pub fn notmuch_thread_get_authors(
thread: *mut notmuch_thread_t,
) -> *const c_char;
pub fn notmuch_thread_get_subject(
thread: *mut notmuch_thread_t,
) -> *const c_char;
pub fn notmuch_thread_get_oldest_date(
thread: *mut notmuch_thread_t,
) -> time_t;
pub fn notmuch_thread_get_newest_date(
thread: *mut notmuch_thread_t,
) -> time_t;
pub fn notmuch_thread_get_tags(
thread: *mut notmuch_thread_t,
) -> *mut notmuch_tags_t;
pub fn notmuch_thread_destroy(
thread: *mut notmuch_thread_t,
);
pub fn notmuch_messages_valid(
messages: *mut notmuch_messages_t,
) -> notmuch_bool_t;
pub fn notmuch_messages_get(
messages: *mut notmuch_messages_t,
) -> *mut notmuch_message_t;
pub fn notmuch_messages_move_to_next(
messages: *mut notmuch_messages_t,
);
pub fn notmuch_messages_destroy(
messages: *mut notmuch_messages_t,
);
pub fn notmuch_messages_collect_tags(
messages: *mut notmuch_messages_t,
) -> *mut notmuch_tags_t;
pub fn notmuch_message_get_message_id(
message: *mut notmuch_message_t,
) -> *const c_char;
pub fn notmuch_message_get_thread_id(
message: *mut notmuch_message_t,
) -> *const c_char;
pub fn notmuch_message_get_replies(
message: *mut notmuch_message_t,
) -> *mut notmuch_messages_t;
pub fn notmuch_message_get_filename(
message: *mut notmuch_message_t,
) -> *const c_char;
pub fn notmuch_message_get_filenames(
message: *mut notmuch_message_t,
) -> *mut notmuch_filenames_t;
pub fn notmuch_message_get_flag(
message: *mut notmuch_message_t,
flag: notmuch_message_flag_t,
) -> notmuch_bool_t;
pub fn notmuch_message_set_flag(
message: *mut notmuch_message_t,
flag: notmuch_message_flag_t,
value: notmuch_bool_t,
);
pub fn notmuch_message_get_date(
message: *mut notmuch_message_t,
) -> time_t;
pub fn notmuch_message_get_header(
message: *mut notmuch_message_t,
header: *const c_char,
) -> *const c_char;
pub fn notmuch_message_get_tags(
message: *mut notmuch_message_t,
) -> *mut notmuch_tags_t;
pub fn notmuch_message_add_tag(
message: *mut notmuch_message_t,
tag: *const c_char,
) -> notmuch_status_t;
pub fn notmuch_message_remove_tag(
message: *mut notmuch_message_t,
tag: *const c_char,
) -> notmuch_status_t;
pub fn notmuch_message_remove_all_tags(
message: *mut notmuch_message_t,
) -> notmuch_status_t;
pub fn notmuch_message_maildir_flags_to_tags(
message: *mut notmuch_message_t,
) -> notmuch_status_t;
pub fn notmuch_message_tags_to_maildir_flags(
message: *mut notmuch_message_t,
) -> notmuch_status_t;
pub fn notmuch_message_freeze(
message: *mut notmuch_message_t,
) -> notmuch_status_t;
pub fn notmuch_message_thaw(
message: *mut notmuch_message_t,
) -> notmuch_status_t;
pub fn notmuch_message_destroy(
message: *mut notmuch_message_t,
);
pub fn notmuch_tags_valid(
tags: *mut notmuch_tags_t,
) -> notmuch_bool_t;
pub fn notmuch_tags_get(
tags: *mut notmuch_tags_t,
) -> *const c_char;
pub fn notmuch_tags_move_to_next(
tags: *mut notmuch_tags_t,
);
pub fn notmuch_tags_destroy(
tags: *mut notmuch_tags_t,
);
pub fn notmuch_directory_set_mtime(
directory: *mut notmuch_directory_t,
mtime: time_t,
) -> notmuch_status_t;
pub fn notmuch_directory_get_mtime(
directory: *mut notmuch_directory_t,
) -> time_t;
pub fn notmuch_directory_get_child_files(
directory: *mut notmuch_directory_t,
) -> *mut notmuch_filenames_t;
pub fn notmuch_directory_get_child_directories(
directory: *mut notmuch_directory_t,
) -> *mut notmuch_filenames_t;
pub fn notmuch_directory_destroy(
directory: *mut notmuch_directory_t,
);
pub fn notmuch_filenames_valid(
filenames: *mut notmuch_filenames_t,
) -> notmuch_bool_t;
pub fn notmuch_filenames_get(
filenames: *mut notmuch_filenames_t,
) -> *const c_char;
pub fn notmuch_filenames_move_to_next(
filenames: *mut notmuch_filenames_t,
);
pub fn notmuch_filenames_destroy(
filenames: *mut notmuch_filenames_t,
);
}
|