Salome HOME
Update copyrights
[tools/medcoupling.git] / src / MEDLoader / MEDFileStructureElement.hxx
1 // Copyright (C) 2007-2019  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, or (at your option) any later version.
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 (EDF R&D)
20
21 #ifndef __MEDFILESTRUCTUREELEMENT_HXX__
22 #define __MEDFILESTRUCTUREELEMENT_HXX__
23
24 #include "MEDLoaderDefines.hxx"
25 #include "MEDFileUtilities.txx"
26 #include "MEDFileMesh.hxx"
27
28 #include "MEDCouplingRefCountObject.hxx"
29
30 namespace MEDCoupling
31 {
32   class MEDFileStructureElement;
33   class MEDFileMeshSupports;
34   class MEDFileUMesh;
35   
36   class MEDFileSEHolder
37   {
38   public:
39     std::string getModelName() const;
40     std::string getName() const;
41   protected:
42     MEDFileSEHolder(MEDFileStructureElement *father):_father(father) { }
43     void setName(const std::string& name);
44     std::size_t getHeapMemorySizeLoc() const;
45   private:
46     MEDFileStructureElement *_father;
47     std::string _name;
48   };
49   
50 class MEDFileSEConstAtt : public RefCountObject, public MEDFileWritableStandAlone, public MEDFileSEHolder
51   {
52   public:
53     static MEDFileSEConstAtt *New(med_idt fid, MEDFileStructureElement *father, int idCstAtt, const MEDFileUMesh *mesh);
54   public:
55     std::vector<const BigMemoryObject *> getDirectChildrenWithNull() const;
56     std::size_t getHeapMemorySizeWithoutChildren() const;
57     void writeLL(med_idt fid) const;
58     void setProfile(const std::string& name);
59     std::string getProfile() const;
60   private:
61     MEDFileSEConstAtt(med_idt fid, MEDFileStructureElement *father, int idCstAtt, const MEDFileUMesh *mesh);
62   private:
63     std::string _pfl;
64     TypeOfField _tof;
65     MCAuto<DataArray> _val;
66   };
67   
68   class MEDFileSEVarAtt : public RefCountObject, public MEDFileWritableStandAlone, public MEDFileSEHolder
69   {
70   public:
71     static MEDFileSEVarAtt *New(med_idt fid, MEDFileStructureElement *father, int idVarAtt);
72   public:
73     std::vector<const BigMemoryObject *> getDirectChildrenWithNull() const;
74     std::size_t getHeapMemorySizeWithoutChildren() const;
75     void writeLL(med_idt fid) const;
76     int getNbOfComponents() const { return _nb_compo; }
77     MCAuto<DataArray> getGenerator() const { return _gen; }
78   private:
79     MEDFileSEVarAtt(med_idt fid, MEDFileStructureElement *father, int idVarAtt);
80   private:
81     int _nb_compo;
82     MCAuto<DataArray> _gen;
83   };
84   
85   class MEDFileStructureElement : public RefCountObject, public MEDFileWritableStandAlone
86   {
87   public:
88     MEDLOADER_EXPORT static MEDFileStructureElement *New(med_idt fid, int idSE, const MEDFileMeshSupports *ms);
89     MEDLOADER_EXPORT std::string getName() const;
90     MEDLOADER_EXPORT int getDynGT() const;
91     MEDLOADER_EXPORT TypeOfField getEntity() const;
92     MEDLOADER_EXPORT std::string getMeshName() const;
93     MEDLOADER_EXPORT std::vector<std::string> getVarAtts() const;
94     MEDLOADER_EXPORT const MEDFileSEVarAtt *getVarAtt(const std::string& varName) const;
95   public:
96     std::vector<const BigMemoryObject *> getDirectChildrenWithNull() const;
97     std::size_t getHeapMemorySizeWithoutChildren() const;
98     void writeLL(med_idt fid) const;
99   public:
100     static MCAuto<DataArray> BuildFrom(med_attribute_type mat);
101     static int EffectiveNbCompo(med_attribute_type mat, int nbCompo);
102   private:
103     MEDFileStructureElement(med_idt fid, int idSE, const MEDFileMeshSupports *ms);
104   private:
105     int _id_type;
106     std::string _name;
107     std::string _sup_mesh_name;
108     INTERP_KERNEL::NormalizedCellType _geo_type;
109     TypeOfField _tof;
110     int _dim;
111     std::vector< MCAuto<MEDFileSEConstAtt> > _cst_att;
112     std::vector< MCAuto<MEDFileSEVarAtt> > _var_att;
113   };
114   
115   class MEDFileStructureElements : public RefCountObject, public MEDFileWritableStandAlone
116   {
117   public:
118     MEDLOADER_EXPORT static MEDFileStructureElements *New(const std::string& fileName, const MEDFileMeshSupports *ms);
119     MEDLOADER_EXPORT static MEDFileStructureElements *New(med_idt fid, const MEDFileMeshSupports *ms);
120     MEDLOADER_EXPORT static MEDFileStructureElements *New();
121     MEDLOADER_EXPORT int getNumberOf() const;
122     MEDLOADER_EXPORT std::vector<int> getDynGTAvail() const;
123     MEDLOADER_EXPORT const MEDFileStructureElement *getWithGT(int idGT) const;
124     MEDLOADER_EXPORT int getNumberOfNodesPerSE(const std::string& seName) const;
125     MEDLOADER_EXPORT const MEDFileStructureElement *getSEWithName(const std::string& seName) const;
126     MEDLOADER_EXPORT std::vector<std::string> getVarAttsOf(const std::string& seName) const;
127     MEDLOADER_EXPORT const MEDFileSEVarAtt *getVarAttOf(const std::string &seName, const std::string& varName) const;
128     MEDLOADER_EXPORT const MEDFileUMesh *getSupMeshWithName(const std::string& name) const;
129   public:
130     std::vector<const BigMemoryObject *> getDirectChildrenWithNull() const;
131     std::size_t getHeapMemorySizeWithoutChildren() const;
132     void writeLL(med_idt fid) const;
133   private:
134     MEDFileStructureElements(med_idt fid, const MEDFileMeshSupports *ms);
135     MEDFileStructureElements();
136     ~MEDFileStructureElements();
137   private:
138     std::vector< MCAuto<MEDFileStructureElement> > _elems;
139     MCConstAuto<MEDFileMeshSupports> _sup;
140   };
141 }
142
143 #endif