mirror of
https://github.com/tokio-rs/bytes.git
synced 2026-08-09 00:00:15 +02:00
Bytes is a useful tool for managing multiple slices into the same region of memory, and the other things it used to have been removed to reduce complexity. The exact strategy for managing the multiple references is no longer hard-coded, but instead backing by a customizable vtable. - Removed ability to mutate the underlying memory from the `Bytes` type. - Removed the "inline" (SBO) mechanism in `Bytes`. The reduces a large amount of complexity, and improves performance when accessing the slice of bytes, since a branch is no longer needed to check if the data is inline. - Removed `Bytes` knowledge of `BytesMut` (`BytesMut` may grow that knowledge back at a future point.)
83 lines
2.4 KiB
Rust
83 lines
2.4 KiB
Rust
use alloc::string::String;
|
|
use alloc::vec::Vec;
|
|
use core::{cmp, fmt};
|
|
use serde::{Serialize, Serializer, Deserialize, Deserializer, de};
|
|
use super::{Bytes, BytesMut};
|
|
|
|
macro_rules! serde_impl {
|
|
($ty:ident, $visitor_ty:ident, $from_slice:ident, $from_vec:ident) => (
|
|
impl Serialize for $ty {
|
|
#[inline]
|
|
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
|
|
where S: Serializer
|
|
{
|
|
serializer.serialize_bytes(&self)
|
|
}
|
|
}
|
|
|
|
struct $visitor_ty;
|
|
|
|
impl<'de> de::Visitor<'de> for $visitor_ty {
|
|
type Value = $ty;
|
|
|
|
fn expecting(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
|
|
formatter.write_str("byte array")
|
|
}
|
|
|
|
#[inline]
|
|
fn visit_seq<V>(self, mut seq: V) -> Result<Self::Value, V::Error>
|
|
where V: de::SeqAccess<'de>
|
|
{
|
|
let len = cmp::min(seq.size_hint().unwrap_or(0), 4096);
|
|
let mut values: Vec<u8> = Vec::with_capacity(len);
|
|
|
|
while let Some(value) = seq.next_element()? {
|
|
values.push(value);
|
|
}
|
|
|
|
Ok($ty::$from_vec(values))
|
|
}
|
|
|
|
#[inline]
|
|
fn visit_bytes<E>(self, v: &[u8]) -> Result<Self::Value, E>
|
|
where E: de::Error
|
|
{
|
|
Ok($ty::$from_slice(v))
|
|
}
|
|
|
|
#[inline]
|
|
fn visit_byte_buf<E>(self, v: Vec<u8>) -> Result<Self::Value, E>
|
|
where E: de::Error
|
|
{
|
|
Ok($ty::$from_vec(v))
|
|
}
|
|
|
|
#[inline]
|
|
fn visit_str<E>(self, v: &str) -> Result<Self::Value, E>
|
|
where E: de::Error
|
|
{
|
|
Ok($ty::$from_slice(v.as_bytes()))
|
|
}
|
|
|
|
#[inline]
|
|
fn visit_string<E>(self, v: String) -> Result<Self::Value, E>
|
|
where E: de::Error
|
|
{
|
|
Ok($ty::$from_vec(v.into_bytes()))
|
|
}
|
|
}
|
|
|
|
impl<'de> Deserialize<'de> for $ty {
|
|
#[inline]
|
|
fn deserialize<D>(deserializer: D) -> Result<$ty, D::Error>
|
|
where D: Deserializer<'de>
|
|
{
|
|
deserializer.deserialize_byte_buf($visitor_ty)
|
|
}
|
|
}
|
|
);
|
|
}
|
|
|
|
serde_impl!(Bytes, BytesVisitor, copy_from_slice, from);
|
|
serde_impl!(BytesMut, BytesMutVisitor, from, from_vec);
|