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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
use alloc::boxed::Box;
use alloc::string::{String, ToString};
use alloc::vec::Vec;
use crate::error::Error;
use ::core::result::Result;
use core::mem::{self, size_of};
use core::slice;
use core::str::from_utf8;
macro_rules! impl_num {
($ty:ty, $size:literal, $read_fn:ident, $write_fn:ident) => {
doc_comment! {
concat!("reads ", stringify!($size), " byte(s) from storage file at the given offset and converts it to ", stringify!($ty),"."
),
#[inline]
pub fn $read_fn(&self, offset: u32) -> Result<$ty, Error> {
Ok(<$ty>::from_be_bytes(
self.read(offset, $size)?.try_into().unwrap(),
))
}
}
doc_comment! {
concat!("converts ", stringify!($ty)," to ", stringify!($size), " byte(s) and writes into storage file at the given offset."
),
#[inline]
pub fn $write_fn(&self, offset: u32, value: $ty) -> Result<(), Error> {
self.write(offset, &value.to_be_bytes())
}
}
};
}
pub trait StorageAPI {
fn read(&self, offset: u32, len: u32) -> Result<Vec<u8>, Error>;
fn write(&self, offset: u32, data: &[u8]) -> Result<(), Error>;
}
pub struct Storage {
pub api: Box<dyn StorageAPI>,
}
impl Storage {
pub fn new(api: Box<dyn StorageAPI>) -> Self {
Self { api }
}
impl_num!(u8, 1, read_u8, write_u8);
impl_num!(u16, 2, read_u16, write_u16);
impl_num!(u32, 4, read_u32, write_u32);
impl_num!(u64, 8, read_u64, write_u64);
impl_num!(i8, 1, read_i8, write_i8);
impl_num!(i16, 2, read_i16, write_i16);
impl_num!(i32, 4, read_i32, write_i32);
impl_num!(i64, 8, read_i64, write_i64);
#[inline]
pub fn read_bool(&self, offset: u32) -> Result<bool, Error> {
match self.read_i8(offset)? {
0 => Ok(false),
_ => Ok(true),
}
}
#[inline]
pub fn write_bool(&self, offset: u32, value: bool) -> Result<(), Error> {
match value {
true => self.write_i8(offset, 1),
false => self.write_i8(offset, 0),
}
}
#[inline]
pub fn read_string(&self, offset: u32, max_len: u32) -> Result<String, Error> {
let data = self.read(offset, max_len)?;
let mut iter = data.split(|e| e == &0);
let str = from_utf8(iter.next().unwrap())
.map_err(|_| Error::GenericError("Invalid utf8 character"))?;
Ok(str.to_string())
}
#[inline]
pub fn write_string(&self, offset: u32, value: &str, max_len: u32) -> Result<(), Error> {
let mut data = value.as_bytes();
if data.len() > max_len as usize {
data = &data[0..max_len as usize];
}
self.write(offset, data)
}
pub fn read_struct<T: Sized>(&self, offset: u32) -> Result<T, Error> {
let data = self.read(offset, size_of::<T>() as u32)?;
Ok(unsafe { core::ptr::read(data.as_ptr() as *const _) })
}
pub fn write_struct<T: Sized>(&self, offset: u32, st: &T) -> Result<(), Error> {
let p: *const T = st;
let p: *const u8 = p as *const u8;
let b = unsafe { slice::from_raw_parts(p, mem::size_of::<T>()) };
self.write(offset, b)
}
pub fn read(&self, offset: u32, len: u32) -> Result<Vec<u8>, Error> {
self.api.read(offset, len)
}
pub fn write(&self, offset: u32, data: &[u8]) -> Result<(), Error> {
self.api.write(offset, data)
}
}
#[cfg(test)]
mod tests {
use crate::mock::mock_storage;
#[test]
fn test_negative_integers() {
let mock = mock_storage(15);
mock.write_i8(0, -1).unwrap();
mock.write_i16(1, -2).unwrap();
mock.write_i32(3, -3).unwrap();
mock.write_i64(7, -4).unwrap();
assert_eq!(mock.read_i8(0).unwrap(), -1);
assert_eq!(mock.read_i16(1).unwrap(), -2);
assert_eq!(mock.read_i32(3).unwrap(), -3);
assert_eq!(mock.read_i64(7).unwrap(), -4);
}
#[test]
fn test_unsigned_integers() {
let mock = mock_storage(15);
mock.write_u8(0, 1).unwrap();
mock.write_u16(1, 2).unwrap();
mock.write_u32(3, 3).unwrap();
mock.write_u64(7, 4).unwrap();
assert_eq!(mock.read_u8(0).unwrap(), 1);
assert_eq!(mock.read_u16(1).unwrap(), 2);
assert_eq!(mock.read_u32(3).unwrap(), 3);
assert_eq!(mock.read_u64(7).unwrap(), 4);
}
#[test]
fn test_bool() {
let mock = mock_storage(1);
mock.write_bool(0, true).unwrap();
assert!(mock.read_bool(0).unwrap());
}
#[test]
fn test_struct() {
#[derive(Debug, PartialEq)]
struct Test {
foo: i16,
bar: i8,
zoo: i32,
}
let storage = mock_storage(64);
let foo_1 = Test {
foo: 123,
bar: 7,
zoo: 1024,
};
storage.write_struct::<Test>(13, &foo_1).unwrap();
let foo_2 = storage.read_struct::<Test>(13).unwrap();
assert_eq!(foo_1, foo_2);
}
}