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
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
use crate::command::Command;
use fixed::types::I5F11;
use num_traits::cast::FromPrimitive;
use std::convert::TryInto;
use thiserror::Error;
#[derive(Error, Debug)]
pub enum CommandError {
#[error("Message is too short")]
MessageShort,
#[error("Category not defined")]
CategoryNotDefined,
#[error("Parameter not defined")]
ParameterNotDefined,
#[error("Not Enough Bytes")]
NotEnoughBytes,
#[error(transparent)]
UTF8Error(#[from] std::string::FromUtf8Error),
}
#[derive(Debug, PartialEq)]
pub enum Operation {
AssignValue,
OffsetValue,
Unknown,
}
impl Operation {
pub fn from_u8(id: u8) -> Self {
match id {
0 => Operation::AssignValue,
1 => Operation::OffsetValue,
_ => Operation::Unknown,
}
}
pub fn id(&self) -> u8 {
match self {
Operation::AssignValue => 0,
Operation::OffsetValue => 1,
Operation::Unknown => 2,
}
}
}
pub trait Parameter {
fn id(&self) -> u8;
fn from_raw(cmd: RawCommand) -> Result<Self, CommandError>
where
Self: Sized;
fn raw_type(&self) -> u8;
fn to_bytes(&self) -> Vec<u8>;
fn normalized_name(&self) -> String;
}
#[derive(Debug)]
pub struct RawCommand {
pub destination_device: u8,
pub command_id: u8,
pub category: u8,
pub parameter: u8,
pub data_type: u8,
pub operation: u8,
pub data: Vec<u8>,
}
impl RawCommand {
pub fn from_raw(data: &[u8]) -> Result<Self, CommandError> {
if data.len() < 8 {
return Err(CommandError::MessageShort);
}
Ok(RawCommand {
destination_device: data[0],
command_id: data[2],
category: data[4],
parameter: data[5],
data_type: data[6],
operation: data[7],
data: data[8..8 + (data[1] - 4) as usize].to_vec(),
})
}
pub fn to_raw(destination: u8, operation: Operation, cmd: &Command) -> Vec<u8> {
let mut v = Vec::new();
let mut data = cmd.to_bytes();
v.push(destination);
v.push(data.len() as u8 + 4);
v.push(0);
v.push(0);
v.push(cmd.id());
v.push(cmd.parameter_id());
v.push(cmd.raw_type());
v.push(operation.id());
v.append(&mut data);
v
}
}
pub trait ParamType {
fn from_bytes(data: &[u8]) -> Result<Self, CommandError>
where
Self: Sized;
fn to_bytes(&self) -> Vec<u8>;
fn data_as_string(&self) -> String;
}
impl ParamType for String {
fn from_bytes(data: &[u8]) -> Result<Self, CommandError> {
Ok(String::from_utf8(data.to_vec())?)
}
fn to_bytes(&self) -> Vec<u8> {
self.as_bytes().to_vec()
}
fn data_as_string(&self) -> String {
self.clone()
}
}
impl ParamType for u8 {
fn from_bytes(data: &[u8]) -> Result<Self, CommandError> {
data.first()
.map(|v| *v as u8)
.ok_or(CommandError::NotEnoughBytes)
}
fn to_bytes(&self) -> Vec<u8> {
self.to_le_bytes().to_vec()
}
fn data_as_string(&self) -> String {
self.to_string()
}
}
impl ParamType for i8 {
fn from_bytes(data: &[u8]) -> Result<Self, CommandError> {
data.first()
.map(|v| *v as i8)
.ok_or(CommandError::NotEnoughBytes)
}
fn to_bytes(&self) -> Vec<u8> {
self.to_le_bytes().to_vec()
}
fn data_as_string(&self) -> String {
self.to_string()
}
}
impl ParamType for i16 {
fn from_bytes(data: &[u8]) -> Result<Self, CommandError> {
data.chunks_exact(2)
.next()
.ok_or(CommandError::NotEnoughBytes)
.map(|x| i16::from_le_bytes(x.try_into().unwrap()))
}
fn to_bytes(&self) -> Vec<u8> {
self.to_le_bytes().to_vec()
}
fn data_as_string(&self) -> String {
self.to_string()
}
}
impl ParamType for i32 {
fn from_bytes(data: &[u8]) -> Result<Self, CommandError> {
data.chunks_exact(4)
.next()
.ok_or(CommandError::NotEnoughBytes)
.map(|x| i32::from_le_bytes(x.try_into().unwrap()))
}
fn to_bytes(&self) -> Vec<u8> {
self.to_le_bytes().to_vec()
}
fn data_as_string(&self) -> String {
self.to_string()
}
}
impl ParamType for i64 {
fn from_bytes(data: &[u8]) -> Result<Self, CommandError> {
data.chunks_exact(8)
.next()
.ok_or(CommandError::NotEnoughBytes)
.map(|x| i64::from_le_bytes(x.try_into().unwrap()))
}
fn to_bytes(&self) -> Vec<u8> {
self.to_le_bytes().to_vec()
}
fn data_as_string(&self) -> String {
self.to_string()
}
}
impl ParamType for f32 {
fn from_bytes(data: &[u8]) -> Result<Self, CommandError> {
data.chunks_exact(8)
.next()
.ok_or(CommandError::NotEnoughBytes)
.map(|x| f32::from(I5F11::from_le_bytes(x.try_into().unwrap())))
}
fn to_bytes(&self) -> Vec<u8> {
I5F11::from_f32(*self).unwrap().to_le_bytes().to_vec()
}
fn data_as_string(&self) -> String {
self.to_string()
}
}
impl<T: ParamType> ParamType for Vec<T> {
fn from_bytes(data: &[u8]) -> Result<Vec<T>, CommandError> {
data.chunks_exact(std::mem::size_of::<T>())
.map(<T as ParamType>::from_bytes)
.collect()
}
fn to_bytes(&self) -> Vec<u8> {
self.iter().flat_map(|x| x.to_bytes()).collect()
}
fn data_as_string(&self) -> String {
let mut out = String::new();
for (index, val) in self.iter().enumerate() {
if index != 0 {
out.push_str(", ");
}
out.push_str(&val.data_as_string());
}
out
}
}