This repository has been archived by the owner on Aug 21, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
example.h
403 lines (366 loc) · 7.87 KB
/
example.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
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
#include <stdarg.h>
#include <stdbool.h>
#include <stdint.h>
#include <stdlib.h>
typedef enum ReturnCode {
Success = 0,
Fail = -1,
} ReturnCode;
typedef struct Option_CString Option_CString;
typedef struct Handle Handle;
typedef struct Home Home;
typedef struct Room Room;
typedef struct Device Device;
typedef struct SmartThermometer SmartThermometer;
typedef struct SmartSocket SmartSocket;
typedef struct HandleIter {
struct Handle *handle;
uintptr_t cursor;
} HandleIter;
typedef struct HandleRoomIter {
struct Handle *handle;
Home *home;
uintptr_t cursor;
} HandleRoomIter;
typedef struct HandleDeviceIter {
struct Handle *handle;
Room *room;
uintptr_t cursor;
} HandleDeviceIter;
/**
* get new smart hub
*/
struct Handle *smart_home_new(void);
/**
* free handle
* # Safety
*
* It's ok, because memory allocated from smart_home_new()
*/
void smart_home_free(struct Handle *hub);
/**
* add a new home to SmartHub
*
* # Safety
*
* handle gets from smart_home_new()
*
* * `handle`: smart hub handle
* * `name`: home name to add
*/
Home *smart_home_add_home(struct Handle *handle, const char *name);
/**
* remove home from SmartHub
*
* # Safety
*
* handle gets from smart_home_new()
*
* * `handle`: smart hub handle
* * `name`: home name to del
*/
enum ReturnCode smart_home_del_home(struct Handle *handle, const char *name);
/**
* Get Home handle from SmartHub by name
*
* # Safety
*
* handle gets from smart_home_new()
*
* * `handle`: smart hub handle
* * `name`: home name to get
*/
Home *smart_home_get_home(struct Handle *handle, const char *name);
/**
* Get home count
*
* # Safety
*
* handle gets from smart_home_new()
*/
uintptr_t smart_home_get_home_size(struct Handle *handle);
/**
* Get iterator over homes
*
* # Safety
*
* handle gets from smart_home_new()
*
* * `handle`: smart hub handle
*/
struct HandleIter smart_home_get_home_iter(struct Handle *handle);
/**
* Get list of all home names in hub
*
* # Safety
*
* handle gets from smart_home_new()
*
* # Warning
*
* This function returns borrowed pointer, use copy name before next call
*
* * `handle`: smart hub handle
*/
const char *smart_home_get_home_next(struct HandleIter *iter);
/**
* Adds a new room to home
*
* # Safety
*
* Home gets from smart_home_get_home()
*
* * `handle`: home handle
* * `name`: room name to add
*/
Room *smart_home_add_room(Home *handle, const char *name);
/**
* Dels a room from home
*
* # Safety
*
* Home gets from smart_home_get_home()
*
* * `handle`: home handle
* * `name`: room name to del
*/
enum ReturnCode smart_home_del_room(Home *handle, const char *name);
/**
* Gets a room from home by name
*
* # Safety
*
* Home gets from smart_home_get_home()
*
* * `handle`: home handle
* * `name`: room name to get
*/
Room *smart_home_get_room(Home *handle, const char *name);
/**
* Gets a room count in room
*
* # Safety
*
* Home gets from smart_home_get_home()
*
* * `handle`: home handle
*/
uintptr_t smart_home_get_room_size(Home *handle);
/**
* Gets a room iterator
*
* # Safety
*
* Home gets from smart_home_get_home()
*
* * `handle`: home handle
*/
struct HandleRoomIter smart_home_get_room_iter(struct Handle *handle, Home *home);
/**
* Gets a room list from home
*
* # Safety
*
* Home gets from smart_home_get_home()
*
* * `handle`: home handle
*/
const char *smart_home_get_room_next(struct HandleRoomIter *iter);
/**
* Adds a new thermometer to room
*
* # Safety
*
* Room gets from smart_home_get_room()
*
* * `handle`: room handle
* * `name`: thermometer name to add
* * `description`: thermometer description to add
* * `server`: thermometer server to add
*/
SmartThermometer *smart_home_add_thermometer(struct Handle *handle,
Room *room,
const char *name,
const char *description,
const char *server);
/**
* Adds a new socket to room
*
* # Safety
*
* Room gets from smart_home_get_room()
*
* * `handle`: room handle
* * `name`: socket name to add
* * `description`: socket description to add
* * `server`: socket server to add
*/
SmartSocket *smart_home_add_socket(struct Handle *handle,
Room *room,
const char *name,
const char *description,
const char *server);
/**
* Removes a device from room
*
* # Safety
*
* Room gets from smart_home_get_room()
*
* * `handle`: room handle
* * `name`: smart device name to del
*/
enum ReturnCode smart_home_del_device(Room *handle, const char *name);
/**
* Get a device by name
*
* # Safety
*
* Room gets from smart_home_get_room()
*
* * `handle`: room handle
* * `name`: smart device name to del
*/
Device *smart_home_get_device(Room *handle, const char *name);
/**
* Gets all thermometers size
*
* # Safety
*
* Room gets from smart_home_get_room()
*
* * `handle`: room handle
*/
uintptr_t smart_home_get_thermometer_size(const Room *handle);
/**
* Gets all thermometers iter
*
* # Safety
*
* Room gets from smart_home_get_room()
*
* * `handle`: room handle
*/
struct HandleDeviceIter smart_home_get_thermometer_iter(struct Handle *handle, Room *room);
/**
* Gets all thermometers in room
*
* # Safety
*
* Room gets from smart_home_get_room()
*
* * `handle`: room handle
*/
const SmartThermometer *smart_home_get_thermometer_next(struct HandleDeviceIter *handle);
/**
* Gets all sockets size
*
* # Safety
*
* Room gets from smart_home_get_room()
*
* * `handle`: room handle
*/
uintptr_t smart_home_get_socket_size(const Room *handle);
/**
* Gets all sockets iter
*
* # Safety
*
* Room gets from smart_home_get_room()
*
* * `handle`: room handle
*/
struct HandleDeviceIter smart_home_get_socket_iter(struct Handle *handle, Room *room);
/**
* Gets all sockets in room
*
* # Safety
*
* Room gets from smart_home_get_room()
*
* * `handle`: room handle
*/
const SmartSocket *smart_home_get_socket_next(struct HandleDeviceIter *handle);
/**
* Get thermometer name
*
* # Safety
*
* Room gets from smart_home_get_room()
*
* * `handle`: room handle
*/
const char *smart_home_get_thermometer_name(struct Handle *handle, const SmartThermometer *device);
/**
* Get thermometer description
*
* # Safety
*
* Room gets from smart_home_get_room()
*
* * `handle`: room handle
*/
const char *smart_home_get_thermometer_description(struct Handle *handle,
const SmartThermometer *device);
/**
* Get thermometer temperature
*
* # Safety
*
* Room gets from smart_home_get_room()
*
* * `handle`: room handle
*/
double smart_home_get_thermometer_temperature(struct Handle *handle,
const SmartThermometer *device);
/**
* Get socket name
*
* # Safety
*
* Room gets from smart_home_get_room()
*
* * `handle`: room handle
*/
const char *smart_home_get_socket_name(struct Handle *handle, const SmartSocket *device);
/**
* Get socket description
*
* # Safety
*
* Room gets from smart_home_get_room()
*
* * `handle`: room handle
*/
const char *smart_home_get_socket_description(struct Handle *handle, const SmartSocket *device);
/**
* Get socket power
*
* # Safety
*
* Room gets from smart_home_get_room()
*
* * `handle`: room handle
*/
double smart_home_get_socket_power(struct Handle *handle, const SmartSocket *device);
/**
* Turn on socket
*
* # Safety
*
* Room gets from smart_home_get_room()
*
* * `handle`: room handle
*/
enum ReturnCode smart_home_socket_on(struct Handle *handle, const SmartSocket *device);
/**
* Turn off socket
*
* # Safety
*
* Room gets from smart_home_get_room()
*
* * `handle`: room handle
*/
enum ReturnCode smart_home_socket_off(struct Handle *handle, const SmartSocket *device);