OpenRTM-aist  1.2.1
ModuleManager.h
Go to the documentation of this file.
1 // -*- C++ -*-
20 #ifndef RTC_MODULEMANAGER_H
21 #define RTC_MODULEMANAGER_H
22 
23 // STL includes
24 #include <string>
25 #include <vector>
26 #include <map>
27 
28 // ACE includes
29 #include <coil/DynamicLib.h>
30 
31 // RTC includes
32 #include <rtm/Manager.h>
33 #include <coil/Properties.h>
34 #include <rtm/ObjectManager.h>
35 
36 
37 #define CONFIG_EXT "manager.modules.config_ext"
38 #define CONFIG_PATH "manager.modules.config_path"
39 #define DETECT_MOD "manager.modules.detect_loadable"
40 #define MOD_LOADPTH "manager.modules.load_path"
41 #define INITFUNC_SFX "manager.modules.init_func_suffix"
42 #define INITFUNC_PFX "manager.modules.init_func_prefix"
43 #define ALLOW_ABSPATH "manager.modules.abs_path_allowed"
44 #define ALLOW_URL "manager.modules.download_allowed"
45 #define MOD_DWNDIR "manager.modules.download_dir"
46 #define MOD_DELMOD "manager.modules.download_cleanup"
47 #define MOD_PRELOAD "manager.modules.preload"
48 
49 #ifdef WIN32
50 #pragma warning( disable : 4290 )
51 #endif
52 
53 namespace RTC
54 {
75  {
76  typedef std::vector<coil::Properties> vProperties;
77  public:
100 
112  ~ModuleManager(void);
113 
121  struct Error
122  {
123  Error(const std::string& _reason)
124  : reason(_reason) {}
125  std::string reason;
126  };
127 
136  struct NotFound
137  {
138  NotFound(const std::string& _name)
139  : name(_name) {}
140  std::string name;
141  };
142 
152  : public NotFound
153  {
154  FileNotFound(const std::string& _name)
155  : NotFound(_name) {}
156  };
157 
167  : public NotFound
168  {
169  ModuleNotFound(const std::string& _name)
170  : NotFound(_name) {}
171  };
172 
182  : public NotFound
183  {
184  SymbolNotFound(const std::string& _name)
185  : NotFound(_name) {}
186  };
187 
197  : public Error
198  {
199  NotAllowedOperation(const std::string& _reason)
200  : Error(_reason) {}
201  };
202 
212  : public Error
213  {
214  InvalidArguments(const std::string& _reason)
215  : Error(_reason) {}
216  };
217 
227  : public Error
228  {
229  InvalidOperation(const std::string& _reason)
230  : Error(_reason) {}
231  };
232  typedef void (*ModuleInitFunc)(Manager*);
233 
279  std::string load(const std::string& file_name);
280 
308  std::string load(const std::string& file_name,
309  const std::string& init_func);
310 
328  void unload(const std::string& file_name);
329 
343  void unloadAll();
344 
352  void* symbol(const std::string& file_name, const std::string& func_name)
354 
372  void setLoadpath(const std::vector<std::string>& load_path);
373 
391  inline std::vector<std::string> getLoadPath()
392  {
393  return m_loadPath;
394  }
395 
413  void addLoadpath(const std::vector<std::string>& load_path);
414 
432  std::vector<coil::Properties> getLoadedModules();
433 
452  std::vector<coil::Properties> getLoadableModules();
453 
467  inline void allowAbsolutePath()
468  {
469  m_absoluteAllowed = true;
470  }
471 
485  inline void disallowAbsolutePath()
486  {
487  m_absoluteAllowed = false;
488  }
489 
507  inline void allowModuleDownload()
508  {
509  m_downloadAllowed = true;
510  }
511 
526  {
527  m_downloadAllowed = false;
528  }
529 
553  std::string findFile(const std::string& fname,
554  const std::vector<std::string>& load_path);
555 
577  bool fileExist(const std::string& filename);
578 
600  std::string getInitFuncName(const std::string& file_path);
601 
602  protected:
610  void removeInvalidModules();
611 
619  void getModuleList(const std::string& lang, coil::vstring& modules);
620 
628  void addNewFile(const std::string& fpath, coil::vstring& modules);
629 
637  void getModuleProfiles(const std::string& lang,
638  const coil::vstring& modules, vProperties& modprops);
639 
648 
656  struct DLLEntity
657  {
660  };
661 
662  typedef std::vector<std::string> StringVector;
663  typedef StringVector::iterator StringVectorItr;
664  typedef StringVector::const_iterator StringVectorConstItr;
665 
666  typedef std::vector<DLLEntity> DllMap;
667  typedef DllMap::iterator DllMapItr;
668  typedef DllMap::const_iterator DllMapConstItr;
669 
670 
679 
687  class DllPred
688  {
689  std::string m_filepath;
690  public:
691  DllPred(const char* filepath) : m_filepath(filepath) {}
692  DllPred(const DLLEntity* dll) : m_filepath(dll->properties["file_path"]) {}
693  bool operator()(DLLEntity* dllentity)
694  {
695  return m_filepath == dllentity->properties.getProperty("file_path");
696  }
697  };
706 
714  StringVector m_loadPath;
722  StringVector m_configPath;
739 
747  std::string m_initFuncSuffix;
748 
756  std::string m_initFuncPrefix;
757 
766  {
767  public:
770  {
771  dll->dll.close();
772  delete dll;
773  }
774  };
775 
776  vProperties m_modprofs;
778 
779  }; // class ModuleManager
780 }; // namespace RTC
781 
782 #ifdef WIN32
783 #pragma warning( default : 4290 )
784 #endif
785 
786 #endif // RTC_MODULEMANAGER_H
void(* ModuleInitFunc)(Manager *)
Definition: ModuleManager.h:232
Structure for exception handling of unimplemented part and specified module missing.
Definition: ModuleManager.h:136
std::string getInitFuncName(const std::string &file_path)
Create initialization function symbol.
NotAllowedOperation(const std::string &_reason)
Definition: ModuleManager.h:199
bool m_absoluteAllowed
Flag of absolute path when specify module for the load.
Definition: ModuleManager.h:738
void operator()(DLLEntity *dll)
Definition: ModuleManager.h:769
NotFound(const std::string &_name)
Definition: ModuleManager.h:138
RT-Component.
Structure for exception handling when file open is failed.
Definition: ModuleManager.h:121
void addLoadpath(const std::vector< std::string > &load_path)
Add the module load path.
coil::Properties & m_properties
Module Manager properties.
Definition: ModuleManager.h:678
Module list that has already loaded.
Definition: ModuleManager.h:687
Error(const std::string &_reason)
Definition: ModuleManager.h:123
~ModuleManager(void)
Destructor.
InvalidArguments(const std::string &_reason)
Definition: ModuleManager.h:214
ObjectManager< const char *, DLLEntity, DllPred > m_modules
Module list that has already loaded.
Definition: ModuleManager.h:705
coil::DynamicLib dll
Definition: ModuleManager.h:659
void setLoadpath(const std::vector< std::string > &load_path)
Set the module load path.
coil::vstring m_loadfailmods
Definition: ModuleManager.h:777
void disallowAbsolutePath()
Disallow absolute path when specify module path.
Definition: ModuleManager.h:485
std::string reason
Definition: ModuleManager.h:125
coil::Properties properties
Definition: ModuleManager.h:658
Manager class.
Definition: Manager.h:81
ModuleNotFound(const std::string &_name)
Definition: ModuleManager.h:169
Structure for exception handling when specified symbol cannot be found.
Definition: ModuleManager.h:181
std::string load(const std::string &file_name)
Load the module.
void allowAbsolutePath()
Allow absolute path when specify module path.
Definition: ModuleManager.h:467
DllMap::const_iterator DllMapConstItr
Definition: ModuleManager.h:668
Module unloading functor.
Definition: ModuleManager.h:765
const std::string & getProperty(const std::string &key) const
Search for the property with the specified key in this property.
void disallowModuleDownload()
Disallow URL when specify module path.
Definition: ModuleManager.h:525
std::vector< coil::Properties > getLoadedModules()
Get the module list that has been loaded.
-*- C++ -*-
InvalidOperation(const std::string &_reason)
Definition: ModuleManager.h:229
bool m_downloadAllowed
Flag of URL when specify module for the load.
Definition: ModuleManager.h:730
Structure for exception handling when specified operation is invalid.
Definition: ModuleManager.h:226
DynamicLib class.
Definition: DynamicLib.h:48
std::vector< std::string > vstring
Definition: stringutil.h:45
StringVector m_loadPath
Module load path list.
Definition: ModuleManager.h:714
Logger rtclog
Logger stream.
Definition: ModuleManager.h:647
StringVector m_configPath
Configuration path list.
Definition: ModuleManager.h:722
Structure for exception handling when specified argument is invalid.
Definition: ModuleManager.h:211
bool fileExist(const std::string &filename)
Check whether the file exists.
void addNewFile(const std::string &fpath, coil::vstring &modules)
Adding file path not existing cache.
Class for managing objects.
Definition: ObjectManager.h:51
StringVector::iterator StringVectorItr
Definition: ModuleManager.h:663
Structure for exception handling when specified module cannot be found.
Definition: ModuleManager.h:166
void removeInvalidModules()
Removing incalid module profiles.
Logger class.
Definition: SystemLogger.h:99
std::vector< std::string > StringVector
Definition: ModuleManager.h:662
virtual int close(void)
Unload of the Dynamic link library.
DllPred(const char *filepath)
Definition: ModuleManager.h:691
ModuleManager class.
Definition: ModuleManager.h:74
vProperties m_modprofs
Definition: ModuleManager.h:776
std::vector< coil::Properties > getLoadableModules()
Get the loadable module list.
std::vector< std::string > getLoadPath()
Get the module load path.
Definition: ModuleManager.h:391
bool operator()(DLLEntity *dllentity)
Definition: ModuleManager.h:693
Class represents a set of properties.
Definition: Properties.h:101
void unloadAll()
Unload all modules.
Structure for exception handling when specified file cannot be found.
Definition: ModuleManager.h:151
StringVector::const_iterator StringVectorConstItr
Definition: ModuleManager.h:664
void * symbol(const std::string &file_name, const std::string &func_name)
Refer to the symbol of the module.
Object management class.
Structure for DLL management.
Definition: ModuleManager.h:656
Property list class (derived from Java Properties)
void unload(const std::string &file_name)
Unload the module.
void allowModuleDownload()
Allow URL when specify module path.
Definition: ModuleManager.h:507
ModuleManager(coil::Properties &prop)
Constructor.
DllPred(const DLLEntity *dll)
Definition: ModuleManager.h:692
void getModuleProfiles(const std::string &lang, const coil::vstring &modules, vProperties &modprops)
Getting module properties from given language and file list.
std::vector< DLLEntity > DllMap
Definition: ModuleManager.h:666
std::string findFile(const std::string &fname, const std::vector< std::string > &load_path)
Search the file from the LoadPath.
UnloadPred()
Definition: ModuleManager.h:768
DllMap::iterator DllMapItr
Definition: ModuleManager.h:667
void getModuleList(const std::string &lang, coil::vstring &modules)
Getting loadable file list on the loadpath for given language.
std::string m_initFuncSuffix
Initial execution function suffix.
Definition: ModuleManager.h:747
Structure for exception handling when specified operation cannot be allowed.
Definition: ModuleManager.h:196
std::string m_initFuncPrefix
Initial execution function prefix.
Definition: ModuleManager.h:756
FileNotFound(const std::string &_name)
Definition: ModuleManager.h:154
SymbolNotFound(const std::string &_name)
Definition: ModuleManager.h:184
std::string name
Definition: ModuleManager.h:140