1b78edab633d25c365ed04badde6120552fbff22
[src/app-framework-binder.git] / src / afb-api-so-vdyn.c
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 #if WITH_LEGACY_BINDING_VDYN && WITH_DYNAMIC_BINDING
19
20 #define _GNU_SOURCE
21
22 #include <stdlib.h>
23 #include <dlfcn.h>
24
25 #define AFB_BINDING_VERSION 0
26 #include <afb/afb-binding.h>
27
28 #include "afb-api-so-v3.h"
29 #include "afb-api-so-vdyn.h"
30 #include "afb-export.h"
31 #include "verbose.h"
32
33 /*
34  * names of symbols
35  */
36 static const char afb_api_so_vdyn_entry[] = "afbBindingVdyn";
37
38 static int preinit(void *closure, struct afb_api_x3 *api)
39 {
40         int (*entry)(struct afb_api_x3*) = closure;
41         return entry(api);
42 }
43
44 int afb_api_so_vdyn_add(const char *path, void *handle, struct afb_apiset *declare_set, struct afb_apiset * call_set)
45 {
46         int (*entry)(struct afb_api_x3*);
47         struct afb_export *export;
48
49         entry = dlsym(handle, afb_api_so_vdyn_entry);
50         if (!entry)
51                 return 0;
52
53         INFO("binding [%s] looks like an AFB binding Vdyn", path);
54
55         export = afb_export_create_none_for_path(declare_set, call_set, path, preinit, entry);
56         if (!export) {
57                 INFO("binding [%s] creation failed", path);
58                 return -1;
59         }
60
61         return 1;
62 }
63
64 #endif
65