Salome HOME
On the road of ParaMEDReader for fields.
[modules/med.git] / src / MEDCoupling / MEDCouplingPartDefinition.hxx
1 // Copyright (C) 2007-2014  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 __PARAMEDMEM_MEDCOUPLINGPARTDEFINITION_HXX__
22 #define __PARAMEDMEM_MEDCOUPLINGPARTDEFINITION_HXX__
23
24 #include "MEDCoupling.hxx"
25 #include "MEDCouplingMemArray.hxx"
26 #include "MEDCouplingAutoRefCountObjectPtr.hxx"
27
28 namespace ParaMEDMEM
29 {
30   class PartDefinition : public RefCountObject, public TimeLabel
31   {
32   public:
33     MEDCOUPLING_EXPORT static PartDefinition *New(int start, int stop, int step);
34     MEDCOUPLING_EXPORT static PartDefinition *New(DataArrayInt *listOfIds);
35     MEDCOUPLING_EXPORT virtual DataArrayInt *toDAI() const = 0;
36     MEDCOUPLING_EXPORT virtual int getNumberOfElems() const = 0;
37     MEDCOUPLING_EXPORT virtual PartDefinition *operator+(const PartDefinition& other) const = 0;
38     MEDCOUPLING_EXPORT virtual std::string getRepr() const = 0;
39   protected:
40     virtual ~PartDefinition();
41   };
42
43   class SlicePartDefinition;
44
45   class DataArrayPartDefinition : public PartDefinition
46   {
47   public:
48     MEDCOUPLING_EXPORT static DataArrayPartDefinition *New(DataArrayInt *listOfIds);
49     MEDCOUPLING_EXPORT DataArrayInt *toDAI() const;
50     MEDCOUPLING_EXPORT int getNumberOfElems() const;
51     MEDCOUPLING_EXPORT PartDefinition *operator+(const PartDefinition& other) const;
52     MEDCOUPLING_EXPORT std::string getRepr() const;
53   private:
54     DataArrayPartDefinition(DataArrayInt *listOfIds);
55     void checkInternalArrayOK() const;
56     static void CheckInternalArrayOK(const DataArrayInt *listOfIds);
57     MEDCOUPLING_EXPORT void updateTime() const;
58     MEDCOUPLING_EXPORT std::size_t getHeapMemorySizeWithoutChildren() const;
59     MEDCOUPLING_EXPORT std::vector<const BigMemoryObject *> getDirectChildrenWithNull() const;
60     DataArrayPartDefinition *add1(const DataArrayPartDefinition *other) const;
61     DataArrayPartDefinition *add2(const SlicePartDefinition *other) const;
62     virtual ~DataArrayPartDefinition();
63   private:
64     MEDCouplingAutoRefCountObjectPtr<DataArrayInt> _arr;
65   };
66
67   class SlicePartDefinition : public PartDefinition
68   {
69   public:
70     MEDCOUPLING_EXPORT static SlicePartDefinition *New(int start, int stop, int step);
71     MEDCOUPLING_EXPORT DataArrayInt *toDAI() const;
72     MEDCOUPLING_EXPORT int getNumberOfElems() const;
73     MEDCOUPLING_EXPORT PartDefinition *operator+(const PartDefinition& other) const;
74     MEDCOUPLING_EXPORT std::string getRepr() const;
75     //specific method
76     MEDCOUPLING_EXPORT int getEffectiveStop() const;
77     MEDCOUPLING_EXPORT void getSlice(int& start, int& stop, int& step) const;
78   private:
79     SlicePartDefinition(int start, int stop, int step);
80     MEDCOUPLING_EXPORT void updateTime() const;
81     MEDCOUPLING_EXPORT std::size_t getHeapMemorySizeWithoutChildren() const;
82     MEDCOUPLING_EXPORT std::vector<const BigMemoryObject *> getDirectChildrenWithNull() const;
83     DataArrayPartDefinition *add1(const DataArrayPartDefinition *other) const;
84     PartDefinition *add2(const SlicePartDefinition *other) const;
85     virtual ~SlicePartDefinition();
86   private:
87     int _start;
88     int _stop;
89     int _step;
90   };
91 }
92
93 #endif