use crate::{Decoder, Encoder};
use bytes::{Bytes, BytesMut};
use std::io::Error;
pub struct BytesCodec;
impl Encoder for BytesCodec {
type Item = Bytes;
type Error = Error;
fn encode(&mut self, src: Self::Item, dst: &mut BytesMut) -> Result<(), Self::Error> {
dst.extend_from_slice(&src);
Ok(())
}
}
impl Decoder for BytesCodec {
type Item = Bytes;
type Error = Error;
fn decode(&mut self, src: &mut BytesMut) -> Result<Option<Self::Item>, Self::Error> {
let len = src.len();
if len > 0 {
Ok(Some(src.split_to(len).freeze()))
} else {
Ok(None)
}
}
}