Salome HOME
Fixed naming for primitives
[modules/shaper.git] / src / Model / Model_BodyBuilder.h
1 // Copyright (C) 2014-2017  CEA/DEN, EDF R&D
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
18 // email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
19 //
20
21 #ifndef Model_BodyBuilder_H_
22 #define Model_BodyBuilder_H_
23
24 #include "Model.h"
25 #include <ModelAPI_BodyBuilder.h>
26
27 #include <GeomAlgoAPI_MakeShape.h>
28 #include <GeomAPI_DataMapOfShapeShape.h>
29 #include <vector>
30
31 class TNaming_Builder;
32
33 /**\class Model_BodyBuilder
34  * \ingroup DataModel
35  * \brief Extra API for the ResultBody that allows to work with naming.
36  */
37 class Model_BodyBuilder : public ModelAPI_BodyBuilder
38 {
39   /// builders that store the naming history: one per label to allow store several shapes to one
40   /// label; index in vector corresponds to the label tag
41   std::map<int, TNaming_Builder*> myBuilders;
42 public:
43   /// Stores the shape (called by the execution method).
44   MODEL_EXPORT virtual void store(const GeomShapePtr& theShape,
45                                   const bool theIsStoreSameShapes = true);
46
47   /// Stores the generated shape (called by the execution method).
48   MODEL_EXPORT virtual void storeGenerated(const GeomShapePtr& theFromShape,
49                                            const GeomShapePtr& theToShape);
50
51   /// Stores the modified shape (called by the execution method).
52   /// \param theOldShape shape that produces result
53   /// \param theNewShape resulting shape
54   /// \param theDecomposeSolidsTag tag for starting of solids sub-elements placement in case
55   ///          theNewShape is compound of solids, if zero it is not used
56   MODEL_EXPORT virtual void storeModified(const GeomShapePtr& theOldShape,
57                                           const GeomShapePtr& theNewShape,
58                                           const bool theIsCleanStored = true) override;
59
60   /// Stores the shape without naming support
61   /// \param theShape shape to store
62   MODEL_EXPORT virtual void storeWithoutNaming(const GeomShapePtr& theShape);
63
64   /// Returns the shape-result produced by this feature
65   MODEL_EXPORT virtual GeomShapePtr shape();
66
67   /// Records the subshape newShape which was generated during a topological construction.
68   /// As an example, consider the case of a face generated in construction of a box.
69   MODEL_EXPORT virtual void generated(const GeomShapePtr& theNewShape,
70                                       const std::string& theName) override;
71
72   /// Records the shape newShape which was generated from the shape oldShape during a topological
73   /// construction. As an example, consider the case of a face generated from an edge in
74   /// construction of a prism.
75   MODEL_EXPORT virtual void generated(const GeomShapePtr& theOldShape,
76                                       const GeomShapePtr& theNewShape,
77                                       const std::string& theName = "") override;
78
79
80   /// Records the shape newShape which is a modification of the shape oldShape.
81   /// As an example, consider the case of a face split or merged in a Boolean operation.
82   MODEL_EXPORT virtual void modified(const GeomShapePtr& theOldShape,
83                                      const GeomShapePtr& theNewShape,
84                                      const std::string& theName = "") override;
85
86   /// Records the shape oldShape which was deleted from the current label.
87   /// As an example, consider the case of a face removed by a Boolean operation.
88   MODEL_EXPORT virtual void deleted(const GeomShapePtr& theOldShape) override;
89
90   /// load deleted shapes
91   MODEL_EXPORT
92   virtual void loadDeletedShapes(const GeomMakeShapePtr& theAlgo,
93                                  const GeomShapePtr& theOldShape,
94                                  const GeomAPI_Shape::ShapeType theShapeTypeToExplore,
95                                  const GeomShapePtr& theShapesToExclude = GeomShapePtr()) override;
96
97   /// load and orient modified shapes
98   MODEL_EXPORT
99   virtual void loadModifiedShapes(const GeomMakeShapePtr& theAlgo,
100                                   const GeomShapePtr& theOldShape,
101                                   const GeomAPI_Shape::ShapeType theShapeTypeToExplore,
102                                   const std::string& theName = "") override;
103
104   /// load and orient generated shapes
105   MODEL_EXPORT
106   virtual void loadGeneratedShapes(const GeomMakeShapePtr& theAlgo,
107                                    const GeomShapePtr& theOldShape,
108                                    const GeomAPI_Shape::ShapeType theShapeTypeToExplore,
109                                    const std::string& theName = "") override;
110
111   /// Loads shapes of the first level (to be used during shape import)
112   MODEL_EXPORT virtual void loadFirstLevel(GeomShapePtr theShape,
113                                            const std::string& theName) override;
114
115   /// Loads disconnected edges
116   MODEL_EXPORT virtual void loadDisconnectedEdges(GeomShapePtr theShape,
117                                                   const std::string& theName) override;
118
119   /// Loads disconnected vetexes
120   MODEL_EXPORT virtual void loadDisconnectedVertexes(GeomShapePtr theShape,
121                                                      const std::string& theName) override;
122
123   /// Removes the stored builders
124   MODEL_EXPORT virtual ~Model_BodyBuilder();
125
126   /// Returns true if the latest modification of this body in the naming history
127   // is equal to the given shape
128   MODEL_EXPORT virtual bool isLatestEqual(const GeomShapePtr& theShape);
129
130 protected:
131   /// Default constructor accessible only by Model_Objects
132   Model_BodyBuilder(ModelAPI_Object* theOwner);
133
134   /// Removes the stored builders
135   void clean();
136
137   /// Returns (creates if necessary) the builder created on the needed tag of sub-label
138   TNaming_Builder* builder(const int theTag);
139
140 private:
141   /// Loads shapes of the next level (to be used during shape import)
142   void loadNextLevels(GeomShapePtr theShape,
143                       const std::string& theName);
144
145   /// builds name for the shape kept at the specified tag
146   void buildName(const int theTag, const std::string& theName);
147
148 private:
149   struct IndexTags {
150     int index;
151     std::vector<int> tags;
152   };
153
154 private:
155   int myFreePrimitiveTag;
156   std::map<std::string, IndexTags> myPrimitivesNamesIndexMap;
157
158 private:
159   friend class Model_ResultBody;
160   friend class Model_ResultCompSolid;
161 };
162
163 #endif