lbug 0.16.1

An in-process property graph database management system built for query speed and scalability
Documentation
use crate::logical_type::LogicalType;
use std::fmt;

pub enum Error {
    /// Exception raised by C++ lbug library
    CxxException(cxx::Exception),
    /// Message produced by lbug when a query fails
    FailedQuery(String),
    /// Message produced by lbug when a query fails to prepare
    FailedPreparedStatement(String),
    /// Message produced when you attempt to pass read-only types over the FFI boundary
    ReadOnlyType(LogicalType),
    #[cfg(feature = "arrow")]
    ArrowError(arrow::error::ArrowError),
}

impl std::fmt::Display for Error {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        match self {
            Error::CxxException(cxx) => write!(f, "{cxx}"),
            Error::FailedQuery(message) => write!(f, "Query execution failed: {message}"),
            Error::FailedPreparedStatement(message) => {
                write!(f, "Query execution failed: {message}")
            }
            Error::ReadOnlyType(typ) => {
                write!(f, "Attempted to pass read only type {typ:?} over ffi!")
            }
            #[cfg(feature = "arrow")]
            Error::ArrowError(err) => write!(f, "{err}"),
        }
    }
}

impl std::fmt::Debug for Error {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, "{self}")
    }
}

impl std::error::Error for Error {
    fn source(&self) -> Option<&(dyn std::error::Error + 'static)> {
        match self {
            Error::CxxException(cxx) => Some(cxx),
            _ => None,
        }
    }
}

impl From<cxx::Exception> for Error {
    fn from(item: cxx::Exception) -> Self {
        Error::CxxException(item)
    }
}

#[cfg(feature = "arrow")]
impl From<arrow::error::ArrowError> for Error {
    fn from(item: arrow::error::ArrowError) -> Self {
        Error::ArrowError(item)
    }
}