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
64
65
66
67
68
69
70
71
72
73
74
75
76
use std::{
collections::HashMap,
time::{Duration, SystemTime},
};
use url::Url;
#[derive(Debug, Default, Clone, PartialEq)]
#[cfg_attr(feature = "serde-1", derive(serde::Serialize, serde::Deserialize))]
pub struct Cache {
entries: HashMap<Url, CacheEntry>,
}
impl Cache {
pub fn new() -> Self { Cache::default() }
pub fn lookup(&self, url: &Url) -> Option<&CacheEntry> {
self.entries.get(url)
}
pub fn insert(&mut self, url: Url, entry: CacheEntry) {
self.entries.insert(url, entry);
}
pub fn url_is_still_valid(&self, url: &Url, timeout: Duration) -> bool {
if let Some(entry) = self.lookup(url) {
if entry.valid {
if let Ok(time_since_check_was_done) = entry.timestamp.elapsed()
{
return time_since_check_was_done < timeout;
}
}
}
false
}
pub fn iter(&self) -> impl Iterator<Item = (&Url, &CacheEntry)> + '_ {
self.entries.iter()
}
pub fn clear(&mut self) { self.entries.clear(); }
}
impl Extend<(Url, CacheEntry)> for Cache {
fn extend<T: IntoIterator<Item = (Url, CacheEntry)>>(&mut self, iter: T) {
self.entries.extend(iter);
}
}
#[derive(Debug, Copy, Clone, PartialEq)]
#[cfg_attr(feature = "serde-1", derive(serde::Serialize, serde::Deserialize))]
pub struct CacheEntry {
pub timestamp: SystemTime,
pub valid: bool,
}
impl CacheEntry {
pub const fn new(timestamp: SystemTime, valid: bool) -> Self {
CacheEntry { timestamp, valid }
}
}