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