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