mirror of
https://github.com/koverstreet/bcachefs-tools.git
synced 2025-02-19 00:00:03 +03:00
This moves the Rust sources out of rust_src/ and into the top level. Running the bcachefs executable out of the development tree is now: $ ./target/release/bcachefs command or $ cargo run --profile release -- command instead of "./bcachefs command". Building and installing is still: $ make && make install Signed-off-by: Thomas Bertschinger <tahbertschinger@gmail.com> Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
41 lines
1.0 KiB
Rust
41 lines
1.0 KiB
Rust
use crate::bcachefs;
|
|
use std::ffi::CStr;
|
|
use std::fmt;
|
|
|
|
pub use crate::c::bch_errcode;
|
|
|
|
impl fmt::Display for bch_errcode {
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
let s = unsafe { CStr::from_ptr(bcachefs::bch2_err_str(*self as i32)) };
|
|
write!(f, "{:?}", s)
|
|
}
|
|
}
|
|
|
|
/* Can we make a function generic over ptr constness? */
|
|
|
|
pub fn errptr_to_result<T>(p: *mut T) -> Result<*mut T, bch_errcode> {
|
|
let addr = p as usize;
|
|
let max_err: isize = -4096;
|
|
if addr > max_err as usize {
|
|
let addr = addr as i32;
|
|
let err: bch_errcode = unsafe { std::mem::transmute(-addr) };
|
|
Err(err)
|
|
} else {
|
|
Ok(p)
|
|
}
|
|
}
|
|
|
|
pub fn errptr_to_result_c<T>(p: *const T) -> Result<*const T, bch_errcode> {
|
|
let addr = p as usize;
|
|
let max_err: isize = -4096;
|
|
if addr > max_err as usize {
|
|
let addr = addr as i32;
|
|
let err: bch_errcode = unsafe { std::mem::transmute(-addr) };
|
|
Err(err)
|
|
} else {
|
|
Ok(p)
|
|
}
|
|
}
|
|
|
|
impl std::error::Error for bch_errcode {}
|