use crate::handler::graph::DecisionGraphValidationError;
use crate::handler::node::NodeError;
use crate::loader::LoaderError;
use jsonschema::{ErrorIterator, ValidationError};
use serde::ser::SerializeMap;
use serde::{Serialize, Serializer};
use serde_json::{Map, Value};
use std::iter::once;
use thiserror::Error;
#[derive(Debug, Error)]
pub enum EvaluationError {
#[error("Loader error")]
LoaderError(Box<LoaderError>),
#[error("Node error")]
NodeError(Box<NodeError>),
#[error("Depth limit exceeded")]
DepthLimitExceeded,
#[error("Invalid graph")]
InvalidGraph(Box<DecisionGraphValidationError>),
#[error("Validation failed")]
Validation(Box<Value>),
}
impl Serialize for EvaluationError {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: Serializer,
{
let mut map = serializer.serialize_map(None)?;
match self {
EvaluationError::DepthLimitExceeded => {
map.serialize_entry("type", "DepthLimitExceeded")?;
}
EvaluationError::NodeError(err) => {
map.serialize_entry("type", "NodeError")?;
map.serialize_entry("nodeId", &err.node_id)?;
map.serialize_entry("source", &err.source.to_string())?;
if let Some(trace) = &err.trace {
map.serialize_entry("trace", &trace)?;
}
}
EvaluationError::LoaderError(err) => {
map.serialize_entry("type", "LoaderError")?;
match err.as_ref() {
LoaderError::Internal { key, source } => {
map.serialize_entry("key", key)?;
map.serialize_entry("source", &source.to_string())?;
}
LoaderError::NotFound(key) => {
map.serialize_entry("key", key)?;
}
}
}
EvaluationError::InvalidGraph(err) => {
map.serialize_entry("type", "InvalidGraph")?;
map.serialize_entry("source", err)?;
}
EvaluationError::Validation(err) => {
map.serialize_entry("type", "Validation")?;
map.serialize_entry("source", err)?;
}
}
map.end()
}
}
impl From<LoaderError> for Box<EvaluationError> {
fn from(error: LoaderError) -> Self {
Box::new(EvaluationError::LoaderError(error.into()))
}
}
impl From<Box<LoaderError>> for Box<EvaluationError> {
fn from(error: Box<LoaderError>) -> Self {
Box::new(EvaluationError::LoaderError(error))
}
}
impl From<NodeError> for Box<EvaluationError> {
fn from(error: NodeError) -> Self {
Box::new(EvaluationError::NodeError(error.into()))
}
}
impl From<Box<NodeError>> for Box<EvaluationError> {
fn from(error: Box<NodeError>) -> Self {
Box::new(EvaluationError::NodeError(error))
}
}
impl From<DecisionGraphValidationError> for Box<EvaluationError> {
fn from(error: DecisionGraphValidationError) -> Self {
Box::new(EvaluationError::InvalidGraph(error.into()))
}
}
#[derive(Serialize)]
#[serde(rename_all = "camelCase")]
struct ValidationErrorJson {
path: String,
message: String,
}
impl<'a> From<ValidationError<'a>> for ValidationErrorJson {
fn from(value: ValidationError<'a>) -> Self {
ValidationErrorJson {
path: value.instance_path.to_string(),
message: format!("{}", value),
}
}
}
impl<'a> From<ErrorIterator<'a>> for Box<EvaluationError> {
fn from(error_iter: ErrorIterator<'a>) -> Self {
let errors: Vec<ValidationErrorJson> = error_iter.into_iter().map(From::from).collect();
let mut json_map = Map::new();
json_map.insert(
"errors".to_string(),
serde_json::to_value(errors).unwrap_or_default(),
);
Box::new(EvaluationError::Validation(Box::new(Value::Object(
json_map,
))))
}
}
impl<'a> From<ValidationError<'a>> for Box<EvaluationError> {
fn from(value: ValidationError<'a>) -> Self {
let iterator: ErrorIterator<'a> = Box::new(once(value));
Box::<EvaluationError>::from(iterator)
}
}