Salome HOME
Merge branch V7_3_1_BR
[modules/smesh.git] / src / SMESH_I / SMESH_Mesh_i.hxx
1 // Copyright (C) 2007-2014  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   : SMESH_Mesh_i.hxx
23 //  Author : Paul RASCLE, EDF
24 //  Module : SMESH
25
26 #ifndef _SMESH_MESH_I_HXX_
27 #define _SMESH_MESH_I_HXX_
28
29 #include "SMESH.hxx"
30
31 #include "SMESH_Hypothesis.hxx"
32 #include "SMESH_Mesh.hxx"
33 #include "SMESH_subMesh.hxx"
34
35 #include <SALOME_GenericObj_i.hh>
36 #include <SALOMEconfig.h>
37 #include CORBA_SERVER_HEADER(SMESH_Gen)
38 #include CORBA_SERVER_HEADER(SMESH_Mesh)
39 #include CORBA_SERVER_HEADER(SMESH_Group)
40 #include CORBA_SERVER_HEADER(SMESH_Hypothesis)
41 #include CORBA_CLIENT_HEADER(GEOM_Gen)
42
43 #include <map>
44
45 class SMESH_Gen_i;
46 class SMESH_GroupBase_i;
47 class SMESH_subMesh_i;
48 class SMESH_PreMeshInfo;
49 class SMESH_MeshEditor_i;
50 class DriverMED_W_Field;
51 class SMESHDS_Mesh;
52
53 class SMESH_I_EXPORT SMESH_Mesh_i:
54   public virtual POA_SMESH::SMESH_Mesh,
55   public virtual SALOME::GenericObj_i
56 {
57   SMESH_Mesh_i();
58   SMESH_Mesh_i(const SMESH_Mesh_i&);
59 public:
60   SMESH_Mesh_i( PortableServer::POA_ptr thePOA,
61                 SMESH_Gen_i*            myGen_i,
62                 CORBA::Long             studyId );
63
64   virtual ~SMESH_Mesh_i();
65
66   // --- CORBA
67
68   void SetShape( GEOM::GEOM_Object_ptr theShapeObject )
69     throw (SALOME::SALOME_Exception);
70
71   CORBA::Boolean HasShapeToMesh()
72     throw (SALOME::SALOME_Exception);
73
74   GEOM::GEOM_Object_ptr GetShapeToMesh()
75     throw (SALOME::SALOME_Exception);
76
77   CORBA::Boolean IsLoaded()
78     throw (SALOME::SALOME_Exception);
79
80   void Load()
81     throw (SALOME::SALOME_Exception);
82
83   void Clear()
84     throw (SALOME::SALOME_Exception);
85
86   void ClearSubMesh(CORBA::Long ShapeID)
87     throw (SALOME::SALOME_Exception);
88
89   SMESH::Hypothesis_Status AddHypothesis(GEOM::GEOM_Object_ptr aSubShapeObject,
90                                          SMESH::SMESH_Hypothesis_ptr anHyp)
91     throw (SALOME::SALOME_Exception);
92
93   SMESH::Hypothesis_Status RemoveHypothesis(GEOM::GEOM_Object_ptr aSubShapeObject,
94                                             SMESH::SMESH_Hypothesis_ptr anHyp)
95     throw (SALOME::SALOME_Exception);
96
97   SMESH::ListOfHypothesis* GetHypothesisList(GEOM::GEOM_Object_ptr aSubShapeObject)
98     throw (SALOME::SALOME_Exception);
99
100   SMESH::submesh_array* GetSubMeshes()
101     throw (SALOME::SALOME_Exception);
102
103   SMESH::SMESH_subMesh_ptr GetSubMesh(GEOM::GEOM_Object_ptr aSubShapeObject, const char* theName)
104     throw (SALOME::SALOME_Exception);
105
106   void RemoveSubMesh( SMESH::SMESH_subMesh_ptr theSubMesh )
107     throw (SALOME::SALOME_Exception);
108
109   SMESH::SMESH_Group_ptr CreateGroup( SMESH::ElementType theElemType, const char* theName )
110     throw (SALOME::SALOME_Exception);
111
112   SMESH::SMESH_GroupOnGeom_ptr CreateGroupFromGEOM(SMESH::ElementType    theElemType,
113                                                    const char*           theName,
114                                                    GEOM::GEOM_Object_ptr theGeomObj )
115     throw (SALOME::SALOME_Exception);
116
117   SMESH::SMESH_GroupOnFilter_ptr CreateGroupFromFilter(SMESH::ElementType theElemType,
118                                                        const char*        theName,
119                                                        SMESH::Filter_ptr  theFilter )
120     throw (SALOME::SALOME_Exception);
121
122   void RemoveGroup( SMESH::SMESH_GroupBase_ptr theGroup )
123     throw (SALOME::SALOME_Exception);
124
125   void RemoveGroupWithContents( SMESH::SMESH_GroupBase_ptr theGroup )
126     throw (SALOME::SALOME_Exception);
127
128   SMESH::ListOfGroups* GetGroups()
129     throw (SALOME::SALOME_Exception);
130
131   CORBA::Long NbGroups()
132     throw (SALOME::SALOME_Exception);
133
134   SMESH::SMESH_Group_ptr UnionGroups( SMESH::SMESH_GroupBase_ptr theGroup1,
135                                       SMESH::SMESH_GroupBase_ptr theGroup2,
136                                       const char* theName )
137     throw (SALOME::SALOME_Exception);
138
139   SMESH::SMESH_Group_ptr UnionListOfGroups( const SMESH::ListOfGroups& theGroups,
140                                             const char* theName)
141     throw (SALOME::SALOME_Exception);
142
143   SMESH::SMESH_Group_ptr IntersectGroups( SMESH::SMESH_GroupBase_ptr theGroup1,
144                                           SMESH::SMESH_GroupBase_ptr theGroup2,
145                                           const char* theName )
146     throw (SALOME::SALOME_Exception);
147
148   SMESH::SMESH_Group_ptr IntersectListOfGroups( const SMESH::ListOfGroups&  theGroups,
149                                                 const char* theName )
150     throw (SALOME::SALOME_Exception);
151
152   SMESH::SMESH_Group_ptr CutGroups( SMESH::SMESH_GroupBase_ptr theGroup1,
153                                     SMESH::SMESH_GroupBase_ptr theGroup2,
154                                     const char* theName )
155     throw (SALOME::SALOME_Exception);
156
157   SMESH::SMESH_Group_ptr CutListOfGroups( const SMESH::ListOfGroups& theMainGroups,
158                                           const SMESH::ListOfGroups& theToolGroups,
159                                           const char* theName )
160     throw (SALOME::SALOME_Exception);
161
162   SMESH::SMESH_Group_ptr CreateDimGroup( const SMESH::ListOfGroups& theGroups,
163                                          SMESH::ElementType theElemType,
164                                          const char* theName )
165     throw (SALOME::SALOME_Exception);
166
167
168   SMESH::SMESH_Group_ptr ConvertToStandalone( SMESH::SMESH_GroupBase_ptr theGroupOn )
169     throw (SALOME::SALOME_Exception);
170
171   SMESH::log_array* GetLog(CORBA::Boolean clearAfterGet)
172     throw (SALOME::SALOME_Exception);
173
174   SMESH::SMESH_MeshEditor_ptr GetMeshEditor() throw (SALOME::SALOME_Exception);
175
176   SMESH::SMESH_MeshEditor_ptr GetMeshEditPreviewer() throw (SALOME::SALOME_Exception);
177
178   CORBA::Boolean HasModificationsToDiscard() throw (SALOME::SALOME_Exception);
179
180   void ClearLog() throw (SALOME::SALOME_Exception);
181
182   CORBA::Long GetId() throw (SALOME::SALOME_Exception);
183
184   CORBA::Long GetStudyId() throw (SALOME::SALOME_Exception);
185
186   // --- C++ interface
187
188   void SetImpl(::SMESH_Mesh* impl);
189   ::SMESH_Mesh& GetImpl();         // :: force no namespace here
190
191   SMESH_Gen_i* GetGen() { return _gen_i; }
192
193   int ImportUNVFile( const char* theFileName )
194     throw (SALOME::SALOME_Exception);
195
196   int ImportSTLFile( const char* theFileName )
197     throw (SALOME::SALOME_Exception);
198
199   SMESH::ComputeError* ImportGMFFile( const char* theFileName,
200                                       bool        theMakeRequiredGroups)
201     throw (SALOME::SALOME_Exception);
202
203   /*!
204    * consult DriverMED_R_SMESHDS_Mesh::ReadStatus for returned value
205    */
206   SMESH::DriverMED_ReadStatus ImportMEDFile( const char* theFileName, const char* theMeshName )
207     throw (SALOME::SALOME_Exception);
208
209   SMESH::DriverMED_ReadStatus ImportCGNSFile( const char*  theFileName,
210                                               const int    theMeshIndex,
211                                               std::string& theMeshName)
212     throw (SALOME::SALOME_Exception);
213
214   /*!
215    *  Auto color
216    */
217   void SetAutoColor(CORBA::Boolean theAutoColor)
218     throw (SALOME::SALOME_Exception);
219
220   CORBA::Boolean GetAutoColor()
221     throw (SALOME::SALOME_Exception);
222
223   /*! Check group names for duplications.
224    *  Consider maximum group name length stored in MED file.
225    */
226   CORBA::Boolean HasDuplicatedGroupNamesMED();
227   /*!
228    * Return string representation of a MED file version comprising nbDigits
229    */
230   char* GetVersionString(SMESH::MED_VERSION version, CORBA::Short nbDigits);
231
232   void ExportToMEDX( const char*        file,
233                      CORBA::Boolean     auto_groups,
234                      SMESH::MED_VERSION version,
235                      CORBA::Boolean     overwrite,
236                      CORBA::Boolean     autoDimension=true) throw (SALOME::SALOME_Exception);
237   void ExportToMED ( const char*        file,
238                      CORBA::Boolean     auto_groups,
239                      SMESH::MED_VERSION version ) throw (SALOME::SALOME_Exception);
240   void ExportMED   ( const char*        file,
241                      CORBA::Boolean     auto_groups ) throw (SALOME::SALOME_Exception);
242
243   void ExportSAUV( const char* file, CORBA::Boolean auto_groups ) throw (SALOME::SALOME_Exception);
244
245   void ExportDAT( const char* file ) throw (SALOME::SALOME_Exception);
246   void ExportUNV( const char* file ) throw (SALOME::SALOME_Exception);
247   void ExportSTL( const char* file, bool isascii ) throw (SALOME::SALOME_Exception);
248   void ExportCGNS(SMESH::SMESH_IDSource_ptr meshPart,
249                   const char*               file,
250                   CORBA::Boolean            overwrite) throw (SALOME::SALOME_Exception);
251   void ExportGMF(SMESH::SMESH_IDSource_ptr meshPart,
252                  const char*               file,
253                  CORBA::Boolean            withRequiredGroups) throw (SALOME::SALOME_Exception);
254
255   void ExportPartToMED(SMESH::SMESH_IDSource_ptr meshPart,
256                        const char*               file,
257                        CORBA::Boolean            auto_groups,
258                        SMESH::MED_VERSION        version,
259                        CORBA::Boolean            overwrite,
260                        CORBA::Boolean            autoDim,
261                        const GEOM::ListOfFields& fields,
262                        const char*               geomAssocFields) throw (SALOME::SALOME_Exception);
263   void ExportPartToDAT(SMESH::SMESH_IDSource_ptr meshPart,
264                        const char*               file) throw (SALOME::SALOME_Exception);
265   void ExportPartToUNV(SMESH::SMESH_IDSource_ptr meshPart,
266                        const char*               file) throw (SALOME::SALOME_Exception);
267   void ExportPartToSTL(SMESH::SMESH_IDSource_ptr meshPart,
268                        const char*               file,
269                        CORBA::Boolean            isascii) throw (SALOME::SALOME_Exception);
270
271   CORBA::Double GetComputeProgress();
272
273   CORBA::Long NbNodes()
274     throw (SALOME::SALOME_Exception);
275
276   CORBA::Long NbElements()
277     throw (SALOME::SALOME_Exception);
278
279   CORBA::Long Nb0DElements()
280     throw (SALOME::SALOME_Exception);
281
282   CORBA::Long NbBalls()
283     throw (SALOME::SALOME_Exception);
284
285   CORBA::Long NbEdges()
286     throw (SALOME::SALOME_Exception);
287
288   CORBA::Long NbEdgesOfOrder(SMESH::ElementOrder order)
289     throw (SALOME::SALOME_Exception);
290
291   CORBA::Long NbFaces()
292     throw (SALOME::SALOME_Exception);
293
294   CORBA::Long NbFacesOfOrder(SMESH::ElementOrder order)
295     throw (SALOME::SALOME_Exception);
296
297   CORBA::Long NbTriangles()
298     throw (SALOME::SALOME_Exception);
299
300   CORBA::Long NbTrianglesOfOrder(SMESH::ElementOrder order)
301     throw (SALOME::SALOME_Exception);
302
303   CORBA::Long NbBiQuadTriangles()
304     throw (SALOME::SALOME_Exception);
305
306   CORBA::Long NbQuadrangles()
307     throw (SALOME::SALOME_Exception);
308
309   CORBA::Long NbQuadranglesOfOrder(SMESH::ElementOrder order)
310     throw (SALOME::SALOME_Exception);
311
312   CORBA::Long NbBiQuadQuadrangles()
313     throw (SALOME::SALOME_Exception);
314
315   CORBA::Long NbPolygons()
316     throw (SALOME::SALOME_Exception);
317
318   CORBA::Long NbVolumes()
319     throw (SALOME::SALOME_Exception);
320
321   CORBA::Long NbVolumesOfOrder(SMESH::ElementOrder order)
322     throw (SALOME::SALOME_Exception);
323
324   CORBA::Long NbTetras()
325     throw (SALOME::SALOME_Exception);
326
327   CORBA::Long NbTetrasOfOrder(SMESH::ElementOrder order)
328     throw (SALOME::SALOME_Exception);
329
330   CORBA::Long NbHexas()
331     throw (SALOME::SALOME_Exception);
332
333   CORBA::Long NbHexasOfOrder(SMESH::ElementOrder order)
334     throw (SALOME::SALOME_Exception);
335
336   CORBA::Long NbTriQuadraticHexas()
337     throw (SALOME::SALOME_Exception);
338
339   CORBA::Long NbPyramids()
340     throw (SALOME::SALOME_Exception);
341
342   CORBA::Long NbPyramidsOfOrder(SMESH::ElementOrder order)
343     throw (SALOME::SALOME_Exception);
344
345   CORBA::Long NbPrisms()
346     throw (SALOME::SALOME_Exception);
347
348   CORBA::Long NbPrismsOfOrder(SMESH::ElementOrder order)
349     throw (SALOME::SALOME_Exception);
350
351   CORBA::Long NbHexagonalPrisms()
352     throw (SALOME::SALOME_Exception);
353
354   CORBA::Long NbPolyhedrons()
355     throw (SALOME::SALOME_Exception);
356
357   CORBA::Long NbSubMesh()
358     throw (SALOME::SALOME_Exception);
359
360   SMESH::long_array* GetElementsId()
361     throw (SALOME::SALOME_Exception);
362
363   SMESH::long_array* GetElementsByType( SMESH::ElementType theElemType )
364     throw (SALOME::SALOME_Exception);
365
366   SMESH::long_array* GetNodesId()
367     throw (SALOME::SALOME_Exception);
368
369   SMESH::ElementType GetElementType( CORBA::Long id, bool iselem )
370     throw (SALOME::SALOME_Exception);
371
372   SMESH::EntityType GetElementGeomType( CORBA::Long id )
373     throw (SALOME::SALOME_Exception);
374
375   SMESH::GeometryType GetElementShape( CORBA::Long id )
376     throw (SALOME::SALOME_Exception);
377
378   /*!
379    * Returns ID of elements for given submesh
380    */
381   SMESH::long_array* GetSubMeshElementsId(CORBA::Long ShapeID)
382     throw (SALOME::SALOME_Exception);
383
384   /*!
385    * Returns ID of nodes for given submesh
386    * If param all==true - returns all nodes, else -
387    * returns only nodes on shapes.
388    */
389   SMESH::long_array* GetSubMeshNodesId(CORBA::Long ShapeID, CORBA::Boolean all)
390     throw (SALOME::SALOME_Exception);
391
392   /*!
393    * Returns type of elements for given submesh
394    */
395   SMESH::ElementType GetSubMeshElementType(CORBA::Long ShapeID)
396     throw (SALOME::SALOME_Exception);
397
398   char* Dump();
399
400   // Create groups of elements preventing computation of a sub-shape
401   SMESH::ListOfGroups* MakeGroupsOfBadInputElements( int         theSubShapeID,
402                                                      const char* theGroupName)
403     throw (SALOME::SALOME_Exception);
404
405   // Internal methods not available through CORBA
406   // They are called by corresponding interface methods
407   SMESH_Hypothesis::Hypothesis_Status addHypothesis(GEOM::GEOM_Object_ptr aSubShapeObject,
408                                                     SMESH::SMESH_Hypothesis_ptr anHyp);
409
410   SMESH_Hypothesis::Hypothesis_Status removeHypothesis(GEOM::GEOM_Object_ptr aSubShapeObject,
411                                                        SMESH::SMESH_Hypothesis_ptr anHyp);
412
413   static SMESH::Hypothesis_Status
414   ConvertHypothesisStatus (SMESH_Hypothesis::Hypothesis_Status theStatus);
415
416   static void PrepareForWriting (const char* file, bool overwrite = true);
417
418   //int importMEDFile( const char* theFileName, const char* theMeshName );
419
420   SMESH::SMESH_subMesh_ptr createSubMesh( GEOM::GEOM_Object_ptr theSubShapeObject );
421
422   bool removeSubMesh(SMESH::SMESH_subMesh_ptr theSubMesh,
423                      GEOM::GEOM_Object_ptr theSubShapeObject );
424
425   SMESH::SMESH_GroupBase_ptr createGroup(SMESH::ElementType        theElemType,
426                                          const char*               theName,
427                                          const TopoDS_Shape&       theShape = TopoDS_Shape(),
428                                          const SMESH_PredicatePtr& thePred = SMESH_PredicatePtr());
429
430   void removeGroup( const int theId );
431
432   SMESH::SMESH_subMesh_ptr getSubMesh(int shapeID);
433   // return an existing subMesh object for the shapeID. shapeID == submeshID.
434
435   const std::map<int, SMESH::SMESH_GroupBase_ptr>& getGroups() { return _mapGroups; }
436   // return existing group objects
437
438   void onHypothesisModified();
439   // callback from _impl to forget not loaded mesh data (issue 0021208)
440
441   void checkMeshLoaded();
442
443   /*!
444    * \brief Update data if geometry changes
445    *
446    * Issue 0022501
447    */
448   void CheckGeomModif();
449   /*!
450    * \brief Update hypotheses assigned to geom groups if the latter change
451    *
452    * NPAL16168: "geometrical group edition from a submesh don't modifiy mesh computation"
453    */
454   void CheckGeomGroupModif();
455
456   CORBA::LongLong GetMeshPtr();
457
458   /*!
459    * \brief Assure that all groups are published
460    */
461   void CreateGroupServants();
462
463   /*!
464    * \brief Return groups cantained in _mapGroups by their IDs
465    */
466   SMESH::ListOfGroups* GetGroups(const std::list<int>& groupIDs) const;
467
468   /*!
469    * Get XYZ coordinates of node as list of double
470    * If there is not node for given ID - returns empty list
471    */
472   SMESH::double_array* GetNodeXYZ(CORBA::Long id);
473
474   /*!
475    * For given node returns list of IDs of inverse elements
476    * If there is not node for given ID - returns empty list
477    */
478   SMESH::long_array* GetNodeInverseElements(CORBA::Long id);
479
480   /*!
481    * \brief Return position of a node on shape
482    */
483   SMESH::NodePosition* GetNodePosition(CORBA::Long NodeID);
484
485   /*!
486    * \brief Return position of an element on shape
487    */
488   SMESH::ElementPosition GetElementPosition(CORBA::Long ElemID);
489
490   /*!
491    * If given element is node returns IDs of shape from position
492    * If there is not node for given ID - returns -1
493    */
494   CORBA::Long GetShapeID(CORBA::Long id);
495
496   /*!
497    * For given element returns ID of result shape after
498    * ::FindShape() from SMESH_MeshEditor
499    * If there is not element for given ID - returns -1
500    */
501   CORBA::Long GetShapeIDForElem(CORBA::Long id);
502
503   /*!
504    * Returns number of nodes for given element
505    * If there is not element for given ID - returns -1
506    */
507   CORBA::Long GetElemNbNodes(CORBA::Long id);
508
509   /*!
510    * Returns IDs of nodes of given element
511    */
512   SMESH::long_array* GetElemNodes(CORBA::Long id);
513
514   /*!
515    * Returns ID of node by given index for given element
516    * If there is not element for given ID - returns -1
517    * If there is not node for given index - returns -2
518    */
519   CORBA::Long GetElemNode(CORBA::Long id, CORBA::Long index);
520
521   /*!
522    * Returns true if given node is medium node
523    * in given quadratic element
524    */
525   CORBA::Boolean IsMediumNode(CORBA::Long ide, CORBA::Long idn);
526
527   /*!
528    * Returns true if given node is medium node
529    * in one of quadratic elements
530    */
531   CORBA::Boolean IsMediumNodeOfAnyElem(CORBA::Long idn,
532                                        SMESH::ElementType theElemType);
533
534   /*!
535    * Returns number of edges for given element
536    */
537   CORBA::Long ElemNbEdges(CORBA::Long id);
538
539   /*!
540    * Returns number of faces for given element
541    */
542   CORBA::Long ElemNbFaces(CORBA::Long id);
543   /*!
544    * Returns nodes of given face (counted from zero) for given element.
545    */
546   SMESH::long_array* GetElemFaceNodes(CORBA::Long elemId, CORBA::Short faceIndex);
547
548   /*!
549    * Returns three components of normal of given mesh face (or an empty array in KO case)
550    */
551   SMESH::double_array* GetFaceNormal(CORBA::Long faceId, CORBA::Boolean normalized);
552
553   /*!
554    * Returns an element based on all given nodes.
555    */
556   CORBA::Long FindElementByNodes(const SMESH::long_array& nodes);
557
558   /*!
559    * Returns true if given element is polygon
560    */
561   CORBA::Boolean IsPoly(CORBA::Long id);
562
563   /*!
564    * Returns true if given element is quadratic
565    */
566   CORBA::Boolean IsQuadratic(CORBA::Long id);
567
568   /*!
569    * Returns diameter of ball discrete element or zero in case of an invalid \a id
570    */
571   CORBA::Double GetBallDiameter(CORBA::Long id);
572
573   /*!
574    * Returns bary center for given element
575    */
576   SMESH::double_array* BaryCenter(CORBA::Long id);
577
578   /*!
579    * Returns information about imported MED file
580    */
581   virtual SMESH::MedFileInfo* GetMEDFileInfo();
582
583   /*!
584    * Sets list of notebook variables used for Mesh operations separated by ":" symbol
585    */
586   void SetParameters (const char* theParameters);
587
588   /*!
589    * Returns list of notebook variables used for Mesh operations separated by ":" symbol
590    */
591   char* GetParameters();
592
593   /*!
594    * Returns list of notebook variables used for last Mesh operation
595    */
596   SMESH::string_array* GetLastParameters();
597
598   /*!
599    * \brief Return \c true if a meshing order not yet set for a concurrent sub-mesh
600    */
601   CORBA::Boolean IsUnorderedSubMesh(CORBA::Long submeshID);
602   /*!
603    * \brief Return submesh objects list in meshing order
604    */
605   virtual SMESH::submesh_array_array* GetMeshOrder();
606   /*!
607    * \brief Set submesh object order
608    */
609   virtual ::CORBA::Boolean SetMeshOrder(const SMESH::submesh_array_array& theSubMeshArray);
610
611
612   /*!
613    * Collect statistic of mesh elements given by iterator
614    */
615   static void CollectMeshInfo(const SMDS_ElemIteratorPtr theItr,
616                               SMESH::long_array&         theInfo);
617   /*!
618    * \brief Return iterator on elements of given type in given object
619    */
620   static SMDS_ElemIteratorPtr GetElements(SMESH::SMESH_IDSource_ptr obj,
621                                           SMESH::ElementType        type);
622
623   // =========================
624   // SMESH_IDSource interface
625   // =========================
626
627   virtual SMESH::long_array* GetIDs();
628   /*!
629    * Returns number of mesh elements of each \a EntityType
630    * Result array of number of elements per \a EntityType
631    * Inherited from SMESH_IDSource
632    */
633   virtual SMESH::long_array* GetMeshInfo();
634   /*!
635    * Returns number of mesh elements of each \a ElementType
636    */
637   virtual SMESH::long_array* GetNbElementsByType();
638   /*!
639    * Returns types of elements it contains
640    */
641   virtual SMESH::array_of_ElementType* GetTypes();
642   /*!
643    * Returns self
644    */
645   virtual SMESH::SMESH_Mesh_ptr GetMesh();
646   /*!
647    * Returns false if GetMeshInfo() returns incorrect information that may
648    * happen if mesh data is not yet fully loaded from the file of study.
649    */
650   bool IsMeshInfoCorrect();
651
652   std::map<int, SMESH_subMesh_i*> _mapSubMesh_i; //NRI
653   std::map<int, ::SMESH_subMesh*> _mapSubMesh;   //NRI
654
655 private:
656   std::string prepareMeshNameAndGroups( const char* file, CORBA::Boolean overwrite );
657
658   /*!
659    * Check and correct names of mesh groups
660    */
661   void checkGroupNames();
662
663   /*
664    * Write GEOM fields to MED file
665    */
666   void exportMEDFields( DriverMED_W_Field &       writer,
667                         SMESHDS_Mesh*             meshDS,
668                         const GEOM::ListOfFields& fields,
669                         const char*               geomAssocFields);
670   /*!
671    * Convert submesh ids into submesh interfaces
672    */
673   void convertMeshOrder(const TListOfListOfInt&     theIdsOrder,
674                         SMESH::submesh_array_array& theSubMeshOrder,
675                         const bool                  theIsDump);
676
677   /*!
678    * \brief Finds concurrent sub-meshes
679    */
680   TListOfListOfInt findConcurrentSubMeshes();
681
682 private:
683
684   static int    _idGenerator;
685   ::SMESH_Mesh* _impl;        // :: force no namespace here
686   SMESH_Gen_i*  _gen_i;
687   int           _id;          // id given by creator (unique within the creator instance)
688   int           _studyId;
689   std::map<int, SMESH::SMESH_subMesh_ptr>    _mapSubMeshIor;
690   std::map<int, SMESH::SMESH_GroupBase_ptr>  _mapGroups;
691   std::map<int, SMESH::SMESH_Hypothesis_ptr> _mapHypo;
692   SMESH_MeshEditor_i*    _editor;
693   SMESH_MeshEditor_i*    _previewEditor;
694   SMESH::MedFileInfo_var _medFileInfo;
695   SMESH_PreMeshInfo*     _preMeshInfo; // mesh info before full loading from study file
696
697   SMESH_PreMeshInfo* & changePreMeshInfo() { return _preMeshInfo; }
698   friend class SMESH_PreMeshInfo;
699
700 private:
701
702   // Data used to track changes of GEOM groups
703   struct TGeomGroupData {
704     // keep study entry but not ior because GEOM_Object actually changes if
705     // number of items in a group varies (1) <-> (>1)
706     std::string       _groupEntry;
707     std::set<int>     _indices; // indices of group items within group's main shape
708     CORBA::Object_var _smeshObject; // SMESH object depending on GEOM group
709   };
710   std::list<TGeomGroupData> _geomGroupData;
711   int                       _mainShapeTick; // to track modifications of the meshed shape
712
713   /*!
714    * Remember GEOM group data
715    */
716   void addGeomGroupData(GEOM::GEOM_Object_ptr theGeomObj,
717                         CORBA::Object_ptr     theSmeshObj);
718   /*!
719    * Remove GEOM group data relating to removed smesh object
720    */
721   void removeGeomGroupData(CORBA::Object_ptr theSmeshObj);
722   /*!
723    * Return new group contents if it has been changed and update group data
724    */
725   TopoDS_Shape newGroupShape( TGeomGroupData & groupData);
726
727 };
728
729 #endif