1 // Copyright (C) 2007-2015 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 __MEDFILEPARAMETER_HXX__
22 #define __MEDFILEPARAMETER_HXX__
24 #include "MEDLoaderDefines.hxx"
25 #include "MEDFileUtilities.hxx"
26 #include "MEDCouplingMemArray.hxx"
27 #include "MEDCouplingAutoRefCountObjectPtr.hxx"
31 class MEDFileParameter1TS : public RefCountObject
34 MEDLOADER_EXPORT virtual MEDFileParameter1TS *deepCpy() const = 0;
35 MEDLOADER_EXPORT virtual bool isEqual(const MEDFileParameter1TS *other, double eps, std::string& what) const;
36 MEDLOADER_EXPORT virtual void simpleRepr2(int bkOffset, std::ostream& oss) const = 0;
37 MEDLOADER_EXPORT virtual void readValue(med_idt fid, const std::string& name) = 0;
38 MEDLOADER_EXPORT virtual void writeLL(med_idt fid, const std::string& name, const MEDFileWritable& mw) const = 0;
40 MEDLOADER_EXPORT void setIteration(int it) { _iteration=it; }
41 MEDLOADER_EXPORT int getIteration() const { return _iteration; }
42 MEDLOADER_EXPORT void setOrder(int order) { _order=order; }
43 MEDLOADER_EXPORT int getOrder() const { return _order; }
44 MEDLOADER_EXPORT void setTimeValue(double time) { _time=time; }
45 MEDLOADER_EXPORT void setTime(int dt, int it, double time) { _time=time; _iteration=dt; _order=it; }
46 MEDLOADER_EXPORT double getTime(int& dt, int& it) { dt=_iteration; it=_order; return _time; }
47 MEDLOADER_EXPORT double getTimeValue() const { return _time; }
49 MEDFileParameter1TS(int iteration, int order, double time);
50 MEDFileParameter1TS();
57 class MEDFileParameterDouble1TSWTI : public MEDFileParameter1TS
60 MEDLOADER_EXPORT static MEDFileParameterDouble1TSWTI *New(int iteration, int order, double time);
61 MEDLOADER_EXPORT MEDFileParameter1TS *deepCpy() const;
62 MEDLOADER_EXPORT void setValue(double val) { _arr=val; }
63 MEDLOADER_EXPORT double getValue() const { return _arr; }
64 MEDLOADER_EXPORT bool isEqual(const MEDFileParameter1TS *other, double eps, std::string& what) const;
65 MEDLOADER_EXPORT std::size_t getHeapMemorySizeWithoutChildren() const;
66 MEDLOADER_EXPORT std::vector<const BigMemoryObject *> getDirectChildrenWithNull() const;
67 MEDLOADER_EXPORT void readValue(med_idt fid, const std::string& name);
68 MEDLOADER_EXPORT std::string simpleRepr() const;
70 MEDFileParameterDouble1TSWTI();
71 MEDFileParameterDouble1TSWTI(int iteration, int order, double time);
72 void simpleRepr2(int bkOffset, std::ostream& oss) const;
73 void finishLoading(med_idt fid, const std::string& name, int dt, int it, int nbOfSteps);
74 void finishLoading(med_idt fid, const std::string& name, int timeStepId);
75 void writeLL(med_idt fid, const std::string& name, const MEDFileWritable& mw) const;
80 class MEDFileParameterTinyInfo : public MEDFileWritable
83 MEDLOADER_EXPORT void setDescription(const std::string& name) { _desc_name=name; }
84 MEDLOADER_EXPORT std::string getDescription() const { return _desc_name; }
85 MEDLOADER_EXPORT void setTimeUnit(const std::string& unit) { _dt_unit=unit; }
86 MEDLOADER_EXPORT std::string getTimeUnit() const { return _dt_unit; }
87 MEDLOADER_EXPORT std::size_t getHeapMemSizeOfStrings() const;
88 MEDLOADER_EXPORT bool isEqualStrings(const MEDFileParameterTinyInfo& other, std::string& what) const;
90 void writeLLHeader(med_idt fid, med_parameter_type typ) const;
91 void mainRepr(int bkOffset, std::ostream& oss) const;
95 std::string _desc_name;
98 class MEDFileParameterDouble1TS : public MEDFileParameterDouble1TSWTI, public MEDFileParameterTinyInfo
101 MEDLOADER_EXPORT static MEDFileParameterDouble1TS *New();
102 MEDLOADER_EXPORT static MEDFileParameterDouble1TS *New(const std::string& fileName);
103 MEDLOADER_EXPORT static MEDFileParameterDouble1TS *New(const std::string& fileName, const std::string& paramName);
104 MEDLOADER_EXPORT static MEDFileParameterDouble1TS *New(const std::string& fileName, const std::string& paramName, int dt, int it);
105 MEDLOADER_EXPORT virtual MEDFileParameter1TS *deepCpy() const;
106 MEDLOADER_EXPORT virtual bool isEqual(const MEDFileParameter1TS *other, double eps, std::string& what) const;
107 MEDLOADER_EXPORT virtual std::string simpleRepr() const;
108 MEDLOADER_EXPORT std::size_t getHeapMemorySizeWithoutChildren() const;
109 MEDLOADER_EXPORT std::vector<const BigMemoryObject *> getDirectChildrenWithNull() const;
110 MEDLOADER_EXPORT void setName(const std::string& name) { _name=name; }
111 MEDLOADER_EXPORT std::string getName() const { return _name; }
112 MEDLOADER_EXPORT void write(const std::string& fileName, int mode) const;
114 MEDFileParameterDouble1TS();
115 MEDFileParameterDouble1TS(const std::string& fileName);
116 MEDFileParameterDouble1TS(const std::string& fileName, const std::string& paramName);
117 MEDFileParameterDouble1TS(const std::string& fileName, const std::string& paramName, int dt, int it);
120 class MEDFileParameterMultiTS : public RefCountObject, public MEDFileParameterTinyInfo
123 MEDLOADER_EXPORT static MEDFileParameterMultiTS *New();
124 MEDLOADER_EXPORT static MEDFileParameterMultiTS *New(const std::string& fileName);
125 MEDLOADER_EXPORT static MEDFileParameterMultiTS *New(const std::string& fileName, const std::string& paramName);
126 MEDLOADER_EXPORT std::string getName() const { return _name; }
127 MEDLOADER_EXPORT void setName(const std::string& name) { _name=name; }
128 MEDLOADER_EXPORT std::size_t getHeapMemorySizeWithoutChildren() const;
129 MEDLOADER_EXPORT std::vector<const BigMemoryObject *> getDirectChildrenWithNull() const;
130 MEDLOADER_EXPORT MEDFileParameterMultiTS *deepCpy() const;
131 MEDLOADER_EXPORT bool isEqual(const MEDFileParameterMultiTS *other, double eps, std::string& what) const;
132 MEDLOADER_EXPORT void write(const std::string& fileName, int mode) const;
133 MEDLOADER_EXPORT void writeLL(med_idt fid, const MEDFileWritable& mw) const;
134 MEDLOADER_EXPORT std::string simpleRepr() const;
135 MEDLOADER_EXPORT void appendValue(int dt, int it, double time, double val);
136 MEDLOADER_EXPORT double getDoubleValue(int iteration, int order) const;
137 MEDLOADER_EXPORT int getPosOfTimeStep(int iteration, int order) const;
138 MEDLOADER_EXPORT int getPosGivenTime(double time, double eps=1e-8) const;
139 MEDLOADER_EXPORT MEDFileParameter1TS *getTimeStepAtPos(int posId) const;
140 MEDLOADER_EXPORT void eraseTimeStepIds(const int *startIds, const int *endIds);
141 MEDLOADER_EXPORT int getNumberOfTS() const;
142 MEDLOADER_EXPORT std::vector< std::pair<int,int> > getIterations() const;
143 MEDLOADER_EXPORT std::vector< std::pair<int,int> > getTimeSteps(std::vector<double>& ret1) const;
144 MEDLOADER_EXPORT void simpleRepr2(int bkOffset, std::ostream& oss) const;
146 MEDFileParameterMultiTS();
147 MEDFileParameterMultiTS(const MEDFileParameterMultiTS& other, bool deepCopy);
148 MEDFileParameterMultiTS(const std::string& fileName);
149 MEDFileParameterMultiTS(const std::string& fileName, const std::string& paramName);
150 void finishLoading(med_idt fid, med_parameter_type typ, int nbOfSteps);
152 std::vector< MEDCouplingAutoRefCountObjectPtr<MEDFileParameter1TS> > _param_per_ts;
155 class MEDFileParameters : public RefCountObject, public MEDFileWritable
158 MEDLOADER_EXPORT static MEDFileParameters *New();
159 MEDLOADER_EXPORT static MEDFileParameters *New(const std::string& fileName);
160 MEDLOADER_EXPORT std::size_t getHeapMemorySizeWithoutChildren() const;
161 MEDLOADER_EXPORT std::vector<const BigMemoryObject *> getDirectChildrenWithNull() const;
162 MEDLOADER_EXPORT MEDFileParameters *deepCpy() const;
163 MEDLOADER_EXPORT bool isEqual(const MEDFileParameters *other, double eps, std::string& what) const;
164 MEDLOADER_EXPORT void write(const std::string& fileName, int mode) const;
165 MEDLOADER_EXPORT void writeLL(med_idt fid) const;
166 MEDLOADER_EXPORT std::vector<std::string> getParamsNames() const;
167 MEDLOADER_EXPORT std::string simpleRepr() const;
168 MEDLOADER_EXPORT void simpleReprWithoutHeader(std::ostream& oss) const;
169 MEDLOADER_EXPORT void resize(int newSize);
170 MEDLOADER_EXPORT void pushParam(MEDFileParameterMultiTS *param);
171 MEDLOADER_EXPORT void setParamAtPos(int i, MEDFileParameterMultiTS *param);
172 MEDLOADER_EXPORT MEDFileParameterMultiTS *getParamAtPos(int i) const;
173 MEDLOADER_EXPORT MEDFileParameterMultiTS *getParamWithName(const std::string& paramName) const;
174 MEDLOADER_EXPORT void destroyParamAtPos(int i);
175 MEDLOADER_EXPORT int getPosFromParamName(const std::string& paramName) const;
176 MEDLOADER_EXPORT int getNumberOfParams() const;
178 void simpleRepr2(int bkOffset, std::ostream& oss) const;
179 MEDFileParameters(const std::string& fileName);
180 MEDFileParameters(const MEDFileParameters& other, bool deepCopy);
183 std::vector< MEDCouplingAutoRefCountObjectPtr<MEDFileParameterMultiTS> > _params;