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
use std::error::Error;
use std::fmt;

#[derive(Debug)]
pub enum RandomxError {
    /// Occurs when allocating the RandomX cache fails.
    ///
    /// Reasons include:
    ///  * Memory allocation fails
    ///  * The JIT flag is set but the current platform does not support it
    ///  * An invalid or unsupported ARGON2 value is set
    CacheAllocError,

    /// Occurs when allocating a RandomX dataset fails.
    ///
    /// Reasons include:
    ///  * Memory allocation fails
    DatasetAllocError,

    /// Occurs when creating a VM fails.
    ///
    /// Reasons include:
    ///  * Scratchpad memory allocation fails
    ///  * Unsupported flags
    VmAllocError,
}

impl fmt::Display for RandomxError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        match *self {
            RandomxError::CacheAllocError => write!(f, "Failed to allocate cache"),
            RandomxError::DatasetAllocError => write!(f, "Failed to allocate datataset"),
            RandomxError::VmAllocError => write!(f, "Failed to create VM"),
        }
    }
}

impl Error for RandomxError {
    fn description(&self) -> &str {
        match *self {
            RandomxError::CacheAllocError => "Failed to allocate cache",
            RandomxError::DatasetAllocError => "Failed to allocate dataset",
            RandomxError::VmAllocError => "Failed to create VM",
        }
    }

    fn cause(&self) -> Option<&dyn Error> {
        None
    }
}