]> SALOME platform Git repositories - modules/smesh.git/blobdiff - src/SMDS/SMDS_MeshGroup.cxx
Salome HOME
Revert "23418: [OCC] Mesh: Minimization of memory usage of SMESH"
[modules/smesh.git] / src / SMDS / SMDS_MeshGroup.cxx
index 80e7c6080496b14e5f4204a5b896f620095f21d5..4040a3e1d2193e2d205cdc436c7d467a5b1dc19e 100644 (file)
 #endif
 
 #include "SMDS_MeshGroup.hxx"
+#include "utilities.h"
 
-#include "SMDS_SetIterator.hxx"
-#include "ObjectPool.hxx"
+using namespace std;
 
-#include <utilities.h>
+//=======================================================================
+//function : SMDS_MeshGroup
+//purpose  : 
+//=======================================================================
 
-#include <boost/make_shared.hpp>
+SMDS_MeshGroup::SMDS_MeshGroup(const SMDS_Mesh * theMesh,
+                               const SMDSAbs_ElementType theType)
+  :myMesh(theMesh),myType(theType), myParent(NULL), myTic(0)
+{
+}
 
 //=======================================================================
 //function : SMDS_MeshGroup
-//purpose  :
+//purpose  : 
 //=======================================================================
 
-SMDS_MeshGroup::SMDS_MeshGroup(const SMDS_Mesh *         theMesh,
+SMDS_MeshGroup::SMDS_MeshGroup(SMDS_MeshGroup * theParent,
                                const SMDSAbs_ElementType theType)
-  : SMDS_ElementHolder( theMesh ), myType(theType), myTic(0)
+        :myMesh(theParent->myMesh),myType(theType), myParent(theParent)
 {
 }
 
+//=======================================================================
+//function : AddSubGroup
+//purpose  : 
+//=======================================================================
+
+const SMDS_MeshGroup *SMDS_MeshGroup::AddSubGroup
+                (const SMDSAbs_ElementType theType)
+{
+        const SMDS_MeshGroup * subgroup = new SMDS_MeshGroup(this,theType);
+        myChildren.insert(myChildren.end(),subgroup);
+        return subgroup;
+}
+
+//=======================================================================
+//function : RemoveSubGroup
+//purpose  : 
+//=======================================================================
+
+bool SMDS_MeshGroup::RemoveSubGroup(const SMDS_MeshGroup * theGroup)
+{
+        bool found = false;     
+        list<const SMDS_MeshGroup*>::iterator itgroup;
+        for(itgroup=myChildren.begin(); itgroup!=myChildren.end(); itgroup++)
+        {
+                const SMDS_MeshGroup* subgroup=*itgroup;
+                if (subgroup == theGroup)
+                {
+                        found = true;
+                        myChildren.erase(itgroup);
+                }
+        }
+
+        return found;
+}
+
+//=======================================================================
+//function : RemoveFromParent
+//purpose  : 
+//=======================================================================
+
+bool SMDS_MeshGroup::RemoveFromParent()
+{
+        
+        if (myParent==NULL) return false;
+        else
+        {
+                return (myParent->RemoveSubGroup(this));
+        }
+}
 //=======================================================================
 //function : Clear
-//purpose  :
+//purpose  : 
 //=======================================================================
 
 void SMDS_MeshGroup::Clear()
 {
-  clearVector( myElements );
+  myElements.clear();
   myType = SMDSAbs_All;
   ++myTic;
 }
@@ -76,8 +132,8 @@ bool SMDS_MeshGroup::Add(const SMDS_MeshElement * theElem)
     MESSAGE("SMDS_MeshGroup::Add : Type Mismatch "<<theElem->GetType()<<"!="<<myType);
     return false;
   }
-
-  myElements.insert(theElem);
+        
+  myElements.insert(myElements.end(), theElem);
   ++myTic;
 
   return true;
@@ -85,12 +141,12 @@ bool SMDS_MeshGroup::Add(const SMDS_MeshElement * theElem)
 
 //=======================================================================
 //function : Remove
-//purpose  :
+//purpose  : 
 //=======================================================================
 
 bool SMDS_MeshGroup::Remove(const SMDS_MeshElement * theElem)
 {
-  TElementSet::iterator found = myElements.find(theElem);
+  set<const SMDS_MeshElement *>::iterator found = myElements.find(theElem);
   if ( found != myElements.end() ) {
     myElements.erase(found);
     if (myElements.empty()) myType = SMDSAbs_All;
@@ -120,38 +176,3 @@ void SMDS_MeshGroup::SetType(const SMDSAbs_ElementType theType)
   if (IsEmpty())
     myType = theType;
 }
-
-//=======================================================================
-//function : GetElements
-//purpose  : 
-//=======================================================================
-
-SMDS_ElemIteratorPtr SMDS_MeshGroup::GetElements() const
-{
-  typedef SMDS_SetIterator< const SMDS_MeshElement*, TIterator > TSetIterator;
-  return boost::make_shared< TSetIterator >( myElements.begin(), myElements.end() );
-}
-
-//=======================================================================
-//function : Move contents of another group
-//purpose  : 
-//=======================================================================
-
-void SMDS_MeshGroup::operator=( SMDS_MeshGroup && other )
-{
-  myMesh = other.myMesh;
-  myType = other.myType;
-  myElements = std::move( other.myElements );
-  ++myTic;
-}
-
-//=======================================================================
-//function : tmpClear
-//purpose  : temporary remove its elements before mesh compacting
-//=======================================================================
-
-void SMDS_MeshGroup::tmpClear()
-{
-  compact();
-  myElements.clear();
-}