2011-08-28 15:17:58 +02:00
|
|
|
/*
|
2012-01-02 17:58:37 +01:00
|
|
|
* Copyright (c) 2010-2012 OTClient <https://github.com/edubart/otclient>
|
2011-08-28 15:17:58 +02:00
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2011-08-14 04:09:11 +02:00
|
|
|
#include "modulemanager.h"
|
|
|
|
#include "resourcemanager.h"
|
2011-08-15 16:06:15 +02:00
|
|
|
|
|
|
|
#include <framework/otml/otml.h>
|
2011-12-05 19:27:07 +01:00
|
|
|
#include <framework/application.h>
|
2011-08-14 04:09:11 +02:00
|
|
|
|
|
|
|
ModuleManager g_modules;
|
|
|
|
|
2011-12-05 19:27:07 +01:00
|
|
|
void ModuleManager::discoverModules()
|
2011-08-14 04:09:11 +02:00
|
|
|
{
|
|
|
|
auto moduleDirs = g_resources.listDirectoryFiles("/");
|
|
|
|
for(const std::string& moduleDir : moduleDirs) {
|
|
|
|
auto moduleFiles = g_resources.listDirectoryFiles("/" + moduleDir);
|
2011-12-03 22:41:37 +01:00
|
|
|
for(const std::string& moduleFile : moduleFiles) {
|
|
|
|
if(boost::ends_with(moduleFile, ".otmod")) {
|
|
|
|
ModulePtr module = discoverModule("/" + moduleDir + "/" + moduleFile);
|
|
|
|
if(module && module->isAutoLoad())
|
|
|
|
m_autoLoadModules.insert(make_pair(module->getAutoLoadPriority(), module));
|
|
|
|
}
|
2011-08-14 04:09:11 +02:00
|
|
|
}
|
|
|
|
}
|
2011-12-05 19:27:07 +01:00
|
|
|
}
|
2011-08-14 04:09:11 +02:00
|
|
|
|
2011-12-05 19:27:07 +01:00
|
|
|
void ModuleManager::autoLoadModules(int maxPriority)
|
|
|
|
{
|
2011-12-03 22:41:37 +01:00
|
|
|
for(auto& pair : m_autoLoadModules) {
|
2011-12-05 19:27:07 +01:00
|
|
|
int priority = pair.first;
|
|
|
|
if(priority > maxPriority)
|
|
|
|
break;
|
2011-12-03 22:41:37 +01:00
|
|
|
ModulePtr module = pair.second;
|
|
|
|
if(!module->isLoaded() && !module->load())
|
|
|
|
logFatal("A required module has failed to load, cannot continue to run.");
|
2011-08-14 04:09:11 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-05 19:27:07 +01:00
|
|
|
void ModuleManager::discoverModulesPath()
|
|
|
|
{
|
|
|
|
// search for modules directory
|
|
|
|
std::string possibleDirs[] = { "modules",
|
|
|
|
g_resources.getBaseDir() + "modules",
|
|
|
|
g_resources.getBaseDir() + "../modules",
|
|
|
|
g_resources.getBaseDir() + "../share/" + g_app->getAppName() + "/modules",
|
|
|
|
"" };
|
|
|
|
bool found = false;
|
|
|
|
for(const std::string& dir : possibleDirs) {
|
|
|
|
// try to add module directory
|
|
|
|
if(g_resources.addToSearchPath(dir)) {
|
|
|
|
logInfo("Using modules directory '", dir.c_str(), "'");
|
|
|
|
found = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!found)
|
|
|
|
logFatal("Could not find modules directory");
|
|
|
|
}
|
|
|
|
|
2011-12-03 22:41:37 +01:00
|
|
|
ModulePtr ModuleManager::discoverModule(const std::string& moduleFile)
|
2011-08-14 04:09:11 +02:00
|
|
|
{
|
|
|
|
ModulePtr module;
|
|
|
|
try {
|
2011-12-03 22:41:37 +01:00
|
|
|
OTMLDocumentPtr doc = OTMLDocument::parse(moduleFile);
|
2011-08-14 04:09:11 +02:00
|
|
|
OTMLNodePtr moduleNode = doc->at("Module");
|
|
|
|
|
2011-08-19 20:53:23 +02:00
|
|
|
std::string name = moduleNode->valueAt("name");
|
2011-08-14 04:09:11 +02:00
|
|
|
if(getModule(name))
|
2011-12-01 23:25:32 +01:00
|
|
|
Fw::throwException("module '", name, "' already exists, cannot have duplicate module names");
|
2011-08-14 04:09:11 +02:00
|
|
|
|
|
|
|
module = ModulePtr(new Module(name));
|
|
|
|
module->discover(moduleNode);
|
|
|
|
m_modules.push_back(module);
|
2011-12-01 23:25:32 +01:00
|
|
|
} catch(Exception& e) {
|
2011-12-03 22:41:37 +01:00
|
|
|
logError("Unable to discover module from file '", moduleFile, "': ", e.what());
|
2011-08-14 04:09:11 +02:00
|
|
|
}
|
2011-12-03 22:41:37 +01:00
|
|
|
return module;
|
2011-08-14 04:09:11 +02:00
|
|
|
}
|
|
|
|
|
2011-12-05 19:27:07 +01:00
|
|
|
void ModuleManager::ensureModuleLoaded(const std::string& moduleName)
|
|
|
|
{
|
|
|
|
ModulePtr module = g_modules.getModule(moduleName);
|
|
|
|
if(!module || !module->load())
|
|
|
|
logFatal("Unable to load '", moduleName, "' module");
|
|
|
|
}
|
|
|
|
|
2011-08-14 04:09:11 +02:00
|
|
|
void ModuleManager::unloadModules()
|
|
|
|
{
|
|
|
|
for(const ModulePtr& module : m_modules)
|
|
|
|
module->unload();
|
|
|
|
}
|
|
|
|
|
|
|
|
ModulePtr ModuleManager::getModule(const std::string& moduleName)
|
|
|
|
{
|
|
|
|
for(const ModulePtr& module : m_modules)
|
|
|
|
if(module->getName() == moduleName)
|
|
|
|
return module;
|
|
|
|
return nullptr;
|
|
|
|
}
|