Salome HOME
bos #24400 [CEA] Option in SALOME for not storing in med files the indices (number...
[modules/smesh.git] / src / DriverMED / DriverMED_W_SMESHDS_Mesh.h
1 // Copyright (C) 2007-2021  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
23 //  SMESH DriverMED : driver to read and write 'med' files
24 //  File   : DriverMED_W_SMESHDS_Mesh.h
25 //  Module : SMESH
26 //
27 #ifndef _INCLUDE_DRIVERMED_W_SMESHDS_MESH
28 #define _INCLUDE_DRIVERMED_W_SMESHDS_MESH
29
30 #include "SMESH_DriverMED.hxx"
31
32 #include "Driver_SMESHDS_Mesh.h"
33 //#include "MED_Common.hxx"
34
35 #include <string>
36 #include <list>
37 #include <map>
38 #include <vector>
39
40 class SMESHDS_Mesh;
41 class SMESHDS_GroupBase;
42 class SMESHDS_SubMesh;
43 class SMDS_MeshElement;
44
45 /*!
46  * \brief Write a mesh to a MED file
47  */
48 class MESHDRIVERMED_EXPORT DriverMED_W_SMESHDS_Mesh: public Driver_SMESHDS_Mesh
49 {
50   public:
51
52   DriverMED_W_SMESHDS_Mesh();
53
54   void SetFile(const std::string& theFileName, int theVersion=-1);
55   void SetAutoDimension(bool toFindOutDimension) { myAutoDimension = toFindOutDimension; }
56   void SetZTolerance(double tol) { myZTolerance = tol; }
57   void SetSaveNumbers(bool toSave) { mySaveNumbers = toSave; }
58
59   static std::string GetVersionString(int theMinor, int theNbDigits=2);
60
61   void AddGroupOfNodes();
62   void AddGroupOfEdges();
63   void AddGroupOfFaces();
64   void AddGroupOfVolumes();
65   void AddGroupOf0DElems();
66   void AddGroupOfBalls();
67   void AddAllToGroup();
68
69   /*! functions to prepare adding one mesh
70    */
71   void AddGroup(SMESHDS_GroupBase * theGroup);
72   void AddAllSubMeshes();
73   void AddSubMesh(SMESHDS_SubMesh* theSubMesh, int theID);
74   void AddODOnVertices(bool toAdd) { myAddODOnVertices = toAdd; }
75
76   static bool getNodesOfMissing0DOnVert(SMESHDS_Mesh*                         mesh,
77                                         std::vector<const SMDS_MeshElement*>& nodes);
78
79   /*! add one mesh
80    */
81   Status Perform() override;
82
83   template<class LowLevelWriter>
84   Driver_Mesh::Status PerformInternal(LowLevelWriter myMed);
85
86  private:
87
88   std::list<SMESHDS_GroupBase*> myGroups;
89   bool                          myAllSubMeshes;
90   std::vector<SMESHDS_SubMesh*> mySubMeshes;
91   bool                          myDoGroupOfNodes;
92   bool                          myDoGroupOfEdges;
93   bool                          myDoGroupOfFaces;
94   bool                          myDoGroupOfVolumes;
95   bool                          myDoGroupOf0DElems;
96   bool                          myDoGroupOfBalls;
97   bool                          myAutoDimension;
98   bool                          myAddODOnVertices;
99   bool                          myDoAllInGroups;
100   int                           myVersion;
101   double                        myZTolerance;
102   bool                          mySaveNumbers;
103 };
104
105 #include "MEDCouplingMemArray.hxx"
106
107 /*!
108  * \brief Write a mesh to a MEDCoupling DS
109  */
110 class MESHDRIVERMED_EXPORT DriverMED_W_SMESHDS_Mesh_Mem : public DriverMED_W_SMESHDS_Mesh
111 {
112 public:
113   Status Perform() override;
114   MEDCoupling::MCAuto<MEDCoupling::DataArrayByte> getData() { return _data; }
115 private:
116   MEDCoupling::MCAuto<MEDCoupling::DataArrayByte> _data;
117 };
118
119 #endif