use std::fmt::{self, Display, Formatter};
use std::ops::Deref;
use hex;
use serde::de::{self, SeqAccess, Visitor};
use serde::{Deserialize, Serialize};
use crate::sql::{SqlFormat, ToSql};
#[derive(Clone, Debug, Default, Eq, Hash, Ord, PartialEq, PartialOrd)]
#[repr(transparent)]
pub struct Bytes(pub(crate) ::bytes::Bytes);
impl Bytes {
pub fn into_inner(self) -> bytes::Bytes {
self.0
}
}
impl From<Vec<u8>> for Bytes {
fn from(v: Vec<u8>) -> Self {
Self(bytes::Bytes::from(v))
}
}
impl From<Bytes> for bytes::Bytes {
fn from(bytes: Bytes) -> Self {
bytes.0
}
}
impl From<bytes::Bytes> for Bytes {
fn from(bytes: bytes::Bytes) -> Self {
Bytes(bytes)
}
}
impl Deref for Bytes {
type Target = bytes::Bytes;
fn deref(&self) -> &Self::Target {
&self.0
}
}
impl Display for Bytes {
fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
write!(f, "b\"{}\"", hex::encode_upper(&self.0))
}
}
impl ToSql for crate::Bytes {
fn fmt_sql(&self, f: &mut String, _fmt: SqlFormat) {
f.push_str("b\"");
f.push_str(&hex::encode_upper(&self.0));
f.push('"');
}
}
impl Serialize for Bytes {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: serde::Serializer,
{
serializer.serialize_bytes(&self.0)
}
}
impl<'de> Deserialize<'de> for Bytes {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: serde::Deserializer<'de>,
{
struct RawBytesVisitor;
impl<'de> Visitor<'de> for RawBytesVisitor {
type Value = Bytes;
fn expecting(&self, formatter: &mut std::fmt::Formatter) -> std::fmt::Result {
formatter.write_str("bytes or sequence of bytes")
}
fn visit_byte_buf<E>(self, v: Vec<u8>) -> Result<Self::Value, E>
where
E: de::Error,
{
Ok(Bytes(bytes::Bytes::from(v)))
}
fn visit_bytes<E>(self, v: &[u8]) -> Result<Self::Value, E>
where
E: de::Error,
{
Ok(Bytes(::bytes::Bytes::copy_from_slice(v)))
}
fn visit_seq<A>(self, mut seq: A) -> Result<Self::Value, A::Error>
where
A: SeqAccess<'de>,
{
let capacity = seq.size_hint().unwrap_or_default();
let mut vec = Vec::with_capacity(capacity);
while let Some(byte) = seq.next_element()? {
vec.push(byte);
}
Ok(Bytes(bytes::Bytes::from(vec)))
}
}
deserializer.deserialize_byte_buf(RawBytesVisitor)
}
}
#[cfg(feature = "arbitrary")]
mod arb {
use arbitrary::{Arbitrary, Unstructured};
use super::*;
impl<'a> Arbitrary<'a> for Bytes {
fn arbitrary(u: &mut Unstructured<'a>) -> arbitrary::Result<Self> {
let b: &'a [u8] = u.arbitrary()?;
Ok(Self(::bytes::Bytes::copy_from_slice(b)))
}
}
}