1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
use crate::TypeInfo;
use bytes::buf::UninitSlice;
use bytes::{BufMut, BytesMut};
use std::borrow::{Borrow, BorrowMut};
use std::ops::{Deref, DerefMut};

pub(crate) struct BytesMutWithTypeInfo<'a> {
    bytes: &'a mut BytesMut,
    type_info: Option<&'a TypeInfo>,
}

impl<'a> BytesMutWithTypeInfo<'a> {
    pub fn new(bytes: &'a mut BytesMut) -> Self {
        BytesMutWithTypeInfo {
            bytes,
            type_info: None,
        }
    }

    pub fn with_type_info(mut self, type_info: &'a TypeInfo) -> Self {
        self.type_info = Some(type_info);
        self
    }

    pub fn type_info(&self) -> Option<&'a TypeInfo> {
        self.type_info
    }
}

unsafe impl<'a> BufMut for BytesMutWithTypeInfo<'a> {
    fn remaining_mut(&self) -> usize {
        self.bytes.remaining_mut()
    }

    unsafe fn advance_mut(&mut self, cnt: usize) {
        self.bytes.advance_mut(cnt)
    }

    fn chunk_mut(&mut self) -> &mut UninitSlice {
        self.bytes.chunk_mut()
    }
}

impl<'a> Borrow<[u8]> for BytesMutWithTypeInfo<'a> {
    fn borrow(&self) -> &[u8] {
        self.bytes.deref()
    }
}

impl<'a> BorrowMut<[u8]> for BytesMutWithTypeInfo<'a> {
    fn borrow_mut(&mut self) -> &mut [u8] {
        self.bytes.borrow_mut()
    }
}

impl<'a> Deref for BytesMutWithTypeInfo<'a> {
    type Target = BytesMut;

    fn deref(&self) -> &Self::Target {
        self.bytes
    }
}

impl<'a> DerefMut for BytesMutWithTypeInfo<'a> {
    fn deref_mut(&mut self) -> &mut Self::Target {
        self.bytes
    }
}