use std::{
error::Error as StdError,
fmt::{Display, Formatter, Result as FmtResult},
result::Result as StdResult,
};
pub type Chan = u32;
pub type Key = u32;
pub type Vel = u32;
pub type Ctrl = u32;
pub type Val = u32;
pub type Prog = u32;
pub type Bank = u32;
pub type FontId = u32;
pub type PresetId = u32;
pub type Result<T> = StdResult<T, Error>;
pub type Status = Result<()>;
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub enum Error {
Alloc,
Fluid(String),
Path,
}
impl StdError for Error {}
impl Display for Error {
fn fmt(&self, f: &mut Formatter) -> FmtResult {
use self::Error::*;
match self {
Alloc => "Allocation error".fmt(f),
Fluid(error) => {
"Fluidlite error: ".fmt(f)?;
error.fmt(f)
}
Path => "Invalid path".fmt(f),
}
}
}
pub(crate) fn result_from_ptr<T>(ptr: *mut T) -> Result<*mut T> {
if ptr.is_null() {
Err(Error::Alloc)
} else {
Ok(ptr)
}
}
pub(crate) fn option_from_ptr<T>(ptr: *mut T) -> Option<*mut T> {
if ptr.is_null() {
None
} else {
Some(ptr)
}
}