1use crate::{
5 referenced::OwnedToRef, BytesRef, DecodeValue, DerOrd, EncodeValue, Error, Header, Length,
6 Reader, Result, StrRef, Writer,
7};
8use alloc::{boxed::Box, vec::Vec};
9use core::cmp::Ordering;
10
11#[derive(Clone, Debug, Eq, PartialEq, PartialOrd, Ord)]
13pub(crate) struct BytesOwned {
14 length: Length,
16
17 inner: Box<[u8]>,
19}
20
21impl BytesOwned {
22 pub fn new(data: impl Into<Box<[u8]>>) -> Result<Self> {
25 let inner: Box<[u8]> = data.into();
26
27 Ok(Self {
28 length: Length::try_from(inner.len())?,
29 inner,
30 })
31 }
32
33 pub fn as_slice(&self) -> &[u8] {
35 &self.inner
36 }
37
38 pub fn len(&self) -> Length {
40 self.length
41 }
42
43 pub fn is_empty(&self) -> bool {
45 self.len() == Length::ZERO
46 }
47}
48
49impl AsRef<[u8]> for BytesOwned {
50 fn as_ref(&self) -> &[u8] {
51 self.as_slice()
52 }
53}
54
55impl<'a> DecodeValue<'a> for BytesOwned {
56 fn decode_value<R: Reader<'a>>(reader: &mut R, header: Header) -> Result<Self> {
57 reader.read_vec(header.length).and_then(Self::new)
58 }
59}
60
61impl EncodeValue for BytesOwned {
62 fn value_len(&self) -> Result<Length> {
63 Ok(self.length)
64 }
65
66 fn encode_value(&self, writer: &mut impl Writer) -> Result<()> {
67 writer.write(self.as_ref())
68 }
69}
70
71impl Default for BytesOwned {
72 fn default() -> Self {
73 Self {
74 length: Length::ZERO,
75 inner: Box::new([]),
76 }
77 }
78}
79
80impl DerOrd for BytesOwned {
81 fn der_cmp(&self, other: &Self) -> Result<Ordering> {
82 Ok(self.as_slice().cmp(other.as_slice()))
83 }
84}
85
86impl From<BytesOwned> for Box<[u8]> {
87 fn from(bytes: BytesOwned) -> Box<[u8]> {
88 bytes.inner
89 }
90}
91
92impl From<StrRef<'_>> for BytesOwned {
93 fn from(s: StrRef<'_>) -> BytesOwned {
94 let bytes = s.as_bytes();
95 debug_assert_eq!(bytes.len(), usize::try_from(s.length).expect("overflow"));
96
97 BytesOwned {
98 inner: Box::from(bytes),
99 length: s.length,
100 }
101 }
102}
103
104impl OwnedToRef for BytesOwned {
105 type Borrowed<'a> = BytesRef<'a>;
106 fn owned_to_ref(&self) -> Self::Borrowed<'_> {
107 BytesRef {
108 length: self.length,
109 inner: self.inner.as_ref(),
110 }
111 }
112}
113
114impl From<BytesRef<'_>> for BytesOwned {
115 fn from(s: BytesRef<'_>) -> BytesOwned {
116 BytesOwned {
117 length: s.length,
118 inner: Box::from(s.inner),
119 }
120 }
121}
122
123impl TryFrom<&[u8]> for BytesOwned {
124 type Error = Error;
125
126 fn try_from(bytes: &[u8]) -> Result<Self> {
127 Self::new(bytes)
128 }
129}
130
131impl TryFrom<Box<[u8]>> for BytesOwned {
132 type Error = Error;
133
134 fn try_from(bytes: Box<[u8]>) -> Result<Self> {
135 Self::new(bytes)
136 }
137}
138
139impl TryFrom<Vec<u8>> for BytesOwned {
140 type Error = Error;
141
142 fn try_from(bytes: Vec<u8>) -> Result<Self> {
143 Self::new(bytes)
144 }
145}
146
147#[cfg(feature = "arbitrary")]
150impl<'a> arbitrary::Arbitrary<'a> for BytesOwned {
151 fn arbitrary(u: &mut arbitrary::Unstructured<'a>) -> arbitrary::Result<Self> {
152 let length = u.arbitrary()?;
153 Ok(Self {
154 length,
155 inner: Box::from(u.bytes(u32::from(length) as usize)?),
156 })
157 }
158
159 fn size_hint(depth: usize) -> (usize, Option<usize>) {
160 arbitrary::size_hint::and(Length::size_hint(depth), (0, None))
161 }
162}