-
Notifications
You must be signed in to change notification settings - Fork 105
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
improve the performance of trimming shape run cache #298
base: main
Are you sure you want to change the base?
Changes from all commits
ef2a943
df1b082
d9d2a7f
0085fdb
c665f0f
b140895
a9906da
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -2,7 +2,7 @@ | |||||||||||||||||||||||||||||||||||||||||
use alloc::{string::String, vec::Vec}; | ||||||||||||||||||||||||||||||||||||||||||
use core::ops::Range; | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
use crate::{AttrsOwned, HashMap, ShapeGlyph}; | ||||||||||||||||||||||||||||||||||||||||||
use crate::{AttrsOwned, HashMap, HashSet, ShapeGlyph}; | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
/// Key for caching shape runs. | ||||||||||||||||||||||||||||||||||||||||||
#[derive(Clone, Debug, Hash, PartialEq, Eq)] | ||||||||||||||||||||||||||||||||||||||||||
|
@@ -13,32 +13,71 @@ pub struct ShapeRunKey { | |||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
/// A helper structure for caching shape runs. | ||||||||||||||||||||||||||||||||||||||||||
#[derive(Clone, Default)] | ||||||||||||||||||||||||||||||||||||||||||
#[derive(Clone)] | ||||||||||||||||||||||||||||||||||||||||||
pub struct ShapeRunCache { | ||||||||||||||||||||||||||||||||||||||||||
age: u64, | ||||||||||||||||||||||||||||||||||||||||||
cache: HashMap<ShapeRunKey, (u64, Vec<ShapeGlyph>)>, | ||||||||||||||||||||||||||||||||||||||||||
age_registries: Vec<HashSet<ShapeRunKey>>, | ||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
impl Default for ShapeRunCache { | ||||||||||||||||||||||||||||||||||||||||||
fn default() -> Self { | ||||||||||||||||||||||||||||||||||||||||||
Self { | ||||||||||||||||||||||||||||||||||||||||||
age: 0, | ||||||||||||||||||||||||||||||||||||||||||
cache: Default::default(), | ||||||||||||||||||||||||||||||||||||||||||
#[cfg(not(feature = "std"))] | ||||||||||||||||||||||||||||||||||||||||||
age_registries: alloc::vec![HashSet::default()], | ||||||||||||||||||||||||||||||||||||||||||
#[cfg(feature = "std")] | ||||||||||||||||||||||||||||||||||||||||||
age_registries: vec![HashSet::default()], | ||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
impl ShapeRunCache { | ||||||||||||||||||||||||||||||||||||||||||
/// Get cache item, updating age if found | ||||||||||||||||||||||||||||||||||||||||||
pub fn get(&mut self, key: &ShapeRunKey) -> Option<&Vec<ShapeGlyph>> { | ||||||||||||||||||||||||||||||||||||||||||
self.cache.get_mut(key).map(|(age, glyphs)| { | ||||||||||||||||||||||||||||||||||||||||||
*age = self.age; | ||||||||||||||||||||||||||||||||||||||||||
if *age != self.age { | ||||||||||||||||||||||||||||||||||||||||||
// remove the key from the old age registry | ||||||||||||||||||||||||||||||||||||||||||
let index = (self.age - *age) as usize; | ||||||||||||||||||||||||||||||||||||||||||
self.age_registries[index].remove(key); | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
// update age | ||||||||||||||||||||||||||||||||||||||||||
*age = self.age; | ||||||||||||||||||||||||||||||||||||||||||
// register the key to the new age registry | ||||||||||||||||||||||||||||||||||||||||||
if let Some(keys) = self.age_registries.first_mut() { | ||||||||||||||||||||||||||||||||||||||||||
keys.insert(key.clone()); | ||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||
&*glyphs | ||||||||||||||||||||||||||||||||||||||||||
}) | ||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
/// Insert cache item with current age | ||||||||||||||||||||||||||||||||||||||||||
pub fn insert(&mut self, key: ShapeRunKey, glyphs: Vec<ShapeGlyph>) { | ||||||||||||||||||||||||||||||||||||||||||
if let Some(keys) = self.age_registries.first_mut() { | ||||||||||||||||||||||||||||||||||||||||||
// register the key to the current age | ||||||||||||||||||||||||||||||||||||||||||
keys.insert(key.clone()); | ||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||
self.cache.insert(key, (self.age, glyphs)); | ||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
/// Remove anything in the cache with an age older than keep_ages | ||||||||||||||||||||||||||||||||||||||||||
pub fn trim(&mut self, keep_ages: u64) { | ||||||||||||||||||||||||||||||||||||||||||
self.cache | ||||||||||||||||||||||||||||||||||||||||||
.retain(|_key, (age, _glyphs)| *age + keep_ages >= self.age); | ||||||||||||||||||||||||||||||||||||||||||
// remove the age registries that's greater than kept ages | ||||||||||||||||||||||||||||||||||||||||||
// and remove the keys from cache saved in the registries | ||||||||||||||||||||||||||||||||||||||||||
while self.age_registries.len() as u64 > keep_ages { | ||||||||||||||||||||||||||||||||||||||||||
if let Some(keys) = self.age_registries.pop() { | ||||||||||||||||||||||||||||||||||||||||||
for key in keys { | ||||||||||||||||||||||||||||||||||||||||||
self.cache.remove(&key); | ||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+68
to
+75
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||
// Increase age | ||||||||||||||||||||||||||||||||||||||||||
self.age += 1; | ||||||||||||||||||||||||||||||||||||||||||
// insert a new registry to the front of the Vec | ||||||||||||||||||||||||||||||||||||||||||
// to keep keys for the current age | ||||||||||||||||||||||||||||||||||||||||||
self.age_registries.insert(0, HashSet::default()); | ||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+78
to
+80
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You can potentially reuse a hashset popped earlier. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
|
@@ -47,3 +86,71 @@ impl core::fmt::Debug for ShapeRunCache { | |||||||||||||||||||||||||||||||||||||||||
f.debug_tuple("ShapeRunCache").finish() | ||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
#[cfg(test)] | ||||||||||||||||||||||||||||||||||||||||||
mod test { | ||||||||||||||||||||||||||||||||||||||||||
use crate::{Attrs, AttrsOwned, ShapeRunCache, ShapeRunKey}; | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
#[test] | ||||||||||||||||||||||||||||||||||||||||||
fn test_trim() { | ||||||||||||||||||||||||||||||||||||||||||
let key1 = ShapeRunKey { | ||||||||||||||||||||||||||||||||||||||||||
text: "1".to_string(), | ||||||||||||||||||||||||||||||||||||||||||
default_attrs: AttrsOwned::new(Attrs::new()), | ||||||||||||||||||||||||||||||||||||||||||
attrs_spans: Vec::new(), | ||||||||||||||||||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
let key2 = ShapeRunKey { | ||||||||||||||||||||||||||||||||||||||||||
text: "2".to_string(), | ||||||||||||||||||||||||||||||||||||||||||
default_attrs: AttrsOwned::new(Attrs::new()), | ||||||||||||||||||||||||||||||||||||||||||
attrs_spans: Vec::new(), | ||||||||||||||||||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
let key3 = ShapeRunKey { | ||||||||||||||||||||||||||||||||||||||||||
text: "3".to_string(), | ||||||||||||||||||||||||||||||||||||||||||
default_attrs: AttrsOwned::new(Attrs::new()), | ||||||||||||||||||||||||||||||||||||||||||
attrs_spans: Vec::new(), | ||||||||||||||||||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
let mut cache = ShapeRunCache::default(); | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
cache.insert(key1.clone(), Vec::new()); | ||||||||||||||||||||||||||||||||||||||||||
cache.insert(key2.clone(), Vec::new()); | ||||||||||||||||||||||||||||||||||||||||||
cache.insert(key3.clone(), Vec::new()); | ||||||||||||||||||||||||||||||||||||||||||
// this will trim everything | ||||||||||||||||||||||||||||||||||||||||||
cache.trim(0); | ||||||||||||||||||||||||||||||||||||||||||
assert!(cache.cache.is_empty()); | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
cache.insert(key1.clone(), Vec::new()); | ||||||||||||||||||||||||||||||||||||||||||
cache.insert(key2.clone(), Vec::new()); | ||||||||||||||||||||||||||||||||||||||||||
cache.insert(key3.clone(), Vec::new()); | ||||||||||||||||||||||||||||||||||||||||||
// keep 1 age | ||||||||||||||||||||||||||||||||||||||||||
cache.trim(1); | ||||||||||||||||||||||||||||||||||||||||||
// all was just inserted so all kept | ||||||||||||||||||||||||||||||||||||||||||
assert_eq!(cache.cache.len(), 3); | ||||||||||||||||||||||||||||||||||||||||||
assert_eq!(cache.age_registries.len(), 2); | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
cache.get(&key1); | ||||||||||||||||||||||||||||||||||||||||||
cache.get(&key2); | ||||||||||||||||||||||||||||||||||||||||||
cache.trim(1); | ||||||||||||||||||||||||||||||||||||||||||
// only key1 and key2 was refreshed, so key3 was trimed | ||||||||||||||||||||||||||||||||||||||||||
assert_eq!(cache.cache.len(), 2); | ||||||||||||||||||||||||||||||||||||||||||
assert_eq!(cache.age_registries.len(), 2); | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
cache.get(&key1); | ||||||||||||||||||||||||||||||||||||||||||
cache.trim(1); | ||||||||||||||||||||||||||||||||||||||||||
// only key1 was refreshed, so key2 was trimed | ||||||||||||||||||||||||||||||||||||||||||
assert_eq!(cache.cache.len(), 1); | ||||||||||||||||||||||||||||||||||||||||||
assert_eq!(cache.age_registries.len(), 2); | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
cache.trim(2); | ||||||||||||||||||||||||||||||||||||||||||
// keep 2 ages, so even key1 wasn't refreshed, | ||||||||||||||||||||||||||||||||||||||||||
// it was still kept | ||||||||||||||||||||||||||||||||||||||||||
assert_eq!(cache.cache.len(), 1); | ||||||||||||||||||||||||||||||||||||||||||
assert_eq!(cache.age_registries.len(), 3); | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
cache.trim(2); | ||||||||||||||||||||||||||||||||||||||||||
// key1 is now too old for 2 ages, so it was trimed | ||||||||||||||||||||||||||||||||||||||||||
assert_eq!(cache.cache.len(), 0); | ||||||||||||||||||||||||||||||||||||||||||
assert_eq!(cache.age_registries.len(), 3); | ||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.