12#ifndef ARCANE_UTILS_MULTIBUFFER_H
13#define ARCANE_UTILS_MULTIBUFFER_H
17#include "arcane/utils/ArrayView.h"
66 _freeAllocatedBuffers();
82 _allocateCurrentBuffer();
95 BufferType* bt =
new BufferType(n);
100 _allocateCurrentBuffer();
104 _allocateCurrentBuffer();
114 m_current_buffer = 0;
115 m_current_buffer_size = 0;
116 _freeAllocatedBuffers();
119 Integer nbAllocatedBuffer() {
return m_allocated_buffers.size(); }
120 Integer bufferSize()
const {
return m_current_buffer_size; }
123 void _freeAllocatedBuffers()
125 for( Integer i=0, s=m_allocated_buffers.size(); i<s; ++i )
126 delete m_allocated_buffers[i];
127 m_allocated_buffers.clear();
136 void _allocateCurrentBuffer()
Vue modifiable d'un tableau d'un type T.
Tampon pour allocation multiple.
MultiBufferT(const MultiBufferT< T > &ref)
Constructeur de recopie.
Integer m_buffer_size
Nombre d'élément d'un tampon.
Integer m_nb_in_buffer
Nombre d'éléments dans le tampon actuel.
BufferType * m_current_buffer
Tampon actuel.
T * allocOne()
Alloue un nouvel élément.
Integer m_current_buffer_size
Nombre d'éléments max du tampon courant.
ArrayView< T > allocMany(Integer n)
Alloue n éléments.
UniqueArray< BufferType * > m_allocated_buffers
Liste de tous les tampons.
void operator=(const MultiBufferT< T > &ref)
Opérateur de recopie (interdit)
Vecteur 1D de données avec sémantique par valeur (style STL).
Int32 Integer
Type représentant un entier.