]> 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 cpPlugins::ProcessObject::Pointer ( *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     void LoadPluginFile( const std::string& filename );
33     void UnloadAll( );
34
35     cpPlugins::ProcessObject::Pointer Create(
36       const std::string& category, const std::string& name
37       );
38
39   protected:
40     static void* _DLOpen( const std::string& fname );
41     static TFilters _DLGetFilters( void* hnd );
42     static TCreator _DLGetCreator(
43       void* hnd, const std::string& category, const std::string& name
44       );
45     static void _DLClose( void* hnd );
46
47   protected:
48     TDynLibraries m_DynLibraries;
49     TDynFilters   m_DynFilters;
50     TFilters      m_Filters;
51   };
52
53 } // ecapseman
54
55 #endif // __CPPLUGINS__INTERFACE__H__
56
57 // eof - $RCSfile$