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
use alloc::string::String;
use core::fmt::{Debug, Formatter};
use core::ops::Deref;
use core::{fmt, mem, ptr, str};
pub const STRING_SIZED_INLINE: usize = mem::size_of::<String>() - 2;
#[derive(Clone, Copy)]
pub(crate) struct InlineFlexStr<const N: usize = STRING_SIZED_INLINE> {
data: [mem::MaybeUninit<u8>; N],
len: u8,
}
impl<const N: usize> InlineFlexStr<N> {
#[inline]
pub fn try_new<T: AsRef<str>>(s: T) -> Result<Self, T> {
let s_ref = s.as_ref();
if s_ref.len() <= Self::capacity() {
unsafe { Ok(Self::new(s_ref)) }
} else {
Err(s)
}
}
#[inline]
unsafe fn new(s: &str) -> Self {
let mut data: [mem::MaybeUninit<u8>; N] = mem::MaybeUninit::uninit().assume_init();
ptr::copy_nonoverlapping(s.as_ptr(), data.as_mut_ptr().cast::<u8>(), s.len());
Self {
len: s.len() as u8,
data,
}
}
#[inline]
pub(crate) fn from_array(data: [mem::MaybeUninit<u8>; N], len: u8) -> Self {
Self { data, len }
}
#[inline]
pub fn capacity() -> usize {
N
}
#[inline]
pub fn len(&self) -> usize {
self.len as usize
}
#[inline]
pub fn is_empty(&self) -> bool {
self.len == 0
}
#[inline]
pub fn try_concat(&mut self, s: &str) -> bool {
if self.len() + s.len() <= Self::capacity() {
let data = self.data[self.len as usize..].as_mut_ptr().cast::<u8>();
unsafe {
ptr::copy_nonoverlapping(s.as_ptr(), data, s.len());
}
self.len += s.len() as u8;
true
} else {
false
}
}
}
impl<const N: usize> Debug for InlineFlexStr<N> {
#[inline]
fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
<str as Debug>::fmt(self, f)
}
}
impl<const N: usize> Deref for InlineFlexStr<N> {
type Target = str;
#[inline]
fn deref(&self) -> &Self::Target {
let data = &self.data[..self.len()];
unsafe {
let data = &*(data as *const [mem::MaybeUninit<u8>] as *const [u8]);
str::from_utf8_unchecked(data)
}
}
}
impl<const N: usize> TryFrom<String> for InlineFlexStr<N> {
type Error = String;
#[inline]
fn try_from(value: String) -> Result<Self, Self::Error> {
Self::try_new(value)
}
}
impl<'s, const N: usize> TryFrom<&'s String> for InlineFlexStr<N> {
type Error = &'s String;
#[inline]
fn try_from(value: &'s String) -> Result<Self, Self::Error> {
Self::try_new(value)
}
}
impl<'s, const N: usize> TryFrom<&'s str> for InlineFlexStr<N> {
type Error = &'s str;
#[inline]
fn try_from(value: &'s str) -> Result<Self, Self::Error> {
Self::try_new(value)
}
}
#[cfg(test)]
mod tests {
use crate::inline::InlineFlexStr;
use alloc::string::ToString;
#[test]
fn empty() {
let lit = "";
let s: InlineFlexStr = lit.try_into().expect("bad inline str");
assert_eq!(&*s, lit);
assert_eq!(s.len(), lit.len())
}
#[test]
fn good_init() {
let lit = "inline";
let s: InlineFlexStr = lit.try_into().expect("bad inline str");
assert_eq!(&*s, lit);
assert_eq!(s.len(), lit.len())
}
#[test]
fn bad_init() {
let lit = "This is way too long to be an inline string!!!";
let s = <InlineFlexStr>::try_new(lit).unwrap_err();
assert_eq!(s, lit);
assert_eq!(s.len(), lit.len())
}
#[test]
fn good_concat() {
let lit = "Inline";
let lit2 = " me";
let mut s = <InlineFlexStr>::try_new(lit).expect("bad inline str");
assert!(s.try_concat(lit2));
assert_eq!(&*s, lit.to_string() + lit2);
}
#[test]
fn bad_concat() {
let lit = "This is";
let lit2 = " way too long to be an inline string!!!";
let mut s = <InlineFlexStr>::try_new(lit).expect("bad inline str");
assert!(!s.try_concat(lit2));
assert_eq!(&*s, lit);
}
}