X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModel%2FModel_Expression.cpp;h=23b60fa7e72a33eedf5b2ca2cba4ec463f8b055d;hb=b857d9ea753bef79dbbadaeb990b54aae56e488d;hp=7082bd60c0293ba31434b1c9cea62cfa43619228;hpb=cb939ec24d05de2dd83f7d2489feb807368464b5;p=modules%2Fshaper.git diff --git a/src/Model/Model_Expression.cpp b/src/Model/Model_Expression.cpp index 7082bd60c..23b60fa7e 100644 --- a/src/Model/Model_Expression.cpp +++ b/src/Model/Model_Expression.cpp @@ -1,8 +1,21 @@ -// Copyright (C) 2014-20xx CEA/DEN, EDF R&D - -// File: Model_Expression.cpp -// Created: 5 Aug 2015 -// Author: Sergey POKHODENKO +// Copyright (C) 2014-2020 CEA/DEN, EDF R&D +// +// This library is free software; you can redistribute it and/or +// modify it under the terms of the GNU Lesser General Public +// License as published by the Free Software Foundation; either +// version 2.1 of the License, or (at your option) any later version. +// +// This library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// Lesser General Public License for more details. +// +// You should have received a copy of the GNU Lesser General Public +// License along with this library; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com +// #include "Model_Expression.h" @@ -42,7 +55,7 @@ void Model_Expression::setText(const std::string& theValue) setError(text().empty() ? "" : "Not a double value."); } -std::string Model_Expression::text() const +std::string Model_Expression::text() const { return TCollection_AsciiString(myText->Get()).ToCString(); } @@ -75,35 +88,21 @@ std::set Model_Expression::usedParameters() const return aResult; } +///////////////// Model_ExpressionDouble ///////////// Model_ExpressionDouble::Model_ExpressionDouble(TDF_Label& theLabel) : Model_Expression(theLabel) { - if (!theLabel.FindAttribute(TDataStd_Real::GetID(), myReal)) { + myLab = theLabel; + reinit(); +} + +void Model_ExpressionDouble::reinit() +{ + if (!myLab.FindAttribute(TDataStd_Real::GetID(), myReal)) { myIsInitialized = false; - // MPV: temporarily to support the previously saved files (to check and resolve bugs), to be removed - Handle(TDataStd_RealArray) anOldArray; - if (theLabel.Father().FindAttribute(TDataStd_RealArray::GetID(), anOldArray) == Standard_True) { - myReal = TDataStd_Real::Set(theLabel, 0.); - myReal->Set(anOldArray->Value(theLabel.Tag() - 1)); - myIsInitialized = true; - Handle(TDataStd_ExtStringArray) anOldExp; - if (theLabel.Father().FindAttribute(TDataStd_ExtStringArray::GetID(), anOldExp) == Standard_True) { - myText->Set(anOldExp->Value(theLabel.Tag() - 1)); - } - } else { - Handle(TDataStd_Real) anOldReal; - if (theLabel.Father().FindAttribute(TDataStd_Real::GetID(), anOldReal)) { - myIsInitialized = true; - myReal = TDataStd_Real::Set(theLabel, 0.); - myReal->Set(anOldReal->Get()); - Handle(TDataStd_Name) aText; - if (theLabel.Father().FindAttribute(TDataStd_Name::GetID(), aText)) { - myText->Set(aText->Get()); - } - } - } - } else + } else { myIsInitialized = true; + } } void Model_ExpressionDouble::setValue(const double theValue) @@ -118,7 +117,7 @@ void Model_ExpressionDouble::setValue(const double theValue) double Model_ExpressionDouble::value() { - if (myIsInitialized) + if (myIsInitialized && !myReal.IsNull()) return myReal->Get(); return std::numeric_limits::max(); // error } @@ -137,14 +136,21 @@ bool Model_ExpressionDouble::isInvalid() return myText->Label().IsAttribute(kInvalidGUID) == Standard_True; } - +///////////////// Model_ExpressionInteger ///////////// Model_ExpressionInteger::Model_ExpressionInteger(TDF_Label& theLabel) : Model_Expression(theLabel) { - if (!theLabel.FindAttribute(TDataStd_Integer::GetID(), myInteger)) { + myLab = theLabel; + reinit(); +} + +void Model_ExpressionInteger::reinit() +{ + if (!myLab.FindAttribute(TDataStd_Integer::GetID(), myInteger)) { myIsInitialized = false; - } else + } else { myIsInitialized = true; + } } void Model_ExpressionInteger::setValue(const int theValue) @@ -159,7 +165,7 @@ void Model_ExpressionInteger::setValue(const int theValue) int Model_ExpressionInteger::value() { - if (myIsInitialized) + if (myIsInitialized && !myInteger.IsNull()) return myInteger->Get(); return std::numeric_limits::max(); // error }