Salome HOME
e2f5fbccfa3750effcc0dc1a29fc7f709339be65
[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   myElements.insert( theElem );
81   ++myTic;
82
83   return true;
84 }
85
86 //=======================================================================
87 //function : Remove
88 //purpose  :
89 //=======================================================================
90
91 bool SMDS_MeshGroup::Remove( const SMDS_MeshElement * theElem )
92 {
93   TElementSet::iterator found = myElements.find(theElem);
94   if ( found != myElements.end() ) {
95     myElements.erase( found );
96     if ( myElements.empty() ) myType = SMDSAbs_All;
97     ++myTic;
98     return true;
99   }
100   return false;
101 }
102
103 //=======================================================================
104 //function : Contains
105 //purpose  :
106 //=======================================================================
107
108 bool SMDS_MeshGroup::Contains(const SMDS_MeshElement * theElem) const
109 {
110   return myElements.find( theElem ) != myElements.end();
111 }
112
113 //=======================================================================
114 //function : SetType
115 //purpose  : 
116 //=======================================================================
117
118 void SMDS_MeshGroup::SetType(const SMDSAbs_ElementType theType)
119 {
120   if (IsEmpty())
121     myType = theType;
122 }
123
124 //=======================================================================
125 //function : GetElements
126 //purpose  : 
127 //=======================================================================
128
129 SMDS_ElemIteratorPtr SMDS_MeshGroup::GetElements() const
130 {
131   typedef SMDS_SetIterator< const SMDS_MeshElement*, TIterator > TSetIterator;
132   return boost::make_shared< TSetIterator >( myElements.begin(), myElements.end() );
133 }
134
135 //=======================================================================
136 //function : Move contents of another group
137 //purpose  : 
138 //=======================================================================
139
140 void SMDS_MeshGroup::operator=( SMDS_MeshGroup && other )
141 {
142   myMesh = other.myMesh;
143   myType = other.myType;
144   myElements = std::move( other.myElements );
145   ++myTic;
146 }
147
148 //=======================================================================
149 //function : tmpClear
150 //purpose  : temporary remove its elements before mesh compacting
151 //=======================================================================
152
153 void SMDS_MeshGroup::tmpClear()
154 {
155   myElements.clear();
156 }