1 // Copyright (C) 2007-2021 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 (EDF R&D)
21 #ifndef __MEDFILESTRUCTUREELEMENT_HXX__
22 #define __MEDFILESTRUCTUREELEMENT_HXX__
24 #include "MEDLoaderDefines.hxx"
25 #include "MEDFileUtilities.txx"
26 #include "MEDFileMesh.hxx"
28 #include "MEDCouplingRefCountObject.hxx"
32 class MEDFileStructureElement;
33 class MEDFileMeshSupports;
39 std::string getModelName() const;
40 std::string getName() const;
42 MEDFileSEHolder(MEDFileStructureElement *father):_father(father) { }
43 void setName(const std::string& name);
44 std::size_t getHeapMemorySizeLoc() const;
46 MEDFileStructureElement *_father;
50 class MEDFileSEConstAtt : public RefCountObject, public MEDFileWritableStandAlone, public MEDFileSEHolder
53 static MEDFileSEConstAtt *New(med_idt fid, MEDFileStructureElement *father, int idCstAtt, const MEDFileUMesh *mesh);
55 std::string getClassName() const override { return std::string("MEDFileSEConstAtt"); }
56 std::vector<const BigMemoryObject *> getDirectChildrenWithNull() const;
57 std::size_t getHeapMemorySizeWithoutChildren() const;
58 void writeLL(med_idt fid) const;
59 void setProfile(const std::string& name);
60 std::string getProfile() const;
62 MEDFileSEConstAtt(med_idt fid, MEDFileStructureElement *father, int idCstAtt, const MEDFileUMesh *mesh);
66 MCAuto<DataArray> _val;
69 class MEDFileSEVarAtt : public RefCountObject, public MEDFileWritableStandAlone, public MEDFileSEHolder
72 static MEDFileSEVarAtt *New(med_idt fid, MEDFileStructureElement *father, int idVarAtt);
74 std::string getClassName() const override { return std::string("MEDFileSEVarAtt"); }
75 std::vector<const BigMemoryObject *> getDirectChildrenWithNull() const;
76 std::size_t getHeapMemorySizeWithoutChildren() const;
77 void writeLL(med_idt fid) const;
78 int getNbOfComponents() const { return _nb_compo; }
79 MCAuto<DataArray> getGenerator() const { return _gen; }
81 MEDFileSEVarAtt(med_idt fid, MEDFileStructureElement *father, int idVarAtt);
84 MCAuto<DataArray> _gen;
87 class MEDFileStructureElement : public RefCountObject, public MEDFileWritableStandAlone
90 MEDLOADER_EXPORT static MEDFileStructureElement *New(med_idt fid, int idSE, const MEDFileMeshSupports *ms);
91 MEDLOADER_EXPORT std::string getName() const;
92 MEDLOADER_EXPORT int getDynGT() const;
93 MEDLOADER_EXPORT TypeOfField getEntity() const;
94 MEDLOADER_EXPORT std::string getMeshName() const;
95 MEDLOADER_EXPORT std::vector<std::string> getVarAtts() const;
96 MEDLOADER_EXPORT const MEDFileSEVarAtt *getVarAtt(const std::string& varName) const;
97 MEDLOADER_EXPORT std::string getClassName() const override { return std::string("MEDFileStructureElement"); }
99 std::vector<const BigMemoryObject *> getDirectChildrenWithNull() const;
100 std::size_t getHeapMemorySizeWithoutChildren() const;
101 void writeLL(med_idt fid) const;
103 static MCAuto<DataArray> BuildFrom(med_attribute_type mat);
104 static int EffectiveNbCompo(med_attribute_type mat, int nbCompo);
106 MEDFileStructureElement(med_idt fid, int idSE, const MEDFileMeshSupports *ms);
110 std::string _sup_mesh_name;
111 INTERP_KERNEL::NormalizedCellType _geo_type;
114 std::vector< MCAuto<MEDFileSEConstAtt> > _cst_att;
115 std::vector< MCAuto<MEDFileSEVarAtt> > _var_att;
118 class MEDFileStructureElements : public RefCountObject, public MEDFileWritableStandAlone
121 MEDLOADER_EXPORT static MEDFileStructureElements *New(const std::string& fileName, const MEDFileMeshSupports *ms);
122 MEDLOADER_EXPORT static MEDFileStructureElements *New(med_idt fid, const MEDFileMeshSupports *ms);
123 MEDLOADER_EXPORT static MEDFileStructureElements *New();
124 MEDLOADER_EXPORT std::string getClassName() const override { return std::string("MEDFileStructureElements"); }
125 MEDLOADER_EXPORT int getNumberOf() const;
126 MEDLOADER_EXPORT std::vector<int> getDynGTAvail() const;
127 MEDLOADER_EXPORT const MEDFileStructureElement *getWithGT(int idGT) const;
128 MEDLOADER_EXPORT mcIdType getNumberOfNodesPerSE(const std::string& seName) const;
129 MEDLOADER_EXPORT const MEDFileStructureElement *getSEWithName(const std::string& seName) const;
130 MEDLOADER_EXPORT std::vector<std::string> getVarAttsOf(const std::string& seName) const;
131 MEDLOADER_EXPORT const MEDFileSEVarAtt *getVarAttOf(const std::string &seName, const std::string& varName) const;
132 MEDLOADER_EXPORT const MEDFileUMesh *getSupMeshWithName(const std::string& name) const;
134 std::vector<const BigMemoryObject *> getDirectChildrenWithNull() const;
135 std::size_t getHeapMemorySizeWithoutChildren() const;
136 void writeLL(med_idt fid) const;
138 MEDFileStructureElements(med_idt fid, const MEDFileMeshSupports *ms);
139 MEDFileStructureElements();
140 ~MEDFileStructureElements();
142 std::vector< MCAuto<MEDFileStructureElement> > _elems;
143 MCConstAuto<MEDFileMeshSupports> _sup;