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
//! A set which implements a hash-set like interface, where values can be looked
//! up by keys.
//!
//! This set are implemented using a perfect hash functions, and are inserted
//! into a buffering using [`phf::store_set`].
//!
//! There's two types provided by this module:
//! * [`Set<T>`] which is a *bound* reference to a set, providing a convenient
//! set-like access.
//! * [`SetRef<T>`] which is the *pointer* of the set. This is what you store in
//! [`ZeroCopy`] types and is what is returned by [`phf::store_set`].
//!
//! [`phf::store_set`]: crate::phf::store_set
use core::borrow::Borrow;
use core::hash::Hash;
use crate::buf::{Bindable, Buf, Visit};
use crate::endian::{ByteOrder, Native};
use crate::error::Error;
use crate::phf::hashing::HashKey;
use crate::phf::Entry;
use crate::pointer::{DefaultSize, Ref, Size};
use crate::{Endian, ZeroCopy};
/// A set bound to a [`Buf`] through [`Buf::bind`] for convenience.
///
/// ## Examples
///
/// ```
/// use musli_zerocopy::OwnedBuf;
/// use musli_zerocopy::phf;
///
/// let mut buf = OwnedBuf::new();
///
/// let set = phf::store_set(&mut buf, [1, 2])?;
/// let set = buf.bind(set)?;
///
/// assert!(set.contains(&1)?);
/// assert!(set.contains(&2)?);
/// assert!(!set.contains(&3)?);
/// # Ok::<_, musli_zerocopy::Error>(())
/// ```
pub struct Set<'a, T> {
key: HashKey,
entries: &'a [T],
displacements: &'a [Entry<u32, u32>],
buf: &'a Buf,
}
impl<'a, T> Set<'a, T>
where
T: ZeroCopy,
{
/// Get a value from the set.
///
/// ## Examples
///
/// ```
/// use musli_zerocopy::OwnedBuf;
/// use musli_zerocopy::phf;
///
/// let mut buf = OwnedBuf::new();
///
/// let set = phf::store_set(&mut buf, [1, 2])?;
/// let set = buf.bind(set)?;
///
/// assert!(set.contains(&1)?);
/// assert!(set.contains(&2)?);
/// assert!(!set.contains(&3)?);
/// # Ok::<_, musli_zerocopy::Error>(())
/// ```
pub fn contains<Q>(&self, key: &Q) -> Result<bool, Error>
where
Q: ?Sized + Visit,
Q::Target: Eq + Hash,
T: Visit,
T::Target: Borrow<Q::Target>,
{
if self.displacements.is_empty() {
return Ok(false);
}
let hashes = crate::phf::hashing::hash(self.buf, key, &self.key)?;
let index =
crate::phf::hashing::get_index(&hashes, self.displacements, self.entries.len())?;
let Some(e) = self.entries.get(index) else {
return Ok(false);
};
key.visit(self.buf, |b| e.visit(self.buf, |a| a.borrow() == b))?
}
}
/// Bind a [`SetRef`] into a [`Set`].
impl<T, E: ByteOrder, O: Size> Bindable for SetRef<T, E, O>
where
T: ZeroCopy,
{
type Bound<'a> = Set<'a, T> where Self: 'a;
#[inline]
fn bind(self, buf: &Buf) -> Result<Self::Bound<'_>, Error> {
Ok(Set {
key: self.key.to_ne(),
entries: buf.load(self.entries)?,
displacements: buf.load(self.displacements)?,
buf,
})
}
}
/// A stored reference to a set.
///
/// Note that operating over the methods provided in [`SetRef`] does not demand
/// that the entire contents of the set is validated as would be the case when
/// [`bind()`] is used and might result in better performance if the data is
/// infrequently accessed.
///
/// Constructed through [`phf::store_set`].
///
/// [`phf::store_set`]: crate::phf::store_set
/// [`bind()`]: crate::buf::Buf::bind
///
/// ## Examples
///
/// ```
/// use musli_zerocopy::OwnedBuf;
/// use musli_zerocopy::phf;
///
/// let mut buf = OwnedBuf::new();
///
/// let set = phf::store_set(&mut buf, [1, 2])?;
///
/// assert!(set.contains(&buf, &1)?);
/// assert!(set.contains(&buf, &2)?);
/// assert!(!set.contains(&buf, &3)?);
/// # Ok::<_, musli_zerocopy::Error>(())
/// ```
#[derive(Debug, ZeroCopy)]
#[repr(C)]
#[zero_copy(crate)]
pub struct SetRef<T, E: ByteOrder = Native, O: Size = DefaultSize>
where
T: ZeroCopy,
{
key: Endian<HashKey, E>,
entries: Ref<[T], E, O>,
displacements: Ref<[Entry<u32, u32>], E, O>,
}
impl<T, E: ByteOrder, O: Size> SetRef<T, E, O>
where
T: ZeroCopy,
{
#[cfg(feature = "alloc")]
#[inline]
pub(crate) fn new(
key: HashKey,
entries: Ref<[T], E, O>,
displacements: Ref<[Entry<u32, u32>], E, O>,
) -> Self {
Self {
key: Endian::new(key),
entries,
displacements,
}
}
}
impl<T, E: ByteOrder, O: Size> SetRef<T, E, O>
where
T: ZeroCopy,
{
/// Get a value from the set.
///
/// ## Examples
///
/// ```
/// use musli_zerocopy::OwnedBuf;
/// use musli_zerocopy::phf;
///
/// let mut buf = OwnedBuf::new();
///
/// let set = phf::store_set(&mut buf, [1, 2])?;
/// let set = buf.bind(set)?;
///
/// assert!(set.contains(&1)?);
/// assert!(set.contains(&2)?);
/// assert!(!set.contains(&3)?);
/// # Ok::<_, musli_zerocopy::Error>(())
/// ```
pub fn contains<Q>(&self, buf: &Buf, key: &Q) -> Result<bool, Error>
where
Q: ?Sized + Visit,
Q::Target: Eq + Hash,
T: Visit,
T::Target: Borrow<Q::Target>,
{
if self.displacements.is_empty() {
return Ok(false);
}
let hashes = crate::phf::hashing::hash(buf, key, &self.key.to_ne())?;
let displacements = |index| match self.displacements.get(index) {
Some(entry) => Ok(Some(buf.load(entry)?)),
None => Ok(None),
};
let index = crate::phf::hashing::get_custom_index(
&hashes,
displacements,
self.displacements.len(),
self.entries.len(),
)?;
let Some(e) = self.entries.get(index) else {
return Ok(false);
};
let e = buf.load(e)?;
key.visit(buf, |b| e.visit(buf, |a| a.borrow() == b))?
}
}