Salome HOME
Modification of the getHeapMemorySize computation.
[tools/medcoupling.git] / src / MEDLoader / MEDFileParameter.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 __MEDFILEPARAMETER_HXX__
22 #define __MEDFILEPARAMETER_HXX__
23
24 #include "MEDLoaderDefines.hxx"
25 #include "MEDFileUtilities.hxx"
26 #include "MEDCouplingMemArray.hxx"
27 #include "MEDCouplingAutoRefCountObjectPtr.hxx"
28
29 namespace ParaMEDMEM
30 {
31   class MEDLOADER_EXPORT MEDFileParameter1TS : public RefCountObject
32   {
33   public:
34     virtual MEDFileParameter1TS *deepCpy() const throw(INTERP_KERNEL::Exception) = 0;
35     virtual bool isEqual(const MEDFileParameter1TS *other, double eps, std::string& what) const;
36     virtual void simpleRepr2(int bkOffset, std::ostream& oss) const = 0;
37     virtual void readValue(med_idt fid, const std::string& name) throw(INTERP_KERNEL::Exception) = 0;
38     virtual void writeLL(med_idt fid, const std::string& name, const MEDFileWritable& mw) const throw(INTERP_KERNEL::Exception) = 0;
39   public:
40     void setIteration(int it) { _iteration=it; }
41     int getIteration() const { return _iteration; }
42     void setOrder(int order) { _order=order; }
43     int getOrder() const { return _order; }
44     void setTimeValue(double time) { _time=time; }
45     void setTime(int dt, int it, double time) { _time=time; _iteration=dt; _order=it; }
46     double getTime(int& dt, int& it) { dt=_iteration; it=_order; return _time; }
47     double getTimeValue() const { return _time; }
48   protected:
49     MEDFileParameter1TS(int iteration, int order, double time);
50     MEDFileParameter1TS();
51   protected:
52     int _iteration;
53     int _order;
54     double _time;    
55   };
56   
57   class MEDLOADER_EXPORT MEDFileParameterDouble1TSWTI : public MEDFileParameter1TS
58   {
59   public:
60     static MEDFileParameterDouble1TSWTI *New(int iteration, int order, double time);
61     MEDFileParameter1TS *deepCpy() const throw(INTERP_KERNEL::Exception);
62     void setValue(double val) throw(INTERP_KERNEL::Exception) { _arr=val; }
63     double getValue() const throw(INTERP_KERNEL::Exception) { return _arr; }
64     bool isEqual(const MEDFileParameter1TS *other, double eps, std::string& what) const;
65     std::size_t getHeapMemorySizeWithoutChildren() const;
66     std::vector<RefCountObject *> getDirectChildren() const;
67     void readValue(med_idt fid, const std::string& name) throw(INTERP_KERNEL::Exception);
68     std::string simpleRepr() const;
69   protected:
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) throw(INTERP_KERNEL::Exception);
74     void finishLoading(med_idt fid, const std::string& name, int timeStepId) throw(INTERP_KERNEL::Exception);
75     void writeLL(med_idt fid, const std::string& name, const MEDFileWritable& mw) const throw(INTERP_KERNEL::Exception);
76   protected:
77     double _arr;
78   };
79
80   class MEDLOADER_EXPORT MEDFileParameterTinyInfo : public MEDFileWritable
81   {
82   public:
83     void setDescription(const char *name) { _desc_name=name; }
84     std::string getDescription() const { return _desc_name; }
85     void setTimeUnit(const char *unit) { _dt_unit=unit; }
86     std::string getTimeUnit() const { return _dt_unit; }
87     std::size_t getHeapMemSizeOfStrings() const;
88     bool isEqualStrings(const MEDFileParameterTinyInfo& other, std::string& what) const;
89   protected:
90     void writeLLHeader(med_idt fid, med_parameter_type typ) const throw(INTERP_KERNEL::Exception);
91     void mainRepr(int bkOffset, std::ostream& oss) const;
92   protected:
93     std::string _dt_unit;
94     std::string _name;
95     std::string _desc_name;
96   };
97
98   class MEDLOADER_EXPORT MEDFileParameterDouble1TS : public MEDFileParameterDouble1TSWTI, public MEDFileParameterTinyInfo
99   {
100   public:
101     static MEDFileParameterDouble1TS *New();
102     static MEDFileParameterDouble1TS *New(const char *fileName) throw(INTERP_KERNEL::Exception);
103     static MEDFileParameterDouble1TS *New(const char *fileName, const char *paramName) throw(INTERP_KERNEL::Exception);
104     static MEDFileParameterDouble1TS *New(const char *fileName, const char *paramName, int dt, int it) throw(INTERP_KERNEL::Exception);
105     virtual MEDFileParameter1TS *deepCpy() const throw(INTERP_KERNEL::Exception);
106     virtual bool isEqual(const MEDFileParameter1TS *other, double eps, std::string& what) const;
107     virtual std::string simpleRepr() const;
108     std::size_t getHeapMemorySizeWithoutChildren() const;
109     std::vector<RefCountObject *> getDirectChildren() const;
110     void setName(const char *name) throw(INTERP_KERNEL::Exception) { _name=name; }
111     std::string getName() const throw(INTERP_KERNEL::Exception) { return _name; }
112     void write(const char *fileName, int mode) const throw(INTERP_KERNEL::Exception);
113   private:
114     MEDFileParameterDouble1TS();
115     MEDFileParameterDouble1TS(const char *fileName) throw(INTERP_KERNEL::Exception);
116     MEDFileParameterDouble1TS(const char *fileName, const char *paramName) throw(INTERP_KERNEL::Exception);
117     MEDFileParameterDouble1TS(const char *fileName, const char *paramName, int dt, int it) throw(INTERP_KERNEL::Exception);
118   };
119
120   class MEDLOADER_EXPORT MEDFileParameterMultiTS : public RefCountObject, public MEDFileParameterTinyInfo
121   {
122   public:
123     static MEDFileParameterMultiTS *New();
124     static MEDFileParameterMultiTS *New(const char *fileName) throw(INTERP_KERNEL::Exception);
125     static MEDFileParameterMultiTS *New(const char *fileName, const char *paramName) throw(INTERP_KERNEL::Exception);
126     std::string getName() const { return _name; }
127     void setName(const char *name) { _name=name; }
128     std::size_t getHeapMemorySizeWithoutChildren() const;
129     std::vector<RefCountObject *> getDirectChildren() const;
130     MEDFileParameterMultiTS *deepCpy() const throw(INTERP_KERNEL::Exception);
131     bool isEqual(const MEDFileParameterMultiTS *other, double eps, std::string& what) const;
132     void write(const char *fileName, int mode) const throw(INTERP_KERNEL::Exception);
133     void writeLL(med_idt fid, const MEDFileWritable& mw) const throw(INTERP_KERNEL::Exception);
134     std::string simpleRepr() const;
135     void appendValue(int dt, int it, double time, double val) throw(INTERP_KERNEL::Exception);
136     double getDoubleValue(int iteration, int order) const throw(INTERP_KERNEL::Exception);
137     int getPosOfTimeStep(int iteration, int order) const throw(INTERP_KERNEL::Exception);
138     int getPosGivenTime(double time, double eps=1e-8) const throw(INTERP_KERNEL::Exception);
139     MEDFileParameter1TS *getTimeStepAtPos(int posId) const throw(INTERP_KERNEL::Exception);
140     void eraseTimeStepIds(const int *startIds, const int *endIds) throw(INTERP_KERNEL::Exception);
141     std::vector< std::pair<int,int> > getIterations() const throw(INTERP_KERNEL::Exception);
142     std::vector< std::pair<int,int> > getTimeSteps(std::vector<double>& ret1) const throw(INTERP_KERNEL::Exception);
143     void simpleRepr2(int bkOffset, std::ostream& oss) const;
144   protected:
145     MEDFileParameterMultiTS();
146     MEDFileParameterMultiTS(const MEDFileParameterMultiTS& other, bool deepCopy);
147     MEDFileParameterMultiTS(const char *fileName) throw(INTERP_KERNEL::Exception);
148     MEDFileParameterMultiTS(const char *fileName, const char *paramName) throw(INTERP_KERNEL::Exception);
149     void finishLoading(med_idt fid, med_parameter_type typ, int nbOfSteps) throw(INTERP_KERNEL::Exception);
150   protected:
151     std::vector< MEDCouplingAutoRefCountObjectPtr<MEDFileParameter1TS> > _param_per_ts;
152   };
153
154   class MEDLOADER_EXPORT MEDFileParameters : public RefCountObject, public MEDFileWritable
155   {
156   public:
157     static MEDFileParameters *New();
158     static MEDFileParameters *New(const char *fileName) throw(INTERP_KERNEL::Exception);
159     std::size_t getHeapMemorySizeWithoutChildren() const;
160     std::vector<RefCountObject *> getDirectChildren() const;
161     MEDFileParameters *deepCpy() const throw(INTERP_KERNEL::Exception);
162     bool isEqual(const MEDFileParameters *other, double eps, std::string& what) const;
163     void write(const char *fileName, int mode) const throw(INTERP_KERNEL::Exception);
164     void writeLL(med_idt fid) const throw(INTERP_KERNEL::Exception);
165     std::vector<std::string> getParamsNames() const throw(INTERP_KERNEL::Exception);
166     std::string simpleRepr() const;
167     void simpleReprWithoutHeader(std::ostream& oss) const;
168     void resize(int newSize) throw(INTERP_KERNEL::Exception);
169     void pushParam(MEDFileParameterMultiTS *param) throw(INTERP_KERNEL::Exception);
170     void setParamAtPos(int i, MEDFileParameterMultiTS *param) throw(INTERP_KERNEL::Exception);
171     MEDFileParameterMultiTS *getParamAtPos(int i) const throw(INTERP_KERNEL::Exception);
172     MEDFileParameterMultiTS *getParamWithName(const char *paramName) const throw(INTERP_KERNEL::Exception);
173     void destroyParamAtPos(int i) throw(INTERP_KERNEL::Exception);
174     int getPosFromParamName(const char *paramName) const throw(INTERP_KERNEL::Exception);
175     int getNumberOfParams() const throw(INTERP_KERNEL::Exception);
176   protected:
177     void simpleRepr2(int bkOffset, std::ostream& oss) const;
178     MEDFileParameters(const char *fileName) throw(INTERP_KERNEL::Exception);
179     MEDFileParameters(const MEDFileParameters& other, bool deepCopy);
180     MEDFileParameters();
181   protected:
182     std::vector< MEDCouplingAutoRefCountObjectPtr<MEDFileParameterMultiTS> > _params;
183   };
184 }
185
186 #endif