refactors and improvements to tests

Signed-off-by: Erik Hollensbe <git@hollensbe.org>
This commit is contained in:
Erik Hollensbe 2022-04-18 00:44:25 -07:00
parent 8dac9ccf07
commit 544420695b
No known key found for this signature in database
GPG key ID: 4BB0E241A863B389

View file

@ -123,27 +123,18 @@ where
#[inline(always)] #[inline(always)]
pub fn as_bytes(&self) -> Box<Vec<u8>> { pub fn as_bytes(&self) -> Box<Vec<u8>> {
let len: usize = BUCKETS * 4 + BUCKETS + BUCKETS * std::mem::size_of::<T>(); let check_hash_len = BUCKETS * 4;
let t_len = BUCKETS * std::mem::size_of::<T>();
let len = check_hash_len + BUCKETS + t_len;
let mut buf = Box::new(Vec::with_capacity(len)); let mut buf = Box::new(Vec::with_capacity(len));
buf.resize(len, 0);
// we can probably make this faster let byt = buf.as_bytes_mut();
for b in self.check_hash.iter() { byt[0..check_hash_len].copy_from_slice(self.check_hash.as_bytes());
for b2 in b.as_bytes() { byt[check_hash_len..BUCKETS + check_hash_len].copy_from_slice(self.count.as_bytes());
buf.push(*b2) byt[len - t_len..len].copy_from_slice(self.key.as_bytes());
}
}
for b in self.count.iter() {
buf.push(*b as u8)
}
for b in self.key.iter() {
for b2 in b.as_bytes() {
buf.push(*b2)
}
}
buf buf
} }
@ -170,28 +161,15 @@ where
{ {
let mut tmp = Self::new(); let mut tmp = Self::new();
// FIXME much easier ways to do this with the copy methods; probably ripe for a
// refactor
let mut i = 0; let mut i = 0;
let mut y = 0;
for _ in 0..BUCKETS { tmp.check_hash.as_bytes_mut().copy_from_slice(&b[0..BUCKETS * 4]);
tmp.check_hash.push((b[y] as u32) << 3 | (b[y + 1] as u32) << 2 | (b[y + 2] as u32) << 1 | b[y + 3] as u32); i += BUCKETS * 4;
y += 4;
}
i *= BUCKETS * 4;
for y in 0..BUCKETS {
tmp.count.push(b[y + i] as i8);
}
tmp.count.as_bytes_mut().copy_from_slice(&b[i..i + BUCKETS]);
i += BUCKETS; i += BUCKETS;
for y in 0..BUCKETS { tmp.key.as_bytes_mut().copy_from_slice(&b[i..i + std::mem::size_of::<T>() * BUCKETS]);
let byt = &b[(y * i)..(y * i + std::mem::size_of::<T>())];
tmp.key.push(T::read_from(byt).unwrap());
}
Some(tmp) Some(tmp)
} }
@ -211,7 +189,7 @@ where
self.key.resize(BUCKETS, Default::default()); self.key.resize(BUCKETS, Default::default());
} }
pub(crate) fn ins_rem(&mut self, key: T, delta: i8) { pub(crate) fn ins_rem(&mut self, key: &T, delta: i8) {
let check_hash = crc32fast::hash(key.as_bytes()); let check_hash = crc32fast::hash(key.as_bytes());
let mut iteration_index = u32::from_le(check_hash).wrapping_add(1); let mut iteration_index = u32::from_le(check_hash).wrapping_add(1);
for _ in 0..(HASHES as u64) { for _ in 0..(HASHES as u64) {
@ -226,14 +204,14 @@ where
/// Insert a set item into this set. /// Insert a set item into this set.
/// This will panic if the slice is smaller than ITEM_BYTES. /// This will panic if the slice is smaller than ITEM_BYTES.
#[inline(always)] #[inline(always)]
pub fn insert(&mut self, key: T) { pub fn insert(&mut self, key: &T) {
self.ins_rem(key, 1); self.ins_rem(key, 1);
} }
/// Insert a set item into this set. /// Insert a set item into this set.
/// This will panic if the slice is smaller than ITEM_BYTES. /// This will panic if the slice is smaller than ITEM_BYTES.
#[inline(always)] #[inline(always)]
pub fn remove(&mut self, key: T) { pub fn remove(&mut self, key: &T) {
self.ins_rem(key, -1); self.ins_rem(key, -1);
} }
@ -348,6 +326,15 @@ mod tests {
assert!(actual.eq(&expected)); assert!(actual.eq(&expected));
} }
fn typical_iblt() -> IBLT<[u8; 32], 16, 3> {
// Typical case
let mut tmp = IBLT::<[u8; 32], 16, 3>::new();
tmp.check_hash.fill(0x01010101);
tmp.count.fill(1);
tmp.key.iter_mut().for_each(|x| x.fill(1));
tmp
}
#[test] #[test]
fn check_xor_with() { fn check_xor_with() {
check_xor_with2::<128>(); check_xor_with2::<128>();
@ -373,11 +360,7 @@ mod tests {
#[test] #[test]
fn struct_packing() { fn struct_packing() {
// Typical case let tmp = typical_iblt();
let mut tmp = IBLT::<[u8; 32], 16, 3>::new();
tmp.check_hash.fill(0x01010101);
tmp.count.fill(1);
tmp.key.iter_mut().for_each(|x| x.fill(1));
assert!(tmp.as_bytes().iter().all(|x| *x == 1)); assert!(tmp.as_bytes().iter().all(|x| *x == 1));
// Pathological alignment case #1 // Pathological alignment case #1
@ -416,7 +399,7 @@ mod tests {
for _ in 0..count { for _ in 0..count {
rn = rn.wrapping_add(splitmix64(rn as u64) as u128); rn = rn.wrapping_add(splitmix64(rn as u64) as u128);
expected.insert(rn); expected.insert(rn);
test.insert(rn.to_le_bytes()); test.insert(&rn.to_le_bytes());
} }
let mut list_count = 0; let mut list_count = 0;
@ -439,8 +422,8 @@ mod tests {
const LENGTH: usize = 16; const LENGTH: usize = 16;
let mut rn: u128 = 0xd3b07384d113edec49eaa6238ad5ff00; let mut rn: u128 = 0xd3b07384d113edec49eaa6238ad5ff00;
let mut missing_count = 1024; let mut missing_count = 1024;
let mut missing: Box<HashSet<u128>> = Box::new(HashSet::with_capacity(CAPACITY * 2)); let mut missing: HashSet<u128> = HashSet::with_capacity(CAPACITY * 2);
let mut all: Box<HashSet<u128>> = Box::new(HashSet::with_capacity(REMOTE_SIZE)); let mut all: HashSet<u128> = HashSet::with_capacity(REMOTE_SIZE);
while missing_count <= CAPACITY { while missing_count <= CAPACITY {
missing.clear(); missing.clear();
all.clear(); all.clear();
@ -452,11 +435,11 @@ mod tests {
rn = rn.wrapping_add(splitmix64(rn as u64) as u128); rn = rn.wrapping_add(splitmix64(rn as u64) as u128);
if all.insert(rn) { if all.insert(rn) {
if k >= missing_count { if k >= missing_count {
local.insert(rn.to_le_bytes()); local.insert(&rn.to_le_bytes());
} else { } else {
missing.insert(rn); missing.insert(rn);
} }
remote.insert(rn.to_le_bytes()); remote.insert(&rn.to_le_bytes());
k += 1; k += 1;
} }
} }
@ -514,55 +497,50 @@ mod tests {
let mut zero = Box::new(IBLT::<TestType, CAPACITY, HASHES>::new()); let mut zero = Box::new(IBLT::<TestType, CAPACITY, HASHES>::new());
for _ in 0..CAPACITY { for _ in 0..CAPACITY {
zero.insert(TestType::zeroed()); zero.insert(&TestType::zeroed());
full.insert(TestType::new()); full.insert(&TestType::new());
} }
full.subtract(&zero); zero.subtract(&full);
zero.list(|item, new| { zero.list(|item, new| {
if !new { if new {
assert_eq!(item, TestType::zeroed()); assert_eq!(item, TestType::zeroed());
} else {
assert_ne!(item, TestType::zeroed());
} }
}); });
zero.reset(); zero.reset();
full.reset();
for _ in 0..CAPACITY { for _ in 0..CAPACITY {
zero.insert(TestType::zeroed()); zero.insert(&TestType::zeroed());
full.insert(&TestType::new());
} }
zero.subtract(&full); full.subtract(&zero);
full.list(|item, new| { full.list(|item, new| {
if !new { if new {
assert_ne!(item, TestType::zeroed()); assert_ne!(item, TestType::zeroed());
} else {
assert_eq!(item, TestType::zeroed());
} }
}); });
} }
#[test] #[test]
fn test_to_from_bytes() { fn test_to_from_bytes() {
// Typical case let tmp = typical_iblt();
let mut tmp = IBLT::<[u8; 32], 16, 3>::new();
tmp.check_hash.fill(0x01010101);
tmp.count.fill(1);
tmp.key.iter_mut().for_each(|x| x.fill(1));
let mut tmp2 = IBLT::<[u8; 32], 16, 3>::from_bytes(tmp.as_bytes()).unwrap(); let mut tmp2 = IBLT::<[u8; 32], 16, 3>::from_bytes(tmp.as_bytes()).unwrap();
tmp2.subtract(&tmp); tmp2.subtract(&tmp);
tmp2.list(|_, new| assert!(!new)); tmp2.list(|_, new| assert!(!new));
} }
#[test] #[test]
fn test_clone() { fn test_clone() {
// Typical case let tmp = typical_iblt();
let mut tmp = IBLT::<[u8; 32], 16, 3>::new();
tmp.check_hash.fill(0x01010101);
tmp.count.fill(1);
tmp.key.iter_mut().for_each(|x| x.fill(1));
let mut tmp2 = tmp.clone(); let mut tmp2 = tmp.clone();
tmp2.subtract(&tmp); tmp2.subtract(&tmp);