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
|
/*
* Author: Sven Gothel <sgothel@jausoft.com>
* Copyright (c) 2020 Gothel Software e.K.
* Copyright (c) 2020 ZAFENA AB
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
#ifndef GATT_HANDLER_HPP_
#define GATT_HANDLER_HPP_
#include <cstring>
#include <string>
#include <memory>
#include <cstdint>
#include <vector>
#include <mutex>
#include <atomic>
#include <thread>
#include "UUID.hpp"
#include "BTTypes.hpp"
#include "HCITypes.hpp"
#include "L2CAPComm.hpp"
#include "ATTPDUTypes.hpp"
#include "GATTTypes.hpp"
#include "LFRingbuffer.hpp"
/**
* BT Core Spec v5.2: Vol 3, Part F Attribute Protocol (ATT)
* BT Core Spec v5.2: Vol 3, Part G Generic Attribute Protocol (GATT)
*
* BT Core Spec v5.2: Vol 3, Part G GATT: 3.4 Summary of GATT Profile Attribute Types
*/
namespace direct_bt {
typedef std::shared_ptr<GATTCharacterisicsDecl> GATTCharacterisicsDeclRef;
class GATTNotificationListener {
public:
virtual void notificationReceived(std::shared_ptr<HCIDevice> dev, GATTCharacterisicsDeclRef charDecl,
std::shared_ptr<const AttHandleValueRcv> charValue) = 0;
virtual ~GATTNotificationListener() {}
};
class GATTIndicationListener {
public:
virtual void indicationReceived(std::shared_ptr<HCIDevice> dev, GATTCharacterisicsDeclRef charDecl,
std::shared_ptr<const AttHandleValueRcv> charValue, const bool confirmationSent) = 0;
virtual ~GATTIndicationListener() {}
};
/**
* Representing a complete Primary Service Declaration
* including its list of Characteristic Declarations,
* which also may include its client config if available.
*/
class GATTPrimaryService {
public:
/** The primary service declaration itself */
const GATTUUIDHandleRange declaration;
/** List of Characteristic Declarations as shared reference */
std::vector<GATTCharacterisicsDeclRef> characteristicDeclList;
GATTPrimaryService(const GATTUUIDHandleRange serviceDecl)
: declaration(serviceDecl), characteristicDeclList() {
characteristicDeclList.reserve(10);
}
std::string toString() const {
std::string res = declaration.toString()+"[ ";
for(size_t i=0; i<characteristicDeclList.size(); i++) {
if( 0 < i ) {
res += ", ";
}
res += std::to_string(i)+"[ "+characteristicDeclList.at(i)->toString()+" ]";
}
res += " ]";
return res;
}
};
typedef std::shared_ptr<GATTPrimaryService> GATTPrimaryServiceRef;
class GATTHandler {
public:
enum State : int {
Error = -1,
Disconnected = 0,
Connecting = 1,
Connected = 2,
RequestInProgress = 3,
DiscoveringCharacteristics = 4,
GetClientCharaceristicConfiguration = 5,
WaitWriteResponse = 6,
WaitReadResponse = 7
};
enum Defaults : int {
/* BT Core Spec v5.2: Vol 3, Part F 3.2.8: Maximum length of an attribute value. */
ClientMaxMTU = 512,
/* BT Core Spec v5.2: Vol 3, Part G GATT: 5.2.1 ATT_MTU */
DEFAULT_MIN_ATT_MTU = 23,
/** 10s poll timeout for l2cap reader thread */
L2CAP_READER_THREAD_POLL_TIMEOUT = 10000,
ATTPDU_RING_CAPACITY = 256
};
static std::string getStateString(const State state);
private:
POctets rbuffer;
State state;
std::shared_ptr<L2CAPComm> l2cap;
const int timeoutMS;
LFRingbuffer<std::shared_ptr<const AttPDUMsg>, nullptr> attPDURing;
std::thread l2capReaderThread;
volatile bool l2capReaderRunning;
volatile bool l2capReaderShallStop;
std::shared_ptr<GATTNotificationListener> gattNotificationListener = nullptr;
std::shared_ptr<GATTIndicationListener> gattIndicationListener = nullptr;
bool sendIndicationConfirmation = false;
uint16_t serverMTU;
uint16_t usedMTU;
std::vector<GATTPrimaryServiceRef> services;
State validateState();
void l2capReaderThreadImpl();
std::shared_ptr<const AttPDUMsg> receiveNext();
/**
* BT Core Spec v5.2: Vol 3, Part G GATT: 3.4.2 MTU Exchange
* <p>
* Returns the server-mtu if successful, otherwise 0.
* </p>
*/
uint16_t exchangeMTU(const uint16_t clientMaxMTU=ClientMaxMTU);
public:
GATTHandler(std::shared_ptr<L2CAPComm> l2cap, const int timeoutMS)
: rbuffer(ClientMaxMTU), state(Disconnected),
l2cap(l2cap), timeoutMS(timeoutMS),
attPDURing(ATTPDU_RING_CAPACITY), l2capReaderRunning(false), l2capReaderShallStop(false),
serverMTU(DEFAULT_MIN_ATT_MTU), usedMTU(DEFAULT_MIN_ATT_MTU) {}
GATTHandler(std::shared_ptr<HCIDevice> device, const int timeoutMS)
: rbuffer(ClientMaxMTU), state(Disconnected),
l2cap(new L2CAPComm(device, L2CAP_PSM_UNDEF, L2CAP_CID_ATT)), timeoutMS(timeoutMS),
attPDURing(ATTPDU_RING_CAPACITY), l2capReaderRunning(false), l2capReaderShallStop(false),
serverMTU(DEFAULT_MIN_ATT_MTU), usedMTU(DEFAULT_MIN_ATT_MTU) {}
~GATTHandler();
State getState() const { return state; }
std::string getStateString() const { return getStateString(state); }
/**
* Replaces the GATTNotificationListener with the given instance, returning the replaced one.
*/
std::shared_ptr<GATTNotificationListener> setGATTNotificationListener(std::shared_ptr<GATTNotificationListener> l);
/**
* Replaces the GATTNotificationListener with the given instance, returning the replaced one.
* <p>
* If {@code sendIndicationConfirmation} is {@code true}, a {@code ATT_HANDLE_VALUE_CFM}
* will be sent automatically right after receiving the event.
* </p>
*/
std::shared_ptr<GATTIndicationListener> setGATTIndicationListener(std::shared_ptr<GATTIndicationListener> l, bool sendConfirmation);
/**
* After successful l2cap connection, the MTU will be exchanged.
* See getServerMTU() and getUsedMTU(), the latter is in use.
*/
bool connect();
bool disconnect();
bool isOpen() const { return Disconnected < state && l2cap->isOpen(); }
bool send(const AttPDUMsg & msg);
uint16_t getServerMTU() const { return serverMTU; }
uint16_t getUsedMTU() const { return usedMTU; }
/**
* Find and return the GATTCharacterisicsDecl within internal primary services
* via given characteristic handle.
* <p>
* Returns nullptr if not found.
* </p>
*/
GATTCharacterisicsDeclRef findCharacterisics(const uint16_t charHandle);
/**
* Find and return the GATTCharacterisicsDecl within given list of primary services
* via given characteristic handle.
* <p>
* Returns nullptr if not found.
* </p>
*/
GATTCharacterisicsDeclRef findCharacterisics(const uint16_t charHandle, std::vector<GATTPrimaryServiceRef> &services);
/**
* Find and return the GATTCharacterisicsDecl within given primary service
* via given characteristic handle.
* <p>
* Returns nullptr if not found.
* </p>
*/
GATTCharacterisicsDeclRef findCharacterisics(const uint16_t charHandle, GATTPrimaryServiceRef service);
/**
* Discover all primary services _and_ all its characteristics declarations
* including their client config.
* <p>
* BT Core Spec v5.2: Vol 3, Part G GATT: 4.4.1 Discover All Primary Services
* </p>
* Method returns reference to GATTHandler internal data.
*/
std::vector<GATTPrimaryServiceRef> & discoverCompletePrimaryServices();
/**
* Discover all primary services _only_.
* <p>
* BT Core Spec v5.2: Vol 3, Part G GATT: 4.4.1 Discover All Primary Services
* </p>
*/
bool discoverPrimaryServices(std::vector<GATTPrimaryServiceRef> & result);
/**
* Discover all characteristics of a service and declaration attributes _only_.
* <p>
* BT Core Spec v5.2: Vol 3, Part G GATT: 4.6.1 Discover All Characteristics of a Service
* </p>
* <p>
* BT Core Spec v5.2: Vol 3, Part G GATT: 3.3.1 Characterisic Declaration Attribute Value
* </p>
*/
bool discoverCharacteristics(GATTPrimaryServiceRef service);
/**
* Discover all client characteristics config declaration _only_.
* <p>
* BT Core Spec v5.2: Vol 3, Part G GATT: 3.3.3.3 Client Characteristic Configuration
* </p>
*/
bool discoverClientCharacteristicConfig(GATTPrimaryServiceRef service);
/**
* BT Core Spec v5.2: Vol 3, Part G GATT: 4.7.1 Discover All Characteristic Descriptors
* <p>
* This is of little use, prefer discoverCharacteristics(..) and more elaborate GATTCharacterisicsDecl type!
* </p>
*/
bool discoverCharacteristicDescriptors(const GATTUUIDHandleRange & service, std::vector<GATTUUIDHandle> & result);
/**
* BT Core Spec v5.2: Vol 3, Part G GATT: 4.8.1 Read Characteristic Value
* <p>
* BT Core Spec v5.2: Vol 3, Part G GATT: 4.8.3 Read Long Characteristic Value
* </p>
* <p>
* If expectedLength = 0, then only one ATT_READ_REQ/RSP will be used.
* </p>
* <p>
* If expectedLength < 0, then long values using multiple ATT_READ_BLOB_REQ/RSP will be used until
* the response returns zero. This is the default parameter.
* </p>
* <p>
* If expectedLength > 0, then long values using multiple ATT_READ_BLOB_REQ/RSP will be used
* if required until the response returns zero.
* </p>
*/
bool readCharacteristicValue(const GATTCharacterisicsDecl & decl, POctets & res, int expectedLength=-1);
/**
* BT Core Spec v5.2: Vol 3, Part G GATT: 4.8.2 Read Value Using Characteristic UUID
* <p>
* BT Core Spec v5.2: Vol 3, Part G GATT: 4.8.3 Read Long Characteristic Value
* </p>
* <p>
* If expectedLength = 0, then only one ATT_READ_REQ/RSP will be used.
* </p>
* <p>
* If expectedLength < 0, then long values using multiple ATT_READ_BLOB_REQ/RSP will be used until
* the response returns zero. This is the default parameter.
* </p>
* <p>
* If expectedLength > 0, then long values using multiple ATT_READ_BLOB_REQ/RSP will be used
* if required until the response returns zero.
* </p>
*/
bool readCharacteristicValue(const GATTUUIDHandleRange & charUUIDHandleRange, POctets & res, int expectedLength=-1);
/**
* BT Core Spec v5.2: Vol 3, Part G GATT: 4.9.3 Write Characteristic Value
* <p>
* BT Core Spec v5.2: Vol 3, Part G GATT: 3.3.3.3 Client Characteristic Configuration
* </p>
*/
bool writeClientCharacteristicConfigReq(const GATTClientCharacteristicConfigDecl & cccd, const TROOctets & value);
/**
* BT Core Spec v5.2: Vol 3, Part G GATT: 4.9.1 Write Characteristic Value Without Response
*/
bool writeClientCharacteristicConfigCmd(const GATTClientCharacteristicConfigDecl & cccd, const TROOctets & value);
/**
* BT Core Spec v5.2: Vol 3, Part G GATT: 4.9.3 Write Characteristic Value
*/
bool writeCharacteristicValueReq(const GATTCharacterisicsDecl & decl, const TROOctets & value);
/**
* BT Core Spec v5.2: Vol 3, Part G GATT: 4.9.1 Write Characteristic Value Without Response
*/
bool writeCharacteristicValueCmd(const GATTCharacterisicsDecl & decl, const TROOctets & value);
/*****************************************************/
/** Higher level semantic functionality **/
/*****************************************************/
std::shared_ptr<GenericAccess> getGenericAccess(std::vector<GATTPrimaryServiceRef> & primServices);
std::shared_ptr<GenericAccess> getGenericAccess(std::vector<GATTCharacterisicsDeclRef> & genericAccessCharDeclList);
std::shared_ptr<DeviceInformation> getDeviceInformation(std::vector<GATTPrimaryServiceRef> & primServices);
std::shared_ptr<DeviceInformation> getDeviceInformation(std::vector<GATTCharacterisicsDeclRef> & deviceInfoCharDeclList);
/**
* BT Core Spec v5.2: Vol 3, Part G GATT: 3.3.3.3 Client Characteristic Configuration
*/
bool configIndicationNotification(const GATTClientCharacteristicConfigDecl & decl, const bool enableNotification, const bool enableIndication);
};
} // namespace direct_bt
#endif /* GATT_HANDLER_HPP_ */
|