1 // Copyright (C) 2007-2016 CEA/DEN, EDF R&D
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 // Lesser General Public License for more details.
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 // Author : Anthony Geay (CEA/DEN)
21 #ifndef __MEDFILEMESHLL_HXX__
22 #define __MEDFILEMESHLL_HXX__
24 #include "MEDFileBasis.hxx"
25 #include "MEDFileMeshElt.hxx"
27 #include "MEDCouplingUMesh.hxx"
28 #include "MEDCouplingCMesh.hxx"
29 #include "MEDCoupling1GTUMesh.hxx"
30 #include "MEDCouplingPartDefinition.hxx"
31 #include "MEDCouplingCurveLinearMesh.hxx"
34 #include "InterpKernelAutoPtr.hxx"
42 class MEDFileMeshReadSelector;
44 class MeshOrStructMeshCls
47 MeshOrStructMeshCls(int mid):_mid(mid) { }
49 virtual ~MeshOrStructMeshCls() {}
50 int getID() const { return _mid; }
51 virtual std::vector<std::string> getAxisInfoOnMesh(med_idt fid, const std::string& mName, MEDCoupling::MEDCouplingMeshType& meshType, MEDCoupling::MEDCouplingAxisType& axType, int& nstep, int& Mdim, MEDFileString& description, MEDFileString& dtunit, MEDFileString& univName) const = 0;
52 virtual double checkMeshTimeStep(med_idt fid, const std::string& mName, int nstep, int dt, int it) const = 0;
57 class MeshCls : public MeshOrStructMeshCls
60 MeshCls(int mid):MeshOrStructMeshCls(mid) { }
61 std::vector<std::string> getAxisInfoOnMesh(med_idt fid, const std::string& mName, MEDCoupling::MEDCouplingMeshType& meshType, MEDCoupling::MEDCouplingAxisType& axType, int& nstep, int& Mdim, MEDFileString& description, MEDFileString& dtunit, MEDFileString& univName) const;
62 double checkMeshTimeStep(med_idt fid, const std::string& mName, int nstep, int dt, int it) const;
65 class StructMeshCls : public MeshOrStructMeshCls
68 StructMeshCls(int mid):MeshOrStructMeshCls(mid) { }
69 std::vector<std::string> getAxisInfoOnMesh(med_idt fid, const std::string& mName, MEDCoupling::MEDCouplingMeshType& meshType, MEDCoupling::MEDCouplingAxisType& axType, int& nstep, int& Mdim, MEDFileString& description, MEDFileString& dtunit, MEDFileString& univName) const;
70 double checkMeshTimeStep(med_idt fid, const std::string& mName, int nstep, int dt, int it) const;
73 class MEDFileMeshL2 : public RefCountObject
77 std::size_t getHeapMemorySizeWithoutChildren() const;
78 std::vector<const BigMemoryObject *> getDirectChildrenWithNull() const;
79 const char *getName() const { return _name.getReprForWrite(); }
80 const char *getDescription() const { return _description.getReprForWrite(); }
81 const char *getUnivName() const { return _univ_name.getReprForWrite(); }
82 const char *getTimeUnit() const { return _dt_unit.getReprForWrite(); }
83 int getIteration() const { return _iteration; }
84 int getOrder() const { return _order; }
85 double getTime() const { return _time; }
86 MCAuto<PartDefinition> getPartDefOfCoo() const { return _part_coords; }
87 std::vector<std::string> getAxisInfoOnMesh(med_idt fid, const MeshOrStructMeshCls *mId, const std::string& mName, MEDCoupling::MEDCouplingMeshType& meshType, MEDCoupling::MEDCouplingAxisType& axType, int& nstep, int& Mdim);
88 static INTERP_KERNEL::AutoCppPtr<MeshOrStructMeshCls> GetMeshIdFromName(med_idt fid, const std::string& mName, MEDCoupling::MEDCouplingMeshType& meshType, MEDCoupling::MEDCouplingAxisType& axType, int& dt, int& it, std::string& dtunit1);
89 static void ReadFamiliesAndGrps(med_idt fid, const std::string& mname, std::map<std::string,int>& fams, std::map<std::string, std::vector<std::string> >& grps, MEDFileMeshReadSelector *mrs);
90 static void WriteFamiliesAndGrps(med_idt fid, const std::string& mname, const std::map<std::string,int>& fams, const std::map<std::string, std::vector<std::string> >& grps, int tooLongStrPol);
91 static bool RenameFamiliesFromFileToMem(std::vector< std::string >& famNames);
92 static bool RenameFamiliesFromMemToFile(std::vector< std::string >& famNames);
93 static MEDCoupling::MEDCouplingAxisType TraduceAxisType(med_axis_type at);
94 static MEDCoupling::MEDCouplingAxisType TraduceAxisTypeStruct(med_grid_type gt);
95 static med_axis_type TraduceAxisTypeRev(MEDCoupling::MEDCouplingAxisType at);
96 static med_grid_type TraduceAxisTypeRevStruct(MEDCoupling::MEDCouplingAxisType at);
98 typedef bool (*RenameFamiliesPatternFunc)(std::vector< std::string >&);
99 static void RenameFamiliesPatternInternal(std::vector< std::pair<std::string,std::pair<int,std::vector<std::string> > > >& crudeFams, RenameFamiliesPatternFunc func);
100 static void RenameFamiliesFromFileToMemInternal(std::vector< std::pair<std::string,std::pair<int,std::vector<std::string> > > >& crudeFams);
101 static void RenameFamiliesFromMemToFileInternal(std::vector< std::pair<std::string,std::pair<int,std::vector<std::string> > > >& crudeFams);
103 static const char ZE_SEP_FOR_FAMILY_KILLERS[];
104 static int ZE_SEP2_FOR_FAMILY_KILLERS;
107 MEDFileString _description;
108 MEDFileString _univ_name;
109 MEDFileString _dt_unit;
113 MCAuto<PartDefinition> _part_coords;
116 class MEDFileUMeshL2 : public MEDFileMeshL2
120 std::vector<std::string> loadCommonPart(med_idt fid, const MeshOrStructMeshCls *mId, const std::string& mName, int dt, int it, int& Mdim);
121 void loadAll(med_idt fid, const MeshOrStructMeshCls *mId, const std::string& mName, int dt, int it, MEDFileMeshReadSelector *mrs);
122 void loadPart(med_idt fid, const MeshOrStructMeshCls *mId, const std::string& mName, const std::vector<INTERP_KERNEL::NormalizedCellType>& types, const std::vector<int>& slicPerTyp, int dt, int it, MEDFileMeshReadSelector *mrs);
123 void loadConnectivity(med_idt fid, int mdim, const std::string& mName, int dt, int it, MEDFileMeshReadSelector *mrs);
124 void loadPartOfConnectivity(med_idt fid, int mdim, const std::string& mName, const std::vector<INTERP_KERNEL::NormalizedCellType>& types, const std::vector<int>& slicPerTyp, int dt, int it, MEDFileMeshReadSelector *mrs);
125 void loadCoords(med_idt fid, const std::vector<std::string>& infosOnComp, const std::string& mName, int dt, int it);
126 void loadPartCoords(med_idt fid, const std::vector<std::string>& infosOnComp, const std::string& mName, int dt, int it, int nMin, int nMax);
127 int getNumberOfLevels() const { return _per_type_mesh.size(); }
128 bool emptyLev(int levId) const { return _per_type_mesh[levId].empty(); }
129 const std::vector< MCAuto<MEDFileUMeshPerType> >& getLev(int levId) const { return _per_type_mesh[levId]; }
130 bool isFamDefinedOnLev(int levId) const;
131 bool isNumDefinedOnLev(int levId) const;
132 bool isNamesDefinedOnLev(int levId) const;
133 MCAuto<DataArrayDouble> getCoords() const { return _coords; }
134 MCAuto<DataArrayInt> getCoordsFamily() const { return _fam_coords; }
135 MCAuto<DataArrayInt> getCoordsNum() const { return _num_coords; }
136 MCAuto<DataArrayInt> getCoordsGlobalNum() const { return _global_num_coords; }
137 MCAuto<DataArrayAsciiChar> getCoordsName() const { return _name_coords; }
138 static void WriteCoords(med_idt fid, const std::string& mname, int dt, int it, double time, const DataArrayDouble *coords, const DataArrayInt *famCoords, const DataArrayInt *numCoords, const DataArrayAsciiChar *nameCoords, const DataArrayInt *globalNumCoords);
142 std::vector< std::vector< MCAuto<MEDFileUMeshPerType> > > _per_type_mesh;
143 MCAuto<DataArrayDouble> _coords;
144 MCAuto<DataArrayInt> _fam_coords;
145 MCAuto<DataArrayInt> _num_coords;
146 MCAuto<DataArrayInt> _global_num_coords;
147 MCAuto<DataArrayAsciiChar> _name_coords;
150 class MEDFileStrMeshL2 : public MEDFileMeshL2
154 class MEDFileCMeshL2 : public MEDFileStrMeshL2
158 void loadAll(med_idt fid, const MeshOrStructMeshCls *mId, const std::string& mName, int dt, int it);
159 MEDCouplingCMesh *getMesh() { return _cmesh; }
160 MEDCoupling::MEDCouplingAxisType getAxisType() const { return _ax_type; }
162 static med_data_type GetDataTypeCorrespondingToSpaceId(int id);
164 MCAuto<MEDCouplingCMesh> _cmesh;
165 MEDCoupling::MEDCouplingAxisType _ax_type;
168 class MEDFileCLMeshL2 : public MEDFileStrMeshL2
172 void loadAll(med_idt fid, const MeshOrStructMeshCls *mId, const std::string& mName, int dt, int it);
173 MEDCouplingCurveLinearMesh *getMesh() { return _clmesh; }
175 MCAuto<MEDCouplingCurveLinearMesh> _clmesh;
179 class MEDFileUMeshSplitL1;
181 class MEDFileUMeshPermCompute : public BigMemoryObject
184 MEDFileUMeshPermCompute(const MEDFileUMeshSplitL1* st);
185 operator MEDCouplingUMesh *() const;
186 void operator=(MEDCouplingUMesh *m);
187 void updateTime() const;
188 std::vector<const BigMemoryObject *> getDirectChildrenWithNull() const;
189 std::size_t getHeapMemorySizeWithoutChildren() const;
191 const MEDFileUMeshSplitL1 *_st;
192 mutable std::size_t _mpt_time;
193 mutable std::size_t _num_time;
194 mutable MCAuto<MEDCouplingUMesh> _m;
197 class MEDFileUMeshAggregateCompute : public BigMemoryObject
200 MEDFileUMeshAggregateCompute();
201 void setName(const std::string& name);
202 void assignParts(const std::vector< const MEDCoupling1GTUMesh * >& mParts);
203 void assignDefParts(const std::vector<const PartDefinition *>& partDefs);
204 void assignUMesh(MEDCouplingUMesh *m);
205 MEDCouplingUMesh *getUmesh() const;
206 int getNumberOfCells() const;
207 std::vector<MEDCoupling1GTUMesh *> getParts() const;
208 std::vector<INTERP_KERNEL::NormalizedCellType> getGeoTypes() const;
209 int getNumberOfCellsWithType(INTERP_KERNEL::NormalizedCellType ct) const;
210 std::vector<MEDCoupling1GTUMesh *> retrievePartsWithoutComputation() const;
211 MEDCoupling1GTUMesh *retrievePartWithoutComputation(INTERP_KERNEL::NormalizedCellType gt) const;
212 void getStartStopOfGeoTypeWithoutComputation(INTERP_KERNEL::NormalizedCellType gt, int& start, int& stop) const;
213 void renumberNodesInConnWithoutComputation(const int *newNodeNumbersO2N);
214 bool isStoredSplitByType() const;
215 std::size_t getTimeOfThis() const;
216 std::size_t getHeapMemorySizeWithoutChildren() const;
217 std::vector<const BigMemoryObject *> getDirectChildrenWithNull() const;
218 MEDFileUMeshAggregateCompute deepCopy(DataArrayDouble *coords) const;
219 void shallowCpyMeshes();
220 bool isEqual(const MEDFileUMeshAggregateCompute& other, double eps, std::string& what) const;
221 void checkConsistency() const;
222 void clearNonDiscrAttributes() const;
223 void synchronizeTinyInfo(const MEDFileMesh& master) const;
225 int getMeshDimension() const;
226 std::vector<int> getDistributionOfTypes() const;
228 void setCoords(DataArrayDouble *coords);
229 void forceComputationOfPartsFromUMesh() const;
230 const PartDefinition *getPartDefOfWithoutComputation(INTERP_KERNEL::NormalizedCellType gt) const;
231 void serialize(std::vector<int>& tinyInt, std::vector< MCAuto<DataArrayInt> >& bigArraysI) const;
232 void unserialize(const std::string& name, DataArrayDouble *coo, std::vector<int>& tinyInt, std::vector< MCAuto<DataArrayInt> >& bigArraysI);
234 std::size_t getTimeOfParts() const;
235 std::size_t getTimeOfUMesh() const;
237 mutable std::vector< MCAuto<MEDCoupling1GTUMesh> > _m_parts;
238 mutable std::size_t _mp_time;
239 mutable std::size_t _m_time;
240 mutable MCAuto<MEDCouplingUMesh> _m;
241 mutable std::vector< MCAuto<PartDefinition> > _part_def;
244 class MEDFileUMeshSplitL1 : public RefCountObject
246 friend class MEDFileUMeshPermCompute;
247 friend class MEDFileUMesh;
249 MEDFileUMeshSplitL1(const MEDFileUMeshSplitL1& other);
250 MEDFileUMeshSplitL1(const MEDFileUMeshL2& l2, const std::string& mName, int id);
251 MEDFileUMeshSplitL1(MEDCoupling1GTUMesh *m);
252 MEDFileUMeshSplitL1(MEDCouplingUMesh *m);
253 MEDFileUMeshSplitL1(MEDCouplingUMesh *m, bool newOrOld);
254 void setName(const std::string& name);
255 std::size_t getHeapMemorySizeWithoutChildren() const;
256 std::vector<const BigMemoryObject *> getDirectChildrenWithNull() const;
257 MEDFileUMeshSplitL1 *shallowCpyUsingCoords(DataArrayDouble *coords) const;
258 MEDFileUMeshSplitL1 *deepCopy(DataArrayDouble *coords) const;
259 void checkConsistency() const;
260 void setCoords(DataArrayDouble *coords);
261 bool isEqual(const MEDFileUMeshSplitL1 *other, double eps, std::string& what) const;
262 void clearNonDiscrAttributes() const;
263 void synchronizeTinyInfo(const MEDFileMesh& master) const;
264 void assignMesh(MEDCouplingUMesh *m, bool newOrOld);
265 void assignParts(const std::vector< const MEDCoupling1GTUMesh * >& mParts);
266 void forceComputationOfParts() const;
268 bool presenceOfOneFams(const std::vector<int>& ids) const;
269 int getMeshDimension() const;
270 void simpleRepr(std::ostream& oss) const;
272 MEDCouplingUMesh *getFamilyPart(const int *idsBg, const int *idsEnd, bool renum) const;
273 DataArrayInt *getFamilyPartArr(const int *idsBg, const int *idsEnd, bool renum) const;
274 MEDCouplingUMesh *getWholeMesh(bool renum) const;
275 int getNumberOfCells() const;
276 bool isMeshStoredSplitByType() const { return _m_by_types.isStoredSplitByType(); }
277 std::vector<INTERP_KERNEL::NormalizedCellType> getGeoTypes() const;
278 int getNumberOfCellsWithType(INTERP_KERNEL::NormalizedCellType ct) const;
279 std::vector<MEDCoupling1GTUMesh *> getDirectUndergroundSingleGeoTypeMeshes() const { return _m_by_types.retrievePartsWithoutComputation(); }
280 MEDCoupling1GTUMesh *getDirectUndergroundSingleGeoTypeMesh(INTERP_KERNEL::NormalizedCellType gt) const { return _m_by_types.retrievePartWithoutComputation(gt); }
281 DataArrayInt *extractFamilyFieldOnGeoType(INTERP_KERNEL::NormalizedCellType gt) const;
282 DataArrayInt *extractNumberFieldOnGeoType(INTERP_KERNEL::NormalizedCellType gt) const;
283 std::vector<int> getDistributionOfTypes() const { return _m_by_types.getDistributionOfTypes(); }
284 DataArrayInt *getOrCreateAndGetFamilyField();
285 const DataArrayInt *getFamilyField() const;
286 const DataArrayInt *getNumberField() const;
287 const DataArrayAsciiChar *getNameField() const;
288 const DataArrayInt *getRevNumberField() const;
289 const PartDefinition *getPartDef(INTERP_KERNEL::NormalizedCellType gt) const;
290 void eraseFamilyField();
291 void setGroupsFromScratch(const std::vector<const MEDCouplingUMesh *>& ms, std::map<std::string,int>& familyIds,
292 std::map<std::string, std::vector<std::string> >& groups);
293 void write(med_idt fid, const std::string& mName, int mdim) const;
295 void setFamilyArr(DataArrayInt *famArr);
296 DataArrayInt *getFamilyField();
297 void setRenumArr(DataArrayInt *renumArr);
298 void setNameArr(DataArrayAsciiChar *nameArr);
299 void changeFamilyIdArr(int oldId, int newId);
301 void renumberNodesInConn(const int *newNodeNumbersO2N);
303 void serialize(std::vector<int>& tinyInt, std::vector< MCAuto<DataArrayInt> >& bigArraysI) const;
304 void unserialize(const std::string& name, DataArrayDouble *coo, std::vector<int>& tinyInt, std::vector< MCAuto<DataArrayInt> >& bigArraysI);
306 static void ClearNonDiscrAttributes(const MEDCouplingMesh *tmp);
307 static std::vector<int> GetNewFamiliesNumber(int nb, const std::map<std::string,int>& families);
308 static void TraduceFamilyNumber(const std::vector< std::vector<int> >& fidsGrps, std::map<std::string,int>& familyIds,
309 std::map<int,int>& famIdTrad, std::map<int,std::string>& newfams);
310 static DataArrayInt *Renumber(const DataArrayInt *renum, const DataArrayInt *da);
311 static MEDCouplingUMesh *Renumber2(const DataArrayInt *renum, MEDCouplingUMesh *m, const int *cellIds);
312 static MEDFileUMeshSplitL1 *Unserialize(const std::string& name, DataArrayDouble *coo, std::vector<int>& tinyInt, std::vector< MCAuto<DataArrayInt> >& bigArraysI);
314 MEDFileUMeshSplitL1();
315 void assignCommonPart();
316 MEDCouplingUMesh *renumIfNeeded(MEDCouplingUMesh *m, const int *cellIds) const;
317 DataArrayInt *renumIfNeededArr(const DataArrayInt *da) const;
318 void computeRevNum() const;
320 MEDFileUMeshAggregateCompute _m_by_types;
321 MCAuto<DataArrayInt> _fam;
322 MCAuto<DataArrayInt> _num;
323 MCAuto<DataArrayInt> _global_num;
324 MCAuto<DataArrayAsciiChar> _names;
325 mutable MCAuto<DataArrayInt> _rev_num;
326 MEDFileUMeshPermCompute _m;
329 class MEDFileEltStruct4Mesh : public RefCountObject
332 static MEDFileEltStruct4Mesh *New(med_idt fid, const std::string& mName, int dt, int it, int iterOnStEltOfMesh, MEDFileMeshReadSelector *mrs);
333 std::string getGeoTypeName() const { return _geo_type_name; }
334 MCAuto<DataArrayInt> getConn() const { return _conn; }
335 MCAuto<MEDFileUMeshPerTypeCommon> getMeshDef() const { return _common; }
336 const std::vector< MCAuto<DataArray> >& getVars() const { return _vars; }
338 std::size_t getHeapMemorySizeWithoutChildren() const;
339 std::vector<const MEDCoupling::BigMemoryObject*> getDirectChildrenWithNull() const;
341 ~MEDFileEltStruct4Mesh() { }
343 MEDFileEltStruct4Mesh(med_idt fid, const std::string& mName, int dt, int it, int iterOnStEltOfMesh, MEDFileMeshReadSelector *mrs);
345 std::string _geo_type_name;
347 MCAuto<DataArrayInt> _conn;
348 MCAuto<MEDFileUMeshPerTypeCommon> _common;
349 std::vector< MCAuto<DataArray> > _vars;