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 #ifndef ModelAPI_BodyBuilder_H_
22 #define ModelAPI_BodyBuilder_H_
25 #include <GeomAPI_Shape.h>
26 #include <GeomAlgoAPI_MakeShape.h>
27 #include <GeomAPI_DataMapOfShapeShape.h>
32 class ModelAPI_Document;
33 class ModelAPI_Object;
35 /**\class ModelAPI_BodyBuilder
37 * \brief Extra API for the ResultBody that allows to work with naming.
39 class ModelAPI_BodyBuilder
42 MODELAPI_EXPORT virtual ~ModelAPI_BodyBuilder() {};
44 /// Stores the shape (called by the execution method).
45 virtual void store(const std::shared_ptr<GeomAPI_Shape>& theShape,
46 const bool theIsStoreSameShapes = true) = 0;
48 /// Stores the generated shape (called by the execution method).
49 virtual void storeGenerated(const std::shared_ptr<GeomAPI_Shape>& theFromShape,
50 const std::shared_ptr<GeomAPI_Shape>& theToShape) = 0;
52 /// Stores the modified shape (called by the execution method).
53 virtual void storeModified(const std::shared_ptr<GeomAPI_Shape>& theOldShape,
54 const std::shared_ptr<GeomAPI_Shape>& theNewShape,
55 const int theDecomposeSolidsTag = 0) = 0;
57 /// Stores the shape without naming support
58 virtual void storeWithoutNaming(const std::shared_ptr<GeomAPI_Shape>& theShape) = 0;
60 /// Returns the shape-result produced by this feature
61 virtual std::shared_ptr<GeomAPI_Shape> shape() = 0;
63 /// Records the subshape newShape which was generated during a topological construction.
64 /// As an example, consider the case of a face generated in construction of a box.
65 virtual void generated(
66 const std::shared_ptr<GeomAPI_Shape>& theNewShape, const std::string& theName,
67 const int theTag = 1) = 0;
69 /// Records the shape newShape which was generated from the shape oldShape during a topological
70 /// construction. As an example, consider the case of a face generated from an edge in
71 /// construction of a prism.
72 virtual void generated(const std::shared_ptr<GeomAPI_Shape>& theOldShape,
73 const std::shared_ptr<GeomAPI_Shape>& theNewShape, const std::string& theName,
74 const int theTag = 1) = 0;
76 /// Records the shape newShape which is a modification of the shape oldShape.
77 /// As an example, consider the case of a face split or merged in a Boolean operation.
78 virtual void modified(const std::shared_ptr<GeomAPI_Shape>& theOldShape,
79 const std::shared_ptr<GeomAPI_Shape>& theNewShape, const std::string& theName,
80 const int theTag = 1) = 0;
82 /// Records the shape oldShape which was deleted from the current label.
83 /// As an example, consider the case of a face removed by a Boolean operation.
85 const std::shared_ptr<GeomAPI_Shape>& theOldShape, const int theTag = 1) = 0;
87 /// load deleted shapes
88 virtual void loadDeletedShapes (GeomAlgoAPI_MakeShape* theMS,
89 std::shared_ptr<GeomAPI_Shape> theShapeIn,
90 const int theKindOfShape,
91 const int theTag) = 0;
92 /// load and orient modified shapes
93 virtual void loadAndOrientModifiedShapes (
94 GeomAlgoAPI_MakeShape* theMS,
95 std::shared_ptr<GeomAPI_Shape> theShapeIn,
96 const int theKindOfShape,
98 const std::string& theName,
99 GeomAPI_DataMapOfShapeShape& theSubShapes,
100 const bool theIsStoreSeparate = false,
101 const bool theIsStoreAsGenerated = false) = 0;
102 /// load and orient generated shapes
103 virtual void loadAndOrientGeneratedShapes (
104 GeomAlgoAPI_MakeShape* theMS,
105 std::shared_ptr<GeomAPI_Shape> theShapeIn,
106 const int theKindOfShape,
108 const std::string& theName,
109 GeomAPI_DataMapOfShapeShape& theSubShapes) = 0;
111 /// load shapes of the first level (to be used during shape import)
112 virtual void loadFirstLevel(std::shared_ptr<GeomAPI_Shape> theShape,
113 const std::string& theName, int& theTag) = 0;
115 /// load disconnected edges
116 virtual void loadDisconnectedEdges(std::shared_ptr<GeomAPI_Shape> theShape,
117 const std::string& theName, int& theTag) = 0;
119 /// load disconnected vetexes
120 virtual void loadDisconnectedVertexes(std::shared_ptr<GeomAPI_Shape> theShape,
121 const std::string& theName,int& theTag) = 0;
123 /// Converts evolution of sub-shapes stored in naming structure to selection
124 /// (theFlag = true) and back (theFlag = false)
125 virtual void evolutionToSelection(const bool theFlag) = 0;
127 /// Returns true if the latest modification of this body in the naming history
128 // is equal to the given shape
129 virtual bool isLatestEqual(const std::shared_ptr<GeomAPI_Shape>& theShape) = 0;
132 /// Returns the data manager of this object: attributes
133 MODELAPI_EXPORT virtual std::shared_ptr<ModelAPI_Data> data() const;
135 /// Returns document this feature belongs to
136 MODELAPI_EXPORT virtual std::shared_ptr<ModelAPI_Document> document() const;
139 /// Deafult constructor accessible only from Model_Object
140 MODELAPI_EXPORT ModelAPI_BodyBuilder(ModelAPI_Object* theOwner);
142 ModelAPI_Object* myOwner; ///< the owner object this builder belongs to
145 //! Pointer on feature object
146 typedef std::shared_ptr<ModelAPI_BodyBuilder> BodyBuilderPtr;