summaryrefslogtreecommitdiff
path: root/src/gegl.rs
blob: b03fca185d8be332b9110c37b7d4163ca9bd3e07 (plain)
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
extern crate libc;

use gegl_ffi as ffi;
use std::ptr;
use std::ffi::CString;

pub struct GeglContext {
    _private: ()
}

unsafe fn unref<T>(object: *mut T) {
    ffi::g_object_unref(object as *mut libc::c_void);
}

impl GeglContext {
    pub fn new() -> GeglContext {
        unsafe { ffi::gegl_init(&mut 0, ptr::null_mut()) }
        GeglContext { _private: () }
    }

    pub fn new_node(&self) -> GeglNode {
        GeglNode(unsafe { ffi::gegl_node_new() })
    }
}

impl Drop for GeglContext {
    fn drop(&mut self) {
        unsafe { ffi::gegl_exit(); }
    }
}

pub struct GeglNode(*mut ffi::CGeglNode);

impl GeglNode {
    pub fn create_child(self, operation: &str) -> GeglNode {
        GeglNode(unsafe {
            let operation0 = CString::new(operation).unwrap();
            ffi::gegl_node_create_child(self.0, operation0.as_ptr())
        })
    }
}

impl Drop for GeglNode {
    fn drop(&mut self) {
        unsafe { unref(self.0); }
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use gegl_ffi as ffi;

    #[test]
    fn can_create_nodes() {
        let context = GeglContext::new();
        let node = context.new_node();
        let node2 = context.new_node();
    }
}