Add conditionnal support of bindings version 2
[src/app-framework-binder.git] / src / afb-xreq.h
1 /*
2  * Copyright (C) 2017-2019 "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 #include <stdarg.h>
21 #include <afb/afb-req-x1-itf.h>
22 #include <afb/afb-req-x2-itf.h>
23 #include "afb-context.h"
24
25 struct json_object;
26 struct afb_evt_listener;
27 struct afb_xreq;
28 struct afb_cred;
29 struct afb_apiset;
30 struct afb_event_x2;
31 struct afb_verb_desc_v1;
32 struct afb_verb_v2;
33 struct afb_verb_v3;
34 struct afb_req_x1;
35 struct afb_stored_req;
36
37 struct afb_xreq_query_itf {
38         struct json_object *(*json)(struct afb_xreq *xreq);
39         struct afb_arg (*get)(struct afb_xreq *xreq, const char *name);
40         void (*reply)(struct afb_xreq *xreq, struct json_object *obj, const char *error, const char *info);
41         void (*unref)(struct afb_xreq *xreq);
42         int (*subscribe)(struct afb_xreq *xreq, struct afb_event_x2 *event);
43         int (*unsubscribe)(struct afb_xreq *xreq, struct afb_event_x2 *event);
44 };
45
46 /**
47  * Internal data for requests
48  */
49 struct afb_xreq
50 {
51         struct afb_req_x2 request;      /**< exported request */
52         struct afb_context context;     /**< context of the request */
53         struct afb_apiset *apiset;      /**< apiset of the xreq */
54         struct json_object *json;       /**< the json object (or NULL) */
55         const struct afb_xreq_query_itf *queryitf; /**< interface of xreq implementation functions */
56         int refcount;                   /**< current ref count */
57         int replied;                    /**< is replied? */
58 #if WITH_AFB_HOOK
59         int hookflags;                  /**< flags for hooking */
60         int hookindex;                  /**< hook index of the request if hooked */
61 #endif
62         struct afb_evt_listener *listener; /**< event listener for the request */
63         struct afb_cred *cred;          /**< client credential if revelant */
64         struct afb_xreq *caller;        /**< caller request if any */
65 };
66
67 /**
68  * Macro for retrieve the pointer of a structure of 'type' having a field named 'field'
69  * of address 'ptr'.
70  * @param type the type that has the 'field' (ex: "struct mystruct")
71  * @param field the name of the field within the structure 'type'
72  * @param ptr the pointer to an element 'field'
73  * @return the pointer to the structure that contains the 'field' at address 'ptr'
74  */
75 #define CONTAINER_OF(type,field,ptr) ((type*)(((char*)(ptr))-((char*)&(((type*)NULL)->field))))
76
77 /**
78  * Macro for retrieve the pointer of a structure of 'type' having a field named "xreq"
79  * of address 'x'.
80  * @param type the type that has the field "xreq" (ex: "struct mystruct")
81  * @param x the pointer to the field "xreq"
82  * @return the pointer to the structure that contains the field "xreq" of address 'x'
83  */
84 #define CONTAINER_OF_XREQ(type,x) CONTAINER_OF(type,xreq,x)
85
86 /* req wrappers for xreq */
87 extern struct afb_req_x1 afb_xreq_unstore(struct afb_stored_req *sreq);
88
89 extern void afb_xreq_addref(struct afb_xreq *xreq);
90 extern void afb_xreq_unref(struct afb_xreq *xreq);
91 extern void afb_xreq_unhooked_addref(struct afb_xreq *xreq);
92 extern void afb_xreq_unhooked_unref(struct afb_xreq *xreq);
93
94 extern struct json_object *afb_xreq_unhooked_json(struct afb_xreq *xreq);
95 extern struct json_object *afb_xreq_json(struct afb_xreq *xreq);
96
97 extern void afb_xreq_reply(struct afb_xreq *xreq, struct json_object *obj, const char *error, const char *info);
98 extern void afb_xreq_reply_f(struct afb_xreq *xreq, struct json_object *obj, const char *error, const char *info, ...);
99
100 extern void afb_xreq_reply_unknown_api(struct afb_xreq *xreq);
101 extern void afb_xreq_reply_unknown_verb(struct afb_xreq *xreq);
102
103 extern const char *afb_xreq_raw(struct afb_xreq *xreq, size_t *size);
104
105 extern int afb_xreq_subscribe(struct afb_xreq *xreq, struct afb_event_x2 *event);
106 extern int afb_xreq_unsubscribe(struct afb_xreq *xreq, struct afb_event_x2 *event);
107
108 extern void afb_xreq_legacy_subcall(
109                 struct afb_xreq *xreq,
110                 const char *api,
111                 const char *verb,
112                 struct json_object *args,
113                 void (*callback)(void*, int, struct json_object*, struct afb_req_x2 *),
114                 void *cb_closure);
115 extern void afb_xreq_unhooked_legacy_subcall(
116                 struct afb_xreq *xreq,
117                 const char *api,
118                 const char *verb,
119                 struct json_object *args,
120                 void (*callback)(void*, int, struct json_object*, struct afb_req_x2 *),
121                 void *cb_closure);
122
123 extern void afb_xreq_subcall(
124                 struct afb_xreq *xreq,
125                 const char *api,
126                 const char *verb,
127                 struct json_object *args,
128                 int flags,
129                 void (*callback)(void*, struct json_object*, const char*, const char*, struct afb_req_x2 *),
130                 void *closure);
131 extern void afb_xreq_unhooked_subcall(
132                 struct afb_xreq *xreq,
133                 const char *api,
134                 const char *verb,
135                 struct json_object *args,
136                 int flags,
137                 void (*callback)(void*, struct json_object*, const char*, const char*, struct afb_req_x2 *),
138                 void *closure);
139
140 extern int afb_xreq_unhooked_legacy_subcall_sync(
141                 struct afb_xreq *xreq,
142                 const char *api,
143                 const char *verb,
144                 struct json_object *args,
145                 struct json_object **result);
146 extern int afb_xreq_legacy_subcall_sync(
147                 struct afb_xreq *xreq,
148                 const char *api,
149                 const char *verb,
150                 struct json_object *args,
151                 struct json_object **result);
152
153 /* initialisation and processing of xreq */
154 extern void afb_xreq_init(struct afb_xreq *xreq, const struct afb_xreq_query_itf *queryitf);
155
156 extern void afb_xreq_process(struct afb_xreq *xreq, struct afb_apiset *apiset);
157
158 #if WITH_LEGACY_BINDING_V1
159 extern void afb_xreq_call_verb_v1(struct afb_xreq *xreq, const struct afb_verb_desc_v1 *verb);
160 #endif
161 #if WITH_LEGACY_BINDING_V2
162 extern void afb_xreq_call_verb_v2(struct afb_xreq *xreq, const struct afb_verb_v2 *verb);
163 #endif
164
165 extern void afb_xreq_call_verb_v3(struct afb_xreq *xreq, const struct afb_verb_v3 *verb);
166
167 extern const char *xreq_on_behalf_cred_export(struct afb_xreq *xreq);
168
169 /******************************************************************************/
170
171 static inline struct afb_req_x1 xreq_to_req_x1(struct afb_xreq *xreq)
172 {
173         return (struct afb_req_x1){ .itf = xreq->request.itf, .closure = &xreq->request };
174 }
175
176 static inline struct afb_req_x2 *xreq_to_req_x2(struct afb_xreq *xreq)
177 {
178         return &xreq->request;
179 }
180
181 static inline struct afb_xreq *xreq_from_req_x2(struct afb_req_x2 *req)
182 {
183         return CONTAINER_OF(struct afb_xreq, request, req);
184 }
185