]> Creatis software - cpPlugins.git/blobdiff - lib/cpPlugins/Interface/ProcessObject.h
MAC compilation issues solved... Now some tests please
[cpPlugins.git] / lib / cpPlugins / Interface / ProcessObject.h
index 7cf63765c206464b05c7c12e37cc202ba751ff77..e139c994d5e86f9107963ae6acea31fcd626d564 100644 (file)
@@ -1,18 +1,29 @@
 #ifndef __CPPLUGINS__INTERFACE__PROCESSOBJECT__H__
 #define __CPPLUGINS__INTERFACE__PROCESSOBJECT__H__
 
-#include <cpPlugins/Interface/cpPlugins_Interface_Export.h>
-#include <cpPlugins/Interface/Object.h>
-#include <cpPlugins/Interface/DataObject.h>
+#include <map>
+#include <set>
+
+#include <itkDataObject.h>
+#include <cpPlugins/Interface/ProcessObjectPort.h>
 #include <cpPlugins/Interface/Parameters.h>
 
-#define ITK_MANUAL_INSTANTIATION
-#include <itkProcessObject.h>
+// Some forward declarations
+class vtkRenderWindowInteractor;
 
 namespace cpPlugins
 {
   namespace Interface
   {
+    // Some forward declarations
+#ifdef cpPlugins_Interface_QT4
+    class ParametersQtDialog;
+    class SimpleMPRWidget;
+#else
+    typedef char ParametersQtDialog;
+    typedef char SimpleMPRWidget;
+#endif // cpPlugins_Interface_QT4
+
     /**
      */
     class cpPlugins_Interface_EXPORT ProcessObject
@@ -24,42 +35,70 @@ namespace cpPlugins
       typedef itk::SmartPointer< Self >       Pointer;
       typedef itk::SmartPointer< const Self > ConstPointer;
 
-    public:
-      itkTypeMacro( ProcessObject, Object );
+      typedef Parameters TParameters;
+      typedef std::set< vtkRenderWindowInteractor* > TInteractors;
+      typedef bool DialogResult;
 
     public:
-      virtual const Parameters& GetDefaultParameters( ) const;
-      virtual void SetParameters( const Parameters& params );
+      itkTypeMacro( ProcessObject, Object );
+      cpPlugins_Id_Macro( ProcessObject, BaseObject );
 
-      virtual unsigned int GetNumberOfInputs( ) const;
-      virtual unsigned int GetNumberOfOutputs( ) const;
+      itkGetConstObjectMacro( Parameters, TParameters );
 
-      virtual void SetNumberOfInputs( unsigned int n );
-      virtual void SetNumberOfOutputs( unsigned int n );
+      itkGetObjectMacro( Parameters, TParameters );
+      itkGetMacro( ParametersDialog, ParametersQtDialog* );
+      itkGetMacro( SingleInteractor, vtkRenderWindowInteractor* );
+      itkGetMacro( MPRViewer, SimpleMPRWidget* );
 
-      virtual void SetInput( unsigned int idx, DataObject* dobj );
-      virtual DataObject* GetOutput( unsigned int idx );
+      itkSetObjectMacro( ParametersDialog, ParametersQtDialog );
+      itkSetObjectMacro( SingleInteractor, vtkRenderWindowInteractor );
+      itkSetObjectMacro( MPRViewer, SimpleMPRWidget );
 
+    public:
+      virtual void SetITK( itk::LightObject* o );
+      virtual void SetVTK( vtkObjectBase* o );
+
+      // IO management
+      std::set< std::string > GetInputsNames( ) const;
+      std::set< std::string > GetOutputsNames( ) const;
+      unsigned int GetNumberOfInputs( ) const;
+      unsigned int GetNumberOfOutputs( ) const;
+
+      OutputProcessObjectPort& GetOutput( const std::string& id );
+      const OutputProcessObjectPort& GetOutput( const std::string& id ) const;
+
+      template< class T >
+        inline T* GetInputData( const std::string& id );
+      template< class T >
+        inline const T* GetInputData( const std::string& id ) const;
+      template< class T >
+        inline T* GetOutputData( const std::string& id );
+      template< class T >
+        inline const T* GetOutputData( const std::string& id ) const;
+
+      bool SetInput(
+        const std::string& id, const OutputProcessObjectPort& port
+        );
+
+      void DisconnectInputs( );
+      void DisconnectOutputs( );
+      void Disconnect( );
+
+      // Pipeline execution
+      virtual itk::ModifiedTimeType GetMTime( ) const;
       virtual std::string Update( );
-      virtual void DisconnectOutputs( );
 
     protected:
       ProcessObject( );
       virtual ~ProcessObject( );
 
-      /* TODO
-         virtual itk::DataObject* _GetInput( unsigned int idx );
-         virtual void _SetOutput( unsigned int idx, itk::DataObject* dobj );
-      */
-
+      void _AddInput( const std::string& name, bool required = true );
       template< class O >
-        void _MakeOutput( unsigned int idx )
-      {
-        if( idx >= this->m_Outputs.size( ) )
-          return;
-        this->m_Outputs[ idx ] = O::New( );
-        this->m_Outputs[ idx ]->SetSource( this );
-      }
+        inline void _AddOutput( const std::string& name );
+      template< class F >
+        inline F* _CreateITK( );
+      template< class F >
+        inline F* _CreateVTK( );
 
       virtual std::string _GenerateData( ) = 0;
 
@@ -69,18 +108,25 @@ namespace cpPlugins
       Self& operator=( const Self& );
 
     protected:
-      itk::ProcessObject::Pointer m_RealProcessObject;
-      Parameters m_DefaultParameters;
-      Parameters m_Parameters;
+      typedef std::map< std::string, InputProcessObjectPort >  _TInputs;
+      typedef std::map< std::string, OutputProcessObjectPort > _TOutputs;
+      _TInputs  m_Inputs;
+      _TOutputs m_Outputs;
+      Parameters::Pointer m_Parameters;
 
-      std::vector< DataObject::Pointer > m_Inputs;
-      std::vector< DataObject::Pointer > m_Outputs;
+      itk::ModifiedTimeType m_LastExecutionTime;
+
+      ParametersQtDialog*        m_ParametersDialog;
+      vtkRenderWindowInteractor* m_SingleInteractor;
+      SimpleMPRWidget*           m_MPRViewer;
     };
 
   } // ecapseman
 
 } // ecapseman
 
+#include <cpPlugins/Interface/ProcessObject.hxx>
+
 #endif // __CPPLUGINS__INTERFACE__PROCESSOBJECT__H__
 
 // eof - $RCSfile$