-
-
Notifications
You must be signed in to change notification settings - Fork 284
/
Copy pathBLEService.h
151 lines (129 loc) · 4.25 KB
/
BLEService.h
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
/*
BLE Service API
Copyright (c) 2016 Arduino LLC. All right 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 St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef ARDUINO_BLE_SERVICE_H
#define ARDUINO_BLE_SERVICE_H
#include "CurieBLE.h"
#include "BLEDevice.h"
//class BLECharacteristic;
class BLEServiceImp;
class BLEService
{
public:
BLEService();
BLEService(const char* uuid);
virtual ~BLEService();
virtual operator bool() const; // is the service valid
BLEService& operator= (const BLEService& service);
const char* uuid() const;
/**
* @brief Add a characteristic in service
*
* @param characteristic The characteristic want to be added to service
*
* @return int 0 - Success. Others - Error codes
*
* @note none
*/
int addCharacteristic(BLECharacteristic& characteristic);
/**
* @brief Get the number of characteristics the service has
*
* @param none
*
* @return none
*
* @note none
*/
int characteristicCount() const;
/**
* @brief Does the service have a characteristic with the specified UUID
*
* @param uuid The UUID of the characteristic
*
* @return bool true - Yes. false - No
*
* @note none
*/
bool hasCharacteristic(const char* uuid) const;
/**
* @brief Does the service have an nth characteristic with the
* specified UUID
*
* @param uuid The UUID of the characteristic
*
* @param index The index of characteristic
*
* @return bool true - Yes. false - No
*
* @note none
*/
bool hasCharacteristic(const char* uuid, int index) const;
/**
* @brief Return the nth characteristic of the service
*
* @param index The index of characteristic
*
* @return BLECharacteristic The characteristic
*
* @note none
*/
BLECharacteristic characteristic(int index) const;
/**
* @brief Return the characteristic with the specified UUID
*
* @param uuid The UUID of the characteristic
*
* @return BLECharacteristic The characteristic
*
* @note none
*/
BLECharacteristic characteristic(const char * uuid) const;
/**
* @brief return the nth characteristic with the specified UUID
*
* @param uuid The UUID of the characteristic
*
* @param index The index of characteristic
*
* @return BLECharacteristic The characteristic
*
* @note none
*/
BLECharacteristic characteristic(const char * uuid, int index) const;
protected:
friend class BLEDevice;
friend class BLEServiceImp;
friend class BLEProfileManager;
friend uint8_t profile_service_read_rsp_process(bt_conn_t *conn,
uint8_t err,
bt_gatt_read_params_t *params,
const void *data,
uint16_t length);
BLEService(BLEServiceImp* serviceImp, const BLEDevice* bledev);
BLEService(const bt_uuid_t* uuid);
void setServiceImp(BLEServiceImp* serviceImp);
BLEServiceImp* getLocalServiceImp();
BLEServiceImp* fetchOutLocalServiceImp();
private:
BLEServiceImp* getServiceImp();
BLEServiceImp* getServiceImp() const;
private:
BLEDevice _bledevice;
BLEServiceImp* _service_imp;
char _uuid_cstr[37];
BLEServiceImp* _service_local_imp; // This not allow copy
};
#endif