blob: 8e8514cc52da17828395004a9ddf784772d0084c (
plain) (
blame)
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
|
use std::{
ops,
marker,
ptr,
};
use error::Result;
use ffi;
use utils::{
NewFromPtr,
};
use Database;
use Messages;
#[derive(Debug)]
pub struct Query<'d>(
pub(crate) *mut ffi::notmuch_query_t,
marker::PhantomData<&'d mut Database>,
);
impl<'d> Query<'d> {
pub fn create(db: &'d Database, query_string: &String) -> Result<Self> {
db.create_query(query_string)
}
/// Filter messages according to the query and return
pub fn search_messages(self: &Self) -> Result<Messages>
{
let mut msgs = ptr::null_mut();
unsafe {
msgs = ffi::notmuch_query_search_messages(self.0);
}
Ok(Messages::new(msgs))
}
}
impl<'d> NewFromPtr<*mut ffi::notmuch_query_t> for Query<'d> {
fn new(ptr: *mut ffi::notmuch_query_t) -> Query<'d> {
Query(ptr, marker::PhantomData)
}
}
impl<'d> ops::Drop for Query<'d> {
fn drop(&mut self) {
unsafe {
ffi::notmuch_query_destroy(self.0)
};
}
}
|