use super::{
elem_type::ImmOrPNode,
interface::{INode, IString},
ivalue::IValue,
node_base::{NodeAttributeBase, NodeBase, NodeElementBase},
store::{CacheStore, NodeStore, StringId, ValueStore},
Device, GenApiResult, ValueCtxt,
};
#[derive(Debug, Clone)]
pub struct StringNode {
pub(crate) attr_base: NodeAttributeBase,
pub(crate) elem_base: NodeElementBase,
pub(crate) streamable: bool,
pub(crate) value: ImmOrPNode<StringId>,
}
impl StringNode {
#[must_use]
pub fn streamable(&self) -> bool {
self.streamable
}
#[must_use]
pub fn value_elem(&self) -> ImmOrPNode<StringId> {
self.value
}
}
impl INode for StringNode {
fn node_base(&self) -> NodeBase {
NodeBase::new(&self.attr_base, &self.elem_base)
}
fn streamable(&self) -> bool {
self.streamable
}
}
impl IString for StringNode {
#[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<String> {
self.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 set_value<T: ValueStore, U: CacheStore>(
&self,
value: String,
device: &mut impl Device,
store: &impl NodeStore,
cx: &mut ValueCtxt<T, U>,
) -> GenApiResult<()> {
cx.invalidate_cache_by(self.node_base().id());
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 max_length<T: ValueStore, U: CacheStore>(
&self,
device: &mut impl Device,
store: &impl NodeStore,
cx: &mut ValueCtxt<T, U>,
) -> GenApiResult<i64> {
match self.value {
ImmOrPNode::Imm(_) => Ok(i64::MAX),
ImmOrPNode::PNode(nid) => nid
.expect_istring_kind(store)?
.max_length(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)?)
}
}