typo
[src/app-framework-binder.git] / include / afb / afb-binding.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 #include <stdarg.h>
21
22 /*****************************************************************************
23  * This files is the main file to include for writing bindings dedicated to
24  *
25  *                      AFB-DAEMON
26  *
27  * Functions of bindings of afb-daemon are accessible by authorized clients
28  * through the apis module of afb-daemon.
29  *
30  * A binding is a shared library. This shared library must have at least one
31  * exported symbol for being registered in afb-daemon.
32  *
33  */
34
35 /*
36  * Some function of the library are exported to afb-daemon.
37  */
38
39 #include "afb-event-itf.h"
40 #include "afb-req-itf.h"
41 #include "afb-service-itf.h"
42 #include "afb-binding-v1.h"
43 #include "afb-binding-v2.h"
44
45 /*
46  * config mode
47  */
48 enum afb_mode {
49         AFB_MODE_LOCAL = 0,     /* run locally */
50         AFB_MODE_REMOTE,        /* run remotely */
51         AFB_MODE_GLOBAL         /* run either remotely or locally (DONT USE! reserved for future) */
52 };
53
54 /* declaration of features of libsystemd */
55 struct sd_event;
56 struct sd_bus;
57
58 /*
59  * Definition of the facilities provided by the daemon.
60  */
61 struct afb_daemon_itf {
62         int (*event_broadcast)(void *closure, const char *name, struct json_object *object); /* broadcasts evant 'name' with 'object' */
63         struct sd_event *(*get_event_loop)(void *closure);      /* gets the common systemd's event loop */
64         struct sd_bus *(*get_user_bus)(void *closure);          /* gets the common systemd's user d-bus */
65         struct sd_bus *(*get_system_bus)(void *closure);        /* gets the common systemd's system d-bus */
66         void (*vverbose)(void*closure, int level, const char *file, int line, const char *fmt, va_list args);
67         struct afb_event (*event_make)(void *closure, const char *name); /* creates an event of 'name' */
68         int (*rootdir_get_fd)(void *closure);
69         int (*rootdir_open_locale)(void *closure, const char *filename, int flags, const char *locale);
70 };
71
72 /*
73  * Structure for accessing daemon.
74  * See also: afb_daemon_get_event_sender, afb_daemon_get_event_loop, afb_daemon_get_user_bus, afb_daemon_get_system_bus
75  */
76 struct afb_daemon {
77         const struct afb_daemon_itf *itf;       /* the interfacing functions */
78         void *closure;                          /* the closure when calling these functions */
79 };
80
81 /*
82  * Interface between the daemon and the binding.
83  */
84 struct afb_binding_interface
85 {
86         struct afb_daemon daemon;       /* access to the daemon facilies */
87         int verbosity;                  /* level of verbosity */
88         enum afb_mode mode;             /* run mode (local or remote) */
89 };
90
91 /*
92  * Retrieves the common systemd's event loop of AFB
93  * 'daemon' MUST be the daemon given in interface when activating the binding.
94  */
95 static inline struct sd_event *afb_daemon_get_event_loop(struct afb_daemon daemon)
96 {
97         return daemon.itf->get_event_loop(daemon.closure);
98 }
99
100 /*
101  * Retrieves the common systemd's user/session d-bus of AFB
102  * 'daemon' MUST be the daemon given in interface when activating the binding.
103  */
104 static inline struct sd_bus *afb_daemon_get_user_bus(struct afb_daemon daemon)
105 {
106         return daemon.itf->get_user_bus(daemon.closure);
107 }
108
109 /*
110  * Retrieves the common systemd's system d-bus of AFB
111  * 'daemon' MUST be the daemon given in interface when activating the binding.
112  */
113 static inline struct sd_bus *afb_daemon_get_system_bus(struct afb_daemon daemon)
114 {
115         return daemon.itf->get_system_bus(daemon.closure);
116 }
117
118 /*
119  * Broadcasts widely the event of 'name' with the data 'object'.
120  * 'object' can be NULL.
121  * 'daemon' MUST be the daemon given in interface when activating the binding.
122  *
123  * For convenience, the function calls 'json_object_put' for 'object'.
124  * Thus, in the case where 'object' should remain available after
125  * the function returns, the function 'json_object_get' shall be used.
126  *
127  * Returns the count of clients that received the event.
128  */
129 static inline int afb_daemon_broadcast_event(struct afb_daemon daemon, const char *name, struct json_object *object)
130 {
131         return daemon.itf->event_broadcast(daemon.closure, name, object);
132 }
133
134 /*
135  * Creates an event of 'name' and returns it.
136  * 'daemon' MUST be the daemon given in interface when activating the binding.
137  */
138 static inline struct afb_event afb_daemon_make_event(struct afb_daemon daemon, const char *name)
139 {
140         return daemon.itf->event_make(daemon.closure, name);
141 }
142
143 /*
144  * Send a message described by 'fmt' and following parameters
145  * to the journal for the verbosity 'level'.
146  * 'file' and 'line' are indicators of position of the code in source files.
147  * 'daemon' MUST be the daemon given in interface when activating the binding.
148  */
149 static inline void afb_daemon_verbose(struct afb_daemon daemon, int level, const char *file, int line, const char *fmt, ...) __attribute__((format(printf, 5, 6)));
150 static inline void afb_daemon_verbose(struct afb_daemon daemon, int level, const char *file, int line, const char *fmt, ...)
151 {
152         va_list args;
153         va_start(args, fmt);
154         daemon.itf->vverbose(daemon.closure, level, file, line, fmt, args);
155         va_end(args);
156 }
157
158 /*
159  * Macros for logging messages
160  */
161 #if !defined(NO_BINDING_VERBOSE_MACRO)
162 # if !defined(NO_BINDING_FILE_LINE_INDICATION)
163 #  define ERROR(itf,...)   do{if(itf->verbosity>=0)afb_daemon_verbose(itf->daemon,3,__FILE__,__LINE__,__VA_ARGS__);}while(0)
164 #  define WARNING(itf,...) do{if(itf->verbosity>=1)afb_daemon_verbose(itf->daemon,4,__FILE__,__LINE__,__VA_ARGS__);}while(0)
165 #  define NOTICE(itf,...)  do{if(itf->verbosity>=1)afb_daemon_verbose(itf->daemon,5,__FILE__,__LINE__,__VA_ARGS__);}while(0)
166 #  define INFO(itf,...)    do{if(itf->verbosity>=2)afb_daemon_verbose(itf->daemon,6,__FILE__,__LINE__,__VA_ARGS__);}while(0)
167 #  define DEBUG(itf,...)   do{if(itf->verbosity>=3)afb_daemon_verbose(itf->daemon,7,__FILE__,__LINE__,__VA_ARGS__);}while(0)
168 # else
169 #  define ERROR(itf,...)   do{if(itf->verbosity>=0)afb_daemon_verbose(itf->daemon,3,NULL,0,__VA_ARGS__);}while(0)
170 #  define WARNING(itf,...) do{if(itf->verbosity>=1)afb_daemon_verbose(itf->daemon,4,NULL,0,__VA_ARGS__);}while(0)
171 #  define NOTICE(itf,...)  do{if(itf->verbosity>=1)afb_daemon_verbose(itf->daemon,5,NULL,0,__VA_ARGS__);}while(0)
172 #  define INFO(itf,...)    do{if(itf->verbosity>=2)afb_daemon_verbose(itf->daemon,6,NULL,0,__VA_ARGS__);}while(0)
173 #  define DEBUG(itf,...)   do{if(itf->verbosity>=3)afb_daemon_verbose(itf->daemon,7,NULL,0,__VA_ARGS__);}while(0)
174 # endif
175 #endif
176
177 /*
178  * Get the root directory file descriptor. This file descriptor can
179  * be used with functions 'openat', 'fstatat', ...
180  */
181 static inline int afb_daemon_rootdir_get_fd(struct afb_daemon daemon)
182 {
183         return daemon.itf->rootdir_get_fd(daemon.closure);
184 }
185
186 /*
187  * Opens 'filename' within the root directory with 'flags' (see function openat)
188  * using the 'locale' definition (example: "jp,en-US") that can be NULL.
189  * Returns the file descriptor or -1 in case of error.
190  */
191 static inline int afb_daemon_rootdir_open_locale(struct afb_daemon daemon, const char *filename, int flags, const char *locale)
192 {
193         return daemon.itf->rootdir_open_locale(daemon.closure, filename, flags, locale);
194 }
195
196