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
use core::fmt::{Debug, Error, Formatter};
use core::ops::{Deref, DerefMut};
pub struct Dirty<T> {
value: T,
dirty: bool,
}
impl<T> Dirty<T> {
pub fn new(val: T) -> Dirty<T> {
Dirty {
value: val,
dirty: false,
}
}
pub fn new_dirty(val: T) -> Dirty<T> {
Dirty {
value: val,
dirty: true,
}
}
#[allow(dead_code)]
pub fn dirty(&self) -> bool {
self.dirty
}
pub fn sync(&mut self) {
self.dirty = false;
}
}
impl<T> Deref for Dirty<T> {
type Target = T;
fn deref(&self) -> &T {
&self.value
}
}
impl<T> DerefMut for Dirty<T> {
fn deref_mut(&mut self) -> &mut T {
self.dirty = true;
&mut self.value
}
}
impl<T> Drop for Dirty<T> {
fn drop(&mut self) {
assert!(!self.dirty, "data dirty when dropping");
}
}
impl<T: Debug> Debug for Dirty<T> {
fn fmt(&self, f: &mut Formatter) -> Result<(), Error> {
let tag = if self.dirty { "Dirty" } else { "Clean" };
write!(f, "[{}] {:?}", tag, self.value)
}
}