Salome HOME
Issue #2052 : really remove results if during the feature execution number of results...
[modules/shaper.git] / src / Model / Model_AttributeInteger.cpp
index 1d72baa40b37afe5d52534d5a237087d0755b103..3f61cbd966561b8f2598c913ad3cb54e10d35589 100644 (file)
@@ -1,35 +1,89 @@
+// Copyright (C) 2014-20xx CEA/DEN, EDF R&D
+
 // File:        Model_AttributeInteger.cpp
 // Created:     03 sep 2014
 // Author:      sbh
 
 #include <Model_AttributeInteger.h>
 
-#include <ModelAPI_Attribute.h>
 #include <ModelAPI_Data.h>
+#include <ModelAPI_Events.h>
+#include <Model_Expression.h>
 #include <ModelAPI_Object.h>
 
-#include <Standard_TypeDef.hxx>
-#include <TDataStd_Integer.hxx>
+Model_AttributeInteger::Model_AttributeInteger(TDF_Label& theLabel)
+{
+  // to the same label to support the backward compatibility
+  myExpression.reset(new Model_ExpressionInteger(theLabel));
+  myIsInitialized = myExpression->isInitialized();
+}
 
-void Model_AttributeInteger::setValue(const int theValue)
+void Model_AttributeInteger::reinit()
 {
-  if (!myIsInitialized || myInteger->Get() != theValue) {
-    myInteger->Set(theValue);
+  myExpression->reinit();
+  myIsInitialized = myExpression->isInitialized();
+}
+
+void Model_AttributeInteger::setCalculatedValue(const int theValue)
+{
+  if (!myIsInitialized || value() != theValue) {
+    myExpression->setValue(theValue);
     owner()->data()->sendAttributeUpdated(this);
   }
 }
 
+void Model_AttributeInteger::setValue(const int theValue)
+{
+  setCalculatedValue(text().empty() ? theValue : value());
+}
+
 int Model_AttributeInteger::value()
 {
-  return myInteger->Get();
+  return myExpression->value();
 }
 
-Model_AttributeInteger::Model_AttributeInteger(TDF_Label& theLabel)
+void Model_AttributeInteger::setText(const std::string& theValue)
 {
-  // check the attribute could be already presented in this doc (after load document)
-  myIsInitialized = theLabel.FindAttribute(TDataStd_Integer::GetID(), myInteger) == Standard_True;
-  if (!myIsInitialized) {
-    // create attribute: not initialized by value yet, just zero
-    myInteger = TDataStd_Integer::Set(theLabel, 0);
+  if (text() != theValue) {
+    myExpression->setText(theValue);
+    // Send it to evaluator to convert text to integer and store in the attribute
+    ModelAPI_AttributeEvalMessage::send(owner()->data()->attribute(id()), this);
+    owner()->data()->sendAttributeUpdated(this);
   }
 }
+
+std::string Model_AttributeInteger::text()
+{
+  return myExpression->text();
+}
+
+void Model_AttributeInteger::setExpressionInvalid(const bool theFlag)
+{
+  myExpression->setInvalid(theFlag);
+}
+
+bool Model_AttributeInteger::expressionInvalid()
+{
+  return myExpression->isInvalid();
+}
+
+void Model_AttributeInteger::setExpressionError(const std::string& theError)
+{
+  if (expressionError() != theError)
+    myExpression->setError(theError);
+}
+
+std::string Model_AttributeInteger::expressionError()
+{
+  return myExpression->error();
+}
+
+void Model_AttributeInteger::setUsedParameters(const std::set<std::string>& theUsedParameters)
+{
+  myExpression->setUsedParameters(theUsedParameters);
+}
+
+std::set<std::string> Model_AttributeInteger::usedParameters() const
+{
+  return myExpression->usedParameters();
+}