sui_graphql_client/
error.rsuse std::num::ParseIntError;
use std::num::TryFromIntError;
use cynic::GraphQlError;
use sui_types::AddressParseError;
use sui_types::DigestParseError;
use sui_types::TypeParseError;
type BoxError = Box<dyn std::error::Error + Send + Sync + 'static>;
pub type Result<T, E = Error> = std::result::Result<T, E>;
#[derive(Debug)]
pub struct Error {
inner: Box<InnerError>,
}
#[derive(Debug)]
struct InnerError {
kind: Kind,
query_errors: Option<Vec<GraphQlError>>,
source: Option<BoxError>,
}
#[derive(Debug)]
#[non_exhaustive]
pub enum Kind {
Deserialization,
Parse,
Query,
Other,
}
impl std::error::Error for Error {
fn source(&self) -> Option<&(dyn std::error::Error + 'static)> {
self.inner.source.as_deref().map(|e| e as _)
}
}
impl Error {
pub fn kind(&self) -> &Kind {
&self.inner.kind
}
pub fn graphql_errors(&self) -> Option<&[GraphQlError]> {
self.inner.query_errors.as_deref()
}
pub fn from_error<E: Into<BoxError>>(kind: Kind, error: E) -> Self {
Self {
inner: Box::new(InnerError {
kind,
source: Some(error.into()),
query_errors: None,
}),
}
}
pub fn empty_response_error() -> Self {
Self {
inner: Box::new(InnerError {
kind: Kind::Query,
source: Some("Expected a non-empty response data from query".into()),
query_errors: None,
}),
}
}
pub fn graphql_error(errors: Vec<GraphQlError>) -> Self {
Self {
inner: Box::new(InnerError {
kind: Kind::Query,
source: None,
query_errors: Some(errors),
}),
}
}
}
impl std::fmt::Display for Kind {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
match self {
Kind::Deserialization => write!(f, "Deserialization error:"),
Kind::Parse => write!(f, "Parse error:"),
Kind::Query => write!(f, "Query error:"),
Kind::Other => write!(f, "Error:"),
}
}
}
impl std::fmt::Display for Error {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
write!(f, "{}", self.inner.kind)?;
if let Some(source) = &self.inner.source {
writeln!(f, " {}", source)?;
}
Ok(())
}
}
impl From<bcs::Error> for Error {
fn from(error: bcs::Error) -> Self {
Self::from_error(Kind::Deserialization, error)
}
}
impl From<reqwest::Error> for Error {
fn from(error: reqwest::Error) -> Self {
Self::from_error(Kind::Other, error)
}
}
impl From<url::ParseError> for Error {
fn from(error: url::ParseError) -> Self {
Self::from_error(Kind::Parse, error)
}
}
impl From<ParseIntError> for Error {
fn from(error: ParseIntError) -> Self {
Self::from_error(Kind::Parse, error)
}
}
impl From<AddressParseError> for Error {
fn from(error: AddressParseError) -> Self {
Self::from_error(Kind::Parse, error)
}
}
impl From<base64ct::Error> for Error {
fn from(error: base64ct::Error) -> Self {
Self::from_error(Kind::Parse, error)
}
}
impl From<chrono::ParseError> for Error {
fn from(error: chrono::ParseError) -> Self {
Self::from_error(Kind::Parse, error)
}
}
impl From<DigestParseError> for Error {
fn from(error: DigestParseError) -> Self {
Self::from_error(Kind::Parse, error)
}
}
impl From<TryFromIntError> for Error {
fn from(error: TryFromIntError) -> Self {
Self::from_error(Kind::Parse, error)
}
}
impl From<TypeParseError> for Error {
fn from(error: TypeParseError) -> Self {
Self::from_error(Kind::Parse, error)
}
}