use std::{borrow::Cow, ops::Deref};
use base64::display::Base64Display;
use serde::ser::{Error as SerError, Serialize, Serializer};
#[derive(Debug, PartialEq)]
pub enum Body {
Empty,
Text(String),
Binary(Vec<u8>),
}
impl Body {
pub(crate) fn from_maybe_encoded(is_base64_encoded: bool, body: Cow<'_, str>) -> Body {
if is_base64_encoded {
Body::from(::base64::decode(body.as_ref()).expect("failed to decode aws base64 encoded body"))
} else {
Body::from(body.as_ref())
}
}
}
impl Default for Body {
fn default() -> Self {
Body::Empty
}
}
impl From<()> for Body {
fn from(_: ()) -> Self {
Body::Empty
}
}
impl<'a> From<&'a str> for Body {
fn from(s: &'a str) -> Self {
Body::Text(s.into())
}
}
impl From<String> for Body {
fn from(b: String) -> Self {
Body::Text(b)
}
}
impl From<Cow<'static, str>> for Body {
#[inline]
fn from(cow: Cow<'static, str>) -> Body {
match cow {
Cow::Borrowed(b) => Body::from(b.to_owned()),
Cow::Owned(o) => Body::from(o),
}
}
}
impl From<Cow<'static, [u8]>> for Body {
#[inline]
fn from(cow: Cow<'static, [u8]>) -> Body {
match cow {
Cow::Borrowed(b) => Body::from(b),
Cow::Owned(o) => Body::from(o),
}
}
}
impl From<Vec<u8>> for Body {
fn from(b: Vec<u8>) -> Self {
Body::Binary(b)
}
}
impl<'a> From<&'a [u8]> for Body {
fn from(b: &'a [u8]) -> Self {
Body::Binary(b.to_vec())
}
}
impl Deref for Body {
type Target = [u8];
#[inline]
fn deref(&self) -> &Self::Target {
self.as_ref()
}
}
impl AsRef<[u8]> for Body {
#[inline]
fn as_ref(&self) -> &[u8] {
match self {
Body::Empty => &[],
Body::Text(ref bytes) => bytes.as_ref(),
Body::Binary(ref bytes) => bytes.as_ref(),
}
}
}
impl<'a> Serialize for Body {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: Serializer,
{
match self {
Body::Text(data) => {
serializer.serialize_str(::std::str::from_utf8(data.as_ref()).map_err(S::Error::custom)?)
}
Body::Binary(data) => serializer.collect_str(&Base64Display::with_config(data, base64::STANDARD)),
Body::Empty => serializer.serialize_unit(),
}
}
}
#[cfg(test)]
mod tests {
use super::*;
use serde_json;
use std::collections::HashMap;
#[test]
fn body_has_default() {
assert_eq!(Body::default(), Body::Empty);
}
#[test]
fn from_unit() {
assert_eq!(Body::from(()), Body::Empty);
}
#[test]
fn from_str() {
match Body::from(String::from("foo").as_str()) {
Body::Text(_) => (),
not => assert!(false, "expected Body::Text(...) got {:?}", not),
}
}
#[test]
fn from_string() {
match Body::from(String::from("foo")) {
Body::Text(_) => (),
not => assert!(false, "expected Body::Text(...) got {:?}", not),
}
}
#[test]
fn from_cow_str() {
match Body::from(Cow::from("foo")) {
Body::Text(_) => (),
not => assert!(false, "expected Body::Text(...) got {:?}", not),
}
}
#[test]
fn from_cow_bytes() {
match Body::from(Cow::from("foo".as_bytes())) {
Body::Binary(_) => (),
not => assert!(false, "expected Body::Binary(...) got {:?}", not),
}
}
#[test]
fn from_bytes() {
match Body::from("foo".as_bytes()) {
Body::Binary(_) => (),
not => assert!(false, "expected Body::Binary(...) got {:?}", not),
}
}
#[test]
fn serialize_text() {
let mut map = HashMap::new();
map.insert("foo", Body::from("bar"));
assert_eq!(serde_json::to_string(&map).unwrap(), r#"{"foo":"bar"}"#);
}
#[test]
fn serialize_binary() {
let mut map = HashMap::new();
map.insert("foo", Body::from("bar".as_bytes()));
assert_eq!(serde_json::to_string(&map).unwrap(), r#"{"foo":"YmFy"}"#);
}
#[test]
fn serialize_empty() {
let mut map = HashMap::new();
map.insert("foo", Body::Empty);
assert_eq!(serde_json::to_string(&map).unwrap(), r#"{"foo":null}"#);
}
}