Xor8

Struct Xor8 

Source
pub struct Xor8<H = BuildHasherDefault>
where H: BuildHasher,
{ pub hash_builder: H, pub seed: u64, pub block_length: u32, pub finger_prints: Vec<u8>, /* private fields */ }
Expand description

Type Xor8 is probabilistic data-structure to test membership of an element in a set.

This implementation has a false positive rate of about 0.3% and a memory usage of less than 9 bits per entry for sizeable sets.

Xor8 is parametrized over type H which is expected to implement BuildHasher trait, like types RandomState and BuildHasherDefault. When not supplied, BuildHasherDefault is used as the default hash-builder.

If RandomState is used as BuildHasher, std has got this to say

A particular instance RandomState will create the same instances of Hasher, but the hashers created by two different RandomState instances are unlikely to produce the same result for the same values._

If DefaultHasher is used as BuildHasher, std has got this to say,

The internal algorithm is not specified, and so its hashes should not be relied upon over releases.

The default type for parameter H might change when a reliable and commonly used BuildHasher type is available.

Fields§

§hash_builder: H§seed: u64§block_length: u32§finger_prints: Vec<u8>

Implementations§

Source§

impl<H> Xor8<H>
where H: BuildHasher,

Source

pub fn new() -> Self
where H: Default,

New Xor8 instance initialized with DefaultHasher.

Source

pub fn with_hasher(hash_builder: H) -> Self

New Xor8 instance initialized with supplied hasher.

Source§

impl<H> Xor8<H>
where H: BuildHasher,

Source

pub fn insert<K: ?Sized + Hash>(&mut self, key: &K)

Insert 64-bit digest of a single key. Digest for the key shall be generated using the default-hasher or via hasher supplied via Xor8::with_hasher method.

Source

pub fn populate<K: Hash>(&mut self, keys: &[K])

Populate with 64-bit digests for a collection of keys of type K. Digest for key shall be generated using the default-hasher or via hasher supplied via Xor8::with_hasher method.

Source

pub fn populate_keys(&mut self, digests: &[u64])

Populate with pre-compute collection of 64-bit digests.

Source

pub fn build(&mut self) -> Result<()>

Build bitmap for keys that where previously inserted using Xor8::insert, Xor8::populate and Xor8::populate_keys method.

Source

pub fn build_keys(&mut self, digests: &[u64]) -> Result<()>

Build a bitmap for pre-computed 64-bit digests for keys. If keys where previously inserted using Xor8::insert or Xor8::populate or Xor8::populate_keys methods, they shall be ignored.

It is upto the caller to ensure that digests are unique, that there no duplicates.

Source§

impl<H> Xor8<H>
where H: BuildHasher,

Source

pub fn contains<K: ?Sized + Hash>(&self, key: &K) -> bool

Contains tell you whether the key is likely part of the set, with false positive rate.

Source

pub fn contains_key(&self, digest: u64) -> bool

Contains tell you whether the key, as pre-computed digest form, is likely part of the set, with false positive rate.

Source§

impl<H> Xor8<H>
where H: Into<Vec<u8>> + From<Vec<u8>> + BuildHasher,

Implements serialization and de-serialization logic for Xor8. This is still work in progress, refer to issue: https://github.com/bnclabs/xorfilter/issues/1 in github.

Source

pub fn write_file(&self, path: &OsStr) -> Result<usize>
where H: Clone,

Write to file in binary format TODO Add chechsum of finger_prints into file headers

Source

pub fn read_file(path: &OsStr) -> Result<Self>
where H: Default,

Read from file in binary format

Source

pub fn to_bytes(&self) -> Vec<u8>
where H: Clone,

Source

pub fn from_bytes(buf: Vec<u8>) -> Result<Self>
where H: Default,

Trait Implementations§

Source§

impl<H> Default for Xor8<H>
where H: BuildHasher + Default,

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl<H> PartialEq for Xor8<H>
where H: BuildHasher,

Source§

fn eq(&self, other: &Self) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.

Auto Trait Implementations§

§

impl<H> Freeze for Xor8<H>
where H: Freeze,

§

impl<H> RefUnwindSafe for Xor8<H>
where H: RefUnwindSafe,

§

impl<H> Send for Xor8<H>
where H: Send,

§

impl<H> Sync for Xor8<H>
where H: Sync,

§

impl<H> Unpin for Xor8<H>
where H: Unpin,

§

impl<H> UnwindSafe for Xor8<H>
where H: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.