Add logging by request
[src/app-framework-binder.git] / include / afb / afb-binding-v2.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 <stdint.h>
21
22 #include "afb-auth.h"
23 #include "afb-req-itf.h"
24 #include "afb-event-itf.h"
25 #include "afb-service-common.h"
26 #include "afb-daemon-common.h"
27
28 #include "afb-session-v2.h"
29
30 struct json_object;
31
32 /*
33  * Description of one verb of the API provided by the binding
34  * This enumeration is valid for bindings of type version 2
35  */
36 struct afb_verb_v2
37 {
38         const char *verb;                       /* name of the verb */
39         void (*callback)(struct afb_req req);   /* callback function implementing the verb */
40         const struct afb_auth *auth;            /* required authorisation */
41         uint32_t session;                       /* authorisation and session requirements of the verb */
42 };
43
44 /*
45  * Description of the bindings of type version 2
46  */
47 struct afb_binding_v2
48 {
49         const char *api;                        /* api name for the binding */
50         const char *specification;              /* textual specification of the binding */
51         const struct afb_verb_v2 *verbs;        /* array of descriptions of verbs terminated by a NULL name */
52         int (*preinit)();
53         int (*init)();
54         void (*onevent)(const char *event, struct json_object *object);
55         unsigned noconcurrency: 1;              /* avoids concurrent requests to verbs */
56 };
57
58 struct afb_binding_data_v2
59 {
60         int verbosity;                  /* level of verbosity */
61         struct afb_daemon daemon;       /* access to daemon APIs */
62         struct afb_service service;     /* access to service APIs */
63 };
64
65 /*
66  * A binding V2 MUST have two exported symbols of name:
67  *
68  *            -  afbBindingV2
69  *            -  afbBindingV2data
70  *
71  */
72 #if !defined(AFB_BINDING_MAIN_NAME_V2)
73 extern const struct afb_binding_v2 afbBindingV2;
74 #endif
75
76 #if !defined(AFB_BINDING_DATA_NAME_V2)
77 #define AFB_BINDING_DATA_NAME_V2 afbBindingV2data
78 #endif
79
80 #if AFB_BINDING_VERSION != 2
81 extern
82 #endif
83 struct afb_binding_data_v2 AFB_BINDING_DATA_NAME_V2  __attribute__ ((weak));
84
85 #define afb_get_verbosity_v2()  (AFB_BINDING_DATA_NAME_V2.verbosity)
86 #define afb_get_daemon_v2()     (AFB_BINDING_DATA_NAME_V2.daemon)
87 #define afb_get_service_v2()    (AFB_BINDING_DATA_NAME_V2.service)
88
89 /*
90  * Macros for logging messages
91  */
92 #if !defined(AFB_BINDING_PRAGMA_NO_VERBOSE_MACRO)
93 # if !defined(AFB_BINDING_PRAGMA_NO_VERBOSE_DETAILS)
94 #  define _AFB_LOGGING_V2_(vlevel,llevel,...) \
95         do{ \
96                 if(AFB_BINDING_DATA_NAME_V2.verbosity>=vlevel) \
97                         afb_daemon_verbose_v2(llevel,__FILE__,__LINE__,__func__,__VA_ARGS__); \
98         }while(0)
99 #  define _AFB_REQ_LOGGING_V2_(vlevel,llevel,req,...) \
100         do{ \
101                 if(AFB_BINDING_DATA_NAME_V2.verbosity>=vlevel) \
102                         afb_req_verbose(req,llevel,__FILE__,__LINE__,__func__,__VA_ARGS__); \
103         }while(0)
104 # else
105 #  define _AFB_LOGGING_V2_(vlevel,llevel,...) \
106         do{ \
107                 if(afbBindingV2data.verbosity>=vlevel) \
108                         afb_daemon_verbose_v2(llevel,NULL,0,NULL,__VA_ARGS__); \
109         }while(0)
110 #  define _AFB_REQ_LOGGING_V2_(vlevel,llevel,req,...) \
111         do{ \
112                 if(AFB_BINDING_DATA_NAME_V2.verbosity>=vlevel) \
113                         afb_req_verbose(req,llevel,NULL,0,NULL,__VA_ARGS__); \
114         }while(0)
115 # endif
116 # define AFB_ERROR_V2(...)       _AFB_LOGGING_V2_(0,3,__VA_ARGS__)
117 # define AFB_WARNING_V2(...)     _AFB_LOGGING_V2_(1,4,__VA_ARGS__)
118 # define AFB_NOTICE_V2(...)      _AFB_LOGGING_V2_(1,5,__VA_ARGS__)
119 # define AFB_INFO_V2(...)        _AFB_LOGGING_V2_(2,6,__VA_ARGS__)
120 # define AFB_DEBUG_V2(...)       _AFB_LOGGING_V2_(3,7,__VA_ARGS__)
121 # define AFB_REQ_ERROR_V2(...)   _AFB_REQ_LOGGING_V2_(0,3,__VA_ARGS__)
122 # define AFB_REQ_WARNING_V2(...) _AFB_REQ_LOGGING_V2_(1,4,__VA_ARGS__)
123 # define AFB_REQ_NOTICE_V2(...)  _AFB_REQ_LOGGING_V2_(1,5,__VA_ARGS__)
124 # define AFB_REQ_INFO_V2(...)    _AFB_REQ_LOGGING_V2_(2,6,__VA_ARGS__)
125 # define AFB_REQ_DEBUG_V2(...)   _AFB_REQ_LOGGING_V2_(3,7,__VA_ARGS__)
126 #endif
127
128 #include "afb-daemon-v2.h"
129 #include "afb-service-v2.h"
130