Add plugin api to add native dll searching path (#343)
[platform/core/dotnet/launcher.git] / NativeLauncher / util / plugin_manager.cc
1 /*
2  * Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved
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 "plugin_manager.h"
20 #include "utils.h"
21 #include "log.h"
22
23 static PluginFunc* __pluginFunc = NULL;
24 static void* __pluginLib;
25 bool initializedPluginManager = false;
26
27 int initializePluginManager(const char* appType)
28 {
29         if (initializedPluginManager) {
30                 _INFO("Plugin manager already initialized");
31                 return 0;
32         }
33
34         if (isFile(PLUGIN_PATH)) {
35                 __pluginLib = dlopen(PLUGIN_PATH, RTLD_NOW | RTLD_LOCAL | RTLD_NODELETE);
36                 if (__pluginLib) {
37                         __pluginFunc = (PluginFunc*)calloc(sizeof(PluginFunc), 1);
38                         if (!__pluginFunc) {
39                                 _ERR("fail to allocate memory for plugin function structure");
40                                 dlclose(__pluginLib);
41                                 __pluginLib = NULL;
42                                 return -1;
43                         }
44                         __pluginFunc->initialize = (plugin_initialize_ptr)dlsym(__pluginLib, "plugin_initialize");
45                         __pluginFunc->preload = (plugin_preload_ptr)dlsym(__pluginLib, "plugin_preload");
46                         __pluginFunc->has_log_control = (plugin_has_log_control_ptr)dlsym(__pluginLib, "plugin_has_log_control");
47                         __pluginFunc->set_app_info = (plugin_set_app_info_ptr)dlsym(__pluginLib, "plugin_set_app_info");
48                         __pluginFunc->set_coreclr_info = (plugin_set_coreclr_info_ptr)dlsym(__pluginLib, "plugin_set_coreclr_info");
49                         __pluginFunc->get_dll_path = (plugin_get_dll_path_ptr)dlsym(__pluginLib, "plugin_get_dll_path");
50                         __pluginFunc->get_native_dll_searching_path = (plugin_get_native_dll_searching_path_ptr)dlsym(__pluginLib, "plugin_get_native_dll_searching_path");
51                         __pluginFunc->get_tpa = (plugin_get_tpa_ptr)dlsym(__pluginLib, "plugin_get_tpa");
52                         __pluginFunc->before_execute = (plugin_before_execute_ptr)dlsym(__pluginLib, "plugin_before_execute");
53                         __pluginFunc->finalize  = (plugin_finalize_ptr)dlsym(__pluginLib, "plugin_finalize");
54                 }
55
56                 if (__pluginFunc->initialize)
57                         __pluginFunc->initialize(appType);
58         }
59
60         _INFO("Plugin manager initialize success : appType(%s)", appType);
61
62         initializedPluginManager = true;
63         return 0;
64 }
65
66 void finalizePluginManager()
67 {
68         if (!initializedPluginManager)
69                 return;
70
71         _INFO("Plugin manager finalize called");
72
73         if (__pluginFunc) {
74                 free(__pluginFunc);
75                 __pluginFunc = NULL;
76         }
77
78         if (__pluginLib) {
79                 dlclose(__pluginLib);
80                 __pluginLib = NULL;
81         }
82
83         initializedPluginManager = false;
84 }
85
86 void pluginPreload()
87 {
88         if (__pluginFunc && __pluginFunc->preload) {
89                 __pluginFunc->preload();
90         }
91 }
92
93 bool pluginHasLogControl()
94 {
95         if (__pluginFunc && __pluginFunc->has_log_control) {
96                 return __pluginFunc->has_log_control();
97         } else {
98                 return false;
99         }
100 }
101
102 void pluginSetAppInfo(const char* appId, const char* managedAssemblyPath)
103 {
104         if (__pluginFunc && __pluginFunc->set_app_info) {
105                 __pluginFunc->set_app_info(appId, managedAssemblyPath);
106         }
107 }
108
109 void pluginSetCoreclrInfo(void* hostHandle, unsigned int domainId, coreclr_create_delegate_ptr delegateFunc)
110 {
111         if (__pluginFunc && __pluginFunc->set_coreclr_info) {
112                 __pluginFunc->set_coreclr_info(hostHandle, domainId, delegateFunc);
113         }
114 }
115
116 char* pluginGetDllPath()
117 {
118         if (__pluginFunc && __pluginFunc->get_dll_path) {
119                 return __pluginFunc->get_dll_path();
120         } else {
121                 return NULL;
122         }
123 }
124
125 char* pluginGetNativeDllSearchingPath()
126 {
127         if (__pluginFunc && __pluginFunc->get_native_dll_searching_path) {
128                 return __pluginFunc->get_native_dll_searching_path();
129         } else {
130                 return NULL;
131         }
132 }
133
134 char* pluginGetTPA()
135 {
136         if (__pluginFunc && __pluginFunc->get_tpa) {
137                 return __pluginFunc->get_tpa();
138         } else {
139                 return NULL;
140         }
141 }
142
143 void pluginBeforeExecute()
144 {
145         if (__pluginFunc && __pluginFunc->before_execute) {
146                 __pluginFunc->before_execute();
147         }
148 }
149
150 void pluginFinalize()
151 {
152         if (__pluginFunc && __pluginFunc->finalize) {
153                 __pluginFunc->finalize();
154         }
155 }