Salome HOME
5499eb544defe1b6787bf8681071278a0ccda99f
[tools/medcoupling.git] / src / MEDCoupling / MEDCouplingPartDefinition.hxx
1 // Copyright (C) 2007-2016  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 "MCAuto.hxx"
27
28 namespace MEDCoupling
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 static PartDefinition *Unserialize(std::vector<int>& tinyInt, std::vector< MCAuto<DataArrayInt> >& bigArraysI);
36     MEDCOUPLING_EXPORT virtual bool isEqual(const PartDefinition *other, std::string& what) const = 0;
37     MEDCOUPLING_EXPORT virtual PartDefinition *deepCopy() const = 0;
38     MEDCOUPLING_EXPORT virtual DataArrayInt *toDAI() const = 0;
39     MEDCOUPLING_EXPORT virtual int getNumberOfElems() const = 0;
40     MEDCOUPLING_EXPORT virtual PartDefinition *operator+(const PartDefinition& other) const = 0;
41     MEDCOUPLING_EXPORT virtual std::string getRepr() const = 0;
42     MEDCOUPLING_EXPORT virtual PartDefinition *composeWith(const PartDefinition *other) const = 0;
43     MEDCOUPLING_EXPORT virtual void checkConsistencyLight() const = 0;
44     MEDCOUPLING_EXPORT virtual PartDefinition *tryToSimplify() const = 0;
45     MEDCOUPLING_EXPORT virtual void serialize(std::vector<int>& tinyInt, std::vector< MCAuto<DataArrayInt> >& bigArraysI) const = 0;
46   protected:
47     virtual ~PartDefinition();
48   };
49
50   class SlicePartDefinition;
51
52   class DataArrayPartDefinition : public PartDefinition
53   {
54   public:
55     MEDCOUPLING_EXPORT static DataArrayPartDefinition *New(DataArrayInt *listOfIds);
56     MEDCOUPLING_EXPORT bool isEqual(const PartDefinition *other, std::string& what) const;
57     MEDCOUPLING_EXPORT DataArrayPartDefinition *deepCopy() const;
58     MEDCOUPLING_EXPORT DataArrayInt *toDAI() const;
59     MEDCOUPLING_EXPORT int getNumberOfElems() const;
60     MEDCOUPLING_EXPORT PartDefinition *operator+(const PartDefinition& other) const;
61     MEDCOUPLING_EXPORT std::string getRepr() const;
62     MEDCOUPLING_EXPORT PartDefinition *composeWith(const PartDefinition *other) const;
63     MEDCOUPLING_EXPORT void checkConsistencyLight() const;
64     MEDCOUPLING_EXPORT PartDefinition *tryToSimplify() const;
65     MEDCOUPLING_EXPORT void serialize(std::vector<int>& tinyInt, std::vector< MCAuto<DataArrayInt> >& bigArraysI) const;
66   private:
67     DataArrayPartDefinition(DataArrayInt *listOfIds);
68     void checkInternalArrayOK() const;
69     static void CheckInternalArrayOK(const DataArrayInt *listOfIds);
70     MEDCOUPLING_EXPORT void updateTime() const;
71     MEDCOUPLING_EXPORT std::size_t getHeapMemorySizeWithoutChildren() const;
72     MEDCOUPLING_EXPORT std::vector<const BigMemoryObject *> getDirectChildrenWithNull() const;
73     DataArrayPartDefinition *add1(const DataArrayPartDefinition *other) const;
74     DataArrayPartDefinition *add2(const SlicePartDefinition *other) const;
75     virtual ~DataArrayPartDefinition();
76   private:
77     MCAuto<DataArrayInt> _arr;
78   };
79
80   class SlicePartDefinition : public PartDefinition
81   {
82   public:
83     MEDCOUPLING_EXPORT static SlicePartDefinition *New(int start, int stop, int step);
84     MEDCOUPLING_EXPORT bool isEqual(const PartDefinition *other, std::string& what) const;
85     MEDCOUPLING_EXPORT SlicePartDefinition *deepCopy() const;
86     MEDCOUPLING_EXPORT DataArrayInt *toDAI() const;
87     MEDCOUPLING_EXPORT int getNumberOfElems() const;
88     MEDCOUPLING_EXPORT PartDefinition *operator+(const PartDefinition& other) const;
89     MEDCOUPLING_EXPORT std::string getRepr() const;
90     MEDCOUPLING_EXPORT PartDefinition *composeWith(const PartDefinition *other) const;
91     MEDCOUPLING_EXPORT void checkConsistencyLight() const;
92     MEDCOUPLING_EXPORT PartDefinition *tryToSimplify() const;
93     MEDCOUPLING_EXPORT void serialize(std::vector<int>& tinyInt, std::vector< MCAuto<DataArrayInt> >& bigArraysI) const;
94     //specific method
95     MEDCOUPLING_EXPORT int getEffectiveStop() const;
96     MEDCOUPLING_EXPORT void getSlice(int& start, int& stop, int& step) const;
97   private:
98     SlicePartDefinition(int start, int stop, int step);
99     MEDCOUPLING_EXPORT void updateTime() const;
100     MEDCOUPLING_EXPORT std::size_t getHeapMemorySizeWithoutChildren() const;
101     MEDCOUPLING_EXPORT std::vector<const BigMemoryObject *> getDirectChildrenWithNull() const;
102     DataArrayPartDefinition *add1(const DataArrayPartDefinition *other) const;
103     PartDefinition *add2(const SlicePartDefinition *other) const;
104     virtual ~SlicePartDefinition();
105   private:
106     int _start;
107     int _stop;
108     int _step;
109   };
110 }
111
112 #endif