11e199543924691c044e6449691f612c965002a2
[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_xreq *caller;        /**< caller request if any */
63 };
64
65 /**
66  * Macro for retrieve the pointer of a structure of 'type' having a field named 'field'
67  * of address 'ptr'.
68  * @param type the type that has the 'field' (ex: "struct mystruct")
69  * @param field the name of the field within the structure 'type'
70  * @param ptr the pointer to an element 'field'
71  * @return the pointer to the structure that contains the 'field' at address 'ptr'
72  */
73 #define CONTAINER_OF(type,field,ptr) ((type*)(((char*)(ptr))-((char*)&(((type*)NULL)->field))))
74
75 /**
76  * Macro for retrieve the pointer of a structure of 'type' having a field named "xreq"
77  * of address 'x'.
78  * @param type the type that has the field "xreq" (ex: "struct mystruct")
79  * @param x the pointer to the field "xreq"
80  * @return the pointer to the structure that contains the field "xreq" of address 'x'
81  */
82 #define CONTAINER_OF_XREQ(type,x) CONTAINER_OF(type,xreq,x)
83
84 /* req wrappers for xreq */
85 extern struct afb_req_x1 afb_xreq_unstore(struct afb_stored_req *sreq);
86
87 extern void afb_xreq_addref(struct afb_xreq *xreq);
88 extern void afb_xreq_unref(struct afb_xreq *xreq);
89 extern void afb_xreq_unhooked_addref(struct afb_xreq *xreq);
90 extern void afb_xreq_unhooked_unref(struct afb_xreq *xreq);
91
92 extern struct json_object *afb_xreq_unhooked_json(struct afb_xreq *xreq);
93 extern struct json_object *afb_xreq_json(struct afb_xreq *xreq);
94
95 extern void afb_xreq_reply(struct afb_xreq *xreq, struct json_object *obj, const char *error, const char *info);
96 extern void afb_xreq_reply_f(struct afb_xreq *xreq, struct json_object *obj, const char *error, const char *info, ...);
97
98 extern int afb_xreq_reply_unknown_api(struct afb_xreq *xreq);
99 extern int afb_xreq_reply_unknown_verb(struct afb_xreq *xreq);
100
101 extern int afb_xreq_reply_invalid_token(struct afb_xreq *xreq);
102 extern int afb_xreq_reply_insufficient_scope(struct afb_xreq *xreq, const char *scope);
103
104
105 extern const char *afb_xreq_raw(struct afb_xreq *xreq, size_t *size);
106
107 extern int afb_xreq_subscribe(struct afb_xreq *xreq, struct afb_event_x2 *event);
108 extern int afb_xreq_unsubscribe(struct afb_xreq *xreq, struct afb_event_x2 *event);
109
110 extern void afb_xreq_legacy_subcall(
111                 struct afb_xreq *xreq,
112                 const char *api,
113                 const char *verb,
114                 struct json_object *args,
115                 void (*callback)(void*, int, struct json_object*, struct afb_req_x2 *),
116                 void *cb_closure);
117 extern void afb_xreq_unhooked_legacy_subcall(
118                 struct afb_xreq *xreq,
119                 const char *api,
120                 const char *verb,
121                 struct json_object *args,
122                 void (*callback)(void*, int, struct json_object*, struct afb_req_x2 *),
123                 void *cb_closure);
124
125 extern void afb_xreq_subcall(
126                 struct afb_xreq *xreq,
127                 const char *api,
128                 const char *verb,
129                 struct json_object *args,
130                 int flags,
131                 void (*callback)(void*, struct json_object*, const char*, const char*, struct afb_req_x2 *),
132                 void *closure);
133 extern void afb_xreq_unhooked_subcall(
134                 struct afb_xreq *xreq,
135                 const char *api,
136                 const char *verb,
137                 struct json_object *args,
138                 int flags,
139                 void (*callback)(void*, struct json_object*, const char*, const char*, struct afb_req_x2 *),
140                 void *closure);
141
142 extern int afb_xreq_unhooked_legacy_subcall_sync(
143                 struct afb_xreq *xreq,
144                 const char *api,
145                 const char *verb,
146                 struct json_object *args,
147                 struct json_object **result);
148 extern int afb_xreq_legacy_subcall_sync(
149                 struct afb_xreq *xreq,
150                 const char *api,
151                 const char *verb,
152                 struct json_object *args,
153                 struct json_object **result);
154
155 /* initialisation and processing of xreq */
156 extern void afb_xreq_init(struct afb_xreq *xreq, const struct afb_xreq_query_itf *queryitf);
157
158 extern void afb_xreq_process(struct afb_xreq *xreq, struct afb_apiset *apiset);
159
160 #if WITH_LEGACY_BINDING_V1
161 extern void afb_xreq_call_verb_v1(struct afb_xreq *xreq, const struct afb_verb_desc_v1 *verb);
162 #endif
163 #if WITH_LEGACY_BINDING_V2
164 extern void afb_xreq_call_verb_v2(struct afb_xreq *xreq, const struct afb_verb_v2 *verb);
165 #endif
166
167 extern void afb_xreq_call_verb_v3(struct afb_xreq *xreq, const struct afb_verb_v3 *verb);
168
169 extern const char *xreq_on_behalf_cred_export(struct afb_xreq *xreq);
170
171 /******************************************************************************/
172
173 static inline struct afb_req_x1 xreq_to_req_x1(struct afb_xreq *xreq)
174 {
175         return (struct afb_req_x1){ .itf = xreq->request.itf, .closure = &xreq->request };
176 }
177
178 static inline struct afb_req_x2 *xreq_to_req_x2(struct afb_xreq *xreq)
179 {
180         return &xreq->request;
181 }
182
183 static inline struct afb_xreq *xreq_from_req_x2(struct afb_req_x2 *req)
184 {
185         return CONTAINER_OF(struct afb_xreq, request, req);
186 }
187