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