Salome HOME
Simple implementation of all kinds of names except FILTER
[modules/shaper.git] / src / Selector / Selector_Selector.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 Selector_Selector_H_
22 #define Selector_Selector_H_
23
24 #include "Selector.h"
25
26 #include <TDF_Label.hxx>
27 #include <TDF_LabelList.hxx>
28 #include <TopoDS_Shape.hxx>
29
30 #include <list>
31
32 /**\class Selector_Selector
33  * \ingroup DataModel
34  * \brief Main object for selection of the sub-shapes in the parametrically updated
35  * shapes using topological naming mechanism.
36  */
37
38 class Selector_Selector
39 {
40   /// Type of a selector: on this type depends what is stored in this label and how to
41   /// restore it on update.
42   enum Selector_Type {
43     SELTYPE_CONTAINER, ///< just a container of sub-elements, keeps the shape type of container
44     SELTYPE_INTERSECT, ///< sub-shape is intersection of higher level objects
45     SELTYPE_PRIMITIVE, ///< sub-shape found as a primitive on some label
46     SELTYPE_MODIFICATION,
47   };
48
49   Selector_Type myType; ///< Type of this selector.
50   TopAbs_ShapeEnum myShapeType; ///< type of this shape: container or result of intersection
51   std::list<Selector_Selector> mySubSelList; // list of sub-selectors if needed
52   TDF_Label myFinal; ///< final label of the primitive or generation, where the value is
53   TDF_LabelList myBases; ///< initial labels that contain shapes that produce the modification
54
55   TDF_Label myLab; ///< main label where selector is performed
56
57  public:
58   /// Initializes selector on the label
59    SELECTOR_EXPORT Selector_Selector(TDF_Label theLab);
60   /// Returns label of this selector
61    SELECTOR_EXPORT TDF_Label label();
62
63   /// Initializes the selector structure on the label.
64   /// Stores the name data to restore after modification.
65    SELECTOR_EXPORT bool select(const TopoDS_Shape theContext, const TopoDS_Shape theValue);
66
67   /// Stores the name to the label and sub-labels tree
68    SELECTOR_EXPORT void store();
69
70   /// Restores the selected shape by the topological naming kept in the data structure
71   /// Returns true if it can restore structure correctly
72    SELECTOR_EXPORT bool restore();
73
74   /// Updates the current shape by the stored topological name
75    SELECTOR_EXPORT bool solve();
76
77   /// Returns the current sub-shape value (null if can not resolve)
78    SELECTOR_EXPORT TopoDS_Shape value();
79
80 private:
81
82   /// Create and keep in the list the sub-sulector that select the given value.
83   /// Returns true if selection is correct.
84   bool selectBySubSelector(const TopoDS_Shape theContext, const TopoDS_Shape theValue);
85 };
86
87 #endif