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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
use std::{
    result::{Result as StdResult},
    error::{Error as StdError},
    fmt::{Display, Formatter, Result as FmtResult},
};

/// Channel number
pub type Chan = u32;

/// Key number
pub type Key = u32;

/// Velocity value
pub type Vel = u32;

/// Control number
pub type Ctrl = u32;

/// Control value
pub type Val = u32;

/// Program number (`0..=127`)
pub type Prog = u32;

/// Bank number (`0..=127`)
pub type Bank = u32;

/// Font Id
pub type FontId = u32;

/// Preset Id
pub type PresetId = u32;

/// Generic result type
pub type Result<T> = StdResult<T, Error>;

/// Result without value
pub type Status = Result<()>;

/// Common error type
#[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)
    }
}