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