use std::collections::HashMap;
use std::num::NonZeroU32;
use serde::{Deserialize, Serialize};
use crate::error::{Error, Result};
use crate::limits::Limits;
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Serialize, Deserialize)]
pub struct IriId(NonZeroU32);
impl IriId {
#[must_use]
pub fn from_index(index: u32) -> Self {
Self(NonZeroU32::new(index).expect("IriId index must be non-zero"))
}
pub fn try_from_index(index: u32) -> Result<Self> {
NonZeroU32::new(index)
.map(Self)
.ok_or_else(|| Error::InvalidIri("IriId index must be non-zero".into()))
}
#[must_use]
pub fn index(self) -> u32 {
self.0.get()
}
}
#[derive(Debug, Default, Clone, PartialEq, Eq)]
pub struct InternPool {
strings: Vec<Box<str>>,
index: HashMap<Box<str>, IriId>,
}
impl InternPool {
#[must_use]
pub fn new() -> Self {
Self::default()
}
#[must_use]
pub fn len(&self) -> usize {
self.strings.len()
}
#[must_use]
pub fn is_empty(&self) -> bool {
self.strings.is_empty()
}
#[must_use]
pub fn get(&self, iri: &str) -> Option<IriId> {
self.index.get(iri).copied()
}
pub fn intern(&mut self, iri: &str) -> Result<IriId> {
self.intern_with_limit(iri, Limits::default().max_iri_len)
}
pub fn intern_with_limit(&mut self, iri: &str, max_len: usize) -> Result<IriId> {
validate_iri_with_max_len(iri, max_len)?;
if let Some(&id) = self.index.get(iri) {
return Ok(id);
}
let index = u32::try_from(self.strings.len())
.map_err(|_| Error::InvalidIri("IRI pool capacity exceeded".into()))?
+ 1;
let id = IriId(NonZeroU32::new(index).expect("index is non-zero"));
let owned: Box<str> = iri.into();
self.index.insert(owned.clone(), id);
self.strings.push(owned);
Ok(id)
}
pub fn resolve(&self, id: IriId) -> Result<&str> {
let idx = usize::try_from(id.index())
.map_err(|_| Error::InvalidIri(format!("invalid IriId index: {}", id.index())))?
- 1;
self.strings
.get(idx)
.map(AsRef::as_ref)
.ok_or_else(|| Error::InvalidIri(format!("unknown IriId: {}", id.index())))
}
pub fn iter(&self) -> impl Iterator<Item = &str> {
self.strings.iter().map(AsRef::as_ref)
}
}
const ALLOWED_SCHEMES: &[&str] = &["http", "https", "urn"];
pub fn validate_iri(iri: &str) -> Result<()> {
validate_iri_with_max_len(iri, Limits::default().max_iri_len)
}
pub fn validate_iri_with_max_len(iri: &str, max_len: usize) -> Result<()> {
if iri.is_empty() {
return Err(Error::InvalidIri("IRI must not be empty".into()));
}
if iri.len() > max_len {
return Err(Error::InvalidIri(format!(
"IRI exceeds maximum length of {max_len} bytes"
)));
}
if iri.chars().any(|c| c.is_ascii_control()) {
return Err(Error::InvalidIri(format!(
"IRI contains control characters: {iri}"
)));
}
if iri.contains(' ') {
return Err(Error::InvalidIri(format!("IRI contains whitespace: {iri}")));
}
let Some((scheme, rest)) = iri.split_once(':') else {
return Err(Error::InvalidIri(format!(
"IRI must be absolute (scheme:...): {iri}"
)));
};
if scheme.is_empty() || rest.is_empty() {
return Err(Error::InvalidIri(format!("invalid IRI scheme: {iri}")));
}
if !scheme
.chars()
.all(|c| c.is_ascii_alphanumeric() || c == '+' || c == '-' || c == '.')
{
return Err(Error::InvalidIri(format!("invalid IRI scheme: {iri}")));
}
if !ALLOWED_SCHEMES.contains(&scheme) {
return Err(Error::InvalidIri(format!(
"IRI scheme '{scheme}' is not allowed (allowed: http, https, urn)"
)));
}
Ok(())
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn intern_deduplicates() {
let mut pool = InternPool::new();
let a = pool.intern("http://example.org/A").expect("intern");
let b = pool.intern("http://example.org/A").expect("intern");
let c = pool.intern("http://example.org/B").expect("intern");
assert_eq!(a, b);
assert_ne!(a, c);
assert_eq!(pool.len(), 2);
}
#[test]
fn resolve_round_trip() {
let mut pool = InternPool::new();
let id = pool.intern("http://example.org/Test").expect("intern");
assert_eq!(
pool.resolve(id).expect("resolve"),
"http://example.org/Test"
);
}
#[test]
fn rejects_relative_iri() {
let mut pool = InternPool::new();
assert!(pool.intern("relative/path").is_err());
}
#[test]
fn accepts_urn() {
let mut pool = InternPool::new();
let id = pool.intern("urn:example:animal").expect("intern");
assert_eq!(pool.resolve(id).expect("resolve"), "urn:example:animal");
}
#[test]
fn rejects_empty_iri() {
assert!(validate_iri("").is_err());
}
#[test]
fn rejects_whitespace_iri() {
assert!(validate_iri("http://example.org/a b").is_err());
}
#[test]
fn rejects_javascript_scheme() {
assert!(validate_iri("javascript:alert(1)").is_err());
}
#[test]
fn rejects_control_characters() {
assert!(validate_iri("http://example.org/\u{0009}").is_err());
}
#[test]
fn try_from_index_rejects_zero() {
assert!(IriId::try_from_index(0).is_err());
}
#[test]
fn get_returns_none_for_unknown() {
let pool = InternPool::new();
assert!(pool.get("http://example.org/missing").is_none());
}
#[test]
fn resolve_unknown_id_errors() {
let pool = InternPool::new();
let err = pool.resolve(IriId::from_index(1)).expect_err("unknown id");
assert!(matches!(err, Error::InvalidIri(_)));
}
}