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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
use crate::prelude::*;
use std::rc::Weak;
use std::hash::{Hash, Hasher};
use crate::property_storage::{WithProperties, PropertyStore};
#[derive(Clone, Debug)]
pub struct CellInstance<C: CoordinateType> {
pub(super) parent_cell_id: CellIndex,
pub(super) id: CellInstId,
pub(super) cell: Weak<Cell<C>>,
pub(super) parent_cell: Weak<Cell<C>>,
pub(super) transform: SimpleTransform<C>,
}
impl<C: CoordinateType> Eq for CellInstance<C> {}
impl<C: CoordinateType> PartialEq for CellInstance<C> {
fn eq(&self, other: &Self) -> bool {
self.id == other.id
&& self.parent_cell_id == other.parent_cell_id
}
}
impl<C: CoordinateType> Hash for CellInstance<C> {
fn hash<H: Hasher>(&self, state: &mut H) {
self.id.hash(state);
self.parent_cell_id.hash(state);
}
}
impl<C: CoordinateType> CellInstance<C> {
pub fn id(&self) -> CellInstId {
self.id
}
pub fn cell(&self) -> Weak<Cell<C>> {
self.cell.clone()
}
pub fn cell_id(&self) -> CellIndex {
self.cell.upgrade().unwrap().index()
}
pub fn parent_cell(&self) -> Weak<Cell<C>> {
self.parent_cell.clone()
}
pub fn get_transform(&self) -> SimpleTransform<C> {
self.transform.clone()
}
}
impl<C: CoordinateType> WithProperties for CellInstance<C> {
type Key = String;
fn with_properties<F, R>(&self, f: F) -> R
where F: FnOnce(Option<&PropertyStore<Self::Key>>) -> R {
f(
self.parent_cell()
.upgrade()
.unwrap()
.instance_properties.borrow()
.get(&self.id())
)
}
fn with_properties_mut<F, R>(&self, f: F) -> R
where F: FnOnce(&mut PropertyStore<Self::Key>) -> R {
f(
self.parent_cell()
.upgrade()
.unwrap()
.instance_properties.borrow_mut()
.entry(self.id())
.or_insert(PropertyStore::default())
)
}
}