use std::{error, fmt, fmt::Display, io, string, sync::Arc};
use serde::de::{self, Unexpected};
use crate::Bson;
#[derive(Clone, Debug)]
#[non_exhaustive]
pub enum Error {
Io(Arc<io::Error>),
InvalidUtf8String(string::FromUtf8Error),
#[non_exhaustive]
UnrecognizedDocumentElementType {
key: String,
element_type: u8,
},
EndOfStream,
#[non_exhaustive]
DeserializationError {
message: String,
},
}
impl From<io::Error> for Error {
fn from(err: io::Error) -> Error {
Error::Io(Arc::new(err))
}
}
impl From<string::FromUtf8Error> for Error {
fn from(err: string::FromUtf8Error) -> Error {
Error::InvalidUtf8String(err)
}
}
impl fmt::Display for Error {
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
match *self {
Error::Io(ref inner) => inner.fmt(fmt),
Error::InvalidUtf8String(ref inner) => inner.fmt(fmt),
Error::UnrecognizedDocumentElementType {
ref key,
element_type,
} => write!(
fmt,
"unrecognized element type for key \"{}\": `{:#x}`",
key, element_type
),
Error::EndOfStream => fmt.write_str("end of stream"),
Error::DeserializationError { ref message } => message.fmt(fmt),
}
}
}
impl error::Error for Error {
fn source(&self) -> Option<&(dyn error::Error + 'static)> {
match *self {
Error::Io(ref inner) => Some(inner.as_ref()),
Error::InvalidUtf8String(ref inner) => Some(inner),
_ => None,
}
}
}
impl de::Error for Error {
fn custom<T: Display>(msg: T) -> Error {
Error::DeserializationError {
message: msg.to_string(),
}
}
}
pub type Result<T> = std::result::Result<T, Error>;
impl Bson {
pub(crate) fn as_unexpected(&self) -> Unexpected {
match self {
Bson::Array(_) => Unexpected::Seq,
Bson::Binary(b) => Unexpected::Bytes(b.bytes.as_slice()),
Bson::Boolean(b) => Unexpected::Bool(*b),
Bson::DbPointer(_) => Unexpected::Other("dbpointer"),
Bson::Document(_) => Unexpected::Map,
Bson::Double(f) => Unexpected::Float(*f),
Bson::Int32(i) => Unexpected::Signed(*i as i64),
Bson::Int64(i) => Unexpected::Signed(*i),
Bson::JavaScriptCode(_) => Unexpected::Other("javascript code"),
Bson::JavaScriptCodeWithScope(_) => Unexpected::Other("javascript code with scope"),
Bson::MaxKey => Unexpected::Other("maxkey"),
Bson::MinKey => Unexpected::Other("minkey"),
Bson::Null => Unexpected::Unit,
Bson::Undefined => Unexpected::Other("undefined"),
Bson::ObjectId(_) => Unexpected::Other("objectid"),
Bson::RegularExpression(_) => Unexpected::Other("regex"),
Bson::String(s) => Unexpected::Str(s.as_str()),
Bson::Symbol(_) => Unexpected::Other("symbol"),
Bson::Timestamp(_) => Unexpected::Other("timestamp"),
Bson::DateTime(_) => Unexpected::Other("datetime"),
Bson::Decimal128(_) => Unexpected::Other("decimal128"),
}
}
}