camel-core 0.6.3

Core engine for rust-camel
Documentation
use std::fmt;

use camel_api::CamelError;
use thiserror::Error;

#[derive(Debug, Clone, PartialEq, Eq)]
pub enum DomainError {
    InvalidTransition { from: String, to: String },
    NotFound(String),
    AlreadyExists(String),
    InvalidState(String),
}

impl fmt::Display for DomainError {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        match self {
            DomainError::InvalidTransition { from, to } => {
                write!(f, "invalid transition: {from} -> {to}")
            }
            DomainError::NotFound(id) => write!(f, "not found: {id}"),
            DomainError::AlreadyExists(id) => write!(f, "already exists: {id}"),
            DomainError::InvalidState(msg) => write!(f, "invalid state: {msg}"),
        }
    }
}

impl std::error::Error for DomainError {}

impl From<DomainError> for CamelError {
    fn from(e: DomainError) -> Self {
        CamelError::RouteError(e.to_string())
    }
}

/// Error type for language registration operations on [`CamelContext`].
///
/// This is distinct from [`camel_language_api::error::LanguageError`], which
/// covers language-evaluation concerns (parse, eval, unknown variable, etc.).
/// Registration is a context-configuration invariant, not a language concern.
#[derive(Debug, Clone, PartialEq, Eq, Error)]
pub enum LanguageRegistryError {
    #[error("language '{name}' is already registered")]
    AlreadyRegistered { name: String },
}

impl From<LanguageRegistryError> for CamelError {
    fn from(e: LanguageRegistryError) -> Self {
        CamelError::Config(e.to_string())
    }
}