Salome HOME
Update copyrights
[modules/shaper.git] / src / ModelAPI / ModelAPI_ResultBody.h
1 // Copyright (C) 2014-2019  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 email : webmaster.salome@opencascade.com
18 //
19
20 #ifndef ModelAPI_ResultBody_H_
21 #define ModelAPI_ResultBody_H_
22
23 #include "ModelAPI_Result.h"
24 #include <GeomAPI_Shape.h>
25 #include <GeomAPI_DataMapOfShapeShape.h>
26 #include <string>
27
28 class ModelAPI_BodyBuilder;
29 class GeomAlgoAPI_MakeShape;
30
31 /**\class ModelAPI_ResultBody
32 * \ingroup DataModel
33 * \brief The body (shape) result of a feature.
34 *
35 * Provides a shape that may be displayed in the viewer.
36 * May provide really huge results, so, working with this kind
37 * of result must be optimized.
38 * Also provides a container of sub-body result in case it is compound or compsolid.
39 */
40 class ModelAPI_ResultBody : public ModelAPI_Result
41 {
42 public:
43   /// Internal enumeration for storage the information of connected topology flag
44   enum ConnectedTopologyFlag {
45     ConnectionNotComputed, ///< not yet computed
46     IsConnected,           ///< the topology is connected
47     IsNotConnected         ///< the topology is connected
48   };
49
50 protected:
51   /// Keeps (not persistently) the connected topology flag
52   ConnectedTopologyFlag myConnect;
53
54   ModelAPI_BodyBuilder* myBuilder; ///< provides the body processing in naming shape
55
56 public:
57   MODELAPI_EXPORT virtual ~ModelAPI_ResultBody();
58
59   /// Returns the group identifier of this result
60   MODELAPI_EXPORT virtual std::string groupName();
61
62   /// Returns the group identifier of this result
63   inline static std::string group()
64   {
65     static std::string MY_GROUP = "Bodies";
66     return MY_GROUP;
67   }
68
69   /// default color for a result body
70   inline static const std::string& DEFAULT_COLOR()
71   {
72     static const std::string RESULT_BODY_COLOR("200,200,230");
73     return RESULT_BODY_COLOR;
74   }
75
76   /// default deflection for a result body
77   inline static const std::string DEFAULT_DEFLECTION()
78   {
79     return "0.0001";
80   }
81
82   /// Returns the number of sub-elements
83   MODELAPI_EXPORT virtual int numberOfSubs(bool forTree = false) const = 0;
84
85   /// Returns the sub-result by zero-base index
86   MODELAPI_EXPORT virtual std::shared_ptr<ModelAPI_ResultBody> subResult(
87     const int theIndex, bool forTree = false) const = 0;
88
89   /// Returns true if feature or result belong to this composite feature as subs
90   /// Returns theIndex - zero based index of sub if found
91   MODELAPI_EXPORT virtual bool isSub(ObjectPtr theObject, int& theIndex) const = 0;
92
93   /// \brief Stores the shape (called by the execution method).
94   /// param[in] theShape shape to store.
95   /// param[in] theIsStoreSameShapes if false stores reference to the same shape
96   ///                                if it is already in document.
97   MODELAPI_EXPORT virtual void store(const GeomShapePtr& theShape,
98                                      const bool theIsStoreSameShapes = true);
99
100   /// Stores the generated shape (called by the execution method).
101   MODELAPI_EXPORT virtual void storeGenerated(const GeomShapePtr& theFromShape,
102                                               const GeomShapePtr& theToShape);
103
104   /// Stores the modified shape (called by the execution method).
105   MODELAPI_EXPORT virtual void storeModified(const GeomShapePtr& theOldShape,
106                                              const GeomShapePtr& theNewShape,
107                                              const bool theIsCleanStored = true);
108
109   /// Returns the shape-result produced by this feature
110   MODELAPI_EXPORT virtual GeomShapePtr shape();
111
112   /// Records the subshape newShape which was generated during a topological construction.
113   /// As an example, consider the case of a face generated in construction of a box.
114   /// Returns true if it is stored correctly (the final shape contains this new sub-shape)
115   MODELAPI_EXPORT virtual bool generated(const GeomShapePtr& theNewShape,
116     const std::string& theName, const bool theCheckIsInResult = true) = 0;
117
118   /// Records the shape newShape which was generated from the shape oldShape during a topological
119   /// construction. As an example, consider the case of a face generated from an edge in
120   /// construction of a prism.
121   MODELAPI_EXPORT virtual void generated(const GeomShapePtr& theOldShape,
122                                          const GeomShapePtr& theNewShape,
123                                          const std::string& theName = "");
124
125   /// Records the shape newShape which is a modification of the shape oldShape.
126   /// As an example, consider the case of a face split or merged in a Boolean operation.
127   MODELAPI_EXPORT virtual void modified(const GeomShapePtr& theOldShape,
128                                         const GeomShapePtr& theNewShape,
129                                         const std::string& theName = "");
130
131   /// load deleted shapes
132   MODELAPI_EXPORT
133   virtual void loadDeletedShapes(const std::shared_ptr<GeomAlgoAPI_MakeShape>& theAlgo,
134                                  const GeomShapePtr& theOldShape,
135                                  const GeomAPI_Shape::ShapeType theShapeTypeToExplore,
136                                  const GeomShapePtr& theShapesToExclude = GeomShapePtr());
137
138   /// load and orient modified shapes
139   MODELAPI_EXPORT
140   virtual void loadModifiedShapes(const std::shared_ptr<GeomAlgoAPI_MakeShape>& theAlgo,
141                                   const GeomShapePtr& theOldShape,
142                                   const GeomAPI_Shape::ShapeType theShapeTypeToExplore,
143                                   const std::string& theName = "") = 0;
144
145   /// load and orient generated shapes
146   MODELAPI_EXPORT
147   virtual void loadGeneratedShapes(const std::shared_ptr<GeomAlgoAPI_MakeShape>& theAlgo,
148                                    const GeomShapePtr& theOldShape,
149                                    const GeomAPI_Shape::ShapeType theShapeTypeToExplore,
150                                    const std::string& theName = "") = 0;
151
152   /// load shapes of the first level (to be used during shape import)
153   MODELAPI_EXPORT virtual void loadFirstLevel(GeomShapePtr theShape,
154                                               const std::string& theName);
155
156   /// Returns true is the topology is connected.
157   MODELAPI_EXPORT virtual bool isConnectedTopology() = 0;
158
159   /// Set displayed flag to the result and all sub results
160   /// \param theDisplay a boolean value
161   MODELAPI_EXPORT virtual void setDisplayed(const bool theDisplay);
162
163   /// Updates the sub-bodies if shape of this object is compsolid or compound
164   MODELAPI_EXPORT virtual void updateSubs(const GeomShapePtr& theThisShape,
165     const bool theShapeChanged = true) = 0;
166
167   /// Cleans cash related to the already stored elements
168   MODELAPI_EXPORT virtual void cleanCash() = 0;
169
170 protected:
171   /// Default constructor accessible only from Model_Objects
172   MODELAPI_EXPORT ModelAPI_ResultBody();
173
174 };
175
176 //! Pointer on feature object
177 typedef std::shared_ptr<ModelAPI_ResultBody> ResultBodyPtr;
178
179 #endif