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
//! Archived hash set implementation.
//!
//! During archiving, hashsets are built into minimal perfect hashsets using
//! [compress, hash and displace](http://cmph.sourceforge.net/papers/esa09.pdf).
use crate::collections::hash_map::{ArchivedHashMap, HashMapResolver, Keys};
#[cfg(feature = "alloc")]
use crate::{
ser::{ScratchSpace, Serializer},
Serialize,
};
use core::{borrow::Borrow, fmt, hash::Hash};
/// An archived `HashSet`. This is a wrapper around a hash map with the same key and a value of
/// `()`.
#[cfg_attr(feature = "validation", derive(bytecheck::CheckBytes))]
#[repr(transparent)]
pub struct ArchivedHashSet<K>(ArchivedHashMap<K, ()>);
impl<K> ArchivedHashSet<K> {
/// Gets the number of items in the hash set.
#[inline]
pub const fn len(&self) -> usize {
self.0.len()
}
/// Gets the key corresponding to the given key in the hash set.
#[inline]
pub fn get<Q: ?Sized>(&self, k: &Q) -> Option<&K>
where
K: Borrow<Q>,
Q: Hash + Eq,
{
self.0.get_key_value(k).map(|(k, _)| k)
}
/// Returns whether the given key is in the hash set.
#[inline]
pub fn contains<Q: ?Sized>(&self, k: &Q) -> bool
where
K: Borrow<Q>,
Q: Hash + Eq,
{
self.0.contains_key(k)
}
/// Gets the hasher for the underlying hash map.
#[cfg(feature = "alloc")]
#[inline]
pub fn hasher(&self) -> seahash::SeaHasher {
self.0.hasher()
}
/// Returns whether there are no items in the hash set.
#[inline]
pub const fn is_empty(&self) -> bool {
self.0.is_empty()
}
/// Gets an iterator over the keys of the underlying hash map.
#[inline]
pub fn iter(&self) -> Keys<K, ()> {
self.0.keys()
}
/// Resolves an archived hash set from the given length and parameters.
///
/// # Safety
///
/// - `len` must be the number of elements that were serialized
/// - `pos` must be the position of `out` within the archive
/// - `resolver` must be the result of serializing a hash map
#[inline]
pub unsafe fn resolve_from_len(
len: usize,
pos: usize,
resolver: HashSetResolver,
out: *mut Self,
) {
let (fp, fo) = out_field!(out.0);
ArchivedHashMap::resolve_from_len(len, pos + fp, resolver.0, fo);
}
/// Serializes an iterator of keys as a hash set.
///
/// # Safety
///
/// The keys returned by the iterator must be unique.
#[cfg(feature = "alloc")]
#[inline]
pub unsafe fn serialize_from_iter<'a, KU, S, I>(
iter: I,
serializer: &mut S,
) -> Result<HashSetResolver, S::Error>
where
KU: 'a + Serialize<S, Archived = K> + Hash + Eq,
S: Serializer + ScratchSpace + ?Sized,
I: ExactSizeIterator<Item = &'a KU>,
{
Ok(HashSetResolver(ArchivedHashMap::serialize_from_iter(
iter.map(|x| (x, &())),
serializer,
)?))
}
}
impl<K: fmt::Debug> fmt::Debug for ArchivedHashSet<K> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_set().entries(self.iter()).finish()
}
}
/// The resolver for archived hash sets.
pub struct HashSetResolver(HashMapResolver);
impl<K: Hash + Eq> PartialEq for ArchivedHashSet<K> {
#[inline]
fn eq(&self, other: &Self) -> bool {
self.0 == other.0
}
}
impl<K: Hash + Eq> Eq for ArchivedHashSet<K> {}