Salome HOME
Adding support for int64 field in basic api
[tools/medcoupling.git] / src / MEDLoader / MEDFileEntities.cxx
1 // Copyright (C) 2007-2021  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 "MEDFileEntities.hxx"
22
23 using namespace MEDCoupling;
24
25 MEDFileEntities *MEDFileEntities::BuildFrom(const std::vector< std::pair<TypeOfField,INTERP_KERNEL::NormalizedCellType> > *entities)
26 {
27   if(!entities)
28     return new MEDFileAllStaticEntites;
29   else
30     return new MEDFileStaticEntities(*entities);
31 }
32
33 MEDFileEntities *MEDFileEntities::BuildFrom(const MEDFileStructureElements& se)
34 {
35   if(se.getNumberOf()==0)
36     return new MEDFileAllStaticEntites;
37   else
38     return new MEDFileAllStaticEntitiesPlusDyn(&se);
39 }
40
41 MEDFileEntities::~MEDFileEntities()
42 {
43 }
44
45 //////////////
46
47 std::vector<int> MEDFileStaticEntities::getDynGTAvail() const
48 {
49   return std::vector<int>();
50 }
51
52 bool MEDFileStaticEntities::areAllStaticTypesPresent() const
53 {
54   return false;
55 }
56
57 bool MEDFileStaticEntities::areAllStaticPresentAndNoDyn() const
58 {
59   return false;
60 }
61
62 //////////////
63
64
65 std::vector<int> MEDFileAllStaticEntites::getDynGTAvail() const
66 {
67   return std::vector<int>();
68 }
69
70 bool MEDFileAllStaticEntites::areAllStaticTypesPresent() const
71 {
72   return true;
73 }
74
75 bool MEDFileAllStaticEntites::areAllStaticPresentAndNoDyn() const
76 {
77   return true;
78 }
79
80 //////////////
81
82 MEDFileAllStaticEntitiesPlusDyn::MEDFileAllStaticEntitiesPlusDyn(const MEDFileStructureElements *se):_se(se)
83 {
84   if(se)
85     se->incrRef();
86 }
87
88 std::vector<int> MEDFileAllStaticEntitiesPlusDyn::getDynGTAvail() const
89 {
90   return _se->getDynGTAvail();
91 }
92
93 bool MEDFileAllStaticEntitiesPlusDyn::areAllStaticTypesPresent() const
94 {
95   return true;
96 }
97
98 bool MEDFileAllStaticEntitiesPlusDyn::areAllStaticPresentAndNoDyn() const
99 {
100   return false;
101 }
102
103 const MEDFileStructureElement *MEDFileAllStaticEntitiesPlusDyn::getWithGT(int idGT) const
104 {
105   return _se->getWithGT(idGT);
106 }
107
108 const MEDFileUMesh *MEDFileAllStaticEntitiesPlusDyn::getSupMeshWithName(const std::string& name) const
109 {
110   return _se->getSupMeshWithName(name);
111 }