e173e015e60e32d0879aa0eaaace275089ed5b77
[src/app-framework-binder.git] / src / afb-trace.h
1 /*
2  * Copyright (C) 2016-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
19 #pragma once
20
21 #if !WITH_AFB_HOOK && WITH_AFB_TRACE
22 #  undef WITH_AFB_TRACE
23 #  define WITH_AFB_TRACE 0
24 #endif
25
26 #if WITH_AFB_TRACE
27
28 struct afb_trace;
29
30 extern struct afb_trace *afb_trace_create(const char *api, struct afb_session *bound);
31
32 extern void afb_trace_addref(struct afb_trace *trace);
33 extern void afb_trace_unref(struct afb_trace *trace);
34
35 extern int afb_trace_add(afb_req_t req, struct json_object *args, struct afb_trace *trace);
36 extern int afb_trace_drop(afb_req_t req, struct json_object *args, struct afb_trace *trace);
37
38 #endif
39