Salome HOME
Merge from MrgToV7main1804
[modules/med.git] / src / MEDCoupling / MEDCouplingMemArray.txx
1 // Copyright (C) 2007-2013  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.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19 // Author : Anthony Geay (CEA/DEN)
20
21 #ifndef __PARAMEDMEM_MEDCOUPLINGMEMARRAY_TXX__
22 #define __PARAMEDMEM_MEDCOUPLINGMEMARRAY_TXX__
23
24 #include "MEDCouplingMemArray.hxx"
25 #include "NormalizedUnstructuredMesh.hxx"
26 #include "InterpKernelException.hxx"
27 #include "InterpolationUtils.hxx"
28
29 #include <sstream>
30 #include <algorithm>
31
32 namespace ParaMEDMEM
33 {
34   template<class T>
35   void MEDCouplingPointer<T>::setInternal(T *pointer)
36   {
37     _internal=pointer;
38     _external=0;
39   }
40
41   template<class T>
42   void MEDCouplingPointer<T>::setExternal(const T *pointer)
43   {
44     _external=pointer;
45     _internal=0;
46   }
47
48   template<class T>
49   MemArray<T>::MemArray(const MemArray<T>& other):_nb_of_elem(0),_nb_of_elem_alloc(0),_ownership(false),_dealloc(0),_param_for_deallocator(0)
50   {
51     if(!other._pointer.isNull())
52       {
53         _nb_of_elem_alloc=other._nb_of_elem;
54         T *pointer=new T[_nb_of_elem_alloc];
55         std::copy(other._pointer.getConstPointer(),other._pointer.getConstPointer()+other._nb_of_elem,pointer);
56         useArray(pointer,true,CPP_DEALLOC,other._nb_of_elem);
57       }
58   }
59
60   template<class T>
61   void MemArray<T>::useArray(const T *array, bool ownership, DeallocType type, std::size_t nbOfElem)
62   {
63     _nb_of_elem=nbOfElem;
64     _nb_of_elem_alloc=nbOfElem;
65     destroy();
66     if(ownership)
67       _pointer.setInternal(const_cast<T *>(array));
68     else
69       _pointer.setExternal(array);
70     _ownership=ownership;
71     _dealloc=BuildFromType(type);
72   }
73
74   template<class T>
75   void MemArray<T>::useExternalArrayWithRWAccess(const T *array, std::size_t nbOfElem)
76   {
77     _nb_of_elem=nbOfElem;
78     _nb_of_elem_alloc=nbOfElem;
79     destroy();
80     _pointer.setInternal(const_cast<T *>(array));
81     _ownership=false;
82     _dealloc=CPPDeallocator;
83   }
84   
85   template<class T>
86   void MemArray<T>::writeOnPlace(std::size_t id, T element0, const T *others, std::size_t sizeOfOthers)
87   {
88     if(id+sizeOfOthers>=_nb_of_elem_alloc)
89       reserve(2*_nb_of_elem+sizeOfOthers+1);
90     T *pointer=_pointer.getPointer();
91     pointer[id]=element0;
92     std::copy(others,others+sizeOfOthers,pointer+id+1);
93     _nb_of_elem=std::max<std::size_t>(_nb_of_elem,id+sizeOfOthers+1);
94   }
95   
96   template<class T>
97   template<class InputIterator>
98   void MemArray<T>::insertAtTheEnd(InputIterator first, InputIterator last)
99   {
100     T *pointer=_pointer.getPointer();
101     while(first!=last)
102       {
103         if(_nb_of_elem>=_nb_of_elem_alloc || _nb_of_elem==0)
104           {
105             reserve(_nb_of_elem_alloc>0?2*_nb_of_elem_alloc:1);
106             pointer=_pointer.getPointer();
107           }
108         pointer[_nb_of_elem++]=*first++;
109       }
110   }
111   
112   template<class T>
113   void MemArray<T>::pushBack(T elem) throw(INTERP_KERNEL::Exception)
114   {
115     if(_nb_of_elem>=_nb_of_elem_alloc)
116       reserve(_nb_of_elem_alloc>0?2*_nb_of_elem_alloc:1);
117     T *pt=getPointer();
118     pt[_nb_of_elem++]=elem;
119   }
120   
121   template<class T>
122   T MemArray<T>::popBack() throw(INTERP_KERNEL::Exception)
123   {
124     if(_nb_of_elem>0)
125       {
126         const T *pt=getConstPointer();
127         return pt[--_nb_of_elem];
128       }
129     throw INTERP_KERNEL::Exception("MemArray::popBack : nothing to pop in array !");
130   }
131   
132   template<class T>
133   void MemArray<T>::pack() const
134   {
135     if(_nb_of_elem>=0)
136       (const_cast<MemArray<T> * >(this))->reserve(_nb_of_elem);
137   }
138
139   template<class T>
140   bool MemArray<T>::isEqual(const MemArray<T>& other, T prec, std::string& reason) const
141   {
142     std::ostringstream oss; oss.precision(15);
143     if(_nb_of_elem!=other._nb_of_elem)
144       {
145         oss << "Number of elements in coarse data of DataArray mismatch : this=" << _nb_of_elem << " other=" << other._nb_of_elem;
146         reason=oss.str();
147         return false;
148       }
149     const T *pt1=_pointer.getConstPointer();
150     const T *pt2=other._pointer.getConstPointer();
151     if(pt1==0 && pt2==0)
152       return true;
153     if(pt1==0 || pt2==0)
154       {
155         oss << "coarse data pointer is defined for only one DataArray instance !";
156         reason=oss.str();
157         return false;
158       }
159     if(pt1==pt2)
160       return true;
161     for(std::size_t i=0;i<_nb_of_elem;i++)
162       if(pt1[i]-pt2[i]<-prec || (pt1[i]-pt2[i])>prec)
163         {
164           oss << "The content of data differs at pos #" << i << " of coarse data ! this[i]=" << pt1[i] << " other[i]=" << pt2[i];
165           reason=oss.str();
166           return false;
167         }
168     return true;
169   }
170
171   /*!
172    * \param [in] sl is typically the number of components
173    * \return True if a not null pointer is present, False if not.
174    */
175   template<class T>
176   bool MemArray<T>::reprHeader(int sl, std::ostream& stream) const
177   {
178     stream << "Number of tuples : ";
179     if(!_pointer.isNull())
180       {
181         if(sl!=0)
182           stream << _nb_of_elem/sl << std::endl << "Internal memory facts : " << _nb_of_elem << "/" << _nb_of_elem_alloc;
183        else
184           stream << "Empty Data";
185       }
186     else
187       stream << "No data";
188     stream << "\n";
189     stream << "Data content :\n";
190     bool ret=!_pointer.isNull();
191     if(!ret)
192       stream << "No data !\n";
193     return ret;
194   }
195   
196   /*!
197    * \param [in] sl is typically the number of components
198    */
199   template<class T>
200   void MemArray<T>::repr(int sl, std::ostream& stream) const
201   {
202     if(reprHeader(sl,stream))
203       {
204         const T *data=getConstPointer();
205         if(_nb_of_elem!=0 && sl!=0)
206           {
207             std::size_t nbOfTuples=_nb_of_elem/std::abs(sl);
208             for(std::size_t i=0;i<nbOfTuples;i++)
209               {
210                 stream << "Tuple #" << i << " : ";
211                 std::copy(data,data+sl,std::ostream_iterator<T>(stream," "));
212                 stream << "\n";
213                 data+=sl;
214               }
215           }
216         else
217           stream << "Empty Data\n";
218       }
219   }
220   
221   /*!
222    * \param [in] sl is typically the number of components
223    */
224   template<class T>
225   void MemArray<T>::reprZip(int sl, std::ostream& stream) const
226   {
227     stream << "Number of tuples : ";
228     if(!_pointer.isNull())
229       {
230         if(sl!=0)
231           stream << _nb_of_elem/sl;
232         else
233           stream << "Empty Data";
234       }
235     else
236       stream << "No data";
237     stream << "\n";
238     stream << "Data content : ";
239     const T *data=getConstPointer();
240     if(!_pointer.isNull())
241       {
242         if(_nb_of_elem!=0 && sl!=0)
243           {
244             std::size_t nbOfTuples=_nb_of_elem/std::abs(sl);
245             for(std::size_t i=0;i<nbOfTuples;i++)
246               {
247                 stream << "|";
248                 std::copy(data,data+sl,std::ostream_iterator<T>(stream," "));
249                 stream << "| ";
250                 data+=sl;
251               }
252             stream << "\n";
253           }
254         else
255           stream << "Empty Data\n";
256       }
257     else
258       stream << "No data !\n";
259   }
260   
261   template<class T>
262   void MemArray<T>::fillWithValue(const T& val)
263   {
264     T *pt=_pointer.getPointer();
265     std::fill(pt,pt+_nb_of_elem,val);
266   }
267   
268   template<class T>
269   T *MemArray<T>::fromNoInterlace(int nbOfComp) const
270   {
271     if(nbOfComp<1)
272       throw INTERP_KERNEL::Exception("MemArray<T>::fromNoInterlace : number of components must be > 0 !");
273     const T *pt=_pointer.getConstPointer();
274     std::size_t nbOfTuples=_nb_of_elem/nbOfComp;
275     T *ret=new T[_nb_of_elem];
276     T *w=ret;
277     for(std::size_t i=0;i<nbOfTuples;i++)
278       for(int j=0;j<nbOfComp;j++,w++)
279         *w=pt[j*nbOfTuples+i];
280     return ret;
281   }
282   
283   template<class T>
284   T *MemArray<T>::toNoInterlace(int nbOfComp) const
285   {
286     if(nbOfComp<1)
287       throw INTERP_KERNEL::Exception("MemArray<T>::toNoInterlace : number of components must be > 0 !");
288     const T *pt=_pointer.getConstPointer();
289     std::size_t nbOfTuples=_nb_of_elem/nbOfComp;
290     T *ret=new T[_nb_of_elem];
291     T *w=ret;
292     for(int i=0;i<nbOfComp;i++)
293       for(std::size_t j=0;j<nbOfTuples;j++,w++)
294         *w=pt[j*nbOfComp+i];
295     return ret;
296   }
297
298   template<class T>
299   void MemArray<T>::sort(bool asc)
300   {
301     T *pt=_pointer.getPointer();
302     if(asc)
303       std::sort(pt,pt+_nb_of_elem);
304     else
305       {
306         typename std::reverse_iterator<T *> it1(pt+_nb_of_elem);
307         typename std::reverse_iterator<T *> it2(pt);
308         std::sort(it1,it2);
309       }
310   }
311
312   template<class T>
313   void MemArray<T>::reverse(int nbOfComp)
314   {
315     if(nbOfComp<1)
316       throw INTERP_KERNEL::Exception("MemArray<T>::reverse : only supported with 'this' array with ONE or more than ONE component !");
317     T *pt=_pointer.getPointer();
318     if(nbOfComp==1)
319       {
320         std::reverse(pt,pt+_nb_of_elem);
321         return ;
322       }
323     else
324       {
325         T *pt2=pt+_nb_of_elem-nbOfComp;
326         std::size_t nbOfTuples=_nb_of_elem/nbOfComp;
327         for(std::size_t i=0;i<nbOfTuples/2;i++,pt+=nbOfComp,pt2-=nbOfComp)
328           {
329             for(int j=0;j<nbOfComp;j++)
330               std::swap(pt[j],pt2[j]);
331           }
332       }
333   }
334
335   template<class T>
336   void MemArray<T>::alloc(std::size_t nbOfElements) throw(INTERP_KERNEL::Exception)
337   {
338     destroy();
339     if(nbOfElements<0)
340       throw INTERP_KERNEL::Exception("MemArray::alloc : request for negative length of data !");
341     _nb_of_elem=nbOfElements;
342     _nb_of_elem_alloc=nbOfElements;
343     _pointer.setInternal(new T[_nb_of_elem_alloc]);
344     _ownership=true;
345     _dealloc=CPPDeallocator;
346   }
347
348   /*!
349    * This method performs systematically an allocation of \a newNbOfElements elements in \a this.
350    * \a _nb_of_elem and \a _nb_of_elem_alloc will \b NOT be systematically equal (contrary to MemArray<T>::reAlloc method.
351    * So after the call of this method \a _nb_of_elem will be equal tostd::min<std::size_t>(_nb_of_elem,newNbOfElements) and \a _nb_of_elem_alloc equal to 
352    * \a newNbOfElements. This method is typically used to perform a pushBack to avoid systematic allocations-copy-deallocation.
353    * So after the call of this method the accessible content is perfectly set.
354    * 
355    * So this method should not be confused with MemArray<T>::reserve that is close to MemArray<T>::reAlloc but not same.
356    */
357   template<class T>
358   void MemArray<T>::reserve(std::size_t newNbOfElements) throw(INTERP_KERNEL::Exception)
359   {
360     if(newNbOfElements<0)
361       throw INTERP_KERNEL::Exception("MemArray::reAlloc : request for negative length of data !");
362     if(_nb_of_elem_alloc==newNbOfElements)
363       return ;
364     T *pointer=new T[newNbOfElements];
365     std::copy(_pointer.getConstPointer(),_pointer.getConstPointer()+std::min<std::size_t>(_nb_of_elem,newNbOfElements),pointer);
366     if(_ownership)
367       destroyPointer(const_cast<T *>(_pointer.getConstPointer()),_dealloc,_param_for_deallocator);//Do not use getPointer because in case of _external
368     _pointer.setInternal(pointer);
369     _nb_of_elem=std::min<std::size_t>(_nb_of_elem,newNbOfElements);
370     _nb_of_elem_alloc=newNbOfElements;
371     _ownership=true;
372     _dealloc=CPPDeallocator;
373     _param_for_deallocator=0;
374   }
375
376   /*!
377    * This method performs systematically an allocation of \a newNbOfElements elements in \a this.
378    * \a _nb_of_elem and \a _nb_of_elem_alloc will be equal even if only std::min<std::size_t>(_nb_of_elem,newNbOfElements) come from the .
379    * The remaing part of the new allocated chunk are available but not set previouly !
380    * 
381    * So this method should not be confused with MemArray<T>::reserve that is close to MemArray<T>::reAlloc but not same.
382    */
383   template<class T>
384   void MemArray<T>::reAlloc(std::size_t newNbOfElements) throw(INTERP_KERNEL::Exception)
385   {
386     if(newNbOfElements<0)
387       throw INTERP_KERNEL::Exception("MemArray::reAlloc : request for negative length of data !");
388     if(_nb_of_elem==newNbOfElements)
389       return ;
390     T *pointer=new T[newNbOfElements];
391     std::copy(_pointer.getConstPointer(),_pointer.getConstPointer()+std::min<std::size_t>(_nb_of_elem,newNbOfElements),pointer);
392     if(_ownership)
393       destroyPointer(const_cast<T *>(_pointer.getConstPointer()),_dealloc,_param_for_deallocator);//Do not use getPointer because in case of _external
394     _pointer.setInternal(pointer);
395     _nb_of_elem=newNbOfElements;
396     _nb_of_elem_alloc=newNbOfElements;
397     _ownership=true;
398     _dealloc=CPPDeallocator;
399     _param_for_deallocator=0;
400   }
401
402   template<class T>
403   void MemArray<T>::CPPDeallocator(void *pt, void *param)
404   {
405     delete [] reinterpret_cast<T*>(pt);
406   }
407
408   template<class T>
409   void MemArray<T>::CDeallocator(void *pt, void *param)
410   {
411     free(pt);
412   }
413
414   template<class T>
415   typename MemArray<T>::Deallocator MemArray<T>::BuildFromType(DeallocType type) throw(INTERP_KERNEL::Exception)
416   {
417     switch(type)
418       {
419       case CPP_DEALLOC:
420         return CPPDeallocator;
421       case C_DEALLOC:
422         return CDeallocator;
423       default:
424         throw INTERP_KERNEL::Exception("Invalid deallocation requested ! Unrecognized enum DeallocType !");
425       }
426   }
427
428   template<class T>
429   void MemArray<T>::destroyPointer(T *pt, typename MemArray<T>::Deallocator dealloc, void *param)
430   {
431     if(dealloc)
432       dealloc(pt,param);
433   }
434
435   template<class T>
436   void MemArray<T>::destroy()
437   {
438     if(_ownership)
439       destroyPointer(const_cast<T *>(_pointer.getConstPointer()),_dealloc,_param_for_deallocator);//Do not use getPointer because in case of _external
440     _pointer.null();
441     _ownership=false;
442     _dealloc=NULL;
443     _param_for_deallocator=NULL;
444   }
445   
446   template<class T>
447   MemArray<T> &MemArray<T>::operator=(const MemArray<T>& other)
448   {
449     alloc(other._nb_of_elem);
450     std::copy(other._pointer.getConstPointer(),other._pointer.getConstPointer()+_nb_of_elem,_pointer.getPointer());
451     return *this;
452   }
453 }
454
455 #endif