Salome HOME
2558bc45e7154f68c9587bfca7694d3014ce356d
[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 MEDLOADER_EXPORT 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     virtual ~MEDFileEntities();
41   };
42
43   class MEDLOADER_EXPORT MEDFileStaticEntities : public MEDFileEntities
44   {
45   public:
46     MEDFileStaticEntities(const std::vector< std::pair<TypeOfField,INTERP_KERNEL::NormalizedCellType> >& entities):_entities(entities) { }
47     const std::vector< std::pair<TypeOfField,INTERP_KERNEL::NormalizedCellType> >& getEntries() const { return _entities; }
48     std::vector<int> getDynGTAvail() const;
49     bool areAllStaticTypesPresent() const;
50   private:
51     std::vector< std::pair<TypeOfField,INTERP_KERNEL::NormalizedCellType> > _entities;
52   };
53
54   class MEDLOADER_EXPORT MEDFileAllStaticEntites : public MEDFileEntities
55   {
56   public:
57     MEDFileAllStaticEntites() { }
58     std::vector<int> getDynGTAvail() const;
59     bool areAllStaticTypesPresent() const;
60   };
61
62   class MEDLOADER_EXPORT MEDFileAllStaticEntitiesPlusDyn : public MEDFileEntities
63   {
64   public:
65     MEDFileAllStaticEntitiesPlusDyn(const MEDFileStructureElements *se);
66     std::vector<int> getDynGTAvail() const;
67     bool areAllStaticTypesPresent() const;
68     const MEDFileStructureElement *getWithGT(int idGT) const;
69     const MEDFileUMesh *getSupMeshWithName(const std::string& name) const;
70   private:
71     MCConstAuto<MEDFileStructureElements> _se;
72   };
73 }
74
75 #endif