Fork of https://github.com/oxigraph/oxigraph.git for the purpose of NextGraph project
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
116 lines
3.0 KiB
116 lines
3.0 KiB
use crate::error::invalid_data_error;
|
|
use crate::sparql::ParseError;
|
|
use crate::storage::numeric_encoder::DecoderError;
|
|
use std::convert::Infallible;
|
|
use std::error;
|
|
use std::fmt;
|
|
use std::io;
|
|
|
|
/// A SPARQL evaluation error.
|
|
#[derive(Debug)]
|
|
#[non_exhaustive]
|
|
pub enum EvaluationError {
|
|
/// An error in SPARQL query parsing
|
|
Parsing(ParseError),
|
|
/// An error returned during store IOs or during results write
|
|
Io(io::Error),
|
|
/// An error returned during the query evaluation itself
|
|
Query(QueryError),
|
|
/// A conflict during a transaction
|
|
#[doc(hidden)]
|
|
Conflict,
|
|
}
|
|
|
|
#[derive(Debug)]
|
|
pub struct QueryError {
|
|
inner: QueryErrorKind,
|
|
}
|
|
|
|
#[derive(Debug)]
|
|
enum QueryErrorKind {
|
|
Msg { msg: String },
|
|
Other(Box<dyn error::Error + Send + Sync + 'static>),
|
|
}
|
|
|
|
impl fmt::Display for EvaluationError {
|
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
|
match self {
|
|
Self::Parsing(error) => error.fmt(f),
|
|
Self::Io(error) => error.fmt(f),
|
|
Self::Query(error) => error.fmt(f),
|
|
Self::Conflict => write!(f, "Transaction conflict"),
|
|
}
|
|
}
|
|
}
|
|
|
|
impl fmt::Display for QueryError {
|
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
|
match &self.inner {
|
|
QueryErrorKind::Msg { msg } => write!(f, "{}", msg),
|
|
QueryErrorKind::Other(error) => error.fmt(f),
|
|
}
|
|
}
|
|
}
|
|
|
|
impl error::Error for EvaluationError {
|
|
fn source(&self) -> Option<&(dyn error::Error + 'static)> {
|
|
match self {
|
|
Self::Parsing(e) => Some(e),
|
|
Self::Io(e) => Some(e),
|
|
Self::Query(e) => Some(e),
|
|
_ => None,
|
|
}
|
|
}
|
|
}
|
|
|
|
impl error::Error for QueryError {
|
|
fn source(&self) -> Option<&(dyn error::Error + 'static)> {
|
|
match &self.inner {
|
|
QueryErrorKind::Msg { .. } => None,
|
|
QueryErrorKind::Other(e) => Some(e.as_ref()),
|
|
}
|
|
}
|
|
}
|
|
|
|
impl EvaluationError {
|
|
/// Wraps another error.
|
|
pub(crate) fn wrap(error: impl error::Error + Send + Sync + 'static) -> Self {
|
|
Self::Query(QueryError {
|
|
inner: QueryErrorKind::Other(Box::new(error)),
|
|
})
|
|
}
|
|
|
|
/// Builds an error from a printable error message.
|
|
pub(crate) fn msg(msg: impl Into<String>) -> Self {
|
|
Self::Query(QueryError {
|
|
inner: QueryErrorKind::Msg { msg: msg.into() },
|
|
})
|
|
}
|
|
}
|
|
|
|
impl From<Infallible> for EvaluationError {
|
|
fn from(error: Infallible) -> Self {
|
|
match error {}
|
|
}
|
|
}
|
|
|
|
impl From<ParseError> for EvaluationError {
|
|
fn from(error: ParseError) -> Self {
|
|
Self::Parsing(error)
|
|
}
|
|
}
|
|
|
|
impl From<io::Error> for EvaluationError {
|
|
fn from(error: io::Error) -> Self {
|
|
Self::Io(error)
|
|
}
|
|
}
|
|
|
|
impl<E: Into<EvaluationError>> From<DecoderError<E>> for EvaluationError {
|
|
fn from(error: DecoderError<E>) -> Self {
|
|
match error {
|
|
DecoderError::Store(error) => error.into(),
|
|
DecoderError::Decoder { msg } => invalid_data_error(msg).into(),
|
|
}
|
|
}
|
|
}
|
|
|