Salome HOME
Add copyright header according to request of CEA from 06.06.2017
[modules/shaper.git] / src / GeomValidators / GeomValidators_Face.cpp
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 #include "GeomValidators_Face.h"
22 #include "GeomValidators_Tools.h"
23
24 #include "ModelAPI_AttributeSelection.h"
25
26 #include <GeomAPI_Face.h>
27
28 #include <GeomAbs_SurfaceType.hxx>
29
30 #include <Events_InfoMessage.h>
31
32 typedef std::map<std::string, GeomAbs_SurfaceType> FaceTypes;
33 static FaceTypes MyFaceTypes;
34
35 GeomAbs_SurfaceType faceType(const std::string& theType)
36 {
37   if (MyFaceTypes.size() == 0) {
38     MyFaceTypes["plane"] = GeomAbs_Plane;
39     MyFaceTypes["cylinder"] = GeomAbs_Cylinder;
40   }
41   std::string aType = std::string(theType.c_str());
42   if (MyFaceTypes.find(aType) != MyFaceTypes.end())
43     return MyFaceTypes[aType];
44
45   Events_InfoMessage("GeomValidators_Face", "Face type defined in XML is not implemented!").send();
46   return GeomAbs_Plane;
47 }
48
49 bool GeomValidators_Face::isValid(const AttributePtr& theAttribute,
50                                   const std::list<std::string>& theArguments,
51                                   Events_InfoMessage& theError) const
52 {
53   std::string anAttributeType = theAttribute->attributeType();
54   if (anAttributeType != ModelAPI_AttributeSelection::typeId()) {
55     theError = "The attribute with the %1 type is not processed";
56     theError.arg(theAttribute->attributeType());
57     return false;
58   }
59
60   bool aValid = true;
61   ObjectPtr anObject = GeomValidators_Tools::getObject(theAttribute);
62   if (!anObject.get()) {
63     aValid = true; // an empty face selected is valid.
64   }
65   else {
66     AttributeSelectionPtr aSelectionAttr =
67       std::dynamic_pointer_cast<ModelAPI_AttributeSelection>(theAttribute);
68     std::shared_ptr<GeomAPI_Shape> aGeomShape = aSelectionAttr->value();
69     if (!aGeomShape.get()) {
70       // if the shape is empty, apply the validator to the shape of result
71       aGeomShape = aSelectionAttr->context()->shape();
72     }
73     // it is necessary to check whether the shape is face in order to set in selection a value
74     // with any type and check the type in this validator
75     // It is realized to select any object in OB and filter it in this validator (sketch plane)
76     if (!aGeomShape->isFace()) {
77       aValid = false;
78       theError = "The shape is not a face.";
79     }
80     else {
81       std::shared_ptr<GeomAPI_Face> aGeomFace(new GeomAPI_Face(aGeomShape));
82       if (!aGeomFace.get()) {
83         aValid = false;
84         theError = "The shape is not a face.";
85       }
86       else {
87         GeomAbs_SurfaceType aFaceType = GeomAbs_Plane;
88         if (theArguments.size() == 1)
89           aFaceType = faceType(theArguments.front());
90
91         switch (aFaceType) {
92           case GeomAbs_Plane: {
93             aValid = aGeomFace->isPlanar();
94             if (!aValid)
95               theError = "The shape is not a plane.";
96           }
97           break;
98           case GeomAbs_Cylinder:{
99             aValid = aGeomFace->isCylindrical();
100             if (!aValid)
101               theError = "The shape is not a cylinder.";
102           }
103           break;
104           default: {
105             aValid = false;
106             theError = "The shape is not an available face.";
107             break;
108           }
109         }
110       }
111     }
112   }
113   return aValid;
114 }