X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomValidators%2FGeomValidators_Face.cpp;h=6d5a0d3b40daa5c3c4a9e9efbb4dd27b587ef911;hb=04e2497fc973f0afc95d0a4a6f95e37fb27f45e8;hp=6f260861836fdba6a22847f0a77ffce16e55a4dc;hpb=ad777acf40828575ffa8a9ba6db103a7cc17dd71;p=modules%2Fshaper.git diff --git a/src/GeomValidators/GeomValidators_Face.cpp b/src/GeomValidators/GeomValidators_Face.cpp index 6f2608618..6d5a0d3b4 100644 --- a/src/GeomValidators/GeomValidators_Face.cpp +++ b/src/GeomValidators/GeomValidators_Face.cpp @@ -1,5 +1,21 @@ -// Copyright (C) 2014-20xx CEA/DEN, EDF R&D - +// Copyright (C) 2014-2022 CEA/DEN, EDF R&D +// +// This library is free software; you can redistribute it and/or +// modify it under the terms of the GNU Lesser General Public +// License as published by the Free Software Foundation; either +// version 2.1 of the License, or (at your option) any later version. +// +// This library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// Lesser General Public License for more details. +// +// You should have received a copy of the GNU Lesser General Public +// License along with this library; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com +// #include "GeomValidators_Face.h" #include "GeomValidators_Tools.h" @@ -7,16 +23,16 @@ #include "ModelAPI_AttributeSelection.h" #include +#include -#include +#include -#include -#include +#include typedef std::map FaceTypes; static FaceTypes MyFaceTypes; -GeomAbs_SurfaceType GeomValidators_Face::faceType(const std::string& theType) +GeomAbs_SurfaceType faceType(const std::string& theType) { if (MyFaceTypes.size() == 0) { MyFaceTypes["plane"] = GeomAbs_Plane; @@ -25,39 +41,91 @@ GeomAbs_SurfaceType GeomValidators_Face::faceType(const std::string& theType) std::string aType = std::string(theType.c_str()); if (MyFaceTypes.find(aType) != MyFaceTypes.end()) return MyFaceTypes[aType]; - - Events_Error::send("Face type defined in XML is not implemented!"); + +// LCOV_EXCL_START + Events_InfoMessage("GeomValidators_Face", "Face type defined in XML is not implemented!").send(); return GeomAbs_Plane; +// LCOV_EXCL_STOP } -bool GeomValidators_Face::isValid(const AttributePtr& theAttribute, - const std::list& theArguments) const +bool isValidFace(const GeomShapePtr theShape, + const GeomAbs_SurfaceType theFaceType, + Events_InfoMessage& theError) { - bool aValid = false; + GeomFacePtr aGeomFace = theShape->face(); + + if (!aGeomFace.get()) { + theError = "The shape is not a face."; + return false; + } + + bool aValid = true; + + switch (theFaceType) { + case GeomAbs_Plane: { + aValid = aGeomFace->isPlanar(); + if (!aValid) theError = "The shape is not a plane."; + break; + } + case GeomAbs_Cylinder: { + aValid = aGeomFace->isCylindrical(); + if (!aValid) theError = "The shape is not a cylinder."; + break; + } + default: { + aValid = false; + theError = "The shape is not an available face."; + break; + } + } - GeomAbs_SurfaceType aFaceType = GeomAbs_Plane; - if (theArguments.size() == 1) { - std::string anArgument = theArguments.front(); - aFaceType = faceType(anArgument); + return aValid; +} + +bool GeomValidators_Face::isValid(const AttributePtr& theAttribute, + const std::list& theArguments, + Events_InfoMessage& theError) const +{ + std::string anAttributeType = theAttribute->attributeType(); + if (anAttributeType != ModelAPI_AttributeSelection::typeId()) { +// LCOV_EXCL_START + theError = "The attribute with the %1 type is not processed"; + theError.arg(theAttribute->attributeType()); + return false; +// LCOV_EXCL_STOP } + bool aValid = true; ObjectPtr anObject = GeomValidators_Tools::getObject(theAttribute); - if (anObject.get() != NULL) { - AttributeSelectionPtr aSelectionAttr = std::dynamic_pointer_cast - (theAttribute); + if (!anObject.get()) { + aValid = true; // an empty face selected is valid. + } + else { + AttributeSelectionPtr aSelectionAttr = + std::dynamic_pointer_cast(theAttribute); std::shared_ptr aGeomShape = aSelectionAttr->value(); - std::shared_ptr aGeomFace(new GeomAPI_Face(aGeomShape)); - if (aGeomFace.get() != NULL) { - switch(aFaceType) { - case GeomAbs_Plane: - aValid = aGeomFace->isPlanar(); - break; - case GeomAbs_Cylinder: - break; - default: - break; + if (!aGeomShape.get()) { + // if the shape is empty, apply the validator to the shape of result + aGeomShape = aSelectionAttr->context()->shape(); + } + // it is necessary to check whether the shape is face in order to set in selection a value + // with any type and check the type in this validator + // It is realized to select any object in OB and filter it in this validator (sketch plane) + GeomAbs_SurfaceType aFaceType = GeomAbs_Plane; + if (theArguments.size() == 1) + aFaceType = faceType(theArguments.front()); + if (aGeomShape->isFace()) { + aValid = isValidFace(aGeomShape, aFaceType, theError); + } + else if (aSelectionAttr->isGeometricalSelection() && aGeomShape->isCompound()) { + for (GeomAPI_ShapeIterator anIt(aGeomShape); anIt.more() && aValid; anIt.next()) { + aValid = isValidFace(anIt.current(), aFaceType, theError); } } + else { + aValid = false; + theError = "The shape is not a face."; + } } return aValid; }