From 21e2f65062565ff3f2345f470ab5dae4e4089825 Mon Sep 17 00:00:00 2001 From: Aron Granberg Date: Tue, 28 May 2024 16:29:47 +0200 Subject: [PATCH] Do not discard error messages --- source/postcard/src/error.rs | 38 ++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/source/postcard/src/error.rs b/source/postcard/src/error.rs index 0d5e484..ae9670f 100644 --- a/source/postcard/src/error.rs +++ b/source/postcard/src/error.rs @@ -31,8 +31,16 @@ pub enum Error { DeserializeBadEncoding, /// Bad CRC while deserializing DeserializeBadCrc, + #[cfg(feature = "use-std")] + /// Serde Serialization Error + SerdeSerCustom(String), + #[cfg(not(feature = "use-std"))] /// Serde Serialization Error SerdeSerCustom, + #[cfg(feature = "use-std")] + /// Serde Deserialization Error + SerdeDeCustom(String), + #[cfg(not(feature = "use-std"))] /// Serde Deserialization Error SerdeDeCustom, /// Error while processing `collect_str` during serialization @@ -63,7 +71,13 @@ impl Display for Error { DeserializeBadEnum => "Found an enum discriminant that was > u32::max_value()", DeserializeBadEncoding => "The original data was not well encoded", DeserializeBadCrc => "Bad CRC while deserializing", + #[cfg(feature = "use-std")] + SerdeSerCustom(s) => s, + #[cfg(feature = "use-std")] + SerdeDeCustom(s) => s, + #[cfg(not(feature = "use-std"))] SerdeSerCustom => "Serde Serialization Error", + #[cfg(not(feature = "use-std"))] SerdeDeCustom => "Serde Deserialization Error", CollectStrError => "Error while processing `collect_str` during serialization", } @@ -74,6 +88,19 @@ impl Display for Error { /// This is the Result type used by Postcard. pub type Result = ::core::result::Result; +#[cfg(feature = "use-std")] +impl serde::ser::Error for Error { + fn custom(msg: T) -> Self + where + T: Display, + { + // We must convert the parameter immediately to a string, because we cannot guarantee + // that T lives long enough to be used later. + Error::SerdeSerCustom(msg.to_string()) + } +} + +#[cfg(not(feature = "use-std"))] impl serde::ser::Error for Error { fn custom(_msg: T) -> Self where @@ -83,6 +110,17 @@ impl serde::ser::Error for Error { } } +#[cfg(feature = "use-std")] +impl serde::de::Error for Error { + fn custom(msg: T) -> Self + where + T: Display, + { + Error::SerdeDeCustom(msg.to_string()) + } +} + +#[cfg(not(feature = "use-std"))] impl serde::de::Error for Error { fn custom(_msg: T) -> Self where