summaryrefslogtreecommitdiff
path: root/rust-src/bch_bindgen/src/fs.rs
blob: 1176846d90e4d0a0034567a3e8da87d43abcc6f4 (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
use std::ffi::CString;
use std::os::unix::ffi::OsStrExt;
use std::path::PathBuf;
use crate::c;
use crate::errcode::{bch_errcode, errptr_to_result};

pub struct Fs {
    pub raw: *mut c::bch_fs,
}

impl Fs {
    pub fn open(devices: &Vec<PathBuf>, opts: c::bch_opts) -> Result<Fs, bch_errcode> {
        let devices: Vec<_> = devices.iter()
            .map(|i| CString::new(i.as_os_str().as_bytes()).unwrap()).collect();
        let dev_c_strs: Vec<_> = devices.iter()
            .map(|i| { let p: *const i8 = i.as_ptr(); p })
            .collect();
        let dev_c_strarray: *const *mut i8 = dev_c_strs[..].as_ptr() as *const *mut i8;

        let ret = unsafe { c::bch2_fs_open(dev_c_strarray, dev_c_strs.len() as u32, opts) };

        errptr_to_result(ret).map(|fs| Fs { raw: fs})
    }
}

impl Drop for Fs {
    fn drop(&mut self) {
        unsafe { c::bch2_fs_stop(self.raw) }
    }             
}