X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=lib%2FcpPlugins%2FInterface%2FParameters.h;h=3bf5d0140b8d068e36765a26208599dd0e284e6f;hb=6ffc11d77924d6ab7e94db95d41105982ac73e00;hp=a806ee7bdfdd82d42188b35f729703f558f12b72;hpb=320afa917228a86723477e0b60a7cd6ce87e5fe9;p=cpPlugins.git diff --git a/lib/cpPlugins/Interface/Parameters.h b/lib/cpPlugins/Interface/Parameters.h index a806ee7..3bf5d01 100644 --- a/lib/cpPlugins/Interface/Parameters.h +++ b/lib/cpPlugins/Interface/Parameters.h @@ -1,133 +1,304 @@ #ifndef __CPPLUGINS__INTERFACE__PARAMETERS__H__ #define __CPPLUGINS__INTERFACE__PARAMETERS__H__ +#include + #include +#include +#include #include #include +#include +#include + +// Some forward declarations +class TiXmlElement; + +// ------------------------------------------------------------------------- +#define cpPlugins_Parameters_Configure( Y ) \ + void ConfigureAs##Y( const std::string& name ) \ + { \ + this->m_Parameters[ name ] = TParameter( Self::Y, "" ); \ + this->Modified( ); \ + } \ + bool Has##Y( const std::string& name ) const \ + { \ + auto i = this->m_Parameters.find( name ); \ + if( i != this->m_Parameters.end( ) ) \ + return( i->second.first == Self::Y ); \ + else \ + return( false ); \ + } + +// ------------------------------------------------------------------------- +#define cpPlugins_Parameters_GetSet( Y ) \ + T##Y Get##Y( const std::string& name ) const \ + { \ + auto i = this->m_Parameters.find( name ); \ + if( i != this->m_Parameters.end( ) ) \ + { \ + if( i->second.first == Self::Y ) \ + { \ + if( typeid( T##Y ) != typeid( std::string ) ) \ + { \ + std::istringstream tok_str( i->second.second ); \ + T##Y v; \ + tok_str >> v; \ + return( v ); \ + } \ + else \ + { \ + const T##Y* ptr = \ + reinterpret_cast< const T##Y* >( \ + &( i->second.second ) \ + ); \ + return( *ptr ); \ + } \ + } \ + } \ + return( T##Y( 0 ) ); \ + } \ + void Set##Y( const std::string& name, const T##Y& v ) \ + { \ + auto i = this->m_Parameters.find( name ); \ + if( i != this->m_Parameters.end( ) ) \ + { \ + if( i->second.first == Self::Y ) \ + { \ + if( typeid( T##Y ) != typeid( std::string ) ) \ + { \ + std::stringstream str; \ + str << v; \ + if( i->second.second != str.str( ) ) \ + { \ + i->second.second = str.str( ); \ + this->Modified( ); \ + } \ + } \ + else \ + { \ + const std::string* str = \ + reinterpret_cast< const std::string* >( &v ); \ + if( i->second.second != *str ) \ + { \ + i->second.second = *str; \ + this->Modified( ); \ + } \ + } \ + } \ + } \ + } + +// ------------------------------------------------------------------------- +#define cpPlugins_Parameters_GetSetList( Y ) \ + std::vector< T##Y > Get##Y##List( const std::string& name ) const \ + { \ + std::vector< T##Y > lst; \ + std::vector< std::string >* slst = \ + reinterpret_cast< std::vector< std::string >* >( &lst ); \ + auto i = this->m_Parameters.find( name ); \ + if( i != this->m_Parameters.end( ) ) \ + { \ + if( i->second.first == Self::Y##List ) \ + { \ + std::istringstream str( i->second.second ); \ + std::string token; \ + while( std::getline( str, token, '#' ) ) \ + { \ + if( typeid( T##Y ) != typeid( std::string ) ) \ + { \ + std::istringstream tok_str( token ); \ + T##Y v; \ + tok_str >> v; \ + lst.push_back( v ); \ + } \ + else \ + slst->push_back( token ); \ + } \ + } \ + } \ + return( lst ); \ + } \ + void AddTo##Y##List( const std::string& name, const T##Y& v ) \ + { \ + auto i = this->m_Parameters.find( name ); \ + if( i != this->m_Parameters.end( ) ) \ + { \ + if( i->second.first == Self::Y##List ) \ + { \ + std::stringstream str; \ + if( i->second.second != "" ) \ + str << i->second.second << "#"; \ + str << v; \ + i->second.second = str.str( ); \ + this->Modified( ); \ + } \ + } \ + } \ + void Clear##Y##List( const std::string& name ) \ + { \ + auto i = this->m_Parameters.find( name ); \ + if( i != this->m_Parameters.end( ) ) \ + { \ + if( i->second.first == Self::Y##List ) \ + { \ + if( i->second.second != "" ) \ + { \ + i->second.second = ""; \ + this->Modified( ); \ + } \ + } \ + } \ + } + namespace cpPlugins { namespace Interface { + // Some forward declarations + class ProcessObject; + class ParametersQtDialog; + /** */ - class Parameters + class cpPlugins_Interface_EXPORT Parameters + : public itk::Object { + friend class ParametersQtDialog; + public: - typedef Parameters Self; + typedef Parameters Self; + typedef itk::Object Superclass; + typedef itk::SmartPointer< Self > Pointer; + typedef itk::SmartPointer< const Self > ConstPointer; enum Type { - String = 0, - Int, - Uint, - Real, - Index, - Point, - StringList, - IntList, - UintList, - RealList, - IndexList, - PointList + String , Bool , Int , + Uint , Real , OpenFileName , + SaveFileName , PathName , StringList , + BoolList , IntList , UintList , + RealList , OpenFileNameList , SaveFileNameList , + PathNameList , Choices , NoType }; - typedef std::pair< Self::Type, std::string > TParameter; - typedef std::map< std::string, TParameter > TParameters; + typedef bool TBool; typedef long TInt; typedef unsigned long TUint; typedef double TReal; + typedef std::string TString; + typedef std::string TOpenFileName; + typedef std::string TSaveFileName; + typedef std::string TPathName; + + typedef std::pair< Self::Type, std::string > TParameter; + typedef std::map< std::string, TParameter > TParameters; public: - Parameters( ); - Parameters( const Self& other ); - virtual ~Parameters( ); + itkNewMacro( Self ); + itkTypeMacro( cpPlugins::Interface::Parameters, itk::Object ); - Self& operator=( const Self& other ); + cpPlugins_Parameters_Configure( String ); + cpPlugins_Parameters_Configure( Bool ); + cpPlugins_Parameters_Configure( Int ); + cpPlugins_Parameters_Configure( Uint ); + cpPlugins_Parameters_Configure( Real ); + cpPlugins_Parameters_Configure( OpenFileName ); + cpPlugins_Parameters_Configure( SaveFileName ); + cpPlugins_Parameters_Configure( PathName ); + cpPlugins_Parameters_Configure( StringList ); + cpPlugins_Parameters_Configure( BoolList ); + cpPlugins_Parameters_Configure( IntList ); + cpPlugins_Parameters_Configure( UintList ); + cpPlugins_Parameters_Configure( RealList ); + cpPlugins_Parameters_Configure( OpenFileNameList ); + cpPlugins_Parameters_Configure( SaveFileNameList ); + cpPlugins_Parameters_Configure( PathNameList ); + cpPlugins_Parameters_Configure( Choices ); - void Configure( const Self::Type& type, const std::string& name ); - void SetValueAsString( const std::string& name, const std::string& v ); - void SetValueAsInt( const std::string& name, const TInt& v ); - void SetValueAsUint( const std::string& name, const TUint& v ); - void SetValueAsReal( const std::string& name, const TReal& v ); - void SetValueAsIndex( const std::string& name, const TUint& n, ... ); - void SetValueAsPoint( const std::string& name, const TUint& n, ... ); - - template< class I > - void SetValueAsStringList( - const std::string& name, const I& b, const I& e - ); + cpPlugins_Parameters_GetSet( Bool ); + cpPlugins_Parameters_GetSet( Int ); + cpPlugins_Parameters_GetSet( Uint ); + cpPlugins_Parameters_GetSet( Real ); + cpPlugins_Parameters_GetSet( OpenFileName ); + cpPlugins_Parameters_GetSet( SaveFileName ); + cpPlugins_Parameters_GetSet( PathName ); - template< class I > - void SetValueAsIntList( - const std::string& name, const I& b, const I& e - ); + cpPlugins_Parameters_GetSetList( String ); + cpPlugins_Parameters_GetSetList( Bool ); + cpPlugins_Parameters_GetSetList( Int ); + cpPlugins_Parameters_GetSetList( Uint ); + cpPlugins_Parameters_GetSetList( Real ); + cpPlugins_Parameters_GetSetList( OpenFileName ); + cpPlugins_Parameters_GetSetList( SaveFileName ); + cpPlugins_Parameters_GetSetList( PathName ); - template< class I > - void SetValueAsUintList( - const std::string& name, const I& b, const I& e - ); + public: + // To impact pipeline + virtual ProcessObject* GetProcessObject( ); + virtual const ProcessObject* GetProcessObject( ) const; + virtual void SetProcessObject( ProcessObject* v ); + virtual void Modified( ) const; - template< class I > - void SetValueAsRealList( - const std::string& name, const I& b, const I& e - ); + // Parameters container configuration + void Clear( ); - template< class I > - void SetValueAsIndexList( - const std::string& name, const I& b, const I& e - ); + // Get methods + void GetNames( std::vector< std::string >& container ) const; + Type GetType( const std::string& name ) const; + std::string GetTypeAsString( const std::string& name ) const; + static Type GetTypeFromString( const std::string& t ); - template< class I > - void SetValueAsPointList( - const std::string& name, const I& b, const I& e + // Base string methods + std::string GetString( + const std::string& name, bool force = true + ) const; + void SetString( + const std::string& name, const std::string& v, bool force = true ); - const std::string& GetValueAsString( const std::string& name ) const; - TInt GetValueAsInt( const std::string& name ) const; - TUint GetValueAsUint( const std::string& name ) const; - TReal GetValueAsReal( const std::string& name ) const; + void ConfigureAsChoices( + const std::string& name, const std::vector< std::string >& choices + ); + std::vector< std::string > GetChoices( const std::string& name ) const; + std::string GetSelectedChoice( const std::string& name ) const; + bool SetSelectedChoice( + const std::string& name, const std::string& choice + ); - template< class I > - I GetValueAsIndex( const std::string& name ) const; + std::string GetAcceptedFileExtensions( const std::string& name ) const; + void SetAcceptedFileExtensions( + const std::string& name, const std::string& extensions + ); - template< class P > - P GetValueAsPoint( const std::string& name ) const; + // XML "streaming" + bool ToXML( TiXmlElement* parent_elem ) const; + bool FromXML( const TiXmlElement* filter_elem ); - void GetValueAsStringList( - std::vector< std::string >& lst, const std::string& name - ) const; - void GetValueAsIntList( - std::vector< TInt >& lst, const std::string& name - ) const; - void GetValueAsUintList( - std::vector< TUint >& lst, const std::string& name - ) const; - void GetValueAsRealList( - std::vector< TReal >& lst, const std::string& name - ) const; + protected: + Parameters( ); + virtual ~Parameters( ); + void PrintSelf( std::ostream& os, itk::Indent indent ) const; - template< class I > - void GetValueAsIndexList( - std::vector< I >& lst, const std::string& name - ) const; - - template< class P > - void GetValueAsPointList( - std::vector< P >& lst, const std::string& name - ) const; + TParameters& GetRawParameters( ); + const TParameters& GetRawParameters( ) const; + private: + // Purposely not implemented + Parameters( const Self& other ); + Self& operator=( const Self& other ); protected: - TParameters m_Parameters; + TParameters m_Parameters; + std::map< std::string, std::string > m_AcceptedFileExtensions; + ProcessObject* m_Process; }; } // ecapseman } // ecapseman -#include - #endif // __CPPLUGINS__INTERFACE__PARAMETERS__H__ // eof - $RCSfile$