Salome HOME
Merge from V6_main 15/03/2013
[modules/med.git] / src / MEDLoader / MEDFileMesh.hxx
1 // Copyright (C) 2007-2012  CEA/DEN, EDF R&D
2 //
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.
7 //
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.
12 //
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
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19 // Author : Anthony Geay (CEA/DEN)
20
21 #ifndef __MEDFILEMESH_HXX__
22 #define __MEDFILEMESH_HXX__
23
24 #include "MEDLoaderDefines.hxx"
25 #include "MEDFileMeshLL.hxx"
26 #include "MEDFileUtilities.hxx"
27
28 #include <map>
29 #include <list>
30
31 namespace ParaMEDMEM
32 {
33   class MEDLOADER_EXPORT MEDFileMesh : public RefCountObject, public MEDFileWritable
34   {
35   public:
36     static MEDFileMesh *New(const char *fileName) throw(INTERP_KERNEL::Exception);
37     static MEDFileMesh *New(const char *fileName, const char *mName, int dt=-1, int it=-1) throw(INTERP_KERNEL::Exception);
38     std::size_t getHeapMemorySize() const;
39     virtual MEDFileMesh *deepCpy() const throw(INTERP_KERNEL::Exception) = 0;
40     virtual MEDFileMesh *shallowCpy() const throw(INTERP_KERNEL::Exception) = 0;
41     virtual bool isEqual(const MEDFileMesh *other, double eps, std::string& what) const;
42     virtual void clearNonDiscrAttributes() const;
43     void setName(const char *name) { _name=name; }
44     bool changeNames(const std::vector< std::pair<std::string,std::string> >& modifTab) throw(INTERP_KERNEL::Exception);
45     const char *getName() const { return _name.c_str(); }
46     void setUnivName(const char *name) { _univ_name=name; }
47     const char *getUnivName() const { return _univ_name.c_str(); }
48     void setDescription(const char *name) { _desc_name=name; }
49     const char *getDescription() const { return _desc_name.c_str(); }
50     void setOrder(int order) { _order=order; }
51     int getOrder() const { return _order; }
52     void setIteration(int it) { _iteration=it; }
53     int getIteration() const { return _iteration; }
54     void setTimeValue(double time) { _time=time; }
55     void setTime(int dt, int it, double time) { _time=time; _iteration=dt; _order=it; }
56     double getTime(int& dt, int& it) { dt=_iteration; it=_order; return _time; }
57     double getTimeValue() const { return _time; }
58     void setTimeUnit(const char *unit) { _dt_unit=unit; }
59     const char *getTimeUnit() const { return _dt_unit.c_str(); }
60     virtual int getNumberOfNodes() const throw(INTERP_KERNEL::Exception) = 0;
61     virtual std::vector<int> getNonEmptyLevels() const = 0;
62     virtual std::vector<int> getNonEmptyLevelsExt() const = 0;
63     virtual void write(const char *fileName, int mode) const throw(INTERP_KERNEL::Exception);
64     virtual void write(med_idt fid) const throw(INTERP_KERNEL::Exception);
65     virtual int getSizeAtLevel(int meshDimRelToMaxExt) const throw(INTERP_KERNEL::Exception) = 0;
66     virtual MEDCouplingMesh *getGenMeshAtLevel(int meshDimRelToMax, bool renum=false) const throw(INTERP_KERNEL::Exception) = 0;
67     //
68     bool areFamsEqual(const MEDFileMesh *other, std::string& what) const;
69     bool areGrpsEqual(const MEDFileMesh *other, std::string& what) const;
70     bool existsGroup(const char *groupName) const;
71     bool existsFamily(int famId) const;
72     bool existsFamily(const char *familyName) const;
73     void setFamilyId(const char *familyName, int id);
74     void setFamilyIdUnique(const char *familyName, int id) throw(INTERP_KERNEL::Exception);
75     virtual void addFamily(const char *familyName, int id) throw(INTERP_KERNEL::Exception);
76     virtual void createGroupOnAll(int meshDimRelToMaxExt, const char *groupName) throw(INTERP_KERNEL::Exception);
77     virtual bool keepFamIdsOnlyOnLevs(const std::vector<int>& famIds, const std::vector<int>& levs) throw(INTERP_KERNEL::Exception);
78     void addFamilyOnGrp(const char *grpName, const char *famName) throw(INTERP_KERNEL::Exception);
79     std::string findOrCreateAndGiveFamilyWithId(int id, bool& created) throw(INTERP_KERNEL::Exception);
80     void setFamilyInfo(const std::map<std::string,int>& info);
81     void setGroupInfo(const std::map<std::string, std::vector<std::string> >&info);
82     void copyFamGrpMapsFrom(const MEDFileMesh& other);
83     const std::map<std::string,int>& getFamilyInfo() const { return _families; }
84     const std::map<std::string, std::vector<std::string> >& getGroupInfo() const { return _groups; }
85     std::vector<std::string> getFamiliesOnGroup(const char *name) const throw(INTERP_KERNEL::Exception);
86     std::vector<std::string> getFamiliesOnGroups(const std::vector<std::string>& grps) const throw(INTERP_KERNEL::Exception);
87     std::vector<int> getFamiliesIdsOnGroup(const char *name) const throw(INTERP_KERNEL::Exception);
88     void setFamiliesOnGroup(const char *name, const std::vector<std::string>& fams) throw(INTERP_KERNEL::Exception);
89     void setFamiliesIdsOnGroup(const char *name, const std::vector<int>& famIds) throw(INTERP_KERNEL::Exception);
90     std::vector<std::string> getGroupsOnFamily(const char *name) const throw(INTERP_KERNEL::Exception);
91     void setGroupsOnFamily(const char *famName, const std::vector<std::string>& grps) throw(INTERP_KERNEL::Exception);
92     std::vector<std::string> getGroupsNames() const;
93     std::vector<std::string> getFamiliesNames() const;
94     void assignFamilyNameWithGroupName() throw(INTERP_KERNEL::Exception);
95     void removeGroup(const char *name) throw(INTERP_KERNEL::Exception);
96     void removeFamily(const char *name) throw(INTERP_KERNEL::Exception);
97     void changeGroupName(const char *oldName, const char *newName) throw(INTERP_KERNEL::Exception);
98     void changeFamilyName(const char *oldName, const char *newName) throw(INTERP_KERNEL::Exception);
99     void changeFamilyId(int oldId, int newId) throw(INTERP_KERNEL::Exception);
100     void changeAllGroupsContainingFamily(const char *familyNameToChange, const std::vector<std::string>& newFamiliesNames) throw(INTERP_KERNEL::Exception);
101     int getFamilyId(const char *name) const throw(INTERP_KERNEL::Exception);
102     int getMaxFamilyId() const throw(INTERP_KERNEL::Exception);
103     int getMinFamilyId() const throw(INTERP_KERNEL::Exception);
104     int getTheMaxFamilyId() const throw(INTERP_KERNEL::Exception);
105     int getTheMinFamilyId() const throw(INTERP_KERNEL::Exception);
106     virtual int getMaxFamilyIdInArrays() const throw(INTERP_KERNEL::Exception) = 0;
107     virtual int getMinFamilyIdInArrays() const throw(INTERP_KERNEL::Exception) = 0;
108     DataArrayInt *getAllFamiliesIdsReferenced() const throw(INTERP_KERNEL::Exception);
109     std::vector<int> getFamiliesIds(const std::vector<std::string>& famNames) const throw(INTERP_KERNEL::Exception);
110     std::string getFamilyNameGivenId(int id) const throw(INTERP_KERNEL::Exception);
111     bool ensureDifferentFamIdsPerLevel() throw(INTERP_KERNEL::Exception);
112     void normalizeFamIdsTrio() throw(INTERP_KERNEL::Exception);
113     void normalizeFamIdsMEDFile() throw(INTERP_KERNEL::Exception);
114     virtual int getMeshDimension() const throw(INTERP_KERNEL::Exception) = 0;
115     virtual std::string simpleRepr() const;
116     virtual std::string advancedRepr() const = 0;
117     //
118     virtual void setGroupsAtLevel(int meshDimRelToMaxExt, const std::vector<const DataArrayInt *>& grps, bool renum=false) throw(INTERP_KERNEL::Exception);
119     virtual void setFamilyFieldArr(int meshDimRelToMaxExt, DataArrayInt *famArr) throw(INTERP_KERNEL::Exception) = 0;
120     virtual void setRenumFieldArr(int meshDimRelToMaxExt, DataArrayInt *renumArr) throw(INTERP_KERNEL::Exception) = 0;
121     virtual const DataArrayInt *getFamilyFieldAtLevel(int meshDimRelToMaxExt) const throw(INTERP_KERNEL::Exception) = 0;
122     virtual const DataArrayInt *getNumberFieldAtLevel(int meshDimRelToMaxExt) const throw(INTERP_KERNEL::Exception) = 0;
123     virtual const DataArrayInt *getRevNumberFieldAtLevel(int meshDimRelToMaxExt) const throw(INTERP_KERNEL::Exception) = 0;
124     virtual DataArrayInt *getFamiliesArr(int meshDimRelToMaxExt, const std::vector<std::string>& fams, bool renum=false) const throw(INTERP_KERNEL::Exception) = 0;
125     virtual DataArrayInt *getGroupsArr(int meshDimRelToMaxExt, const std::vector<std::string>& grps, bool renum=false) const throw(INTERP_KERNEL::Exception);
126     virtual DataArrayInt *getGroupArr(int meshDimRelToMaxExt, const char *grp, bool renum=false) const throw(INTERP_KERNEL::Exception);
127     virtual DataArrayInt *getFamilyArr(int meshDimRelToMaxExt, const char *fam, bool renum=false) const throw(INTERP_KERNEL::Exception);
128     virtual DataArrayInt *getNodeGroupArr(const char *grp, bool renum=false) const throw(INTERP_KERNEL::Exception);
129     virtual DataArrayInt *getNodeGroupsArr(const std::vector<std::string>& grps, bool renum=false) const throw(INTERP_KERNEL::Exception);
130     virtual DataArrayInt *getNodeFamilyArr(const char *fam, bool renum=false) const throw(INTERP_KERNEL::Exception);
131     virtual DataArrayInt *getNodeFamiliesArr(const std::vector<std::string>& fams, bool renum=false) const throw(INTERP_KERNEL::Exception);
132     // tools
133     virtual bool unPolyze(std::vector<int>& oldCode, std::vector<int>& newCode, DataArrayInt *& o2nRenumCell) throw(INTERP_KERNEL::Exception) = 0;
134   protected:
135     MEDFileMesh();
136     void addFamilyOnAllGroupsHaving(const char *famName, const char *otherFamName) throw(INTERP_KERNEL::Exception);
137     virtual void writeLL(med_idt fid) const throw(INTERP_KERNEL::Exception) = 0;
138     void dealWithTinyInfo(const MEDCouplingMesh *m) throw(INTERP_KERNEL::Exception);
139     virtual void synchronizeTinyInfoOnLeaves() const = 0;
140     void getFamilyRepr(std::ostream& oss) const;
141     virtual void appendFamilyEntries(const DataArrayInt *famIds, const std::vector< std::vector<int> >& fidsOfGrps, const std::vector<std::string>& grpNames);
142     virtual void changeFamilyIdArr(int oldId, int newId) throw(INTERP_KERNEL::Exception) = 0;
143     static void TranslateFamilyIds(int offset, DataArrayInt *famArr, std::vector< std::vector<int> >& famIdsPerGrp);
144     static void ChangeAllGroupsContainingFamily(std::map<std::string, std::vector<std::string> >& groups, const char *familyNameToChange, const std::vector<std::string>& newFamiliesNames) throw(INTERP_KERNEL::Exception);
145     static std::string FindOrCreateAndGiveFamilyWithId(std::map<std::string,int>& families, int id, bool& created) throw(INTERP_KERNEL::Exception);
146     static std::string CreateNameNotIn(const std::string& nameTry, const std::vector<std::string>& namesToAvoid) throw(INTERP_KERNEL::Exception);
147     static int PutInThirdComponentOfCodeOffset(std::vector<int>& code, int strt) throw(INTERP_KERNEL::Exception);
148   protected:
149     int _order;
150     int _iteration;
151     double _time;
152     std::string _dt_unit;
153     std::string _name;
154     std::string _univ_name;
155     std::string _desc_name;
156   protected:
157     std::map<std::string, std::vector<std::string> > _groups;
158     std::map<std::string,int> _families;
159   public:
160     static const char DFT_FAM_NAME[];
161   };
162
163   class MEDLOADER_EXPORT MEDFileUMesh : public MEDFileMesh
164   {
165     friend class MEDFileMesh;
166   public:
167     static MEDFileUMesh *New(const char *fileName, const char *mName, int dt=-1, int it=-1) throw(INTERP_KERNEL::Exception);
168     static MEDFileUMesh *New(const char *fileName) throw(INTERP_KERNEL::Exception);
169     static MEDFileUMesh *New();
170     std::size_t getHeapMemorySize() const;
171     MEDFileMesh *deepCpy() const throw(INTERP_KERNEL::Exception);
172     MEDFileMesh *shallowCpy() const throw(INTERP_KERNEL::Exception);
173     bool isEqual(const MEDFileMesh *other, double eps, std::string& what) const;
174     void clearNonDiscrAttributes() const;
175     ~MEDFileUMesh();
176     //
177     int getMaxFamilyIdInArrays() const throw(INTERP_KERNEL::Exception);
178     int getMinFamilyIdInArrays() const throw(INTERP_KERNEL::Exception);
179     int getMeshDimension() const throw(INTERP_KERNEL::Exception);
180     int getSpaceDimension() const throw(INTERP_KERNEL::Exception);
181     std::string simpleRepr() const;
182     std::string advancedRepr() const;
183     int getSizeAtLevel(int meshDimRelToMaxExt) const throw(INTERP_KERNEL::Exception);
184     const DataArrayInt *getFamilyFieldAtLevel(int meshDimRelToMaxExt) const throw(INTERP_KERNEL::Exception);
185     const DataArrayInt *getNumberFieldAtLevel(int meshDimRelToMaxExt) const throw(INTERP_KERNEL::Exception);
186     const DataArrayInt *getRevNumberFieldAtLevel(int meshDimRelToMaxExt) const throw(INTERP_KERNEL::Exception);
187     int getNumberOfNodes() const throw(INTERP_KERNEL::Exception);
188     std::vector<int> getNonEmptyLevels() const;
189     std::vector<int> getNonEmptyLevelsExt() const;
190     std::vector<int> getGrpNonEmptyLevels(const char *grp) const throw(INTERP_KERNEL::Exception);
191     std::vector<int> getGrpNonEmptyLevelsExt(const char *grp) const throw(INTERP_KERNEL::Exception);
192     std::vector<int> getFamNonEmptyLevels(const char *fam) const throw(INTERP_KERNEL::Exception);
193     std::vector<int> getFamNonEmptyLevelsExt(const char *fam) const throw(INTERP_KERNEL::Exception);
194     std::vector<int> getGrpsNonEmptyLevels(const std::vector<std::string>& grps) const throw(INTERP_KERNEL::Exception);
195     std::vector<int> getGrpsNonEmptyLevelsExt(const std::vector<std::string>& grps) const throw(INTERP_KERNEL::Exception);
196     std::vector<int> getFamsNonEmptyLevels(const std::vector<std::string>& fams) const throw(INTERP_KERNEL::Exception);
197     std::vector<int> getFamsNonEmptyLevelsExt(const std::vector<std::string>& fams) const throw(INTERP_KERNEL::Exception);
198     std::vector<std::string> getGroupsOnSpecifiedLev(int meshDimRelToMaxExt) const throw(INTERP_KERNEL::Exception);
199     DataArrayDouble *getCoords() const;
200     MEDCouplingUMesh *getGroup(int meshDimRelToMaxExt, const char *grp, bool renum=false) const throw(INTERP_KERNEL::Exception);
201     MEDCouplingUMesh *getGroups(int meshDimRelToMaxExt, const std::vector<std::string>& grps, bool renum=false) const throw(INTERP_KERNEL::Exception);
202     MEDCouplingUMesh *getFamily(int meshDimRelToMaxExt, const char *fam, bool renum=false) const throw(INTERP_KERNEL::Exception);
203     MEDCouplingUMesh *getFamilies(int meshDimRelToMaxExt, const std::vector<std::string>& fams, bool renum=false) const throw(INTERP_KERNEL::Exception);
204     DataArrayInt *getFamiliesArr(int meshDimRelToMaxExt, const std::vector<std::string>& fams, bool renum=false) const throw(INTERP_KERNEL::Exception);
205     MEDCouplingUMesh *getMeshAtLevel(int meshDimRelToMaxExt, bool renum=false) const throw(INTERP_KERNEL::Exception);
206     MEDCouplingMesh *getGenMeshAtLevel(int meshDimRelToMax, bool renum=false) const throw(INTERP_KERNEL::Exception);
207     MEDCouplingUMesh *getLevel0Mesh(bool renum=false) const throw(INTERP_KERNEL::Exception);
208     MEDCouplingUMesh *getLevelM1Mesh(bool renum=false) const throw(INTERP_KERNEL::Exception);
209     MEDCouplingUMesh *getLevelM2Mesh(bool renum=false) const throw(INTERP_KERNEL::Exception);
210     MEDCouplingUMesh *getLevelM3Mesh(bool renum=false) const throw(INTERP_KERNEL::Exception);
211     //
212     void setFamilyNameAttachedOnId(int id, const std::string& newFamName) throw(INTERP_KERNEL::Exception);
213     void setCoords(DataArrayDouble *coords) throw(INTERP_KERNEL::Exception);
214     void eraseGroupsAtLevel(int meshDimRelToMaxExt) throw(INTERP_KERNEL::Exception);
215     void setFamilyFieldArr(int meshDimRelToMaxExt, DataArrayInt *famArr) throw(INTERP_KERNEL::Exception);
216     void setRenumFieldArr(int meshDimRelToMaxExt, DataArrayInt *renumArr) throw(INTERP_KERNEL::Exception);
217     void addNodeGroup(const DataArrayInt *ids) throw(INTERP_KERNEL::Exception);
218     void addGroup(int meshDimRelToMaxExt, const DataArrayInt *ids) throw(INTERP_KERNEL::Exception);
219     void removeMeshAtLevel(int meshDimRelToMax) throw(INTERP_KERNEL::Exception);
220     void setMeshAtLevel(int meshDimRelToMax, MEDCouplingUMesh *m, bool newOrOld=false) throw(INTERP_KERNEL::Exception);
221     void setMeshAtLevelGen(int meshDimRelToMax, MEDCouplingUMesh *m, bool newOrOld) throw(INTERP_KERNEL::Exception);
222     void setGroupsFromScratch(int meshDimRelToMax, const std::vector<const MEDCouplingUMesh *>& ms) throw(INTERP_KERNEL::Exception);
223     void setGroupsOnSetMesh(int meshDimRelToMax, const std::vector<const MEDCouplingUMesh *>& ms, bool renum) throw(INTERP_KERNEL::Exception);
224     void optimizeFamilies() throw(INTERP_KERNEL::Exception);
225     // tools
226     void duplicateNodesOnM1Group(const char *grpNameM1, DataArrayInt *&nodesDuplicated, DataArrayInt *&cellsModified, DataArrayInt *&cellsNotModified) throw(INTERP_KERNEL::Exception);
227     bool unPolyze(std::vector<int>& oldCode, std::vector<int>& newCode, DataArrayInt *& o2nRenumCell) throw(INTERP_KERNEL::Exception);
228     DataArrayInt *zipCoords() throw(INTERP_KERNEL::Exception);
229   private:
230     void writeLL(med_idt fid) const throw(INTERP_KERNEL::Exception);
231     MEDFileUMesh();
232     MEDFileUMesh(med_idt fid, const char *mName, int dt, int it) throw(INTERP_KERNEL::Exception);
233     void loadUMeshFromFile(med_idt fid, const char *mName, int dt, int it) throw(INTERP_KERNEL::Exception);
234     const MEDFileUMeshSplitL1 *getMeshAtLevSafe(int meshDimRelToMaxExt) const throw(INTERP_KERNEL::Exception);
235     MEDFileUMeshSplitL1 *getMeshAtLevSafe(int meshDimRelToMaxExt) throw(INTERP_KERNEL::Exception);
236     void checkMeshDimCoherency(int meshDim, int meshDimRelToMax) const throw(INTERP_KERNEL::Exception);
237     DataArrayDouble *checkMultiMesh(const std::vector<const MEDCouplingUMesh *>& ms) const throw(INTERP_KERNEL::Exception);
238     void computeRevNum() const;
239     void synchronizeTinyInfoOnLeaves() const;
240     void changeFamilyIdArr(int oldId, int newId) throw(INTERP_KERNEL::Exception);
241     std::list< MEDCouplingAutoRefCountObjectPtr<DataArrayInt> > getAllNonNullFamilyIds() const;
242     void addGroupUnderground(const DataArrayInt *ids, DataArrayInt *famArr) throw(INTERP_KERNEL::Exception);
243   private:
244     std::vector< MEDCouplingAutoRefCountObjectPtr<MEDFileUMeshSplitL1> > _ms;
245     MEDCouplingAutoRefCountObjectPtr<DataArrayDouble> _coords;
246     MEDCouplingAutoRefCountObjectPtr<DataArrayInt> _fam_coords;
247     MEDCouplingAutoRefCountObjectPtr<DataArrayInt> _num_coords;
248     mutable MEDCouplingAutoRefCountObjectPtr<DataArrayInt> _rev_num_coords;
249   };
250
251   class MEDLOADER_EXPORT MEDFileStructuredMesh : public MEDFileMesh
252   {
253     friend class MEDFileMesh;
254   public:
255     std::size_t getHeapMemorySize() const;
256     int getMaxFamilyIdInArrays() const throw(INTERP_KERNEL::Exception);
257     int getMinFamilyIdInArrays() const throw(INTERP_KERNEL::Exception);
258     bool isEqual(const MEDFileMesh *other, double eps, std::string& what) const;
259     void clearNonDiscrAttributes() const;
260     DataArrayInt *getFamiliesArr(int meshDimRelToMaxExt, const std::vector<std::string>& fams, bool renum=false) const throw(INTERP_KERNEL::Exception);
261     const DataArrayInt *getFamilyFieldAtLevel(int meshDimRelToMaxExt) const throw(INTERP_KERNEL::Exception);
262     void setFamilyFieldArr(int meshDimRelToMaxExt, DataArrayInt *famArr) throw(INTERP_KERNEL::Exception);
263     void setRenumFieldArr(int meshDimRelToMaxExt, DataArrayInt *renumArr) throw(INTERP_KERNEL::Exception);
264     const DataArrayInt *getNumberFieldAtLevel(int meshDimRelToMaxExt) const throw(INTERP_KERNEL::Exception);
265     const DataArrayInt *getRevNumberFieldAtLevel(int meshDimRelToMaxExt) const throw(INTERP_KERNEL::Exception);
266     std::vector<int> getNonEmptyLevels() const;
267     std::vector<int> getNonEmptyLevelsExt() const;
268     MEDCouplingMesh *getGenMeshAtLevel(int meshDimRelToMax, bool renum=false) const throw(INTERP_KERNEL::Exception);
269     int getSizeAtLevel(int meshDimRelToMaxExt) const throw(INTERP_KERNEL::Exception);
270     int getNumberOfNodes() const throw(INTERP_KERNEL::Exception);
271     // tools
272     bool unPolyze(std::vector<int>& oldCode, std::vector<int>& newCode, DataArrayInt *& o2nRenumCell) throw(INTERP_KERNEL::Exception);
273   protected:
274     void changeFamilyIdArr(int oldId, int newId) throw(INTERP_KERNEL::Exception);
275     void deepCpyAttributes() throw(INTERP_KERNEL::Exception);
276     void loadStrMeshFromFile(MEDFileStrMeshL2 *strm, med_idt fid, const char *mName, int dt, int it) throw(INTERP_KERNEL::Exception);
277     void writeStructuredLL(med_idt fid, const char *maa) const throw(INTERP_KERNEL::Exception);
278     virtual const MEDCouplingStructuredMesh *getStructuredMesh() const = 0;
279     static med_geometry_type GetGeoTypeFromMeshDim(int meshDim) throw(INTERP_KERNEL::Exception);
280   private:
281     MEDCouplingAutoRefCountObjectPtr<DataArrayInt> _fam_nodes;
282     MEDCouplingAutoRefCountObjectPtr<DataArrayInt> _num_nodes;
283     MEDCouplingAutoRefCountObjectPtr<DataArrayInt> _fam_cells;
284     MEDCouplingAutoRefCountObjectPtr<DataArrayInt> _num_cells;
285     mutable MEDCouplingAutoRefCountObjectPtr<DataArrayInt> _rev_num_nodes;
286     mutable MEDCouplingAutoRefCountObjectPtr<DataArrayInt> _rev_num_cells;
287   };
288
289   class MEDLOADER_EXPORT MEDFileCMesh : public MEDFileStructuredMesh
290   {
291     friend class MEDFileMesh;
292   public:
293     static MEDFileCMesh *New();
294     static MEDFileCMesh *New(const char *fileName) throw(INTERP_KERNEL::Exception);
295     static MEDFileCMesh *New(const char *fileName, const char *mName, int dt=-1, int it=-1) throw(INTERP_KERNEL::Exception);
296     std::size_t getHeapMemorySize() const;
297     MEDFileMesh *deepCpy() const throw(INTERP_KERNEL::Exception);
298     MEDFileMesh *shallowCpy() const throw(INTERP_KERNEL::Exception);
299     bool isEqual(const MEDFileMesh *other, double eps, std::string& what) const;
300     int getMeshDimension() const throw(INTERP_KERNEL::Exception);
301     std::string simpleRepr() const;
302     std::string advancedRepr() const;
303     void clearNonDiscrAttributes() const;
304     const MEDCouplingCMesh *getMesh() const;
305     void setMesh(MEDCouplingCMesh *m) throw(INTERP_KERNEL::Exception);
306   private:
307     const MEDCouplingStructuredMesh *getStructuredMesh() const;
308     void writeLL(med_idt fid) const throw(INTERP_KERNEL::Exception);
309     MEDFileCMesh();
310     void synchronizeTinyInfoOnLeaves() const;
311     MEDFileCMesh(med_idt fid, const char *mName, int dt, int it) throw(INTERP_KERNEL::Exception);
312     void loadCMeshFromFile(med_idt fid, const char *mName, int dt, int it) throw(INTERP_KERNEL::Exception);
313   private:
314     MEDCouplingAutoRefCountObjectPtr<MEDCouplingCMesh> _cmesh;
315   };
316
317   class MEDLOADER_EXPORT MEDFileCurveLinearMesh : public MEDFileStructuredMesh
318   {
319     friend class MEDFileMesh;
320   public:
321     static MEDFileCurveLinearMesh *New();
322     static MEDFileCurveLinearMesh *New(const char *fileName) throw(INTERP_KERNEL::Exception);
323     static MEDFileCurveLinearMesh *New(const char *fileName, const char *mName, int dt=-1, int it=-1) throw(INTERP_KERNEL::Exception);
324     std::size_t getHeapMemorySize() const;
325     MEDFileMesh *deepCpy() const throw(INTERP_KERNEL::Exception);
326     MEDFileMesh *shallowCpy() const throw(INTERP_KERNEL::Exception);
327     bool isEqual(const MEDFileMesh *other, double eps, std::string& what) const;
328     int getMeshDimension() const throw(INTERP_KERNEL::Exception);
329     std::string simpleRepr() const;
330     std::string advancedRepr() const;
331     void clearNonDiscrAttributes() const;
332     const MEDCouplingCurveLinearMesh *getMesh() const;
333     void setMesh(MEDCouplingCurveLinearMesh *m) throw(INTERP_KERNEL::Exception);
334   private:
335     MEDFileCurveLinearMesh();
336     MEDFileCurveLinearMesh(med_idt fid, const char *mName, int dt, int it) throw(INTERP_KERNEL::Exception);
337     const MEDCouplingStructuredMesh *getStructuredMesh() const;
338     void synchronizeTinyInfoOnLeaves() const;
339     void writeLL(med_idt fid) const throw(INTERP_KERNEL::Exception);
340     void loadCLMeshFromFile(med_idt fid, const char *mName, int dt, int it) throw(INTERP_KERNEL::Exception);//to imp
341   private:
342     MEDCouplingAutoRefCountObjectPtr<MEDCouplingCurveLinearMesh> _clmesh;
343   };
344
345   class MEDLOADER_EXPORT MEDFileMeshMultiTS : public RefCountObject, public MEDFileWritable
346   {
347   public:
348     static MEDFileMeshMultiTS *New();
349     static MEDFileMeshMultiTS *New(const char *fileName) throw(INTERP_KERNEL::Exception);
350     static MEDFileMeshMultiTS *New(const char *fileName, const char *mName) throw(INTERP_KERNEL::Exception);
351     MEDFileMeshMultiTS *deepCpy() const throw(INTERP_KERNEL::Exception);
352     std::size_t getHeapMemorySize() const;
353     const char *getName() const throw(INTERP_KERNEL::Exception);
354     void setName(const char *newMeshName) throw(INTERP_KERNEL::Exception);
355     bool changeNames(const std::vector< std::pair<std::string,std::string> >& modifTab) throw(INTERP_KERNEL::Exception);
356     MEDFileMesh *getOneTimeStep() const throw(INTERP_KERNEL::Exception);
357     void write(med_idt fid) const throw(INTERP_KERNEL::Exception);
358     void write(const char *fileName, int mode) const throw(INTERP_KERNEL::Exception);
359     void setOneTimeStep(MEDFileMesh *mesh1TimeStep) throw(INTERP_KERNEL::Exception);
360   private:
361     void loadFromFile(const char *fileName, const char *mName) throw(INTERP_KERNEL::Exception);
362     MEDFileMeshMultiTS();
363     MEDFileMeshMultiTS(const char *fileName) throw(INTERP_KERNEL::Exception);
364     MEDFileMeshMultiTS(const char *fileName, const char *mName) throw(INTERP_KERNEL::Exception);
365   private:
366     std::vector< MEDCouplingAutoRefCountObjectPtr<MEDFileMesh> > _mesh_one_ts;
367   };
368
369   class MEDFileMeshesIterator;
370
371   class MEDLOADER_EXPORT MEDFileMeshes : public RefCountObject, public MEDFileWritable
372   {
373   public:
374     static MEDFileMeshes *New();
375     static MEDFileMeshes *New(const char *fileName) throw(INTERP_KERNEL::Exception);
376     MEDFileMeshes *deepCpy() const throw(INTERP_KERNEL::Exception);
377     std::size_t getHeapMemorySize() const;
378     std::string simpleRepr() const;
379     void simpleReprWithoutHeader(std::ostream& oss) const;
380     void write(const char *fileName, int mode) const throw(INTERP_KERNEL::Exception);
381     void write(med_idt fid) const throw(INTERP_KERNEL::Exception);
382     int getNumberOfMeshes() const throw(INTERP_KERNEL::Exception);
383     MEDFileMeshesIterator *iterator() throw(INTERP_KERNEL::Exception);
384     MEDFileMesh *getMeshAtPos(int i) const throw(INTERP_KERNEL::Exception);
385     MEDFileMesh *getMeshWithName(const char *mname) const throw(INTERP_KERNEL::Exception);
386     std::vector<std::string> getMeshesNames() const throw(INTERP_KERNEL::Exception);
387     bool changeNames(const std::vector< std::pair<std::string,std::string> >& modifTab) throw(INTERP_KERNEL::Exception);
388     //
389     void resize(int newSize) throw(INTERP_KERNEL::Exception);
390     void pushMesh(MEDFileMesh *mesh) throw(INTERP_KERNEL::Exception);
391     void setMeshAtPos(int i, MEDFileMesh *mesh) throw(INTERP_KERNEL::Exception);
392     void destroyMeshAtPos(int i) throw(INTERP_KERNEL::Exception);
393   private:
394     void checkCoherency() const throw(INTERP_KERNEL::Exception);
395     void loadFromFile(const char *fileName) throw(INTERP_KERNEL::Exception);
396     MEDFileMeshes();
397     MEDFileMeshes(const char *fileName) throw(INTERP_KERNEL::Exception);
398   private:
399     std::vector< MEDCouplingAutoRefCountObjectPtr<MEDFileMeshMultiTS> > _meshes;
400   };
401
402   class MEDCOUPLING_EXPORT MEDFileMeshesIterator
403   {
404   public:
405     MEDFileMeshesIterator(MEDFileMeshes *ms);
406     ~MEDFileMeshesIterator();
407     MEDFileMesh *nextt();
408   private:
409     MEDCouplingAutoRefCountObjectPtr<MEDFileMeshes> _ms;
410      int _iter_id;
411      int _nb_iter;
412   };
413 }
414
415 #endif