Skip to content
Snippets Groups Projects
Commit 426b5538 authored by Jan Trávníček's avatar Jan Trávníček
Browse files

drop reset from OperationAbstraction

parent 9063f0ca
No related branches found
No related tags found
No related merge requests found
...@@ -45,7 +45,7 @@ bool AnyaryOperationAbstractionImpl::eval ( ) { ...@@ -45,7 +45,7 @@ bool AnyaryOperationAbstractionImpl::eval ( ) {
if ( ! inputsAttached ( ) ) if ( ! inputsAttached ( ) )
return false; return false;
   
if ( this->cached ( ) ) if ( this->evaluated ( ) )
return true; return true;
   
for ( const std::pair < std::shared_ptr < OperationAbstraction >, bool > & param : m_params ) for ( const std::pair < std::shared_ptr < OperationAbstraction >, bool > & param : m_params )
......
...@@ -74,7 +74,7 @@ public: ...@@ -74,7 +74,7 @@ public:
if ( ! inputsAttached ( ) ) if ( ! inputsAttached ( ) )
return false; return false;
   
if ( this->cached ( ) ) if ( this->evaluated ( ) )
return true; return true;
   
for ( const std::pair < std::shared_ptr < OperationAbstraction >, bool > & param : m_params ) for ( const std::pair < std::shared_ptr < OperationAbstraction >, bool > & param : m_params )
......
...@@ -30,9 +30,8 @@ public: ...@@ -30,9 +30,8 @@ public:
   
virtual bool inputsAttached ( ) const = 0; virtual bool inputsAttached ( ) const = 0;
virtual bool eval ( ) = 0; virtual bool eval ( ) = 0;
virtual bool evaluated ( ) const = 0;
virtual size_t numberOfParams ( ) const = 0; virtual size_t numberOfParams ( ) const = 0;
virtual bool cached ( ) const = 0;
virtual void reset ( ) = 0;
   
virtual ext::type_index getParamTypeIndex ( size_t index ) const = 0; virtual ext::type_index getParamTypeIndex ( size_t index ) const = 0;
virtual ext::type_index getReturnTypeIndex ( ) const = 0; virtual ext::type_index getReturnTypeIndex ( ) const = 0;
......
...@@ -90,7 +90,7 @@ public: ...@@ -90,7 +90,7 @@ public:
if ( ! inputsAttached ( ) ) if ( ! inputsAttached ( ) )
return false; return false;
   
if ( this->cached ( ) ) if ( this->evaluated ( ) )
return true; return true;
   
return this->run ( ); return this->run ( );
...@@ -100,13 +100,8 @@ public: ...@@ -100,13 +100,8 @@ public:
return NumberOfParams; return NumberOfParams;
} }
   
bool cached ( ) const override { bool evaluated ( ) const override {
return m_abstractions [ m_resultId ]->cached ( ); return m_abstractions [ m_resultId ]->evaluated ( );
}
void reset ( ) override {
for ( std::shared_ptr < abstraction::OperationAbstraction > & abstraction : m_abstractions )
return abstraction->reset ( );
} }
   
ext::type_index getParamTypeIndex ( size_t index ) const override { ext::type_index getParamTypeIndex ( size_t index ) const override {
......
...@@ -55,7 +55,7 @@ protected: ...@@ -55,7 +55,7 @@ protected:
public: public:
template < typename ... ParamTypes, typename Callable > template < typename ... ParamTypes, typename Callable >
inline void run_helper ( Callable callback, const ext::array < std::pair < std::shared_ptr < OperationAbstraction >, bool >, sizeof ... ( ParamTypes ) > & inputs ) { inline void run_helper ( Callable callback, const ext::array < std::pair < std::shared_ptr < OperationAbstraction >, bool >, sizeof ... ( ParamTypes ) > & inputs ) {
if ( ! cached ( ) ) if ( ! evaluated ( ) )
setData ( abstraction::apply < ParamTypes ... > ( callback, inputs ) ); setData ( abstraction::apply < ParamTypes ... > ( callback, inputs ) );
} }
   
...@@ -67,13 +67,9 @@ public: ...@@ -67,13 +67,9 @@ public:
return abstraction::ParamQualifiers::paramQualifiers < ReturnType > ( ); return abstraction::ParamQualifiers::paramQualifiers < ReturnType > ( );
} }
   
bool cached ( ) const override { bool evaluated ( ) const override {
return ( bool ) m_data; return ( bool ) m_data;
} }
void reset ( ) override {
m_data.reset ( );
}
}; };
   
template < class ReturnType > template < class ReturnType >
...@@ -108,7 +104,7 @@ protected: ...@@ -108,7 +104,7 @@ protected:
public: public:
template < typename ... ParamTypes, typename Callable > template < typename ... ParamTypes, typename Callable >
inline void run_helper ( Callable callback, const ext::array < std::pair < std::shared_ptr < OperationAbstraction >, bool >, sizeof ... ( ParamTypes ) > & inputs ) { inline void run_helper ( Callable callback, const ext::array < std::pair < std::shared_ptr < OperationAbstraction >, bool >, sizeof ... ( ParamTypes ) > & inputs ) {
if ( ! cached ( ) ) if ( ! evaluated ( ) )
setData ( abstraction::apply < ParamTypes ... > ( callback, inputs ) ); setData ( abstraction::apply < ParamTypes ... > ( callback, inputs ) );
} }
   
...@@ -120,13 +116,9 @@ public: ...@@ -120,13 +116,9 @@ public:
return abstraction::ParamQualifiers::paramQualifiers < const ReturnType > ( ); return abstraction::ParamQualifiers::paramQualifiers < const ReturnType > ( );
} }
   
bool cached ( ) const override { bool evaluated ( ) const override {
return ( bool ) m_data; return ( bool ) m_data;
} }
void reset ( ) override {
m_data.reset ( );
}
}; };
   
template < class ReturnType > template < class ReturnType >
...@@ -161,7 +153,7 @@ protected: ...@@ -161,7 +153,7 @@ protected:
public: public:
template < typename ... ParamTypes, typename Callable > template < typename ... ParamTypes, typename Callable >
inline void run_helper ( Callable callback, const ext::array < std::pair < std::shared_ptr < OperationAbstraction >, bool >, sizeof ... ( ParamTypes ) > & inputs ) { inline void run_helper ( Callable callback, const ext::array < std::pair < std::shared_ptr < OperationAbstraction >, bool >, sizeof ... ( ParamTypes ) > & inputs ) {
if ( ! cached ( ) ) if ( ! evaluated ( ) )
setData ( abstraction::apply < ParamTypes ... > ( callback, inputs ) ); setData ( abstraction::apply < ParamTypes ... > ( callback, inputs ) );
} }
   
...@@ -173,13 +165,9 @@ public: ...@@ -173,13 +165,9 @@ public:
return abstraction::ParamQualifiers::paramQualifiers < ReturnType & > ( ); return abstraction::ParamQualifiers::paramQualifiers < ReturnType & > ( );
} }
   
bool cached ( ) const override { bool evaluated ( ) const override {
return ( bool ) m_data; return ( bool ) m_data;
} }
void reset ( ) override {
m_data.reset ( );
}
}; };
   
template < class ReturnType > template < class ReturnType >
...@@ -214,7 +202,7 @@ protected: ...@@ -214,7 +202,7 @@ protected:
public: public:
template < typename ... ParamTypes, typename Callable > template < typename ... ParamTypes, typename Callable >
inline void run_helper ( Callable callback, const ext::array < std::pair < std::shared_ptr < OperationAbstraction >, bool >, sizeof ... ( ParamTypes ) > & inputs ) { inline void run_helper ( Callable callback, const ext::array < std::pair < std::shared_ptr < OperationAbstraction >, bool >, sizeof ... ( ParamTypes ) > & inputs ) {
if ( ! cached ( ) ) if ( ! evaluated ( ) )
setData ( abstraction::apply < ParamTypes ... > ( callback, inputs ) ); setData ( abstraction::apply < ParamTypes ... > ( callback, inputs ) );
} }
   
...@@ -226,13 +214,9 @@ public: ...@@ -226,13 +214,9 @@ public:
return abstraction::ParamQualifiers::paramQualifiers < const ReturnType & > ( ); return abstraction::ParamQualifiers::paramQualifiers < const ReturnType & > ( );
} }
   
bool cached ( ) const override { bool evaluated ( ) const override {
return ( bool ) m_data; return ( bool ) m_data;
} }
void reset ( ) override {
m_data.reset ( );
}
}; };
   
template < class ReturnType > template < class ReturnType >
...@@ -267,7 +251,7 @@ protected: ...@@ -267,7 +251,7 @@ protected:
public: public:
template < typename ... ParamTypes, typename Callable > template < typename ... ParamTypes, typename Callable >
inline void run_helper ( Callable callback, const ext::array < std::pair < std::shared_ptr < OperationAbstraction >, bool >, sizeof ... ( ParamTypes ) > & inputs ) { inline void run_helper ( Callable callback, const ext::array < std::pair < std::shared_ptr < OperationAbstraction >, bool >, sizeof ... ( ParamTypes ) > & inputs ) {
if ( ! cached ( ) ) if ( ! evaluated ( ) )
setData ( abstraction::apply < ParamTypes ... > ( callback, inputs ) ); setData ( abstraction::apply < ParamTypes ... > ( callback, inputs ) );
} }
   
...@@ -279,13 +263,9 @@ public: ...@@ -279,13 +263,9 @@ public:
return abstraction::ParamQualifiers::paramQualifiers < ReturnType && > ( ); return abstraction::ParamQualifiers::paramQualifiers < ReturnType && > ( );
} }
   
bool cached ( ) const override { bool evaluated ( ) const override {
return ( bool ) m_data; return ( bool ) m_data;
} }
void reset ( ) override {
m_data.reset ( );
}
}; };
   
template < class ReturnType > template < class ReturnType >
...@@ -320,7 +300,7 @@ protected: ...@@ -320,7 +300,7 @@ protected:
public: public:
template < typename ... ParamTypes, typename Callable > template < typename ... ParamTypes, typename Callable >
inline void run_helper ( Callable callback, const ext::array < std::pair < std::shared_ptr < OperationAbstraction >, bool >, sizeof ... ( ParamTypes ) > & inputs ) { inline void run_helper ( Callable callback, const ext::array < std::pair < std::shared_ptr < OperationAbstraction >, bool >, sizeof ... ( ParamTypes ) > & inputs ) {
if ( ! cached ( ) ) if ( ! evaluated ( ) )
setData ( abstraction::apply < ParamTypes ... > ( callback, inputs ) ); setData ( abstraction::apply < ParamTypes ... > ( callback, inputs ) );
} }
   
...@@ -332,13 +312,9 @@ public: ...@@ -332,13 +312,9 @@ public:
return abstraction::ParamQualifiers::paramQualifiers < const ReturnType && > ( ); return abstraction::ParamQualifiers::paramQualifiers < const ReturnType && > ( );
} }
   
bool cached ( ) const override { bool evaluated ( ) const override {
return ( bool ) m_data; return ( bool ) m_data;
} }
void reset ( ) override {
m_data.reset ( );
}
}; };
   
template < > template < >
...@@ -357,12 +333,9 @@ public: ...@@ -357,12 +333,9 @@ public:
return abstraction::ParamQualifiers::paramQualifiers < void > ( ); return abstraction::ParamQualifiers::paramQualifiers < void > ( );
} }
   
bool cached ( ) const override { bool evaluated ( ) const override {
return false; return false;
} }
void reset ( ) override {
}
}; };
   
} /* namespace abstraction */ } /* namespace abstraction */
......
...@@ -93,7 +93,7 @@ public: ...@@ -93,7 +93,7 @@ public:
if ( ! inputsAttached ( ) ) if ( ! inputsAttached ( ) )
return false; return false;
   
if ( this->cached ( ) ) if ( this->evaluated ( ) )
return true; return true;
   
for ( const std::pair < std::shared_ptr < OperationAbstraction >, bool > & param : m_params ) for ( const std::pair < std::shared_ptr < OperationAbstraction >, bool > & param : m_params )
...@@ -107,12 +107,8 @@ public: ...@@ -107,12 +107,8 @@ public:
return sizeof ... ( ParamTypes ); return sizeof ... ( ParamTypes );
} }
   
bool cached ( ) const override { bool evaluated ( ) const override {
return ( bool ) m_abstraction && m_abstraction->cached ( ); return ( bool ) m_abstraction && m_abstraction->evaluated ( );
}
void reset ( ) override {
m_abstraction = nullptr;
} }
   
ext::type_index getParamTypeIndex ( size_t index ) const override { ext::type_index getParamTypeIndex ( size_t index ) const override {
...@@ -124,7 +120,7 @@ public: ...@@ -124,7 +120,7 @@ public:
} }
   
std::shared_ptr < abstraction::OperationAbstraction > getProxyAbstraction ( ) override { std::shared_ptr < abstraction::OperationAbstraction > getProxyAbstraction ( ) override {
if ( this->cached ( ) ) if ( this->evaluated ( ) )
return this->m_abstraction->getProxyAbstraction ( ); return this->m_abstraction->getProxyAbstraction ( );
else else
throw std::domain_error ( "Proxy abstraction not avaiable before evaluation." ); throw std::domain_error ( "Proxy abstraction not avaiable before evaluation." );
...@@ -174,14 +170,14 @@ public: ...@@ -174,14 +170,14 @@ public:
} }
   
ext::type_index getReturnTypeIndex ( ) const override { ext::type_index getReturnTypeIndex ( ) const override {
if ( this->cached ( ) ) if ( this->evaluated ( ) )
return this->getAbstraction ( )->getProxyAbstraction ( )->getReturnTypeIndex ( ); return this->getAbstraction ( )->getProxyAbstraction ( )->getReturnTypeIndex ( );
else else
throw std::domain_error ( "Return type unknown before evaluation." ); throw std::domain_error ( "Return type unknown before evaluation." );
} }
   
ext::set < abstraction::ParamQualifiers::ParamQualifier > getReturnTypeQualifiers ( ) const override { ext::set < abstraction::ParamQualifiers::ParamQualifier > getReturnTypeQualifiers ( ) const override {
if ( this->cached ( ) ) if ( this->evaluated ( ) )
return this->getAbstraction ( )->getProxyAbstraction ( )->getReturnTypeQualifiers ( ); return this->getAbstraction ( )->getProxyAbstraction ( )->getReturnTypeQualifiers ( );
else else
throw std::domain_error ( "Return type qualifiers unknown before evaluation." ); throw std::domain_error ( "Return type qualifiers unknown before evaluation." );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment