]> Creatis software - cpPlugins.git/blobdiff - lib/cpPlugins/Interface/ProcessObject.cxx
merge async example
[cpPlugins.git] / lib / cpPlugins / Interface / ProcessObject.cxx
index cd88ea67ba637162b0938bd3474eb5a37cc9294b..ae4a1d3e4b2cf793c8eeab4ac1255691dbb589fd 100644 (file)
@@ -1,38 +1,34 @@
 #include <cpPlugins/Interface/ProcessObject.h>
 
-// -------------------------------------------------------------------------
-cpPlugins::Interface::ProcessObject::
-ProcessObject( )
-  : Superclass( )
-{
-}
+#ifdef cpPlugins_Interface_QT4
+#include <cpPlugins/Interface/ParametersQtDialog.h>
+#endif // cpPlugins_Interface_QT4
 
 // -------------------------------------------------------------------------
-cpPlugins::Interface::ProcessObject::
-~ProcessObject( )
+void cpPlugins::Interface::ProcessObject::
+Modified( ) const
 {
+  if( this->m_ITKObject.IsNotNull( ) )
+    this->m_ITKObject->Modified( );
+  if( this->m_VTKObject.GetPointer( ) != NULL )
+    this->m_VTKObject->Modified( );
+  this->Superclass::Modified( );
 }
 
 // -------------------------------------------------------------------------
-std::string cpPlugins::Interface::ProcessObject::
-GetClassName( ) const
+cpPlugins::Interface::ProcessObject::
+TParameters* cpPlugins::Interface::ProcessObject::
+GetParameters( )
 {
-  return( "cpPlugins::Interface::ProcessObject" );
+  return( this->m_Parameters.GetPointer( ) );
 }
 
 // -------------------------------------------------------------------------
 const cpPlugins::Interface::ProcessObject::
-TParameters& cpPlugins::Interface::ProcessObject::
-GetDefaultParameters( ) const
-{
-  return( this->m_DefaultParameters );
-}
-
-// -------------------------------------------------------------------------
-void cpPlugins::Interface::ProcessObject::
-SetParameters( const TParameters& params )
+TParameters* cpPlugins::Interface::ProcessObject::
+GetParameters( ) const
 {
-  this->m_Parameters = params;
+  return( this->m_Parameters.GetPointer( ) );
 }
 
 // -------------------------------------------------------------------------
@@ -51,41 +47,96 @@ GetNumberOfOutputs( ) const
 
 // -------------------------------------------------------------------------
 void cpPlugins::Interface::ProcessObject::
-SetInput(
-  unsigned int idx, const cpPlugins::Interface::DataObject* dobj
-  )
+SetInput( const std::string& id, cpPlugins::Interface::DataObject* dobj )
 {
-  if( idx < this->m_Inputs.size( ) )
-    this->m_Inputs[ idx ] = dobj;
-}
+  _TDataContainer::iterator i = this->m_Inputs.find( id );
+  if( i != this->m_Inputs.end( ) )
+  {
+    i->second = dobj;
+    this->Modified( );
 
-// -------------------------------------------------------------------------
-cpPlugins::Interface::DataObject* cpPlugins::Interface::ProcessObject::
-GetOutput( unsigned int idx ) const
-{
-  if( idx < this->m_Outputs.size( ) )
-    return( this->m_Outputs[ idx ] );
-  else
-    return( NULL );
+  } // fi
 }
 
 // -------------------------------------------------------------------------
 std::string cpPlugins::Interface::ProcessObject::
 Update( )
 {
+  std::string r = "";
+
   // Force upstream updates
-  for( unsigned int idx = 0; idx < this->m_Inputs.size( ); ++idx )
-    this->m_Inputs->GetSource( )->Update( );
+  _TDataContainer::iterator i = this->m_Inputs.begin( );
+  for( ; i != this->m_Inputs.end( ) && r == ""; ++i )
+  {
+    Self* src = dynamic_cast< Self* >( i->second->GetSource( ) );
+    if( src != NULL )
+      r = src->Update( );
+
+  } // rof
 
   // Current update
-  std::string ret = this->_GenerateData( );
+  if( r == "" )
+    r = this->_GenerateData( );
+
+  // Return error description, if any
+  return( r );
+}
+
+// -------------------------------------------------------------------------
+void cpPlugins::Interface::ProcessObject::
+DisconnectOutputs( )
+{
+  _TDataContainer::iterator i = this->m_Outputs.begin( );
+  for( ; i != this->m_Outputs.end( ); ++i )
+    if( i->second.IsNotNull( ) )
+      i->second->DisconnectPipeline( );
+}
+
+// -------------------------------------------------------------------------
+bool cpPlugins::Interface::ProcessObject::
+ExecConfigurationDialog( QWidget* parent )
+{
+  bool r = false;
 
-  // Sync outputs
-  for( unsigned int odx = 0; odx < this->m_Outputs.size( ); ++odx )
-    this->m_Outputs->SetSource( this );
+#ifdef cpPlugins_Interface_QT4
+
+  r = cpPlugins::Interface::ParametersQtDialog(
+    this->m_Parameters,
+    this->GetClassName( ) + std::string( " basic configuration" ),
+    parent
+    );
+  /*
+    if( r )
+    // TODO: !!! this->m_Parameters = parameters;
+    */
+
+#endif // cpPlugins_Interface_QT4
+
+  return( r );
+}
+
+// -------------------------------------------------------------------------
+cpPlugins::Interface::ProcessObject::
+ProcessObject( )
+  : Superclass( ),
+    m_ITKObject( NULL ),
+    m_VTKObject( NULL )
+{
+  this->m_Parameters = TParameters::New( );
+}
 
-  return( ret );
+// -------------------------------------------------------------------------
+cpPlugins::Interface::ProcessObject::
+~ProcessObject( )
+{
 }
 
+// -------------------------------------------------------------------------
+void cpPlugins::Interface::ProcessObject::
+_AddInput( const std::string& name )
+{
+  this->m_Inputs[ name ] = NULL;
+  this->Modified( );
+}
 
 // eof - $RCSfile$