1 // Copyright (C) 2014-2017 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
18 // email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
21 #include "ModelHighAPI_Folder.h"
22 #include <ModelHighAPI_Dumper.h>
23 #include <ModelHighAPI_Reference.h>
24 #include <ModelHighAPI_Tools.h>
26 #include <ModelAPI_AttributeReference.h>
27 #include <ModelAPI_Document.h>
29 //--------------------------------------------------------------------------------------
31 ModelHighAPI_Folder::ModelHighAPI_Folder(const std::shared_ptr<ModelAPI_Folder> & theFolder)
32 : ModelHighAPI_Interface(FeaturePtr()),
38 ModelHighAPI_Folder::~ModelHighAPI_Folder()
42 bool ModelHighAPI_Folder::initialize()
45 throwException(ID() + " exception: The folder is NULL.");
49 myFirstFeature = myFolder->reference(ModelAPI_Folder::FIRST_FEATURE_ID());
52 myAttrGetter[ModelAPI_Folder::FIRST_FEATURE_ID()] = "firstFeature";
54 myLastFeature = myFolder->reference(ModelAPI_Folder::LAST_FEATURE_ID());
57 myAttrGetter[ModelAPI_Folder::LAST_FEATURE_ID()] = "lastFeature";
62 void ModelHighAPI_Folder::setName(const std::string& theName)
64 if (myFolder && myFolder->data() && myFolder->data()->isValid())
65 myFolder->data()->setName(theName);
68 std::string ModelHighAPI_Folder::name() const
70 return myFolder->data()->name();
73 void ModelHighAPI_Folder::dump(ModelHighAPI_Dumper& theDumper) const
75 const std::string& aDocName = theDumper.name(myFolder->document());
77 AttributeReferencePtr aStartRef = myFolder->reference(ModelAPI_Folder::FIRST_FEATURE_ID());
78 AttributeReferencePtr aEndRef = myFolder->reference(ModelAPI_Folder::LAST_FEATURE_ID());
80 // do not dump empty folders
81 if (!aEndRef->value())
84 // Dump folder when its features have been already dumped.
85 // Otherwise, store the folder postponed.
86 if (theDumper.isDumped(EntityPtr(aEndRef->value())))
87 theDumper << myFolder << " = model.addFolder(" << aDocName << ", "
88 << aStartRef << ", " << aEndRef << ")" << std::endl;
90 theDumper.postpone(myFolder);
93 //--------------------------------------------------------------------------------------
95 std::shared_ptr<ModelHighAPI_Folder> addFolder(const std::shared_ptr<ModelAPI_Document>& theDoc)
97 std::shared_ptr<ModelAPI_Folder> aFolder = theDoc->addFolder();
98 return std::shared_ptr<ModelHighAPI_Folder>(new ModelHighAPI_Folder(aFolder));
101 std::shared_ptr<ModelHighAPI_Folder> addFolder(const std::shared_ptr<ModelAPI_Document>& theDoc,
102 const ModelHighAPI_Reference& theFirstFeature,
103 const ModelHighAPI_Reference& theLastFeature)
105 std::shared_ptr<ModelAPI_Folder> aFolder = theDoc->addFolder(theFirstFeature.feature());
107 AttributeReferencePtr aFirstFeatAttr = aFolder->reference(ModelAPI_Folder::FIRST_FEATURE_ID());
108 fillAttribute(theFirstFeature.feature(), aFirstFeatAttr);
110 AttributeReferencePtr aLastFeatAttr = aFolder->reference(ModelAPI_Folder::LAST_FEATURE_ID());
111 fillAttribute(theLastFeature.feature(), aLastFeatAttr);
113 return std::shared_ptr<ModelHighAPI_Folder>(new ModelHighAPI_Folder(aFolder));