risingwave_common_estimate_size/collections/
hashset.rs1use std::collections::HashSet;
16use std::hash::Hash;
17
18use super::EstimatedVec;
19use crate::{EstimateSize, KvSize};
20
21#[derive(Default)]
22pub struct EstimatedHashSet<T: EstimateSize> {
23 inner: HashSet<T>,
24 heap_size: KvSize,
25}
26
27impl<T: EstimateSize> EstimateSize for EstimatedHashSet<T> {
28 fn estimated_heap_size(&self) -> usize {
29 self.heap_size.size()
32 }
33}
34
35impl<T: EstimateSize> EstimatedHashSet<T>
36where
37 T: Eq + Hash,
38{
39 pub fn insert(&mut self, value: T) -> bool {
41 let heap_size = self.heap_size.add_val(&value);
42 let inserted = self.inner.insert(value);
43 if inserted {
44 self.heap_size.set(heap_size);
45 }
46 inserted
47 }
48
49 pub fn remove(&mut self, value: &T) -> bool {
51 let removed = self.inner.remove(value);
52 if removed {
53 self.heap_size.sub_val(value);
54 }
55 removed
56 }
57
58 pub fn from_vec(v: EstimatedVec<T>) -> Self {
61 let heap_size = v.estimated_heap_size();
62 Self {
63 inner: HashSet::from_iter(v),
64 heap_size: KvSize::with_size(heap_size),
65 }
66 }
67}
68
69impl<T: EstimateSize> EstimatedHashSet<T> {
70 pub fn iter(&self) -> impl Iterator<Item = &T> {
71 self.inner.iter()
72 }
73}