add plugin interface to check log control
[platform/core/dotnet/launcher.git] / NativeLauncher / inc / plugin_manager.h
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 #ifndef __PLUGIN_MANAGER_H__
18 #define __PLUGIN_MANAGER_H__
19
20 #include "coreclr_host.h"
21
22 typedef void (*plugin_initialize_ptr)(const char* mode);
23 typedef void (*plugin_preload_ptr)();
24 typedef void (*plugin_set_app_info_ptr)(
25                         const char* appId,
26                         const char* managedAssemblyPath);
27 typedef bool (*plugin_has_log_control_ptr)();
28 typedef void (*plugin_set_coreclr_info_ptr)(
29                         void* hostHandle,
30                         unsigned int domainId,
31                         coreclr_create_delegate_ptr delegateFunc);
32 typedef char* (*plugin_get_dll_path_ptr)();
33 typedef void (*plugin_before_execute_ptr)();
34 typedef void (*plugin_finalize_ptr)();
35
36 typedef struct PluginFunc {
37         plugin_initialize_ptr initialize;
38         plugin_preload_ptr preload;
39         plugin_has_log_control_ptr has_log_control;
40         plugin_set_app_info_ptr set_app_info;
41         plugin_set_coreclr_info_ptr set_coreclr_info;
42         plugin_get_dll_path_ptr get_dll_path;
43         plugin_before_execute_ptr before_execute;
44         plugin_finalize_ptr finalize;
45 } PluginFunc;
46
47 // plugin functions
48 void pluginPreload();
49 bool pluginHasLogControl();
50 void pluginSetAppInfo(const char* appId, const char* managedAssemblyPath);
51 void pluginSetCoreclrInfo(void* hostHandle, unsigned int domainId, coreclr_create_delegate_ptr delegateFunc);
52 char* pluginGetDllPath();
53 void pluginBeforeExecute();
54
55 // initialize / finalize plugin manager
56 int initializePluginManager(const char* mode);
57 void finalizePluginManager();
58
59 #endif /* __PLUGIN_MANAGER_H__ */