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;
|
|
|
|
|
2012-06-18 10:13:52 +02:00
|
|
|
void ModuleManager::clear()
|
|
|
|
{
|
|
|
|
m_modules.clear();
|
|
|
|
m_autoLoadModules.clear();
|
|
|
|
}
|
|
|
|
|
2011-12-05 19:27:07 +01:00
|
|
|
void ModuleManager::discoverModules()
|
2011-08-14 04:09:11 +02:00
|
|
|
{
|
2012-02-06 02:44:47 +01:00
|
|
|
// remove modules that are not loaded
|
|
|
|
m_autoLoadModules.clear();
|
|
|
|
|
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())
|
2012-02-20 03:27:08 +01:00
|
|
|
m_autoLoadModules.insert(make_pair(module->getAutoLoadPriority(), module));
|
2011-12-03 22:41:37 +01:00
|
|
|
}
|
2011-08-14 04:09:11 +02:00
|
|
|
}
|
|
|
|
}
|
2011-12-05 19:27:07 +01:00
|
|
|
}
|
2011-08-14 04:09:11 +02:00
|
|
|
|
2012-02-20 03:27:08 +01:00
|
|
|
void ModuleManager::autoLoadModules(int maxPriority)
|
2011-12-05 19:27:07 +01:00
|
|
|
{
|
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;
|
2012-02-20 03:27:08 +01:00
|
|
|
if(priority > maxPriority)
|
2011-12-05 19:27:07 +01:00
|
|
|
break;
|
2011-12-03 22:41:37 +01:00
|
|
|
ModulePtr module = pair.second;
|
|
|
|
if(!module->isLoaded() && !module->load())
|
2012-06-01 22:39:23 +02:00
|
|
|
g_logger.fatal("A required module has failed to load, cannot continue to run.");
|
2011-08-14 04:09:11 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2012-02-06 02:44:47 +01:00
|
|
|
bool push = false;
|
|
|
|
module = getModule(name);
|
|
|
|
if(!module) {
|
|
|
|
module = ModulePtr(new Module(name));
|
|
|
|
push = true;
|
|
|
|
}
|
2011-08-14 04:09:11 +02:00
|
|
|
module->discover(moduleNode);
|
2012-02-06 02:44:47 +01:00
|
|
|
|
2012-02-06 20:19:47 +01:00
|
|
|
// not loaded modules are always in back
|
2012-02-06 02:44:47 +01:00
|
|
|
if(push)
|
|
|
|
m_modules.push_back(module);
|
2012-05-28 15:06:26 +02:00
|
|
|
} catch(stdext::exception& e) {
|
2012-06-01 22:39:23 +02:00
|
|
|
g_logger.error(stdext::format("Unable to discover module from file '%s': %s", 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())
|
2012-06-01 22:39:23 +02:00
|
|
|
g_logger.fatal(stdext::format("Unable to load '%s' module", moduleName));
|
2011-12-05 19:27:07 +01:00
|
|
|
}
|
|
|
|
|
2011-08-14 04:09:11 +02:00
|
|
|
void ModuleManager::unloadModules()
|
|
|
|
{
|
2012-02-06 20:19:47 +01:00
|
|
|
auto modulesBackup = m_modules;
|
|
|
|
for(const ModulePtr& module : modulesBackup)
|
2011-08-14 04:09:11 +02:00
|
|
|
module->unload();
|
|
|
|
}
|
|
|
|
|
2012-02-06 20:19:47 +01:00
|
|
|
void ModuleManager::reloadModules()
|
|
|
|
{
|
|
|
|
std::deque<ModulePtr> toLoadList;
|
|
|
|
|
|
|
|
// unload in the reverse direction, try to unload upto 10 times (because of dependencies)
|
|
|
|
for(int i=0;i<10;++i) {
|
|
|
|
auto modulesBackup = m_modules;
|
|
|
|
for(const ModulePtr& module : modulesBackup) {
|
|
|
|
if(module->isLoaded() && module->canUnload()) {
|
|
|
|
module->unload();
|
|
|
|
toLoadList.push_front(module);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for(const ModulePtr& module : toLoadList)
|
|
|
|
module->load();
|
|
|
|
}
|
|
|
|
|
2011-08-14 04:09:11 +02:00
|
|
|
ModulePtr ModuleManager::getModule(const std::string& moduleName)
|
|
|
|
{
|
|
|
|
for(const ModulePtr& module : m_modules)
|
|
|
|
if(module->getName() == moduleName)
|
|
|
|
return module;
|
|
|
|
return nullptr;
|
|
|
|
}
|
2012-02-06 20:19:47 +01:00
|
|
|
|
|
|
|
void ModuleManager::updateModuleLoadOrder(ModulePtr module)
|
|
|
|
{
|
|
|
|
auto it = std::find(m_modules.begin(), m_modules.end(), module);
|
|
|
|
if(it != m_modules.end())
|
|
|
|
m_modules.erase(it);
|
|
|
|
if(module->isLoaded())
|
|
|
|
m_modules.push_front(module);
|
|
|
|
else
|
|
|
|
m_modules.push_back(module);
|
|
|
|
}
|