2019-09-17 22:31:51 +00:00
|
|
|
use super::{
|
|
|
|
error,
|
|
|
|
foreign::{self, CBox},
|
2019-12-05 18:11:09 +00:00
|
|
|
store::StorePath,
|
2019-09-17 22:31:51 +00:00
|
|
|
util,
|
|
|
|
};
|
2019-09-15 21:09:30 +00:00
|
|
|
|
|
|
|
#[no_mangle]
|
|
|
|
pub extern "C" fn unpack_tarfile(
|
|
|
|
source: foreign::Source,
|
|
|
|
dest_dir: &str,
|
|
|
|
) -> CBox<Result<(), error::CppException>> {
|
|
|
|
CBox::new(util::tarfile::unpack_tarfile(source, dest_dir).map_err(|err| err.into()))
|
|
|
|
}
|
|
|
|
|
|
|
|
#[no_mangle]
|
2019-12-05 18:11:09 +00:00
|
|
|
pub unsafe extern "C" fn ffi_String_new(s: &str, out: *mut String) {
|
|
|
|
// FIXME: check whether 's' is valid UTF-8?
|
|
|
|
out.write(s.to_string())
|
|
|
|
}
|
2019-09-15 21:09:30 +00:00
|
|
|
|
2019-12-05 18:11:09 +00:00
|
|
|
#[no_mangle]
|
|
|
|
pub unsafe extern "C" fn ffi_String_drop(self_: *mut String) {
|
|
|
|
std::ptr::drop_in_place(self_);
|
|
|
|
}
|
2019-09-15 21:09:30 +00:00
|
|
|
|
2019-12-05 18:11:09 +00:00
|
|
|
#[no_mangle]
|
|
|
|
pub extern "C" fn ffi_StorePath_new(
|
|
|
|
path: &str,
|
|
|
|
store_dir: &str,
|
|
|
|
) -> Result<StorePath, error::CppException> {
|
|
|
|
StorePath::new(std::path::Path::new(path), store_dir).map_err(|err| err.into())
|
|
|
|
}
|
2019-09-15 21:09:30 +00:00
|
|
|
|
2019-12-05 18:11:09 +00:00
|
|
|
#[no_mangle]
|
|
|
|
pub extern "C" fn ffi_StorePath_new2(
|
|
|
|
hash: &[u8; crate::store::path::STORE_PATH_HASH_BYTES],
|
|
|
|
name: &str,
|
|
|
|
) -> Result<StorePath, error::CppException> {
|
|
|
|
StorePath::from_parts(*hash, name).map_err(|err| err.into())
|
|
|
|
}
|
2019-09-15 21:09:30 +00:00
|
|
|
|
2019-12-05 18:11:09 +00:00
|
|
|
#[no_mangle]
|
|
|
|
pub extern "C" fn ffi_StorePath_fromBaseName(
|
|
|
|
base_name: &str,
|
|
|
|
) -> Result<StorePath, error::CppException> {
|
|
|
|
StorePath::new_from_base_name(base_name).map_err(|err| err.into())
|
|
|
|
}
|
2019-09-15 21:09:30 +00:00
|
|
|
|
2019-12-05 18:11:09 +00:00
|
|
|
#[no_mangle]
|
|
|
|
pub unsafe extern "C" fn ffi_StorePath_drop(self_: *mut StorePath) {
|
|
|
|
std::ptr::drop_in_place(self_);
|
|
|
|
}
|
2019-09-15 21:09:30 +00:00
|
|
|
|
2019-12-05 18:11:09 +00:00
|
|
|
#[no_mangle]
|
|
|
|
pub extern "C" fn ffi_StorePath_to_string(self_: &StorePath) -> String {
|
|
|
|
format!("{}", self_)
|
|
|
|
}
|
2019-09-15 21:09:30 +00:00
|
|
|
|
2019-12-05 18:11:09 +00:00
|
|
|
#[no_mangle]
|
|
|
|
pub extern "C" fn ffi_StorePath_less_than(a: &StorePath, b: &StorePath) -> bool {
|
|
|
|
a < b
|
|
|
|
}
|
2019-09-17 22:31:51 +00:00
|
|
|
|
2019-12-05 18:11:09 +00:00
|
|
|
#[no_mangle]
|
|
|
|
pub extern "C" fn ffi_StorePath_eq(a: &StorePath, b: &StorePath) -> bool {
|
|
|
|
a == b
|
|
|
|
}
|
2019-12-04 14:32:28 +00:00
|
|
|
|
2019-12-05 18:11:09 +00:00
|
|
|
#[no_mangle]
|
|
|
|
pub extern "C" fn ffi_StorePath_clone(self_: &StorePath) -> StorePath {
|
|
|
|
self_.clone()
|
|
|
|
}
|
2019-09-17 22:31:51 +00:00
|
|
|
|
2019-12-05 18:11:09 +00:00
|
|
|
#[no_mangle]
|
|
|
|
pub extern "C" fn ffi_StorePath_name(self_: &StorePath) -> &str {
|
|
|
|
self_.name.name()
|
|
|
|
}
|
|
|
|
|
|
|
|
#[no_mangle]
|
|
|
|
pub extern "C" fn ffi_StorePath_hash_data(
|
|
|
|
self_: &StorePath,
|
|
|
|
) -> &[u8; crate::store::path::STORE_PATH_HASH_BYTES] {
|
|
|
|
self_.hash.hash()
|
2019-09-15 21:09:30 +00:00
|
|
|
}
|