#[repr(C)]pub struct SbiRet<T = usize> {
pub error: T,
pub value: T,
}Expand description
SBI functions return type.
SBI functions must return a pair of values in a0 and a1, with a0 returning an error code. This is analogous to returning the C structure
SbiRet.
Note: if this structure is used in function return on conventional
Rust code, it would not require pinning memory representation as
extern C. The repr(C) is set in case that some users want to use
this structure in FFI code.
Fields§
§error: TError number.
value: TResult value.
Implementations§
Source§impl<T> SbiRet<T>where
T: SbiRegister,
impl<T> SbiRet<T>where
T: SbiRegister,
Sourcepub const fn not_supported() -> SbiRet<T>
pub const fn not_supported() -> SbiRet<T>
SBI call failed due to not supported by target ISA, operation type not supported, or target operation type not implemented on purpose.
Sourcepub const fn invalid_param() -> SbiRet<T>
pub const fn invalid_param() -> SbiRet<T>
SBI call failed due to invalid hart mask parameter, invalid target hart id, invalid operation type, or invalid resource index.
Sourcepub const fn denied() -> SbiRet<T>
pub const fn denied() -> SbiRet<T>
SBI call denied for unsatisfied entry criteria, or insufficient access permission to debug console or CPPC register.
Sourcepub const fn invalid_address() -> SbiRet<T>
pub const fn invalid_address() -> SbiRet<T>
SBI call failed for invalid mask start address, not a valid physical address parameter, or the target address is prohibited by PMP to run in supervisor mode.
Sourcepub const fn already_available() -> SbiRet<T>
pub const fn already_available() -> SbiRet<T>
SBI call failed for the target resource is already available, e.g., the target hart is already started when caller still requests it to start.
Sourcepub const fn already_started() -> SbiRet<T>
pub const fn already_started() -> SbiRet<T>
SBI call failed for the target resource is already started, e.g., target performance counter is started.
Sourcepub const fn already_stopped() -> SbiRet<T>
pub const fn already_stopped() -> SbiRet<T>
SBI call failed for the target resource is already stopped, e.g., target performance counter is stopped.
Sourcepub const fn no_shmem() -> SbiRet<T>
pub const fn no_shmem() -> SbiRet<T>
SBI call failed for shared memory is not available, e.g. nested acceleration shared memory is not available.
Sourcepub const fn invalid_state() -> SbiRet<T>
pub const fn invalid_state() -> SbiRet<T>
SBI call failed for invalid state, e.g. register a software event but the event is not in unused state.
Sourcepub const fn bad_range() -> SbiRet<T>
pub const fn bad_range() -> SbiRet<T>
SBI call failed for bad or invalid range, e.g. the software event is not exist in the specified range.
Sourcepub const fn denied_locked() -> SbiRet<T>
pub const fn denied_locked() -> SbiRet<T>
SBI call failed for denied or not allowed due to lock status.
Source§impl SbiRet
impl SbiRet
Sourcepub const fn into_result(self) -> Result<usize, Error>
pub const fn into_result(self) -> Result<usize, Error>
Converts to a Result of value and error.
Sourcepub const fn is_ok(&self) -> bool
pub const fn is_ok(&self) -> bool
Returns true if current SBI return succeeded.
§Examples
Basic usage:
let x = SbiRet::success(0);
assert_eq!(x.is_ok(), true);
let x = SbiRet::failed();
assert_eq!(x.is_ok(), false);Sourcepub fn is_ok_and(self, f: impl FnOnce(usize) -> bool) -> bool
pub fn is_ok_and(self, f: impl FnOnce(usize) -> bool) -> bool
Returns true if the SBI call succeeded and the value inside of it matches a predicate.
§Examples
Basic usage:
let x = SbiRet::success(2);
assert_eq!(x.is_ok_and(|x| x > 1), true);
let x = SbiRet::success(0);
assert_eq!(x.is_ok_and(|x| x > 1), false);
let x = SbiRet::no_shmem();
assert_eq!(x.is_ok_and(|x| x > 1), false);Sourcepub const fn is_err(&self) -> bool
pub const fn is_err(&self) -> bool
Returns true if current SBI return is an error.
§Examples
Basic usage:
let x = SbiRet::success(0);
assert_eq!(x.is_err(), false);
let x = SbiRet::not_supported();
assert_eq!(x.is_err(), true);Sourcepub fn is_err_and(self, f: impl FnOnce(Error) -> bool) -> bool
pub fn is_err_and(self, f: impl FnOnce(Error) -> bool) -> bool
Returns true if the result is an error and the value inside of it matches a predicate.
§Examples
let x = SbiRet::denied();
assert_eq!(x.is_err_and(|x| x == Error::Denied), true);
let x = SbiRet::invalid_address();
assert_eq!(x.is_err_and(|x| x == Error::Denied), false);
let x = SbiRet::success(0);
assert_eq!(x.is_err_and(|x| x == Error::Denied), false);Sourcepub fn ok(self) -> Option<usize>
pub fn ok(self) -> Option<usize>
Converts from SbiRet to Option<usize>.
Converts self into an Option<usize>, consuming self,
and discarding the error, if any.
§Examples
Basic usage:
let x = SbiRet::success(2);
assert_eq!(x.ok(), Some(2));
let x = SbiRet::invalid_param();
assert_eq!(x.ok(), None);Sourcepub fn err(self) -> Option<Error>
pub fn err(self) -> Option<Error>
Converts from SbiRet to Option<Error>.
Converts self into an Option<Error>, consuming self,
and discarding the success value, if any.
§Examples
Basic usage:
let x = SbiRet::success(2);
assert_eq!(x.err(), None);
let x = SbiRet::denied();
assert_eq!(x.err(), Some(Error::Denied));Sourcepub fn map<U, F>(self, op: F) -> Result<U, Error>
pub fn map<U, F>(self, op: F) -> Result<U, Error>
Maps a SbiRet to Result<U, Error> by applying a function to a
contained success value, leaving an error value untouched.
This function can be used to compose the results of two functions.
§Examples
Gets detail of a PMU counter and judge if it is a firmware counter.
// We assume that counter index 42 is a firmware counter.
let counter_idx = 42;
// Masks PMU counter type by setting highest bit in `usize`.
const TYPE_MASK: usize = 1 << (size_of::<usize>() - 1);
// Highest bit of returned `counter_info` represents whether it's
// a firmware counter or a hardware counter.
let is_firmware_counter = sbi_rt::pmu_counter_get_info(counter_idx)
.map(|counter_info| counter_info & TYPE_MASK != 0);
// If that bit is set, it is a firmware counter.
assert_eq!(is_firmware_counter, Ok(true));Sourcepub fn map_or<U, F>(self, default: U, f: F) -> U
pub fn map_or<U, F>(self, default: U, f: F) -> U
Returns the provided default (if error), or applies a function to the contained value (if success).
Arguments passed to map_or are eagerly evaluated;
if you are passing the result of a function call,
it is recommended to use map_or_else,
which is lazily evaluated.
§Examples
let x = SbiRet::success(3);
assert_eq!(x.map_or(42, |v| v & 0b1), 1);
let x = SbiRet::invalid_address();
assert_eq!(x.map_or(42, |v| v & 0b1), 42);Sourcepub fn map_or_else<U, D, F>(self, default: D, f: F) -> U
pub fn map_or_else<U, D, F>(self, default: D, f: F) -> U
Maps a SbiRet to usize value by applying fallback function default to
a contained error, or function f to a contained success value.
This function can be used to unpack a successful result while handling an error.
§Examples
Basic usage:
let k = 21;
let x = SbiRet::success(3);
assert_eq!(x.map_or_else(|e| k * 2, |v| v & 0b1), 1);
let x = SbiRet::already_available();
assert_eq!(x.map_or_else(|e| k * 2, |v| v & 0b1), 42);Sourcepub fn map_err<F, O>(self, op: O) -> Result<usize, F>
pub fn map_err<F, O>(self, op: O) -> Result<usize, F>
Maps a SbiRet to Result<T, F> by applying a function to a
contained error as Error struct, leaving success value untouched.
This function can be used to pass through a successful result while handling an error.
§Examples
Basic usage:
fn stringify(x: Error) -> String {
if x == Error::AlreadyStarted {
"error: already started!".to_string()
} else {
"error: other error!".to_string()
}
}
let x = SbiRet::success(2);
assert_eq!(x.map_err(stringify), Ok(2));
let x = SbiRet::already_started();
assert_eq!(x.map_err(stringify), Err("error: already started!".to_string()));Sourcepub fn inspect<F>(self, f: F) -> SbiRet
pub fn inspect<F>(self, f: F) -> SbiRet
Calls a function with a reference to the contained value if current SBI call succeeded.
Returns the original result.
§Examples
// Assume that SBI debug console have read 512 bytes into a buffer.
let ret = SbiRet::success(512);
// Inspect the SBI DBCN call result.
let idx = ret
.inspect(|x| println!("bytes written: {x}"))
.map(|x| x - 1)
.expect("SBI DBCN call failed");
assert_eq!(idx, 511);Sourcepub fn inspect_err<F>(self, f: F) -> SbiRet
pub fn inspect_err<F>(self, f: F) -> SbiRet
Calls a function with a reference to the contained value if current SBI result is an error.
Returns the original result.
§Examples
// Assume that SBI debug console write operation failed for invalid parameter.
let ret = SbiRet::invalid_param();
// Print the error if SBI DBCN call failed.
let ret = ret.inspect_err(|e| eprintln!("failed to read from SBI console: {e:?}"));Sourcepub fn expect(self, msg: &str) -> usize
pub fn expect(self, msg: &str) -> usize
Returns the contained success value, consuming the self value.
§Panics
Panics if self is an SBI error with a panic message including the passed message, and the content of the SBI state.
§Examples
Basic usage:
let x = SbiRet::already_stopped();
x.expect("Testing expect"); // panics with `Testing expect`Sourcepub fn unwrap(self) -> usize
pub fn unwrap(self) -> usize
Returns the contained success value, consuming the self value.
§Panics
Panics if self is an SBI error, with a panic message provided by the
SBI error converted into Error struct.
§Examples
Basic usage:
let x = SbiRet::success(2);
assert_eq!(x.unwrap(), 2);let x = SbiRet::failed();
x.unwrap(); // panicsSourcepub fn expect_err(self, msg: &str) -> Error
pub fn expect_err(self, msg: &str) -> Error
Returns the contained error as Error struct, consuming the self value.
§Panics
Panics if the self is SBI success value, with a panic message including the passed message, and the content of the success value.
§Examples
Basic usage:
let x = SbiRet::success(10);
x.expect_err("Testing expect_err"); // panics with `Testing expect_err`Sourcepub fn unwrap_err(self) -> Error
pub fn unwrap_err(self) -> Error
Returns the contained error as Error struct, consuming the self value.
§Panics
Panics if the self is SBI success value, with a custom panic message provided by the success value.
§Examples
let x = SbiRet::success(2);
x.unwrap_err(); // panics with `2`let x = SbiRet::not_supported();
assert_eq!(x.unwrap_err(), Error::NotSupported);Sourcepub fn and<U>(self, res: Result<U, Error>) -> Result<U, Error>
pub fn and<U>(self, res: Result<U, Error>) -> Result<U, Error>
Returns res if self is success value, otherwise otherwise returns the contained error
of self as Error struct.
Arguments passed to and are eagerly evaluated; if you are passing the
result of a function call, it is recommended to use and_then, which is
lazily evaluated.
§Examples
Basic usage:
let x = SbiRet::success(2);
let y = SbiRet::invalid_param().into_result();
assert_eq!(x.and(y), Err(Error::InvalidParam));
let x = SbiRet::denied();
let y = SbiRet::success(3).into_result();
assert_eq!(x.and(y), Err(Error::Denied));
let x = SbiRet::invalid_address();
let y = SbiRet::already_available().into_result();
assert_eq!(x.and(y), Err(Error::InvalidAddress));
let x = SbiRet::success(4);
let y = SbiRet::success(5).into_result();
assert_eq!(x.and(y), Ok(5));Sourcepub fn and_then<U, F>(self, op: F) -> Result<U, Error>
pub fn and_then<U, F>(self, op: F) -> Result<U, Error>
Calls op if self is success value, otherwise returns the contained error
as Error struct.
This function can be used for control flow based on SbiRet values.
§Examples
fn sq_then_to_string(x: usize) -> Result<String, Error> {
x.checked_mul(x).map(|sq| sq.to_string()).ok_or(Error::Failed)
}
assert_eq!(SbiRet::success(2).and_then(sq_then_to_string), Ok(4.to_string()));
assert_eq!(SbiRet::success(1_000_000_000_000).and_then(sq_then_to_string), Err(Error::Failed));
assert_eq!(SbiRet::invalid_param().and_then(sq_then_to_string), Err(Error::InvalidParam));Sourcepub fn or<F>(self, res: Result<usize, F>) -> Result<usize, F>
pub fn or<F>(self, res: Result<usize, F>) -> Result<usize, F>
Returns res if self is SBI error, otherwise returns the success value of self.
Arguments passed to or are eagerly evaluated; if you are passing the
result of a function call, it is recommended to use or_else, which is
lazily evaluated.
§Examples
Basic usage:
let x = SbiRet::success(2);
let y = SbiRet::invalid_param().into_result();
assert_eq!(x.or(y), Ok(2));
let x = SbiRet::denied();
let y = SbiRet::success(3).into_result();
assert_eq!(x.or(y), Ok(3));
let x = SbiRet::invalid_address();
let y = SbiRet::already_available().into_result();
assert_eq!(x.or(y), Err(Error::AlreadyAvailable));
let x = SbiRet::success(4);
let y = SbiRet::success(100).into_result();
assert_eq!(x.or(y), Ok(4));Sourcepub fn or_else<F, O>(self, op: O) -> Result<usize, F>
pub fn or_else<F, O>(self, op: O) -> Result<usize, F>
Calls op if self is SBI error, otherwise returns the success value of self.
This function can be used for control flow based on result values.
§Examples
Basic usage:
fn is_failed(x: Error) -> Result<usize, bool> { Err(x == Error::Failed) }
assert_eq!(SbiRet::success(2).or_else(is_failed), Ok(2));
assert_eq!(SbiRet::failed().or_else(is_failed), Err(true));Sourcepub fn unwrap_or(self, default: usize) -> usize
pub fn unwrap_or(self, default: usize) -> usize
Returns the contained success value or a provided default.
Arguments passed to unwrap_or are eagerly evaluated; if you are passing
the result of a function call, it is recommended to use unwrap_or_else,
which is lazily evaluated.
§Examples
Basic usage:
let default = 2;
let x = SbiRet::success(9);
assert_eq!(x.unwrap_or(default), 9);
let x = SbiRet::invalid_param();
assert_eq!(x.unwrap_or(default), default);Sourcepub fn unwrap_or_else<F>(self, op: F) -> usize
pub fn unwrap_or_else<F>(self, op: F) -> usize
Returns the contained success value or computes it from a closure.
§Examples
Basic usage:
fn invalid_use_zero(x: Error) -> usize { if x == Error::InvalidParam { 0 } else { 3 } }
assert_eq!(SbiRet::success(2).unwrap_or_else(invalid_use_zero), 2);
assert_eq!(SbiRet::invalid_param().unwrap_or_else(invalid_use_zero), 0);Sourcepub unsafe fn unwrap_unchecked(self) -> usize
pub unsafe fn unwrap_unchecked(self) -> usize
Returns the contained success value, consuming the self value,
without checking that the SbiRet contains an error value.
§Safety
Calling this method on an SbiRet containing an error value results
in undefined behavior.
§Examples
let x = SbiRet::success(3);
assert_eq!(unsafe { x.unwrap_unchecked() }, 3);let x = SbiRet::no_shmem();
unsafe { x.unwrap_unchecked(); } // Undefined behavior!Sourcepub unsafe fn unwrap_err_unchecked(self) -> Error
pub unsafe fn unwrap_err_unchecked(self) -> Error
Returns the contained Error value, consuming the self value,
without checking that the SbiRet does not contain a success value.
§Safety
Calling this method on an SbiRet containing a success value results
in undefined behavior.
§Examples
let x = SbiRet::success(4);
unsafe { x.unwrap_unchecked(); } // Undefined behavior!let x = SbiRet::failed();
assert_eq!(unsafe { x.unwrap_err_unchecked() }, Error::Failed);Trait Implementations§
impl<T> Copy for SbiRet<T>where
T: Copy,
impl<T> Eq for SbiRet<T>where
T: Eq,
Source§impl IntoIterator for SbiRet
impl IntoIterator for SbiRet
Source§fn into_iter(self) -> <SbiRet as IntoIterator>::IntoIter
fn into_iter(self) -> <SbiRet as IntoIterator>::IntoIter
Returns a consuming iterator over the possibly contained value.
The iterator yields one value if the result contains a success value, otherwise none.
§Examples
let x = SbiRet::success(5);
let v: Vec<usize> = x.into_iter().collect();
assert_eq!(v, [5]);
let x = SbiRet::not_supported();
let v: Vec<usize> = x.into_iter().collect();
assert_eq!(v, []);