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
# representation of `"hello"` is:
//!
//! ```svgbob
//! "VBox"
//! +----------+
//! | ptr |
//! +----------+
//! |
//! | Str
//! | +-----------+-----------+
//! '-> | 3: usize | ""hello"" |
//! +-----------+-----------+
//! ```
//!
//! Once allocated, the string size may not be modified.
//!
//! # Examples
//!
//! ```
//! use varlen::prelude::*;
//! use varlen::Layout;
//! let s = VBox::new(Str::copy("hello"));
//! assert_eq!(&s[..], "hello");
//! // Layout is as specified above:
//! assert_eq!(s.calculate_layout().size(), std::mem::size_of::<usize>() + 5)
//! ```
)]
use crate::array::{Array, ArrayCloner, ArrayLen};
use crate::newtype::define_varlen_newtype;
use crate::{impl_initializer_as_newtype, Initializer, VClone, VCopy};
use core::pin::Pin;
define_varlen_newtype! {
#[repr(transparent)]
#[doc = crate::doc_macro::make_svgbobdoc!(
/// A string with inline storage.
///
/// This consists of an integer `length` field, followed immediately by the utf8 string payload.
/// For example, the [`VBox<String>`](crate::VBox) representation of `"hello"` is:
///
/// ```svgbob
/// "VBox"
/// +----------+
/// | ptr |
/// +----------+
/// |
/// | Str
/// | +-----------+------+------+------+------+------+
/// '-> | 3: usize | "'h'"| "'e'"| "'l'"| "'l'"| "'o'"|
/// +-----------+------+------+------+------+------+
/// ```
///
/// Once allocated, the string size may not be modified.
///
/// # Examples
///
/// ```
/// use varlen::prelude::*;
/// use varlen::Layout;
/// let s = VBox::new(Str::copy("hello"));
/// assert_eq!(&s[..], "hello");
/// // Layout is as specified above:
/// assert_eq!(s.calculate_layout().size(), std::mem::size_of::<usize>() + 5)
/// ```
///
/// # Smaller length field
///
/// You may choose to store the length of the string in a smaller integer type than [`usize`],
/// just like in [`Array<T>`](crate::Array). Construction will fail if the string is too long for the
/// integer type to express:
///
/// ```
/// use varlen::prelude::*;
/// // Short string fits:
/// let s: VBox<Str<u8>> = VBox::new(Str::try_copy("hello").unwrap());
/// // Long string doesn't fit:
/// assert!(Str::<u8>::try_copy(std::str::from_utf8(&[b'a'; 257]).unwrap()).is_none());
/// ```
)]
pub struct Str<(Len: ArrayLen = usize)>(Array<u8, Len>);
with signature: impl<(Len: ArrayLen)> Str<(Len)> { _ }
with init: struct StrInit<_>(_);
with inner_ref: fn inner(&self) -> &_;
with inner_mut: fn inner_mut(self: _) -> _;
}
impl<Len: ArrayLen> core::ops::Deref for Str<Len> {
type Target = str;
fn deref(&self) -> &Self::Target {
let slice: &[u8] = &self.inner();
unsafe {
// Safety: we only allow initialization from valid utf8
core::str::from_utf8_unchecked(slice)
}
}
}
#[allow(rustdoc::missing_doc_code_examples)]
impl<Len: ArrayLen> Str<Len> {
/// Mutable access to the underlying string.
///
/// # Examples
///
/// ```
/// use varlen::prelude::*;
/// let mut s = VBox::new(Str::copy("hello"));
/// s.as_mut().mut_slice().make_ascii_uppercase();
/// assert_eq!(&s[..], "HELLO");
/// ```
pub fn mut_slice(self: Pin<&mut Self>) -> &mut str {
let slice = self.inner_mut().mut_slice();
unsafe {
// Safety: we only allow initialization from valid utf8
core::str::from_utf8_unchecked_mut(slice)
}
}
}
#[allow(rustdoc::missing_doc_code_examples)]
impl Str {
/// Initializes a [`Str`] by copying from an existing [`&str`].
///
/// # Examples
///
/// ```
/// use varlen::prelude::*;
/// let s = VBox::new(Str::copy("hello"));
/// assert_eq!(&s[..], "hello");
/// ```
pub fn copy(s: &str) -> impl Initializer<Self> + '_ {
Str::try_copy(s).unwrap()
}
}
#[allow(rustdoc::missing_doc_code_examples)]
impl<Len: ArrayLen> Str<Len> {
/// Initializes a [`Str`] from an existing [`&str`], or returns `None` if it doesn't fit in the length field.
///
/// ```
/// use varlen::prelude::*;
/// // Short string fits:
/// let s: VBox<Str<u8>> = VBox::new(Str::try_copy("hello").unwrap());
/// // Long string doesn't fit:
/// assert!(Str::<u8>::try_copy(std::str::from_utf8(&[b'a'; 257]).unwrap()).is_none());
/// ```
pub fn try_copy(s: &str) -> Option<impl Initializer<Self> + '_> {
Some(StrInit(Array::try_copy(s.as_bytes())?))
}
}
/// Initializer type for cloning an array.
///
/// Prefer to use `Str::vcopy()` over `Str::vclone()` where possible.
///
/// # Examples
///
/// ```
/// use varlen::prelude::*;
/// let arr = VBox::new(Str::copy("hello"));
/// let seq: Seq<Str> = seq![arr.vclone(), arr.vclone(), arr.vclone()]; // Clones the string
/// for a in seq.iter() {
/// assert_eq!(&a[..], "hello");
/// }
/// ```
pub struct StrCloner<'a, Len: ArrayLen>(StrInit<ArrayCloner<'a, u8, Len>>);
impl_initializer_as_newtype! {
impl<('a), (Len: ArrayLen)> Initializer<Str<Len>> for StrCloner<'a, Len> { _ }
}
impl<'a, Len: ArrayLen> VClone<'a> for Str<Len> {
type Cloner = StrCloner<'a, Len>;
fn vclone(&'a self) -> Self::Cloner {
StrCloner(StrInit(self.0.vclone()))
}
}
/// Strings can be copied with fast memcpy.
///
/// # Examples
///
/// ```
/// use varlen::prelude::*;
/// let arr = VBox::new(Str::copy("hello"));
/// let seq: Seq<Str> = seq![arr.vcopy(), arr.vcopy(), arr.vcopy()];
/// for a in seq.iter() {
/// assert_eq!(&a[..], "hello");
/// }
/// ```
// Safety: Len is Copy (because of ArrayLen), and so is the [u8] payload.
unsafe impl<'a, Len: ArrayLen> VCopy<'a> for Str<Len> {}