1 // Copyright (C) 2014-2019 CEA/DEN, EDF R&D
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 // Lesser General Public License for more details.
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
20 #include "ModelHighAPI_Interface.h"
21 //--------------------------------------------------------------------------------------
22 #include <Events_InfoMessage.h>
24 #include <ModelAPI_CompositeFeature.h>
25 #include <ModelAPI_Events.h>
26 #include <ModelAPI_Feature.h>
27 #include <ModelAPI_Session.h>
28 #include <ModelAPI_Validator.h>
29 #include <ModelAPI_Result.h>
31 #include "ModelHighAPI_Selection.h"
32 //--------------------------------------------------------------------------------------
33 ModelHighAPI_Interface::ModelHighAPI_Interface(
34 const std::shared_ptr<ModelAPI_Feature> & theFeature)
35 : myFeature(theFeature)
40 ModelHighAPI_Interface::~ModelHighAPI_Interface()
45 //--------------------------------------------------------------------------------------
46 std::shared_ptr<ModelAPI_Feature> ModelHighAPI_Interface::feature() const
51 std::shared_ptr<ModelHighAPI_Interface> ModelHighAPI_Interface::subFeature(const int theIndex) const
53 CompositeFeaturePtr aCompositeFeature =
54 std::dynamic_pointer_cast<ModelAPI_CompositeFeature>(myFeature);
55 if(!aCompositeFeature.get()) {
56 return InterfacePtr();
59 FeaturePtr aSubFeature = aCompositeFeature->subFeature(theIndex);
60 if(!aSubFeature.get()) {
61 return InterfacePtr();
64 return InterfacePtr(new ModelHighAPI_Interface(aSubFeature));
67 const std::string& ModelHighAPI_Interface::getKind() const
69 return feature()->getKind();
72 void ModelHighAPI_Interface::execute(bool isForce)
75 SessionPtr aMgr = ModelAPI_Session::get();
76 ModelAPI_ValidatorsFactory* aFactory = aMgr->validators();
77 FeaturePtr aFeature = feature();
78 if(aFactory->validate(aFeature))
82 Events_Loop* aLoop = Events_Loop::loop();
83 aLoop->flush(Events_Loop::eventByName(EVENT_OBJECT_CREATED));
84 aLoop->flush(Events_Loop::eventByName(EVENT_OBJECT_UPDATED));
85 //aLoop->flush(Events_Loop::eventByName(EVENT_OBJECT_TO_REDISPLAY));
86 //aLoop->flush(Events_Loop::eventByName(EVENT_OBJECT_DELETED));
89 void ModelHighAPI_Interface::setName(const std::string& theName)
92 feature()->data()->setName(theName);
95 std::string ModelHighAPI_Interface::name() const
97 return feature()->data()->name();
100 ModelHighAPI_Selection ModelHighAPI_Interface::result() const
102 std::list<ModelHighAPI_Selection> aResults = results();
103 if (aResults.empty())
104 return ModelHighAPI_Selection(std::shared_ptr<ModelAPI_Result>());
105 return aResults.front();
108 std::list<ModelHighAPI_Selection> ModelHighAPI_Interface::results() const
110 const_cast<ModelHighAPI_Interface*>(this)->execute();
112 std::list<ModelHighAPI_Selection> aSelectionList;
114 if (feature().get()) {
115 std::list<std::shared_ptr<ModelAPI_Result> > aResults = feature()->results();
116 for (auto it = aResults.begin(), end = aResults.end(); it != end; ++it) {
117 if (!(*it)->isDisabled())
118 aSelectionList.push_back(ModelHighAPI_Selection(*it));
122 return aSelectionList;
125 std::shared_ptr<ModelAPI_Result> ModelHighAPI_Interface::defaultResult() const
127 const_cast<ModelHighAPI_Interface*>(this)->execute();
129 return feature()->lastResult();
132 void ModelHighAPI_Interface::throwException(const std::string & theDescription)
134 Events_InfoMessage("ModelHighAPI_Interface", theDescription).send();
137 const std::string& ModelHighAPI_Interface::attributeGetter(const std::string& theAttrName)
139 return myAttrGetter[theAttrName];