]> Creatis software - cpPlugins.git/blobdiff - lib/cpPlugins/Interface/Plugins.cxx
Cast image filter added. ROI filter modified.
[cpPlugins.git] / lib / cpPlugins / Interface / Plugins.cxx
index 81366c13b25c5bb58b7446ef5a88765fde8f2b67..9da2f70e9d31b54fa3233a41eff6fcb9af64250d 100644 (file)
@@ -3,15 +3,18 @@
 #include <cpPlugins/OS/DirContents.h>
 #include <cpPlugins/Utility.h>
 
+// -------------------------------------------------------------------------
+cpPlugins::Interface::Plugins::Pointer
+cpPlugins::Interface::Plugins::m_Singleton = NULL;
+
 // -------------------------------------------------------------------------
 cpPlugins::Interface::Plugins::
 Pointer cpPlugins::Interface::Plugins::
 New( )
 {
-  static Pointer singleton = NULL;
-  if( singleton.IsNull( ) )
-    singleton = new Self( );
-  return( singleton );
+  if( Self::m_Singleton.IsNull( ) )
+    Self::m_Singleton = new Self( );
+  return( Self::m_Singleton );
 }
 
 // -------------------------------------------------------------------------
@@ -19,7 +22,7 @@ itk::LightObject::Pointer cpPlugins::Interface::Plugins::
 CreateAnother( ) const
 {
   itk::LightObject::Pointer smartPtr;
-  smartPtr = NULL;
+  smartPtr = Self::m_Singleton;
   return( smartPtr );
 }
 
@@ -28,366 +31,174 @@ cpPlugins::Interface::Plugins::
 Pointer cpPlugins::Interface::Plugins::
 Clone( ) const
 {
-  Pointer r = NULL;
-  return( r );
-}
-
-// -------------------------------------------------------------------------
-cpPlugins::Interface::Plugins::
-TStrings cpPlugins::Interface::Plugins::
-GetLibraries( ) const
-{
-  TStrings res;
-  for(
-    auto i = this->m_Libraries.begin( ); i != this->m_Libraries.end( ); ++i
-    )
-    res.insert( i->first );
-  return( res );
-}
-
-// -------------------------------------------------------------------------
-cpPlugins::Interface::Plugins::
-TStrings cpPlugins::Interface::Plugins::
-GetPlugins( ) const
-{
-  TStrings res;
-  for( auto i = this->m_Plugins.begin( ); i != this->m_Plugins.end( ); ++i )
-    res.insert( i->first );
-  return( res );
+  return( Self::m_Singleton );
 }
 
 // -------------------------------------------------------------------------
-cpPlugins::Interface::Plugins::
-TStrings cpPlugins::Interface::Plugins::
-GetCategories( ) const
+const cpPlugins::Interface::Plugins::
+TFilters& cpPlugins::Interface::Plugins::
+GetFilters( ) const
 {
-  TStrings res;
-  for( auto i = this->m_Filters.begin( ); i != this->m_Filters.end( ); ++i )
-    res.insert( i->first );
-  return( res );
+  return( this->m_Filters );
 }
 
 // -------------------------------------------------------------------------
-cpPlugins::Interface::Plugins::
-TStrings cpPlugins::Interface::Plugins::
-GetFilters( const std::string& category ) const
+void cpPlugins::Interface::Plugins::
+LoadPluginsFile( const std::string& libname )
 {
-  TStrings res;
-  auto cIt = this->m_Filters.find( category );
-  if( cIt != this->m_Filters.end( ) )
-    for( auto i = cIt->second.begin( ); i != cIt->second.end( ); ++i )
-      res.insert( i->first );
-  return( res );
+  std::map< std::string, std::set< std::string > > filters;
+  cpPlugins::OS::DLLManager::GetPluginsLibraryContents( filters, libname );
+  THandlers zero( NULL, NULL );
+  for( auto i : filters )
+    for( auto j : i.second )
+      this->m_Filters[ i.first ][ j ] = TLibData( libname, zero );
 }
 
 // -------------------------------------------------------------------------
 void cpPlugins::Interface::Plugins::
-AddEnvironments( const std::string& env )
+LoadPluginsDirectory( const std::string& dir )
 {
-  std::vector< std::string > directories;
-  cpPlugins::Tokenize( directories, env, cpPlugins_ENV_SEPARATOR );
-  for( auto dir = directories.begin( ); dir != directories.end( ); ++dir )
-    this->m_Paths.insert( cpPlugins::CanonicalPath( *dir ) );
+  // Create a globbing pattern
+  std::stringstream glob;
+  glob << cpPlugins_LIB_PREFIX << "*" << cpPlugins_LIB_EXT;
+
+  // Get possible shared libraries
+  std::set< std::string > files =
+    cpPlugins::OS::LoadDirContents( dir, false, glob.str( ) );
+  this->m_PluginsPaths.insert( dir );
+  for( auto f : files )
+    try { this->LoadPluginsFile( f ); } catch( ... ) { }
 }
 
 // -------------------------------------------------------------------------
 void cpPlugins::Interface::Plugins::
-LoadEnvironments( )
+GuessPlugins( )
 {
-  std::set< std::string > libs;
-  for( auto d = this->m_Paths.begin( ); d != this->m_Paths.end( ); ++d )
-  {
-    std::stringstream fname;
-    fname << *d << cpPlugins_PATH_SEPARATOR << cpPlugins_CONFIG;
-    std::string buffer;
-    if( cpPlugins::Read( buffer, fname.str( ) ) )
-    {
-      std::istringstream input( buffer );
-      for( std::string line; std::getline( input, line ); )
-      {
-        auto pos = line.find( "*" );
-        if( pos != std::string::npos )
-        {
-          std::string dname, fname;
-          cpPlugins::OS::SplitPath( dname, fname, line );
-          auto files = cpPlugins::OS::LoadDirContents( dname, false, fname );
-          for( auto fIt = files.begin( ); fIt != files.end( ); ++fIt )
-            libs.insert( *fIt );
-        }
-        else
-          libs.insert( line );
+  // Create a globbing pattern
+  std::stringstream glob;
+  glob << cpPlugins_LIB_PREFIX << "*" << cpPlugins_LIB_EXT;
 
-      } // rof
-
-    } // fi
-
-  } // rof
-
-  for( auto l = libs.begin( ); l != libs.end( ); ++l )
+  // Update paths and get possible shared libraries
+  this->_ReadPluginsPathsVariable( );
+  for( auto dir : this->m_PluginsPaths )
   {
-    std::string lib = cpPlugins::CanonicalPath( *l );
-    if( lib != "" )
-    {
-      if( this->m_Libraries.find( lib ) == this->m_Libraries.end( ) )
-      {
-        std::string error = "";
-        void* hnd = cpPlugins::OS::DLLManager::Load( lib, error );
-        if( hnd != NULL )
-          this->m_Libraries[ lib ] = hnd;
-
-      } // fi
-
-    } // fi
+    std::set< std::string > files =
+      cpPlugins::OS::LoadDirContents( dir, false, glob.str( ) );
+    for( auto f : files )
+      try { this->LoadPluginsFile( f ); } catch( ... ) { }
 
   } // rof
 }
 
 // -------------------------------------------------------------------------
 void cpPlugins::Interface::Plugins::
-LoadPaths( const std::string& dir )
+GuessEnvironment( const std::string& dir )
 {
-  std::stringstream fname, envs;
-  fname << dir;
-  if( !cpPlugins::IsPathSeparator( dir.back( ) ) )
-    fname << cpPlugins_PATH_SEPARATOR;
-  fname << cpPlugins_PATHS;
+  std::stringstream fname;
+  fname << dir << cpPlugins_PATH_SEPARATOR << cpPlugins_PATHS;
   std::string buffer;
   if( cpPlugins::Read( buffer, fname.str( ) ) )
   {
     std::istringstream input( buffer );
     for( std::string line; std::getline( input, line ); )
-      envs << line << cpPlugins_ENV_SEPARATOR;
+      this->m_PluginsPaths.insert( cpPlugins::CanonicalPath( line ) );
 
   } // fi
-  if( envs.str( ).size( ) > 0 )
-    this->AddEnvironments( envs.str( ) );
 }
 
 // -------------------------------------------------------------------------
-void cpPlugins::Interface::Plugins::
-SavePaths( const std::string& dir ) const
+bool cpPlugins::Interface::Plugins::
+SaveEnvironment( const std::string& dir )
 {
   std::stringstream buffer;
-  for( auto i = this->m_Paths.begin( ); i != this->m_Paths.end( ); ++i )
-    buffer << *i << std::endl;
-
+  for( auto p : this->m_PluginsPaths )
+    buffer << p << std::endl;
   std::stringstream fname;
-  fname << dir;
-  if( !cpPlugins::IsPathSeparator( dir.back( ) ) )
-    fname << cpPlugins_PATH_SEPARATOR;
-  fname << cpPlugins_PATHS;
-  if( !cpPlugins::Write( buffer.str( ), fname.str( ) ) )
-    throw std::runtime_error( "Error writing environment file." );
+  fname << dir << cpPlugins_PATH_SEPARATOR << cpPlugins_PATHS;
+  return( cpPlugins::Write( buffer.str( ), fname.str( ) ) );
 }
 
 // -------------------------------------------------------------------------
-void cpPlugins::Interface::Plugins::
-LoadFile( const std::string& fname )
+cpPlugins::BaseObjects::ProcessObject::Pointer
+cpPlugins::Interface::Plugins::
+CreateFilter( const std::string& category, const std::string& name )
 {
-  // Resolve canonical filename
-  std::string can_name = cpPlugins::CanonicalPath( fname );
-  if( can_name == "" )
-    throw std::runtime_error(
-      std::string( "Loading file: can't find library \"" ) +
-      fname +
-      std::string( "\"" )
-      );
-  if( this->m_Plugins.find( can_name ) != this->m_Plugins.end( ) )
-    return;
-
-  // Load the library
-  std::string error = "";
-  void* hnd = cpPlugins::OS::DLLManager::Load( can_name, error );
-  if( hnd == NULL )
-    throw std::runtime_error(
-      std::string( "Loading plugin library: " ) + error
-      );
-
-  // Get plugins name
-  typedef const char* ( *_TFunction )( );
-  _TFunction plugins_name_function = ( _TFunction )(
-    cpPlugins::OS::DLLManager::GetFunctionHandle( hnd, "cpPlugins_Name" )
-    );
-  if( plugins_name_function == NULL )
+  typedef void* ( *_TCreator )( );
+  typedef cpPlugins::BaseObjects::ProcessObject::Pointer _TPtr;
+  _TPtr o = NULL;
+  auto cat = this->m_Filters.find( category );
+  if( cat != this->m_Filters.end( ) )
   {
-    cpPlugins::OS::DLLManager::UnLoad( hnd );
-    throw std::runtime_error(
-      std::string( "Library \"" ) +
-      can_name +
-      std::string( "\" not recognized as a cpPlugins library" )
-      );
-
-  } // fi
-  std::string plugins_name = plugins_name_function( );
+    auto nam = cat->second.find( name );
+    if( nam != cat->second.end( ) )
+    {
+      void* l_hnd = nam->second.second.first;
+      void* f_hnd = nam->second.second.second;
+      if( l_hnd == NULL )
+      {
+        l_hnd = cpPlugins::OS::DLLManager::LoadPlugins( nam->second.first );
+        nam->second.second.first = l_hnd;
 
-  // Get loaded filters
-  _TFunction function = ( _TFunction )(
-    cpPlugins::OS::DLLManager::GetFunctionHandle( hnd, "cpPlugins_LoadedFilters" )
-    );
-  if( function == NULL )
-  {
-    cpPlugins::OS::DLLManager::UnLoad( hnd );
-    throw std::runtime_error(
-      std::string( "Library \"" ) +
-      can_name +
-      std::string( "\" not recognized as a cpPlugins library" )
-      );
+      } // fi
+      if( f_hnd == NULL )
+      {
+        f_hnd =
+          cpPlugins::OS::DLLManager::LoadCreator( l_hnd, category, name );
+        nam->second.second.second = f_hnd;
 
-  } // fi
-  std::string descriptors = function( );
-  std::replace( descriptors.begin( ), descriptors.end( ), ';', ' ' );
-  std::istringstream str( descriptors );
-  TFilters filters;
-  while( str )
-  {
-    std::string value, category, name;
-    str >> value;
-    if( value == "" )
-      continue;
-    std::replace( value.begin( ), value.end( ), ':', ' ' );
-    std::istringstream value_str( value );
-    value_str >> category >> name;
+      } // fi
+      _TCreator creator = reinterpret_cast< _TCreator >( f_hnd );
+      if( creator != NULL )
+      {
+        void* a = creator( );
+        o = reinterpret_cast< _TPtr* >( a )->GetPointer( );
+        o->SetName( name );
+        o->SetPluginName( nam->second.first );
 
-    // Check if the filter has been already loaded
-    bool found = false;
-    auto fIt = this->m_Filters.find( category );
-    if( fIt != this->m_Filters.end( ) )
-      found = fIt->second.find( name ) != fIt->second.end( );
-    if( found )
-    {
-      cpPlugins::OS::DLLManager::UnLoad( hnd );
-      throw std::runtime_error(
-        std::string( "Filter \"" ) +
-        category + std::string( "::" ) + name +
-        std::string( "\" already exists." )
-        );
+      } // fi
 
     } // fi
 
-    // Get filter creator
-    TCreator creator = ( TCreator )(
-      cpPlugins::OS::DLLManager::GetFunctionHandle(
-        hnd, category + "_" + name
-        )
+  } // fi
+  if( o.IsNull( ) )
+    throw std::runtime_error(
+      std::string( "Could not create a valid ProcessObject of type \"" ) +
+      category + std::string( ":" ) +
+      name + std::string( "\"" )
       );
-    if( creator == NULL )
-    {
-      cpPlugins::OS::DLLManager::UnLoad( hnd );
-      throw std::runtime_error(
-        std::string( "Filter \"" ) +
-        category + std::string( "::" ) + name +
-        std::string( "\" does not have a valid creator." )
-        );
-
-    } // fi
-
-    TCreatorData data;
-    data.PluginName = plugins_name;
-    data.LibraryHandle = hnd;
-    data.Creator = creator;
-    filters[ category ][ name ] = data;
-
-  } // elihw
-
-  // Keep track of all loaded handlers
-  for( auto cIt = filters.begin( ); cIt != filters.end( ); ++cIt )
-    for( auto nIt = cIt->second.begin( ); nIt != cIt->second.end( ); ++nIt )
-      this->m_Filters[ cIt->first ][ nIt->first ] = nIt->second;
-  this->m_Plugins[ can_name ] = hnd;
+  return( o );
 }
 
 // -------------------------------------------------------------------------
-void cpPlugins::Interface::Plugins::
-LoadPlugin( const std::string& pname )
+cpPlugins::Interface::Plugins::
+Plugins( )
+  : Superclass( )
 {
-  std::stringstream fname;
-  fname << cpPlugins_LIB_PREFIX << pname << cpPlugins_LIB_EXT;
-  unsigned int count = 0;
-  for( auto i = this->m_Paths.begin( ); i != this->m_Paths.end( ); ++i )
-  {
-    std::stringstream dir;
-    dir << *i;
-    if( !cpPlugins::IsPathSeparator( i->back( ) ) )
-      dir << cpPlugins_PATH_SEPARATOR;
-    dir << fname.str( );
-    try
-    {
-      this->LoadFile( dir.str( ) );
-    }
-    catch( ... )
-    {
-      count++;
-
-    } // yrt
-
-  } // rof
-
-  // Throw error, if any
-  if( count == this->m_Paths.size( ) )
-    throw std::runtime_error(
-      std::string( "Could not load plugin " ) +
-      std::string( "\"" ) + pname +
-      std::string( "\" from any registered path." )
-      );
+  cpPlugins::OS::DLLManager::TeaseLoadedLibraries( );
 }
 
 // -------------------------------------------------------------------------
-void cpPlugins::Interface::Plugins::
-LoadDirectory( const std::string& dirname )
+cpPlugins::Interface::Plugins::
+~Plugins( )
 {
-  std::stringstream pat;
-  pat << "*" << cpPlugins_LIB_EXT;
-  auto libs = cpPlugins::OS::LoadDirContents( dirname, false, pat.str( ) );
-  for( auto lIt = libs.begin( ); lIt != libs.end( ); ++lIt )
-  {
-    try
-    {
-      this->LoadFile( *lIt );
-    }
-    catch( ... ) { }
-
-  } // rof
 }
 
 // -------------------------------------------------------------------------
 void cpPlugins::Interface::Plugins::
-GuessPlugins( )
+PrintSelf( std::ostream& os, itk::Indent indent ) const
 {
-  for( auto i = this->m_Paths.begin( ); i != this->m_Paths.end( ); ++i )
+  for( auto i : this->m_Filters )
   {
-    try { this->LoadDirectory( *i ); }
-    catch( ... ) { }
+    os << indent << "+ " << i.first << std::endl;
+    for( auto j : i.second )
+      os << indent << "|----> " << j.first << std::endl;
 
   } // rof
 }
 
 // -------------------------------------------------------------------------
-cpPlugins::Interface::Plugins::TProcess::Pointer
-cpPlugins::Interface::Plugins::
-CreateProcessObject( const std::string& category, const std::string& name )
-{
-  typedef cpPlugins::BaseObjects::ProcessObject::Pointer _Ptr;
-  _Ptr o = NULL;
-  auto cIt = this->m_Filters.find( category );
-  if( cIt != this->m_Filters.end( ) )
-  {
-    auto nIt = cIt->second.find( name );
-    if( nIt != cIt->second.end( ) )
-    {
-      o = reinterpret_cast< _Ptr* >( nIt->second.Creator( ) )->GetPointer( );
-      o->SetName( name );
-      o->SetPluginName( nIt->second.PluginName );
-
-    } // fi
-
-  } // fi
-  return( o );
-}
-
-// -------------------------------------------------------------------------
-cpPlugins::Interface::Plugins::
-Plugins( )
-  : Superclass( )
+void cpPlugins::Interface::Plugins::
+_ReadPluginsPathsVariable( )
 {
 #ifdef cpPlugins_OS_Windows
   char* p;
@@ -400,39 +211,10 @@ Plugins( )
   if( p != NULL )
     str << p << cpPlugins_ENV_SEPARATOR;
   str << ".";
-  this->AddEnvironments( str.str( ) );
-}
-
-// -------------------------------------------------------------------------
-cpPlugins::Interface::Plugins::
-~Plugins( )
-{
-}
-
-// -------------------------------------------------------------------------
-void cpPlugins::Interface::Plugins::
-PrintSelf( std::ostream& os, itk::Indent indent ) const
-{
-  // Show data
-  os << indent << "----- PATHS -----" << std::endl;
-  auto paths = this->GetPaths( );
-  for( auto paIt = paths.begin( ); paIt != paths.end( ); ++paIt )
-    os << indent << *paIt << std::endl;
-  os << indent << std::endl << indent << "----- PLUGINS -----" << std::endl;
-  auto plugins = this->GetPlugins( );
-  for( auto plIt = plugins.begin( ); plIt != plugins.end( ); ++plIt )
-    os << indent << *plIt << std::endl;
-  os << indent << std::endl << indent << "----- FILTERS -----" << std::endl;
-  auto categories = this->GetCategories( );
-  for( auto cIt = categories.begin( ); cIt != categories.end( ); ++cIt )
-  {
-    os << indent << "** Category: " << *cIt << " **" << std::endl;
-    auto filters = this->GetFilters( *cIt );
-    for( auto fIt = filters.begin( ); fIt != filters.end( ); ++fIt )
-      os << indent << indent << indent << "Filter: " << *fIt << std::endl;
-
-  } // rof
-
+  std::vector< std::string > tokens;
+  cpPlugins::Tokenize( tokens, str.str( ), cpPlugins_ENV_SEPARATOR );
+  for( auto dir : tokens )
+    this->m_PluginsPaths.insert( cpPlugins::CanonicalPath( dir ) );
 }
 
 // eof - $RCSfile$