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