2 * Copyright (C) 2016 "IoT.bzh"
3 * Author: José Bollo <jose.bollo@iot.bzh>
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
9 * http://www.apache.org/licenses/LICENSE-2.0
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.
20 /* avoid inclusion of <json-c/json.h> */
24 * Interface for handling requests.
25 * It records the functions to be called for the request.
26 * Don't use this structure directly.
27 * Use the helper functions documented below.
29 struct afb_event_itf {
30 /* CAUTION: respect the order, add at the end */
32 int (*broadcast)(void *closure, struct json_object *obj);
33 int (*push)(void *closure, struct json_object *obj);
34 void (*drop)(void *closure);
38 * Describes the request by plugins from afb-daemon
41 const struct afb_event_itf *itf; /* the interface to use */
42 void *closure; /* the closure argument for functions of 'itf' */
46 * Broadcasts widely the 'event' with the data 'object'.
47 * 'object' can be NULL.
49 * For conveniency, the function calls 'json_object_put' for 'object'.
50 * Thus, in the case where 'object' should remain available after
51 * the function returns, the function 'json_object_get' shall be used.
53 * Returns the count of clients that received the event.
55 static inline int afb_event_broadcast(struct afb_event event, struct json_object *object)
57 return event.itf->broadcast(event.closure, object);
61 * Pushes the 'event' with the data 'object' to its obeservers.
62 * 'object' can be NULL.
64 * For conveniency, the function calls 'json_object_put' for 'object'.
65 * Thus, in the case where 'object' should remain available after
66 * the function returns, the function 'json_object_get' shall be used.
68 * Returns the count of clients that received the event.
70 static inline int afb_event_push(struct afb_event event, struct json_object *object)
72 return event.itf->push(event.closure, object);
76 * Drops the data associated to the event
77 * After calling this function, the event
78 * MUST NOT BE USED ANYMORE.
80 static inline void afb_event_drop(struct afb_event event)
82 event.itf->drop(event.closure);