use super::{
elem_type::{Endianness, IntegerRepresentation, Sign},
interface::{IInteger, INode, IRegister, ISelector, IncrementMode},
node_base::{NodeAttributeBase, NodeBase},
register_base::RegisterBase,
store::{CacheStore, NodeId, NodeStore, ValueStore},
utils, Device, GenApiError, GenApiResult, ValueCtxt,
};
#[derive(Debug, Clone)]
pub struct IntRegNode {
pub(crate) attr_base: NodeAttributeBase,
pub(crate) register_base: RegisterBase,
pub(crate) sign: Sign,
pub(crate) endianness: Endianness,
pub(crate) unit: Option<String>,
pub(crate) representation: IntegerRepresentation,
pub(crate) p_selected: Vec<NodeId>,
}
impl IntRegNode {
#[must_use]
pub fn register_base(&self) -> &RegisterBase {
&self.register_base
}
#[must_use]
pub fn sign(&self) -> Sign {
self.sign
}
#[must_use]
pub fn endianness(&self) -> Endianness {
self.endianness
}
#[must_use]
pub fn unit_elem(&self) -> Option<&str> {
self.unit.as_deref()
}
#[must_use]
pub fn representation_elem(&self) -> IntegerRepresentation {
self.representation
}
#[must_use]
pub fn p_selected(&self) -> &[NodeId] {
&self.p_selected
}
}
impl INode for IntRegNode {
fn node_base(&self) -> NodeBase {
let elem_base = &self.register_base.elem_base;
NodeBase::new(&self.attr_base, elem_base)
}
fn streamable(&self) -> bool {
self.register_base().streamable()
}
}
impl IInteger for IntRegNode {
#[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<i64> {
let nid = self.node_base().id();
let reg = self.register_base();
reg.with_cache_or_read(nid, device, store, cx, |data| {
utils::int_from_slice(data, self.endianness, self.sign)
})
}
#[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: i64,
device: &mut impl Device,
store: &impl NodeStore,
cx: &mut ValueCtxt<T, U>,
) -> GenApiResult<()> {
let nid = self.node_base().id();
cx.invalidate_cache_by(nid);
let reg = self.register_base();
let len = reg.length(device, store, cx)?;
let mut buf = vec![0; len as usize];
utils::bytes_from_int(value, &mut buf, self.endianness, self.sign)?;
reg.write_and_cache(nid, &buf, device, store, cx)?;
Ok(())
}
fn min<T: ValueStore, U: CacheStore>(
&self,
_: &mut impl Device,
_: &impl NodeStore,
_: &mut ValueCtxt<T, U>,
) -> GenApiResult<i64> {
match self.sign {
Sign::Signed => Ok(i64::MIN),
Sign::Unsigned => Ok(0),
}
}
fn max<T: ValueStore, U: CacheStore>(
&self,
_: &mut impl Device,
_: &impl NodeStore,
_: &mut ValueCtxt<T, U>,
) -> GenApiResult<i64> {
Ok(i64::MAX)
}
fn inc_mode(&self, _: &impl NodeStore) -> Option<IncrementMode> {
None
}
fn inc<T: ValueStore, U: CacheStore>(
&self,
_: &mut impl Device,
_: &impl NodeStore,
_: &mut ValueCtxt<T, U>,
) -> GenApiResult<Option<i64>> {
Ok(None)
}
fn valid_value_set(&self, _: &impl NodeStore) -> &[i64] {
&[]
}
fn representation(&self, _: &impl NodeStore) -> IntegerRepresentation {
self.representation_elem()
}
fn unit(&self, _: &impl NodeStore) -> Option<&str> {
self.unit_elem()
}
#[tracing::instrument(skip(self, store),
level = "trace",
fields(node = store.name_by_id(self.node_base().id()).unwrap()))]
fn set_min<T: ValueStore, U: CacheStore>(
&self,
_: i64,
_: &mut impl Device,
store: &impl NodeStore,
_: &mut ValueCtxt<T, U>,
) -> GenApiResult<()> {
Err(GenApiError::not_writable())
}
#[tracing::instrument(skip(self, store),
level = "trace",
fields(node = store.name_by_id(self.node_base().id()).unwrap()))]
fn set_max<T: ValueStore, U: CacheStore>(
&self,
_: i64,
_: &mut impl Device,
store: &impl NodeStore,
_: &mut ValueCtxt<T, U>,
) -> GenApiResult<()> {
Err(GenApiError::not_writable())
}
fn is_readable<T: ValueStore, U: CacheStore>(
&self,
device: &mut impl Device,
store: &impl NodeStore,
cx: &mut ValueCtxt<T, U>,
) -> GenApiResult<bool> {
self.register_base().is_readable(device, store, cx)
}
fn is_writable<T: ValueStore, U: CacheStore>(
&self,
device: &mut impl Device,
store: &impl NodeStore,
cx: &mut ValueCtxt<T, U>,
) -> GenApiResult<bool> {
self.register_base().is_writable(device, store, cx)
}
}
impl IRegister for IntRegNode {
fn read<T: ValueStore, U: CacheStore>(
&self,
buf: &mut [u8],
device: &mut impl Device,
store: &impl NodeStore,
cx: &mut ValueCtxt<T, U>,
) -> GenApiResult<()> {
let address = self.address(device, store, cx)?;
let length = self.length(device, store, cx)?;
self.register_base().read_and_cache(
self.node_base().id(),
address,
length,
buf,
device,
store,
cx,
)
}
fn write<T: ValueStore, U: CacheStore>(
&self,
buf: &[u8],
device: &mut impl Device,
store: &impl NodeStore,
cx: &mut ValueCtxt<T, U>,
) -> GenApiResult<()> {
self.register_base()
.write_and_cache(self.node_base().id(), buf, device, store, cx)
}
fn address<T: ValueStore, U: CacheStore>(
&self,
device: &mut impl Device,
store: &impl NodeStore,
cx: &mut ValueCtxt<T, U>,
) -> GenApiResult<i64> {
self.register_base().address(device, store, cx)
}
fn length<T: ValueStore, U: CacheStore>(
&self,
device: &mut impl Device,
store: &impl NodeStore,
cx: &mut ValueCtxt<T, U>,
) -> GenApiResult<i64> {
self.register_base().length(device, store, cx)
}
}
impl ISelector for IntRegNode {
fn selecting_nodes(&self, _: &impl NodeStore) -> GenApiResult<&[NodeId]> {
Ok(self.p_selected())
}
}