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