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