Salome HOME
bos #20256: [CEA 18523] Porting SMESH to int 64 bits
[modules/smesh.git] / src / SMESHDS / SMESHDS_Group.cxx
1 // Copyright (C) 2007-2021  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 //  File   : SMESHDS_Group.cxx
23 //  Module : SMESH
24 //
25
26 #include "SMESHDS_Group.hxx"
27 #include "SMESHDS_Mesh.hxx"
28
29 //=============================================================================
30 /*!
31  *  
32  */
33 //=============================================================================
34
35 SMESHDS_Group::SMESHDS_Group (const int                 theID,
36                               const SMESHDS_Mesh*       theMesh,
37                               const SMDSAbs_ElementType theType)
38   : SMESHDS_GroupBase(theID,theMesh,theType),
39     myGroup(theMesh,theType)
40 {
41 }
42
43 //=======================================================================
44 //function : Extent
45 //purpose  : 
46 //=======================================================================
47
48 smIdType SMESHDS_Group::Extent() const
49 {
50   return myGroup.Extent();
51 }
52
53 //=======================================================================
54 //function : IsEmpty
55 //purpose  : 
56 //=======================================================================
57
58 bool SMESHDS_Group::IsEmpty()
59 {
60   return myGroup.IsEmpty();
61 }
62
63 //=============================================================================
64 /*!
65  *  
66  */
67 //=============================================================================
68
69 bool SMESHDS_Group::Contains (const smIdType theID)
70 {
71   const SMDS_MeshElement* aElem = findInMesh (theID);
72   if (aElem)
73     return myGroup.Contains(aElem);
74   return false;
75 }
76
77 //=======================================================================
78 //function : Contains
79 //purpose  : 
80 //=======================================================================
81
82 bool SMESHDS_Group::Contains (const SMDS_MeshElement* elem)
83 {
84   if (elem)
85     return myGroup.Contains(elem);
86   return false;
87 }
88
89 //=============================================================================
90 /*!
91  *  
92  */
93 //=============================================================================
94
95 bool SMESHDS_Group::Add (const smIdType theID)
96 {
97   return Add( findInMesh( theID ));
98 }
99
100 //=============================================================================
101 /*!
102  *  
103  */
104 //=============================================================================
105
106 bool SMESHDS_Group::Add (const SMDS_MeshElement* aElem )
107 {
108   bool added = false;
109   if ( aElem )
110   {
111     added = myGroup.Add (aElem);
112     if ( added )
113       resetIterator();
114   }
115   return added;
116 }
117
118 //=============================================================================
119 /*!
120  *  
121  */
122 //=============================================================================
123
124 bool SMESHDS_Group::Remove (const smIdType theID)
125 {
126   bool removed = false;
127   if ( const SMDS_MeshElement* aElem = findInMesh( theID ))
128   {
129     removed = myGroup.Remove (aElem);
130     if ( removed )
131       resetIterator();
132   }
133   return removed;
134 }
135
136
137 //======================================================================
138 //function : Clear
139 //purpose  : 
140 //=======================================================================
141
142 void SMESHDS_Group::Clear()
143 {
144   myGroup.Clear();
145   resetIterator();
146 }
147   
148 //=======================================================================
149 //function : GetElements
150 //purpose  : 
151 //=======================================================================
152
153 SMDS_ElemIteratorPtr SMESHDS_Group::GetElements() const
154 {
155   return myGroup.GetElements();
156 }
157
158 //================================================================================
159 /*!
160  * \brief Return a value allowing to find out if a group has changed or not
161  */
162 //================================================================================
163
164 int SMESHDS_Group::GetTic() const
165 {
166   return myGroup.Tic();
167 }
168
169 //=======================================================================
170 //function : SetType
171 //purpose  : 
172 //=======================================================================
173
174 void SMESHDS_Group::SetType(SMDSAbs_ElementType theType)
175 {
176   if ( myGroup.IsEmpty() || GetType() == SMDSAbs_All )
177   {
178     SMESHDS_GroupBase::SetType( theType );
179     myGroup.SetType ( theType );
180   }
181   else
182   {
183     SMESHDS_GroupBase::SetType( myGroup.GetType() );
184   }
185 }
186