Update date of copyright notices
[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 #include "afb-api-so-vdyn.h"
24 #include "afb-export.h"
25 #include "verbose.h"
26
27 /*
28  * names of symbols
29  */
30 static const char afb_api_so_vdyn_entry[] = "afbBindingVdyn";
31
32 /*
33  * Description of a binding
34  */
35 static int vdyn_preinit(void *closure, struct afb_dynapi *dynapi)
36 {
37         int (*entry)(struct afb_dynapi*) = closure;
38         return entry(dynapi);
39 }
40
41 int afb_api_so_vdyn_add(const char *path, void *handle, struct afb_apiset *apiset)
42 {
43         int rc;
44         int (*entry)(void*, struct afb_dynapi*);
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_vdyn(apiset, path, NULL);
54         if (!export) {
55                 ERROR("can't create export for %s", path);
56                 return -1;
57         }
58
59         INFO("binding [%s] calling dynamic initialisation %s", path, afb_api_so_vdyn_entry);
60         rc = afb_export_preinit_vdyn(export, vdyn_preinit, entry);
61         afb_export_destroy(export);
62         return rc < 0 ? rc : 1;
63 }
64