SHAPER 9.16.0
Model_BodyBuilder.h
1// Copyright (C) 2014-2026 CEA, EDF
2//
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.
7//
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.
12//
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
16//
17// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18//
19
20#ifndef Model_BodyBuilder_H_
21#define Model_BodyBuilder_H_
22
23#include "Model.h"
24#include <ModelAPI_BodyBuilder.h>
25
26#include <GeomAlgoAPI_MakeShape.h>
27#include <GeomAPI_DataMapOfShapeShape.h>
28#include <vector>
29
30class TNaming_Builder;
31
37{
40 std::map<int, TNaming_Builder*> myBuilders;
41public:
43 MODEL_EXPORT virtual void store(const GeomShapePtr& theShape,
44 const bool theIsStoreSameShapes = true) override;
45
47 MODEL_EXPORT virtual void storeGenerated(const GeomShapePtr& theFromShape,
48 const GeomShapePtr& theToShape,
49 const bool theIsCleanStored = true) override;
50
52 MODEL_EXPORT virtual void storeGenerated(const std::list<GeomShapePtr>& theFromShapes,
53 const GeomShapePtr& theToShape,
54 const std::shared_ptr<GeomAlgoAPI_MakeShape> theMakeShape) override;
55
60 MODEL_EXPORT virtual void storeModified(const GeomShapePtr& theOldShape,
61 const GeomShapePtr& theNewShape,
62 const bool theIsCleanStored = true) override;
63
68 MODEL_EXPORT virtual void storeModified(const std::list<GeomShapePtr>& theOldShapes,
69 const GeomShapePtr& theNewShape,
70 const std::shared_ptr<GeomAlgoAPI_MakeShape> theMakeShape) override;
71
73 MODEL_EXPORT virtual GeomShapePtr shape();
74
78 MODEL_EXPORT virtual bool generated(const GeomShapePtr& theNewShape,
79 const std::string& theName, const bool theCheckIsInResult = true) override;
80
84 MODEL_EXPORT virtual void generated(const GeomShapePtr& theOldShape,
85 const GeomShapePtr& theNewShape,
86 const std::string& theName = "") override;
87
88
91 MODEL_EXPORT virtual void modified(const GeomShapePtr& theOldShape,
92 const GeomShapePtr& theNewShape,
93 const std::string& theName = "") override;
94
96 MODEL_EXPORT
97 virtual void loadDeletedShapes(const GeomMakeShapePtr& theAlgo,
98 const GeomShapePtr& theOldShape,
99 const GeomAPI_Shape::ShapeType theShapeTypeToExplore,
100 const GeomShapePtr& theShapesToExclude = GeomShapePtr()) override;
101
103 MODEL_EXPORT
104 virtual void loadModifiedShapes(const GeomMakeShapePtr& theAlgo,
105 const GeomShapePtr& theOldShape,
106 const GeomAPI_Shape::ShapeType theShapeTypeToExplore,
107 const std::string& theName = "") override;
108
110 MODEL_EXPORT
111 virtual void loadGeneratedShapes(const GeomMakeShapePtr& theAlgo,
112 const GeomShapePtr& theOldShape,
113 const GeomAPI_Shape::ShapeType theShapeTypeToExplore,
114 const std::string& theName = "",
115 const bool theSaveOldIfNotInTree = false) override;
116
118 MODEL_EXPORT virtual void loadFirstLevel(GeomShapePtr theShape,
119 const std::string& theName) override;
120
122 MODEL_EXPORT virtual ~Model_BodyBuilder();
123
125 MODEL_EXPORT virtual void cleanCash() override;
126protected:
129
131 void clean();
132
134 TNaming_Builder* builder(const int theTag);
135
136private:
138 void loadNextLevels(GeomShapePtr theShape,
139 const std::string& theName);
140
142 void buildName(const int theTag, const std::string& theName);
143
144private:
145 struct IndexTags {
146 int index;
147 std::vector<int> tags;
148 };
149
150private:
151 int myFreePrimitiveTag;
152 std::map<std::string, IndexTags> myPrimitivesNamesIndexMap;
153
154private:
155 friend class Model_ResultBody;
156 friend class Model_ResultCompSolid;
157};
158
159#endif
ShapeType
Shape type enum.
Definition: GeomAPI_Shape.h:46
Extra API for the ResultBody that allows to work with naming.
Definition: ModelAPI_BodyBuilder.h:39
Represents any object in the data model and in the object browser.
Definition: ModelAPI_Object.h:45
Extra API for the ResultBody that allows to work with naming.
Definition: Model_BodyBuilder.h:37
virtual ~Model_BodyBuilder()
Removes the stored builders.
Definition: Model_BodyBuilder.cpp:468
Model_BodyBuilder(ModelAPI_Object *theOwner)
Default constructor accessible only by Model_Objects.
Definition: Model_BodyBuilder.cpp:125
virtual void store(const GeomShapePtr &theShape, const bool theIsStoreSameShapes=true) override
Stores the shape (called by the execution method).
Definition: Model_BodyBuilder.cpp:178
virtual void loadFirstLevel(GeomShapePtr theShape, const std::string &theName) override
Loads shapes of the first level (to be used during shape import)
Definition: Model_BodyBuilder.cpp:998
virtual void modified(const GeomShapePtr &theOldShape, const GeomShapePtr &theNewShape, const std::string &theName="") override
Records the shape newShape which is a modification of the shape oldShape.
Definition: Model_BodyBuilder.cpp:550
virtual void cleanCash() override
Cleans cash related to the already stored elements.
Definition: Model_BodyBuilder.cpp:463
virtual void loadModifiedShapes(const GeomMakeShapePtr &theAlgo, const GeomShapePtr &theOldShape, const GeomAPI_Shape::ShapeType theShapeTypeToExplore, const std::string &theName="") override
load and orient modified shapes
Definition: Model_BodyBuilder.cpp:627
virtual void storeGenerated(const GeomShapePtr &theFromShape, const GeomShapePtr &theToShape, const bool theIsCleanStored=true) override
Stores the generated shape (called by the execution method).
Definition: Model_BodyBuilder.cpp:225
virtual void storeModified(const GeomShapePtr &theOldShape, const GeomShapePtr &theNewShape, const bool theIsCleanStored=true) override
Stores the modified shape (called by the execution method).
Definition: Model_BodyBuilder.cpp:322
void clean()
Removes the stored builders.
Definition: Model_BodyBuilder.cpp:440
virtual GeomShapePtr shape()
Returns the shape-result produced by this feature.
Definition: Model_BodyBuilder.cpp:1044
virtual void loadGeneratedShapes(const GeomMakeShapePtr &theAlgo, const GeomShapePtr &theOldShape, const GeomAPI_Shape::ShapeType theShapeTypeToExplore, const std::string &theName="", const bool theSaveOldIfNotInTree=false) override
load and orient generated shapes
Definition: Model_BodyBuilder.cpp:712
TNaming_Builder * builder(const int theTag)
Returns (creates if necessary) the builder created on the needed tag of sub-label.
Definition: Model_BodyBuilder.cpp:312
virtual bool generated(const GeomShapePtr &theNewShape, const std::string &theName, const bool theCheckIsInResult=true) override
Records the subshape newShape which was generated during a topological construction.
Definition: Model_BodyBuilder.cpp:489
virtual void loadDeletedShapes(const GeomMakeShapePtr &theAlgo, const GeomShapePtr &theOldShape, const GeomAPI_Shape::ShapeType theShapeTypeToExplore, const GeomShapePtr &theShapesToExclude=GeomShapePtr()) override
load deleted shapes
Definition: Model_BodyBuilder.cpp:562
The body (shape) result of a feature.
Definition: Model_ResultBody.h:40