#[derive(Debug, thiserror::Error)]
pub enum LairError {
#[error("LairError: {0}")]
GhostError(#[from] ghost_actor::GhostError),
#[error("Lair pidfile/process already exists")]
ProcessAlreadyExists,
#[error("IpcClientConnectError: {0} {1}")]
IpcClientConnectError(String, Box<dyn std::error::Error + Send + Sync>),
#[error(transparent)]
Other(Box<dyn std::error::Error + Send + Sync>),
}
impl LairError {
pub fn other(
e: impl Into<Box<dyn std::error::Error + Send + Sync>>,
) -> Self {
LairError::Other(e.into())
}
}
impl From<String> for LairError {
fn from(s: String) -> Self {
#[derive(Debug, thiserror::Error)]
struct OtherError(String);
impl std::fmt::Display for OtherError {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "{}", self.0)
}
}
LairError::other(OtherError(s))
}
}
impl From<&str> for LairError {
fn from(s: &str) -> Self {
s.to_string().into()
}
}
impl From<LairError> for () {
fn from(_: LairError) {}
}
pub type LairResult<T> = Result<T, LairError>;