X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomValidators%2FGeomValidators_Face.cpp;h=82d0f476e915d8330ea0b430b6cdd4bd579a2de5;hb=be64ac512378281d54e4a73e8edb68ae43d0c5a7;hp=be0d9270eb69d8c25fe63ed949e6b5d6345aacef;hpb=e074e769a363f00ed7e4fb1ddcb3d05081f84358;p=modules%2Fshaper.git diff --git a/src/GeomValidators/GeomValidators_Face.cpp b/src/GeomValidators/GeomValidators_Face.cpp index be0d9270e..82d0f476e 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-2019 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,32 +41,68 @@ 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 isValidFace(const GeomShapePtr theShape, + const GeomAbs_SurfaceType theFaceType, + Events_InfoMessage& theError) +{ + 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; + } + } + + return aValid; } bool GeomValidators_Face::isValid(const AttributePtr& theAttribute, const std::list& theArguments, - std::string& theError) const + Events_InfoMessage& theError) const { - bool aValid = false; - - GeomAbs_SurfaceType aFaceType = GeomAbs_Plane; - if (theArguments.size() == 1) { - std::string anArgument = theArguments.front(); - aFaceType = faceType(anArgument); + 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) { + if (!anObject.get()) { + aValid = true; // an empty face selected is valid. + } + else { AttributeSelectionPtr aSelectionAttr = - std::dynamic_pointer_cast(theAttribute); - if (aSelectionAttr.get() == NULL) { - theError = "Is not a selection attribute."; - return aValid; - } - + std::dynamic_pointer_cast(theAttribute); std::shared_ptr aGeomShape = aSelectionAttr->value(); if (!aGeomShape.get()) { // if the shape is empty, apply the validator to the shape of result @@ -59,29 +111,21 @@ bool GeomValidators_Face::isValid(const AttributePtr& theAttribute, // 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()) { - std::shared_ptr aGeomFace(new GeomAPI_Face(aGeomShape)); - if (aGeomFace.get() != NULL) { - switch(aFaceType) { - 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: - theError = "The shape is not an available face." - break; - } + 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 - theError = "The shape is not a face." + } + else { + aValid = false; + theError = "The shape is not a face."; + } } - else - aValid = true; // an empty face selected is valid. return aValid; }