##// END OF EJS Templates
Pre-0.7 merged
Pre-0.7 merged

File last commit:

r100:11a895cff789 pre-0.7
r107:c459540a6dbd merge 0.6
Show More
unixpluginloader.cpp
39 lines | 1.3 KiB | text/x-c | CppLexer
#include "unixpluginloader.h"
#include <stdio.h>
#include <QDebug>
#include <socexplorerengine.h>
unixPluginLoader::unixPluginLoader(const QString &libPath)
{
SocExplorerEngine::message("unixPluginLoader::unixPluginLoader","try to open "+libPath,3);
dlHandle = dlopen(libPath.toStdString().c_str(),RTLD_LAZY|RTLD_GLOBAL);
if(dlHandle==NULL)
SocExplorerEngine::message("unixPluginLoader::unixPluginLoader",QString("Failed ") + dlerror(),3);
else
SocExplorerEngine::message("unixPluginLoader::unixPluginLoader","Success " ,3);
this->libPath = libPath;
}
void *unixPluginLoader::resolve(const QString &symbol)
{
if(dlHandle!=NULL)
{
SocExplorerEngine::message("unixPluginLoader::resolve","try to resolve "+symbol+" in "+libPath ,3);
void* sym = dlsym (dlHandle, symbol.toStdString().c_str());
if(sym==NULL)
SocExplorerEngine::message("unixPluginLoader::resolve",QString("Failed")+ dlerror() ,3);
else
SocExplorerEngine::message("unixPluginLoader::resolve","Success",3);
return sym;
}
return NULL;
}
void unixPluginLoader::close()
{
if(dlHandle!=NULL)
{
dlclose(dlHandle);
SocExplorerEngine::message("unixPluginLoader::close",dlerror(),3);
}
}