]> SALOME platform Git repositories - modules/yacs.git/commitdiff
Salome HOME
IPAL54049: Operations on multiple study objects are very long
authoreap <eap@opencascade.com>
Wed, 22 Mar 2017 13:48:29 +0000 (16:48 +0300)
committereap <eap@opencascade.com>
Wed, 22 Mar 2017 13:48:29 +0000 (16:48 +0300)
src/DF/DF_Label.cxx
src/SALOMEDSImpl/SALOMEDSImpl_SComponent.cxx

index e6971f5dfd41635ef8104cf45afe89825bad2f57..32e95feed0667f72e0d8bf5228e610e98efb1aa0 100644 (file)
@@ -326,10 +326,21 @@ DF_Label DF_Label::FindChild(int theTag, bool isCreate)
     if(_node->_lastChild->_tag < theTag) aPrevious = _node->_lastChild;
   }
   
-  if(!aPrevious) { 
-    aLabel = _node->_firstChild;
+  if ( !aPrevious && _node->_firstChild )
+  {
+    // IPAL54049: Operations on multiple study objects are very long
+    // Use _node->_firstChild->_previous to store the last found child
+    if ( _node->_firstChild->_previous &&
+         _node->_firstChild->_previous->_tag <= theTag )
+      aLabel = _node->_firstChild->_previous;
+    else
+      aLabel = _node->_firstChild;
+
     while(aLabel) {
-      if(aLabel->_tag == theTag) return DF_Label(aLabel);
+      if(aLabel->_tag == theTag) {
+        _node->_firstChild->_previous = aLabel;
+        return DF_Label(aLabel);
+      }
       if(aLabel->_tag > theTag) {
         aNext = aLabel;
         break;
index caae86ecfbbe7e94bd98730533407d4862fa16f8..ad6e4bdad89a03742546cf57ca3074118864342b 100644 (file)
@@ -110,10 +110,7 @@ bool SALOMEDSImpl_SComponent::ComponentIOR(std::string& IOR)
 bool SALOMEDSImpl_SComponent::IsA(const DF_Label& theLabel)
 {
   // scomponent must contain comment and belong to the 2th depth label
-  if ( theLabel.IsAttribute(SALOMEDSImpl_AttributeComment::GetID()) && theLabel.Depth() == 2) {
-    return true;
-  }
-  return false;
+  return theLabel.Depth() == 2 && theLabel.IsAttribute(SALOMEDSImpl_AttributeComment::GetID());
 }
 
 //============================================================================