5767c8539a39d503418363848a5fb2451351be56
[src/app-framework-binder.git] / include / afb / afb-req-itf.h
1 /*
2  * Copyright (C) 2016 "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 /* avoid inclusion of <json-c/json.h> */
29 struct json_object;
30
31 /*
32  * Describes an argument (or parameter) of a request
33  */
34 struct afb_arg {
35         const char *name;       /* name of the argument or NULL if invalid */
36         const char *value;      /* string representation of the value of the argument */
37                                 /* original filename of the argument if path != NULL */
38         const char *path;       /* if not NULL, path of the received file for the argument */
39                                 /* when the request is finalized this file is removed */
40 };
41
42 /*
43  * Interface for handling requests.
44  * It records the functions to be called for the request.
45  * Don't use this structure directly.
46  * Use the helper functions documented below.
47  */ 
48 struct afb_req_itf {
49         /* CAUTION: respect the order, add at the end */
50
51         struct json_object *(*json)(void *closure);
52         struct afb_arg (*get)(void *closure, const char *name);
53
54         void (*success)(void *closure, struct json_object *obj, const char *info);
55         void (*fail)(void *closure, const char *status, const char *info);
56
57         const char *(*raw)(void *closure, size_t *size);
58         void (*send)(void *closure, const char *buffer, size_t size);
59
60         void *(*context_get)(void *closure);
61         void (*context_set)(void *closure, void *value, void (*free_value)(void*));
62
63         void (*addref)(void *closure);
64         void (*unref)(void *closure);
65
66         void (*session_close)(void *closure);
67         int (*session_set_LOA)(void *closure, unsigned level);
68 };
69
70 /*
71  * Describes the request by plugins from afb-daemon
72  */
73 struct afb_req {
74         const struct afb_req_itf *itf;  /* the interface to use */
75         void *closure;                  /* the closure argument for functions of 'itf' */
76 };
77
78 /*
79  * Gets from the request 'req' the argument of 'name'.
80  * Returns a PLAIN structure of type 'struct afb_arg'.
81  * When the argument of 'name' is not found, all fields of result are set to NULL.
82  * When the argument of 'name' is found, the fields are filled,
83  * in particular, the field 'result.name' is set to 'name'.
84  *
85  * There is a special name value: the empty string.
86  * The argument of name "" is defined only if the request was made using
87  * an HTTP POST of Content-Type "application/json". In that case, the
88  * argument of name "" receives the value of the body of the HTTP request.
89  */
90 static inline struct afb_arg afb_req_get(struct afb_req req, const char *name)
91 {
92         return req.itf->get(req.closure, name);
93 }
94
95 /*
96  * Gets from the request 'req' the string value of the argument of 'name'.
97  * Returns NULL if when there is no argument of 'name'.
98  * Returns the value of the argument of 'name' otherwise.
99  *
100  * Shortcut for: afb_req_get(req, name).value
101  */
102 static inline const char *afb_req_value(struct afb_req req, const char *name)
103 {
104         return afb_req_get(req, name).value;
105 }
106
107 /*
108  * Gets from the request 'req' the path for file attached to the argument of 'name'.
109  * Returns NULL if when there is no argument of 'name' or when there is no file.
110  * Returns the path of the argument of 'name' otherwise.
111  *
112  * Shortcut for: afb_req_get(req, name).path
113  */
114 static inline const char *afb_req_path(struct afb_req req, const char *name)
115 {
116         return afb_req_get(req, name).path;
117 }
118
119 /*
120  * Gets from the request 'req' the json object hashing the arguments.
121  * The returned object must not be released using 'json_object_put'.
122  */
123 static inline struct json_object *afb_req_json(struct afb_req req)
124 {
125         return req.itf->json(req.closure);
126 }
127
128 /*
129  * Sends a reply of kind success to the request 'req'.
130  * The status of the reply is automatically set to "success".
131  * Its send the object 'obj' (can be NULL) with an
132  * informationnal comment 'info (can also be NULL).
133  */
134 static inline void afb_req_success(struct afb_req req, struct json_object *obj, const char *info)
135 {
136         req.itf->success(req.closure, obj, info);
137 }
138
139 /*
140  * Same as 'afb_req_success' but the 'info' is a formatting
141  * string followed by arguments.
142  */
143 static inline void afb_req_success_f(struct afb_req req, struct json_object *obj, const char *info, ...)
144 {
145         char *message;
146         va_list args;
147         va_start(args, info);
148         if (info == NULL || vasprintf(&message, info, args) < 0)
149                 message = NULL;
150         va_end(args);
151         afb_req_success(req, obj, message);
152         free(message);
153 }
154
155 /*
156  * Sends a reply of kind failure to the request 'req'.
157  * The status of the reply is set to 'status' and an
158  * informationnal comment 'info' (can also be NULL) can be added.
159  *
160  * Note that calling afb_req_fail("success", info) is equivalent
161  * to call afb_req_success(NULL, info). Thus even if possible it
162  * is strongly recommanded to NEVER use "success" for status.
163  */
164 static inline void afb_req_fail(struct afb_req req, const char *status, const char *info)
165 {
166         req.itf->fail(req.closure, status, info);
167 }
168
169 /*
170  * Same as 'afb_req_fail' but the 'info' is a formatting
171  * string followed by arguments.
172  */
173 static inline void afb_req_fail_f(struct afb_req req, const char *status, const char *info, ...)
174 {
175         char *message;
176         va_list args;
177         va_start(args, info);
178         if (info == NULL || vasprintf(&message, info, args) < 0)
179                 message = NULL;
180         va_end(args);
181         afb_req_fail(req, status, message);
182         free(message);
183 }
184
185 /*
186  * Gets the pointer stored by the plugin for the session of 'req'.
187  * When the plugin has not yet recorded a pointer, NULL is returned.
188  */
189 static inline void *afb_req_context_get(struct afb_req req)
190 {
191         return req.itf->context_get(req.closure);
192 }
193
194 /*
195  * Stores for the plugin the pointer 'context' to the session of 'req'.
196  * The function 'free_context' will be called when the session is closed
197  * or if plugin stores an other pointer.
198  */
199 static inline void afb_req_context_set(struct afb_req req, void *context, void (*free_context)(void*))
200 {
201         req.itf->context_set(req.closure, context, free_context);
202 }
203
204 /*
205  * Gets the pointer stored by the plugin for the session of 'req'.
206  * If the stored pointer is NULL, indicating that no pointer was
207  * already stored, afb_req_context creates a new context by calling
208  * the function 'create_context' and stores it with the freeing function
209  * 'free_context'.
210  */
211 static inline void *afb_req_context(struct afb_req req, void *(*create_context)(), void (*free_context)(void*))
212 {
213         void *result = afb_req_context_get(req);
214         if (result == NULL) {
215                 result = create_context();
216                 afb_req_context_set(req, result, free_context);
217         }
218         return result;
219 }
220
221 /*
222  * Frees the pointer stored by the plugin for the session of 'req'
223  * and sets it to NULL.
224  *
225  * Shortcut for: afb_req_context_set(req, NULL, NULL)
226  */
227 static inline void afb_req_context_clear(struct afb_req req)
228 {
229         afb_req_context_set(req, NULL, NULL);
230 }
231
232 /*
233  * Adds one to the count of references of 'req'.
234  * This function MUST be called by asynchronous implementations
235  * of verbs if no reply was sent before returning.
236  */
237 static inline void afb_req_addref(struct afb_req req)
238 {
239         req.itf->addref(req.closure);
240 }
241
242 /*
243  * Substracts one to the count of references of 'req'.
244  * This function MUST be called by asynchronous implementations
245  * of verbs after sending the asynchronous reply.
246  */
247 static inline void afb_req_unref(struct afb_req req)
248 {
249         req.itf->unref(req.closure);
250 }
251
252 /*
253  * Closes the session associated with 'req'
254  * and delete all associated contexts.
255  */
256 static inline void afb_req_session_close(struct afb_req req)
257 {
258         req.itf->session_close(req.closure);
259 }
260
261 /*
262  * Sets the level of assurance of the session of 'req'
263  * to 'level'. The effect of this function is subject of
264  * security policies.
265  * Returns 1 on success or 0 if failed.
266  */
267 static inline int afb_req_session_set_LOA(struct afb_req req, unsigned level)
268 {
269         return req.itf->session_set_LOA(req.closure, level);
270 }
271
272 /*
273  * Stores 'req' on heap for asynchrnous use.
274  * Returns a pointer to the stored 'req' or NULL on memory depletion.
275  * The count of reference to 'req' is incremented on success
276  * (see afb_req_addref).
277  */
278 static inline struct afb_req *afb_req_store(struct afb_req req)
279 {
280         struct afb_req *result = malloc(sizeof *result);
281         if (result != NULL) {
282                 *result = req;
283                 afb_req_addref(req);
284         }
285         return result;
286 }
287
288 /*
289  * Retrieves the afb_req stored at 'req' and frees the memory.
290  * Returns the stored request.
291  * The count of reference is UNCHANGED, thus, normally, the
292  * function 'afb_req_unref' should be called on the result
293  * after that the asynchronous reply if sent.
294  */
295 static inline struct afb_req afb_req_unstore(struct afb_req *req)
296 {
297         struct afb_req result = *req;
298         free(req);
299         return result;
300 }
301
302 /* internal use */
303 static inline const char *afb_req_raw(struct afb_req req, size_t *size)
304 {
305         return req.itf->raw(req.closure, size);
306 }
307
308 /* internal use */
309 static inline void afb_req_send(struct afb_req req, const char *buffer, size_t size)
310 {
311         req.itf->send(req.closure, buffer, size);
312 }
313