]> SALOME platform Git repositories - modules/shaper.git/commitdiff
Salome HOME
Functionality for dynamic libraries loading is assigned to Config_ModuleReader
authorsbh <sergey.belash@opencascade.com>
Wed, 14 May 2014 06:48:26 +0000 (10:48 +0400)
committersbh <sergey.belash@opencascade.com>
Wed, 14 May 2014 06:48:26 +0000 (10:48 +0400)
13 files changed:
src/Config/CMakeLists.txt
src/Config/Config_Common.cpp [new file with mode: 0644]
src/Config/Config_Common.h
src/Config/Config_ModuleReader.cpp
src/Config/Config_ModuleReader.h
src/Model/CMakeLists.txt
src/Model/Model_PluginManager.cpp
src/ModelAPI/CMakeLists.txt
src/ModelAPI/ModelAPI_PluginManager.cpp
src/ModelAPI/ModelAPI_PluginManager.h
src/XGUI/XGUI_Tools.cpp
src/XGUI/XGUI_Tools.h
src/XGUI/XGUI_Workshop.cpp

index a501bcfa7030116808ce7f2941952bb41e5d1802..2e954c8a844614d3ec2cf3c5b288c6a9a874876e 100644 (file)
@@ -23,6 +23,7 @@ SET(PROJECT_SOURCES
   Config_WidgetAPI.cpp
   Config_WidgetReader.cpp
   Config_PointerMessage.cpp
+  Config_Common.cpp
 )
 
 SET(XML_RESOURCES
diff --git a/src/Config/Config_Common.cpp b/src/Config/Config_Common.cpp
new file mode 100644 (file)
index 0000000..97a2a6d
--- /dev/null
@@ -0,0 +1,70 @@
+/*
+ * Config_Common.cpp
+ *
+ *  Created on: Apr 17, 2014
+ *      Author: sbh
+ */
+
+#include "Config_Common.h"
+
+#include <libxml/parser.h>
+#include <libxml/tree.h>
+
+bool isElementNode(xmlNodePtr theNode)
+{
+  return theNode->type == XML_ELEMENT_NODE;
+}
+
+bool isNode(xmlNodePtr theNode, const char* theNodeName, ...)
+{
+  bool result = false;
+  const xmlChar* aName = theNode->name;
+  if (!aName || !isElementNode(theNode)) {
+    return false;
+  }
+  if (!xmlStrcmp(aName, (const xmlChar *) theNodeName)) {
+    return true;
+  }
+  va_list args; // define argument list variable
+  va_start(args, theNodeName); // init list; point to last defined argument
+  while(true) {
+    char *anArg = va_arg (args, char*); // get next argument
+    if (anArg == NULL)
+      break;
+    if (!xmlStrcmp(aName, (const xmlChar *) anArg)) {
+      va_end(args); // cleanup the system stack
+      return true;
+    }
+  }
+  va_end(args); // cleanup the system stack
+  return false;
+}
+
+bool hasChild(xmlNodePtr theNode)
+{
+  xmlNodePtr aNode = theNode->children;
+  for( ; aNode; aNode = aNode->next) {
+    if (isElementNode(theNode)) {
+      return true;
+    }
+  }
+  return false;
+}
+
+std::string library(const std::string& theLibName)
+{
+  std::string aLibName = theLibName;
+#ifndef WIN32
+  static std::string aLibExt( ".so" );
+  if (aLibName.size() < 3 || aLibName.substr(0, 3) !="lib") {
+    aLibName = "lib" + aLibName;
+  }
+#else
+  static std::string aLibExt(".dll");
+#endif
+  std::string anExt = aLibName.substr(aLibName.size() - 4);
+  if (anExt != aLibExt)
+    aLibName += aLibExt;
+
+  return aLibName;
+}
index b4e2e5f5abfe91bb3df78609f06f864917174c8b..40051dc2ac209f5d0389d4fe5f712cc5eb8017de 100644 (file)
@@ -5,8 +5,13 @@
  *      Author: sbh
  */
 
-#include <libxml/parser.h>
-#include <libxml/tree.h>
+#ifndef Config_Common_H_
+#define Config_Common_H_
+
+#include "Config.h"
+
+#include <string>
+#include <stdarg.h>
 
 //>> Forward declaration of xmlNodePtr.
 typedef struct _xmlNode xmlNode;
@@ -23,10 +28,7 @@ struct _xmlDoc;
 /*
  * Returns true if theNode is XML ELEMENT node (not a "text" node ie).
  */
-static bool isElementNode(xmlNodePtr theNode)
-{
-  return theNode->type == XML_ELEMENT_NODE;
-}
+CONFIG_EXPORT bool isElementNode(xmlNodePtr theNode);
 
 /*
  * Returns true if theNode is XML node with a given name.
@@ -36,31 +38,7 @@ static bool isElementNode(xmlNodePtr theNode)
  * ", NULL" is required to use unlimited number of arguments.
  * TODO(sbh): find a way to simplify calling this method.
  */
-static bool isNode(xmlNodePtr theNode, const char* theNodeName, ...)
-{
-  bool result = false;
-  const xmlChar* aName = theNode->name;
-  if (!aName || !isElementNode(theNode)) {
-    return false;
-  }
-  if (!xmlStrcmp(aName, (const xmlChar *) theNodeName)) {
-    return true;
-  }
-  va_list args; // define argument list variable
-  va_start(args, theNodeName); // init list; point to last defined argument
-  while(true) {
-    char *anArg = va_arg (args, char*); // get next argument
-    if (anArg == NULL)
-      break;
-    if (!xmlStrcmp(aName, (const xmlChar *) anArg)) {
-      va_end(args); // cleanup the system stack
-      return true;
-    }
-  }
-  va_end(args); // cleanup the system stack
-  return false;
-}
-
+CONFIG_EXPORT bool isNode(xmlNodePtr theNode, const char* theNodeName, ...);
 
 /*
  * Every xml node has child. Even if there is no explicit
@@ -69,13 +47,19 @@ static bool isNode(xmlNodePtr theNode, const char* theNodeName, ...)
  * This method checks if real child nodes exist in the
  * given node.
  */
-static bool hasChild(xmlNodePtr theNode)
-{
-  xmlNodePtr aNode = theNode->children;
-  for(; aNode; aNode = aNode->next) {
-    if (isElementNode(theNode)) {
-      return true;
-    }
-  }
-  return false;
-}
+CONFIG_EXPORT bool hasChild(xmlNodePtr theNode);
+
+/*!
+ \brief Convert the given parameter to the platform-specific library name.
+
+ The function appends platform-specific prefix (lib) and suffix (.dll/.so)
+ to the library file name.
+ For example, if \a str = "mylib", "libmylib.so" is returned for Linux and
+ mylib.dll for Windows.
+
+ \param str short library name
+ \return full library name
+ */
+CONFIG_EXPORT std::string library(const std::string& theLibName);
+
+#endif
index 4e67ea46de0b1eb78ebc2edf92038aa7cc40fb0c..0291b83b4db3039eb1fe97a22d37c8153e66bb6f 100644 (file)
@@ -9,19 +9,22 @@
 #include <Config_Common.h>
 #include <Config_ModuleReader.h>
 #include <Config_FeatureReader.h>
+#include <Events_Error.h>
 
 #include <libxml/parser.h>
 #include <libxml/tree.h>
 
-#ifdef _DEBUG
+//Necessary for cerr
 #include <iostream>
-#endif
-
 
+#ifdef WIN32
+#include <windows.h>
+#else
+#include <dlfcn.h>
+#endif
 
 Config_ModuleReader::Config_ModuleReader(const char* theEventGenerated)
-    : Config_XMLReader("plugins.xml"),
-      myEventGenerated(theEventGenerated)
+    : Config_XMLReader("plugins.xml"), myEventGenerated(theEventGenerated)
 {
 }
 
@@ -52,9 +55,9 @@ void Config_ModuleReader::processNode(xmlNodePtr theNode)
   if (isNode(theNode, NODE_PLUGIN, NULL)) {
     std::string aPluginConf = getProperty(theNode, PLUGIN_CONFIG);
     std::string aPluginLibrary = getProperty(theNode, PLUGIN_LIBRARY);
-    std::list<std::string> aFeatures = importPlugin(aPluginConf, aPluginLibrary);
+    std::list<std::string> aFeatures = importPlugin(aPluginLibrary, aPluginConf);
     std::list<std::string>::iterator it = aFeatures.begin();
-    for( ; it != aFeatures.end(); it++ ) {
+    for(; it != aFeatures.end(); it++) {
       myFeaturesInFiles[*it] = aPluginConf;
     }
   }
@@ -65,14 +68,41 @@ bool Config_ModuleReader::processChildren(xmlNodePtr theNode)
   return isNode(theNode, NODE_PLUGINS, NULL);
 }
 
-std::list<std::string>
-Config_ModuleReader::importPlugin(const std::string& thePluginFile,
-                                  const std::string& thePluginLibrary)
+std::list<std::string> Config_ModuleReader::importPlugin(const std::string& thePluginLibrary,
+                                                         const std::string& thePluginFile)
 {
-  Config_FeatureReader aReader = Config_FeatureReader(thePluginFile,
-                                                      thePluginLibrary,
+  if (thePluginFile.empty()) { //probably a third party library
+    loadLibrary(thePluginLibrary);
+    return std::list<std::string>();
+  }
+
+  Config_FeatureReader aReader = Config_FeatureReader(thePluginFile, thePluginLibrary,
                                                       myEventGenerated);
   aReader.readAll();
   return aReader.features();
 }
 
+void Config_ModuleReader::loadLibrary(const std::string theLibName)
+{
+#ifdef _DEBUG
+  std::cout << "Config_ModuleReader::loading library... "  << theLibName.c_str() << std::endl;
+#endif
+  std::string aFileName = library(theLibName);
+  if (aFileName.empty())
+    return;
+
+#ifdef WIN32
+  HINSTANCE aModLib = ::LoadLibrary(aFileName.c_str());
+  if (!aModLib) {
+    std::string errorMsg = "Failed to load " + aFileName;
+    std::cerr << errorMsg << std::endl;
+    Events_Error::send(errorMsg);
+  }
+#else
+  void* aModLib = dlopen( aFileName.c_str(), RTLD_LAZY );
+  if ( !aModLib ) {
+    std::cerr << "Failed to load " << aFileName.c_str() << std::endl;
+  }
+#endif
+}
+
index 4f9b61a77a86dc40056b40a8f82d3964c5f1ed63..a4afba3c242dd20be7eeb39a99f3b7325253f79f 100644 (file)
@@ -27,12 +27,16 @@ public:
 
   CONFIG_EXPORT std::string getModuleName();
 
+  /// loads the library with specific name, appends "lib*.dll" or "*.so" depending on the platform
+  CONFIG_EXPORT static void loadLibrary(const std::string theLibName);
+
 protected:
   void processNode(xmlNodePtr aNode);
   bool processChildren(xmlNodePtr aNode);
 
-  std::list<std::string> importPlugin(const std::string& thePluginFile,
-                                      const std::string& thePluginLibrary);
+  std::list<std::string> importPlugin(const std::string& thePluginLibrary,
+                                      const std::string& thePluginFile);
+
 
 private:
   std::map<std::string, std::string> myFeaturesInFiles;
index c5764b5459b0ecc2493f99842ae2f3fe52ac9a1c..65c929cc5bfe0dc3da72f73d9f5e1f359613972a 100644 (file)
@@ -27,10 +27,19 @@ SET(PROJECT_SOURCES
     Model_AttributeRefList.cpp
     Model_Events.cpp
 )
+SET(PROJECT_LIBRARIES
+    ModelAPI 
+    Events 
+    Config 
+    GeomData
+    ${CAS_OCAF}
+)
+
+
 
 ADD_DEFINITIONS(-DMODEL_EXPORTS ${CAS_DEFINITIONS} ${BOOST_DEFINITIONS})
 ADD_LIBRARY(Model SHARED ${PROJECT_SOURCES} ${PROJECT_HEADERS})
-TARGET_LINK_LIBRARIES(Model ${PROJECT_LIBRARIES} ${CAS_OCAF} ModelAPI Events Config GeomData)
+TARGET_LINK_LIBRARIES(Model ${PROJECT_LIBRARIES})
 
 INCLUDE_DIRECTORIES(
   ../ModelAPI
index e02847db4b22f3dc21727d07c1a093d679459516..cbb917a76fa9a7238bbd401865464e239cc4fba0 100644 (file)
@@ -25,7 +25,7 @@ boost::shared_ptr<ModelAPI_Feature> Model_PluginManager::createFeature(string th
     myCurrentPluginName = myPlugins[theFeatureID];
     if (myPluginObjs.find(myCurrentPluginName) == myPluginObjs.end()) {
       // load plugin library if not yet done
-      loadLibrary(myCurrentPluginName);
+      Config_ModuleReader::loadLibrary(myCurrentPluginName);
     }
     if (myPluginObjs.find(myCurrentPluginName) != myPluginObjs.end()) {
       boost::shared_ptr<ModelAPI_Feature> aCreated = 
index c8a1e56ff867987b50dafaa7ab84ab374bdd51ae..e57b2c619d4220ceba7aad9370d72e1053389dae 100644 (file)
@@ -21,10 +21,18 @@ SET(PROJECT_SOURCES
     ModelAPI_PluginManager.cpp
 )
 
+SET(PROJECT_LIBRARIES
+    Config
+)
+
 ADD_DEFINITIONS(-DMODELAPI_EXPORTS)
 ADD_LIBRARY(ModelAPI SHARED ${PROJECT_SOURCES} ${PROJECT_HEADERS})
 SET_TARGET_PROPERTIES(ModelAPI PROPERTIES LINKER_LANGUAGE CXX)
-#TARGET_LINK_LIBRARIES(ModelAPI ${PROJECT_LIBRARIES})
+TARGET_LINK_LIBRARIES(ModelAPI ${PROJECT_LIBRARIES})
+
+INCLUDE_DIRECTORIES(
+  ../Config
+)
 
 SET(CMAKE_SWIG_FLAGS "")
 
index 63bca2d8a14728ee2c9cfcd8963c5da89909b5aa..bfdfbe813035c83f0223da6749244f43a45c8da5 100644 (file)
@@ -18,6 +18,8 @@
 #include <ModelAPI_AttributeRefAttr.h>
 #include <ModelAPI_AttributeRefList.h>
 
+#include <Config_ModuleReader.h>
+
 #ifdef WIN32
 #include <windows.h>
 #else
@@ -26,8 +28,9 @@
 
 using namespace std;
 
-/// Converts library name to the operation system file name
-string library(const string& theLibName);
+#ifdef _DEBUG
+#include <iostream>
+#endif
 
 /// Manager that will be initialized from Model package, one per application
 boost::shared_ptr<ModelAPI_PluginManager> MY_MANAGER;
@@ -45,49 +48,10 @@ void ModelAPI_PluginManager::SetPluginManager(
 boost::shared_ptr<ModelAPI_PluginManager> ModelAPI_PluginManager::get()
 {
   if (!MY_MANAGER) { // import Model library that implements this interface of ModelAPI
-    loadLibrary("Model");
+    #ifdef _DEBUG
+    std::cout << "ModelAPI_PluginManager::get: " << "Model library has not been loaded from xml." << std::endl;
+    #endif
+    Config_ModuleReader::loadLibrary("Model");
   }
   return MY_MANAGER;
 }
-
-string library(const string& theLibName)
-{
-  string aLibName = theLibName;
-
-#ifndef WIN32
-  static string aLibExt( ".so" );
-  if (aLibName.size() < 3 || aLibName.substr(0, 3) !="lib")
-    aLibName = "lib" + aLibName;
-#else
-  static string aLibExt( ".dll" );
-#endif
-
-  string anExt = aLibName.substr(aLibName.size() - 4);
-
-  if ( anExt != aLibExt)
-    aLibName += aLibExt;
-
-  return aLibName;
-}
-
-// for debug purpose only (cerr), before the error management system is implemented
-#include <iostream>
-void ModelAPI_PluginManager::loadLibrary(const string theLibName)
-{
-  string aFileName = library(theLibName);
-  if ( aFileName.empty() )
-  {
-    cerr<<"Library "<<theLibName.c_str()<<" can not be imported"<<endl;
-    return;
-  }
-
-#ifdef WIN32
-  HINSTANCE aModLib = ::LoadLibrary( aFileName.c_str() ); 
-  if (!aModLib)
-    cerr<<"Failed to load "<<aFileName.c_str()<<endl;
-#else
-  void* aModLib = dlopen( aFileName.c_str(), RTLD_LAZY );
-  if ( !aModLib )
-    cerr<<"Failed to load "<<aFileName.c_str()<<endl;
-#endif
-}
index ce89be8cb6eceff0cbe5c3086831b9917359fb86..ef3fa80df5c0a489ece2004a08e5b99c5ecd6f47 100644 (file)
@@ -43,9 +43,6 @@ public:
   /// Defines the current document that used for current work in the application
   virtual void setCurrentDocument(boost::shared_ptr<ModelAPI_Document> theDoc) = 0;
 
-  /// loads the library with specific name, appends "lib*.dll" or "*.so" depending on the platform
-  static void loadLibrary(const std::string theLibName);
-
   /// Is needed for python wrapping by swig, call Get to get an instance
   ModelAPI_PluginManager();
 
index bc462b8000a58e9fc30ff3434adc5824b646a8ce..77c38599d99f9c8115ea40727e9c39068b6c130e 100644 (file)
@@ -2,37 +2,6 @@
 
 #include <QDir>
 
-//******************************************************************
-QString library(const QString& str)
-{
-  QString path = dir(str, false);
-  QString name = file(str, false);
-  QString ext = extension(str);
-
-#ifndef WIN32
-  if ( !name.startsWith( "lib" ) )
-  name = QString( "lib" ) + name;
-#endif
-
-#ifdef WIN32
-  QString libExt("dll");
-#else
-  QString libExt( "so" );
-#endif
-
-  if (ext.toLower() != QString("so") && ext.toLower() != QString("dll")) {
-    if (!name.isEmpty() && !ext.isEmpty())
-      name += QString(".");
-    name += ext;
-  }
-
-  ext = libExt;
-
-  QString fileName = addSlash(path) + name + QString(".") + ext;
-
-  return fileName;
-}
-
 //******************************************************************
 QString dir(const QString& path, bool isAbs)
 {
index e8e3495e8225d186d5fb8dc96cffb71f085af781..aebea7f6e37aed046c4d07e0369cb6986248bcd6 100644 (file)
@@ -5,19 +5,6 @@
 #include <QString>
 #include <QRect>
 
-/*!
- \brief Convert the given parameter to the platform-specific library name.
-
- The function appends platform-specific prefix (lib) and suffix (.dll/.so)
- to the library file name.
- For example, if \a str = "mylib", "libmylib.so" is returned for Linux and
- mylib.dll for Windows.
-
- \param str short library name
- \return full library name
- */
-QString XGUI_EXPORT library(const QString& str);
-
 /*!
  \brief Return directory part of the file path.
 
index 48a4615d20c320f770029b7b384d8d52c08dda94..49bf2a2bad6ea372d58700f246a529ce840db2fe 100644 (file)
@@ -31,6 +31,7 @@
 #include <ModuleBase_Operation.h>
 #include <ModuleBase_Operation.h>
 #include <ModuleBase_OperationDescription.h>
+#include <Config_Common.h>
 #include <Config_FeatureMessage.h>
 #include <Config_PointerMessage.h>
 
@@ -486,7 +487,8 @@ void XGUI_Workshop::onRedo()
 //******************************************************
 XGUI_Module* XGUI_Workshop::loadModule(const QString& theModule)
 {
-  QString libName = library(theModule);
+  QString libName =
+      QString::fromStdString(library(theModule.toStdString()));
   if (libName.isEmpty()) {
     qWarning(
     qPrintable( tr( "Information about module \"%1\" doesn't exist." ).arg( theModule ) ));