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
119
120
121
122
123
124
125
126
use super::{
elem_type::ImmOrPNode,
interface::{IBoolean, INode, ISelector},
ivalue::IValue,
node_base::{NodeAttributeBase, NodeBase, NodeElementBase},
store::{CacheStore, IntegerId, NodeId, NodeStore, ValueStore},
Device, GenApiError, GenApiResult, ValueCtxt,
};
#[derive(Debug, Clone)]
pub struct BooleanNode {
pub(crate) attr_base: NodeAttributeBase,
pub(crate) elem_base: NodeElementBase,
pub(crate) streamable: bool,
pub(crate) value: ImmOrPNode<IntegerId>,
pub(crate) on_value: i64,
pub(crate) off_value: i64,
pub(crate) p_selected: Vec<NodeId>,
}
impl BooleanNode {
#[must_use]
pub fn value_elem(&self) -> ImmOrPNode<IntegerId> {
self.value
}
#[must_use]
pub fn on_value(&self) -> i64 {
self.on_value
}
#[must_use]
pub fn off_value(&self) -> i64 {
self.off_value
}
#[must_use]
pub fn p_selected(&self) -> &[NodeId] {
&self.p_selected
}
}
impl INode for BooleanNode {
fn node_base(&self) -> NodeBase {
NodeBase::new(&self.attr_base, &self.elem_base)
}
fn streamable(&self) -> bool {
self.streamable
}
}
impl IBoolean for BooleanNode {
#[tracing::instrument(skip(self, device, store, cx),
level = "trace",
fields(node = store.name_by_id(self.node_base().id()).unwrap()))]
fn value<T: ValueStore, U: CacheStore>(
&self,
device: &mut impl Device,
store: &impl NodeStore,
cx: &mut ValueCtxt<T, U>,
) -> GenApiResult<bool> {
let value = self.value.value(device, store, cx)?;
if value == self.on_value {
Ok(true)
} else if value == self.off_value {
Ok(false)
} else {
Err(GenApiError::invalid_node(
"the internal integer value cannot be interpreted as boolean".into(),
))
}
}
#[tracing::instrument(skip(self, device, store, cx),
level = "trace",
fields(node = store.name_by_id(self.node_base().id()).unwrap()))]
fn set_value<T: ValueStore, U: CacheStore>(
&self,
value: bool,
device: &mut impl Device,
store: &impl NodeStore,
cx: &mut ValueCtxt<T, U>,
) -> GenApiResult<()> {
cx.invalidate_cache_by(self.node_base().id());
let value = if value { self.on_value } else { self.off_value };
self.value.set_value(value, device, store, cx)
}
#[tracing::instrument(skip(self, device, store, cx),
level = "trace",
fields(node = store.name_by_id(self.node_base().id()).unwrap()))]
fn is_readable<T: ValueStore, U: CacheStore>(
&self,
device: &mut impl Device,
store: &impl NodeStore,
cx: &mut ValueCtxt<T, U>,
) -> GenApiResult<bool> {
Ok(self.elem_base.is_readable(device, store, cx)?
&& self.value.is_readable(device, store, cx)?)
}
#[tracing::instrument(skip(self, device, store, cx),
level = "trace",
fields(node = store.name_by_id(self.node_base().id()).unwrap()))]
fn is_writable<T: ValueStore, U: CacheStore>(
&self,
device: &mut impl Device,
store: &impl NodeStore,
cx: &mut ValueCtxt<T, U>,
) -> GenApiResult<bool> {
Ok(self.elem_base.is_writable(device, store, cx)?
&& self.value.is_writable(device, store, cx)?)
}
}
impl ISelector for BooleanNode {
fn selecting_nodes(&self, _store: &impl NodeStore) -> GenApiResult<&[NodeId]> {
Ok(self.p_selected())
}
}