forked from jankaluza/hamlog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodulemanager.cpp
173 lines (144 loc) · 4.93 KB
/
modulemanager.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
163
164
165
166
167
168
169
170
171
172
173
/**
* Hamlog
*
* Copyright (C) 2011, Jan Kaluza <[email protected]>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA
*/
#include "modulemanager.h"
#include <boost/bind.hpp>
#include <iostream>
#include <string>
#include <dlfcn.h>
#include <boost/filesystem.hpp>
#include <boost/foreach.hpp>
#include "requestresponder.h"
#include "server.h"
#include "log.h"
namespace HamLog {
DEFINE_LOGGER(logger, "ModuleManager");
class SharedLibrary {
public:
~SharedLibrary() { if (m_handle) { dlclose(m_handle); } }
static SharedLibrary* openSharedLibrary(const std::string &name) {
SharedLibrary *lib = new SharedLibrary(name);
if (!lib->isLoaded()) {
std::cout << dlerror() << "\n";
delete lib;
lib = NULL;
}
return lib;
}
bool isLoaded() {
return m_loaded;
}
void *findSymbol(const std::string &name) {
return dlsym(m_handle, name.c_str());
}
private:
SharedLibrary(const std::string &name) : m_handle(0), m_loaded(false) {
m_handle = dlopen(name.c_str(), RTLD_NOW|RTLD_GLOBAL);
m_loaded = m_handle != NULL;
}
void *m_handle;
bool m_loaded;
};
ModuleManager *ModuleManager::m_instance = NULL;
ModuleManager::ModuleManager() {}
ModuleManager* ModuleManager::getInstance() {
if (!m_instance) {
m_instance = new ModuleManager();
}
return m_instance;
}
void ModuleManager::sendModulesList(Session::ref session, Request::ref request, Reply::ref reply) {
std::string data = "uri;name;desc;type;need_auth\n";
for (std::map<std::string, ModuleInfo *>::const_iterator it = m_modules.begin(); it != m_modules.end(); it++) {
ModuleInfo *info = it->second;
RequestResponder *responder = dynamic_cast<RequestResponder *>(info->module);
data += responder->getURI() + ";";
data += responder->getName() + ";";
data += responder->getDescription() + ";";
data += boost::lexical_cast<std::string>((int) responder->getType()) + ";";
data += responder->needAuthentication() ? "1;" : "0;";
data += "\n";
}
data.erase(data.end() - 1);
reply->setContent(data);
}
bool ModuleManager::handleRequest(Session::ref session, Request::ref request, Reply::ref reply) {
std::string uri = request->getURI();
if (uri.find("/", 1) != std::string::npos) {
uri = uri.substr(0, uri.find("/", 1));
}
if (uri == "/modules") {
sendModulesList(session, request, reply);
return true;
}
if (m_modules.find(uri) != m_modules.end()) {
ModuleInfo *info = m_modules[uri];
RequestResponder *responder = dynamic_cast<RequestResponder *>(info->module);
if (responder->needAuthentication() && !session->isAuthenticated()) {
return false;
}
return responder->handleRequest(session, request, reply);
}
LOG_WARN(logger, "No module to handle uri='" << uri << "'");
return false;
}
void ModuleManager::handleSessionFinished(Session::ref session) {
for (std::map<std::string, ModuleInfo *>::const_iterator it = m_modules.begin(); it != m_modules.end(); it++) {
ModuleInfo *info = it->second;
RequestResponder *responder = dynamic_cast<RequestResponder *>(info->module);
responder->handleSessionFinished(session);
}
}
void ModuleManager::loadModules(Server *server, const std::string &path) {
boost::filesystem::directory_iterator end_itr;
for (boost::filesystem::directory_iterator itr(path); itr != end_itr; ++itr ) {
if (boost::filesystem::extension(itr->path()) == ".so") {
std::cout << "Trying to load module " << itr->path().string() << ": ";
ModuleInfo* info = new ModuleInfo;
info->library = SharedLibrary::openSharedLibrary(itr->path().string());
if (info->library == NULL) {
char *error = dlerror();
if (error)
std::cout << "Error while loading module:" << error << "\n";
else
std::cout << "Error while loading module\n";
delete info;
continue;
}
module_init init = (module_init) info->library->findSymbol("module_init");
if (init == NULL) {
std::cout << "Couldn't find module_init symbol\n";
delete info->library;
delete info;
continue;
}
info->module = (*init)(server);
if (info->module == NULL) {
std::cout << "Module was not created by module_init function\n";
delete info->library;
delete info;
continue;
}
RequestResponder *responder = dynamic_cast<RequestResponder *>(info->module);
m_modules[responder->getURI()] = info;
std::cout << "Module loaded\n";
}
}
}
}