]> Creatis software - cpPlugins.git/blob - lib/cpPlugins/Interface.h
...
[cpPlugins.git] / lib / cpPlugins / Interface.h
1 #ifndef __CPPLUGINS__INTERFACE__H__
2 #define __CPPLUGINS__INTERFACE__H__
3
4 #include <cpPlugins/Config.h>
5 #include <cpPlugins/ProcessObject.h>
6 #include <map>
7 #include <set>
8 #include <string>
9
10 namespace cpPlugins
11 {
12   /**
13    */
14   class cpPlugins_EXPORT Interface
15   {
16   public:
17     typedef Interface Self;
18
19     typedef void* ( *TCreator )( );
20     typedef std::pair< std::string, TCreator >               TDynFunc;
21     typedef std::map< std::string, TDynFunc >                TDynFilter;
22     typedef std::map< std::string, TDynFilter >              TDynFilters;
23     typedef std::map< std::string, void* >                   TDynLibraries;
24     typedef std::map< std::string, std::set< std::string > > TFilters;
25
26   public:
27     Interface( );
28     virtual ~Interface( );
29
30     const TFilters& GetFilters( );
31
32     bool LoadConfiguration( const std::string& filename );
33     bool SaveConfiguration( const std::string& filename ) const;
34     void LoadPluginFile( const std::string& filename );
35     void LoadPluginDir( const std::string& dirname );
36     void UnloadAll( );
37
38     cpPlugins::ProcessObject::Pointer Create(
39       const std::string& category, const std::string& name
40       );
41
42   protected:
43     static void* _DLOpen( const std::string& fname );
44     static TFilters _DLGetFilters( void* hnd );
45     static TCreator _DLGetCreator(
46       void* hnd, const std::string& category, const std::string& name
47       );
48     static void _DLClose( void* hnd );
49
50   protected:
51     TDynLibraries m_DynLibraries;
52     TDynFilters   m_DynFilters;
53     TFilters      m_Filters;
54   };
55
56 } // ecapseman
57
58 #endif // __CPPLUGINS__INTERFACE__H__
59
60 // eof - $RCSfile$