Salome HOME
IMP19942 - Convert group on geometry into group of elements
[modules/smesh.git] / src / SMESH_I / SMESH_Group_i.cxx
1 //  SMESH SMESH_I : idl implementation based on 'SMESH' unit's classes
2 //
3 //  Copyright (C) 2004  CEA
4 // 
5 //  This library is free software; you can redistribute it and/or 
6 //  modify it under the terms of the GNU Lesser General Public 
7 //  License as published by the Free Software Foundation; either 
8 //  version 2.1 of the License. 
9 // 
10 //  This library is distributed in the hope that it will be useful, 
11 //  but WITHOUT ANY WARRANTY; without even the implied warranty of 
12 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
13 //  Lesser General Public License for more details. 
14 // 
15 //  You should have received a copy of the GNU Lesser General Public 
16 //  License along with this library; if not, write to the Free Software 
17 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
18 // 
19 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
20 //
21 //
22 //
23 //  File   : SMESH_Group_i.cxx
24 //  Author : Sergey ANIKIN, OCC
25 //  Module : SMESH
26 //  $Header$
27
28
29 #include "SMESH_Group_i.hxx"
30 #include "SMESH_Mesh_i.hxx"
31 #include "SMESH_Gen_i.hxx"
32 #include "SMESH_Group.hxx"
33 #include "SMESHDS_Group.hxx"
34 #include "SMESHDS_GroupOnGeom.hxx"
35 #include "SMDSAbs_ElementType.hxx"
36
37 #include "SMESH_Filter_i.hxx"
38 #include "SMESH_PythonDump.hxx"
39
40 #include "utilities.h"
41
42 using namespace SMESH;
43
44 //=============================================================================
45 /*!
46  *  
47  */
48 //=============================================================================
49
50 SMESH_GroupBase_i::SMESH_GroupBase_i( PortableServer::POA_ptr thePOA, SMESH_Mesh_i* theMeshServant, const int theLocalID )
51 : SALOME::GenericObj_i( thePOA ),
52   myMeshServant( theMeshServant ), 
53   myLocalID( theLocalID )
54 {
55   // PAL7962: san -- To ensure correct mapping of servant and correct reference counting in GenericObj_i,
56   // servant activation is performed by SMESH_Mesh_i::createGroup()
57   // thePOA->activate_object( this );
58 }
59
60 SMESH_Group_i::SMESH_Group_i( PortableServer::POA_ptr thePOA, SMESH_Mesh_i* theMeshServant, const int theLocalID )
61      : SALOME::GenericObj_i( thePOA ),
62        SMESH_GroupBase_i( thePOA, theMeshServant, theLocalID )
63 {
64   //MESSAGE("SMESH_Group_i; this = "<<this );
65 }
66
67 SMESH_GroupOnGeom_i::SMESH_GroupOnGeom_i( PortableServer::POA_ptr thePOA, SMESH_Mesh_i* theMeshServant, const int theLocalID )
68      : SALOME::GenericObj_i( thePOA ),
69        SMESH_GroupBase_i( thePOA, theMeshServant, theLocalID )
70 {
71   //MESSAGE("SMESH_GroupOnGeom_i; this = "<<this );
72 }
73
74 //=============================================================================
75 /*!
76  *  
77  */
78 //=============================================================================
79
80 SMESH_GroupBase_i::~SMESH_GroupBase_i()
81 {
82   MESSAGE("~SMESH_GroupBase_i; this = "<<this );
83   if ( myMeshServant )
84     myMeshServant->removeGroup(myLocalID);
85 }
86
87 //=======================================================================
88 //function : GetSmeshGroup
89 //purpose  : 
90 //=======================================================================
91
92 ::SMESH_Group* SMESH_GroupBase_i::GetSmeshGroup() const
93 {
94   if ( myMeshServant ) {
95     ::SMESH_Mesh& aMesh = myMeshServant->GetImpl();
96     return aMesh.GetGroup(myLocalID);
97   }
98   return 0;
99 }
100
101 //=======================================================================
102 //function : GetGroupDS
103 //purpose  : 
104 //=======================================================================
105
106 SMESHDS_GroupBase* SMESH_GroupBase_i::GetGroupDS() const
107 {
108   ::SMESH_Group* aGroup = GetSmeshGroup();
109   if ( aGroup )
110     return aGroup->GetGroupDS();
111   return 0;
112 }
113
114 //=============================================================================
115 /*!
116  *  
117  */
118 //=============================================================================
119
120 void SMESH_GroupBase_i::SetName( const char* theName )
121 {
122   // Perform renaming
123   ::SMESH_Group* aGroup = GetSmeshGroup();
124   if (!aGroup) {
125     MESSAGE("can't set name of a vague group");
126     return;
127   }
128
129   if ( aGroup->GetName() && !strcmp( aGroup->GetName(), theName ) )
130     return; // nothing to rename
131
132   aGroup->SetName(theName);
133
134   // Update group name in a study
135   SMESH_Gen_i* aGen = myMeshServant->GetGen();
136   aGen->SetName( aGen->ObjectToSObject( aGen->GetCurrentStudy(), _this() ), theName );
137   
138   // Update Python script
139   TPythonDump() <<  _this() << ".SetName( '" << theName << "' )";
140 }
141
142 //=============================================================================
143 /*!
144  *  
145  */
146 //=============================================================================
147
148 char* SMESH_GroupBase_i::GetName()
149 {
150   ::SMESH_Group* aGroup = GetSmeshGroup();
151   if (aGroup)
152     return CORBA::string_dup (aGroup->GetName());
153   MESSAGE("get name of a vague group");
154   return CORBA::string_dup( "NO_NAME" );
155 }
156
157 //=============================================================================
158 /*!
159  *  
160  */
161 //=============================================================================
162
163 SMESH::ElementType SMESH_GroupBase_i::GetType()
164 {
165   SMESHDS_GroupBase* aGroupDS = GetGroupDS();
166   if (aGroupDS) {
167     SMDSAbs_ElementType aSMDSType = aGroupDS->GetType();
168     SMESH::ElementType aType;
169     switch (aSMDSType) {
170     case SMDSAbs_Node:   aType = SMESH::NODE; break;
171     case SMDSAbs_Edge:   aType = SMESH::EDGE; break;
172     case SMDSAbs_Face:   aType = SMESH::FACE; break;
173     case SMDSAbs_Volume: aType = SMESH::VOLUME; break;
174     default:             aType = SMESH::ALL; break;
175     }
176     return aType;
177   }
178   MESSAGE("get type of a vague group");
179   return SMESH::ALL;
180 }
181
182
183 //=============================================================================
184 /*!
185  *  
186  */
187 //=============================================================================
188
189 CORBA::Long SMESH_GroupBase_i::Size()
190 {
191   SMESHDS_GroupBase* aGroupDS = GetGroupDS();
192   if (aGroupDS)
193     return aGroupDS->Extent();
194   MESSAGE("get size of a vague group");
195   return 0;
196 }
197
198 //=============================================================================
199 /*!
200  *  
201  */
202 //=============================================================================
203
204 CORBA::Boolean SMESH_GroupBase_i::IsEmpty()
205 {
206   SMESHDS_GroupBase* aGroupDS = GetGroupDS();
207   if (aGroupDS)
208     return aGroupDS->IsEmpty();
209   MESSAGE("checking IsEmpty of a vague group");
210   return true;
211 }
212
213 //=============================================================================
214 /*!
215  *  
216  */
217 //=============================================================================
218
219 void SMESH_Group_i::Clear()
220 {
221   // Update Python script
222   TPythonDump() << _this() << ".Clear()";
223
224   // Clear the group
225   SMESHDS_Group* aGroupDS = dynamic_cast<SMESHDS_Group*>( GetGroupDS() );
226   if (aGroupDS) {
227     aGroupDS->Clear();
228     return;
229   }
230   MESSAGE("attempt to clear a vague group");
231 }
232
233 //=============================================================================
234 /*!
235  *  
236  */
237 //=============================================================================
238
239 CORBA::Boolean SMESH_GroupBase_i::Contains( CORBA::Long theID )
240 {
241   SMESHDS_GroupBase* aGroupDS = GetGroupDS();
242   if (aGroupDS)
243     return aGroupDS->Contains(theID);
244   MESSAGE("attempt to check contents of a vague group");
245   return false;
246 }
247
248 //=============================================================================
249 /*!
250  *  
251  */
252 //=============================================================================
253
254 CORBA::Long SMESH_Group_i::Add( const SMESH::long_array& theIDs )
255 {
256   // Update Python script
257   TPythonDump() << "nbAdd = " << _this() << ".Add( " << theIDs << " )";
258
259   // Add elements to the group
260   SMESHDS_Group* aGroupDS = dynamic_cast<SMESHDS_Group*>( GetGroupDS() );
261   if (aGroupDS) {
262     int nbAdd = 0;
263     for (int i = 0; i < theIDs.length(); i++) {
264       int anID = (int) theIDs[i];
265       if (aGroupDS->Add(anID))
266         nbAdd++;
267     }
268     return nbAdd;
269   }
270   MESSAGE("attempt to add elements to a vague group");
271   return 0;
272 }
273
274 //=============================================================================
275 /*!
276  *  
277  */
278 //=============================================================================
279
280 CORBA::Long SMESH_Group_i::Remove( const SMESH::long_array& theIDs )
281 {
282   // Update Python script
283   TPythonDump() << "nbDel = " << _this() << ".Remove( " << theIDs << " )";
284
285   // Remove elements from the group
286   SMESHDS_Group* aGroupDS = dynamic_cast<SMESHDS_Group*>( GetGroupDS() );
287   if (aGroupDS) {
288     int nbDel = 0;
289     for (int i = 0; i < theIDs.length(); i++) {
290       int anID = (int) theIDs[i];
291       if (aGroupDS->Remove(anID))
292         nbDel++;
293     }
294     return nbDel;
295   }
296   MESSAGE("attempt to remove elements from a vague group");
297   return 0;
298 }
299
300 //=============================================================================
301 /*!
302  *  
303  */
304 //=============================================================================
305
306 typedef bool (SMESHDS_Group::*TFunChangeGroup)(const int);
307
308 CORBA::Long 
309 ChangeByPredicate( SMESH::Predicate_i* thePredicate,
310                    SMESHDS_GroupBase* theGroupBase,
311                    TFunChangeGroup theFun)
312 {
313   CORBA::Long aNb = 0;
314   if(SMESHDS_Group* aGroupDS = dynamic_cast<SMESHDS_Group*>(theGroupBase)){
315     SMESH::Controls::Filter::TIdSequence aSequence;
316     const SMDS_Mesh* aMesh = theGroupBase->GetMesh();
317     SMESH::Filter_i::GetElementsId(thePredicate,aMesh,aSequence);
318     
319     CORBA::Long i = 0, iEnd = aSequence.size();
320     for(; i < iEnd; i++)
321       if((aGroupDS->*theFun)(aSequence[i]))
322         aNb++;
323     return aNb;
324   }
325   return aNb;
326 }
327
328 CORBA::Long 
329 SMESH_Group_i::
330 AddByPredicate( SMESH::Predicate_ptr thePredicate )
331 {
332   if(SMESH::Predicate_i* aPredicate = SMESH::GetPredicate(thePredicate)){
333     TPythonDump()<<_this()<<".AddByPredicate("<<aPredicate<<")";
334     return ChangeByPredicate(aPredicate,GetGroupDS(),&SMESHDS_Group::Add);
335   }
336   return 0;
337 }
338
339 CORBA::Long 
340 SMESH_Group_i::
341 RemoveByPredicate( SMESH::Predicate_ptr thePredicate )
342 {
343   if(SMESH::Predicate_i* aPredicate = SMESH::GetPredicate(thePredicate)){
344     TPythonDump()<<_this()<<".RemoveByPredicate("<<aPredicate<<")";
345     return ChangeByPredicate(aPredicate,GetGroupDS(),&SMESHDS_Group::Remove);
346   }
347   return 0;
348 }
349
350 //=============================================================================
351 /*!
352  *  
353  */
354 //=============================================================================
355
356 CORBA::Long SMESH_GroupBase_i::GetID( CORBA::Long theIndex )
357 {
358   SMESHDS_GroupBase* aGroupDS = GetGroupDS();
359   if (aGroupDS)
360     return aGroupDS->GetID(theIndex);
361   MESSAGE("attempt to iterate on a vague group");
362   return -1;
363 }
364
365 //=============================================================================
366 /*!
367  *  
368  */
369 //=============================================================================
370
371 SMESH::long_array* SMESH_GroupBase_i::GetListOfID()
372 {
373   SMESH::long_array_var aRes = new SMESH::long_array();
374   SMESHDS_GroupBase* aGroupDS = GetGroupDS();
375   if (aGroupDS) {
376     int aSize = aGroupDS->Extent();
377     aRes->length(aSize);
378     for (int i = 0; i < aSize; i++)
379       aRes[i] = aGroupDS->GetID(i+1);
380     return aRes._retn();
381   }
382   MESSAGE("get list of IDs of a vague group");
383   return aRes._retn();
384 }
385
386 //=============================================================================
387 /*!
388  *  
389  */
390 //=============================================================================
391 SMESH::SMESH_Mesh_ptr SMESH_GroupBase_i::GetMesh()
392 {
393   SMESH::SMESH_Mesh_var aMesh;
394   if ( myMeshServant )
395     aMesh = SMESH::SMESH_Mesh::_narrow( myMeshServant->_this() );
396   return aMesh._retn();
397 }
398
399 //=============================================================================
400 /*!
401  *  
402  */
403 //=============================================================================
404 SMESH::long_array* SMESH_GroupBase_i::GetIDs()
405 {
406   SMESH::long_array_var aResult = GetListOfID();
407   return aResult._retn();
408 }
409
410 //=======================================================================
411 //function : GetShape
412 //purpose  : 
413 //=======================================================================
414
415 GEOM::GEOM_Object_ptr SMESH_GroupOnGeom_i::GetShape()
416 {
417   GEOM::GEOM_Object_var aGeomObj;
418   SMESHDS_GroupOnGeom* aGroupDS = dynamic_cast<SMESHDS_GroupOnGeom*>( GetGroupDS() );
419   if ( aGroupDS ) {
420     SMESH_Gen_i* aGen = GetMeshServant()->GetGen();
421     aGeomObj = aGen->ShapeToGeomObject( aGroupDS->GetShape() );
422   }
423   return aGeomObj._retn();
424 }
425
426 //=============================================================================
427 /*!
428  *
429  */
430 //=============================================================================
431 SALOMEDS::Color SMESH_GroupBase_i::GetColor()
432 {
433   SMESHDS_GroupBase* aGroupDS = GetGroupDS();
434   if (aGroupDS)
435   {
436     Quantity_Color aQColor = aGroupDS->GetColor();
437     SALOMEDS::Color aColor;
438     aColor.R = aQColor.Red();
439     aColor.G = aQColor.Green();
440     aColor.B = aQColor.Blue();
441
442     return aColor;
443   }
444   MESSAGE("get color of a group");
445   return SALOMEDS::Color();
446 }
447
448 //=============================================================================
449 /*!
450  *
451  */
452 //=============================================================================
453 void SMESH_GroupBase_i::SetColor(const SALOMEDS::Color& color)
454 {
455   SMESHDS_GroupBase* aGroupDS = GetGroupDS();
456   if (aGroupDS)
457   {
458     Quantity_Color aQColor( color.R, color.G, color.B, Quantity_TOC_RGB );
459     return aGroupDS->SetColor(aQColor);
460   }
461   MESSAGE("set color of a group");
462   return ;
463 }
464
465 //=============================================================================
466 /*!
467  *
468  */
469 //=============================================================================
470 CORBA::Long SMESH_GroupBase_i::GetColorNumber()
471 {
472   SMESHDS_GroupBase* aGroupDS = GetGroupDS();
473   if (aGroupDS)
474     return aGroupDS->GetColorGroup();
475   MESSAGE("get color number of a group");
476   return 0;
477 }
478
479 //=============================================================================
480 /*!
481  *
482  */
483 //=============================================================================
484 void SMESH_GroupBase_i::SetColorNumber(CORBA::Long color)
485 {
486   SMESHDS_GroupBase* aGroupDS = GetGroupDS();
487   if (aGroupDS)
488     return aGroupDS->SetColorGroup(color);
489   MESSAGE("set color number of a group");
490   return ;
491 }