blob: c3d17d0287f57e24da4682019708d81913f830e6 (
plain)
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
|
use std::num::NonZeroU32;
use std::ptr::copy_nonoverlapping;
use super::Error;
#[cfg(any(feature = "std", test))]
pub use std::string::String;
#[cfg(all(not(feature = "std"), not(test)))]
extern crate alloc;
#[cfg(all(not(feature = "std"), not(test)))]
pub use alloc::string::String;
#[inline(always)]
pub(crate) unsafe fn make_4byte_bytes(
bytes: &[u8],
len: usize,
mask: u32,
) -> Result<NonZeroU32, Error> {
// Mask is always supplied as little-endian.
let mask = u32::from_le(mask);
let mut word: u32 = 0;
copy_nonoverlapping(bytes.as_ptr(), &mut word as *mut u32 as *mut u8, len);
if (word & mask) != 0 {
return Err(Error::NonAscii);
}
if ((mask - word) & mask) != 0 {
return Err(Error::InvalidNull);
}
Ok(NonZeroU32::new_unchecked(word))
}
|