const_str/__ctfe/encode.rs
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
use crate::slice::advance;
use crate::utf16::CharEncodeUtf16;
pub struct Utf8Encoder {
pub nul_terminated: bool,
}
pub struct Utf16Encoder {
pub nul_terminated: bool,
}
pub struct Encode<'a, T>(pub &'a str, pub T);
impl Encode<'_, Utf8Encoder> {
pub const fn output_len(&self) -> usize {
if self.1.nul_terminated {
self.0.len() + 1
} else {
self.0.len()
}
}
pub const fn const_eval<const N: usize>(&self) -> [u8; N] {
let bytes = self.0.as_bytes();
if self.1.nul_terminated {
let mut buf = [0; N];
let mut i = 0;
while i < bytes.len() {
let b = bytes[i];
assert!(b != 0);
buf[i] = b;
i += 1;
}
assert!(i + 1 == N);
buf
} else {
crate::bytes::clone(bytes)
}
}
}
impl Encode<'_, Utf16Encoder> {
pub const fn output_len(&self) -> usize {
crate::utf16::str_len_utf16(self.0) + (self.1.nul_terminated as usize)
}
pub const fn const_eval<const N: usize>(&self) -> [u16; N] {
let mut s = self.0.as_bytes();
let mut buf = [0; N];
let mut pos = 0;
while let Some((code, count)) = crate::utf8::next_char(s) {
s = advance(s, count);
let e = CharEncodeUtf16::new(code);
buf[pos] = e.first();
pos += 1;
if e.has_second() {
buf[pos] = e.second();
pos += 1;
}
if self.1.nul_terminated {
assert!(buf[pos - 1] != 0);
if e.has_second() {
assert!(buf[pos - 2] != 0);
}
}
}
if self.1.nul_terminated {
pos += 1;
}
assert!(pos == N);
buf
}
}
#[doc(hidden)]
#[macro_export]
macro_rules! __encoder {
(utf8) => {{
$crate::__ctfe::Utf8Encoder {
nul_terminated: false,
}
}};
(utf8_z) => {{
$crate::__ctfe::Utf8Encoder {
nul_terminated: true,
}
}};
(utf16) => {{
$crate::__ctfe::Utf16Encoder {
nul_terminated: false,
}
}};
(utf16_z) => {{
$crate::__ctfe::Utf16Encoder {
nul_terminated: true,
}
}};
}
#[doc(hidden)]
#[macro_export]
macro_rules! __encode {
($e: tt, $s: expr) => {{
const OUTPUT_LEN: usize = $crate::__ctfe::Encode($s, $crate::__encoder!($e)).output_len();
&{ $crate::__ctfe::Encode($s, $crate::__encoder!($e)).const_eval::<OUTPUT_LEN>() }
}};
}
/// Encode a string slice with a specified encoding.
///
/// Supported encodings:
///
/// + utf8
/// + utf16
///
/// This macro is [const-context only](./index.html#const-context-only).
///
/// # Examples
/// ``` rust
/// use const_str::encode;
///
/// const S: &str = "hello你好";
///
/// const S_UTF8: &[u8] = encode!(utf8, S);
/// assert_eq!(S_UTF8, [104, 101, 108, 108, 111, 228, 189, 160, 229, 165, 189]);
///
/// const S_UTF16: &[u16] = encode!(utf16, S);
/// assert_eq!(S_UTF16, [104, 101, 108, 108, 111, 20320, 22909]);
/// ```
///
#[macro_export]
macro_rules! encode {
(utf8, $s: expr) => {
$crate::__encode!(utf8, $s)
};
(utf16, $s: expr) => {
$crate::__encode!(utf16, $s)
};
}
/// Encode a string slice with a specified encoding and append a nul character.
///
/// The provided data should not contain any nul bytes in it.
///
/// This macro is [const-context only](./index.html#const-context-only).
///
/// See also [`const_str::encode!`][crate::encode]
///
/// # Examples
/// ``` rust
/// use const_str::encode_z;
///
/// const S: &str = "hello你好";
///
/// const S_UTF8_Z: &[u8] = encode_z!(utf8, S);
/// assert_eq!(S_UTF8_Z, [104, 101, 108, 108, 111, 228, 189, 160, 229, 165, 189, 0]);
///
/// const S_UTF16_Z: &[u16] = encode_z!(utf16, S);
/// assert_eq!(S_UTF16_Z, [104, 101, 108, 108, 111, 20320, 22909, 0]);
/// ```
///
#[macro_export]
macro_rules! encode_z {
(utf8, $s: expr) => {
$crate::__encode!(utf8_z, $s)
};
(utf16, $s: expr) => {
$crate::__encode!(utf16_z, $s)
};
}
#[cfg(test)]
mod tests {
#[test]
fn test_encode() {
{
const S: &str = "abc你好";
const B1: &[u8; 9] = encode!(utf8, S);
const B2: &[u8] = encode!(utf8, S);
const B3: &[u8; 10] = encode_z!(utf8, S);
let mut ans = S.as_bytes().to_owned();
assert_eq!(B1, ans.as_slice());
assert_eq!(B2, B1);
ans.push(0);
assert_eq!(B3, ans.as_slice());
}
{
const S: &str = "abc你好𤭢";
const B1: &[u16; 7] = encode!(utf16, S);
const B2: &[u16; 8] = encode_z!(utf16, S);
let mut ans = S.encode_utf16().collect::<Vec<_>>();
assert_eq!(B1, ans.as_slice());
ans.push(0);
assert_eq!(B2, ans.as_slice());
}
}
}