Salome HOME
Refacto for integration into MEDFileFields
[tools/medcoupling.git] / src / MEDLoader / MEDFileEntities.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 "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 //////////////
42
43 std::vector<int> MEDFileStaticEntities::getDynGTAvail() const
44 {
45   return std::vector<int>();
46 }
47
48 bool MEDFileStaticEntities::areAllStaticTypesPresent() const
49 {
50   return false;
51 }
52
53 //////////////
54
55
56 std::vector<int> MEDFileAllStaticEntites::getDynGTAvail() const
57 {
58   return std::vector<int>();
59 }
60
61 bool MEDFileAllStaticEntites::areAllStaticTypesPresent() const
62 {
63   return true;
64 }
65
66 //////////////
67
68 MEDFileAllStaticEntitiesPlusDyn::MEDFileAllStaticEntitiesPlusDyn(const MEDFileStructureElements *se):_se(se)
69 {
70   if(se)
71     se->incrRef();
72 }
73
74 std::vector<int> MEDFileAllStaticEntitiesPlusDyn::getDynGTAvail() const
75 {
76   return _se->getDynGTAvail();
77 }
78
79 bool MEDFileAllStaticEntitiesPlusDyn::areAllStaticTypesPresent() const
80 {
81   return true;
82 }