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
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
|
//! These are the interfaces between the GattModule and JNI. The synchronous
//! interface is mapped to the asynchronous interface using the
//! CallbackTransactionManager;
mod callback_transaction_manager;
pub use callback_transaction_manager::{CallbackResponseError, CallbackTransactionManager};
use async_trait::async_trait;
use log::warn;
use crate::packets::att::AttErrorCode;
use super::ffi::AttributeBackingType;
use super::ids::{AttHandle, ConnectionId, TransactionId, TransportIndex};
use super::server::IndicationError;
/// These callbacks are expected to be made available to the GattModule from
/// JNI.
pub trait GattCallbacks {
/// Invoked when a client tries to read a characteristic/descriptor. Expects
/// a response using bluetooth::gatt::send_response();
fn on_server_read(
&self,
conn_id: ConnectionId,
trans_id: TransactionId,
handle: AttHandle,
attr_type: AttributeBackingType,
offset: u32,
);
/// Invoked when a client tries to write a characteristic/descriptor.
/// Expects a response using bluetooth::gatt::send_response();
#[allow(clippy::too_many_arguments)] // needed to match the C++ interface
fn on_server_write(
&self,
conn_id: ConnectionId,
trans_id: TransactionId,
handle: AttHandle,
attr_type: AttributeBackingType,
write_type: GattWriteType,
value: &[u8],
);
/// Invoked when a handle value indication transaction completes
/// (either due to an error, link loss, or the peer confirming it)
fn on_indication_sent_confirmation(
&self,
conn_id: ConnectionId,
result: Result<(), IndicationError>,
);
/// Execute or cancel any prepared writes
fn on_execute(
&self,
conn_id: ConnectionId,
trans_id: TransactionId,
decision: TransactionDecision,
);
}
/// The various write types available (requests + commands)
#[derive(PartialEq, Eq, Clone, Copy, Debug)]
pub enum GattWriteType {
/// Reliable, expects a response (WRITE_REQ or PREPARE_WRITE_REQ)
Request(GattWriteRequestType),
/// Unreliable, no response required (WRITE_CMD)
Command,
}
/// The types of write requests (that need responses)
#[derive(PartialEq, Eq, Clone, Copy, Debug)]
pub enum GattWriteRequestType {
/// Atomic (WRITE_REQ)
Request,
/// Transactional, should not be committed yet (PREPARE_WRITE_REQ)
Prepare {
/// The byte offset at which to write
offset: u32,
},
}
/// Whether to commit or cancel a transaction
#[derive(Clone, Copy, Debug)]
pub enum TransactionDecision {
/// Commit all pending writes
Execute,
/// Discard all pending writes
Cancel,
}
/// This interface is an "async" version of the above, and is passed directly
/// into the GattModule
#[async_trait(?Send)]
pub trait RawGattDatastore {
/// Read a characteristic from the specified connection at the given handle.
async fn read(
&self,
tcb_idx: TransportIndex,
handle: AttHandle,
offset: u32,
attr_type: AttributeBackingType,
) -> Result<Vec<u8>, AttErrorCode>;
/// Write data to a given characteristic on the specified connection.
async fn write(
&self,
tcb_idx: TransportIndex,
handle: AttHandle,
attr_type: AttributeBackingType,
write_type: GattWriteRequestType,
data: &[u8],
) -> Result<(), AttErrorCode>;
/// Write data to a given characteristic on the specified connection, without waiting
/// for a response from the upper layer.
fn write_no_response(
&self,
tcb_idx: TransportIndex,
handle: AttHandle,
attr_type: AttributeBackingType,
data: &[u8],
);
/// Execute or cancel any prepared writes
async fn execute(
&self,
tcb_idx: TransportIndex,
decision: TransactionDecision,
) -> Result<(), AttErrorCode>;
}
/// This interface simplifies the interface of RawGattDatastore by rejecting all unsupported
/// operations, rather than requiring clients to do so.
#[async_trait(?Send)]
pub trait GattDatastore {
/// Read a characteristic from the specified connection at the given handle.
async fn read(
&self,
tcb_idx: TransportIndex,
handle: AttHandle,
attr_type: AttributeBackingType,
) -> Result<Vec<u8>, AttErrorCode>;
/// Write data to a given characteristic on the specified connection.
async fn write(
&self,
tcb_idx: TransportIndex,
handle: AttHandle,
attr_type: AttributeBackingType,
data: &[u8],
) -> Result<(), AttErrorCode>;
}
#[async_trait(?Send)]
impl<T: GattDatastore + ?Sized> RawGattDatastore for T {
/// Read a characteristic from the specified connection at the given handle.
async fn read(
&self,
tcb_idx: TransportIndex,
handle: AttHandle,
offset: u32,
attr_type: AttributeBackingType,
) -> Result<Vec<u8>, AttErrorCode> {
if offset != 0 {
warn!("got read blob request for non-long attribute {handle:?}");
return Err(AttErrorCode::AttributeNotLong);
}
self.read(tcb_idx, handle, attr_type).await
}
/// Write data to a given characteristic on the specified connection.
async fn write(
&self,
tcb_idx: TransportIndex,
handle: AttHandle,
attr_type: AttributeBackingType,
write_type: GattWriteRequestType,
data: &[u8],
) -> Result<(), AttErrorCode> {
match write_type {
GattWriteRequestType::Prepare { .. } => {
warn!("got prepare write attempt on {tcb_idx:?} to characteristic {handle:?} not supporting write_without_response");
Err(AttErrorCode::WriteRequestRejected)
}
GattWriteRequestType::Request => self.write(tcb_idx, handle, attr_type, data).await,
}
}
fn write_no_response(
&self,
tcb_idx: TransportIndex,
handle: AttHandle,
_: AttributeBackingType,
_: &[u8],
) {
// silently drop, since there's no way to return an error
warn!("got write command on {tcb_idx:?} to characteristic {handle:?} not supporting write_without_response");
}
/// Execute or cancel any prepared writes
async fn execute(&self, _: TransportIndex, _: TransactionDecision) -> Result<(), AttErrorCode> {
// we never do prepared writes, so who cares
Ok(())
}
}
#[cfg(test)]
mod test {
use tokio::sync::mpsc::error::TryRecvError;
use tokio::task::spawn_local;
use crate::gatt::mocks::mock_datastore::{MockDatastore, MockDatastoreEvents};
use crate::utils::task::block_on_locally;
use super::*;
const TCB_IDX: TransportIndex = TransportIndex(1);
const HANDLE: AttHandle = AttHandle(1);
const DATA: [u8; 4] = [1, 2, 3, 4];
#[test]
fn test_regular_read_invoke() {
block_on_locally(async {
// arrange
let (datastore, mut rx) = MockDatastore::new();
// act: send read request
spawn_local(async move {
RawGattDatastore::read(
&datastore,
TCB_IDX,
HANDLE,
0,
AttributeBackingType::Characteristic,
)
.await
});
let resp = rx.recv().await.unwrap();
// assert: got read event
assert!(matches!(
resp,
MockDatastoreEvents::Read(TCB_IDX, HANDLE, AttributeBackingType::Characteristic, _)
));
});
}
#[test]
fn test_regular_read_response() {
block_on_locally(async {
// arrange
let (datastore, mut rx) = MockDatastore::new();
// act: send read request
let pending = spawn_local(async move {
RawGattDatastore::read(
&datastore,
TCB_IDX,
HANDLE,
0,
AttributeBackingType::Characteristic,
)
.await
});
let resp = rx.recv().await.unwrap();
let MockDatastoreEvents::Read(_, _, _, resp) = resp else {
unreachable!();
};
resp.send(Err(AttErrorCode::ApplicationError)).unwrap();
// assert: got the supplied response
assert_eq!(pending.await.unwrap(), Err(AttErrorCode::ApplicationError));
});
}
#[test]
fn test_rejected_read_blob() {
// arrange
let (datastore, mut rx) = MockDatastore::new();
// act: send read blob request
let resp = block_on_locally(RawGattDatastore::read(
&datastore,
TCB_IDX,
HANDLE,
1,
AttributeBackingType::Characteristic,
));
// assert: got the correct error code
assert_eq!(resp, Err(AttErrorCode::AttributeNotLong));
// assert: no pending events
assert_eq!(rx.try_recv().unwrap_err(), TryRecvError::Empty);
}
#[test]
fn test_write_request_invoke() {
block_on_locally(async {
// arrange
let (datastore, mut rx) = MockDatastore::new();
// act: send write request
spawn_local(async move {
RawGattDatastore::write(
&datastore,
TCB_IDX,
HANDLE,
AttributeBackingType::Characteristic,
GattWriteRequestType::Request,
&DATA,
)
.await
});
let resp = rx.recv().await.unwrap();
// assert: got write event
assert!(matches!(
resp,
MockDatastoreEvents::Write(
TCB_IDX,
HANDLE,
AttributeBackingType::Characteristic,
_,
_
)
));
});
}
#[test]
fn test_write_request_response() {
block_on_locally(async {
// arrange
let (datastore, mut rx) = MockDatastore::new();
// act: send write request
let pending = spawn_local(async move {
RawGattDatastore::write(
&datastore,
TCB_IDX,
HANDLE,
AttributeBackingType::Characteristic,
GattWriteRequestType::Request,
&DATA,
)
.await
});
let resp = rx.recv().await.unwrap();
let MockDatastoreEvents::Write(_, _, _, _, resp) = resp else {
unreachable!();
};
resp.send(Err(AttErrorCode::ApplicationError)).unwrap();
// assert: got the supplied response
assert_eq!(pending.await.unwrap(), Err(AttErrorCode::ApplicationError));
});
}
#[test]
fn test_rejected_prepared_write() {
// arrange
let (datastore, mut rx) = MockDatastore::new();
// act: send prepare write request
let resp = block_on_locally(RawGattDatastore::write(
&datastore,
TCB_IDX,
HANDLE,
AttributeBackingType::Characteristic,
GattWriteRequestType::Prepare { offset: 1 },
&DATA,
));
// assert: got the correct error code
assert_eq!(resp, Err(AttErrorCode::WriteRequestRejected));
// assert: no event sent up
assert_eq!(rx.try_recv().unwrap_err(), TryRecvError::Empty);
}
#[test]
fn test_dropped_write_command() {
// arrange
let (datastore, mut rx) = MockDatastore::new();
// act: send write command
RawGattDatastore::write_no_response(
&datastore,
TCB_IDX,
HANDLE,
AttributeBackingType::Characteristic,
&DATA,
);
// assert: no event sent up
assert_eq!(rx.try_recv().unwrap_err(), TryRecvError::Empty);
}
#[test]
fn test_execute_noop() {
// arrange
let (datastore, mut rx) = MockDatastore::new();
// act: send execute request
let resp = block_on_locally(RawGattDatastore::execute(
&datastore,
TCB_IDX,
TransactionDecision::Execute,
));
// assert: succeeds trivially
assert!(resp.is_ok());
// assert: no event sent up
assert_eq!(rx.try_recv().unwrap_err(), TryRecvError::Empty);
}
}
|