Salome HOME
Merge commit 'refs/tags/V9_2_0^{}'
[modules/shaper.git] / src / ModelAPI / ModelAPI_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 ModelAPI_BodyBuilder_H_
22 #define ModelAPI_BodyBuilder_H_
23
24 #include <ModelAPI.h>
25 #include <GeomAPI_Shape.h>
26 #include <GeomAlgoAPI_MakeShape.h>
27 #include <GeomAPI_DataMapOfShapeShape.h>
28 #include <memory>
29 #include <string>
30
31 class ModelAPI_Data;
32 class ModelAPI_Document;
33 class ModelAPI_Object;
34
35 /**\class ModelAPI_BodyBuilder
36 * \ingroup DataModel
37  * \brief Extra API for the ResultBody that allows to work with naming.
38 */
39 class ModelAPI_BodyBuilder
40 {
41 public:
42   MODELAPI_EXPORT virtual ~ModelAPI_BodyBuilder() {};
43
44   /// Stores the shape (called by the execution method).
45   virtual void store(const GeomShapePtr& theShape,
46                      const bool theIsStoreSameShapes = true) = 0;
47
48   /// Stores the generated shape (called by the execution method).
49   virtual void storeGenerated(const GeomShapePtr& theFromShape,
50                               const GeomShapePtr& theToShape) = 0;
51
52   /// Stores the modified shape (called by the execution method).
53   virtual void storeModified(const GeomShapePtr& theOldShape,
54                              const GeomShapePtr& theNewShape,
55                              const bool theIsCleanStored = true) = 0;
56
57   /// Returns the shape-result produced by this feature
58   virtual GeomShapePtr shape() = 0;
59
60   /// Records the subshape newShape which was generated during a topological construction.
61   /// As an example, consider the case of a face generated in construction of a box.
62   /// Returns true if it is stored correctly (the final shape contains this new sub-shape)
63   virtual bool generated(const GeomShapePtr& theNewShape,
64     const std::string& theName, const bool theCheckIsInResult = true) = 0;
65
66   /// Records the shape newShape which was generated from the shape oldShape during a topological
67   /// construction. As an example, consider the case of a face generated from an edge in
68   /// construction of a prism.
69   virtual void generated(const GeomShapePtr& theOldShape,
70                          const GeomShapePtr& theNewShape,
71                          const std::string& theName = "") = 0;
72
73   /// Records the shape newShape which is a modification of the shape oldShape.
74   /// As an example, consider the case of a face split or merged in a Boolean operation.
75   virtual void modified(const GeomShapePtr& theOldShape,
76                         const GeomShapePtr& theNewShape,
77                         const std::string& theName = "") = 0;
78
79   /// load deleted shapes
80   virtual void loadDeletedShapes(const GeomMakeShapePtr& theAlgo,
81                                  const GeomShapePtr& theOldShape,
82                                  const GeomAPI_Shape::ShapeType theShapeTypeToExplore,
83                                  const GeomShapePtr& theShapesToAvoid = GeomShapePtr()) = 0;
84
85   /// load and orient modified shapes
86   virtual void loadModifiedShapes(const GeomMakeShapePtr& theAlgo,
87                                   const GeomShapePtr& theOldShape,
88                                   const GeomAPI_Shape::ShapeType theShapeTypeToExplore,
89                                   const std::string& theName = "") = 0;
90
91   /// load and orient generated shapes
92   virtual void loadGeneratedShapes(const GeomMakeShapePtr& theAlgo,
93                                    const GeomShapePtr& theOldShape,
94                                    const GeomAPI_Shape::ShapeType theShapeTypeToExplore,
95                                    const std::string& theName = "") = 0;
96
97   /// load shapes of the first level (to be used during shape import)
98   virtual void loadFirstLevel(GeomShapePtr theShape,
99                               const std::string& theName) = 0;
100
101 protected:
102   /// Returns the data manager of this object: attributes
103   MODELAPI_EXPORT virtual std::shared_ptr<ModelAPI_Data> data() const;
104
105   /// Returns document this feature belongs to
106   MODELAPI_EXPORT virtual std::shared_ptr<ModelAPI_Document> document() const;
107
108 protected:
109   /// Default constructor accessible only from Model_Object
110   MODELAPI_EXPORT ModelAPI_BodyBuilder(ModelAPI_Object* theOwner);
111
112   ModelAPI_Object* myOwner; ///< the owner object this builder belongs to
113 };
114
115 //! Pointer on feature object
116 typedef std::shared_ptr<ModelAPI_BodyBuilder> BodyBuilderPtr;
117
118 #endif