Salome HOME
Merge branch 'Dev_0.7.1' of newgeom:newgeom.git into Dev_0.7.1
[modules/shaper.git] / src / ModelAPI / ModelAPI_ResultBody.h
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:        ModelAPI_ResultBody.hxx
4 // Created:     07 Jul 2014
5 // Author:      Mikhail PONIKAROV
6
7 #ifndef ModelAPI_ResultBody_H_
8 #define ModelAPI_ResultBody_H_
9
10 #include "ModelAPI_Result.h"
11 #include <GeomAPI_Shape.h>
12 #include <GeomAlgoAPI_MakeShape.h>
13 #include <GeomAPI_DataMapOfShapeShape.h>
14 #include <memory>
15 #include <string>
16
17 /**\class ModelAPI_ResultBody
18 * \ingroup DataModel
19 * \brief The body (shape) result of a feature.
20 *
21 * Provides a shape that may be displayed in the viewer.
22 * May provide really huge results, so, working with this kind
23 * of result must be optimized.
24 */
25 class ModelAPI_ResultBody : public ModelAPI_Result
26 {
27 public:
28   MODELAPI_EXPORT virtual ~ModelAPI_ResultBody();
29   /// Returns the group identifier of this result
30   MODELAPI_EXPORT virtual std::string groupName();
31
32   /// Returns the group identifier of this result
33   inline static std::string group()
34   {
35     static std::string MY_GROUP = "Bodies";
36     return MY_GROUP;
37   }
38
39   /// Stores the shape (called by the execution method).
40   virtual void store(const std::shared_ptr<GeomAPI_Shape>& theShape) = 0;
41
42   /// Stores the generated shape (called by the execution method).
43   virtual void storeGenerated(const std::shared_ptr<GeomAPI_Shape>& theFromShape,
44                                   const std::shared_ptr<GeomAPI_Shape>& theToShape) = 0;
45
46   /// Stores the modified shape (called by the execution method).
47   virtual void storeModified(const std::shared_ptr<GeomAPI_Shape>& theOldShape,
48                                   const std::shared_ptr<GeomAPI_Shape>& theNewShape) = 0;
49
50   /// Records the subshape newShape which was generated during a topological construction.
51   /// As an example, consider the case of a face generated in construction of a box.
52   virtual void generated(
53     const std::shared_ptr<GeomAPI_Shape>& theNewShape, const std::string& theName, const int theTag = 1) = 0;
54
55   /// Records the shape newShape which was generated from the shape oldShape during a topological 
56   /// construction. As an example, consider the case of a face generated from an edge in 
57   /// construction of a prism.
58   virtual void generated(const std::shared_ptr<GeomAPI_Shape>& theOldShape,
59     const std::shared_ptr<GeomAPI_Shape>& theNewShape, const std::string& theName, const int theTag = 1) = 0;
60
61   /// Records the shape newShape which is a modification of the shape oldShape.
62   /// As an example, consider the case of a face split or merged in a Boolean operation.
63   virtual void modified(const std::shared_ptr<GeomAPI_Shape>& theOldShape,
64     const std::shared_ptr<GeomAPI_Shape>& theNewShape, const std::string& theName, const int theTag = 1) = 0;
65
66   /// Records the shape oldShape which was deleted from the current label.
67   /// As an example, consider the case of a face removed by a Boolean operation.
68   virtual void deleted(
69     const std::shared_ptr<GeomAPI_Shape>& theOldShape, const int theTag = 1) = 0;
70   
71   /// load deleted shapes
72   virtual void loadDeletedShapes (GeomAlgoAPI_MakeShape* theMS,
73                                                std::shared_ptr<GeomAPI_Shape>  theShapeIn,
74                                                const int  theKindOfShape,
75                                                const int  theTag) = 0;
76   /// load and orient modified shapes
77   virtual void loadAndOrientModifiedShapes (
78                                                    GeomAlgoAPI_MakeShape* theMS,
79                                                std::shared_ptr<GeomAPI_Shape>  theShapeIn,
80                                                const int  theKindOfShape,
81                                                const int  theTag,
82                                                                                            const std::string& theName,
83                                                GeomAPI_DataMapOfShapeShape& theSubShapes) = 0;
84   /// load and orient generated shapes
85   virtual void loadAndOrientGeneratedShapes (
86                                                    GeomAlgoAPI_MakeShape* theMS,
87                                                std::shared_ptr<GeomAPI_Shape>  theShapeIn,
88                                                const int  theKindOfShape,
89                                                const int  theTag,
90                                                                                            const std::string& theName,
91                                                GeomAPI_DataMapOfShapeShape& theSubShapes) = 0;
92
93   /// load shapes of the first level (to be used during shape import)
94   virtual void loadFirstLevel(std::shared_ptr<GeomAPI_Shape> theShape, const std::string& theName, int&  theTag) = 0;
95   
96   /// load disconnected edges
97   virtual void loadDisconnectedEdges(std::shared_ptr<GeomAPI_Shape> theShape, const std::string& theName, int&  theTag) = 0;
98
99   /// load disconnected vetexes
100   virtual void loadDisconnectedVertexes(std::shared_ptr<GeomAPI_Shape> theShape, const std::string& theName,int&  theTag) = 0;
101
102 protected:
103 };
104
105 //! Pointer on feature object
106 typedef std::shared_ptr<ModelAPI_ResultBody> ResultBodyPtr;
107
108 #endif