-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPluginController.cpp
162 lines (147 loc) · 4.31 KB
/
PluginController.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
#include "PluginController.h"
#include "PluginEnumerator.h"
#include <dlfcn.h>
#include <iostream>
PluginController::PluginController(/* args */)
{
}
PluginController::~PluginController()
{
}
/**
* @brief 初始化插件控制类
* 变量plugin插件目录,获取插件路径表和所以函数对应链接
* @return true
* @return false
*/
bool PluginController::InitializeController(void)
{
//获取并存放插件
std::vector<std::string> vstrPluginPath;
PluginEnumerator pluginEnum; // 实例化插件枚举类
if (!(pluginEnum.GetPluginNames(vstrPluginPath))) // 获取所以插件路径
{
return false;
}
int count = vstrPluginPath.size(); // 获取插件数量
for (int i = 0; i < count; i++)
{
// 延迟函数的调用绑定插件目录下的文件
void *pluginLib = dlopen(vstrPluginPath[i].c_str(), RTLD_LAZY);
if (pluginLib != NULL) //判断是否成功绑定链接
{
m_vhForPlugin.push_back(pluginLib); // 保存动态链接
// 存储两个函数链接
PROC_PRINTSTR dllPrint = (PROC_PRINTSTR)dlsym(pluginLib, "PrintStr"); // 获取打印函数链接
PROC_GETID dllGetID = (PROC_GETID)dlsym(pluginLib, "GetID"); // 获取获得ID函数链接
if ((dllPrint != NULL) && (dllGetID != NULL)) // 判断链接是否有效
{
/* 保存两个函数的链接 */
m_vPrintStrFunc.push_back(dllPrint);
m_vGetIDFunc.push_back(dllGetID);
}
}
}
return true;
}
/**
* @brief 查找对应ID并调用函数
*
* @param FunctionID 函数ID
* @return true 执行成功
* @return false 无法找到对应ID
*/
bool PluginController::ProcessRequest(int FunctionID)
{
int count = m_vhForPlugin.size();
int i;
if (FunctionID > count)
{
/* 找不到对应ID */
std::cout << "could't find function " << FunctionID << std::endl;
return false;
}
for (i = 0; i < count; i++)
{
/* 查找对应ID的函数 */
if ((m_vGetIDFunc[i])() == FunctionID)
{
/* 查询后调用 */
(m_vPrintStrFunc[i]());
break;
}
}
return true;
}
/**
* @brief 逐一调用pulgin目录里的help函数
*
* @return true 成功调用
* @return false 获取路径错误
*/
bool PluginController::ProcessHelp(void)
{
//获取并存放插件
std::vector<std::string> vstrPluginPath;
PluginEnumerator pluginEnum; // 实例化插件枚举类
if (!(pluginEnum.GetPluginNames(vstrPluginPath))) // 获取所以插件路径
{
std::cout << "could't get plugin paths " << std::endl;
return false;
}
int count = vstrPluginPath.size(); // 获取插件数量
for (int i = 0; i < count; i++)
{
// 逐一调用插件里的help函数
if (!dlFunctionHook(vstrPluginPath[i].c_str(), (char *)"Help"))
{
std::cout << "could't find function help" << std::endl;
}
}
return true;
}
/**
* @brief call plugin function hook
*
* @param path path of the dynamic link file
* @param op function name
* @return true success
* @return false fail
*/
bool PluginController::dlFunctionHook(string path, char *op)
{
//延迟函数的调用绑定插件目录下的文件
void *handle = dlopen(path.c_str(), RTLD_LAZY);
if (handle == NULL) //检测动态链接是否成功
{
std::cout << "dlopen error" << std::endl;
return false;
}
typedef void (*Fun)(); // 函数原型
// 映射动态链接库中printStr的函数原型
Fun funPrintStr = (Fun)dlsym(handle, op);
if (funPrintStr == NULL)
{
std::cout << "Fun " << op << " error" << std::endl;
std::cout << dlerror() << std::endl; //查看出错原因
return false;
}
(*funPrintStr)(); // 用函数指针调用函数
dlclose(handle); // 关闭动态链接库
return true;
}
/**
* @brief 逐一关闭链接,释放空间
*
* @return true
* @return false
*/
bool PluginController::UninitializeController(void)
{
int count = m_vhForPlugin.size(); // 获取插件数量
for (int i = 0; i < count; i++)
{
dlclose(m_vhForPlugin[i]);
}
return true;
}