]> SALOME platform Git repositories - tools/medcoupling.git/blob - src/MEDLoader/MEDFileEntities.hxx
Salome HOME
Refacto for integration into MEDFileFields
[tools/medcoupling.git] / src / MEDLoader / MEDFileEntities.hxx
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 #ifndef __MEDFILEENTITIES_HXX__
22 #define __MEDFILEENTITIES_HXX__
23
24 #include "MEDLoaderDefines.hxx"
25
26 #include "MEDFileStructureElement.hxx"
27
28 #include "MEDCouplingRefCountObject.hxx"
29 #include "NormalizedGeometricTypes"
30
31 namespace MEDCoupling
32 {
33   class MEDFileEntities
34   {
35   public:
36     static MEDFileEntities *BuildFrom(const std::vector< std::pair<TypeOfField,INTERP_KERNEL::NormalizedCellType> > *entities);
37     static MEDFileEntities *BuildFrom(const MEDFileStructureElements& se);
38     virtual std::vector<int> getDynGTAvail() const = 0;
39     virtual bool areAllStaticTypesPresent() const = 0;
40   };
41
42   class MEDFileStaticEntities : public MEDFileEntities
43   {
44   public:
45     MEDFileStaticEntities(const std::vector< std::pair<TypeOfField,INTERP_KERNEL::NormalizedCellType> >& entities):_entities(entities) { }
46     const std::vector< std::pair<TypeOfField,INTERP_KERNEL::NormalizedCellType> >& getEntries() const { return _entities; }
47     std::vector<int> getDynGTAvail() const;
48     bool areAllStaticTypesPresent() const;
49   private:
50     std::vector< std::pair<TypeOfField,INTERP_KERNEL::NormalizedCellType> > _entities;
51   };
52
53   class MEDFileAllStaticEntites : public MEDFileEntities
54   {
55   public:
56     MEDFileAllStaticEntites() { }
57     std::vector<int> getDynGTAvail() const;
58     bool areAllStaticTypesPresent() const;
59   };
60
61   class MEDFileAllStaticEntitiesPlusDyn : public MEDFileEntities
62   {
63   public:
64     MEDFileAllStaticEntitiesPlusDyn(const MEDFileStructureElements *se);
65     std::vector<int> getDynGTAvail() const;
66     bool areAllStaticTypesPresent() const;
67   private:
68     MCConstAuto<MEDFileStructureElements> _se;
69   };
70 }
71
72 #endif