base64-ng-bytes 1.3.0

Optional bytes::Buf and Bytes helpers for base64-ng
Documentation
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
#![cfg_attr(not(feature = "std"), no_std)]
#![deny(unsafe_code)]
#![deny(missing_docs)]
#![deny(clippy::all)]
#![deny(clippy::pedantic)]

//! Optional `bytes` integration for `base64-ng`.

extern crate alloc;

use alloc::vec::Vec;
use base64_ng::{Alphabet, DecodeError, EncodeError, Engine};
use bytes::{Buf, BufMut, Bytes};

/// Encoding error for bounded `bytes` integration helpers.
#[derive(Clone, Copy, Debug, Eq, PartialEq)]
pub enum BytesEncodeError {
    /// The input buffer reports more remaining bytes than the caller permits.
    InputTooLarge {
        /// Remaining input bytes reported by [`Buf::remaining`].
        input_len: usize,
        /// Caller-provided maximum input bytes.
        max_input_len: usize,
    },
    /// Base64 encoding failed after the input-size check passed.
    Encode(EncodeError),
}

impl core::fmt::Display for BytesEncodeError {
    fn fmt(&self, formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
        match self {
            Self::InputTooLarge {
                input_len,
                max_input_len,
            } => write!(
                formatter,
                "bytes input length {input_len} exceeds limit {max_input_len}"
            ),
            Self::Encode(error) => core::fmt::Display::fmt(error, formatter),
        }
    }
}

#[cfg(feature = "std")]
impl std::error::Error for BytesEncodeError {
    fn source(&self) -> Option<&(dyn std::error::Error + 'static)> {
        match self {
            Self::InputTooLarge { .. } => None,
            Self::Encode(error) => Some(error),
        }
    }
}

impl From<EncodeError> for BytesEncodeError {
    fn from(error: EncodeError) -> Self {
        Self::Encode(error)
    }
}

/// Decoding error for bounded `bytes` integration helpers.
#[derive(Clone, Copy, Debug, Eq, PartialEq)]
pub enum BytesDecodeError {
    /// The input buffer reports more remaining bytes than the caller permits.
    InputTooLarge {
        /// Remaining input bytes reported by [`Buf::remaining`].
        input_len: usize,
        /// Caller-provided maximum input bytes.
        max_input_len: usize,
    },
    /// Base64 decoding failed after the input-size check passed.
    Decode(DecodeError),
}

impl core::fmt::Display for BytesDecodeError {
    fn fmt(&self, formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
        match self {
            Self::InputTooLarge {
                input_len,
                max_input_len,
            } => write!(
                formatter,
                "bytes input length {input_len} exceeds limit {max_input_len}"
            ),
            Self::Decode(error) => core::fmt::Display::fmt(error, formatter),
        }
    }
}

#[cfg(feature = "std")]
impl std::error::Error for BytesDecodeError {
    fn source(&self) -> Option<&(dyn std::error::Error + 'static)> {
        match self {
            Self::InputTooLarge { .. } => None,
            Self::Decode(error) => Some(error),
        }
    }
}

impl From<DecodeError> for BytesDecodeError {
    fn from(error: DecodeError) -> Self {
        Self::Decode(error)
    }
}

/// Extension helpers for [`base64_ng::Engine`] and `bytes` buffers.
pub trait EngineBytesExt<A, const PAD: bool>
where
    A: Alphabet,
{
    /// Encodes bytes into a [`Bytes`] value.
    ///
    /// # Errors
    ///
    /// Returns [`EncodeError`] if the encoded length overflows.
    fn encode_bytes(&self, input: impl AsRef<[u8]>) -> Result<Bytes, EncodeError>;

    /// Decodes Base64 bytes into a [`Bytes`] value.
    ///
    /// # Errors
    ///
    /// Returns [`DecodeError`] if decoding fails.
    fn decode_bytes(&self, input: impl AsRef<[u8]>) -> Result<Bytes, DecodeError>;

    /// Encodes all remaining bytes from `input` into a [`Bytes`] value.
    ///
    /// The input buffer is advanced to completion only after its current
    /// chunks have been copied into a temporary contiguous buffer.
    ///
    /// # Errors
    ///
    /// Returns [`EncodeError`] if the encoded length overflows.
    fn encode_buf<B>(&self, input: B) -> Result<Bytes, EncodeError>
    where
        B: Buf;

    /// Encodes at most `max_input_len` remaining bytes from `input` into a
    /// [`Bytes`] value.
    ///
    /// Use this variant for peer-controlled or metadata-declared frame sizes.
    /// The input buffer is not collected if [`Buf::remaining`] exceeds
    /// `max_input_len`.
    ///
    /// # Errors
    ///
    /// Returns [`BytesEncodeError::InputTooLarge`] if `input.remaining()`
    /// exceeds `max_input_len`, or [`BytesEncodeError::Encode`] if Base64
    /// encoding fails.
    fn encode_buf_limited<B>(
        &self,
        input: B,
        max_input_len: usize,
    ) -> Result<Bytes, BytesEncodeError>
    where
        B: Buf;

    /// Decodes all remaining bytes from `input` into a [`Bytes`] value.
    ///
    /// # Errors
    ///
    /// Returns [`DecodeError`] if decoding fails.
    fn decode_buf<B>(&self, input: B) -> Result<Bytes, DecodeError>
    where
        B: Buf;

    /// Decodes at most `max_input_len` remaining Base64 bytes from `input`
    /// into a [`Bytes`] value.
    ///
    /// Use this variant for peer-controlled or metadata-declared frame sizes.
    /// The input buffer is not collected if [`Buf::remaining`] exceeds
    /// `max_input_len`.
    ///
    /// # Errors
    ///
    /// Returns [`BytesDecodeError::InputTooLarge`] if `input.remaining()`
    /// exceeds `max_input_len`, or [`BytesDecodeError::Decode`] if Base64
    /// decoding fails.
    fn decode_buf_limited<B>(
        &self,
        input: B,
        max_input_len: usize,
    ) -> Result<Bytes, BytesDecodeError>
    where
        B: Buf;

    /// Encodes all remaining bytes from `input` into `output`.
    ///
    /// # Errors
    ///
    /// Returns [`EncodeError::OutputTooSmall`] if `output` does not have enough
    /// remaining mutable capacity.
    fn encode_buf_to_mut<B, M>(&self, input: B, output: &mut M) -> Result<usize, EncodeError>
    where
        B: Buf,
        M: BufMut;

    /// Encodes at most `max_input_len` remaining bytes from `input` into
    /// `output`.
    ///
    /// # Errors
    ///
    /// Returns [`BytesEncodeError::InputTooLarge`] if `input.remaining()`
    /// exceeds `max_input_len`, [`BytesEncodeError::Encode`] with
    /// [`EncodeError::OutputTooSmall`] if `output` is too small, or another
    /// wrapped [`EncodeError`] if Base64 encoding fails.
    fn encode_buf_to_mut_limited<B, M>(
        &self,
        input: B,
        output: &mut M,
        max_input_len: usize,
    ) -> Result<usize, BytesEncodeError>
    where
        B: Buf,
        M: BufMut;

    /// Decodes all remaining Base64 bytes from `input` into `output`.
    ///
    /// # Errors
    ///
    /// Returns [`DecodeError::OutputTooSmall`] if `output` does not have enough
    /// remaining mutable capacity, or another [`DecodeError`] if decoding
    /// fails.
    fn decode_buf_to_mut<B, M>(&self, input: B, output: &mut M) -> Result<usize, DecodeError>
    where
        B: Buf,
        M: BufMut;

    /// Decodes at most `max_input_len` remaining Base64 bytes from `input`
    /// into `output`.
    ///
    /// # Errors
    ///
    /// Returns [`BytesDecodeError::InputTooLarge`] if `input.remaining()`
    /// exceeds `max_input_len`, [`BytesDecodeError::Decode`] with
    /// [`DecodeError::OutputTooSmall`] if `output` is too small, or another
    /// wrapped [`DecodeError`] if Base64 decoding fails.
    fn decode_buf_to_mut_limited<B, M>(
        &self,
        input: B,
        output: &mut M,
        max_input_len: usize,
    ) -> Result<usize, BytesDecodeError>
    where
        B: Buf,
        M: BufMut;
}

impl<A, const PAD: bool> EngineBytesExt<A, PAD> for Engine<A, PAD>
where
    A: Alphabet,
{
    fn encode_bytes(&self, input: impl AsRef<[u8]>) -> Result<Bytes, EncodeError> {
        self.encode_vec(input.as_ref()).map(Bytes::from)
    }

    fn decode_bytes(&self, input: impl AsRef<[u8]>) -> Result<Bytes, DecodeError> {
        self.decode_vec(input.as_ref()).map(Bytes::from)
    }

    fn encode_buf<B>(&self, input: B) -> Result<Bytes, EncodeError>
    where
        B: Buf,
    {
        self.encode_bytes(collect_buf(input))
    }

    fn encode_buf_limited<B>(
        &self,
        input: B,
        max_input_len: usize,
    ) -> Result<Bytes, BytesEncodeError>
    where
        B: Buf,
    {
        let input =
            collect_buf_limited(input, max_input_len).map_err(|(input_len, max_input_len)| {
                BytesEncodeError::InputTooLarge {
                    input_len,
                    max_input_len,
                }
            })?;
        self.encode_bytes(input).map_err(BytesEncodeError::Encode)
    }

    fn decode_buf<B>(&self, input: B) -> Result<Bytes, DecodeError>
    where
        B: Buf,
    {
        self.decode_bytes(collect_buf(input))
    }

    fn decode_buf_limited<B>(
        &self,
        input: B,
        max_input_len: usize,
    ) -> Result<Bytes, BytesDecodeError>
    where
        B: Buf,
    {
        let input =
            collect_buf_limited(input, max_input_len).map_err(|(input_len, max_input_len)| {
                BytesDecodeError::InputTooLarge {
                    input_len,
                    max_input_len,
                }
            })?;
        self.decode_bytes(input).map_err(BytesDecodeError::Decode)
    }

    fn encode_buf_to_mut<B, M>(&self, input: B, output: &mut M) -> Result<usize, EncodeError>
    where
        B: Buf,
        M: BufMut,
    {
        let encoded = self.encode_buf(input)?;
        let len = encoded.len();
        if output.remaining_mut() < len {
            return Err(EncodeError::OutputTooSmall {
                required: len,
                available: output.remaining_mut(),
            });
        }
        output.put_slice(&encoded);
        Ok(len)
    }

    fn encode_buf_to_mut_limited<B, M>(
        &self,
        input: B,
        output: &mut M,
        max_input_len: usize,
    ) -> Result<usize, BytesEncodeError>
    where
        B: Buf,
        M: BufMut,
    {
        let encoded = self.encode_buf_limited(input, max_input_len)?;
        let len = encoded.len();
        if output.remaining_mut() < len {
            return Err(BytesEncodeError::Encode(EncodeError::OutputTooSmall {
                required: len,
                available: output.remaining_mut(),
            }));
        }
        output.put_slice(&encoded);
        Ok(len)
    }

    fn decode_buf_to_mut<B, M>(&self, input: B, output: &mut M) -> Result<usize, DecodeError>
    where
        B: Buf,
        M: BufMut,
    {
        let decoded = self.decode_buf(input)?;
        let len = decoded.len();
        if output.remaining_mut() < len {
            return Err(DecodeError::OutputTooSmall {
                required: len,
                available: output.remaining_mut(),
            });
        }
        output.put_slice(&decoded);
        Ok(len)
    }

    fn decode_buf_to_mut_limited<B, M>(
        &self,
        input: B,
        output: &mut M,
        max_input_len: usize,
    ) -> Result<usize, BytesDecodeError>
    where
        B: Buf,
        M: BufMut,
    {
        let decoded = self.decode_buf_limited(input, max_input_len)?;
        let len = decoded.len();
        if output.remaining_mut() < len {
            return Err(BytesDecodeError::Decode(DecodeError::OutputTooSmall {
                required: len,
                available: output.remaining_mut(),
            }));
        }
        output.put_slice(&decoded);
        Ok(len)
    }
}

fn collect_buf<B>(mut input: B) -> Vec<u8>
where
    B: Buf,
{
    let mut output = Vec::with_capacity(input.remaining());
    while input.has_remaining() {
        let chunk = input.chunk();
        output.extend_from_slice(chunk);
        let len = chunk.len();
        input.advance(len);
    }
    output
}

fn collect_buf_limited<B>(input: B, max_input_len: usize) -> Result<Vec<u8>, (usize, usize)>
where
    B: Buf,
{
    let input_len = input.remaining();
    if input_len > max_input_len {
        return Err((input_len, max_input_len));
    }

    Ok(collect_buf(input))
}