Salome HOME
Implementation of planar symmetry + aggregation methods for MEDFileData+MEDFileUMesh
[tools/medcoupling.git] / src / MEDCoupling / MEDCouplingMemArray.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 (CEA/DEN)
20
21 #ifndef __MEDCOUPLING_MEDCOUPLINGMEMARRAY_HXX__
22 #define __MEDCOUPLING_MEDCOUPLINGMEMARRAY_HXX__
23
24 #include "MEDCoupling.hxx"
25 #include "MCAuto.hxx"
26 #include "MEDCouplingTimeLabel.hxx"
27 #include "MEDCouplingRefCountObject.hxx"
28 #include "InterpKernelException.hxx"
29 #include "MEDCouplingTraits.hxx"
30 #include "BBTreePts.txx"
31
32 #include <string>
33 #include <vector>
34 #include <iterator>
35
36 namespace MEDCoupling
37 {
38   typedef enum
39     {
40       AX_CART = 3,
41       AX_CYL = 4,
42       AX_SPHER = 5
43     } MEDCouplingAxisType;
44   // -- WARNING this enum must be synchronized with MEDCouplingCommon.i file ! --
45
46   template<class T>
47   class MEDCouplingPointer
48   {
49   public:
50     MEDCouplingPointer():_internal(0),_external(0) { }
51     void null() { _internal=0; _external=0; }
52     bool isNull() const { return _internal==0 && _external==0; }
53     void setInternal(T *pointer);
54     void setExternal(const T *pointer);
55     const T *getConstPointer() const { if(_internal) return _internal; else return _external; }
56     const T *getConstPointerLoc(std::size_t offset) const { if(_internal) return _internal+offset; else return _external+offset; }
57     T *getPointer() { if(_internal) return _internal; if(_external) throw INTERP_KERNEL::Exception("Trying to write on an external pointer."); else return 0; }
58   private:
59     T *_internal;
60     const T *_external;
61   };
62
63   template<class T>
64   class MemArray
65   {
66   public:
67     typedef void (*Deallocator)(void *,void *);
68   public:
69     MemArray():_nb_of_elem(0),_nb_of_elem_alloc(0),_ownership(false),_dealloc(0),_param_for_deallocator(0) { }
70     MemArray(const MemArray<T>& other);
71     bool isNull() const { return _pointer.isNull(); }
72     const T *getConstPointerLoc(std::size_t offset) const { return _pointer.getConstPointerLoc(offset); }
73     const T *getConstPointer() const { return _pointer.getConstPointer(); }
74     std::size_t getNbOfElem() const { return _nb_of_elem; }
75     std::size_t getNbOfElemAllocated() const { return _nb_of_elem_alloc; }
76     T *getPointer() { return _pointer.getPointer(); }
77     MemArray<T> &operator=(const MemArray<T>& other);
78     T operator[](std::size_t id) const { return _pointer.getConstPointer()[id]; }
79     T& operator[](std::size_t id) { return _pointer.getPointer()[id]; }
80     bool isEqual(const MemArray<T>& other, T prec, std::string& reason) const;
81     void repr(int sl, std::ostream& stream) const;
82     bool reprHeader(int sl, std::ostream& stream) const;
83     void reprZip(int sl, std::ostream& stream) const;
84     void reprNotTooLong(int sl, std::ostream& stream) const;
85     void fillWithValue(const T& val);
86     T *fromNoInterlace(int nbOfComp) const;
87     T *toNoInterlace(int nbOfComp) const;
88     void sort(bool asc);
89     void reverse(int nbOfComp);
90     void alloc(std::size_t nbOfElements);
91     void reserve(std::size_t newNbOfElements);
92     void reAlloc(std::size_t newNbOfElements);
93     void useArray(const T *array, bool ownership, DeallocType type, std::size_t nbOfElem);
94     void useExternalArrayWithRWAccess(const T *array, std::size_t nbOfElem);
95     void writeOnPlace(std::size_t id, T element0, const T *others, std::size_t sizeOfOthers);
96     template<class InputIterator>
97     void insertAtTheEnd(InputIterator first, InputIterator last);
98     void pushBack(T elem);
99     T popBack();
100     void pack() const;
101     bool isDeallocatorCalled() const { return _ownership; }
102     Deallocator getDeallocator() const { return _dealloc; }
103     void setSpecificDeallocator(Deallocator dealloc) { _dealloc=dealloc; }
104     void setParameterForDeallocator(void *param) { _param_for_deallocator=param; }
105     void *getParameterForDeallocator() const { return _param_for_deallocator; }
106     void destroy();
107     ~MemArray() { destroy(); }
108   public:
109     static void CPPDeallocator(void *pt, void *param);
110     static void CDeallocator(void *pt, void *param);
111   private:
112     static void DestroyPointer(T *pt, Deallocator dealloc, void *param);
113     static Deallocator BuildFromType(DeallocType type);
114   private:
115     std::size_t _nb_of_elem;
116     std::size_t _nb_of_elem_alloc;
117     bool _ownership;
118     MEDCouplingPointer<T> _pointer;
119     Deallocator _dealloc;
120     void *_param_for_deallocator;
121   };
122
123   class DataArrayInt;
124   class DataArrayByte;
125
126   class DataArray : public RefCountObject, public TimeLabel
127   {
128   public:
129     MEDCOUPLING_EXPORT std::size_t getHeapMemorySizeWithoutChildren() const;
130     MEDCOUPLING_EXPORT std::vector<const BigMemoryObject *> getDirectChildrenWithNull() const;
131     MEDCOUPLING_EXPORT void setName(const std::string& name);
132     MEDCOUPLING_EXPORT void copyStringInfoFrom(const DataArray& other);
133     MEDCOUPLING_EXPORT void copyPartOfStringInfoFrom(const DataArray& other, const std::vector<int>& compoIds);
134     MEDCOUPLING_EXPORT void copyPartOfStringInfoFrom2(const std::vector<int>& compoIds, const DataArray& other);
135     MEDCOUPLING_EXPORT bool areInfoEqualsIfNotWhy(const DataArray& other, std::string& reason) const;
136     MEDCOUPLING_EXPORT bool areInfoEquals(const DataArray& other) const;
137     MEDCOUPLING_EXPORT std::string cppRepr(const std::string& varName) const;
138     MEDCOUPLING_EXPORT std::string getName() const { return _name; }
139     MEDCOUPLING_EXPORT const std::vector<std::string> &getInfoOnComponents() const { return _info_on_compo; }
140     MEDCOUPLING_EXPORT std::vector<std::string> &getInfoOnComponents() { return _info_on_compo; }
141     MEDCOUPLING_EXPORT void setInfoOnComponents(const std::vector<std::string>& info);
142     MEDCOUPLING_EXPORT void setInfoAndChangeNbOfCompo(const std::vector<std::string>& info);
143     MEDCOUPLING_EXPORT std::vector<std::string> getVarsOnComponent() const;
144     MEDCOUPLING_EXPORT std::vector<std::string> getUnitsOnComponent() const;
145     MEDCOUPLING_EXPORT std::string getInfoOnComponent(int i) const;
146     MEDCOUPLING_EXPORT std::string getVarOnComponent(int i) const;
147     MEDCOUPLING_EXPORT std::string getUnitOnComponent(int i) const;
148     MEDCOUPLING_EXPORT void setInfoOnComponent(int i, const std::string& info);
149     MEDCOUPLING_EXPORT int getNumberOfComponents() const { return (int)_info_on_compo.size(); }
150     MEDCOUPLING_EXPORT void setPartOfValuesBase3(const DataArray *aBase, const int *bgTuples, const int *endTuples, int bgComp, int endComp, int stepComp, bool strictCompoCompare=true);
151     MEDCOUPLING_EXPORT virtual DataArray *deepCopy() const = 0;
152     MEDCOUPLING_EXPORT virtual DataArray *buildNewEmptyInstance() const = 0;
153     MEDCOUPLING_EXPORT virtual bool isAllocated() const = 0;
154     MEDCOUPLING_EXPORT virtual void checkAllocated() const = 0;
155     MEDCOUPLING_EXPORT virtual void desallocate() = 0;
156     MEDCOUPLING_EXPORT virtual int getNumberOfTuples() const = 0;
157     MEDCOUPLING_EXPORT virtual std::size_t getNbOfElems() const = 0;
158     MEDCOUPLING_EXPORT virtual std::size_t getNbOfElemAllocated() const = 0;
159     MEDCOUPLING_EXPORT virtual void alloc(int nbOfTuple, int nbOfCompo=1) = 0;
160     MEDCOUPLING_EXPORT virtual void reAlloc(int newNbOfTuple) = 0;
161     MEDCOUPLING_EXPORT virtual void renumberInPlace(const int *old2New) = 0;
162     MEDCOUPLING_EXPORT virtual void renumberInPlaceR(const int *new2Old) = 0;
163     MEDCOUPLING_EXPORT virtual void setContigPartOfSelectedValues(int tupleIdStart, const DataArray *aBase, const DataArrayInt *tuplesSelec) = 0;
164     MEDCOUPLING_EXPORT virtual void setContigPartOfSelectedValuesSlice(int tupleIdStart, const DataArray *aBase, int bg, int end2, int step) = 0;
165     MEDCOUPLING_EXPORT virtual DataArray *selectByTupleRanges(const std::vector<std::pair<int,int> >& ranges) const = 0;
166     MEDCOUPLING_EXPORT virtual DataArray *keepSelectedComponents(const std::vector<int>& compoIds) const = 0;
167     MEDCOUPLING_EXPORT virtual DataArray *selectByTupleId(const int *new2OldBg, const int *new2OldEnd) const = 0;
168     MEDCOUPLING_EXPORT virtual DataArray *selectByTupleIdSafe(const int *new2OldBg, const int *new2OldEnd) const = 0;
169     MEDCOUPLING_EXPORT virtual DataArray *selectByTupleIdSafeSlice(int bg, int end2, int step) const = 0;
170     MEDCOUPLING_EXPORT virtual void rearrange(int newNbOfCompo) = 0;
171     MEDCOUPLING_EXPORT void checkNbOfTuples(int nbOfTuples, const std::string& msg) const;
172     MEDCOUPLING_EXPORT void checkNbOfComps(int nbOfCompo, const std::string& msg) const;
173     MEDCOUPLING_EXPORT void checkNbOfTuplesAndComp(const DataArray& other, const std::string& msg) const;
174     MEDCOUPLING_EXPORT void checkNbOfTuplesAndComp(int nbOfTuples, int nbOfCompo, const std::string& msg) const;
175     MEDCOUPLING_EXPORT void checkNbOfElems(std::size_t nbOfElems, const std::string& msg) const;
176     MEDCOUPLING_EXPORT static void GetSlice(int start, int stop, int step, int sliceId, int nbOfSlices, int& startSlice, int& stopSlice);
177     MEDCOUPLING_EXPORT static int GetNumberOfItemGivenBES(int begin, int end, int step, const std::string& msg);
178     MEDCOUPLING_EXPORT static int GetNumberOfItemGivenBESRelative(int begin, int end, int step, const std::string& msg);
179     MEDCOUPLING_EXPORT static int GetPosOfItemGivenBESRelativeNoThrow(int value, int begin, int end, int step);
180     MEDCOUPLING_EXPORT static std::string GetVarNameFromInfo(const std::string& info);
181     MEDCOUPLING_EXPORT static std::string GetUnitFromInfo(const std::string& info);
182     MEDCOUPLING_EXPORT static std::string BuildInfoFromVarAndUnit(const std::string& var, const std::string& unit);
183     MEDCOUPLING_EXPORT static std::string GetAxisTypeRepr(MEDCouplingAxisType at);
184     MEDCOUPLING_EXPORT static DataArray *Aggregate(const std::vector<const DataArray *>& arrs);
185     MEDCOUPLING_EXPORT virtual void reprStream(std::ostream& stream) const = 0;
186     MEDCOUPLING_EXPORT virtual void reprZipStream(std::ostream& stream) const = 0;
187     MEDCOUPLING_EXPORT virtual void reprWithoutNameStream(std::ostream& stream) const;
188     MEDCOUPLING_EXPORT virtual void reprZipWithoutNameStream(std::ostream& stream) const = 0;
189     MEDCOUPLING_EXPORT virtual void reprCppStream(const std::string& varName, std::ostream& stream) const = 0;
190     MEDCOUPLING_EXPORT virtual void reprQuickOverview(std::ostream& stream) const = 0;
191     MEDCOUPLING_EXPORT virtual void reprQuickOverviewData(std::ostream& stream, std::size_t maxNbOfByteInRepr) const = 0;
192   protected:
193     DataArray() { }
194     ~DataArray() { }
195   protected:
196     MEDCOUPLING_EXPORT static void CheckValueInRange(int ref, int value, const std::string& msg);
197     MEDCOUPLING_EXPORT static void CheckValueInRangeEx(int value, int start, int end, const std::string& msg);
198     MEDCOUPLING_EXPORT static void CheckClosingParInRange(int ref, int value, const std::string& msg);
199   protected:
200     std::string _name;
201     std::vector<std::string> _info_on_compo;
202   };
203 }
204
205 namespace MEDCoupling
206 {
207   class DataArrayInt;
208
209   template<class T>
210   class DataArrayTemplate : public DataArray
211   {
212   public:
213     std::size_t getHeapMemorySizeWithoutChildren() const;
214     //
215     MEDCOUPLING_EXPORT int getNumberOfTuples() const { return _info_on_compo.empty()?0:_mem.getNbOfElem()/getNumberOfComponents(); }
216     MEDCOUPLING_EXPORT std::size_t getNbOfElems() const { return _mem.getNbOfElem(); }
217     bool empty() const;
218     MEDCOUPLING_EXPORT const T *getConstPointer() const { return _mem.getConstPointer(); }
219     MEDCOUPLING_EXPORT const T *begin() const { return getConstPointer(); }
220     MEDCOUPLING_EXPORT const T *end() const { return getConstPointer()+getNbOfElems(); }
221     void alloc(int nbOfTuple, int nbOfCompo=1);
222     void useArray(const T *array, bool ownership, DeallocType type, int nbOfTuple, int nbOfCompo);
223     void useExternalArrayWithRWAccess(const T *array, int nbOfTuple, int nbOfCompo);
224     T getIJSafe(int tupleId, int compoId) const;
225     MEDCOUPLING_EXPORT T getIJ(int tupleId, int compoId) const { return _mem[tupleId*_info_on_compo.size()+compoId]; }
226     MEDCOUPLING_EXPORT void setIJ(int tupleId, int compoId, T newVal) { _mem[tupleId*_info_on_compo.size()+compoId]=newVal; declareAsNew(); }
227     MEDCOUPLING_EXPORT void setIJSilent(int tupleId, int compoId, T newVal) { _mem[tupleId*_info_on_compo.size()+compoId]=newVal; }
228     MEDCOUPLING_EXPORT T *getPointer() { return _mem.getPointer(); declareAsNew(); }
229     void pack() const;
230     bool isAllocated() const;
231     void checkAllocated() const;
232     void desallocate();
233     void reserve(std::size_t nbOfElems);
234     void rearrange(int newNbOfCompo);
235     void transpose();
236     void pushBackSilent(T val);
237     void pushBackValsSilent(const T *valsBg, const T *valsEnd);
238     T popBackSilent();
239     T front() const;
240     T back() const;
241     std::size_t getNbOfElemAllocated() const { return _mem.getNbOfElemAllocated(); }
242     void allocIfNecessary(int nbOfTuple, int nbOfCompo);
243     void deepCopyFrom(const DataArrayTemplate<T>& other);
244     void reverse();
245     void fillWithValue(T val);
246     void reAlloc(int newNbOfTuple);
247     void renumberInPlace(const int *old2New);
248     void renumberInPlaceR(const int *new2Old);
249     void sort(bool asc=true);
250     typename Traits<T>::ArrayType *renumber(const int *old2New) const;
251     typename Traits<T>::ArrayType *renumberR(const int *new2Old) const;
252     typename Traits<T>::ArrayType *renumberAndReduce(const int *old2New, int newNbOfTuple) const;
253     typename Traits<T>::ArrayType *changeNbOfComponents(int newNbOfComp, T dftValue) const;
254     typename Traits<T>::ArrayType *subArray(int tupleIdBg, int tupleIdEnd=-1) const;
255     void setPartOfValues1(const typename Traits<T>::ArrayType *a, int bgTuples, int endTuples, int stepTuples, int bgComp, int endComp, int stepComp, bool strictCompoCompare=true);
256     void setPartOfValuesSimple1(T a, int bgTuples, int endTuples, int stepTuples, int bgComp, int endComp, int stepComp);
257     void setPartOfValues2(const typename Traits<T>::ArrayType *a, const int *bgTuples, const int *endTuples, const int *bgComp, const int *endComp, bool strictCompoCompare=true);
258     void setPartOfValuesSimple2(T a, const int *bgTuples, const int *endTuples, const int *bgComp, const int *endComp);
259     void setPartOfValues3(const typename Traits<T>::ArrayType *a, const int *bgTuples, const int *endTuples, int bgComp, int endComp, int stepComp, bool strictCompoCompare=true);
260     void setPartOfValuesSimple3(T a, const int *bgTuples, const int *endTuples, int bgComp, int endComp, int stepComp);
261     void setPartOfValues4(const typename Traits<T>::ArrayType *a, int bgTuples, int endTuples, int stepTuples, const int *bgComp, const int *endComp, bool strictCompoCompare=true);
262     void setPartOfValuesSimple4(T a, int bgTuples, int endTuples, int stepTuples, const int *bgComp, const int *endComp);
263     void setPartOfValuesAdv(const typename Traits<T>::ArrayType *a, const DataArrayInt *tuplesSelec);
264     void setContigPartOfSelectedValues(int tupleIdStart, const DataArray *aBase, const DataArrayInt *tuplesSelec);
265     void setContigPartOfSelectedValuesSlice(int tupleIdStart, const DataArray *aBase, int bg, int end2, int step);
266     T getMaxValue(int& tupleId) const;
267     T getMaxValueInArray() const;
268     T getMinValue(int& tupleId) const;
269     T getMinValueInArray() const;
270   protected:
271     typename Traits<T>::ArrayType *mySelectByTupleId(const int *new2OldBg, const int *new2OldEnd) const;
272     typename Traits<T>::ArrayType *mySelectByTupleId(const DataArrayInt& di) const;
273     typename Traits<T>::ArrayType *mySelectByTupleIdSafe(const int *new2OldBg, const int *new2OldEnd) const;
274     typename Traits<T>::ArrayType *myKeepSelectedComponents(const std::vector<int>& compoIds) const;
275     typename Traits<T>::ArrayType *mySelectByTupleIdSafeSlice(int bg, int end2, int step) const;
276     typename Traits<T>::ArrayType *mySelectByTupleRanges(const std::vector<std::pair<int,int> >& ranges) const;
277   protected:
278     MemArray<T> _mem;
279   };
280 }
281
282 namespace MEDCoupling
283 {
284   class DataArrayDoubleIterator;
285   class DataArrayDouble : public DataArrayTemplate<double>
286   {
287   public:
288     MEDCOUPLING_EXPORT static DataArrayDouble *New();
289     MEDCOUPLING_EXPORT double doubleValue() const;
290     MEDCOUPLING_EXPORT DataArrayDouble *deepCopy() const;
291     MEDCOUPLING_EXPORT DataArrayDouble *buildNewEmptyInstance() const { return DataArrayDouble::New(); }
292     MEDCOUPLING_EXPORT DataArrayDouble *performCopyOrIncrRef(bool deepCopy) const;
293     MEDCOUPLING_EXPORT void fillWithZero();
294     MEDCOUPLING_EXPORT void iota(double init=0.);
295     MEDCOUPLING_EXPORT bool isUniform(double val, double eps) const;
296     MEDCOUPLING_EXPORT void checkMonotonic(bool increasing, double eps) const;
297     MEDCOUPLING_EXPORT bool isMonotonic(bool increasing, double eps) const;
298     MEDCOUPLING_EXPORT std::string repr() const;
299     MEDCOUPLING_EXPORT std::string reprZip() const;
300     MEDCOUPLING_EXPORT std::string reprNotTooLong() const;
301     MEDCOUPLING_EXPORT void writeVTK(std::ostream& ofs, int indent, const std::string& nameInFile, DataArrayByte *byteArr) const;
302     MEDCOUPLING_EXPORT void reprStream(std::ostream& stream) const;
303     MEDCOUPLING_EXPORT void reprZipStream(std::ostream& stream) const;
304     MEDCOUPLING_EXPORT void reprNotTooLongStream(std::ostream& stream) const;
305     MEDCOUPLING_EXPORT void reprWithoutNameStream(std::ostream& stream) const;
306     MEDCOUPLING_EXPORT void reprZipWithoutNameStream(std::ostream& stream) const;
307     MEDCOUPLING_EXPORT void reprNotTooLongWithoutNameStream(std::ostream& stream) const;
308     MEDCOUPLING_EXPORT void reprCppStream(const std::string& varName, std::ostream& stream) const;
309     MEDCOUPLING_EXPORT void reprQuickOverview(std::ostream& stream) const;
310     MEDCOUPLING_EXPORT void reprQuickOverviewData(std::ostream& stream, std::size_t maxNbOfByteInRepr) const;
311     MEDCOUPLING_EXPORT bool isEqual(const DataArrayDouble& other, double prec) const;
312     MEDCOUPLING_EXPORT bool isEqualIfNotWhy(const DataArrayDouble& other, double prec, std::string& reason) const;
313     MEDCOUPLING_EXPORT bool isEqualWithoutConsideringStr(const DataArrayDouble& other, double prec) const;
314     MEDCOUPLING_EXPORT DataArrayInt *convertToIntArr() const;
315     MEDCOUPLING_EXPORT DataArrayDouble *fromNoInterlace() const;
316     MEDCOUPLING_EXPORT DataArrayDouble *toNoInterlace() const;
317     MEDCOUPLING_EXPORT DataArrayDouble *selectByTupleId(const int *new2OldBg, const int *new2OldEnd) const { return DataArrayTemplate<double>::mySelectByTupleId(new2OldBg,new2OldEnd); }
318     MEDCOUPLING_EXPORT DataArrayDouble *selectByTupleId(const DataArrayInt& di) const { return DataArrayTemplate<double>::mySelectByTupleId(di); }
319     MEDCOUPLING_EXPORT DataArrayDouble *selectByTupleIdSafe(const int *new2OldBg, const int *new2OldEnd) const { return DataArrayTemplate<double>::mySelectByTupleIdSafe(new2OldBg,new2OldEnd); }
320     MEDCOUPLING_EXPORT DataArrayDouble *keepSelectedComponents(const std::vector<int>& compoIds) const { return DataArrayTemplate<double>::myKeepSelectedComponents(compoIds); }
321     MEDCOUPLING_EXPORT DataArrayDouble *selectByTupleIdSafeSlice(int bg, int end2, int step) const { return DataArrayTemplate<double>::mySelectByTupleIdSafeSlice(bg,end2,step); }
322     MEDCOUPLING_EXPORT DataArray *selectByTupleRanges(const std::vector<std::pair<int,int> >& ranges) const { return DataArrayTemplate<double>::mySelectByTupleRanges(ranges); }
323     MEDCOUPLING_EXPORT void meldWith(const DataArrayDouble *other);
324     MEDCOUPLING_EXPORT bool areIncludedInMe(const DataArrayDouble *other, double prec, DataArrayInt *&tupleIds) const;
325     MEDCOUPLING_EXPORT void findCommonTuples(double prec, int limitTupleId, DataArrayInt *&comm, DataArrayInt *&commIndex) const;
326     MEDCOUPLING_EXPORT double minimalDistanceTo(const DataArrayDouble *other, int& thisTupleId, int& otherTupleId) const;
327     MEDCOUPLING_EXPORT DataArrayDouble *duplicateEachTupleNTimes(int nbTimes) const;
328     MEDCOUPLING_EXPORT DataArrayDouble *getDifferentValues(double prec, int limitTupleId=-1) const;
329     MEDCOUPLING_EXPORT DataArrayInt *findClosestTupleId(const DataArrayDouble *other) const;
330     MEDCOUPLING_EXPORT DataArrayInt *computeNbOfInteractionsWith(const DataArrayDouble *otherBBoxFrmt, double eps) const;
331     MEDCOUPLING_EXPORT void setSelectedComponents(const DataArrayDouble *a, const std::vector<int>& compoIds);
332     MEDCOUPLING_EXPORT void getTuple(int tupleId, double *res) const { std::copy(_mem.getConstPointerLoc(tupleId*_info_on_compo.size()),_mem.getConstPointerLoc((tupleId+1)*_info_on_compo.size()),res); }
333     MEDCOUPLING_EXPORT static void SetArrayIn(DataArrayDouble *newArray, DataArrayDouble* &arrayToSet);
334     MEDCOUPLING_EXPORT DataArrayDoubleIterator *iterator();
335     template<class InputIterator>
336     void insertAtTheEnd(InputIterator first, InputIterator last);
337     MEDCOUPLING_EXPORT void aggregate(const DataArrayDouble *other);
338     MEDCOUPLING_EXPORT void writeOnPlace(std::size_t id, double element0, const double *others, int sizeOfOthers) { _mem.writeOnPlace(id,element0,others,sizeOfOthers); }
339     MEDCOUPLING_EXPORT void checkNoNullValues() const;
340     MEDCOUPLING_EXPORT void getMinMaxPerComponent(double *bounds) const;
341     MEDCOUPLING_EXPORT DataArrayDouble *computeBBoxPerTuple(double epsilon=0.0) const;
342     MEDCOUPLING_EXPORT void computeTupleIdsNearTuples(const DataArrayDouble *other, double eps, DataArrayInt *& c, DataArrayInt *& cI) const;
343     MEDCOUPLING_EXPORT void recenterForMaxPrecision(double eps);
344     MEDCOUPLING_EXPORT double getMaxValue2(DataArrayInt*& tupleIds) const;
345     MEDCOUPLING_EXPORT double getMinValue2(DataArrayInt*& tupleIds) const;
346     MEDCOUPLING_EXPORT int count(double value, double eps) const;
347     MEDCOUPLING_EXPORT double getAverageValue() const;
348     MEDCOUPLING_EXPORT double norm2() const;
349     MEDCOUPLING_EXPORT double normMax() const;
350     MEDCOUPLING_EXPORT double normMin() const;
351     MEDCOUPLING_EXPORT void accumulate(double *res) const;
352     MEDCOUPLING_EXPORT double accumulate(int compId) const;
353     MEDCOUPLING_EXPORT DataArrayDouble *accumulatePerChunck(const int *bgOfIndex, const int *endOfIndex) const;
354     MEDCOUPLING_EXPORT double distanceToTuple(const double *tupleBg, const double *tupleEnd, int& tupleId) const;
355     MEDCOUPLING_EXPORT DataArrayDouble *fromPolarToCart() const;
356     MEDCOUPLING_EXPORT DataArrayDouble *fromCylToCart() const;
357     MEDCOUPLING_EXPORT DataArrayDouble *fromSpherToCart() const;
358     MEDCOUPLING_EXPORT DataArrayDouble *cartesianize(MEDCouplingAxisType atOfThis) const;
359     MEDCOUPLING_EXPORT DataArrayDouble *doublyContractedProduct() const;
360     MEDCOUPLING_EXPORT DataArrayDouble *determinant() const;
361     MEDCOUPLING_EXPORT DataArrayDouble *eigenValues() const;
362     MEDCOUPLING_EXPORT DataArrayDouble *eigenVectors() const;
363     MEDCOUPLING_EXPORT DataArrayDouble *inverse() const;
364     MEDCOUPLING_EXPORT DataArrayDouble *trace() const;
365     MEDCOUPLING_EXPORT DataArrayDouble *deviator() const;
366     MEDCOUPLING_EXPORT DataArrayDouble *magnitude() const;
367     MEDCOUPLING_EXPORT DataArrayDouble *sumPerTuple() const;
368     MEDCOUPLING_EXPORT DataArrayDouble *maxPerTuple() const;
369     MEDCOUPLING_EXPORT DataArrayDouble *maxPerTupleWithCompoId(DataArrayInt* &compoIdOfMaxPerTuple) const;
370     MEDCOUPLING_EXPORT DataArrayDouble *buildEuclidianDistanceDenseMatrix() const;
371     MEDCOUPLING_EXPORT DataArrayDouble *buildEuclidianDistanceDenseMatrixWith(const DataArrayDouble *other) const;
372     MEDCOUPLING_EXPORT void sortPerTuple(bool asc);
373     MEDCOUPLING_EXPORT void abs();
374     MEDCOUPLING_EXPORT DataArrayDouble *computeAbs() const;
375     MEDCOUPLING_EXPORT void applyLin(double a, double b, int compoId);
376     MEDCOUPLING_EXPORT void applyLin(double a, double b);
377     MEDCOUPLING_EXPORT void applyInv(double numerator);
378     MEDCOUPLING_EXPORT void applyPow(double val);
379     MEDCOUPLING_EXPORT void applyRPow(double val);
380     MEDCOUPLING_EXPORT DataArrayDouble *negate() const;
381     MEDCOUPLING_EXPORT DataArrayDouble *applyFunc(int nbOfComp, FunctionToEvaluate func) const;
382     MEDCOUPLING_EXPORT DataArrayDouble *applyFunc(int nbOfComp, const std::string& func, bool isSafe=true) const;
383     MEDCOUPLING_EXPORT DataArrayDouble *applyFunc(const std::string& func, bool isSafe=true) const;
384     MEDCOUPLING_EXPORT void applyFuncOnThis(const std::string& func, bool isSafe=true);
385     MEDCOUPLING_EXPORT DataArrayDouble *applyFuncCompo(int nbOfComp, const std::string& func, bool isSafe=true) const;
386     MEDCOUPLING_EXPORT DataArrayDouble *applyFuncNamedCompo(int nbOfComp, const std::vector<std::string>& varsOrder, const std::string& func, bool isSafe=true) const;
387     MEDCOUPLING_EXPORT void applyFuncFast32(const std::string& func);
388     MEDCOUPLING_EXPORT void applyFuncFast64(const std::string& func);
389     MEDCOUPLING_EXPORT MCAuto<DataArrayDouble> symmetry3DPlane(const double point[3], const double normalVector[3]) const;
390     MEDCOUPLING_EXPORT DataArrayInt *findIdsInRange(double vmin, double vmax) const;
391     MEDCOUPLING_EXPORT DataArrayInt *findIdsNotInRange(double vmin, double vmax) const;
392     MEDCOUPLING_EXPORT static DataArrayDouble *Aggregate(const DataArrayDouble *a1, const DataArrayDouble *a2);
393     MEDCOUPLING_EXPORT static DataArrayDouble *Aggregate(const std::vector<const DataArrayDouble *>& arr);
394     MEDCOUPLING_EXPORT static DataArrayDouble *Meld(const DataArrayDouble *a1, const DataArrayDouble *a2);
395     MEDCOUPLING_EXPORT static DataArrayDouble *Meld(const std::vector<const DataArrayDouble *>& arr);
396     MEDCOUPLING_EXPORT static DataArrayDouble *Dot(const DataArrayDouble *a1, const DataArrayDouble *a2);
397     MEDCOUPLING_EXPORT static DataArrayDouble *CrossProduct(const DataArrayDouble *a1, const DataArrayDouble *a2);
398     MEDCOUPLING_EXPORT static DataArrayDouble *Max(const DataArrayDouble *a1, const DataArrayDouble *a2);
399     MEDCOUPLING_EXPORT static DataArrayDouble *Min(const DataArrayDouble *a1, const DataArrayDouble *a2);
400     MEDCOUPLING_EXPORT static DataArrayDouble *Add(const DataArrayDouble *a1, const DataArrayDouble *a2);
401     MEDCOUPLING_EXPORT void addEqual(const DataArrayDouble *other);
402     MEDCOUPLING_EXPORT static DataArrayDouble *Substract(const DataArrayDouble *a1, const DataArrayDouble *a2);
403     MEDCOUPLING_EXPORT void substractEqual(const DataArrayDouble *other);
404     MEDCOUPLING_EXPORT static DataArrayDouble *Multiply(const DataArrayDouble *a1, const DataArrayDouble *a2);
405     MEDCOUPLING_EXPORT void multiplyEqual(const DataArrayDouble *other);
406     MEDCOUPLING_EXPORT static DataArrayDouble *Divide(const DataArrayDouble *a1, const DataArrayDouble *a2);
407     MEDCOUPLING_EXPORT void divideEqual(const DataArrayDouble *other);
408     MEDCOUPLING_EXPORT static DataArrayDouble *Pow(const DataArrayDouble *a1, const DataArrayDouble *a2);
409     MEDCOUPLING_EXPORT void powEqual(const DataArrayDouble *other);
410     MEDCOUPLING_EXPORT void updateTime() const { }
411     MEDCOUPLING_EXPORT MemArray<double>& accessToMemArray() { return _mem; }
412     MEDCOUPLING_EXPORT const MemArray<double>& accessToMemArray() const { return _mem; }
413     MEDCOUPLING_EXPORT std::vector<bool> toVectorOfBool(double eps) const;
414     MEDCOUPLING_EXPORT static void Rotate2DAlg(const double *center, double angle, int nbNodes, const double *coordsIn, double *coordsOut);
415     MEDCOUPLING_EXPORT static void Rotate3DAlg(const double *center, const double *vect, double angle, int nbNodes, const double *coordsIn, double *coordsOut);
416     MEDCOUPLING_EXPORT static void Symmetry3DPlane(const double point[3], const double normalVector[3], int nbNodes, const double *coordsIn, double *coordsOut);
417     MEDCOUPLING_EXPORT static void GiveBaseForPlane(const double normalVector[3], double baseOfPlane[9]);
418   public:
419     MEDCOUPLING_EXPORT void getTinySerializationIntInformation(std::vector<int>& tinyInfo) const;
420     MEDCOUPLING_EXPORT void getTinySerializationStrInformation(std::vector<std::string>& tinyInfo) const;
421     MEDCOUPLING_EXPORT bool resizeForUnserialization(const std::vector<int>& tinyInfoI);
422     MEDCOUPLING_EXPORT void finishUnserialization(const std::vector<int>& tinyInfoI, const std::vector<std::string>& tinyInfoS);
423   public:
424     template<int SPACEDIM>
425     void findCommonTuplesAlg(const double *bbox, int nbNodes, int limitNodeId, double prec, DataArrayInt *c, DataArrayInt *cI) const;
426     template<int SPACEDIM>
427     static void FindClosestTupleIdAlg(const BBTreePts<SPACEDIM,int>& myTree, double dist, const double *pos, int nbOfTuples, const double *thisPt, int thisNbOfTuples, int *res);
428     template<int SPACEDIM>
429     static void FindTupleIdsNearTuplesAlg(const BBTreePts<SPACEDIM,int>& myTree, const double *pos, int nbOfTuples, double eps,
430                                           DataArrayInt *c, DataArrayInt *cI);
431   private:
432     ~DataArrayDouble() { }
433     DataArrayDouble() { }
434   };
435
436   class DataArrayDoubleTuple;
437
438   class DataArrayDoubleIterator
439   {
440   public:
441     MEDCOUPLING_EXPORT DataArrayDoubleIterator(DataArrayDouble *da);
442     MEDCOUPLING_EXPORT ~DataArrayDoubleIterator();
443     MEDCOUPLING_EXPORT DataArrayDoubleTuple *nextt();
444   private:
445     DataArrayDouble *_da;
446     double *_pt;
447     int _tuple_id;
448     int _nb_comp;
449     int _nb_tuple;
450   };
451
452   class DataArrayDoubleTuple
453   {
454   public:
455     MEDCOUPLING_EXPORT DataArrayDoubleTuple(double *pt, int nbOfComp);
456     MEDCOUPLING_EXPORT std::string repr() const;
457     MEDCOUPLING_EXPORT int getNumberOfCompo() const { return _nb_of_compo; }
458     MEDCOUPLING_EXPORT const double *getConstPointer() const { return  _pt; }
459     MEDCOUPLING_EXPORT double *getPointer() { return _pt; }
460     MEDCOUPLING_EXPORT double doubleValue() const;
461     MEDCOUPLING_EXPORT DataArrayDouble *buildDADouble(int nbOfTuples, int nbOfCompo) const;
462   private:
463     double *_pt;
464     int _nb_of_compo;
465   };
466
467   class DataArrayIntIterator;
468
469   class DataArrayInt : public DataArrayTemplate<int>
470   {
471   public:
472     MEDCOUPLING_EXPORT static DataArrayInt *New();
473     MEDCOUPLING_EXPORT int intValue() const;
474     MEDCOUPLING_EXPORT int getHashCode() const;
475     MEDCOUPLING_EXPORT DataArrayInt *deepCopy() const;
476     MEDCOUPLING_EXPORT DataArrayInt *performCopyOrIncrRef(bool deepCopy) const;
477     MEDCOUPLING_EXPORT DataArrayInt *buildNewEmptyInstance() const { return DataArrayInt::New(); }
478     MEDCOUPLING_EXPORT bool isEqual(const DataArrayInt& other) const;
479     MEDCOUPLING_EXPORT bool isEqualIfNotWhy(const DataArrayInt& other, std::string& reason) const;
480     MEDCOUPLING_EXPORT bool isEqualWithoutConsideringStr(const DataArrayInt& other) const;
481     MEDCOUPLING_EXPORT bool isEqualWithoutConsideringStrAndOrder(const DataArrayInt& other) const;
482     MEDCOUPLING_EXPORT bool isFittingWith(const std::vector<bool>& v) const;
483     MEDCOUPLING_EXPORT void switchOnTupleEqualTo(int val, std::vector<bool>& vec) const;
484     MEDCOUPLING_EXPORT void switchOnTupleNotEqualTo(int val, std::vector<bool>& vec) const;
485     MEDCOUPLING_EXPORT DataArrayInt *buildPermutationArr(const DataArrayInt& other) const;
486     MEDCOUPLING_EXPORT DataArrayInt *sumPerTuple() const;
487     MEDCOUPLING_EXPORT void checkMonotonic(bool increasing) const;
488     MEDCOUPLING_EXPORT bool isMonotonic(bool increasing) const;
489     MEDCOUPLING_EXPORT void checkStrictlyMonotonic(bool increasing) const;
490     MEDCOUPLING_EXPORT bool isStrictlyMonotonic(bool increasing) const;
491     MEDCOUPLING_EXPORT void fillWithZero();
492     MEDCOUPLING_EXPORT void iota(int init=0);
493     MEDCOUPLING_EXPORT std::string repr() const;
494     MEDCOUPLING_EXPORT std::string reprZip() const;
495     MEDCOUPLING_EXPORT std::string reprNotTooLong() const;
496     MEDCOUPLING_EXPORT void writeVTK(std::ostream& ofs, int indent, const std::string& type, const std::string& nameInFile, DataArrayByte *byteArr) const;
497     MEDCOUPLING_EXPORT void reprStream(std::ostream& stream) const;
498     MEDCOUPLING_EXPORT void reprZipStream(std::ostream& stream) const;
499     MEDCOUPLING_EXPORT void reprNotTooLongStream(std::ostream& stream) const;
500     MEDCOUPLING_EXPORT void reprWithoutNameStream(std::ostream& stream) const;
501     MEDCOUPLING_EXPORT void reprZipWithoutNameStream(std::ostream& stream) const;
502     MEDCOUPLING_EXPORT void reprNotTooLongWithoutNameStream(std::ostream& stream) const;
503     MEDCOUPLING_EXPORT void reprCppStream(const std::string& varName, std::ostream& stream) const;
504     MEDCOUPLING_EXPORT void reprQuickOverview(std::ostream& stream) const;
505     MEDCOUPLING_EXPORT void reprQuickOverviewData(std::ostream& stream, std::size_t maxNbOfByteInRepr) const;
506     MEDCOUPLING_EXPORT void transformWithIndArr(const int *indArrBg, const int *indArrEnd);
507     MEDCOUPLING_EXPORT DataArrayInt *transformWithIndArrR(const int *indArrBg, const int *indArrEnd) const;
508     MEDCOUPLING_EXPORT void splitByValueRange(const int *arrBg, const int *arrEnd,
509                                               DataArrayInt *& castArr, DataArrayInt *& rankInsideCast, DataArrayInt *& castsPresent) const;
510     MEDCOUPLING_EXPORT bool isRange(int& strt, int& sttoopp, int& stteepp) const;
511     MEDCOUPLING_EXPORT DataArrayInt *invertArrayO2N2N2O(int newNbOfElem) const;
512     MEDCOUPLING_EXPORT DataArrayInt *invertArrayN2O2O2N(int oldNbOfElem) const;
513     MEDCOUPLING_EXPORT DataArrayInt *invertArrayO2N2N2OBis(int newNbOfElem) const;
514     MEDCOUPLING_EXPORT DataArrayDouble *convertToDblArr() const;
515     MEDCOUPLING_EXPORT DataArrayInt *fromNoInterlace() const;
516     MEDCOUPLING_EXPORT DataArrayInt *toNoInterlace() const;
517     MEDCOUPLING_EXPORT DataArrayInt *selectByTupleId(const int *new2OldBg, const int *new2OldEnd) const { return DataArrayTemplate<int>::mySelectByTupleId(new2OldBg,new2OldEnd); }
518     MEDCOUPLING_EXPORT DataArrayInt *selectByTupleId(const DataArrayInt& di) const { return DataArrayTemplate<int>::mySelectByTupleId(di); }
519     MEDCOUPLING_EXPORT DataArrayInt *selectByTupleIdSafe(const int *new2OldBg, const int *new2OldEnd) const { return DataArrayTemplate<int>::mySelectByTupleIdSafe(new2OldBg,new2OldEnd); }
520     MEDCOUPLING_EXPORT DataArrayInt *keepSelectedComponents(const std::vector<int>& compoIds) const { return DataArrayTemplate<int>::myKeepSelectedComponents(compoIds); }
521     MEDCOUPLING_EXPORT DataArrayInt *selectByTupleIdSafeSlice(int bg, int end, int step) const { return DataArrayTemplate<int>::mySelectByTupleIdSafeSlice(bg,end,step); }
522     MEDCOUPLING_EXPORT DataArray *selectByTupleRanges(const std::vector<std::pair<int,int> >& ranges) const { return DataArrayTemplate<int>::mySelectByTupleRanges(ranges); }
523     MEDCOUPLING_EXPORT DataArrayInt *checkAndPreparePermutation() const;
524     MEDCOUPLING_EXPORT static DataArrayInt *FindPermutationFromFirstToSecond(const DataArrayInt *ids1, const DataArrayInt *ids2);
525     MEDCOUPLING_EXPORT void changeSurjectiveFormat(int targetNb, DataArrayInt *&arr, DataArrayInt *&arrI) const;
526     MEDCOUPLING_EXPORT static DataArrayInt *ConvertIndexArrayToO2N(int nbOfOldTuples, const int *arr, const int *arrIBg, const int *arrIEnd, int &newNbOfTuples);
527     MEDCOUPLING_EXPORT DataArrayInt *buildPermArrPerLevel() const;
528     MEDCOUPLING_EXPORT bool isIota(int sizeExpected) const;
529     MEDCOUPLING_EXPORT bool isUniform(int val) const;
530     MEDCOUPLING_EXPORT bool hasUniqueValues() const;
531     MEDCOUPLING_EXPORT void meldWith(const DataArrayInt *other);
532     MEDCOUPLING_EXPORT void setSelectedComponents(const DataArrayInt *a, const std::vector<int>& compoIds);
533     MEDCOUPLING_EXPORT void getTuple(int tupleId, int *res) const { std::copy(_mem.getConstPointerLoc(tupleId*_info_on_compo.size()),_mem.getConstPointerLoc((tupleId+1)*_info_on_compo.size()),res); }
534     MEDCOUPLING_EXPORT static void SetArrayIn(DataArrayInt *newArray, DataArrayInt* &arrayToSet);
535     MEDCOUPLING_EXPORT DataArrayIntIterator *iterator();
536     MEDCOUPLING_EXPORT DataArrayInt *findIdsEqual(int val) const;
537     MEDCOUPLING_EXPORT DataArrayInt *findIdsNotEqual(int val) const;
538     MEDCOUPLING_EXPORT DataArrayInt *findIdsEqualList(const int *valsBg, const int *valsEnd) const;
539     MEDCOUPLING_EXPORT DataArrayInt *findIdsNotEqualList(const int *valsBg, const int *valsEnd) const;
540     MEDCOUPLING_EXPORT DataArrayInt *findIdsEqualTuple(const int *tupleBg, const int *tupleEnd) const;
541     MEDCOUPLING_EXPORT int changeValue(int oldValue, int newValue);
542     MEDCOUPLING_EXPORT int findIdFirstEqualTuple(const std::vector<int>& tupl) const;
543     MEDCOUPLING_EXPORT int findIdFirstEqual(int value) const;
544     MEDCOUPLING_EXPORT int findIdFirstEqual(const std::vector<int>& vals) const;
545     MEDCOUPLING_EXPORT int findIdSequence(const std::vector<int>& vals) const;
546     MEDCOUPLING_EXPORT bool presenceOfTuple(const std::vector<int>& tupl) const;
547     MEDCOUPLING_EXPORT bool presenceOfValue(int value) const;
548     MEDCOUPLING_EXPORT bool presenceOfValue(const std::vector<int>& vals) const;
549     MEDCOUPLING_EXPORT int count(int value) const;
550     MEDCOUPLING_EXPORT void accumulate(int *res) const;
551     MEDCOUPLING_EXPORT int accumulate(int compId) const;
552     MEDCOUPLING_EXPORT DataArrayInt *accumulatePerChunck(const int *bgOfIndex, const int *endOfIndex) const;
553     MEDCOUPLING_EXPORT void getMinMaxValues(int& minValue, int& maxValue) const;
554     MEDCOUPLING_EXPORT void abs();
555     MEDCOUPLING_EXPORT DataArrayInt *computeAbs() const;
556     MEDCOUPLING_EXPORT void applyLin(int a, int b, int compoId);
557     MEDCOUPLING_EXPORT void applyLin(int a, int b);
558     MEDCOUPLING_EXPORT void applyInv(int numerator);
559     MEDCOUPLING_EXPORT DataArrayInt *negate() const;
560     MEDCOUPLING_EXPORT void applyDivideBy(int val);
561     MEDCOUPLING_EXPORT void applyModulus(int val);
562     MEDCOUPLING_EXPORT void applyRModulus(int val);
563     MEDCOUPLING_EXPORT void applyPow(int val);
564     MEDCOUPLING_EXPORT void applyRPow(int val);
565     MEDCOUPLING_EXPORT DataArrayInt *findIdsInRange(int vmin, int vmax) const;
566     MEDCOUPLING_EXPORT DataArrayInt *findIdsNotInRange(int vmin, int vmax) const;
567     MEDCOUPLING_EXPORT DataArrayInt *findIdsStricltyNegative() const;
568     MEDCOUPLING_EXPORT bool checkAllIdsInRange(int vmin, int vmax) const;
569     MEDCOUPLING_EXPORT static DataArrayInt *Aggregate(const DataArrayInt *a1, const DataArrayInt *a2, int offsetA2);
570     MEDCOUPLING_EXPORT static DataArrayInt *Aggregate(const std::vector<const DataArrayInt *>& arr);
571     MEDCOUPLING_EXPORT static DataArrayInt *AggregateIndexes(const std::vector<const DataArrayInt *>& arrs);
572     MEDCOUPLING_EXPORT static DataArrayInt *Meld(const DataArrayInt *a1, const DataArrayInt *a2);
573     MEDCOUPLING_EXPORT static DataArrayInt *Meld(const std::vector<const DataArrayInt *>& arr);
574     MEDCOUPLING_EXPORT static DataArrayInt *MakePartition(const std::vector<const DataArrayInt *>& groups, int newNb, std::vector< std::vector<int> >& fidsOfGroups);
575     MEDCOUPLING_EXPORT static DataArrayInt *BuildUnion(const std::vector<const DataArrayInt *>& arr);
576     MEDCOUPLING_EXPORT static DataArrayInt *BuildIntersection(const std::vector<const DataArrayInt *>& arr);
577     MEDCOUPLING_EXPORT static DataArrayInt *BuildListOfSwitchedOn(const std::vector<bool>& v);
578     MEDCOUPLING_EXPORT static DataArrayInt *BuildListOfSwitchedOff(const std::vector<bool>& v);
579     MEDCOUPLING_EXPORT static void PutIntoToSkylineFrmt(const std::vector< std::vector<int> >& v, DataArrayInt *& data, DataArrayInt *& dataIndex);
580     MEDCOUPLING_EXPORT DataArrayInt *buildComplement(int nbOfElement) const;
581     MEDCOUPLING_EXPORT DataArrayInt *buildSubstraction(const DataArrayInt *other) const;
582     MEDCOUPLING_EXPORT DataArrayInt *buildSubstractionOptimized(const DataArrayInt *other) const;
583     MEDCOUPLING_EXPORT DataArrayInt *buildUnion(const DataArrayInt *other) const;
584     MEDCOUPLING_EXPORT DataArrayInt *buildIntersection(const DataArrayInt *other) const;
585     MEDCOUPLING_EXPORT DataArrayInt *buildUnique() const;
586     MEDCOUPLING_EXPORT DataArrayInt *buildUniqueNotSorted() const;
587     MEDCOUPLING_EXPORT DataArrayInt *deltaShiftIndex() const;
588     MEDCOUPLING_EXPORT void computeOffsets();
589     MEDCOUPLING_EXPORT void computeOffsetsFull();
590     MEDCOUPLING_EXPORT void findIdsRangesInListOfIds(const DataArrayInt *listOfIds, DataArrayInt *& rangeIdsFetched, DataArrayInt *& idsInInputListThatFetch) const;
591     MEDCOUPLING_EXPORT DataArrayInt *buildExplicitArrByRanges(const DataArrayInt *offsets) const;
592     MEDCOUPLING_EXPORT DataArrayInt *buildExplicitArrOfSliceOnScaledArr(int begin, int stop, int step) const;
593     MEDCOUPLING_EXPORT DataArrayInt *findRangeIdForEachTuple(const DataArrayInt *ranges) const;
594     MEDCOUPLING_EXPORT DataArrayInt *findIdInRangeForEachTuple(const DataArrayInt *ranges) const;
595     MEDCOUPLING_EXPORT void sortEachPairToMakeALinkedList();
596     MEDCOUPLING_EXPORT DataArrayInt *duplicateEachTupleNTimes(int nbTimes) const;
597     MEDCOUPLING_EXPORT DataArrayInt *getDifferentValues() const;
598     MEDCOUPLING_EXPORT std::vector<DataArrayInt *> partitionByDifferentValues(std::vector<int>& differentIds) const;
599     MEDCOUPLING_EXPORT std::vector< std::pair<int,int> > splitInBalancedSlices(int nbOfSlices) const;
600     template<class InputIterator>
601     void insertAtTheEnd(InputIterator first, InputIterator last);
602     MEDCOUPLING_EXPORT void aggregate(const DataArrayInt *other);
603     MEDCOUPLING_EXPORT void writeOnPlace(std::size_t id, int element0, const int *others, int sizeOfOthers) { _mem.writeOnPlace(id,element0,others,sizeOfOthers); }
604     MEDCOUPLING_EXPORT static DataArrayInt *Add(const DataArrayInt *a1, const DataArrayInt *a2);
605     MEDCOUPLING_EXPORT void addEqual(const DataArrayInt *other);
606     MEDCOUPLING_EXPORT static DataArrayInt *Substract(const DataArrayInt *a1, const DataArrayInt *a2);
607     MEDCOUPLING_EXPORT void substractEqual(const DataArrayInt *other);
608     MEDCOUPLING_EXPORT static DataArrayInt *Multiply(const DataArrayInt *a1, const DataArrayInt *a2);
609     MEDCOUPLING_EXPORT void multiplyEqual(const DataArrayInt *other);
610     MEDCOUPLING_EXPORT static DataArrayInt *Divide(const DataArrayInt *a1, const DataArrayInt *a2);
611     MEDCOUPLING_EXPORT void divideEqual(const DataArrayInt *other);
612     MEDCOUPLING_EXPORT static DataArrayInt *Modulus(const DataArrayInt *a1, const DataArrayInt *a2);
613     MEDCOUPLING_EXPORT void modulusEqual(const DataArrayInt *other);
614     MEDCOUPLING_EXPORT static DataArrayInt *Pow(const DataArrayInt *a1, const DataArrayInt *a2);
615     MEDCOUPLING_EXPORT void powEqual(const DataArrayInt *other);
616     MEDCOUPLING_EXPORT void updateTime() const { }
617     MEDCOUPLING_EXPORT MemArray<int>& accessToMemArray() { return _mem; }
618     MEDCOUPLING_EXPORT const MemArray<int>& accessToMemArray() const { return _mem; }
619   public:
620     MEDCOUPLING_EXPORT static int *CheckAndPreparePermutation(const int *start, const int *end);
621     MEDCOUPLING_EXPORT static DataArrayInt *Range(int begin, int end, int step);
622   public:
623     MEDCOUPLING_EXPORT void getTinySerializationIntInformation(std::vector<int>& tinyInfo) const;
624     MEDCOUPLING_EXPORT void getTinySerializationStrInformation(std::vector<std::string>& tinyInfo) const;
625     MEDCOUPLING_EXPORT bool resizeForUnserialization(const std::vector<int>& tinyInfoI);
626     MEDCOUPLING_EXPORT void finishUnserialization(const std::vector<int>& tinyInfoI, const std::vector<std::string>& tinyInfoS);
627   private:
628     ~DataArrayInt() { }
629     DataArrayInt() { }
630   };
631
632   class DataArrayIntTuple;
633
634   class DataArrayIntIterator
635   {
636   public:
637     MEDCOUPLING_EXPORT DataArrayIntIterator(DataArrayInt *da);
638     MEDCOUPLING_EXPORT ~DataArrayIntIterator();
639     MEDCOUPLING_EXPORT DataArrayIntTuple *nextt();
640   private:
641     DataArrayInt *_da;
642     int *_pt;
643     int _tuple_id;
644     int _nb_comp;
645     int _nb_tuple;
646   };
647
648   class DataArrayIntTuple
649   {
650   public:
651     MEDCOUPLING_EXPORT DataArrayIntTuple(int *pt, int nbOfComp);
652     MEDCOUPLING_EXPORT std::string repr() const;
653     MEDCOUPLING_EXPORT int getNumberOfCompo() const { return _nb_of_compo; }
654     MEDCOUPLING_EXPORT const int *getConstPointer() const { return  _pt; }
655     MEDCOUPLING_EXPORT int *getPointer() { return _pt; }
656     MEDCOUPLING_EXPORT int intValue() const;
657     MEDCOUPLING_EXPORT DataArrayInt *buildDAInt(int nbOfTuples, int nbOfCompo) const;
658   private:
659     int *_pt;
660     int _nb_of_compo;
661   };
662
663   class DataArrayChar : public DataArrayTemplate<char>
664   {
665   public:
666     MEDCOUPLING_EXPORT virtual DataArrayChar *buildEmptySpecializedDAChar() const = 0;
667     MEDCOUPLING_EXPORT int getHashCode() const;
668     MEDCOUPLING_EXPORT bool isEqual(const DataArrayChar& other) const;
669     MEDCOUPLING_EXPORT virtual bool isEqualIfNotWhy(const DataArrayChar& other, std::string& reason) const;
670     MEDCOUPLING_EXPORT bool isEqualWithoutConsideringStr(const DataArrayChar& other) const;
671     MEDCOUPLING_EXPORT void fillWithZero();
672     MEDCOUPLING_EXPORT std::string repr() const;
673     MEDCOUPLING_EXPORT std::string reprZip() const;
674     MEDCOUPLING_EXPORT DataArrayInt *convertToIntArr() const;
675     MEDCOUPLING_EXPORT DataArrayChar *selectByTupleId(const int *new2OldBg, const int *new2OldEnd) const { return DataArrayTemplate<char>::mySelectByTupleId(new2OldBg,new2OldEnd); }
676     MEDCOUPLING_EXPORT DataArrayChar *selectByTupleId(const DataArrayInt& di) const { return DataArrayTemplate<char>::mySelectByTupleId(di); }
677     MEDCOUPLING_EXPORT DataArrayChar *selectByTupleIdSafe(const int *new2OldBg, const int *new2OldEnd) const { return DataArrayTemplate<char>::mySelectByTupleIdSafe(new2OldBg,new2OldEnd); }
678     MEDCOUPLING_EXPORT DataArrayChar *keepSelectedComponents(const std::vector<int>& compoIds) const { return DataArrayTemplate<char>::myKeepSelectedComponents(compoIds); }
679     MEDCOUPLING_EXPORT DataArrayChar *selectByTupleIdSafeSlice(int bg, int end, int step) const { return DataArrayTemplate<char>::mySelectByTupleIdSafeSlice(bg,end,step); }
680     MEDCOUPLING_EXPORT bool isUniform(char val) const;
681     MEDCOUPLING_EXPORT void meldWith(const DataArrayChar *other);
682     MEDCOUPLING_EXPORT DataArray *selectByTupleRanges(const std::vector<std::pair<int,int> >& ranges) const { return DataArrayTemplate<char>::mySelectByTupleRanges(ranges); }
683     MEDCOUPLING_EXPORT void getTuple(int tupleId, char *res) const { std::copy(_mem.getConstPointerLoc(tupleId*_info_on_compo.size()),_mem.getConstPointerLoc((tupleId+1)*_info_on_compo.size()),res); }
684     MEDCOUPLING_EXPORT DataArrayInt *findIdsEqual(char val) const;
685     MEDCOUPLING_EXPORT DataArrayInt *findIdsNotEqual(char val) const;
686     MEDCOUPLING_EXPORT int findIdSequence(const std::vector<char>& vals) const;
687     MEDCOUPLING_EXPORT int findIdFirstEqualTuple(const std::vector<char>& tupl) const;
688     MEDCOUPLING_EXPORT int findIdFirstEqual(char value) const;
689     MEDCOUPLING_EXPORT int findIdFirstEqual(const std::vector<char>& vals) const;
690     MEDCOUPLING_EXPORT bool presenceOfTuple(const std::vector<char>& tupl) const;
691     MEDCOUPLING_EXPORT bool presenceOfValue(char value) const;
692     MEDCOUPLING_EXPORT bool presenceOfValue(const std::vector<char>& vals) const;
693     MEDCOUPLING_EXPORT DataArrayInt *findIdsInRange(char vmin, char vmax) const;
694     MEDCOUPLING_EXPORT static DataArrayChar *Aggregate(const DataArrayChar *a1, const DataArrayChar *a2);
695     MEDCOUPLING_EXPORT static DataArrayChar *Aggregate(const std::vector<const DataArrayChar *>& arr);
696     MEDCOUPLING_EXPORT static DataArrayChar *Meld(const DataArrayChar *a1, const DataArrayChar *a2);
697     MEDCOUPLING_EXPORT static DataArrayChar *Meld(const std::vector<const DataArrayChar *>& arr);
698     template<class InputIterator>
699     void insertAtTheEnd(InputIterator first, InputIterator last);
700     MEDCOUPLING_EXPORT void updateTime() const { }
701     MEDCOUPLING_EXPORT MemArray<char>& accessToMemArray() { return _mem; }
702     MEDCOUPLING_EXPORT const MemArray<char>& accessToMemArray() const { return _mem; }
703   public:
704     //MEDCOUPLING_EXPORT void getTinySerializationIntInformation(std::vector<int>& tinyInfo) const;
705     //MEDCOUPLING_EXPORT void getTinySerializationStrInformation(std::vector<std::string>& tinyInfo) const;
706     //MEDCOUPLING_EXPORT bool resizeForUnserialization(const std::vector<int>& tinyInfoI);
707     //MEDCOUPLING_EXPORT void finishUnserialization(const std::vector<int>& tinyInfoI, const std::vector<std::string>& tinyInfoS);
708   protected:
709     DataArrayChar() { }
710   };
711
712   class DataArrayByteIterator;
713
714   class DataArrayByte : public DataArrayChar
715   {
716   public:
717     MEDCOUPLING_EXPORT static DataArrayByte *New();
718     MEDCOUPLING_EXPORT DataArrayChar *buildEmptySpecializedDAChar() const;
719     MEDCOUPLING_EXPORT DataArrayByteIterator *iterator();
720     MEDCOUPLING_EXPORT DataArrayByte *deepCopy() const;
721     MEDCOUPLING_EXPORT DataArrayByte *performCopyOrIncrRef(bool deepCopy) const;
722     MEDCOUPLING_EXPORT DataArrayByte *buildNewEmptyInstance() const { return DataArrayByte::New(); }
723     MEDCOUPLING_EXPORT char byteValue() const;
724     MEDCOUPLING_EXPORT void reprStream(std::ostream& stream) const;
725     MEDCOUPLING_EXPORT void reprZipStream(std::ostream& stream) const;
726     MEDCOUPLING_EXPORT void reprWithoutNameStream(std::ostream& stream) const;
727     MEDCOUPLING_EXPORT void reprZipWithoutNameStream(std::ostream& stream) const;
728     MEDCOUPLING_EXPORT void reprCppStream(const std::string& varName, std::ostream& stream) const;
729     MEDCOUPLING_EXPORT void reprQuickOverview(std::ostream& stream) const;
730     MEDCOUPLING_EXPORT void reprQuickOverviewData(std::ostream& stream, std::size_t maxNbOfByteInRepr) const;
731     MEDCOUPLING_EXPORT bool isEqualIfNotWhy(const DataArrayChar& other, std::string& reason) const;
732     MEDCOUPLING_EXPORT std::vector<bool> toVectorOfBool() const;
733   private:
734     ~DataArrayByte() { }
735     DataArrayByte() { }
736   };
737
738   class DataArrayByteTuple;
739
740   class DataArrayByteIterator
741   {
742   public:
743     MEDCOUPLING_EXPORT DataArrayByteIterator(DataArrayByte *da);
744     MEDCOUPLING_EXPORT ~DataArrayByteIterator();
745     MEDCOUPLING_EXPORT DataArrayByteTuple *nextt();
746   private:
747     DataArrayByte *_da;
748     char *_pt;
749     int _tuple_id;
750     int _nb_comp;
751     int _nb_tuple;
752   };
753
754   class DataArrayByteTuple
755   {
756   public:
757     MEDCOUPLING_EXPORT DataArrayByteTuple(char *pt, int nbOfComp);
758     MEDCOUPLING_EXPORT std::string repr() const;
759     MEDCOUPLING_EXPORT int getNumberOfCompo() const { return _nb_of_compo; }
760     MEDCOUPLING_EXPORT const char *getConstPointer() const { return  _pt; }
761     MEDCOUPLING_EXPORT char *getPointer() { return _pt; }
762     MEDCOUPLING_EXPORT char byteValue() const;
763     MEDCOUPLING_EXPORT DataArrayByte *buildDAByte(int nbOfTuples, int nbOfCompo) const;
764   private:
765     char *_pt;
766     int _nb_of_compo;
767   };
768
769   class DataArrayAsciiCharIterator;
770
771   class DataArrayAsciiChar : public DataArrayChar
772   {
773   public:
774     MEDCOUPLING_EXPORT static DataArrayAsciiChar *New();
775     MEDCOUPLING_EXPORT static DataArrayAsciiChar *New(const std::string& st);
776     MEDCOUPLING_EXPORT static DataArrayAsciiChar *New(const std::vector<std::string>& vst, char defaultChar);
777     MEDCOUPLING_EXPORT DataArrayChar *buildEmptySpecializedDAChar() const;
778     MEDCOUPLING_EXPORT DataArrayAsciiCharIterator *iterator();
779     MEDCOUPLING_EXPORT DataArrayAsciiChar *deepCopy() const;
780     MEDCOUPLING_EXPORT DataArrayAsciiChar *performCopyOrIncrRef(bool deepCopy) const;
781     MEDCOUPLING_EXPORT DataArrayAsciiChar *buildNewEmptyInstance() const { return DataArrayAsciiChar::New(); }
782     MEDCOUPLING_EXPORT char asciiCharValue() const;
783     MEDCOUPLING_EXPORT void reprStream(std::ostream& stream) const;
784     MEDCOUPLING_EXPORT void reprZipStream(std::ostream& stream) const;
785     MEDCOUPLING_EXPORT void reprWithoutNameStream(std::ostream& stream) const;
786     MEDCOUPLING_EXPORT void reprZipWithoutNameStream(std::ostream& stream) const;
787     MEDCOUPLING_EXPORT void reprCppStream(const std::string& varName, std::ostream& stream) const;
788     MEDCOUPLING_EXPORT void reprQuickOverview(std::ostream& stream) const;
789     MEDCOUPLING_EXPORT void reprQuickOverviewData(std::ostream& stream, std::size_t maxNbOfByteInRepr) const;
790     MEDCOUPLING_EXPORT bool isEqualIfNotWhy(const DataArrayChar& other, std::string& reason) const;
791   private:
792     ~DataArrayAsciiChar() { }
793     DataArrayAsciiChar() { }
794     DataArrayAsciiChar(const std::string& st);
795     DataArrayAsciiChar(const std::vector<std::string>& vst, char defaultChar);
796   };
797
798   class DataArrayAsciiCharTuple;
799
800   class DataArrayAsciiCharIterator
801   {
802   public:
803     MEDCOUPLING_EXPORT DataArrayAsciiCharIterator(DataArrayAsciiChar *da);
804     MEDCOUPLING_EXPORT ~DataArrayAsciiCharIterator();
805     MEDCOUPLING_EXPORT DataArrayAsciiCharTuple *nextt();
806   private:
807     DataArrayAsciiChar *_da;
808     char *_pt;
809     int _tuple_id;
810     int _nb_comp;
811     int _nb_tuple;
812   };
813
814   class DataArrayAsciiCharTuple
815   {
816   public:
817     MEDCOUPLING_EXPORT DataArrayAsciiCharTuple(char *pt, int nbOfComp);
818     MEDCOUPLING_EXPORT std::string repr() const;
819     MEDCOUPLING_EXPORT int getNumberOfCompo() const { return _nb_of_compo; }
820     MEDCOUPLING_EXPORT const char *getConstPointer() const { return  _pt; }
821     MEDCOUPLING_EXPORT char *getPointer() { return _pt; }
822     MEDCOUPLING_EXPORT char asciiCharValue() const;
823     MEDCOUPLING_EXPORT DataArrayAsciiChar *buildDAAsciiChar(int nbOfTuples, int nbOfCompo) const;
824   private:
825     char *_pt;
826     int _nb_of_compo;
827   };
828 }
829
830 #include "MEDCouplingMemArray.txx"
831
832 namespace MEDCoupling
833 {
834   template<class InputIterator>
835   void DataArrayDouble::insertAtTheEnd(InputIterator first, InputIterator last)
836   {
837     int nbCompo(getNumberOfComponents());
838     if(nbCompo==1)
839       _mem.insertAtTheEnd(first,last);
840     else if(nbCompo==0)
841       {
842         _info_on_compo.resize(1);
843         _mem.insertAtTheEnd(first,last);
844       }
845     else
846       throw INTERP_KERNEL::Exception("DataArrayDouble::insertAtTheEnd : not available for DataArrayDouble with number of components different than 1 !");
847   }
848
849   template<class InputIterator>
850   void DataArrayInt::insertAtTheEnd(InputIterator first, InputIterator last)
851   {
852     int nbCompo(getNumberOfComponents());
853     if(nbCompo==1)
854       _mem.insertAtTheEnd(first,last);
855     else if(nbCompo==0)
856       {
857         _info_on_compo.resize(1);
858         _mem.insertAtTheEnd(first,last);
859       }
860     else
861       throw INTERP_KERNEL::Exception("DataArrayInt::insertAtTheEnd : not available for DataArrayInt with number of components different than 1 !");
862   }
863
864   template<class InputIterator>
865   void DataArrayChar::insertAtTheEnd(InputIterator first, InputIterator last)
866   {
867     int nbCompo(getNumberOfComponents());
868     if(nbCompo==1)
869       _mem.insertAtTheEnd(first,last);
870     else if(nbCompo==0)
871       {
872         _info_on_compo.resize(1);
873         _mem.insertAtTheEnd(first,last);
874       }
875     else
876       throw INTERP_KERNEL::Exception("DataArrayChar::insertAtTheEnd : not available for DataArrayChar with number of components different than 1 !");
877   }
878 }
879
880 #endif