forked from arduino/ArduinoCore-arc32
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBLECharacteristic.cpp
649 lines (558 loc) · 17.1 KB
/
BLECharacteristic.cpp
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
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
/*
* Copyright (c) 2016 Intel Corporation. All rights reserved.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
*/
#include <errno.h>
#include "CurieBLE.h"
#include "./internal/BLEUtils.h"
#include "BLECharacteristic.h"
#include "./internal/BLEProfileManager.h"
#include "./internal/BLEDeviceManager.h"
#include "./internal/BLECharacteristicImp.h"
BLECharacteristic::BLECharacteristic():
_bledev(), _internal(NULL), _chrc_local_imp(NULL), _broadcast(false),
_properties(0), _value_size(0), _value(NULL)//,
//_event_handlers(NULL)
{
memset(_uuid_cstr, 0, sizeof(_uuid_cstr));
memset(_event_handlers, 0, sizeof(_event_handlers));
memset(_oldevent_handlers, 0, sizeof(_oldevent_handlers));
}
BLECharacteristic::BLECharacteristic(const char* uuid,
unsigned char properties,
unsigned short valueSize):
_bledev(), _internal(NULL), _chrc_local_imp(NULL), _broadcast(false),
_properties(properties),
_value(NULL)//,
//_event_handlers(NULL)
{
bt_uuid_128 bt_uuid_tmp;
_value_size = valueSize > BLE_MAX_ATTR_LONGDATA_LEN ? BLE_MAX_ATTR_LONGDATA_LEN : valueSize;
BLEUtils::uuidString2BT(uuid, (bt_uuid_t *)&bt_uuid_tmp);
BLEUtils::uuidBT2String((const bt_uuid_t *)&bt_uuid_tmp, _uuid_cstr);
_bledev.setAddress(*BLEUtils::bleGetLoalAddress());
memset(_event_handlers, 0, sizeof(_event_handlers));
memset(_oldevent_handlers, 0, sizeof(_oldevent_handlers));
}
BLECharacteristic::BLECharacteristic(const char* uuid,
unsigned char properties,
const char* value):
BLECharacteristic(uuid, properties, strlen(value))
{
_setValue((const uint8_t*)value, strlen(value));
}
BLECharacteristic::BLECharacteristic(BLECharacteristicImp *characteristicImp,
const BLEDevice *bleDev):
_bledev(bleDev), _internal(characteristicImp), _chrc_local_imp(NULL),
_broadcast(false), _value(NULL)//,_event_handlers(NULL)
{
BLEUtils::uuidBT2String(characteristicImp->bt_uuid(), _uuid_cstr);
_properties = characteristicImp->properties();
_value_size = characteristicImp->valueSize();
memset(_event_handlers, 0, sizeof(_event_handlers));
memset(_oldevent_handlers, 0, sizeof(_oldevent_handlers));
}
BLECharacteristic::BLECharacteristic(const BLECharacteristic& rhs):
_value(NULL)//,
//_event_handlers(NULL)
{
_chrc_local_imp = NULL; // Not copy
_value_size = rhs._value_size;
_internal = rhs._internal;
_bledev.setAddress(*rhs._bledev.bt_le_address());
memcpy(_uuid_cstr, rhs._uuid_cstr, sizeof(_uuid_cstr));
_properties = rhs._properties;
if (rhs._internal == NULL)
{
if (rhs._value != NULL)
{
_value = (unsigned char*)malloc(rhs._value_size);
if (NULL != _value)
{
memcpy(_value, rhs._value, rhs._value_size);
}
else
{
errno = ENOMEM;
}
}
//if (rhs._event_handlers != NULL)
{
//_event_handlers = (BLECharacteristicEventHandler*)malloc(sizeof(BLECharacteristicEventHandler) * BLECharacteristicEventLast);
//if (NULL != _event_handlers)
memcpy(_event_handlers, rhs._event_handlers, (sizeof(BLECharacteristicEventHandler) * BLECharacteristicEventLast));
}
memcpy(_oldevent_handlers, rhs._oldevent_handlers, (sizeof(BLECharacteristicEventHandler) * BLECharacteristicEventLast));
}
}
BLECharacteristic::~BLECharacteristic()
{
if (_value)
{
free(_value);
_value = NULL;
}
if (_chrc_local_imp != NULL)
{
delete _chrc_local_imp;
_chrc_local_imp = NULL;
}
}
const char* BLECharacteristic::uuid() const
{
return _uuid_cstr;
}
unsigned char BLECharacteristic::properties() const
{
unsigned char property = 0;
BLECharacteristicImp *characteristicImp = getImplementation();
if (NULL != characteristicImp)
{
property = characteristicImp->properties();
}
return property;
}
int BLECharacteristic::valueSize() const
{
int valuesize = 0;
BLECharacteristicImp *characteristicImp = getImplementation();
if (NULL != characteristicImp)
{
valuesize = characteristicImp->valueSize();
}
return valuesize;
}
const byte* BLECharacteristic::value() const
{
const byte* value_temp = NULL;
BLECharacteristicImp *characteristicImp = getImplementation();
if (NULL != characteristicImp)
{
value_temp = characteristicImp->value();
}
return value_temp;
}
int BLECharacteristic::valueLength() const
{
int valueLength = 0;
BLECharacteristicImp *characteristicImp = getImplementation();
if (NULL != characteristicImp)
{
valueLength = characteristicImp->valueLength();
}
return valueLength;
}
BLECharacteristic::operator bool() const
{
return (strlen(_uuid_cstr) > 3);
}
BLECharacteristic& BLECharacteristic::operator= (const BLECharacteristic& chrc)
{
if (this != &chrc)
{
memcpy(_uuid_cstr, chrc._uuid_cstr, sizeof(_uuid_cstr));
_bledev.setAddress(*chrc._bledev.bt_le_address());
_internal = chrc._internal;
_chrc_local_imp = NULL; // Not copy
_properties = chrc._properties;
if (_value_size < chrc._value_size)
{
_value_size = chrc._value_size;
if (NULL != _value)
{
free(_value);
_value = NULL;
}
}
if (_internal == NULL)
{
if (chrc._value != NULL)
{
if (NULL == _value)
_value = (unsigned char*) malloc(_value_size);
if (NULL != _value)
memcpy(_value, chrc._value, chrc._value_size);
else {
_value_size = 0;
}
}
//if (chrc._event_handlers != NULL)
{
//if (NULL == _event_handlers)
// _event_handlers = (BLECharacteristicEventHandler*)malloc(sizeof(BLECharacteristicEventHandler) * BLECharacteristicEventLast);
//if (NULL != _event_handlers)
memcpy(_event_handlers, chrc._event_handlers, (sizeof(BLECharacteristicEventHandler) * BLECharacteristicEventLast));
}
memcpy(_oldevent_handlers, chrc._oldevent_handlers, (sizeof(BLECharacteristicEventHandler) * BLECharacteristicEventLast));
}
}
return *this;
}
byte BLECharacteristic::operator[] (int offset) const
{
byte data = 0;
BLECharacteristicImp *characteristicImp = getImplementation();
if (NULL != characteristicImp)
{
data = (*characteristicImp)[offset];
}
return data;
}
bool BLECharacteristic::setValue(const unsigned char value[], unsigned short length)
{
return writeValue(value, (int)length);
}
bool BLECharacteristic::setValue(const char* value)
{
return this->setValue((const unsigned char *)value, strlen(value));
}
bool BLECharacteristic::writeValue(const byte value[], int length)
{
return writeValue(value, length, 0);
}
bool BLECharacteristic::writeValue(const byte value[], int length, int offset)
{
bool retVar = false;
BLECharacteristicImp *characteristicImp = getImplementation();
if (NULL != characteristicImp)
{
if (BLEUtils::isLocalBLE(_bledev) == true)
{
retVar = characteristicImp->writeValue(value, length, offset);
}
else
{
retVar = characteristicImp->write(value, (uint16_t)length);
}
if (true == _broadcast &&
true == BLEDeviceManager::instance()->advertising())
{
BLEDeviceManager::instance()->stopAdvertising();
BLEDeviceManager::instance()->setAdvertisedServiceData(characteristicImp->bt_uuid(),
characteristicImp->value(),
characteristicImp->valueLength());
BLEDeviceManager::instance()->startAdvertising();
}
}
return retVar;
}
bool BLECharacteristic::writeValue(const char* value)
{
return writeValue((const byte*)value, strlen(value));
}
bool BLECharacteristic::broadcast()
{
_broadcast = true;
BLEDeviceManager::instance()->setConnectable(false);
if (BLEDeviceManager::instance()->advertising())
{
BLEDeviceManager::instance()->stopAdvertising();
}
BLEDeviceManager::instance()->startAdvertising();
return _broadcast;
}
bool BLECharacteristic::written()
{
bool retVar = false;
BLECharacteristicImp *characteristicImp = getImplementation();
if (NULL != characteristicImp)
{
retVar = characteristicImp->written();
}
return retVar;
}
bool BLECharacteristic::subscribed()
{
bool retVar = false;
BLECharacteristicImp *characteristicImp = getImplementation();
if (NULL != characteristicImp)
{
retVar = characteristicImp->subscribed();
}
return retVar;
}
bool BLECharacteristic::canNotify()
{
return (_properties & BLENotify);
}
bool BLECharacteristic::canIndicate()
{
return (_properties & BLEIndicate);
}
bool BLECharacteristic::canRead()
{
return (_properties & BLERead);
}
bool BLECharacteristic::canWrite()
{
return (_properties & BLEWrite);
}
bool BLECharacteristic::canSubscribe()
{
bool retVar = false;
BLECharacteristicImp *characteristicImp = getImplementation();
if (_properties & (BLENotify | BLEIndicate) &&
(NULL != characteristicImp))
{
retVar = !characteristicImp->subscribed();
}
return retVar;
}
bool BLECharacteristic::canUnsubscribe()
{
bool retVar = false;
BLECharacteristicImp *characteristicImp = getImplementation();
if (NULL != characteristicImp)
{
retVar = characteristicImp->subscribed();
}
return retVar;
}
bool BLECharacteristic::read(bool blocked)
{
bool retVar = false;
BLECharacteristicImp *characteristicImp = getImplementation();
if (NULL != characteristicImp)
{
retVar = characteristicImp->read(blocked);
}
return retVar;
}
bool BLECharacteristic::write(const unsigned char* value, int length)
{
bool retVar = false;
BLECharacteristicImp *characteristicImp = getImplementation();
if (NULL != characteristicImp)
{
retVar = characteristicImp->write(value, (uint16_t)length);
}
return retVar;
}
bool BLECharacteristic::subscribe()
{
bool retVar = false;
BLECharacteristicImp *characteristicImp = getImplementation();
if (NULL != characteristicImp)
{
retVar = characteristicImp->subscribe();
}
return retVar;
}
bool BLECharacteristic::unsubscribe()
{
bool retVar = false;
BLECharacteristicImp *characteristicImp = getImplementation();
if (NULL != characteristicImp)
{
retVar = characteristicImp->unsubscribe();
}
return retVar;
}
bool BLECharacteristic::valueUpdated()
{
bool retVar = false;
BLECharacteristicImp *characteristicImp = getImplementation();
if (NULL != characteristicImp)
{
retVar = characteristicImp->valueUpdated();
}
return retVar;
}
int BLECharacteristic::addDescriptor(BLEDescriptor& descriptor)
{
int retVar = BLE_STATUS_ERROR;
BLECharacteristicImp *characteristicImp = getImplementation();
if (NULL != characteristicImp)
{
retVar = characteristicImp->addDescriptor(descriptor);
}
else if (BLEUtils::isLocalBLE(_bledev) == true)
{
// Only support the GATT server that create the service in local device.
_chrc_local_imp = new BLECharacteristicImp(*this, _bledev);
if (NULL == _chrc_local_imp)
{
retVar = BLE_STATUS_NO_MEMORY;
}
else
{
retVar = _chrc_local_imp->addDescriptor(descriptor);
}
}
return retVar;
}
BLECharacteristicImp* BLECharacteristic::fetchCharacteristicImp()
{
BLECharacteristicImp* temp = _chrc_local_imp;
_chrc_local_imp = NULL;
return temp;
}
int BLECharacteristic::descriptorCount() const
{
int count = 0;
BLECharacteristicImp *characteristicImp = getImplementation();
if (NULL != characteristicImp)
{
count = characteristicImp->descriptorCount();
}
return count;
}
bool BLECharacteristic::hasDescriptor(const char* uuid) const
{
BLEDescriptorImp* descriptorImp = NULL;
BLECharacteristicImp *characteristicImp = getImplementation();
if (NULL != characteristicImp)
{
descriptorImp = characteristicImp->descrptor(uuid);
}
return (descriptorImp != NULL);
}
bool BLECharacteristic::hasDescriptor(const char* uuid, int index) const
{
bool retVal = false;
BLEDescriptorImp* descriptorImp = NULL;
BLECharacteristicImp *characteristicImp = getImplementation();
if (NULL != characteristicImp)
{
descriptorImp = characteristicImp->descrptor(index);
if (NULL != descriptorImp)
{
retVal = descriptorImp->compareUuid(uuid);
}
}
return retVal;
}
BLEDescriptor BLECharacteristic::descriptor(int index) const
{
BLEDescriptorImp* descriptorImp = NULL;
BLECharacteristicImp *characteristicImp = getImplementation();
if (NULL != characteristicImp)
{
descriptorImp = characteristicImp->descrptor(index);
}
if (descriptorImp != NULL)
{
return BLEDescriptor(descriptorImp, &_bledev);
}
else
{
return BLEDescriptor();
}
}
BLEDescriptor BLECharacteristic::descriptor(const char * uuid) const
{
BLEDescriptorImp* descriptorImp = NULL;
BLECharacteristicImp *characteristicImp = getImplementation();
if (NULL != characteristicImp)
{
descriptorImp = characteristicImp->descrptor(uuid);
}
if (descriptorImp != NULL)
{
return BLEDescriptor(descriptorImp, &_bledev);
}
else
{
return BLEDescriptor();
}
}
BLEDescriptor BLECharacteristic::descriptor(const char * uuid, int index) const
{
bool retVal = false;
BLEDescriptorImp* descriptorImp = NULL;
BLECharacteristicImp *characteristicImp = getImplementation();
if (NULL != characteristicImp)
{
descriptorImp = characteristicImp->descrptor(index);
if (NULL != descriptorImp)
{
retVal = descriptorImp->compareUuid(uuid);
}
}
if (descriptorImp != NULL && true == retVal)
{
return BLEDescriptor(descriptorImp, &_bledev);
}
else
{
return BLEDescriptor();
}
}
void BLECharacteristic::setEventHandler(BLECharacteristicEvent event,
BLECharacteristicEventHandler eventHandler)
{
BLECharacteristicImp *characteristicImp = getImplementation();
if (event >= BLECharacteristicEventLast)
{
return;
}
if (NULL != characteristicImp)
{
characteristicImp->setEventHandler(event, eventHandler);
}
else
{
_event_handlers[event] = eventHandler;
}
}
void BLECharacteristic::setEventHandler(BLECharacteristicEvent event,
BLECharacteristicEventHandlerOld eventHandler)
{
BLECharacteristicImp *characteristicImp = getImplementation();
if (event >= BLECharacteristicEventLast)
{
return;
}
if (NULL != characteristicImp)
{
characteristicImp->setEventHandler(event, eventHandler);
}
else
{
_oldevent_handlers[event] = eventHandler;
}
}
void
BLECharacteristic::_setValue(const uint8_t value[], uint16_t length)
{
if (length > _value_size) {
length = _value_size;
}
if (NULL == _value)
{
// Allocate the buffer for characteristic
_value = (unsigned char*)malloc(_value_size);
}
if (NULL == _value)
{
errno = ENOMEM;
return;
}
memcpy(_value, value, length);
}
BLECharacteristicImp* BLECharacteristic::getImplementation() const
{
BLECharacteristicImp* tmp = NULL;
tmp = _internal;
if (NULL == tmp)
{
tmp = BLEProfileManager::instance()->characteristic(_bledev, (const char*)_uuid_cstr);
}
return tmp;
}
void BLECharacteristic::setBLECharacteristicImp(BLECharacteristicImp *characteristicImp)
{
_internal = characteristicImp;
}