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
|
/*
* Copyright (C) 2018 "IoT.bzh"
* Author: José Bollo <jose.bollo@iot.bzh>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#pragma once
/******************************************************************************/
#if AFB_BINDING_VERSION == 1 || AFB_BINDING_VERSION == 2
#define afb_req afb_req_x1
#define afb_req_is_valid afb_req_x1_is_valid
#define afb_req_get afb_req_x1_get
#define afb_req_value afb_req_x1_value
#define afb_req_path afb_req_x1_path
#define afb_req_json afb_req_x1_json
#define afb_req_reply afb_req_x1_reply
#define afb_req_reply_f afb_req_x1_reply_f
#define afb_req_reply_v afb_req_x1_reply_v
#define afb_req_success(r,o,i) afb_req_x1_reply(r,o,0,i)
#define afb_req_success_f(r,o,...) afb_req_x1_reply_f(r,o,0,__VA_ARGS__)
#define afb_req_success_v(r,o,f,v) afb_req_x1_reply_v(r,o,0,f,v)
#define afb_req_fail(r,e,i) afb_req_x1_reply(r,0,e,i)
#define afb_req_fail_f(r,e,...) afb_req_x1_reply_f(r,0,e,__VA_ARGS__)
#define afb_req_fail_v(r,e,f,v) afb_req_x1_reply_v(r,0,e,f,v)
#define afb_req_context_get afb_req_x1_context_get
#define afb_req_context_set afb_req_x1_context_set
#define afb_req_context afb_req_x1_context
#define afb_req_context_make afb_req_x1_context_make
#define afb_req_context_clear afb_req_x1_context_clear
#define afb_req_addref afb_req_x1_addref
#define afb_req_unref afb_req_x1_unref
#define afb_req_session_close afb_req_x1_session_close
#define afb_req_session_set_LOA afb_req_x1_session_set_LOA
#define afb_req_subscribe afb_req_x1_subscribe
#define afb_req_unsubscribe afb_req_x1_unsubscribe
#define afb_req_subcall afb_req_x1_subcall
#define afb_req_subcall_req afb_req_x1_subcall_req
#define afb_req_subcall_sync afb_req_x1_subcall_sync
#define afb_req_verbose afb_req_x1_verbose
#define afb_req_has_permission afb_req_x1_has_permission
#define afb_req_get_application_id afb_req_x1_get_application_id
#define afb_req_get_uid afb_req_x1_get_uid
#define afb_req_get_client_info afb_req_x1_get_client_info
#define afb_event afb_event_x1
#define afb_event_to_event_x2 afb_event_x1_to_event_x2
#define afb_event_is_valid afb_event_x1_is_valid
#define afb_event_broadcast afb_event_x1_broadcast
#define afb_event_push afb_event_x1_push
#define afb_event_drop afb_event_x1_unref
#define afb_event_name afb_event_x1_name
#define afb_event_unref afb_event_x1_unref
#define afb_event_addref afb_event_x1_addref
#define afb_service afb_service_x1
#define afb_daemon afb_daemon_x1
#define _AFB_SYSLOG_LEVEL_EMERGENCY_ AFB_SYSLOG_LEVEL_EMERGENCY
#define _AFB_SYSLOG_LEVEL_ALERT_ AFB_SYSLOG_LEVEL_ALERT
#define _AFB_SYSLOG_LEVEL_CRITICAL_ AFB_SYSLOG_LEVEL_CRITICAL
#define _AFB_SYSLOG_LEVEL_ERROR_ AFB_SYSLOG_LEVEL_ERROR
#define _AFB_SYSLOG_LEVEL_WARNING_ AFB_SYSLOG_LEVEL_WARNING
#define _AFB_SYSLOG_LEVEL_NOTICE_ AFB_SYSLOG_LEVEL_NOTICE
#define _AFB_SYSLOG_LEVEL_INFO_ AFB_SYSLOG_LEVEL_INFO
#define _AFB_SYSLOG_LEVEL_DEBUG_ AFB_SYSLOG_LEVEL_DEBUG
#endif
/******************************************************************************/
#if AFB_BINDING_VERSION == 1
#define afb_req_store afb_req_x1_store_v1
#define afb_req_unstore afb_req_x1_unstore_v1
#define afb_binding afb_binding_v1
#define afb_binding_interface afb_binding_interface_v1
#define afb_daemon_get_event_loop afb_daemon_get_event_loop_v1
#define afb_daemon_get_user_bus afb_daemon_get_user_bus_v1
#define afb_daemon_get_system_bus afb_daemon_get_system_bus_v1
#define afb_daemon_broadcast_event afb_daemon_broadcast_event_v1
#define afb_daemon_make_event afb_daemon_make_event_v1
#define afb_daemon_verbose afb_daemon_verbose_v1
#define afb_daemon_rootdir_get_fd afb_daemon_rootdir_get_fd_v1
#define afb_daemon_rootdir_open_locale afb_daemon_rootdir_open_locale_v1
#define afb_daemon_queue_job afb_daemon_queue_job_v1
#define afb_daemon_require_api afb_daemon_require_api_v1
#define afb_daemon_rename_api afb_daemon_add_alias_v1
#define afb_service_call afb_service_call_v1
#define afb_service_call_sync afb_service_call_sync_v1
# define AFB_ERROR AFB_ERROR_V1
# define AFB_WARNING AFB_WARNING_V1
# define AFB_NOTICE AFB_NOTICE_V1
# define AFB_INFO AFB_INFO_V1
# define AFB_DEBUG AFB_DEBUG_V1
# define AFB_REQ_ERROR AFB_REQ_ERROR_V1
# define AFB_REQ_WARNING AFB_REQ_WARNING_V1
# define AFB_REQ_NOTICE AFB_REQ_NOTICE_V1
# define AFB_REQ_INFO AFB_REQ_INFO_V1
# define AFB_REQ_DEBUG AFB_REQ_DEBUG_V1
#define AFB_REQ_VERBOSE AFB_REQ_VERBOSE_V1
# define AFB_SESSION_NONE AFB_SESSION_NONE_X1
# define AFB_SESSION_CREATE AFB_SESSION_CREATE_X1
# define AFB_SESSION_CLOSE AFB_SESSION_CLOSE_X1
# define AFB_SESSION_RENEW AFB_SESSION_RENEW_X1
# define AFB_SESSION_CHECK AFB_SESSION_CHECK_X1
# define AFB_SESSION_LOA_GE AFB_SESSION_LOA_GE_X1
# define AFB_SESSION_LOA_LE AFB_SESSION_LOA_LE_X1
# define AFB_SESSION_LOA_EQ AFB_SESSION_LOA_EQ_X1
# define AFB_SESSION_LOA_SHIFT AFB_SESSION_LOA_SHIFT_X1
# define AFB_SESSION_LOA_MASK AFB_SESSION_LOA_MASK_X1
# define AFB_SESSION_LOA_0 AFB_SESSION_LOA_0_X1
# define AFB_SESSION_LOA_1 AFB_SESSION_LOA_1_X1
# define AFB_SESSION_LOA_2 AFB_SESSION_LOA_2_X1
# define AFB_SESSION_LOA_3 AFB_SESSION_LOA_3_X1
# define AFB_SESSION_LOA_4 AFB_SESSION_LOA_4_X1
# define AFB_SESSION_LOA_LE_0 AFB_SESSION_LOA_LE_0_X1
# define AFB_SESSION_LOA_LE_1 AFB_SESSION_LOA_LE_1_X1
# define AFB_SESSION_LOA_LE_2 AFB_SESSION_LOA_LE_2_X1
# define AFB_SESSION_LOA_LE_3 AFB_SESSION_LOA_LE_3_X1
# define AFB_SESSION_LOA_EQ_0 AFB_SESSION_LOA_EQ_0_X1
# define AFB_SESSION_LOA_EQ_1 AFB_SESSION_LOA_EQ_1_X1
# define AFB_SESSION_LOA_EQ_2 AFB_SESSION_LOA_EQ_2_X1
# define AFB_SESSION_LOA_EQ_3 AFB_SESSION_LOA_EQ_3_X1
# define AFB_SESSION_LOA_GE_0 AFB_SESSION_LOA_GE_0_X1
# define AFB_SESSION_LOA_GE_1 AFB_SESSION_LOA_GE_1_X1
# define AFB_SESSION_LOA_GE_2 AFB_SESSION_LOA_GE_2_X1
# define AFB_SESSION_LOA_GE_3 AFB_SESSION_LOA_GE_3_X1
#endif
/******************************************************************************/
#if AFB_BINDING_VERSION == 2
#define afb_req_store afb_req_x1_store_v2
#define afb_req_unstore afb_daemon_unstore_req_v2
#define afb_binding afb_binding_v2
#define afb_get_verbosity afb_get_verbosity_v2
#define afb_get_daemon afb_get_daemon_v2
#define afb_get_service afb_get_service_v2
#define afb_daemon_get_event_loop afb_daemon_get_event_loop_v2
#define afb_daemon_get_user_bus afb_daemon_get_user_bus_v2
#define afb_daemon_get_system_bus afb_daemon_get_system_bus_v2
#define afb_daemon_broadcast_event afb_daemon_broadcast_event_v2
#define afb_daemon_make_event afb_daemon_make_event_v2
#define afb_daemon_verbose afb_daemon_verbose_v2
#define afb_daemon_rootdir_get_fd afb_daemon_rootdir_get_fd_v2
#define afb_daemon_rootdir_open_locale afb_daemon_rootdir_open_locale_v2
#define afb_daemon_queue_job afb_daemon_queue_job_v2
#define afb_daemon_unstore_req afb_daemon_unstore_req_v2
#define afb_daemon_require_api afb_daemon_require_api_v2
#define afb_daemon_rename_api(x) afb_daemon_add_alias_v2(0,x)
#define afb_daemon_add_alias afb_daemon_add_alias_v2
#define afb_service_call afb_service_call_v2
#define afb_service_call_sync afb_service_call_sync_v2
#define AFB_ERROR AFB_ERROR_V2
#define AFB_WARNING AFB_WARNING_V2
#define AFB_NOTICE AFB_NOTICE_V2
#define AFB_INFO AFB_INFO_V2
#define AFB_DEBUG AFB_DEBUG_V2
#define AFB_REQ_ERROR AFB_REQ_ERROR_V2
#define AFB_REQ_WARNING AFB_REQ_WARNING_V2
#define AFB_REQ_NOTICE AFB_REQ_NOTICE_V2
#define AFB_REQ_INFO AFB_REQ_INFO_V2
#define AFB_REQ_DEBUG AFB_REQ_DEBUG_V2
#define AFB_REQ_VERBOSE AFB_REQ_VERBOSE_V2
#endif
/******************************************************************************/
#if AFB_BINDING_VERSION == 2 || AFB_BINDING_VERSION == 3
#define AFB_SESSION_NONE AFB_SESSION_NONE_X2
#define AFB_SESSION_CLOSE AFB_SESSION_CLOSE_X2
#define AFB_SESSION_RENEW AFB_SESSION_REFRESH_X2
#define AFB_SESSION_REFRESH AFB_SESSION_REFRESH_X2
#define AFB_SESSION_CHECK AFB_SESSION_CHECK_X2
#define AFB_SESSION_LOA_MASK AFB_SESSION_LOA_MASK_X2
#define AFB_SESSION_LOA_0 AFB_SESSION_LOA_0_X2
#define AFB_SESSION_LOA_1 AFB_SESSION_LOA_1_X2
#define AFB_SESSION_LOA_2 AFB_SESSION_LOA_2_X2
#define AFB_SESSION_LOA_3 AFB_SESSION_LOA_3_X2
#endif
/******************************************************************************/
#if AFB_BINDING_VERSION == 2
#define AFB_SESSION_NONE_V2 AFB_SESSION_NONE_X2
#define AFB_SESSION_CLOSE_V2 AFB_SESSION_CLOSE_X2
#define AFB_SESSION_RENEW_V2 AFB_SESSION_REFRESH_X2
#define AFB_SESSION_REFRESH_V2 AFB_SESSION_REFRESH_X2
#define AFB_SESSION_CHECK_V2 AFB_SESSION_CHECK_X2
#define AFB_SESSION_LOA_MASK_V2 AFB_SESSION_LOA_MASK_X2
#define AFB_SESSION_LOA_0_V2 AFB_SESSION_LOA_0_X2
#define AFB_SESSION_LOA_1_V2 AFB_SESSION_LOA_1_X2
#define AFB_SESSION_LOA_2_V2 AFB_SESSION_LOA_2_X2
#define AFB_SESSION_LOA_3_V2 AFB_SESSION_LOA_3_X2
#endif
/******************************************************************************/
#if AFB_BINDING_VERSION == 3
#define afb_req_x2 afb_req
#define afb_req_x2_is_valid afb_req_is_valid
#define afb_req_x2_get_api afb_req_get_api
#define afb_req_x2_get_vcbdata afb_req_get_vcbdata
#define afb_req_x2_get_called_api afb_req_get_called_api
#define afb_req_x2_get_called_verb afb_req_get_called_verb
#define afb_req_x2_wants_log_level afb_req_wants_log_level
#define afb_req_x2_get afb_req_get
#define afb_req_x2_value afb_req_value
#define afb_req_x2_path afb_req_path
#define afb_req_x2_json afb_req_json
#define afb_req_x2_reply afb_req_reply
#define afb_req_x2_reply_f afb_req_reply_f
#define afb_req_x2_reply_v afb_req_reply_v
#define afb_req_success(r,o,i) afb_req_reply(r,o,0,i)
#define afb_req_success_f(r,o,...) afb_req_reply_f(r,o,0,__VA_ARGS__)
#define afb_req_success_v(r,o,f,v) afb_req_reply_v(r,o,0,f,v)
#define afb_req_fail(r,e,i) afb_req_reply(r,0,e,i)
#define afb_req_fail_f(r,e,...) afb_req_reply_f(r,0,e,__VA_ARGS__)
#define afb_req_fail_v(r,e,f,v) afb_req_reply_v(r,0,e,f,v)
#define afb_req_x2_context_get afb_req_context_get
#define afb_req_x2_context_set afb_req_context_set
#define afb_req_x2_context afb_req_context
#define afb_req_x2_context_make afb_req_context_make
#define afb_req_x2_context_clear afb_req_context_clear
#define afb_req_x2_addref afb_req_addref
#define afb_req_x2_unref afb_req_unref
#define afb_req_x2_session_close afb_req_session_close
#define afb_req_x2_session_set_LOA afb_req_session_set_LOA
#define afb_req_x2_subscribe afb_req_subscribe
#define afb_req_x2_unsubscribe afb_req_unsubscribe
#define afb_req_x2_subcall afb_req_subcall
#define afb_req_x2_subcall_legacy afb_req_subcall_legacy
#define afb_req_x2_subcall_req afb_req_subcall_req
#define afb_req_x2_subcall_sync_legacy afb_req_subcall_sync_legacy
#define afb_req_x2_subcall_sync afb_req_subcall_sync
#define afb_req_x2_verbose afb_req_verbose
#define afb_req_x2_has_permission afb_req_has_permission
#define afb_req_x2_get_application_id afb_req_get_application_id
#define afb_req_x2_get_uid afb_req_get_uid
#define afb_req_x2_get_client_info afb_req_get_client_info
#define afb_req_x2_subcall_flags afb_req_subcall_flags
#define afb_req_x2_subcall_catch_events afb_req_subcall_catch_events
#define afb_req_x2_subcall_pass_events afb_req_subcall_pass_events
#define afb_req_x2_subcall_on_behalf afb_req_subcall_on_behalf
#define afb_req_x2_subcall_api_session afb_req_subcall_api_session
#define afb_event_x2 afb_event
#define afb_event_x2_is_valid afb_event_is_valid
#define afb_event_x2_broadcast afb_event_broadcast
#define afb_event_x2_push afb_event_push
#define afb_event_x2_name afb_event_name
#define afb_event_x2_unref afb_event_unref
#define afb_event_x2_addref afb_event_addref
#define afb_api_x3 afb_api
#define afb_api_x3_name afb_api_name
#define afb_api_x3_get_userdata afb_api_get_userdata
#define afb_api_x3_set_userdata afb_api_set_userdata
#define afb_api_x3_wants_log_level afb_api_wants_log_level
#define afb_api_x3_vverbose afb_api_vverbose
#define afb_api_x3_verbose afb_api_verbose
#define afb_api_x3_get_event_loop afb_api_get_event_loop
#define afb_api_x3_get_user_bus afb_api_get_user_bus
#define afb_api_x3_get_system_bus afb_api_get_system_bus
#define afb_api_x3_rootdir_get_fd afb_api_rootdir_get_fd
#define afb_api_x3_rootdir_open_locale afb_api_rootdir_open_locale
#define afb_api_x3_queue_job afb_api_queue_job
#define afb_api_x3_require_api afb_api_require_api
#define afb_api_x3_broadcast_event afb_api_broadcast_event
#define afb_api_x3_make_event_x2 afb_api_make_event
#define afb_api_x3_call afb_api_call
#define afb_api_x3_call_sync afb_api_call_sync
#define afb_api_x3_call_legacy afb_api_call_legacy
#define afb_api_x3_call_sync_legacy afb_api_call_sync_legacy
#define afb_api_x3_new_api afb_api_new_api
#define afb_api_x3_delete_api afb_api_delete_api
#define afb_api_x3_set_verbs_v2 afb_api_set_verbs_v2
#define afb_api_x3_set_verbs_v3 afb_api_set_verbs_v3
#define afb_api_x3_add_verb afb_api_add_verb
#define afb_api_x3_del_verb afb_api_del_verb
#define afb_api_x3_on_event afb_api_on_event
#define afb_api_x3_on_init afb_api_on_init
#define afb_api_x3_seal afb_api_seal
#define afb_api_x3_add_alias afb_api_add_alias
#define afb_api_x3_event_handler_add afb_api_event_handler_add
#define afb_api_x3_event_handler_del afb_api_event_handler_del
#define afb_api_x3_require_class afb_api_require_class
#define afb_api_x3_provide_class afb_api_provide_class
#define afb_api_x3_settings afb_api_settings
#define AFB_API_ERROR AFB_API_ERROR_V3
#define AFB_API_WARNING AFB_API_WARNING_V3
#define AFB_API_NOTICE AFB_API_NOTICE_V3
#define AFB_API_INFO AFB_API_INFO_V3
#define AFB_API_DEBUG AFB_API_DEBUG_V3
#define AFB_REQ_ERROR AFB_REQ_ERROR_V3
#define AFB_REQ_WARNING AFB_REQ_WARNING_V3
#define AFB_REQ_NOTICE AFB_REQ_NOTICE_V3
#define AFB_REQ_INFO AFB_REQ_INFO_V3
#define AFB_REQ_DEBUG AFB_REQ_DEBUG_V3
#define AFB_REQ_VERBOSE AFB_REQ_VERBOSE_V3
#define afb_stored_req afb_req_x2
#define afb_req_store(x) afb_req_x2_addref(x)
#define afb_req_unstore(x) (x)
#define afb_get_verbosity afb_get_verbosity_v3
#define afb_get_logmask afb_get_logmask_v3
#define afb_get_daemon afb_get_root_api_v3
#define afb_get_service afb_get_root_api_v3
#define afb_daemon_get_event_loop afb_daemon_get_event_loop_v3
#define afb_daemon_get_user_bus afb_daemon_get_user_bus_v3
#define afb_daemon_get_system_bus afb_daemon_get_system_bus_v3
#define afb_daemon_broadcast_event afb_daemon_broadcast_event_v3
#define afb_daemon_make_event afb_daemon_make_event_v3
#define afb_daemon_verbose afb_daemon_verbose_v3
#define afb_daemon_rootdir_get_fd afb_daemon_rootdir_get_fd_v3
#define afb_daemon_rootdir_open_locale afb_daemon_rootdir_open_locale_v3
#define afb_daemon_queue_job afb_daemon_queue_job_v3
#define afb_daemon_require_api afb_daemon_require_api_v3
#define afb_daemon_add_alias afb_daemon_add_alias_v3
# define afb_service_call afb_service_call_v3
# define afb_service_call_sync afb_service_call_sync_v3
# define afb_service_call_legacy afb_service_call_legacy_v3
# define afb_service_call_sync_legacy afb_service_call_sync_legacy_v3
# define AFB_ERROR AFB_ERROR_V3
# define AFB_WARNING AFB_WARNING_V3
# define AFB_NOTICE AFB_NOTICE_V3
# define AFB_INFO AFB_INFO_V3
# define AFB_DEBUG AFB_DEBUG_V3
#endif
|