use cid::Error as CidError;
use serde_cbor::error::Error as CborError;
use std::fmt;
use std::io;
use thiserror::Error;
#[derive(Debug, PartialEq, Error)]
#[error("Serialization error for {protocol} protocol: {description}")]
pub struct Error {
pub description: String,
pub protocol: CodecProtocol,
}
impl From<CborError> for Error {
fn from(err: CborError) -> Error {
Self {
description: err.to_string(),
protocol: CodecProtocol::Cbor,
}
}
}
impl From<CidError> for Error {
fn from(err: CidError) -> Self {
Self {
description: err.to_string(),
protocol: CodecProtocol::Cbor,
}
}
}
impl From<Error> for io::Error {
fn from(err: Error) -> Self {
Self::new(io::ErrorKind::Other, err)
}
}
#[derive(Debug, PartialEq)]
pub enum CodecProtocol {
Cbor,
}
impl fmt::Display for CodecProtocol {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match *self {
CodecProtocol::Cbor => write!(f, "Cbor"),
}
}
}