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