Salome HOME
23636: EDF 18217 - Problem when suppressing CAD
[modules/smesh.git] / src / SMDS / SMDS_MeshGroup.cxx
1 // Copyright (C) 2007-2016  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License, or (at your option) any later version.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 //  SMESH SMDS : implementation of Salome mesh data structure
24 //  File   : SMDS_MeshGroup.cxx
25 //  Author : Jean-Michel BOULCOURT
26 //  Module : SMESH
27 //
28 #ifdef _MSC_VER
29 #pragma warning(disable:4786)
30 #endif
31
32 #include "SMDS_MeshGroup.hxx"
33
34 #include "SMDS_SetIterator.hxx"
35 #include "ObjectPool.hxx"
36
37 #include <utilities.h>
38
39 #include <boost/make_shared.hpp>
40
41 //=======================================================================
42 //function : SMDS_MeshGroup
43 //purpose  :
44 //=======================================================================
45
46 SMDS_MeshGroup::SMDS_MeshGroup(const SMDS_Mesh *         theMesh,
47                                const SMDSAbs_ElementType theType)
48   : SMDS_ElementHolder( theMesh ), myType( theType ), myTic( 0 )
49 {
50 }
51
52 //=======================================================================
53 //function : Clear
54 //purpose  :
55 //=======================================================================
56
57 void SMDS_MeshGroup::Clear()
58 {
59   clearVector( myElements );
60   myType = SMDSAbs_All;
61   ++myTic;
62 }
63
64 //=======================================================================
65 //function : Add
66 //purpose  : 
67 //=======================================================================
68
69 bool SMDS_MeshGroup::Add(const SMDS_MeshElement * theElem)
70 {
71   // the type of the group is determined by the first element added
72   if ( myElements.empty() ) {
73     myType = theElem->GetType();
74   }
75   else if ( theElem->GetType() != myType ) {
76     MESSAGE("SMDS_MeshGroup::Add : Type Mismatch "<<theElem->GetType()<<"!="<<myType);
77     return false;
78   }
79
80   bool added = myElements.insert( theElem ).second;
81
82   ++myTic;
83
84   return added;
85 }
86
87 //=======================================================================
88 //function : Remove
89 //purpose  :
90 //=======================================================================
91
92 bool SMDS_MeshGroup::Remove( const SMDS_MeshElement * theElem )
93 {
94   TElementSet::iterator found = myElements.find(theElem);
95   if ( found != myElements.end() ) {
96     myElements.erase( found );
97     if ( myElements.empty() ) myType = SMDSAbs_All;
98     ++myTic;
99     return true;
100   }
101   return false;
102 }
103
104 //=======================================================================
105 //function : Contains
106 //purpose  :
107 //=======================================================================
108
109 bool SMDS_MeshGroup::Contains(const SMDS_MeshElement * theElem) const
110 {
111   return myElements.find( theElem ) != myElements.end();
112 }
113
114 //=======================================================================
115 //function : SetType
116 //purpose  : 
117 //=======================================================================
118
119 void SMDS_MeshGroup::SetType(const SMDSAbs_ElementType theType)
120 {
121   if (IsEmpty())
122     myType = theType;
123 }
124
125 //=======================================================================
126 //function : GetElements
127 //purpose  : 
128 //=======================================================================
129
130 SMDS_ElemIteratorPtr SMDS_MeshGroup::GetElements() const
131 {
132   typedef SMDS_SetIterator< const SMDS_MeshElement*, TIterator > TSetIterator;
133   return boost::make_shared< TSetIterator >( myElements.begin(), myElements.end() );
134 }
135
136 //=======================================================================
137 //function : Move contents of another group
138 //purpose  : 
139 //=======================================================================
140
141 void SMDS_MeshGroup::operator=( SMDS_MeshGroup && other )
142 {
143   myMesh = other.myMesh;
144   myType = other.myType;
145   myElements = std::move( other.myElements );
146   ++myTic;
147 }
148
149 //=======================================================================
150 //function : tmpClear
151 //purpose  : temporary remove its elements before mesh compacting
152 //=======================================================================
153
154 void SMDS_MeshGroup::tmpClear()
155 {
156   myElements.clear();
157 }