intaglio/lib.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 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 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394
#![warn(clippy::all)]
#![warn(clippy::pedantic)]
#![warn(clippy::cargo)]
#![warn(clippy::undocumented_unsafe_blocks)]
#![allow(clippy::cast_possible_truncation)]
#![allow(unknown_lints)]
#![warn(missing_copy_implementations)]
#![warn(missing_debug_implementations)]
#![warn(missing_docs)]
#![warn(rust_2018_idioms)]
#![warn(trivial_casts, trivial_numeric_casts)]
#![warn(unsafe_op_in_unsafe_fn)]
#![warn(unused_qualifications)]
#![warn(variant_size_differences)]
// Enable feature callouts in generated documentation:
// https://doc.rust-lang.org/beta/unstable-book/language-features/doc-cfg.html
//
// This approach is borrowed from tokio.
#![cfg_attr(docsrs, feature(doc_cfg))]
#![cfg_attr(docsrs, feature(doc_alias))]
//! This crate provides a library for interning strings.
//!
//! The primary API is a symbol table. Its API is similar to a bimap in that
//! symbols can resolve an underlying string and a string slice can retrieve
//! its associated symbol.
//!
//! For more specific details on the API for interning strings into a symbol
//! table, please see the documentation for the [`SymbolTable`] type.
//!
//! # Examples
//!
//! ```
//! # use intaglio::SymbolTable;
//! # fn example() -> Result<(), Box<dyn std::error::Error>> {
//! let mut table = SymbolTable::new();
//! let sym_id = table.intern("abc")?;
//! assert_eq!(sym_id, table.intern("abc".to_string())?);
//! assert!(table.contains(sym_id));
//! assert!(table.is_interned("abc"));
//! # Ok(())
//! # }
//! # example().unwrap();
//! ```
//!
//! # String interning
//!
//! Intaglio `SymbolTable`s store at most one copy of a string. All requests to
//! intern a string that is already present in the table, regardless of whether
//! the string is an owned `String` or borrowed `&'static str`, will return the
//! same immutable [`Symbol`].
//!
//! [`Symbol`]s are `u32` indexes into a `SymbolTable` that are cheap to
//! compare, copy, store, and send.
//!
//! # Allocations
//!
//! `SymbolTable` exposes several constructors for tuning the initial allocated
//! size of the table. It also exposes several APIs for tuning the table's
//! memory usage such as [`SymbolTable::reserve`] and [`SymbolTable::shrink_to_fit`].
//!
//! [`SymbolTable::intern`] does not clone or copy interned strings. It takes
//! ownership of the string contents with no additional allocations.
//!
//! # Types of Interners
//!
//! Intaglio includes multiple symbol tables which differ in the types of strings
//! they allow you to intern.
//!
//! - [`SymbolTable`] interns UTF-8 strings: [`String`] and [`&str`](prim@str).
#![cfg_attr(
feature = "bytes",
doc = "- [`bytes::SymbolTable`] interns binary strings: [`Vec<u8>`] and `&[u8]`."
)]
#![cfg_attr(
feature = "cstr",
doc = "- [`cstr::SymbolTable`] interns C strings: [`CString`] and [`&CStr`]."
)]
#![cfg_attr(
feature = "osstr",
doc = "- [`osstr::SymbolTable`] interns platform strings: [`OsString`] and [`&OsStr`]."
)]
#![cfg_attr(
feature = "path",
doc = "- [`path::SymbolTable`] interns path strings: [`PathBuf`] and [`&Path`]."
)]
//!
//! # Crate features
//!
//! All features are enabled by default.
//!
//! - **bytes** - Enables an additional symbol table implementation for interning
//! byte strings ([`Vec<u8>`] and `&'static [u8]`).
//! - **cstr** - Enables an additional symbol table implementation for interning
//! C strings ([`CString`] and [`&'static CStr`]).
//! - **osstr** - Enables an additional symbol table implementation for interning
//! platform strings ([`OsString`] and [`&'static OsStr`]).
//! - **path** - Enables an additional symbol table implementation for interning
//! path strings ([`PathBuf`] and [`&'static Path`]).
//!
//! [`Vec<u8>`]: std::vec::Vec
//! [`CString`]: std::ffi::CString
//! [`&CStr`]: std::ffi::CStr
//! [`&'static CStr`]: std::ffi::CStr
//! [`OsString`]: std::ffi::OsString
//! [`&OsStr`]: std::ffi::OsStr
//! [`&'static OsStr`]: std::ffi::OsStr
//! [`PathBuf`]: std::path::PathBuf
//! [`&Path`]: std::path::Path
//! [`&'static Path`]: std::path::Path
#![doc(html_root_url = "https://docs.rs/intaglio/1.9.1")]
use core::fmt;
use core::num::TryFromIntError;
use std::error;
macro_rules! const_assert {
($x:expr $(,)?) => {
#[allow(unknown_lints, clippy::eq_op)]
const _: [(); 0 - !{
const ASSERT: bool = $x;
ASSERT
} as usize] = [];
};
}
#[cfg(feature = "bytes")]
#[cfg_attr(docsrs, doc(cfg(feature = "bytes")))]
pub mod bytes;
mod convert;
#[cfg(feature = "cstr")]
#[cfg_attr(docsrs, doc(cfg(feature = "cstr")))]
pub mod cstr;
mod eq;
mod internal;
#[cfg(feature = "osstr")]
#[cfg_attr(docsrs, doc(cfg(feature = "osstr")))]
pub mod osstr;
#[cfg(feature = "path")]
#[cfg_attr(docsrs, doc(cfg(feature = "path")))]
pub mod path;
mod str;
pub use crate::str::*;
// To prevent overflows when indexing into the backing `Vec`, `intaglio`
// requires `usize` to be at least as big as `u32`.
const_assert!(usize::BITS >= u32::BITS);
/// Default capacity for a new [`SymbolTable`] created with
/// [`SymbolTable::new`].
pub const DEFAULT_SYMBOL_TABLE_CAPACITY: usize = 4096;
/// Error returned when a [`SymbolTable`] or symbol identifier overflows.
///
/// `SymbolTable` uses `u32` identifiers for symbols to save space. If more than
/// `u32::MAX` symbols are stored in the table, no more identifiers can be
/// generated. Any subsequent inserts into the table will fail with this error.
#[derive(Default, Debug, Clone, Copy, Hash, PartialEq, Eq, PartialOrd, Ord)]
pub struct SymbolOverflowError {
_private: (),
}
impl SymbolOverflowError {
/// Construct a new `SymbolOverflowError` with no source.
#[inline]
#[must_use]
pub const fn new() -> Self {
Self { _private: () }
}
/// Return the maximum capacity of the [`SymbolTable`] that returned this
/// error.
#[inline]
#[must_use]
#[allow(clippy::unused_self)]
pub const fn max_capacity(self) -> usize {
// The valid representation of `Symbol` is:
//
// ```
// Symbol(0_u32)..=Symbol(u32::MAX)
// ```
//
// The length of a range from `0..uX::MAX` is `uX::MAX + 1`.
//
// On 32-bit architectures, `usize` cannot hold `u32::MAX + 1`, but a
// `SymbolTable` will not be able to allocate that much anyway, so
// saturate and return `usize::MAX`.
let capa = u32::MAX as usize;
capa.saturating_add(1)
}
}
impl From<TryFromIntError> for SymbolOverflowError {
#[inline]
fn from(_err: TryFromIntError) -> Self {
Self::new()
}
}
impl fmt::Display for SymbolOverflowError {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.write_str("Symbol overflow")
}
}
impl error::Error for SymbolOverflowError {}
/// Identifier bound to an interned string.
///
/// [`SymbolTable`] is guaranteed to return an equivalent `Symbol` each time
/// an equivalent string is interned.
///
/// A `Symbol` allows retrieving a reference to the original interned string.
///
/// `Symbol`s are based on a `u32` index.
///
/// `Symbol`s are not constrained to the `SymbolTable` which created them. No
/// runtime checks ensure that [`SymbolTable::get`] is called with a `Symbol`
/// that the table itself issued.
#[repr(transparent)]
#[derive(Debug, Clone, Copy, Hash, PartialEq, Eq, PartialOrd, Ord)]
pub struct Symbol(u32);
impl Symbol {
/// Construct a new `Symbol` from the given `u32`.
///
/// `Symbol`s constructed outside a [`SymbolTable`] may fail to resolve to
/// an underlying string using [`SymbolTable::get`].
///
/// `Symbol`s are not constrained to the `SymbolTable` which created them.
/// No runtime checks ensure that [`SymbolTable::get`] is called with a
/// `Symbol` that the table itself issued.
///
/// # Examples
///
/// ```
/// # use intaglio::Symbol;
/// let sym = Symbol::new(263);
/// assert_eq!(263, sym.id());
/// ```
#[inline]
#[must_use]
pub const fn new(sym: u32) -> Self {
Self(sym)
}
/// Return the `u32` identifier from this `Symbol`.
///
/// # Examples
///
/// ```
/// # use intaglio::SymbolTable;
/// # fn example() -> Result<(), Box<dyn std::error::Error>> {
/// let mut table = SymbolTable::new();
/// let sym = table.intern("intaglio")?;
/// assert_eq!(u32::from(sym), sym.id());
/// # Ok(())
/// # }
/// # example().unwrap();
/// ```
#[inline]
#[must_use]
pub const fn id(self) -> u32 {
self.0
}
}
#[cfg(test)]
mod tests {
use core::cmp::Ordering;
use core::fmt::Write as _;
use core::hash::{BuildHasher as _, Hash as _, Hasher as _};
use core::marker::Unpin;
use core::panic::{RefUnwindSafe, UnwindSafe};
use std::collections::hash_map::RandomState;
use super::SymbolOverflowError;
#[test]
#[cfg(target_pointer_width = "64")]
fn max_capacity_is_length_of_symbol_range_usize_64_bit() {
let symbol_range = 0_u32..=u32::MAX;
let len = symbol_range.size_hint().0;
assert_eq!(SymbolOverflowError::new().max_capacity(), len);
let len = symbol_range.size_hint().1.unwrap();
assert_eq!(SymbolOverflowError::new().max_capacity(), len);
}
#[test]
#[cfg(target_pointer_width = "32")]
fn max_capacity_is_length_of_symbol_range_usize_32_bit() {
assert_eq!(SymbolOverflowError::new().max_capacity(), usize::MAX);
}
#[test]
fn error_display_is_not_empty() {
let tc = SymbolOverflowError::new();
let mut buf = String::new();
write!(&mut buf, "{tc}").unwrap();
assert!(!buf.is_empty());
}
#[test]
fn error_debug_is_not_empty() {
let tc = SymbolOverflowError::new();
let mut buf = String::new();
write!(&mut buf, "{tc:?}").unwrap();
assert!(!buf.is_empty());
}
#[test]
fn error_from_int_conversion_error() {
let try_from_int_error = i8::try_from(u8::MAX).unwrap_err();
let err = SymbolOverflowError::from(try_from_int_error);
assert_eq!(err, SymbolOverflowError::new());
}
#[test]
fn error_default_is_error_new() {
let default = SymbolOverflowError::default();
let new = SymbolOverflowError::new();
assert_eq!(default, new);
}
#[test]
fn error_clone_is_equal_to_self() {
let default = SymbolOverflowError::default();
#[allow(clippy::clone_on_copy)]
let clone = default.clone();
assert_eq!(default, clone);
}
#[test]
fn error_ord_is_equal_to_self() {
let default = SymbolOverflowError::default();
let new = SymbolOverflowError::new();
assert_eq!(default.cmp(&new), Ordering::Equal);
assert_eq!(new.cmp(&default), Ordering::Equal);
}
#[test]
fn error_hash_is_equal_to_self() {
let default = SymbolOverflowError::default();
let new = SymbolOverflowError::new();
let s = RandomState::new();
let default_hash = {
let mut hasher = s.build_hasher();
default.hash(&mut hasher);
hasher.finish()
};
let new_hash = {
let mut hasher = s.build_hasher();
new.hash(&mut hasher);
hasher.finish()
};
assert_eq!(default_hash, new_hash);
}
#[test]
fn auto_traits_are_implemented() {
fn constraint<T: RefUnwindSafe + Send + Sync + Unpin + UnwindSafe>(_table: T) {}
constraint(crate::SymbolTable::with_capacity(0));
#[cfg(feature = "bytes")]
constraint(crate::bytes::SymbolTable::with_capacity(0));
#[cfg(feature = "cstr")]
constraint(crate::cstr::SymbolTable::with_capacity(0));
#[cfg(feature = "osstr")]
constraint(crate::osstr::SymbolTable::with_capacity(0));
#[cfg(feature = "path")]
constraint(crate::path::SymbolTable::with_capacity(0));
}
}
// Ensure code blocks in `README.md` compile
//
// The README contains examples from all interners, so only run these doctests
// when all features are enabled.
//
// This module declaration should be kept at the end of the file, in order to
// not interfere with code coverage.
#[cfg(all(
doctest,
feature = "bytes",
feature = "cstr",
feature = "osstr",
feature = "path"
))]
#[doc = include_str!("../README.md")]
mod readme {}