X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2FModelAPI%2FModelAPI_Tools.cpp;h=56c2a0fe63e6aafcd1788b030e76ed4139765699;hb=95eee6723538599e290922329bb5b2653ebaab20;hp=a8e174d123f9f56e19a1d1632ca3674b3cd17b91;hpb=26d4e526ae2c0ae52e880908f76ab71d1c25e9d9;p=modules%2Fshaper.git diff --git a/src/ModelAPI/ModelAPI_Tools.cpp b/src/ModelAPI/ModelAPI_Tools.cpp old mode 100644 new mode 100755 index a8e174d12..56c2a0fe6 --- a/src/ModelAPI/ModelAPI_Tools.cpp +++ b/src/ModelAPI/ModelAPI_Tools.cpp @@ -19,21 +19,6 @@ namespace ModelAPI_Tools { std::shared_ptr shape(const ResultPtr& theResult) { -/* - ResultBodyPtr aBody = std::dynamic_pointer_cast(theResult); - if (aBody) - return aBody->shape(); - - ResultConstructionPtr aConstruct = std::dynamic_pointer_cast( - theResult); - if (aConstruct) - return aConstruct->shape(); - - ResultGroupPtr aGroup = std::dynamic_pointer_cast(theResult); - if (aGroup) - return aGroup->shape(); - return std::shared_ptr(); - */ return theResult->shape(); } @@ -175,11 +160,13 @@ void findRandomColor(std::vector& theValues) ResultPtr findPartResult(const DocumentPtr& theMain, const DocumentPtr& theSub) { - for (int a = theMain->size(ModelAPI_ResultPart::group()) - 1; a >= 0; a--) { - ResultPartPtr aPart = std::dynamic_pointer_cast( - theMain->object(ModelAPI_ResultPart::group(), a)); - if (aPart && aPart->data()->document(ModelAPI_ResultPart::DOC_REF())->value() == theSub) { - return aPart; + if (theMain != theSub) { // to optimize and avoid of crash on partset document close (don't touch the sub-document structure) + for (int a = theMain->size(ModelAPI_ResultPart::group()) - 1; a >= 0; a--) { + ResultPartPtr aPart = std::dynamic_pointer_cast( + theMain->object(ModelAPI_ResultPart::group(), a)); + if (aPart && aPart->data()->document(ModelAPI_ResultPart::DOC_REF())->value() == theSub) { + return aPart; + } } } return ResultPtr(); @@ -200,4 +187,29 @@ CompositeFeaturePtr compositeOwner(const FeaturePtr& theFeature) return CompositeFeaturePtr(); // not found } +ResultCompSolidPtr compSolidOwner(const ResultPtr& theSub) +{ + ResultBodyPtr aBody = std::dynamic_pointer_cast(theSub); + if (aBody.get()) { + FeaturePtr aFeatureOwner = aBody->document()->feature(aBody); + if (aFeatureOwner.get()) { + std::list >::const_iterator aResIter = + aFeatureOwner->results().cbegin(); + for(; aResIter != aFeatureOwner->results().cend(); aResIter++) { + ResultCompSolidPtr aComp = std::dynamic_pointer_cast(*aResIter); + if (aComp && aComp->isSub(aBody)) + return aComp; + } + } + } + return ResultCompSolidPtr(); // not found +} + +bool hasSubResults(const ResultPtr& theResult) +{ + ResultCompSolidPtr aCompSolid = std::dynamic_pointer_cast(theResult); + return aCompSolid.get() && aCompSolid->numberOfSubs() > 0; +} + } // namespace ModelAPI_Tools +