summaryrefslogtreecommitdiff
path: root/src/BLERemoteService.h
blob: 4393fbcf4c5340cec4a3b0dc7dc5080a2c651184 (plain)
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
/*
 * BLERemoteService.h
 *
 *  Created on: Jul 8, 2017
 *      Author: kolban
 */
 
#ifndef COMPONENTS_CPP_UTILS_BLEREMOTESERVICE_H_
#define COMPONENTS_CPP_UTILS_BLEREMOTESERVICE_H_
#include "sdkconfig.h"
#if defined(CONFIG_BT_ENABLED)
 
#include <map>
 
#include "BLEClient.h"
#include "BLERemoteCharacteristic.h"
#include "BLEUUID.h"
#include "FreeRTOS.h"
 
class BLEClient;
class BLERemoteCharacteristic;
 
 
/**
 * @brief A model of a remote %BLE service.
 */
class BLERemoteService {
public:
BLERemoteService(esp_gatt_srvc_id_t srvcId, BLEClient* pClient);
virtual ~BLERemoteService();
 
// Public methods 
BLERemoteCharacteristic* getCharacteristic(const char* uuid);
BLERemoteCharacteristic* getCharacteristic(BLEUUID uuid);
void                     getCharacteristics(void);
BLEClient*               getClient(void);
BLEUUID                  getUUID(void);
std::string              toString(void);
 
private:
// Friends 
friend class BLEClient;
friend class BLERemoteCharacteristic;
 
// Private methods 
esp_gatt_srvc_id_t* getSrvcId(void);
void                gattClientEventHandler(
esp_gattc_cb_event_t      event,
esp_gatt_if_t             gattc_if,
esp_ble_gattc_cb_param_t* evtParam);
void                removeCharacteristics();
 
// Properties 
std::map<std::string, BLERemoteCharacteristic *> m_characteristicMap;
bool                m_haveCharacteristics; // Have we previously obtained the characteristics. 
BLEClient*          m_pClient;
FreeRTOS::Semaphore m_semaphoreGetCharEvt = FreeRTOS::Semaphore("GetCharEvt");
esp_gatt_srvc_id_t  m_srvcId;
BLEUUID             m_uuid;
}; // BLERemoteService 
 
#endif /* CONFIG_BT_ENABLED */
#endif /* COMPONENTS_CPP_UTILS_BLEREMOTESERVICE_H_ */