use std::fmt;
use crate::error::CaError;
pub type AutosaveResult<T> = Result<T, AutosaveError>;
#[derive(Debug)]
pub enum AutosaveError {
Io(std::io::Error),
RequestFile {
path: String,
message: String,
},
IncludeCycle {
chain: Vec<String>,
},
IncludeDepthExceeded(usize),
UndefinedMacro {
key: String,
source: String,
line: usize,
},
CorruptSaveFile {
path: String,
message: String,
},
PvNotFound(String),
Ca(CaError),
}
impl fmt::Display for AutosaveError {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match self {
Self::Io(e) => write!(f, "I/O error: {e}"),
Self::RequestFile { path, message } => {
write!(f, "request file error in '{path}': {message}")
}
Self::IncludeCycle { chain } => {
write!(f, "include cycle detected: {}", chain.join(" -> "))
}
Self::IncludeDepthExceeded(depth) => {
write!(f, "include depth exceeded maximum of {depth}")
}
Self::UndefinedMacro { key, source, line } => {
write!(f, "undefined macro '{key}' in {source} at line {line}")
}
Self::CorruptSaveFile { path, message } => {
write!(f, "corrupt save file '{path}': {message}")
}
Self::PvNotFound(name) => write!(f, "PV not found: {name}"),
Self::Ca(e) => write!(f, "CA error: {e}"),
}
}
}
impl std::error::Error for AutosaveError {
fn source(&self) -> Option<&(dyn std::error::Error + 'static)> {
match self {
Self::Io(e) => Some(e),
Self::Ca(e) => Some(e),
_ => None,
}
}
}
impl From<std::io::Error> for AutosaveError {
fn from(e: std::io::Error) -> Self {
Self::Io(e)
}
}
impl From<CaError> for AutosaveError {
fn from(e: CaError) -> Self {
Self::Ca(e)
}
}