[Add] tether plugin
[platform/core/connectivity/stc-manager.git] / src / stc-manager-plugin-tether.c
1 /*
2  * Copyright (c) 2016 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include <dlfcn.h>
18
19 #include "stc-manager.h"
20 #include "stc-manager-plugin-tether.h"
21
22 static gboolean stc_tether_plugin_enabled = FALSE;
23 static void *tether_plugin_handle;
24 static stc_plugin_tether_s *plugin;
25
26 int stc_plugin_tether_init(void)
27 {
28         __STC_LOG_FUNC_ENTER__;
29
30         tether_plugin_handle = dlopen(STC_PLUGIN_TETHER_FILEPATH, RTLD_NOW);
31         if (!tether_plugin_handle) {
32                 STC_LOGE("Can't load %s: %s", STC_PLUGIN_TETHER_FILEPATH, dlerror());
33                 __STC_LOG_FUNC_EXIT__;
34                 return STC_ERROR_UNINITIALIZED;
35         }
36
37         plugin = dlsym(tether_plugin_handle, "tether_plugin");
38         if (!plugin) {
39                 STC_LOGE("Can't load symbol: %s", dlerror());
40                 dlclose(tether_plugin_handle);
41                 __STC_LOG_FUNC_EXIT__;
42                 return STC_ERROR_UNINITIALIZED;
43         }
44
45         plugin->init();
46         stc_tether_plugin_enabled = TRUE;
47
48         __STC_LOG_FUNC_EXIT__;
49         return STC_ERROR_NONE;
50 }
51
52 int stc_plugin_tether_deinit(void)
53 {
54         __STC_LOG_FUNC_ENTER__;
55
56         if (!stc_tether_plugin_enabled) {
57                 __STC_LOG_FUNC_EXIT__;
58                 return STC_ERROR_UNINITIALIZED;
59         }
60
61         plugin->deinit();
62         stc_tether_plugin_enabled = FALSE;
63         dlclose(tether_plugin_handle);
64
65         __STC_LOG_FUNC_EXIT__;
66         return STC_ERROR_NONE;
67 }