1 #ifndef UTIL_G_P_ARRAY_H 2 #define UTIL_G_P_ARRAY_H 11 #include <util/containers/PArray.h> 27 template <
typename Data>
112 template <
typename Data>
124 template <
typename Data>
129 if (other.
ptrs_ == 0) {
131 assert(other.
size_ == 0);
143 for (
int i = 0; i <
size_; ++i) {
144 ptrs_[i] = other.
ptrs_[i];
148 if (capacity_ >
size_) {
159 template <
typename Data>
163 if (
this == &other)
return *
this;
166 for (
int i = 0; i < other.
size_; ++i) {
175 template <
typename Data>
188 template <
typename Data>
192 UTIL_THROW(
"Cannot reserve with capacity <=0");
205 Memory::allocate<Data*>(newPtr,
capacity);
207 for (
int i = 0; i <
size_; ++i) {
208 newPtr[i] =
ptrs_[i];
220 template <
typename Data>
234 template <
typename Data>
239 Memory::allocate<Data*>(
ptrs_, 64);
247 Memory::allocate<Data*>(newPtr, 2*
capacity_);
249 for (
int i = 0; i <
size_; ++i) {
250 newPtr[i] =
ptrs_[i];
267 template <
typename Data>
274 template <
class Data>
276 {
return (
bool)
ptrs_; }
void reserve(int capacity)
Reserve memory for specified number of elements.
int capacity_
Allocated size of ptrs_ array.
int capacity() const
Return allocated size.
File containing preprocessor macros for error handling.
#define UTIL_THROW(msg)
Macro for throwing an Exception, reporting function, file and line number.
Utility classes for scientific computation.
int size_
Logical size (number of elements with initialized data).
GPArray< Data > & operator=(const GPArray< Data > &other)
Assignment, element by element.
void clear()
Reset to empty state.
Data ** ptrs_
PArray of of pointers to Data objects.
void deallocate()
Deallocate (delete) underlying array of pointers.
bool isAllocated() const
Is this GPArray allocated?
An automatically growable PArray.
virtual ~GPArray()
Destructor.
void append(Data &data)
Append an element to the end of the sequence.
static void deallocate(Data *&ptr, size_t size)
Allocate a C array.
An array that only holds pointers to its elements.