X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FConfig%2FConfig_ModuleReader.cpp;h=d298a412c0b4282a6c4151049791aaa62fb4480e;hb=b6be33d3af5a10e204e3bd69708d49b8b9f1a127;hp=6acffa268d3e46e2ac66c57df2602a93688c271f;hpb=d499ef7358a4dc4ce020054fc94ef04c22e9e444;p=modules%2Fshaper.git diff --git a/src/Config/Config_ModuleReader.cpp b/src/Config/Config_ModuleReader.cpp index 6acffa268..d298a412c 100644 --- a/src/Config/Config_ModuleReader.cpp +++ b/src/Config/Config_ModuleReader.cpp @@ -7,6 +7,8 @@ * Author: sbh */ +#include + #include #include #include @@ -48,6 +50,11 @@ const std::map& Config_ModuleReader::featuresInFiles() return myFeaturesInFiles; } +const std::set& Config_ModuleReader::modulePluginFiles() const +{ + return myPluginFiles; +} + /*! * Get module name from plugins.xml * (property "module") @@ -64,6 +71,7 @@ void Config_ModuleReader::processNode(xmlNodePtr theNode) if (!hasRequiredModules(theNode)) return; std::string aPluginConf = getProperty(theNode, PLUGIN_CONFIG); + if (!aPluginConf.empty()) myPluginFiles.insert(aPluginConf); std::string aPluginLibrary = getProperty(theNode, PLUGIN_LIBRARY); std::string aPluginScript = getProperty(theNode, PLUGIN_SCRIPT); std::string aPluginName = addPlugin(aPluginLibrary, aPluginScript, aPluginConf); @@ -184,16 +192,28 @@ void Config_ModuleReader::loadLibrary(const std::string& theLibName) if (aFileName.empty()) return; -#ifdef WIN32 + #ifdef WIN32 HINSTANCE aModLib = ::LoadLibrary(aFileName.c_str()); -#else + #else void* aModLib = dlopen( aFileName.c_str(), RTLD_LAZY | RTLD_GLOBAL ); -#endif + #endif if(!aModLib && theLibName != "DFBrowser") { // don't show error for internal debugging tool std::string anErrorMsg = "Failed to load " + aFileName; - #ifndef WIN32 + #ifdef WIN32 + DWORD dwLastError = ::GetLastError(); + LPSTR messageBuffer = NULL; + size_t size = ::FormatMessageA(FORMAT_MESSAGE_ALLOCATE_BUFFER | + FORMAT_MESSAGE_FROM_SYSTEM | + FORMAT_MESSAGE_IGNORE_INSERTS, + NULL, + dwLastError, + MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), + (LPSTR)&messageBuffer, 0, NULL); + anErrorMsg += ": " + std::string(messageBuffer, size); + #else anErrorMsg += ": " + std::string(dlerror()); #endif + std::cerr << anErrorMsg << std::endl; Events_Error::send(anErrorMsg); } }