This commit is contained in:
AF 2023-05-28 18:20:33 +00:00
parent 1ad533765f
commit 45dbf1a13c
2 changed files with 51 additions and 0 deletions

View File

@ -2,6 +2,7 @@
//! simple static types, which are completely [Context]-independent. //! simple static types, which are completely [Context]-independent.
pub mod atomic_object; pub mod atomic_object;
pub mod au64;
pub mod boolean; pub mod boolean;
pub mod plain; pub mod plain;

50
src/rstd/atomic/au64.rs Normal file
View File

@ -0,0 +1,50 @@
use crate::rstd::inlining::*;
use super::*;
impl Serializable for u64 {
fn serialize(&self, serializer: &mut dyn Serializer) {
serializer.write(&self.to_le_bytes());
}
}
#[derive(Debug, PartialEq)]
pub enum IntParseError {
Eof,
ExtraData(usize),
}
impl Display for IntParseError {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
match self {
Self::Eof => f.write_fmt(format_args!("encountered EOF write parsing an integer.")),
Self::ExtraData(length) => f.write_fmt(format_args!(
"encountered extra data of length {length} while parsing an integer.",
)),
}
}
}
impl Error for IntParseError {}
impl From<&[u8]> for IntParseError {
fn from(_value: &[u8]) -> Self {
Self::Eof
}
}
impl Atomic for u64 {
type AParseError = IntParseError;
fn a_deserialize(deserializer: &mut dyn Deserializer) -> Result<Self, Self::AParseError> {
Ok(u64::from_le_bytes(deserializer.read_n_const::<8>()?))
}
fn a_unexpected_tail(tail: &[u8]) -> Self::AParseError {
IntParseError::ExtraData(tail.len())
}
}
impl ConstSizeAtomic for u64 {
const SIZE: usize = 8;
}