6b6c8b70c7767fadab3d12f3b65b38265be712a0
[src/app-framework-binder.git] / include / afb / afb-req-itf.h
1 /*
2  * Copyright (C) 2016, 2017 "IoT.bzh"
3  * Author: José Bollo <jose.bollo@iot.bzh>
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *   http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */
17
18 #pragma once
19
20 #if !defined(_GNU_SOURCE)
21 # error "_GNU_SOURCE must be defined for using vasprintf"
22 #endif
23
24 #include <stdlib.h>
25 #include <stdarg.h>
26 #include <stdio.h>
27
28 #include "afb-event-itf.h"
29
30 /* avoid inclusion of <json-c/json.h> */
31 struct json_object;
32
33 /*
34  * Describes an argument (or parameter) of a request
35  */
36 struct afb_arg {
37         const char *name;       /* name of the argument or NULL if invalid */
38         const char *value;      /* string representation of the value of the argument */
39                                 /* original filename of the argument if path != NULL */
40         const char *path;       /* if not NULL, path of the received file for the argument */
41                                 /* when the request is finalized this file is removed */
42 };
43
44 /*
45  * Interface for handling requests.
46  * It records the functions to be called for the request.
47  * Don't use this structure directly.
48  * Use the helper functions documented below.
49  */
50 struct afb_req_itf {
51         /* CAUTION: respect the order, add at the end */
52
53         struct json_object *(*json)(void *closure);
54         struct afb_arg (*get)(void *closure, const char *name);
55
56         void (*success)(void *closure, struct json_object *obj, const char *info);
57         void (*fail)(void *closure, const char *status, const char *info);
58
59         const char *(*raw)(void *closure, size_t *size);
60         void (*send)(void *closure, const char *buffer, size_t size);
61
62         void *(*context_get)(void *closure);
63         void (*context_set)(void *closure, void *value, void (*free_value)(void*));
64
65         void (*addref)(void *closure);
66         void (*unref)(void *closure);
67
68         void (*session_close)(void *closure);
69         int (*session_set_LOA)(void *closure, unsigned level);
70
71         int (*subscribe)(void *closure, struct afb_event event);
72         int (*unsubscribe)(void *closure, struct afb_event event);
73
74         void (*subcall)(void *closure, const char *api, const char *verb, struct json_object *args, void (*callback)(void*, int, struct json_object*), void *cb_closure);
75 };
76
77 /*
78  * Describes the request by bindings from afb-daemon
79  */
80 struct afb_req {
81         const struct afb_req_itf *itf;  /* the interface to use */
82         void *closure;                  /* the closure argument for functions of 'itf' */
83 };
84
85 /*
86  * Checks wether the request 'req' is valid or not.
87  *
88  * Returns 0 if not valid or 1 if valid.
89  */
90 static inline int afb_req_is_valid(struct afb_req req)
91 {
92         return req.itf != NULL;
93 }
94
95 /*
96  * Gets from the request 'req' the argument of 'name'.
97  * Returns a PLAIN structure of type 'struct afb_arg'.
98  * When the argument of 'name' is not found, all fields of result are set to NULL.
99  * When the argument of 'name' is found, the fields are filled,
100  * in particular, the field 'result.name' is set to 'name'.
101  *
102  * There is a special name value: the empty string.
103  * The argument of name "" is defined only if the request was made using
104  * an HTTP POST of Content-Type "application/json". In that case, the
105  * argument of name "" receives the value of the body of the HTTP request.
106  */
107 static inline struct afb_arg afb_req_get(struct afb_req req, const char *name)
108 {
109         return req.itf->get(req.closure, name);
110 }
111
112 /*
113  * Gets from the request 'req' the string value of the argument of 'name'.
114  * Returns NULL if when there is no argument of 'name'.
115  * Returns the value of the argument of 'name' otherwise.
116  *
117  * Shortcut for: afb_req_get(req, name).value
118  */
119 static inline const char *afb_req_value(struct afb_req req, const char *name)
120 {
121         return afb_req_get(req, name).value;
122 }
123
124 /*
125  * Gets from the request 'req' the path for file attached to the argument of 'name'.
126  * Returns NULL if when there is no argument of 'name' or when there is no file.
127  * Returns the path of the argument of 'name' otherwise.
128  *
129  * Shortcut for: afb_req_get(req, name).path
130  */
131 static inline const char *afb_req_path(struct afb_req req, const char *name)
132 {
133         return afb_req_get(req, name).path;
134 }
135
136 /*
137  * Gets from the request 'req' the json object hashing the arguments.
138  * The returned object must not be released using 'json_object_put'.
139  */
140 static inline struct json_object *afb_req_json(struct afb_req req)
141 {
142         return req.itf->json(req.closure);
143 }
144
145 /*
146  * Sends a reply of kind success to the request 'req'.
147  * The status of the reply is automatically set to "success".
148  * Its send the object 'obj' (can be NULL) with an
149  * informationnal comment 'info (can also be NULL).
150  *
151  * For convenience, the function calls 'json_object_put' for 'obj'.
152  * Thus, in the case where 'obj' should remain available after
153  * the function returns, the function 'json_object_get' shall be used.
154  */
155 static inline void afb_req_success(struct afb_req req, struct json_object *obj, const char *info)
156 {
157         req.itf->success(req.closure, obj, info);
158 }
159
160 /*
161  * Same as 'afb_req_success' but the 'info' is a formatting
162  * string followed by arguments.
163  *
164  * For convenience, the function calls 'json_object_put' for 'obj'.
165  * Thus, in the case where 'obj' should remain available after
166  * the function returns, the function 'json_object_get' shall be used.
167  */
168 static inline void afb_req_success_f(struct afb_req req, struct json_object *obj, const char *info, ...)
169 {
170         char *message;
171         va_list args;
172         va_start(args, info);
173         if (info == NULL || vasprintf(&message, info, args) < 0)
174                 message = NULL;
175         va_end(args);
176         afb_req_success(req, obj, message);
177         free(message);
178 }
179
180 /*
181  * Sends a reply of kind failure to the request 'req'.
182  * The status of the reply is set to 'status' and an
183  * informationnal comment 'info' (can also be NULL) can be added.
184  *
185  * Note that calling afb_req_fail("success", info) is equivalent
186  * to call afb_req_success(NULL, info). Thus even if possible it
187  * is strongly recommanded to NEVER use "success" for status.
188  *
189  * For convenience, the function calls 'json_object_put' for 'obj'.
190  * Thus, in the case where 'obj' should remain available after
191  * the function returns, the function 'json_object_get' shall be used.
192  */
193 static inline void afb_req_fail(struct afb_req req, const char *status, const char *info)
194 {
195         req.itf->fail(req.closure, status, info);
196 }
197
198 /*
199  * Same as 'afb_req_fail' but the 'info' is a formatting
200  * string followed by arguments.
201  *
202  * For convenience, the function calls 'json_object_put' for 'obj'.
203  * Thus, in the case where 'obj' should remain available after
204  * the function returns, the function 'json_object_get' shall be used.
205  */
206 static inline void afb_req_fail_f(struct afb_req req, const char *status, const char *info, ...)
207 {
208         char *message;
209         va_list args;
210         va_start(args, info);
211         if (info == NULL || vasprintf(&message, info, args) < 0)
212                 message = NULL;
213         va_end(args);
214         afb_req_fail(req, status, message);
215         free(message);
216 }
217
218 /*
219  * Gets the pointer stored by the binding for the session of 'req'.
220  * When the binding has not yet recorded a pointer, NULL is returned.
221  */
222 static inline void *afb_req_context_get(struct afb_req req)
223 {
224         return req.itf->context_get(req.closure);
225 }
226
227 /*
228  * Stores for the binding the pointer 'context' to the session of 'req'.
229  * The function 'free_context' will be called when the session is closed
230  * or if binding stores an other pointer.
231  */
232 static inline void afb_req_context_set(struct afb_req req, void *context, void (*free_context)(void*))
233 {
234         req.itf->context_set(req.closure, context, free_context);
235 }
236
237 /*
238  * Gets the pointer stored by the binding for the session of 'req'.
239  * If the stored pointer is NULL, indicating that no pointer was
240  * already stored, afb_req_context creates a new context by calling
241  * the function 'create_context' and stores it with the freeing function
242  * 'free_context'.
243  */
244 static inline void *afb_req_context(struct afb_req req, void *(*create_context)(), void (*free_context)(void*))
245 {
246         void *result = afb_req_context_get(req);
247         if (result == NULL) {
248                 result = create_context();
249                 afb_req_context_set(req, result, free_context);
250         }
251         return result;
252 }
253
254 /*
255  * Frees the pointer stored by the binding for the session of 'req'
256  * and sets it to NULL.
257  *
258  * Shortcut for: afb_req_context_set(req, NULL, NULL)
259  */
260 static inline void afb_req_context_clear(struct afb_req req)
261 {
262         afb_req_context_set(req, NULL, NULL);
263 }
264
265 /*
266  * Adds one to the count of references of 'req'.
267  * This function MUST be called by asynchronous implementations
268  * of verbs if no reply was sent before returning.
269  */
270 static inline void afb_req_addref(struct afb_req req)
271 {
272         req.itf->addref(req.closure);
273 }
274
275 /*
276  * Substracts one to the count of references of 'req'.
277  * This function MUST be called by asynchronous implementations
278  * of verbs after sending the asynchronous reply.
279  */
280 static inline void afb_req_unref(struct afb_req req)
281 {
282         req.itf->unref(req.closure);
283 }
284
285 /*
286  * Closes the session associated with 'req'
287  * and delete all associated contexts.
288  */
289 static inline void afb_req_session_close(struct afb_req req)
290 {
291         req.itf->session_close(req.closure);
292 }
293
294 /*
295  * Sets the level of assurance of the session of 'req'
296  * to 'level'. The effect of this function is subject of
297  * security policies.
298  * Returns 1 on success or 0 if failed.
299  */
300 static inline int afb_req_session_set_LOA(struct afb_req req, unsigned level)
301 {
302         return req.itf->session_set_LOA(req.closure, level);
303 }
304
305 /*
306  * Stores 'req' on heap for asynchrnous use.
307  * Returns a pointer to the stored 'req' or NULL on memory depletion.
308  * The count of reference to 'req' is incremented on success
309  * (see afb_req_addref).
310  */
311 static inline struct afb_req *afb_req_store(struct afb_req req)
312 {
313         struct afb_req *result = (struct afb_req*)malloc(sizeof *result);
314         if (result != NULL) {
315                 *result = req;
316                 afb_req_addref(req);
317         }
318         return result;
319 }
320
321 /*
322  * Retrieves the afb_req stored at 'req' and frees the memory.
323  * Returns the stored request.
324  * The count of reference is UNCHANGED, thus, normally, the
325  * function 'afb_req_unref' should be called on the result
326  * after that the asynchronous reply if sent.
327  */
328 static inline struct afb_req afb_req_unstore(struct afb_req *req)
329 {
330         struct afb_req result = *req;
331         free(req);
332         return result;
333 }
334
335 /*
336  * Establishes for the client link identified by 'req' a subscription
337  * to the 'event'.
338  * Returns 0 in case of successful subscription or -1 in case of error.
339  */
340 static inline int afb_req_subscribe(struct afb_req req, struct afb_event event)
341 {
342         return req.itf->subscribe(req.closure, event);
343 }
344
345 /*
346  * Revokes the subscription established to the 'event' for the client
347  * link identified by 'req'.
348  * Returns 0 in case of successful subscription or -1 in case of error.
349  */
350 static inline int afb_req_unsubscribe(struct afb_req req, struct afb_event event)
351 {
352         return req.itf->unsubscribe(req.closure, event);
353 }
354
355 /*
356  * Makes a call to the method of name 'api' / 'verb' with the object 'args'.
357  * This call is made in the context of the request 'req'.
358  * On completion, the function 'callback' is invoked with the
359  * 'closure' given at call and two other parameters: 'iserror' and 'result'.
360  * 'iserror' is a boolean that indicates if the reply is an error reply.
361  * 'result' is the json object of the reply.
362  */
363 static inline void afb_req_subcall(struct afb_req req, const char *api, const char *verb, struct json_object *args, void (*callback)(void *closure, int iserror, struct json_object *result), void *closure)
364 {
365         req.itf->subcall(req.closure, api, verb, args, callback, closure);
366 }
367
368 /* internal use */
369 static inline const char *afb_req_raw(struct afb_req req, size_t *size)
370 {
371         return req.itf->raw(req.closure, size);
372 }
373
374 /* internal use */
375 static inline void afb_req_send(struct afb_req req, const char *buffer, size_t size)
376 {
377         req.itf->send(req.closure, buffer, size);
378 }
379