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
#![cfg(feature = "backends")]
use super::Backend;
use crate::{symbol::expect_valid_symbol, DefaultSymbol, Symbol};
use alloc::{string::String, vec::Vec};
use core::{iter::Enumerate, marker::PhantomData, slice};
/// An interner backend that accumulates all interned string contents into one string.
///
/// # Note
///
/// Implementation inspired by [CAD97's](https://github.com/CAD97) research
/// project [`strena`](https://github.com/CAD97/strena).
///
/// # Usage Hint
///
/// Use this backend if runtime performance is what matters most to you.
///
/// # Usage
///
/// - **Fill:** Efficiency of filling an empty string interner.
/// - **Resolve:** Efficiency of interned string look-up given a symbol.
/// - **Allocations:** The number of allocations performed by the backend.
/// - **Footprint:** The total heap memory consumed by the backend.
/// - **Contiguous:** True if the returned symbols have contiguous values.
/// - **Iteration:** Efficiency of iterating over the interned strings.
///
/// Rating varies between **bad**, **ok**, **good** and **best**.
///
/// | Scenario | Rating |
/// |:------------|:--------:|
/// | Fill | **good** |
/// | Resolve | **ok** |
/// | Allocations | **good** |
/// | Footprint | **good** |
/// | Supports `get_or_intern_static` | **no** |
/// | `Send` + `Sync` | **yes** |
/// | Contiguous | **yes** |
/// | Iteration | **good** |
#[derive(Debug)]
pub struct StringBackend<S = DefaultSymbol> {
ends: Vec<usize>,
buffer: String,
marker: PhantomData<fn() -> S>,
}
/// Represents a `[from, to)` index into the `StringBackend` buffer.
#[derive(Debug, Copy, Clone, PartialEq, Eq)]
pub struct Span {
from: usize,
to: usize,
}
impl<S> PartialEq for StringBackend<S>
where
S: Symbol,
{
fn eq(&self, other: &Self) -> bool {
if self.ends.len() != other.ends.len() {
return false;
}
for ((_, lhs), (_, rhs)) in self.into_iter().zip(other) {
if lhs != rhs {
return false;
}
}
true
}
}
impl<S> Eq for StringBackend<S> where S: Symbol {}
impl<S> Clone for StringBackend<S> {
fn clone(&self) -> Self {
Self {
ends: self.ends.clone(),
buffer: self.buffer.clone(),
marker: Default::default(),
}
}
}
impl<S> Default for StringBackend<S> {
#[cfg_attr(feature = "inline-more", inline)]
fn default() -> Self {
Self {
ends: Vec::default(),
buffer: String::default(),
marker: Default::default(),
}
}
}
impl<S> StringBackend<S>
where
S: Symbol,
{
/// Returns the next available symbol.
fn next_symbol(&self) -> S {
expect_valid_symbol(self.ends.len())
}
/// Returns the string associated to the span.
fn span_to_str(&self, span: Span) -> &str {
// SAFETY: - We convert a `String` into its underlying bytes and then
// directly reinterpret it as `&str` again which is safe.
// - Nothing mutates the string in between since this is a `&self`
// method.
// - The spans we use for `(start..end]` ranges are always
// constructed in accordance to valid utf8 byte ranges.
unsafe { core::str::from_utf8_unchecked(&self.buffer.as_bytes()[span.from..span.to]) }
}
/// Returns the span for the given symbol if any.
fn symbol_to_span(&self, symbol: S) -> Option<Span> {
let index = symbol.to_usize();
self.ends.get(index).copied().map(|to| {
let from = self.ends.get(index.wrapping_sub(1)).copied().unwrap_or(0);
Span { from, to }
})
}
/// Returns the span for the given symbol if any.
unsafe fn symbol_to_span_unchecked(&self, symbol: S) -> Span {
let index = symbol.to_usize();
// SAFETY: The function is marked unsafe so that the caller guarantees
// that required invariants are checked.
let to = unsafe { *self.ends.get_unchecked(index) };
let from = self.ends.get(index.wrapping_sub(1)).copied().unwrap_or(0);
Span { from, to }
}
/// Pushes the given string into the buffer and returns its span.
///
/// # Panics
///
/// If the backend ran out of symbols.
fn push_string(&mut self, string: &str) -> S {
self.buffer.push_str(string);
let to = self.buffer.as_bytes().len();
let symbol = self.next_symbol();
self.ends.push(to);
symbol
}
}
impl<S> Backend for StringBackend<S>
where
S: Symbol,
{
type Symbol = S;
type Iter<'a> = Iter<'a, S>
where
Self: 'a;
#[cfg_attr(feature = "inline-more", inline)]
fn with_capacity(cap: usize) -> Self {
// According to google the approx. word length is 5.
let default_word_len = 5;
Self {
ends: Vec::with_capacity(cap),
buffer: String::with_capacity(cap * default_word_len),
marker: Default::default(),
}
}
#[inline]
fn intern(&mut self, string: &str) -> Self::Symbol {
self.push_string(string)
}
#[inline]
fn resolve(&self, symbol: Self::Symbol) -> Option<&str> {
self.symbol_to_span(symbol)
.map(|span| self.span_to_str(span))
}
fn shrink_to_fit(&mut self) {
self.ends.shrink_to_fit();
self.buffer.shrink_to_fit();
}
#[inline]
unsafe fn resolve_unchecked(&self, symbol: Self::Symbol) -> &str {
// SAFETY: The function is marked unsafe so that the caller guarantees
// that required invariants are checked.
unsafe { self.span_to_str(self.symbol_to_span_unchecked(symbol)) }
}
#[inline]
fn iter(&self) -> Self::Iter<'_> {
Iter::new(self)
}
}
impl<'a, S> IntoIterator for &'a StringBackend<S>
where
S: Symbol,
{
type Item = (S, &'a str);
type IntoIter = Iter<'a, S>;
#[cfg_attr(feature = "inline-more", inline)]
fn into_iter(self) -> Self::IntoIter {
self.iter()
}
}
pub struct Iter<'a, S> {
backend: &'a StringBackend<S>,
start: usize,
ends: Enumerate<slice::Iter<'a, usize>>,
}
impl<'a, S> Iter<'a, S> {
#[cfg_attr(feature = "inline-more", inline)]
pub fn new(backend: &'a StringBackend<S>) -> Self {
Self {
backend,
start: 0,
ends: backend.ends.iter().enumerate(),
}
}
}
impl<'a, S> Iterator for Iter<'a, S>
where
S: Symbol,
{
type Item = (S, &'a str);
#[inline]
fn size_hint(&self) -> (usize, Option<usize>) {
self.ends.size_hint()
}
#[inline]
fn next(&mut self) -> Option<Self::Item> {
self.ends.next().map(|(id, &to)| {
let from = core::mem::replace(&mut self.start, to);
(
expect_valid_symbol(id),
self.backend.span_to_str(Span { from, to }),
)
})
}
}