-
Notifications
You must be signed in to change notification settings - Fork 232
/
Copy pathHAPBLEPDU+TLV.h
285 lines (248 loc) · 9.34 KB
/
HAPBLEPDU+TLV.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
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
// Copyright (c) 2015-2019 The HomeKit ADK Contributors
//
// Licensed under the Apache License, Version 2.0 (the “License”);
// you may not use this file except in compliance with the License.
// See [CONTRIBUTORS.md] for the list of HomeKit ADK project authors.
#ifndef HAP_BLE_PDU_TLV_H
#define HAP_BLE_PDU_TLV_H
#ifdef __cplusplus
extern "C" {
#endif
#include "HAP+Internal.h"
#if __has_feature(nullability)
#pragma clang assume_nonnull begin
#endif
/**
* HAP-BLE PDU Body Additional Parameter Types.
*
* @see HomeKit Accessory Protocol Specification R14
* Table 7-10 Additional Parameter Types Description
*/
HAP_ENUM_BEGIN(uint8_t, HAPBLEPDUTLVType) {
/** HAP-Param-Value. */
kHAPBLEPDUTLVType_Value = 0x01,
/** HAP-Param-Additional-Authorization-Data. */
kHAPBLEPDUTLVType_AdditionalAuthorizationData = 0x02,
/** HAP-Param-Origin (local vs remote). */
kHAPBLEPDUTLVType_Origin = 0x03,
/** HAP-Param-Characteristic-Type. */
kHAPBLEPDUTLVType_CharacteristicType = 0x04,
/** HAP-Param-Characteristic-Instance-ID. */
kHAPBLEPDUTLVType_CharacteristicInstanceID = 0x05,
/** HAP-Param-Service-Type. */
kHAPBLEPDUTLVType_ServiceType = 0x06,
/** HAP-Param-Service-Instance-ID. */
kHAPBLEPDUTLVType_ServiceInstanceID = 0x07,
/** HAP-Param-TTL. */
kHAPBLEPDUTLVType_TTL = 0x08,
/** HAP-Param-Return-Response. */
kHAPBLEPDUTLVType_ReturnResponse = 0x09,
/** HAP-Param-HAP-Characteristic-Properties-Descriptor. */
kHAPBLEPDUTLVType_HAPCharacteristicPropertiesDescriptor = 0x0A,
/** HAP-Param-GATT-User-Description-Descriptor. */
kHAPBLEPDUTLVType_GATTUserDescriptionDescriptor = 0x0B,
/** HAP-Param-GATT-Presentation-Format-Descriptor. */
kHAPBLEPDUTLVType_GATTPresentationFormatDescriptor = 0x0C,
/** HAP-Param-GATT-Valid-Range. */
kHAPBLEPDUTLVType_GATTValidRange = 0x0D,
/** HAP-Param-HAP-Step-Value-Descriptor. */
kHAPBLEPDUTLVType_HAPStepValueDescriptor = 0x0E,
/** HAP-Param-HAP-Service-Properties. */
kHAPBLEPDUTLVType_HAPServiceProperties = 0x0F,
/** HAP-Param-HAP-Linked-Services. */
kHAPBLEPDUTLVType_HAPLinkedServices = 0x10,
/** HAP-Param-HAP-Valid-Values-Descriptor. */
kHAPBLEPDUTLVType_HAPValidValuesDescriptor = 0x11,
/** HAP-Param-HAP-Valid-Values-Range-Descriptor */
kHAPBLEPDUTLVType_HAPValidValuesRangeDescriptor = 0x12,
} HAP_ENUM_END(uint8_t, HAPBLEPDUTLVType);
/**
* Serializes HAP-Param-Characteristic-Type.
*
* @param characteristic Characteristic.
* @param responseWriter TLV writer.
*
* @return kHAPError_None If successful.
* @return kHAPError_OutOfResources If writer does not have enough capacity.
*
* @see HomeKit Accessory Protocol Specification R14
* Section 7.3.4.2 HAP-Characteristic-Signature-Read-Response
*/
HAP_RESULT_USE_CHECK
HAPError HAPBLEPDUTLVSerializeCharacteristicType(
const HAPCharacteristic* characteristic,
HAPTLVWriterRef* responseWriter);
/**
* Serializes HAP-Param-Service-Type.
*
* @param service Service.
* @param responseWriter TLV writer.
*
* @return kHAPError_None If successful.
* @return kHAPError_OutOfResources If writer does not have enough capacity.
*
* @see HomeKit Accessory Protocol Specification R14
* Section 7.3.4.2 HAP-Characteristic-Signature-Read-Response
*/
HAP_RESULT_USE_CHECK
HAPError HAPBLEPDUTLVSerializeServiceType(const HAPService* service, HAPTLVWriterRef* responseWriter);
/**
* Serializes HAP-Param-Service-Instance-ID.
*
* @param service Service.
* @param responseWriter TLV writer.
*
* @return kHAPError_None If successful.
* @return kHAPError_OutOfResources If writer does not have enough capacity.
*
* @see HomeKit Accessory Protocol Specification R14
* Section 7.3.4.2 HAP-Characteristic-Signature-Read-Response
*/
HAP_RESULT_USE_CHECK
HAPError HAPBLEPDUTLVSerializeServiceInstanceID(const HAPService* service, HAPTLVWriterRef* responseWriter);
/**
* Serializes HAP-Param-HAP-Characteristic-Properties-Descriptor.
*
* @param characteristic Characteristic.
* @param responseWriter TLV writer.
*
* @return kHAPError_None If successful.
* @return kHAPError_OutOfResources If writer does not have enough capacity.
*
* @see HomeKit Accessory Protocol Specification R14
* Section 7.3.4.2 HAP-Characteristic-Signature-Read-Response
*/
HAP_RESULT_USE_CHECK
HAPError HAPBLEPDUTLVSerializeHAPCharacteristicPropertiesDescriptor(
const HAPCharacteristic* characteristic,
HAPTLVWriterRef* responseWriter);
/**
* Serializes HAP-Param-GATT-User-Description-Descriptor.
*
* @param characteristic Characteristic.
* @param responseWriter TLV writer for serializing the response.
*
* @return kHAPError_None If successful.
* @return kHAPError_OutOfResources If writer does not have enough capacity.
*
* @see HomeKit Accessory Protocol Specification R14
* Section 7.3.4.2 HAP-Characteristic-Signature-Read-Response
*/
HAP_RESULT_USE_CHECK
HAPError HAPBLEPDUTLVSerializeGATTUserDescriptionDescriptor(
const HAPCharacteristic* characteristic,
HAPTLVWriterRef* responseWriter);
/**
* Serializes HAP-Param-GATT-Presentation-Format-Descriptor.
*
* @param characteristic Characteristic.
* @param responseWriter TLV writer.
*
* @return kHAPError_None If successful.
* @return kHAPError_OutOfResources If writer does not have enough capacity.
*
* @see HomeKit Accessory Protocol Specification R14
* Section 7.3.4.2 HAP-Characteristic-Signature-Read-Response
*/
HAP_RESULT_USE_CHECK
HAPError HAPBLEPDUTLVSerializeGATTPresentationFormatDescriptor(
const HAPCharacteristic* characteristic,
HAPTLVWriterRef* responseWriter);
/**
* Serializes HAP-Param-GATT-Valid-Range.
*
* @param characteristic Characteristic.
* @param responseWriter TLV writer.
*
* @return kHAPError_None If successful.
* @return kHAPError_OutOfResources If writer does not have enough capacity.
*
* @see HomeKit Accessory Protocol Specification R14
* Section 7.3.4.2 HAP-Characteristic-Signature-Read-Response
*/
HAP_RESULT_USE_CHECK
HAPError HAPBLEPDUTLVSerializeGATTValidRange(const HAPCharacteristic* characteristic, HAPTLVWriterRef* responseWriter);
/**
* Serializes HAP-Param-HAP-Step-Value-Descriptor.
*
* @param characteristic Characteristic.
* @param responseWriter TLV writer.
*
* @return kHAPError_None If successful.
* @return kHAPError_OutOfResources If writer does not have enough capacity.
*
* @see HomeKit Accessory Protocol Specification R14
* Section 7.3.4.2 HAP-Characteristic-Signature-Read-Response
*/
HAP_RESULT_USE_CHECK
HAPError HAPBLEPDUTLVSerializeHAPStepValueDescriptor(
const HAPCharacteristic* characteristic,
HAPTLVWriterRef* responseWriter);
/**
* Serializes HAP-Param-HAP-Service-Properties.
*
* @param service Service. NULL if the request had an invalid IID.
* @param responseWriter TLV writer.
*
* @return kHAPError_None If successful.
* @return kHAPError_OutOfResources If writer does not have enough capacity.
*
* @see HomeKit Accessory Protocol Specification R14
* Section 7.3.4.13 HAP-Service-Signature-Read-Response
*/
HAP_RESULT_USE_CHECK
HAPError
HAPBLEPDUTLVSerializeHAPServiceProperties(const HAPService* _Nullable service, HAPTLVWriterRef* responseWriter);
/**
* Serializes HAP-Param-HAP-Linked-Services.
*
* @param service Service. NULL if the request had an invalid IID.
* @param responseWriter TLV writer.
*
* @return kHAPError_None If successful.
* @return kHAPError_OutOfResources If writer does not have enough capacity.
*
* @see HomeKit Accessory Protocol Specification R14
* Section 7.3.4.13 HAP-Service-Signature-Read-Response
*/
HAP_RESULT_USE_CHECK
HAPError HAPBLEPDUTLVSerializeHAPLinkedServices(const HAPService* _Nullable service, HAPTLVWriterRef* responseWriter);
/**
* Serializes HAP-Param-HAP-Valid-Values-Descriptor.
*
* @param characteristic Characteristic.
* @param responseWriter TLV writer.
*
* @return kHAPError_None If successful.
* @return kHAPError_OutOfResources If writer does not have enough capacity.
*
* @see HomeKit Accessory Protocol Specification R14
* Section 7.3.4.3 HAP-Characteristic-Signature-Read-Response (with Valid Values)
*/
HAP_RESULT_USE_CHECK
HAPError HAPBLEPDUTLVSerializeHAPValidValuesDescriptor(
const HAPCharacteristic* characteristic,
HAPTLVWriterRef* responseWriter);
/**
* Serializes HAP-Param-HAP-Valid-Values-Range-Descriptor.
*
* @param characteristic Characteristic.
* @param responseWriter TLV writer.
*
* @return kHAPError_None If successful.
* @return kHAPError_OutOfResources If writer does not have enough capacity.
*
* @see HomeKit Accessory Protocol Specification R14
* Section 7.3.4.3 HAP-Characteristic-Signature-Read-Response (with Valid Values)
*/
HAP_RESULT_USE_CHECK
HAPError HAPBLEPDUTLVSerializeHAPValidValuesRangeDescriptor(
const HAPCharacteristic* characteristic,
HAPTLVWriterRef* responseWriter);
#if __has_feature(nullability)
#pragma clang assume_nonnull end
#endif
#ifdef __cplusplus
}
#endif
#endif