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
use bincode::Error as BincodeError;
use std::convert::From;
use tinysearch_cuckoofilter::{self, CuckooFilter, ExportedCuckooFilter};
use std::collections::hash_map::DefaultHasher;
use std::collections::{HashMap, HashSet};
pub type PostId = (String, String);
pub type Filters = HashMap<PostId, CuckooFilter<DefaultHasher>>;
type ExportedFilters = HashMap<PostId, ExportedCuckooFilter>;
pub struct Storage {
pub filters: Filters,
}
impl From<Filters> for Storage {
fn from(filters: Filters) -> Self {
Storage { filters }
}
}
pub trait Score {
fn score(&self, terms: &HashSet<String>) -> u32;
}
impl Score for CuckooFilter<DefaultHasher> {
fn score(&self, terms: &HashSet<String>) -> u32 {
terms
.iter()
.filter(|term| self.contains(&term.to_lowercase()))
.count() as u32
}
}
impl Storage {
pub fn to_bytes(&self) -> Result<Vec<u8>, BincodeError> {
let encoded: Vec<u8> = bincode::serialize(&self.dehydrate())?;
Ok(encoded)
}
pub fn from_bytes(bytes: &[u8]) -> Result<Self, BincodeError> {
let decoded: ExportedFilters = bincode::deserialize(bytes)?;
Ok(Storage {
filters: Storage::hydrate(decoded),
})
}
fn dehydrate(&self) -> ExportedFilters {
self.filters
.iter()
.map(|(key, filter)| (key.clone(), filter.export()))
.collect()
}
fn hydrate(exported_filters: ExportedFilters) -> Filters {
exported_filters
.into_iter()
.map(|(key, exported)| (key.clone(), CuckooFilter::<DefaultHasher>::from(exported)))
.collect()
}
}