]> SALOME platform Git repositories - tools/medcoupling.git/blob - src/MEDLoader/MEDFileStructureElement.cxx
Salome HOME
4ef945d155ea954eef73fff399af99df15a3483d
[tools/medcoupling.git] / src / MEDLoader / MEDFileStructureElement.cxx
1 // Copyright (C) 2007-2017  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 #include "MEDFileStructureElement.hxx"
22 #include "MEDFileMeshSupport.hxx"
23 #include "MEDLoaderBase.hxx"
24 #include "MEDFileMeshLL.hxx"
25 #include "MEDFileSafeCaller.txx"
26
27 #include "InterpKernelAutoPtr.hxx"
28
29 using namespace MEDCoupling;
30
31
32 std::string MEDFileSEHolder::getModelName() const
33 {
34   return _father->getName();
35 }
36
37 void MEDFileSEHolder::setName(const std::string& name)
38 {
39   _name=name;
40 }
41
42 std::size_t MEDFileSEHolder::getHeapMemorySizeLoc() const
43 {
44   return _name.capacity();
45 }
46
47 ////////////////////
48
49 MEDFileSEConstAtt *MEDFileSEConstAtt::New(med_idt fid, MEDFileStructureElement *father, int idCstAtt, const MEDFileUMesh *mesh)
50 {
51   return new MEDFileSEConstAtt(fid,father,idCstAtt,mesh);
52 }
53
54 MEDFileSEConstAtt::MEDFileSEConstAtt(med_idt fid, MEDFileStructureElement *father, int idCstAtt, const MEDFileUMesh *mesh):MEDFileSEHolder(father)
55 {
56   std::string modelName(getModelName());
57   INTERP_KERNEL::AutoPtr<char> constattname(MEDLoaderBase::buildEmptyString(MED_NAME_SIZE)),profilename(MEDLoaderBase::buildEmptyString(MED_NAME_SIZE));
58   med_attribute_type constatttype;
59   int nbCompo;
60   med_entity_type met;
61   int pflSz;
62   MEDFILESAFECALLERRD0(MEDstructElementConstAttInfo,(fid,modelName.c_str(),idCstAtt+1,constattname,&constatttype,&nbCompo,&met,profilename,&pflSz));
63   std::string name(MEDLoaderBase::buildStringFromFortran(constattname,MED_NAME_SIZE));
64   setName(name);
65   setProfile(MEDLoaderBase::buildStringFromFortran(profilename,MED_NAME_SIZE));
66   _tof=MEDFileMesh::ConvertFromMEDFileEntity(met);
67   //
68   _val=MEDFileStructureElement::BuildFrom(constatttype);
69   nbCompo=MEDFileStructureElement::EffectiveNbCompo(constatttype,nbCompo);
70   if(pflSz==0 && getProfile().empty())
71     {
72       switch(met)
73         {
74         case MED_CELL:
75           {
76             std::vector<INTERP_KERNEL::NormalizedCellType> gt(mesh->getAllGeoTypes());
77             if(gt.size()!=1)
78               throw INTERP_KERNEL::Exception("MEDFileSEConstAtt constr : only one cell type expected !");
79             pflSz=mesh->getNumberOfCellsWithType(gt[0]);
80             break;
81           }
82         case MED_NODE:
83           {
84             pflSz=mesh->getNumberOfNodes();
85             break;
86           }
87         default:
88           throw INTERP_KERNEL::Exception("MEDFileSEConstAtt cstr : not recognized entity type !");
89         }
90     }
91   if(constatttype==MED_ATT_NAME)
92     pflSz++;
93   std::cerr << "******* " << pflSz << std::endl;
94   _val->alloc(pflSz,nbCompo);
95   MEDFILESAFECALLERRD0(MEDstructElementConstAttRd,(fid,modelName.c_str(),name.c_str(),_val->getVoidStarPointer()));
96   if(constatttype==MED_ATT_NAME)
97     { pflSz--; _val->reAlloc(pflSz); }
98 }
99
100 std::vector<const BigMemoryObject *> MEDFileSEConstAtt::getDirectChildrenWithNull() const
101 {
102   std::vector<const BigMemoryObject *> ret;
103   ret.push_back(_val);
104   return ret;
105 }
106
107 std::size_t MEDFileSEConstAtt::getHeapMemorySizeWithoutChildren() const
108 {
109   return getHeapMemorySizeLoc()+_pfl.capacity();
110 }
111
112 void MEDFileSEConstAtt::writeLL(med_idt fid) const
113 {
114 }
115
116 void MEDFileSEConstAtt::setProfile(const std::string& name)
117 {
118   _pfl=name;
119 }
120
121 std::string MEDFileSEConstAtt::getProfile() const
122 {
123   return _pfl;
124 }
125
126 ////////////////////
127
128 MEDFileSEVarAtt *MEDFileSEVarAtt::New(med_idt fid, MEDFileStructureElement *father, int idVarAtt)
129 {
130   return new MEDFileSEVarAtt(fid,father,idVarAtt);
131 }
132
133 MEDFileSEVarAtt::MEDFileSEVarAtt(med_idt fid, MEDFileStructureElement *father, int idVarAtt):MEDFileSEHolder(father)
134 {
135   std::string modelName(getModelName());
136   INTERP_KERNEL::AutoPtr<char> varattname(MEDLoaderBase::buildEmptyString(MED_NAME_SIZE)),profilename(MEDLoaderBase::buildEmptyString(MED_NAME_SIZE));
137   med_attribute_type varatttype;
138   {
139     int pflSz;
140     MEDFILESAFECALLERRD0(MEDstructElementVarAttInfo,(fid,modelName.c_str(),idVarAtt+1,varattname,&varatttype,&_nb_compo));
141   }
142   setName(MEDLoaderBase::buildStringFromFortran(varattname,MED_NAME_SIZE));
143   _gen=MEDFileStructureElement::BuildFrom(varatttype);
144   _gen->alloc(0,1);
145 }
146
147 std::vector<const BigMemoryObject *> MEDFileSEVarAtt::getDirectChildrenWithNull() const
148 {
149   return std::vector<const BigMemoryObject *>();
150 }
151
152 std::size_t MEDFileSEVarAtt::getHeapMemorySizeWithoutChildren() const
153 {
154   return getHeapMemorySizeLoc();
155 }
156
157 void MEDFileSEVarAtt::writeLL(med_idt fid) const
158 {
159 }
160
161 ////////////////////
162
163 MEDFileStructureElement *MEDFileStructureElement::New(med_idt fid, int idSE, const MEDFileMeshSupports *ms)
164 {
165   return new MEDFileStructureElement(fid,idSE,ms);
166 }
167
168 MEDFileStructureElement::MEDFileStructureElement(med_idt fid, int idSE, const MEDFileMeshSupports *ms)
169 {
170   INTERP_KERNEL::AutoPtr<char> modelName(MEDLoaderBase::buildEmptyString(MED_NAME_SIZE)),supportMeshName(MEDLoaderBase::buildEmptyString(MED_NAME_SIZE));
171   med_geometry_type sgeoType;
172   med_entity_type entiyType;
173   int nConsAttr(0),nVarAttr(0);
174   {
175     med_bool anyPfl;
176     int nnode(0),ncell(0);
177     MEDFILESAFECALLERRD0(MEDstructElementInfo,(fid,idSE+1,modelName,&_id_type,&_dim,supportMeshName,&entiyType,&nnode,&ncell,&sgeoType,&nConsAttr,&anyPfl,&nVarAttr));
178   }
179   _name=MEDLoaderBase::buildStringFromFortran(modelName,MED_NAME_SIZE);
180   _sup_mesh_name=MEDLoaderBase::buildStringFromFortran(supportMeshName,MED_NAME_SIZE);
181   _geo_type=MEDFileMesh::ConvertFromMEDFileGeoType(sgeoType);
182   _cst_att.resize(nConsAttr);
183   for(int i=0;i<nConsAttr;i++)
184     _cst_att[i]=MEDFileSEConstAtt::New(fid,this,i,ms->getSupMeshWithName(_sup_mesh_name));
185   _var_att.resize(nVarAttr);
186   for(int i=0;i<nVarAttr;i++)
187     _var_att[i]=MEDFileSEVarAtt::New(fid,this,i);
188 }
189
190 std::vector<const BigMemoryObject *> MEDFileStructureElement::getDirectChildrenWithNull() const
191 {
192   std::vector<const BigMemoryObject *> ret;
193   for(std::vector< MCAuto<MEDFileSEConstAtt> >::const_iterator it=_cst_att.begin();it!=_cst_att.end();it++)
194     ret.push_back(*it);
195   for(std::vector< MCAuto<MEDFileSEVarAtt> >::const_iterator it=_var_att.begin();it!=_var_att.end();it++)
196     ret.push_back(*it);
197   return ret;
198 }
199
200 std::size_t MEDFileStructureElement::getHeapMemorySizeWithoutChildren() const
201 {
202   return _name.capacity()+_cst_att.capacity()*sizeof(MCAuto<MEDFileSEConstAtt>)+_var_att.capacity()*sizeof(MCAuto<MEDFileSEVarAtt>);
203 }
204
205 void MEDFileStructureElement::writeLL(med_idt fid) const
206 {
207 }
208
209 std::string MEDFileStructureElement::getName() const
210 {
211   return _name;
212 }
213
214 MCAuto<DataArray> MEDFileStructureElement::BuildFrom(med_attribute_type mat)
215 {
216   MCAuto<DataArray> ret;
217   switch(mat)
218     {
219     case MED_ATT_INT:
220       {
221         ret=DataArrayInt::New();
222         break;
223       }
224     case MED_ATT_FLOAT64:
225       {
226         ret=DataArrayDouble::New();
227         break;
228       }
229     case MED_ATT_NAME:
230       {
231         ret=DataArrayAsciiChar::New();
232         break;
233       }
234     default:
235       throw INTERP_KERNEL::Exception("MEDFileStructureElement::BuildFrom : not recognized type ! Only INT and FLOAT64 !");
236     }
237   return ret;
238 }
239
240 int MEDFileStructureElement::EffectiveNbCompo(med_attribute_type mat, int nbCompo)
241 {
242   switch(mat)
243     {
244     case MED_ATT_INT:
245     case MED_ATT_FLOAT64:
246       return nbCompo;
247     case MED_ATT_NAME:
248       return nbCompo*MED_NAME_SIZE;
249     default:
250       throw INTERP_KERNEL::Exception("MEDFileStructureElement::BuildFrom : not recognized type ! Only INT and FLOAT64 !");
251     }
252 }
253
254 ////////////////////
255
256 MEDFileStructureElements *MEDFileStructureElements::New(med_idt fid, const MEDFileMeshSupports *ms)
257 {
258   return new MEDFileStructureElements(fid,ms);
259 }
260
261 MEDFileStructureElements *MEDFileStructureElements::New()
262 {
263   return new MEDFileStructureElements;
264 }
265
266 std::vector<const BigMemoryObject *> MEDFileStructureElements::getDirectChildrenWithNull() const
267 {
268   std::vector<const BigMemoryObject *> ret;
269   for(std::vector< MCAuto<MEDFileStructureElement> >::const_iterator it=_elems.begin();it!=_elems.end();it++)
270     ret.push_back(*it);
271   return ret;
272 }
273
274 std::size_t MEDFileStructureElements::getHeapMemorySizeWithoutChildren() const
275 {
276   return _elems.capacity()*sizeof(MEDFileStructureElement);
277 }
278
279 void MEDFileStructureElements::writeLL(med_idt fid) const
280 {
281 }
282
283 MEDFileStructureElements::MEDFileStructureElements(med_idt fid, const MEDFileMeshSupports *ms)
284 {
285   int nbSE(MEDnStructElement(fid));
286   _elems.resize(nbSE);
287   for(int i=0;i<nbSE;i++)
288     _elems[i]=MEDFileStructureElement::New(fid,i,ms);
289 }
290
291 MEDFileStructureElements::MEDFileStructureElements()
292 {
293 }
294
295 MEDFileStructureElements::~MEDFileStructureElements()
296 {
297 }
298