Salome HOME
refs #561: the draft data model for Strickler table
[modules/hydro.git] / src / HYDROData / HYDROData_ShapesGroup.cxx
index a540e527f0599b13fa3e22939c9fd5a274556c34..3501522148c06f9bad65239ca0433896b1e9c665 100644 (file)
@@ -1,3 +1,20 @@
+// Copyright (C) 2014-2015  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 "HYDROData_ShapesGroup.h"
 
@@ -38,32 +55,24 @@ void HYDROData_ShapesGroup::GroupDefinition::Update( SeqOfGroupsDefs*          t
     for ( int i = 1; i <= aGroupDef.Shapes.Length(); ++i )
     {
       TopoDS_Shape aShape = aGroupDef.Shapes.Value( i );
-      /*
-      if ( theAlgo->IsDeleted( aShape ) )
+
+      const TopTools_ListOfShape& aModifiedByAlgo = theAlgo->Modified( aShape );
+      if ( !aModifiedByAlgo.IsEmpty() )
       {
+        HYDROData_ShapesTool::AddShapes( aShapesToAdd, aModifiedByAlgo );
         aGroupDef.Shapes.Remove( i );
         --i;
       }
-      else 
-      {*/
-        const TopTools_ListOfShape& aModifiedByAlgo = theAlgo->Modified( aShape );
-        if ( !aModifiedByAlgo.IsEmpty() )
+      else
+      {
+        const TopTools_ListOfShape& aGeneratedByAlgo = theAlgo->Generated( aShape );
+        if ( !aGeneratedByAlgo.IsEmpty() )
         {
-          HYDROData_ShapesTool::AddShapes( aShapesToAdd, aModifiedByAlgo );
+          HYDROData_ShapesTool::AddShapes( aShapesToAdd, aGeneratedByAlgo );
           aGroupDef.Shapes.Remove( i );
           --i;
         }
-        else
-        {
-          const TopTools_ListOfShape& aGeneratedByAlgo = theAlgo->Generated( aShape );
-          if ( !aGeneratedByAlgo.IsEmpty() )
-          {
-            HYDROData_ShapesTool::AddShapes( aShapesToAdd, aGeneratedByAlgo );
-            aGroupDef.Shapes.Remove( i );
-            --i;
-          }
-        }
-      //}
+      }
     }
 
     HYDROData_ShapesTool::AddShapes( aGroupDef.Shapes, aShapesToAdd );
@@ -89,18 +98,44 @@ void HYDROData_ShapesGroup::GroupDefinition::Update( SeqOfGroupsDefs*
       TopoDS_Shape aShape = aGroupDef.Shapes.Value( i );
 
       TopoDS_Shape aGeneratedByAlgo = theAlgo->Generated( aShape );
-      if ( aGeneratedByAlgo.IsNull() || aShape.IsEqual( aGeneratedByAlgo ) )
-        continue;
-
-      aShapesToAdd.Append( aGeneratedByAlgo );
-      aGroupDef.Shapes.Remove( i );
-      --i;
+      if ( aGeneratedByAlgo.IsNull() )
+      {
+        // Edge has been removed
+        aGroupDef.Shapes.Remove( i );
+        --i;
+      }
+      else if ( !aShape.IsEqual( aGeneratedByAlgo ) )
+      {
+        // Edge has been modified
+        aShapesToAdd.Append( aGeneratedByAlgo );
+        aGroupDef.Shapes.Remove( i );
+        --i;
+      }      
     }
 
     HYDROData_ShapesTool::AddShapes( aGroupDef.Shapes, aShapesToAdd );
   }
 }
 
+void HYDROData_ShapesGroup::GroupDefinition::Dump( std::ostream& theStream ) const
+{
+  theStream << "Name: " << Name.ToCString() << "\n";
+  HYDROData_ShapesTool::DumpSequenceOfShapes( theStream, Shapes );
+}
+
+void HYDROData_ShapesGroup::GroupDefinition::Dump( std::ostream&           theStream,
+                                                   const SeqOfGroupsDefs& theGroups  )
+{
+  SeqOfGroupsDefs::Iterator anIter( theGroups );
+  for ( ; anIter.More(); anIter.Next() )
+  {
+    const GroupDefinition& aGroupDef = anIter.Value();
+    aGroupDef.Dump( theStream );
+  }
+}
+
+
+
 HYDROData_ShapesGroup::HYDROData_ShapesGroup()
 : HYDROData_Entity()
 {