pub trait Transfer<W> {
type Error;
fn try_transfer<'w>(&mut self, words: &'w mut [W]) -> Result<&'w [W], Self::Error>;
}
pub trait Write<W> {
type Error;
fn try_write(&mut self, words: &[W]) -> Result<(), Self::Error>;
}
pub trait WriteIter<W> {
type Error;
fn try_write_iter<WI>(&mut self, words: WI) -> Result<(), Self::Error>
where
WI: IntoIterator<Item = W>;
}
pub mod transfer {
pub trait Default<W>: crate::spi::FullDuplex<W> {}
impl<W, S> crate::blocking::spi::Transfer<W> for S
where
S: Default<W>,
W: Clone,
{
type Error = S::Error;
fn try_transfer<'w>(&mut self, words: &'w mut [W]) -> Result<&'w [W], S::Error> {
for word in words.iter_mut() {
nb::block!(self.try_send(word.clone()))?;
*word = nb::block!(self.try_read())?;
}
Ok(words)
}
}
}
pub mod write {
pub trait Default<W>: crate::spi::FullDuplex<W> {}
impl<W, S> crate::blocking::spi::Write<W> for S
where
S: Default<W>,
W: Clone,
{
type Error = S::Error;
fn try_write(&mut self, words: &[W]) -> Result<(), S::Error> {
for word in words {
nb::block!(self.try_send(word.clone()))?;
nb::block!(self.try_read())?;
}
Ok(())
}
}
}
pub mod write_iter {
pub trait Default<W>: crate::spi::FullDuplex<W> {}
impl<W, S> crate::blocking::spi::WriteIter<W> for S
where
S: Default<W>,
W: Clone,
{
type Error = S::Error;
fn try_write_iter<WI>(&mut self, words: WI) -> Result<(), S::Error>
where
WI: IntoIterator<Item = W>,
{
for word in words.into_iter() {
nb::block!(self.try_send(word.clone()))?;
nb::block!(self.try_read())?;
}
Ok(())
}
}
}
#[derive(Debug, PartialEq)]
pub enum Operation<'a, W: 'static> {
Write(&'a [W]),
Transfer(&'a mut [W]),
}
pub trait Transactional<W: 'static> {
type Error;
fn try_exec<'a>(&mut self, operations: &mut [Operation<'a, W>]) -> Result<(), Self::Error>;
}
pub mod transactional {
use super::{Operation, Transfer, Write};
pub trait Default<W>: Write<W> + Transfer<W> {}
impl<W: 'static, E, S> super::Transactional<W> for S
where
S: self::Default<W> + Write<W, Error = E> + Transfer<W, Error = E>,
W: Copy + Clone,
{
type Error = E;
fn try_exec<'a>(&mut self, operations: &mut [super::Operation<'a, W>]) -> Result<(), E> {
for op in operations {
match op {
Operation::Write(w) => self.try_write(w)?,
Operation::Transfer(t) => self.try_transfer(t).map(|_| ())?,
}
}
Ok(())
}
}
}