1 // Copyright (C) 2007-2014 CEA/DEN, EDF R&D
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.
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.
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
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 // Author : Anthony Geay (CEA/DEN)
21 #ifndef __PARAMEDMEM_MEDCOUPLINGMEMARRAY_HXX__
22 #define __PARAMEDMEM_MEDCOUPLINGMEMARRAY_HXX__
24 #include "MEDCoupling.hxx"
25 #include "MEDCouplingTimeLabel.hxx"
26 #include "MEDCouplingRefCountObject.hxx"
27 #include "InterpKernelException.hxx"
28 #include "BBTreePts.txx"
37 class MEDCouplingPointer
40 MEDCouplingPointer():_internal(0),_external(0) { }
41 void null() { _internal=0; _external=0; }
42 bool isNull() const { return _internal==0 && _external==0; }
43 void setInternal(T *pointer);
44 void setExternal(const T *pointer);
45 const T *getConstPointer() const { if(_internal) return _internal; else return _external; }
46 const T *getConstPointerLoc(std::size_t offset) const { if(_internal) return _internal+offset; else return _external+offset; }
47 T *getPointer() { if(_internal) return _internal; if(_external) throw INTERP_KERNEL::Exception("Trying to write on an external pointer."); else return 0; }
57 typedef void (*Deallocator)(void *,void *);
59 MemArray():_nb_of_elem(0),_nb_of_elem_alloc(0),_ownership(false),_dealloc(0),_param_for_deallocator(0) { }
60 MemArray(const MemArray<T>& other);
61 bool isNull() const { return _pointer.isNull(); }
62 const T *getConstPointerLoc(std::size_t offset) const { return _pointer.getConstPointerLoc(offset); }
63 const T *getConstPointer() const { return _pointer.getConstPointer(); }
64 std::size_t getNbOfElem() const { return _nb_of_elem; }
65 std::size_t getNbOfElemAllocated() const { return _nb_of_elem_alloc; }
66 T *getPointer() { return _pointer.getPointer(); }
67 MemArray<T> &operator=(const MemArray<T>& other);
68 T operator[](std::size_t id) const { return _pointer.getConstPointer()[id]; }
69 T& operator[](std::size_t id) { return _pointer.getPointer()[id]; }
70 bool isEqual(const MemArray<T>& other, T prec, std::string& reason) const;
71 void repr(int sl, std::ostream& stream) const;
72 bool reprHeader(int sl, std::ostream& stream) const;
73 void reprZip(int sl, std::ostream& stream) const;
74 void fillWithValue(const T& val);
75 T *fromNoInterlace(int nbOfComp) const;
76 T *toNoInterlace(int nbOfComp) const;
78 void reverse(int nbOfComp);
79 void alloc(std::size_t nbOfElements);
80 void reserve(std::size_t newNbOfElements);
81 void reAlloc(std::size_t newNbOfElements);
82 void useArray(const T *array, bool ownership, DeallocType type, std::size_t nbOfElem);
83 void useExternalArrayWithRWAccess(const T *array, std::size_t nbOfElem);
84 void writeOnPlace(std::size_t id, T element0, const T *others, std::size_t sizeOfOthers);
85 template<class InputIterator>
86 void insertAtTheEnd(InputIterator first, InputIterator last);
87 void pushBack(T elem);
90 bool isDeallocatorCalled() const { return _ownership; }
91 Deallocator getDeallocator() const { return _dealloc; }
92 void setSpecificDeallocator(Deallocator dealloc) { _dealloc=dealloc; }
93 void setParameterForDeallocator(void *param) { _param_for_deallocator=param; }
94 void *getParameterForDeallocator() const { return _param_for_deallocator; }
96 ~MemArray() { destroy(); }
98 static void CPPDeallocator(void *pt, void *param);
99 static void CDeallocator(void *pt, void *param);
101 static void DestroyPointer(T *pt, Deallocator dealloc, void *param);
102 static Deallocator BuildFromType(DeallocType type);
104 std::size_t _nb_of_elem;
105 std::size_t _nb_of_elem_alloc;
107 MEDCouplingPointer<T> _pointer;
108 Deallocator _dealloc;
109 void *_param_for_deallocator;
115 class DataArray : public RefCountObject, public TimeLabel
118 MEDCOUPLING_EXPORT std::size_t getHeapMemorySizeWithoutChildren() const;
119 MEDCOUPLING_EXPORT std::vector<const BigMemoryObject *> getDirectChildren() const;
120 MEDCOUPLING_EXPORT void setName(const std::string& name);
121 MEDCOUPLING_EXPORT void copyStringInfoFrom(const DataArray& other);
122 MEDCOUPLING_EXPORT void copyPartOfStringInfoFrom(const DataArray& other, const std::vector<int>& compoIds);
123 MEDCOUPLING_EXPORT void copyPartOfStringInfoFrom2(const std::vector<int>& compoIds, const DataArray& other);
124 MEDCOUPLING_EXPORT bool areInfoEqualsIfNotWhy(const DataArray& other, std::string& reason) const;
125 MEDCOUPLING_EXPORT bool areInfoEquals(const DataArray& other) const;
126 MEDCOUPLING_EXPORT std::string cppRepr(const std::string& varName) const;
127 MEDCOUPLING_EXPORT std::string getName() const { return _name; }
128 MEDCOUPLING_EXPORT const std::vector<std::string> &getInfoOnComponents() const { return _info_on_compo; }
129 MEDCOUPLING_EXPORT std::vector<std::string> &getInfoOnComponents() { return _info_on_compo; }
130 MEDCOUPLING_EXPORT void setInfoOnComponents(const std::vector<std::string>& info);
131 MEDCOUPLING_EXPORT void setInfoAndChangeNbOfCompo(const std::vector<std::string>& info);
132 MEDCOUPLING_EXPORT std::vector<std::string> getVarsOnComponent() const;
133 MEDCOUPLING_EXPORT std::vector<std::string> getUnitsOnComponent() const;
134 MEDCOUPLING_EXPORT std::string getInfoOnComponent(int i) const;
135 MEDCOUPLING_EXPORT std::string getVarOnComponent(int i) const;
136 MEDCOUPLING_EXPORT std::string getUnitOnComponent(int i) const;
137 MEDCOUPLING_EXPORT void setInfoOnComponent(int i, const std::string& info);
138 MEDCOUPLING_EXPORT int getNumberOfComponents() const { return (int)_info_on_compo.size(); }
139 MEDCOUPLING_EXPORT void setPartOfValuesBase3(const DataArray *aBase, const int *bgTuples, const int *endTuples, int bgComp, int endComp, int stepComp, bool strictCompoCompare=true);
140 MEDCOUPLING_EXPORT virtual DataArray *deepCpy() const = 0;
141 MEDCOUPLING_EXPORT virtual bool isAllocated() const = 0;
142 MEDCOUPLING_EXPORT virtual void checkAllocated() const = 0;
143 MEDCOUPLING_EXPORT virtual void desallocate() = 0;
144 MEDCOUPLING_EXPORT virtual int getNumberOfTuples() const = 0;
145 MEDCOUPLING_EXPORT virtual std::size_t getNbOfElems() const = 0;
146 MEDCOUPLING_EXPORT virtual std::size_t getNbOfElemAllocated() const = 0;
147 MEDCOUPLING_EXPORT virtual void alloc(int nbOfTuple, int nbOfCompo=1) = 0;
148 MEDCOUPLING_EXPORT virtual void reAlloc(int newNbOfTuple) = 0;
149 MEDCOUPLING_EXPORT virtual void renumberInPlace(const int *old2New) = 0;
150 MEDCOUPLING_EXPORT virtual void renumberInPlaceR(const int *new2Old) = 0;
151 MEDCOUPLING_EXPORT virtual void setContigPartOfSelectedValues(int tupleIdStart, const DataArray *aBase, const DataArrayInt *tuplesSelec) = 0;
152 MEDCOUPLING_EXPORT virtual void setContigPartOfSelectedValues2(int tupleIdStart, const DataArray *aBase, int bg, int end2, int step) = 0;
153 MEDCOUPLING_EXPORT virtual DataArray *selectByTupleRanges(const std::vector<std::pair<int,int> >& ranges) const = 0;
154 MEDCOUPLING_EXPORT virtual DataArray *keepSelectedComponents(const std::vector<int>& compoIds) const = 0;
155 MEDCOUPLING_EXPORT virtual DataArray *selectByTupleId(const int *new2OldBg, const int *new2OldEnd) const = 0;
156 MEDCOUPLING_EXPORT virtual DataArray *selectByTupleIdSafe(const int *new2OldBg, const int *new2OldEnd) const = 0;
157 MEDCOUPLING_EXPORT virtual DataArray *selectByTupleId2(int bg, int end2, int step) const = 0;
158 MEDCOUPLING_EXPORT virtual void rearrange(int newNbOfCompo) = 0;
159 MEDCOUPLING_EXPORT void checkNbOfTuples(int nbOfTuples, const std::string& msg) const;
160 MEDCOUPLING_EXPORT void checkNbOfComps(int nbOfCompo, const std::string& msg) const;
161 MEDCOUPLING_EXPORT void checkNbOfTuplesAndComp(const DataArray& other, const std::string& msg) const;
162 MEDCOUPLING_EXPORT void checkNbOfTuplesAndComp(int nbOfTuples, int nbOfCompo, const std::string& msg) const;
163 MEDCOUPLING_EXPORT void checkNbOfElems(std::size_t nbOfElems, const std::string& msg) const;
164 MEDCOUPLING_EXPORT static void GetSlice(int start, int stop, int step, int sliceId, int nbOfSlices, int& startSlice, int& stopSlice);
165 MEDCOUPLING_EXPORT static int GetNumberOfItemGivenBES(int begin, int end, int step, const std::string& msg);
166 MEDCOUPLING_EXPORT static int GetNumberOfItemGivenBESRelative(int begin, int end, int step, const std::string& msg);
167 MEDCOUPLING_EXPORT static int GetPosOfItemGivenBESRelativeNoThrow(int value, int begin, int end, int step);
168 MEDCOUPLING_EXPORT static std::string GetVarNameFromInfo(const std::string& info);
169 MEDCOUPLING_EXPORT static std::string GetUnitFromInfo(const std::string& info);
170 MEDCOUPLING_EXPORT static DataArray *Aggregate(const std::vector<const DataArray *>& arrs);
171 MEDCOUPLING_EXPORT virtual void reprStream(std::ostream& stream) const = 0;
172 MEDCOUPLING_EXPORT virtual void reprZipStream(std::ostream& stream) const = 0;
173 MEDCOUPLING_EXPORT virtual void reprWithoutNameStream(std::ostream& stream) const;
174 MEDCOUPLING_EXPORT virtual void reprZipWithoutNameStream(std::ostream& stream) const = 0;
175 MEDCOUPLING_EXPORT virtual void reprCppStream(const std::string& varName, std::ostream& stream) const = 0;
176 MEDCOUPLING_EXPORT virtual void reprQuickOverview(std::ostream& stream) const = 0;
177 MEDCOUPLING_EXPORT virtual void reprQuickOverviewData(std::ostream& stream, std::size_t maxNbOfByteInRepr) const = 0;
182 static void CheckValueInRange(int ref, int value, const std::string& msg);
183 static void CheckValueInRangeEx(int value, int start, int end, const std::string& msg);
184 static void CheckClosingParInRange(int ref, int value, const std::string& msg);
187 std::vector<std::string> _info_on_compo;
191 #include "MEDCouplingMemArray.txx"
196 class DataArrayDoubleIterator;
197 class DataArrayDouble : public DataArray
200 MEDCOUPLING_EXPORT static DataArrayDouble *New();
201 MEDCOUPLING_EXPORT bool isAllocated() const;
202 MEDCOUPLING_EXPORT void checkAllocated() const;
203 MEDCOUPLING_EXPORT void desallocate();
204 MEDCOUPLING_EXPORT int getNumberOfTuples() const { return _info_on_compo.empty()?0:_mem.getNbOfElem()/getNumberOfComponents(); }
205 MEDCOUPLING_EXPORT std::size_t getNbOfElems() const { return _mem.getNbOfElem(); }
206 MEDCOUPLING_EXPORT std::size_t getHeapMemorySizeWithoutChildren() const;
207 MEDCOUPLING_EXPORT double doubleValue() const;
208 MEDCOUPLING_EXPORT bool empty() const;
209 MEDCOUPLING_EXPORT DataArrayDouble *deepCpy() const;
210 MEDCOUPLING_EXPORT DataArrayDouble *performCpy(bool deepCpy) const;
211 MEDCOUPLING_EXPORT void cpyFrom(const DataArrayDouble& other);
212 MEDCOUPLING_EXPORT void reserve(std::size_t nbOfElems);
213 MEDCOUPLING_EXPORT void pushBackSilent(double val);
214 MEDCOUPLING_EXPORT void pushBackValsSilent(const double *valsBg, const double *valsEnd);
215 MEDCOUPLING_EXPORT double popBackSilent();
216 MEDCOUPLING_EXPORT void pack() const;
217 MEDCOUPLING_EXPORT std::size_t getNbOfElemAllocated() const { return _mem.getNbOfElemAllocated(); }
218 MEDCOUPLING_EXPORT void alloc(int nbOfTuple, int nbOfCompo=1);
219 MEDCOUPLING_EXPORT void allocIfNecessary(int nbOfTuple, int nbOfCompo);
220 MEDCOUPLING_EXPORT void fillWithZero();
221 MEDCOUPLING_EXPORT void fillWithValue(double val);
222 MEDCOUPLING_EXPORT void iota(double init=0.);
223 MEDCOUPLING_EXPORT bool isUniform(double val, double eps) const;
224 MEDCOUPLING_EXPORT void sort(bool asc=true);
225 MEDCOUPLING_EXPORT void reverse();
226 MEDCOUPLING_EXPORT void checkMonotonic(bool increasing, double eps) const;
227 MEDCOUPLING_EXPORT bool isMonotonic(bool increasing, double eps) const;
228 MEDCOUPLING_EXPORT std::string repr() const;
229 MEDCOUPLING_EXPORT std::string reprZip() const;
230 MEDCOUPLING_EXPORT void writeVTK(std::ostream& ofs, int indent, const std::string& nameInFile, DataArrayByte *byteArr) const;
231 MEDCOUPLING_EXPORT void reprStream(std::ostream& stream) const;
232 MEDCOUPLING_EXPORT void reprZipStream(std::ostream& stream) const;
233 MEDCOUPLING_EXPORT void reprWithoutNameStream(std::ostream& stream) const;
234 MEDCOUPLING_EXPORT void reprZipWithoutNameStream(std::ostream& stream) const;
235 MEDCOUPLING_EXPORT void reprCppStream(const std::string& varName, std::ostream& stream) const;
236 MEDCOUPLING_EXPORT void reprQuickOverview(std::ostream& stream) const;
237 MEDCOUPLING_EXPORT void reprQuickOverviewData(std::ostream& stream, std::size_t maxNbOfByteInRepr) const;
238 MEDCOUPLING_EXPORT bool isEqual(const DataArrayDouble& other, double prec) const;
239 MEDCOUPLING_EXPORT bool isEqualIfNotWhy(const DataArrayDouble& other, double prec, std::string& reason) const;
240 MEDCOUPLING_EXPORT bool isEqualWithoutConsideringStr(const DataArrayDouble& other, double prec) const;
241 MEDCOUPLING_EXPORT void reAlloc(int nbOfTuples);
242 MEDCOUPLING_EXPORT DataArrayInt *convertToIntArr() const;
243 MEDCOUPLING_EXPORT DataArrayDouble *fromNoInterlace() const;
244 MEDCOUPLING_EXPORT DataArrayDouble *toNoInterlace() const;
245 MEDCOUPLING_EXPORT void renumberInPlace(const int *old2New);
246 MEDCOUPLING_EXPORT void renumberInPlaceR(const int *new2Old);
247 MEDCOUPLING_EXPORT DataArrayDouble *renumber(const int *old2New) const;
248 MEDCOUPLING_EXPORT DataArrayDouble *renumberR(const int *new2Old) const;
249 MEDCOUPLING_EXPORT DataArrayDouble *renumberAndReduce(const int *old2New, int newNbOfTuple) const;
250 MEDCOUPLING_EXPORT DataArrayDouble *selectByTupleId(const int *new2OldBg, const int *new2OldEnd) const;
251 MEDCOUPLING_EXPORT DataArrayDouble *selectByTupleIdSafe(const int *new2OldBg, const int *new2OldEnd) const;
252 MEDCOUPLING_EXPORT DataArrayDouble *selectByTupleId2(int bg, int end2, int step) const;
253 MEDCOUPLING_EXPORT DataArray *selectByTupleRanges(const std::vector<std::pair<int,int> >& ranges) const;
254 MEDCOUPLING_EXPORT DataArrayDouble *substr(int tupleIdBg, int tupleIdEnd=-1) const;
255 MEDCOUPLING_EXPORT void rearrange(int newNbOfCompo);
256 MEDCOUPLING_EXPORT void transpose();
257 MEDCOUPLING_EXPORT DataArrayDouble *changeNbOfComponents(int newNbOfComp, double dftValue) const;
258 MEDCOUPLING_EXPORT DataArray *keepSelectedComponents(const std::vector<int>& compoIds) const;
259 MEDCOUPLING_EXPORT void meldWith(const DataArrayDouble *other);
260 MEDCOUPLING_EXPORT bool areIncludedInMe(const DataArrayDouble *other, double prec, DataArrayInt *&tupleIds) const;
261 MEDCOUPLING_EXPORT void findCommonTuples(double prec, int limitTupleId, DataArrayInt *&comm, DataArrayInt *&commIndex) const;
262 MEDCOUPLING_EXPORT double minimalDistanceTo(const DataArrayDouble *other, int& thisTupleId, int& otherTupleId) const;
263 MEDCOUPLING_EXPORT DataArrayDouble *duplicateEachTupleNTimes(int nbTimes) const;
264 MEDCOUPLING_EXPORT DataArrayDouble *getDifferentValues(double prec, int limitTupleId=-1) const;
265 MEDCOUPLING_EXPORT DataArrayInt *findClosestTupleId(const DataArrayDouble *other) const;
266 MEDCOUPLING_EXPORT DataArrayInt *computeNbOfInteractionsWith(const DataArrayDouble *otherBBoxFrmt, double eps) const;
267 MEDCOUPLING_EXPORT void setSelectedComponents(const DataArrayDouble *a, const std::vector<int>& compoIds);
268 MEDCOUPLING_EXPORT void setPartOfValues1(const DataArrayDouble *a, int bgTuples, int endTuples, int stepTuples, int bgComp, int endComp, int stepComp, bool strictCompoCompare=true);
269 MEDCOUPLING_EXPORT void setPartOfValuesSimple1(double a, int bgTuples, int endTuples, int stepTuples, int bgComp, int endComp, int stepComp);
270 MEDCOUPLING_EXPORT void setPartOfValues2(const DataArrayDouble *a, const int *bgTuples, const int *endTuples, const int *bgComp, const int *endComp, bool strictCompoCompare=true);
271 MEDCOUPLING_EXPORT void setPartOfValuesSimple2(double a, const int *bgTuples, const int *endTuples, const int *bgComp, const int *endComp);
272 MEDCOUPLING_EXPORT void setPartOfValues3(const DataArrayDouble *a, const int *bgTuples, const int *endTuples, int bgComp, int endComp, int stepComp, bool strictCompoCompare=true);
273 MEDCOUPLING_EXPORT void setPartOfValuesSimple3(double a, const int *bgTuples, const int *endTuples, int bgComp, int endComp, int stepComp);
274 MEDCOUPLING_EXPORT void setPartOfValues4(const DataArrayDouble *a, int bgTuples, int endTuples, int stepTuples, const int *bgComp, const int *endComp, bool strictCompoCompare=true);
275 MEDCOUPLING_EXPORT void setPartOfValuesSimple4(double a, int bgTuples, int endTuples, int stepTuples, const int *bgComp, const int *endComp);
276 MEDCOUPLING_EXPORT void setPartOfValuesAdv(const DataArrayDouble *a, const DataArrayInt *tuplesSelec);
277 MEDCOUPLING_EXPORT void setContigPartOfSelectedValues(int tupleIdStart, const DataArray *aBase, const DataArrayInt *tuplesSelec);
278 MEDCOUPLING_EXPORT void setContigPartOfSelectedValues2(int tupleIdStart, const DataArray *aBase, int bg, int end2, int step);
279 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); }
280 MEDCOUPLING_EXPORT double getIJ(int tupleId, int compoId) const { return _mem[tupleId*_info_on_compo.size()+compoId]; }
281 MEDCOUPLING_EXPORT double front() const;
282 MEDCOUPLING_EXPORT double back() const;
283 MEDCOUPLING_EXPORT double getIJSafe(int tupleId, int compoId) const;
284 MEDCOUPLING_EXPORT void setIJ(int tupleId, int compoId, double newVal) { _mem[tupleId*_info_on_compo.size()+compoId]=newVal; declareAsNew(); }
285 MEDCOUPLING_EXPORT void setIJSilent(int tupleId, int compoId, double newVal) { _mem[tupleId*_info_on_compo.size()+compoId]=newVal; }
286 MEDCOUPLING_EXPORT double *getPointer() { return _mem.getPointer(); }
287 MEDCOUPLING_EXPORT static void SetArrayIn(DataArrayDouble *newArray, DataArrayDouble* &arrayToSet);
288 MEDCOUPLING_EXPORT const double *getConstPointer() const { return _mem.getConstPointer(); }
289 MEDCOUPLING_EXPORT DataArrayDoubleIterator *iterator();
290 MEDCOUPLING_EXPORT const double *begin() const { return getConstPointer(); }
291 MEDCOUPLING_EXPORT const double *end() const { return getConstPointer()+getNbOfElems(); }
292 MEDCOUPLING_EXPORT void useArray(const double *array, bool ownership, DeallocType type, int nbOfTuple, int nbOfCompo);
293 MEDCOUPLING_EXPORT void useExternalArrayWithRWAccess(const double *array, int nbOfTuple, int nbOfCompo);
294 template<class InputIterator>
295 void insertAtTheEnd(InputIterator first, InputIterator last);
296 MEDCOUPLING_EXPORT void writeOnPlace(std::size_t id, double element0, const double *others, int sizeOfOthers) { _mem.writeOnPlace(id,element0,others,sizeOfOthers); }
297 MEDCOUPLING_EXPORT void checkNoNullValues() const;
298 MEDCOUPLING_EXPORT void getMinMaxPerComponent(double *bounds) const;
299 MEDCOUPLING_EXPORT DataArrayDouble *computeBBoxPerTuple(double epsilon=0.0) const;
300 MEDCOUPLING_EXPORT void computeTupleIdsNearTuples(const DataArrayDouble *other, double eps, DataArrayInt *& c, DataArrayInt *& cI) const;
301 MEDCOUPLING_EXPORT void recenterForMaxPrecision(double eps);
302 MEDCOUPLING_EXPORT double getMaxValue(int& tupleId) const;
303 MEDCOUPLING_EXPORT double getMaxValueInArray() const;
304 MEDCOUPLING_EXPORT double getMinValue(int& tupleId) const;
305 MEDCOUPLING_EXPORT double getMinValueInArray() const;
306 MEDCOUPLING_EXPORT double getMaxValue2(DataArrayInt*& tupleIds) const;
307 MEDCOUPLING_EXPORT double getMinValue2(DataArrayInt*& tupleIds) const;
308 MEDCOUPLING_EXPORT int count(double value, double eps) const;
309 MEDCOUPLING_EXPORT double getAverageValue() const;
310 MEDCOUPLING_EXPORT double norm2() const;
311 MEDCOUPLING_EXPORT double normMax() const;
312 MEDCOUPLING_EXPORT double normMin() const;
313 MEDCOUPLING_EXPORT void accumulate(double *res) const;
314 MEDCOUPLING_EXPORT double accumulate(int compId) const;
315 MEDCOUPLING_EXPORT DataArrayDouble *accumulatePerChunck(const int *bgOfIndex, const int *endOfIndex) const;
316 MEDCOUPLING_EXPORT double distanceToTuple(const double *tupleBg, const double *tupleEnd, int& tupleId) const;
317 MEDCOUPLING_EXPORT DataArrayDouble *fromPolarToCart() const;
318 MEDCOUPLING_EXPORT DataArrayDouble *fromCylToCart() const;
319 MEDCOUPLING_EXPORT DataArrayDouble *fromSpherToCart() const;
320 MEDCOUPLING_EXPORT DataArrayDouble *doublyContractedProduct() const;
321 MEDCOUPLING_EXPORT DataArrayDouble *determinant() const;
322 MEDCOUPLING_EXPORT DataArrayDouble *eigenValues() const;
323 MEDCOUPLING_EXPORT DataArrayDouble *eigenVectors() const;
324 MEDCOUPLING_EXPORT DataArrayDouble *inverse() const;
325 MEDCOUPLING_EXPORT DataArrayDouble *trace() const;
326 MEDCOUPLING_EXPORT DataArrayDouble *deviator() const;
327 MEDCOUPLING_EXPORT DataArrayDouble *magnitude() const;
328 MEDCOUPLING_EXPORT DataArrayDouble *sumPerTuple() const;
329 MEDCOUPLING_EXPORT DataArrayDouble *maxPerTuple() const;
330 MEDCOUPLING_EXPORT DataArrayDouble *maxPerTupleWithCompoId(DataArrayInt* &compoIdOfMaxPerTuple) const;
331 MEDCOUPLING_EXPORT DataArrayDouble *buildEuclidianDistanceDenseMatrix() const;
332 MEDCOUPLING_EXPORT DataArrayDouble *buildEuclidianDistanceDenseMatrixWith(const DataArrayDouble *other) const;
333 MEDCOUPLING_EXPORT void sortPerTuple(bool asc);
334 MEDCOUPLING_EXPORT void abs();
335 MEDCOUPLING_EXPORT DataArrayDouble *computeAbs() const;
336 MEDCOUPLING_EXPORT void applyLin(double a, double b, int compoId);
337 MEDCOUPLING_EXPORT void applyLin(double a, double b);
338 MEDCOUPLING_EXPORT void applyInv(double numerator);
339 MEDCOUPLING_EXPORT void applyPow(double val);
340 MEDCOUPLING_EXPORT void applyRPow(double val);
341 MEDCOUPLING_EXPORT DataArrayDouble *negate() const;
342 MEDCOUPLING_EXPORT DataArrayDouble *applyFunc(int nbOfComp, FunctionToEvaluate func) const;
343 MEDCOUPLING_EXPORT DataArrayDouble *applyFunc(int nbOfComp, const std::string& func) const;
344 MEDCOUPLING_EXPORT DataArrayDouble *applyFunc(const std::string& func) const;
345 MEDCOUPLING_EXPORT DataArrayDouble *applyFunc2(int nbOfComp, const std::string& func) const;
346 MEDCOUPLING_EXPORT DataArrayDouble *applyFunc3(int nbOfComp, const std::vector<std::string>& varsOrder, const std::string& func) const;
347 MEDCOUPLING_EXPORT void applyFuncFast32(const std::string& func);
348 MEDCOUPLING_EXPORT void applyFuncFast64(const std::string& func);
349 MEDCOUPLING_EXPORT DataArrayInt *getIdsInRange(double vmin, double vmax) const;
350 MEDCOUPLING_EXPORT DataArrayInt *getIdsNotInRange(double vmin, double vmax) const;
351 MEDCOUPLING_EXPORT static DataArrayDouble *Aggregate(const DataArrayDouble *a1, const DataArrayDouble *a2);
352 MEDCOUPLING_EXPORT static DataArrayDouble *Aggregate(const std::vector<const DataArrayDouble *>& arr);
353 MEDCOUPLING_EXPORT static DataArrayDouble *Meld(const DataArrayDouble *a1, const DataArrayDouble *a2);
354 MEDCOUPLING_EXPORT static DataArrayDouble *Meld(const std::vector<const DataArrayDouble *>& arr);
355 MEDCOUPLING_EXPORT static DataArrayDouble *Dot(const DataArrayDouble *a1, const DataArrayDouble *a2);
356 MEDCOUPLING_EXPORT static DataArrayDouble *CrossProduct(const DataArrayDouble *a1, const DataArrayDouble *a2);
357 MEDCOUPLING_EXPORT static DataArrayDouble *Max(const DataArrayDouble *a1, const DataArrayDouble *a2);
358 MEDCOUPLING_EXPORT static DataArrayDouble *Min(const DataArrayDouble *a1, const DataArrayDouble *a2);
359 MEDCOUPLING_EXPORT static DataArrayDouble *Add(const DataArrayDouble *a1, const DataArrayDouble *a2);
360 MEDCOUPLING_EXPORT void addEqual(const DataArrayDouble *other);
361 MEDCOUPLING_EXPORT static DataArrayDouble *Substract(const DataArrayDouble *a1, const DataArrayDouble *a2);
362 MEDCOUPLING_EXPORT void substractEqual(const DataArrayDouble *other);
363 MEDCOUPLING_EXPORT static DataArrayDouble *Multiply(const DataArrayDouble *a1, const DataArrayDouble *a2);
364 MEDCOUPLING_EXPORT void multiplyEqual(const DataArrayDouble *other);
365 MEDCOUPLING_EXPORT static DataArrayDouble *Divide(const DataArrayDouble *a1, const DataArrayDouble *a2);
366 MEDCOUPLING_EXPORT void divideEqual(const DataArrayDouble *other);
367 MEDCOUPLING_EXPORT static DataArrayDouble *Pow(const DataArrayDouble *a1, const DataArrayDouble *a2);
368 MEDCOUPLING_EXPORT void powEqual(const DataArrayDouble *other);
369 MEDCOUPLING_EXPORT void updateTime() const { }
370 MEDCOUPLING_EXPORT MemArray<double>& accessToMemArray() { return _mem; }
371 MEDCOUPLING_EXPORT const MemArray<double>& accessToMemArray() const { return _mem; }
373 MEDCOUPLING_EXPORT void getTinySerializationIntInformation(std::vector<int>& tinyInfo) const;
374 MEDCOUPLING_EXPORT void getTinySerializationStrInformation(std::vector<std::string>& tinyInfo) const;
375 MEDCOUPLING_EXPORT bool resizeForUnserialization(const std::vector<int>& tinyInfoI);
376 MEDCOUPLING_EXPORT void finishUnserialization(const std::vector<int>& tinyInfoI, const std::vector<std::string>& tinyInfoS);
378 template<int SPACEDIM>
379 void findCommonTuplesAlg(const double *bbox, int nbNodes, int limitNodeId, double prec, DataArrayInt *c, DataArrayInt *cI) const;
380 template<int SPACEDIM>
381 static void FindClosestTupleIdAlg(const BBTreePts<SPACEDIM,int>& myTree, double dist, const double *pos, int nbOfTuples, const double *thisPt, int thisNbOfTuples, int *res);
382 template<int SPACEDIM>
383 static void FindTupleIdsNearTuplesAlg(const BBTreePts<SPACEDIM,int>& myTree, const double *pos, int nbOfTuples, double eps,
384 DataArrayInt *c, DataArrayInt *cI);
386 ~DataArrayDouble() { }
387 DataArrayDouble() { }
389 MemArray<double> _mem;
392 class DataArrayDoubleTuple;
394 class DataArrayDoubleIterator
397 MEDCOUPLING_EXPORT DataArrayDoubleIterator(DataArrayDouble *da);
398 MEDCOUPLING_EXPORT ~DataArrayDoubleIterator();
399 MEDCOUPLING_EXPORT DataArrayDoubleTuple *nextt();
401 DataArrayDouble *_da;
408 class DataArrayDoubleTuple
411 MEDCOUPLING_EXPORT DataArrayDoubleTuple(double *pt, int nbOfComp);
412 MEDCOUPLING_EXPORT std::string repr() const;
413 MEDCOUPLING_EXPORT int getNumberOfCompo() const { return _nb_of_compo; }
414 MEDCOUPLING_EXPORT const double *getConstPointer() const { return _pt; }
415 MEDCOUPLING_EXPORT double *getPointer() { return _pt; }
416 MEDCOUPLING_EXPORT double doubleValue() const;
417 MEDCOUPLING_EXPORT DataArrayDouble *buildDADouble(int nbOfTuples, int nbOfCompo) const;
423 class DataArrayIntIterator;
425 class DataArrayInt : public DataArray
428 MEDCOUPLING_EXPORT static DataArrayInt *New();
429 MEDCOUPLING_EXPORT bool isAllocated() const;
430 MEDCOUPLING_EXPORT void checkAllocated() const;
431 MEDCOUPLING_EXPORT void desallocate();
432 MEDCOUPLING_EXPORT int getNumberOfTuples() const { return _info_on_compo.empty()?0:_mem.getNbOfElem()/getNumberOfComponents(); }
433 MEDCOUPLING_EXPORT std::size_t getNbOfElems() const { return _mem.getNbOfElem(); }
434 MEDCOUPLING_EXPORT std::size_t getHeapMemorySizeWithoutChildren() const;
435 MEDCOUPLING_EXPORT int intValue() const;
436 MEDCOUPLING_EXPORT int getHashCode() const;
437 MEDCOUPLING_EXPORT bool empty() const;
438 MEDCOUPLING_EXPORT DataArrayInt *deepCpy() const;
439 MEDCOUPLING_EXPORT DataArrayInt *performCpy(bool deepCpy) const;
440 MEDCOUPLING_EXPORT void cpyFrom(const DataArrayInt& other);
441 MEDCOUPLING_EXPORT void reserve(std::size_t nbOfElems);
442 MEDCOUPLING_EXPORT void pushBackSilent(int val);
443 MEDCOUPLING_EXPORT void pushBackValsSilent(const int *valsBg, const int *valsEnd);
444 MEDCOUPLING_EXPORT int popBackSilent();
445 MEDCOUPLING_EXPORT void pack() const;
446 MEDCOUPLING_EXPORT std::size_t getNbOfElemAllocated() const { return _mem.getNbOfElemAllocated(); }
447 MEDCOUPLING_EXPORT void alloc(int nbOfTuple, int nbOfCompo=1);
448 MEDCOUPLING_EXPORT void allocIfNecessary(int nbOfTuple, int nbOfCompo);
449 MEDCOUPLING_EXPORT bool isEqual(const DataArrayInt& other) const;
450 MEDCOUPLING_EXPORT bool isEqualIfNotWhy(const DataArrayInt& other, std::string& reason) const;
451 MEDCOUPLING_EXPORT bool isEqualWithoutConsideringStr(const DataArrayInt& other) const;
452 MEDCOUPLING_EXPORT bool isEqualWithoutConsideringStrAndOrder(const DataArrayInt& other) const;
453 MEDCOUPLING_EXPORT bool isFittingWith(const std::vector<bool>& v) const;
454 MEDCOUPLING_EXPORT DataArrayInt *buildPermutationArr(const DataArrayInt& other) const;
455 MEDCOUPLING_EXPORT DataArrayInt *sumPerTuple() const;
456 MEDCOUPLING_EXPORT void sort(bool asc=true);
457 MEDCOUPLING_EXPORT void reverse();
458 MEDCOUPLING_EXPORT void checkMonotonic(bool increasing) const;
459 MEDCOUPLING_EXPORT bool isMonotonic(bool increasing) const;
460 MEDCOUPLING_EXPORT void checkStrictlyMonotonic(bool increasing) const;
461 MEDCOUPLING_EXPORT bool isStrictlyMonotonic(bool increasing) const;
462 MEDCOUPLING_EXPORT void fillWithZero();
463 MEDCOUPLING_EXPORT void fillWithValue(int val);
464 MEDCOUPLING_EXPORT void iota(int init=0);
465 MEDCOUPLING_EXPORT std::string repr() const;
466 MEDCOUPLING_EXPORT std::string reprZip() const;
467 MEDCOUPLING_EXPORT void writeVTK(std::ostream& ofs, int indent, const std::string& type, const std::string& nameInFile, DataArrayByte *byteArr) const;
468 MEDCOUPLING_EXPORT void reprStream(std::ostream& stream) const;
469 MEDCOUPLING_EXPORT void reprZipStream(std::ostream& stream) const;
470 MEDCOUPLING_EXPORT void reprWithoutNameStream(std::ostream& stream) const;
471 MEDCOUPLING_EXPORT void reprZipWithoutNameStream(std::ostream& stream) const;
472 MEDCOUPLING_EXPORT void reprCppStream(const std::string& varName, std::ostream& stream) const;
473 MEDCOUPLING_EXPORT void reprQuickOverview(std::ostream& stream) const;
474 MEDCOUPLING_EXPORT void reprQuickOverviewData(std::ostream& stream, std::size_t maxNbOfByteInRepr) const;
475 MEDCOUPLING_EXPORT void transformWithIndArr(const int *indArrBg, const int *indArrEnd);
476 MEDCOUPLING_EXPORT DataArrayInt *transformWithIndArrR(const int *indArrBg, const int *indArrEnd) const;
477 MEDCOUPLING_EXPORT void splitByValueRange(const int *arrBg, const int *arrEnd,
478 DataArrayInt *& castArr, DataArrayInt *& rankInsideCast, DataArrayInt *& castsPresent) const throw(INTERP_KERNEL::Exception);
479 MEDCOUPLING_EXPORT DataArrayInt *invertArrayO2N2N2O(int newNbOfElem) const;
480 MEDCOUPLING_EXPORT DataArrayInt *invertArrayN2O2O2N(int oldNbOfElem) const;
481 MEDCOUPLING_EXPORT DataArrayInt *invertArrayO2N2N2OBis(int newNbOfElem) const;
482 MEDCOUPLING_EXPORT void reAlloc(int nbOfTuples);
483 MEDCOUPLING_EXPORT DataArrayDouble *convertToDblArr() const;
484 MEDCOUPLING_EXPORT DataArrayInt *fromNoInterlace() const;
485 MEDCOUPLING_EXPORT DataArrayInt *toNoInterlace() const;
486 MEDCOUPLING_EXPORT void renumberInPlace(const int *old2New);
487 MEDCOUPLING_EXPORT void renumberInPlaceR(const int *new2Old);
488 MEDCOUPLING_EXPORT DataArrayInt *renumber(const int *old2New) const;
489 MEDCOUPLING_EXPORT DataArrayInt *renumberR(const int *new2Old) const;
490 MEDCOUPLING_EXPORT DataArrayInt *renumberAndReduce(const int *old2NewBg, int newNbOfTuple) const;
491 MEDCOUPLING_EXPORT DataArrayInt *selectByTupleId(const int *new2OldBg, const int *new2OldEnd) const;
492 MEDCOUPLING_EXPORT DataArrayInt *selectByTupleIdSafe(const int *new2OldBg, const int *new2OldEnd) const;
493 MEDCOUPLING_EXPORT DataArrayInt *selectByTupleId2(int bg, int end, int step) const;
494 MEDCOUPLING_EXPORT DataArray *selectByTupleRanges(const std::vector<std::pair<int,int> >& ranges) const;
495 MEDCOUPLING_EXPORT DataArrayInt *checkAndPreparePermutation() const;
496 MEDCOUPLING_EXPORT static DataArrayInt *FindPermutationFromFirstToSecond(const DataArrayInt *ids1, const DataArrayInt *ids2);
497 MEDCOUPLING_EXPORT void changeSurjectiveFormat(int targetNb, DataArrayInt *&arr, DataArrayInt *&arrI) const;
498 MEDCOUPLING_EXPORT static DataArrayInt *BuildOld2NewArrayFromSurjectiveFormat2(int nbOfOldTuples, const int *arr, const int *arrIBg, const int *arrIEnd, int &newNbOfTuples);
499 MEDCOUPLING_EXPORT DataArrayInt *buildPermArrPerLevel() const;
500 MEDCOUPLING_EXPORT bool isIdentity() const;
501 MEDCOUPLING_EXPORT bool isUniform(int val) const;
502 MEDCOUPLING_EXPORT DataArrayInt *substr(int tupleIdBg, int tupleIdEnd=-1) const;
503 MEDCOUPLING_EXPORT void rearrange(int newNbOfCompo);
504 MEDCOUPLING_EXPORT void transpose();
505 MEDCOUPLING_EXPORT DataArrayInt *changeNbOfComponents(int newNbOfComp, int dftValue) const;
506 MEDCOUPLING_EXPORT DataArray *keepSelectedComponents(const std::vector<int>& compoIds) const;
507 MEDCOUPLING_EXPORT void meldWith(const DataArrayInt *other);
508 MEDCOUPLING_EXPORT void setSelectedComponents(const DataArrayInt *a, const std::vector<int>& compoIds);
509 MEDCOUPLING_EXPORT void setPartOfValues1(const DataArrayInt *a, int bgTuples, int endTuples, int stepTuples, int bgComp, int endComp, int stepComp, bool strictCompoCompare=true);
510 MEDCOUPLING_EXPORT void setPartOfValuesSimple1(int a, int bgTuples, int endTuples, int stepTuples, int bgComp, int endComp, int stepComp);
511 MEDCOUPLING_EXPORT void setPartOfValues2(const DataArrayInt *a, const int *bgTuples, const int *endTuples, const int *bgComp, const int *endComp, bool strictCompoCompare=true);
512 MEDCOUPLING_EXPORT void setPartOfValuesSimple2(int a, const int *bgTuples, const int *endTuples, const int *bgComp, const int *endComp);
513 MEDCOUPLING_EXPORT void setPartOfValues3(const DataArrayInt *a, const int *bgTuples, const int *endTuples, int bgComp, int endComp, int stepComp, bool strictCompoCompare=true);
514 MEDCOUPLING_EXPORT void setPartOfValuesSimple3(int a, const int *bgTuples, const int *endTuples, int bgComp, int endComp, int stepComp);
515 MEDCOUPLING_EXPORT void setPartOfValues4(const DataArrayInt *a, int bgTuples, int endTuples, int stepTuples, const int *bgComp, const int *endComp, bool strictCompoCompare=true);
516 MEDCOUPLING_EXPORT void setPartOfValuesSimple4(int a, int bgTuples, int endTuples, int stepTuples, const int *bgComp, const int *endComp);
517 MEDCOUPLING_EXPORT void setPartOfValuesAdv(const DataArrayInt *a, const DataArrayInt *tuplesSelec);
518 MEDCOUPLING_EXPORT void setContigPartOfSelectedValues(int tupleIdStart, const DataArray *aBase, const DataArrayInt *tuplesSelec);
519 MEDCOUPLING_EXPORT void setContigPartOfSelectedValues2(int tupleIdStart, const DataArray *aBase, int bg, int end2, int step);
520 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); }
521 MEDCOUPLING_EXPORT int getIJ(int tupleId, int compoId) const { return _mem[tupleId*_info_on_compo.size()+compoId]; }
522 MEDCOUPLING_EXPORT int getIJSafe(int tupleId, int compoId) const;
523 MEDCOUPLING_EXPORT int front() const;
524 MEDCOUPLING_EXPORT int back() const;
525 MEDCOUPLING_EXPORT void setIJ(int tupleId, int compoId, int newVal) { _mem[tupleId*_info_on_compo.size()+compoId]=newVal; declareAsNew(); }
526 MEDCOUPLING_EXPORT void setIJSilent(int tupleId, int compoId, int newVal) { _mem[tupleId*_info_on_compo.size()+compoId]=newVal; }
527 MEDCOUPLING_EXPORT int *getPointer() { return _mem.getPointer(); }
528 MEDCOUPLING_EXPORT static void SetArrayIn(DataArrayInt *newArray, DataArrayInt* &arrayToSet);
529 MEDCOUPLING_EXPORT const int *getConstPointer() const { return _mem.getConstPointer(); }
530 MEDCOUPLING_EXPORT DataArrayIntIterator *iterator();
531 MEDCOUPLING_EXPORT const int *begin() const { return getConstPointer(); }
532 MEDCOUPLING_EXPORT const int *end() const { return getConstPointer()+getNbOfElems(); }
533 MEDCOUPLING_EXPORT DataArrayInt *getIdsEqual(int val) const;
534 MEDCOUPLING_EXPORT DataArrayInt *getIdsNotEqual(int val) const;
535 MEDCOUPLING_EXPORT DataArrayInt *getIdsEqualList(const int *valsBg, const int *valsEnd) const;
536 MEDCOUPLING_EXPORT DataArrayInt *getIdsNotEqualList(const int *valsBg, const int *valsEnd) const;
537 MEDCOUPLING_EXPORT DataArrayInt *getIdsEqualTuple(const int *tupleBg, const int *tupleEnd) const;
538 MEDCOUPLING_EXPORT int changeValue(int oldValue, int newValue);
539 MEDCOUPLING_EXPORT int locateTuple(const std::vector<int>& tupl) const;
540 MEDCOUPLING_EXPORT int locateValue(int value) const;
541 MEDCOUPLING_EXPORT int locateValue(const std::vector<int>& vals) const;
542 MEDCOUPLING_EXPORT int search(const std::vector<int>& vals) const;
543 MEDCOUPLING_EXPORT bool presenceOfTuple(const std::vector<int>& tupl) const;
544 MEDCOUPLING_EXPORT bool presenceOfValue(int value) const;
545 MEDCOUPLING_EXPORT bool presenceOfValue(const std::vector<int>& vals) const;
546 MEDCOUPLING_EXPORT int count(int value) const;
547 MEDCOUPLING_EXPORT void accumulate(int *res) const;
548 MEDCOUPLING_EXPORT int accumulate(int compId) const;
549 MEDCOUPLING_EXPORT DataArrayInt *accumulatePerChunck(const int *bgOfIndex, const int *endOfIndex) const;
550 MEDCOUPLING_EXPORT int getMaxValue(int& tupleId) const;
551 MEDCOUPLING_EXPORT int getMaxValueInArray() const;
552 MEDCOUPLING_EXPORT int getMinValue(int& tupleId) const;
553 MEDCOUPLING_EXPORT int getMinValueInArray() const;
554 MEDCOUPLING_EXPORT void abs();
555 MEDCOUPLING_EXPORT DataArrayInt *computeAbs() const;
556 MEDCOUPLING_EXPORT void applyLin(int a, int b, int compoId);
557 MEDCOUPLING_EXPORT void applyLin(int a, int b);
558 MEDCOUPLING_EXPORT void applyInv(int numerator);
559 MEDCOUPLING_EXPORT DataArrayInt *negate() const;
560 MEDCOUPLING_EXPORT void applyDivideBy(int val);
561 MEDCOUPLING_EXPORT void applyModulus(int val);
562 MEDCOUPLING_EXPORT void applyRModulus(int val);
563 MEDCOUPLING_EXPORT void applyPow(int val);
564 MEDCOUPLING_EXPORT void applyRPow(int val);
565 MEDCOUPLING_EXPORT DataArrayInt *getIdsInRange(int vmin, int vmax) const;
566 MEDCOUPLING_EXPORT DataArrayInt *getIdsNotInRange(int vmin, int vmax) const;
567 MEDCOUPLING_EXPORT bool checkAllIdsInRange(int vmin, int vmax) const;
568 MEDCOUPLING_EXPORT static DataArrayInt *Aggregate(const DataArrayInt *a1, const DataArrayInt *a2, int offsetA2);
569 MEDCOUPLING_EXPORT static DataArrayInt *Aggregate(const std::vector<const DataArrayInt *>& arr);
570 MEDCOUPLING_EXPORT static DataArrayInt *AggregateIndexes(const std::vector<const DataArrayInt *>& arrs);
571 MEDCOUPLING_EXPORT static DataArrayInt *Meld(const DataArrayInt *a1, const DataArrayInt *a2);
572 MEDCOUPLING_EXPORT static DataArrayInt *Meld(const std::vector<const DataArrayInt *>& arr);
573 MEDCOUPLING_EXPORT static DataArrayInt *MakePartition(const std::vector<const DataArrayInt *>& groups, int newNb, std::vector< std::vector<int> >& fidsOfGroups);
574 MEDCOUPLING_EXPORT static DataArrayInt *BuildUnion(const std::vector<const DataArrayInt *>& arr);
575 MEDCOUPLING_EXPORT static DataArrayInt *BuildIntersection(const std::vector<const DataArrayInt *>& arr);
576 MEDCOUPLING_EXPORT static void PutIntoToSkylineFrmt(const std::vector< std::vector<int> >& v, DataArrayInt *& data, DataArrayInt *& dataIndex);
577 MEDCOUPLING_EXPORT DataArrayInt *buildComplement(int nbOfElement) const;
578 MEDCOUPLING_EXPORT DataArrayInt *buildSubstraction(const DataArrayInt *other) const;
579 MEDCOUPLING_EXPORT DataArrayInt *buildSubstractionOptimized(const DataArrayInt *other) const;
580 MEDCOUPLING_EXPORT DataArrayInt *buildUnion(const DataArrayInt *other) const;
581 MEDCOUPLING_EXPORT DataArrayInt *buildIntersection(const DataArrayInt *other) const;
582 MEDCOUPLING_EXPORT DataArrayInt *buildUnique() const;
583 MEDCOUPLING_EXPORT DataArrayInt *deltaShiftIndex() const;
584 MEDCOUPLING_EXPORT void computeOffsets();
585 MEDCOUPLING_EXPORT void computeOffsets2();
586 MEDCOUPLING_EXPORT void searchRangesInListOfIds(const DataArrayInt *listOfIds, DataArrayInt *& rangeIdsFetched, DataArrayInt *& idsInInputListThatFetch) const;
587 MEDCOUPLING_EXPORT DataArrayInt *buildExplicitArrByRanges(const DataArrayInt *offsets) const;
588 MEDCOUPLING_EXPORT DataArrayInt *buildExplicitArrOfSliceOnScaledArr(int begin, int stop, int step) const;
589 MEDCOUPLING_EXPORT DataArrayInt *findRangeIdForEachTuple(const DataArrayInt *ranges) const;
590 MEDCOUPLING_EXPORT DataArrayInt *findIdInRangeForEachTuple(const DataArrayInt *ranges) const;
591 MEDCOUPLING_EXPORT DataArrayInt *duplicateEachTupleNTimes(int nbTimes) const;
592 MEDCOUPLING_EXPORT DataArrayInt *getDifferentValues() const;
593 MEDCOUPLING_EXPORT std::vector<DataArrayInt *> partitionByDifferentValues(std::vector<int>& differentIds) const;
594 MEDCOUPLING_EXPORT std::vector< std::pair<int,int> > splitInBalancedSlices(int nbOfSlices) const;
595 MEDCOUPLING_EXPORT void useArray(const int *array, bool ownership, DeallocType type, int nbOfTuple, int nbOfCompo);
596 MEDCOUPLING_EXPORT void useExternalArrayWithRWAccess(const int *array, int nbOfTuple, int nbOfCompo);
597 template<class InputIterator>
598 void insertAtTheEnd(InputIterator first, InputIterator last);
599 MEDCOUPLING_EXPORT void writeOnPlace(std::size_t id, int element0, const int *others, int sizeOfOthers) { _mem.writeOnPlace(id,element0,others,sizeOfOthers); }
600 MEDCOUPLING_EXPORT static DataArrayInt *Add(const DataArrayInt *a1, const DataArrayInt *a2);
601 MEDCOUPLING_EXPORT void addEqual(const DataArrayInt *other);
602 MEDCOUPLING_EXPORT static DataArrayInt *Substract(const DataArrayInt *a1, const DataArrayInt *a2);
603 MEDCOUPLING_EXPORT void substractEqual(const DataArrayInt *other);
604 MEDCOUPLING_EXPORT static DataArrayInt *Multiply(const DataArrayInt *a1, const DataArrayInt *a2);
605 MEDCOUPLING_EXPORT void multiplyEqual(const DataArrayInt *other);
606 MEDCOUPLING_EXPORT static DataArrayInt *Divide(const DataArrayInt *a1, const DataArrayInt *a2);
607 MEDCOUPLING_EXPORT void divideEqual(const DataArrayInt *other);
608 MEDCOUPLING_EXPORT static DataArrayInt *Modulus(const DataArrayInt *a1, const DataArrayInt *a2);
609 MEDCOUPLING_EXPORT void modulusEqual(const DataArrayInt *other);
610 MEDCOUPLING_EXPORT static DataArrayInt *Pow(const DataArrayInt *a1, const DataArrayInt *a2);
611 MEDCOUPLING_EXPORT void powEqual(const DataArrayInt *other);
612 MEDCOUPLING_EXPORT void updateTime() const { }
613 MEDCOUPLING_EXPORT MemArray<int>& accessToMemArray() { return _mem; }
614 MEDCOUPLING_EXPORT const MemArray<int>& accessToMemArray() const { return _mem; }
616 MEDCOUPLING_EXPORT static int *CheckAndPreparePermutation(const int *start, const int *end);
617 MEDCOUPLING_EXPORT static DataArrayInt *Range(int begin, int end, int step);
619 MEDCOUPLING_EXPORT void getTinySerializationIntInformation(std::vector<int>& tinyInfo) const;
620 MEDCOUPLING_EXPORT void getTinySerializationStrInformation(std::vector<std::string>& tinyInfo) const;
621 MEDCOUPLING_EXPORT bool resizeForUnserialization(const std::vector<int>& tinyInfoI);
622 MEDCOUPLING_EXPORT void finishUnserialization(const std::vector<int>& tinyInfoI, const std::vector<std::string>& tinyInfoS);
630 class DataArrayIntTuple;
632 class DataArrayIntIterator
635 MEDCOUPLING_EXPORT DataArrayIntIterator(DataArrayInt *da);
636 MEDCOUPLING_EXPORT ~DataArrayIntIterator();
637 MEDCOUPLING_EXPORT DataArrayIntTuple *nextt();
646 class DataArrayIntTuple
649 MEDCOUPLING_EXPORT DataArrayIntTuple(int *pt, int nbOfComp);
650 MEDCOUPLING_EXPORT std::string repr() const;
651 MEDCOUPLING_EXPORT int getNumberOfCompo() const { return _nb_of_compo; }
652 MEDCOUPLING_EXPORT const int *getConstPointer() const { return _pt; }
653 MEDCOUPLING_EXPORT int *getPointer() { return _pt; }
654 MEDCOUPLING_EXPORT int intValue() const;
655 MEDCOUPLING_EXPORT DataArrayInt *buildDAInt(int nbOfTuples, int nbOfCompo) const;
661 class DataArrayChar : public DataArray
664 MEDCOUPLING_EXPORT virtual DataArrayChar *buildEmptySpecializedDAChar() const = 0;
665 MEDCOUPLING_EXPORT bool isAllocated() const;
666 MEDCOUPLING_EXPORT void checkAllocated() const;
667 MEDCOUPLING_EXPORT void desallocate();
668 MEDCOUPLING_EXPORT int getNumberOfTuples() const { return _info_on_compo.empty()?0:_mem.getNbOfElem()/getNumberOfComponents(); }
669 MEDCOUPLING_EXPORT std::size_t getNbOfElems() const { return _mem.getNbOfElem(); }
670 MEDCOUPLING_EXPORT std::size_t getHeapMemorySizeWithoutChildren() const;
671 MEDCOUPLING_EXPORT int getHashCode() const;
672 MEDCOUPLING_EXPORT bool empty() const;
673 MEDCOUPLING_EXPORT void cpyFrom(const DataArrayChar& other);
674 MEDCOUPLING_EXPORT void reserve(std::size_t nbOfElems);
675 MEDCOUPLING_EXPORT void pushBackSilent(char val);
676 MEDCOUPLING_EXPORT void pushBackValsSilent(const char *valsBg, const char *valsEnd);
677 MEDCOUPLING_EXPORT char popBackSilent();
678 MEDCOUPLING_EXPORT void pack() const;
679 MEDCOUPLING_EXPORT std::size_t getNbOfElemAllocated() const { return _mem.getNbOfElemAllocated(); }
680 MEDCOUPLING_EXPORT void alloc(int nbOfTuple, int nbOfCompo=1);
681 MEDCOUPLING_EXPORT void allocIfNecessary(int nbOfTuple, int nbOfCompo);
682 MEDCOUPLING_EXPORT bool isEqual(const DataArrayChar& other) const;
683 MEDCOUPLING_EXPORT virtual bool isEqualIfNotWhy(const DataArrayChar& other, std::string& reason) const;
684 MEDCOUPLING_EXPORT bool isEqualWithoutConsideringStr(const DataArrayChar& other) const;
685 MEDCOUPLING_EXPORT void reverse();
686 MEDCOUPLING_EXPORT void fillWithZero();
687 MEDCOUPLING_EXPORT void fillWithValue(char val);
688 MEDCOUPLING_EXPORT std::string repr() const;
689 MEDCOUPLING_EXPORT std::string reprZip() const;
690 MEDCOUPLING_EXPORT void reAlloc(int nbOfTuples);
691 MEDCOUPLING_EXPORT DataArrayInt *convertToIntArr() const;
692 MEDCOUPLING_EXPORT void renumberInPlace(const int *old2New);
693 MEDCOUPLING_EXPORT void renumberInPlaceR(const int *new2Old);
694 MEDCOUPLING_EXPORT DataArrayChar *renumber(const int *old2New) const;
695 MEDCOUPLING_EXPORT DataArrayChar *renumberR(const int *new2Old) const;
696 MEDCOUPLING_EXPORT DataArrayChar *renumberAndReduce(const int *old2NewBg, int newNbOfTuple) const;
697 MEDCOUPLING_EXPORT DataArrayChar *selectByTupleId(const int *new2OldBg, const int *new2OldEnd) const;
698 MEDCOUPLING_EXPORT DataArrayChar *selectByTupleIdSafe(const int *new2OldBg, const int *new2OldEnd) const;
699 MEDCOUPLING_EXPORT DataArrayChar *selectByTupleId2(int bg, int end, int step) const;
700 MEDCOUPLING_EXPORT bool isUniform(char val) const;
701 MEDCOUPLING_EXPORT void rearrange(int newNbOfCompo);
702 MEDCOUPLING_EXPORT DataArrayChar *substr(int tupleIdBg, int tupleIdEnd=-1) const;
703 MEDCOUPLING_EXPORT DataArrayChar *changeNbOfComponents(int newNbOfComp, char dftValue) const;
704 MEDCOUPLING_EXPORT DataArray *keepSelectedComponents(const std::vector<int>& compoIds) const;
705 MEDCOUPLING_EXPORT void meldWith(const DataArrayChar *other);
706 MEDCOUPLING_EXPORT void setPartOfValues1(const DataArrayChar *a, int bgTuples, int endTuples, int stepTuples, int bgComp, int endComp, int stepComp, bool strictCompoCompare=true);
707 MEDCOUPLING_EXPORT void setPartOfValuesSimple1(char a, int bgTuples, int endTuples, int stepTuples, int bgComp, int endComp, int stepComp);
708 MEDCOUPLING_EXPORT void setPartOfValues2(const DataArrayChar *a, const int *bgTuples, const int *endTuples, const int *bgComp, const int *endComp, bool strictCompoCompare=true);
709 MEDCOUPLING_EXPORT void setPartOfValuesSimple2(char a, const int *bgTuples, const int *endTuples, const int *bgComp, const int *endComp);
710 MEDCOUPLING_EXPORT void setPartOfValues3(const DataArrayChar *a, const int *bgTuples, const int *endTuples, int bgComp, int endComp, int stepComp, bool strictCompoCompare=true);
711 MEDCOUPLING_EXPORT void setPartOfValuesSimple3(char a, const int *bgTuples, const int *endTuples, int bgComp, int endComp, int stepComp);
712 MEDCOUPLING_EXPORT void setPartOfValues4(const DataArrayChar *a, int bgTuples, int endTuples, int stepTuples, const int *bgComp, const int *endComp, bool strictCompoCompare=true);
713 MEDCOUPLING_EXPORT void setPartOfValuesSimple4(char a, int bgTuples, int endTuples, int stepTuples, const int *bgComp, const int *endComp);
714 MEDCOUPLING_EXPORT void setPartOfValuesAdv(const DataArrayChar *a, const DataArrayChar *tuplesSelec);
715 MEDCOUPLING_EXPORT void setContigPartOfSelectedValues(int tupleIdStart, const DataArray *aBase, const DataArrayInt *tuplesSelec);
716 MEDCOUPLING_EXPORT void setContigPartOfSelectedValues2(int tupleIdStart, const DataArray *aBase, int bg, int end2, int step);
717 MEDCOUPLING_EXPORT DataArray *selectByTupleRanges(const std::vector<std::pair<int,int> >& ranges) const;
718 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); }
719 MEDCOUPLING_EXPORT char getIJ(int tupleId, int compoId) const { return _mem[tupleId*_info_on_compo.size()+compoId]; }
720 MEDCOUPLING_EXPORT char getIJSafe(int tupleId, int compoId) const;
721 MEDCOUPLING_EXPORT char front() const;
722 MEDCOUPLING_EXPORT char back() const;
723 MEDCOUPLING_EXPORT void setIJ(int tupleId, int compoId, char newVal) { _mem[tupleId*_info_on_compo.size()+compoId]=newVal; declareAsNew(); }
724 MEDCOUPLING_EXPORT void setIJSilent(int tupleId, int compoId, char newVal) { _mem[tupleId*_info_on_compo.size()+compoId]=newVal; }
725 MEDCOUPLING_EXPORT char *getPointer() { return _mem.getPointer(); }
726 MEDCOUPLING_EXPORT const char *getConstPointer() const { return _mem.getConstPointer(); }
727 MEDCOUPLING_EXPORT const char *begin() const { return getConstPointer(); }
728 MEDCOUPLING_EXPORT const char *end() const { return getConstPointer()+getNbOfElems(); }
729 MEDCOUPLING_EXPORT DataArrayInt *getIdsEqual(char val) const;
730 MEDCOUPLING_EXPORT DataArrayInt *getIdsNotEqual(char val) const;
731 MEDCOUPLING_EXPORT int search(const std::vector<char>& vals) const;
732 MEDCOUPLING_EXPORT int locateTuple(const std::vector<char>& tupl) const;
733 MEDCOUPLING_EXPORT int locateValue(char value) const;
734 MEDCOUPLING_EXPORT int locateValue(const std::vector<char>& vals) const;
735 MEDCOUPLING_EXPORT bool presenceOfTuple(const std::vector<char>& tupl) const;
736 MEDCOUPLING_EXPORT bool presenceOfValue(char value) const;
737 MEDCOUPLING_EXPORT bool presenceOfValue(const std::vector<char>& vals) const;
738 MEDCOUPLING_EXPORT char getMaxValue(int& tupleId) const;
739 MEDCOUPLING_EXPORT char getMaxValueInArray() const;
740 MEDCOUPLING_EXPORT char getMinValue(int& tupleId) const;
741 MEDCOUPLING_EXPORT char getMinValueInArray() const;
742 MEDCOUPLING_EXPORT DataArrayInt *getIdsInRange(char vmin, char vmax) const;
743 MEDCOUPLING_EXPORT static DataArrayChar *Aggregate(const DataArrayChar *a1, const DataArrayChar *a2);
744 MEDCOUPLING_EXPORT static DataArrayChar *Aggregate(const std::vector<const DataArrayChar *>& arr);
745 MEDCOUPLING_EXPORT static DataArrayChar *Meld(const DataArrayChar *a1, const DataArrayChar *a2);
746 MEDCOUPLING_EXPORT static DataArrayChar *Meld(const std::vector<const DataArrayChar *>& arr);
747 MEDCOUPLING_EXPORT void useArray(const char *array, bool ownership, DeallocType type, int nbOfTuple, int nbOfCompo);
748 template<class InputIterator>
749 void insertAtTheEnd(InputIterator first, InputIterator last);
750 MEDCOUPLING_EXPORT void useExternalArrayWithRWAccess(const char *array, int nbOfTuple, int nbOfCompo);
751 MEDCOUPLING_EXPORT void updateTime() const { }
752 MEDCOUPLING_EXPORT MemArray<char>& accessToMemArray() { return _mem; }
753 MEDCOUPLING_EXPORT const MemArray<char>& accessToMemArray() const { return _mem; }
755 //MEDCOUPLING_EXPORT void getTinySerializationIntInformation(std::vector<int>& tinyInfo) const;
756 //MEDCOUPLING_EXPORT void getTinySerializationStrInformation(std::vector<std::string>& tinyInfo) const;
757 //MEDCOUPLING_EXPORT bool resizeForUnserialization(const std::vector<int>& tinyInfoI);
758 //MEDCOUPLING_EXPORT void finishUnserialization(const std::vector<int>& tinyInfoI, const std::vector<std::string>& tinyInfoS);
765 class DataArrayByteIterator;
767 class DataArrayByte : public DataArrayChar
770 MEDCOUPLING_EXPORT static DataArrayByte *New();
771 MEDCOUPLING_EXPORT DataArrayChar *buildEmptySpecializedDAChar() const;
772 MEDCOUPLING_EXPORT DataArrayByteIterator *iterator();
773 MEDCOUPLING_EXPORT DataArrayByte *deepCpy() const;
774 MEDCOUPLING_EXPORT DataArrayByte *performCpy(bool deepCpy) const;
775 MEDCOUPLING_EXPORT char byteValue() const;
776 MEDCOUPLING_EXPORT void reprStream(std::ostream& stream) const;
777 MEDCOUPLING_EXPORT void reprZipStream(std::ostream& stream) const;
778 MEDCOUPLING_EXPORT void reprWithoutNameStream(std::ostream& stream) const;
779 MEDCOUPLING_EXPORT void reprZipWithoutNameStream(std::ostream& stream) const;
780 MEDCOUPLING_EXPORT void reprCppStream(const std::string& varName, std::ostream& stream) const;
781 MEDCOUPLING_EXPORT void reprQuickOverview(std::ostream& stream) const;
782 MEDCOUPLING_EXPORT void reprQuickOverviewData(std::ostream& stream, std::size_t maxNbOfByteInRepr) const;
783 MEDCOUPLING_EXPORT bool isEqualIfNotWhy(const DataArrayChar& other, std::string& reason) const;
789 class DataArrayByteTuple;
791 class DataArrayByteIterator
794 MEDCOUPLING_EXPORT DataArrayByteIterator(DataArrayByte *da);
795 MEDCOUPLING_EXPORT ~DataArrayByteIterator();
796 MEDCOUPLING_EXPORT DataArrayByteTuple *nextt();
805 class DataArrayByteTuple
808 MEDCOUPLING_EXPORT DataArrayByteTuple(char *pt, int nbOfComp);
809 MEDCOUPLING_EXPORT std::string repr() const;
810 MEDCOUPLING_EXPORT int getNumberOfCompo() const { return _nb_of_compo; }
811 MEDCOUPLING_EXPORT const char *getConstPointer() const { return _pt; }
812 MEDCOUPLING_EXPORT char *getPointer() { return _pt; }
813 MEDCOUPLING_EXPORT char byteValue() const;
814 MEDCOUPLING_EXPORT DataArrayByte *buildDAByte(int nbOfTuples, int nbOfCompo) const;
820 class DataArrayAsciiCharIterator;
822 class DataArrayAsciiChar : public DataArrayChar
825 MEDCOUPLING_EXPORT static DataArrayAsciiChar *New();
826 MEDCOUPLING_EXPORT static DataArrayAsciiChar *New(const std::string& st);
827 MEDCOUPLING_EXPORT static DataArrayAsciiChar *New(const std::vector<std::string>& vst, char defaultChar);
828 MEDCOUPLING_EXPORT DataArrayChar *buildEmptySpecializedDAChar() const;
829 MEDCOUPLING_EXPORT DataArrayAsciiCharIterator *iterator();
830 MEDCOUPLING_EXPORT DataArrayAsciiChar *deepCpy() const;
831 MEDCOUPLING_EXPORT DataArrayAsciiChar *performCpy(bool deepCpy) const;
832 MEDCOUPLING_EXPORT char asciiCharValue() const;
833 MEDCOUPLING_EXPORT void reprStream(std::ostream& stream) const;
834 MEDCOUPLING_EXPORT void reprZipStream(std::ostream& stream) const;
835 MEDCOUPLING_EXPORT void reprWithoutNameStream(std::ostream& stream) const;
836 MEDCOUPLING_EXPORT void reprZipWithoutNameStream(std::ostream& stream) const;
837 MEDCOUPLING_EXPORT void reprCppStream(const std::string& varName, std::ostream& stream) const;
838 MEDCOUPLING_EXPORT void reprQuickOverview(std::ostream& stream) const;
839 MEDCOUPLING_EXPORT void reprQuickOverviewData(std::ostream& stream, std::size_t maxNbOfByteInRepr) const;
840 MEDCOUPLING_EXPORT bool isEqualIfNotWhy(const DataArrayChar& other, std::string& reason) const;
842 ~DataArrayAsciiChar() { }
843 DataArrayAsciiChar() { }
844 DataArrayAsciiChar(const std::string& st);
845 DataArrayAsciiChar(const std::vector<std::string>& vst, char defaultChar);
848 class DataArrayAsciiCharTuple;
850 class DataArrayAsciiCharIterator
853 MEDCOUPLING_EXPORT DataArrayAsciiCharIterator(DataArrayAsciiChar *da);
854 MEDCOUPLING_EXPORT ~DataArrayAsciiCharIterator();
855 MEDCOUPLING_EXPORT DataArrayAsciiCharTuple *nextt();
857 DataArrayAsciiChar *_da;
864 class DataArrayAsciiCharTuple
867 MEDCOUPLING_EXPORT DataArrayAsciiCharTuple(char *pt, int nbOfComp);
868 MEDCOUPLING_EXPORT std::string repr() const;
869 MEDCOUPLING_EXPORT int getNumberOfCompo() const { return _nb_of_compo; }
870 MEDCOUPLING_EXPORT const char *getConstPointer() const { return _pt; }
871 MEDCOUPLING_EXPORT char *getPointer() { return _pt; }
872 MEDCOUPLING_EXPORT char asciiCharValue() const;
873 MEDCOUPLING_EXPORT DataArrayAsciiChar *buildDAAsciiChar(int nbOfTuples, int nbOfCompo) const;
879 template<class InputIterator>
880 void DataArrayDouble::insertAtTheEnd(InputIterator first, InputIterator last)
882 int nbCompo(getNumberOfComponents());
884 _mem.insertAtTheEnd(first,last);
887 _info_on_compo.resize(1);
888 _mem.insertAtTheEnd(first,last);
891 throw INTERP_KERNEL::Exception("DataArrayDouble::insertAtTheEnd : not available for DataArrayDouble with number of components different than 1 !");
894 template<class InputIterator>
895 void DataArrayInt::insertAtTheEnd(InputIterator first, InputIterator last)
897 int nbCompo(getNumberOfComponents());
899 _mem.insertAtTheEnd(first,last);
902 _info_on_compo.resize(1);
903 _mem.insertAtTheEnd(first,last);
906 throw INTERP_KERNEL::Exception("DataArrayInt::insertAtTheEnd : not available for DataArrayInt with number of components different than 1 !");
909 template<class InputIterator>
910 void DataArrayChar::insertAtTheEnd(InputIterator first, InputIterator last)
912 int nbCompo(getNumberOfComponents());
914 _mem.insertAtTheEnd(first,last);
917 _info_on_compo.resize(1);
918 _mem.insertAtTheEnd(first,last);
921 throw INTERP_KERNEL::Exception("DataArrayChar::insertAtTheEnd : not available for DataArrayChar with number of components different than 1 !");