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
use serde::{Deserialize, Serialize};
/// Protocol-level command enum. 1:1 map from `RequestOp`.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub enum PortCommand {
Int32Read,
Int32Write {
value: i32,
},
Int64Read,
Int64Write {
value: i64,
},
Float64Read,
Float64Write {
value: f64,
},
OctetRead {
buf_size: usize,
},
OctetWrite {
data: Vec<u8>,
},
OctetWriteRead {
data: Vec<u8>,
buf_size: usize,
/// Flush the input buffer before the write (asynOctetSyncIO::writeRead)
/// vs raw write-then-read (devAsynOctet command-response). See
/// [`crate::request::RequestOp::OctetWriteRead`].
flush: bool,
},
/// Binary octet write with the driver's output EOS suppressed
/// (asynRecord binary output, asynRecord.c:1528-1541).
OctetWriteBinary {
data: Vec<u8>,
},
/// Binary octet read with the driver's input EOS suppressed
/// (asynRecord binary input, asynRecord.c:1564-1577).
OctetReadBinary {
buf_size: usize,
},
UInt32DigitalRead {
mask: u32,
},
UInt32DigitalWrite {
value: u32,
mask: u32,
},
EnumRead,
EnumWrite {
index: usize,
},
Int32ArrayRead {
max_elements: usize,
},
Int32ArrayWrite {
data: Vec<i32>,
},
Float64ArrayRead {
max_elements: usize,
},
Float64ArrayWrite {
data: Vec<f64>,
},
Int8ArrayRead {
max_elements: usize,
},
Int8ArrayWrite {
data: Vec<i8>,
},
Int16ArrayRead {
max_elements: usize,
},
Int16ArrayWrite {
data: Vec<i16>,
},
Int64ArrayRead {
max_elements: usize,
},
Int64ArrayWrite {
data: Vec<i64>,
},
Float32ArrayRead {
max_elements: usize,
},
Float32ArrayWrite {
data: Vec<f32>,
},
Flush,
Connect,
Disconnect,
/// `ASYN_DESTRUCTIBLE` port shutdown — C asynManager.c:2251.
ShutdownPort,
ConnectAddr,
DisconnectAddr,
EnableAddr,
DisableAddr,
/// Port-wide enable / disable (C parity:
/// `pasynManager->enable(pasynUser, value)`).
SetEnable {
yes: bool,
},
/// Port-wide auto-connect toggle (C parity:
/// `pasynManager->autoConnect(pasynUser, value)`).
SetAutoConnect {
yes: bool,
},
GetBoundsInt32,
GetBoundsInt64,
/// Query whether the port is currently enabled.
GetEnable,
/// Query whether auto-connect is enabled for the port.
GetAutoConnect,
BlockProcess,
UnblockProcess,
DrvUserCreate {
drv_info: String,
/// The record's asyn `addr` (C `drvUserCreate` `checkOffset` input).
addr: i32,
},
CallParamCallbacks {
addr: i32,
},
GetOption {
key: String,
},
SetOption {
key: String,
value: String,
},
/// Driver `report(level)` invocation — iocsh `asynReport`.
Report {
level: i32,
},
/// Set input EOS bytes — C `pasynOctet->setInputEos` /
/// asynRecord IEOS.
SetInputEos {
eos: Vec<u8>,
},
/// Set output EOS bytes — C `pasynOctet->setOutputEos` /
/// asynRecord OEOS.
SetOutputEos {
eos: Vec<u8>,
},
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn serde_roundtrip_all_variants() {
let commands = vec![
PortCommand::Int32Read,
PortCommand::Int32Write { value: 42 },
PortCommand::Int64Read,
PortCommand::Int64Write { value: i64::MAX },
PortCommand::Float64Read,
PortCommand::Float64Write { value: 3.14 },
PortCommand::OctetRead { buf_size: 256 },
PortCommand::OctetWrite {
data: vec![1, 2, 3],
},
PortCommand::OctetWriteRead {
data: vec![4, 5],
buf_size: 128,
flush: true,
},
PortCommand::UInt32DigitalRead { mask: 0xFF },
PortCommand::UInt32DigitalWrite {
value: 0xAB,
mask: 0xFF,
},
PortCommand::EnumRead,
PortCommand::EnumWrite { index: 2 },
PortCommand::Int32ArrayRead { max_elements: 100 },
PortCommand::Int32ArrayWrite {
data: vec![1, 2, 3],
},
PortCommand::Float64ArrayRead { max_elements: 50 },
PortCommand::Float64ArrayWrite {
data: vec![1.0, 2.0],
},
PortCommand::Flush,
PortCommand::Connect,
PortCommand::Disconnect,
PortCommand::ConnectAddr,
PortCommand::DisconnectAddr,
PortCommand::EnableAddr,
PortCommand::DisableAddr,
PortCommand::SetEnable { yes: true },
PortCommand::SetAutoConnect { yes: false },
PortCommand::GetBoundsInt32,
PortCommand::GetBoundsInt64,
PortCommand::GetEnable,
PortCommand::GetAutoConnect,
PortCommand::BlockProcess,
PortCommand::UnblockProcess,
PortCommand::DrvUserCreate {
drv_info: "MOTOR_STATUS".into(),
addr: 0,
},
PortCommand::CallParamCallbacks { addr: 0 },
PortCommand::GetOption { key: "baud".into() },
PortCommand::SetOption {
key: "baud".into(),
value: "9600".into(),
},
];
for cmd in commands {
let json = serde_json::to_string(&cmd).unwrap();
let back: PortCommand = serde_json::from_str(&json).unwrap();
assert_eq!(cmd, back);
}
}
}