1 #ifndef UTIL_DS_ARRAY_H 2 #define UTIL_DS_ARRAY_H 11 #include <util/containers/ArrayIterator.h> 12 #include <util/containers/ConstArrayIterator.h> 13 #include <util/misc/Memory.h> 29 template <
typename Data>
76 void append(
const Data &data);
103 template <
class Archive>
104 void serialize(Archive& ar,
const unsigned int version);
169 template <
class Data>
179 template <
class Data>
187 UTIL_THROW(
"Other DSArray must be allocated.");
193 for (
int i = 0; i <
size_; ++i) {
194 data_[i] = other.
data_[i];
203 template <
class Data>
207 if (
this == &other)
return *
this;
211 UTIL_THROW(
"Other DSArray must be allocated.");
217 UTIL_THROW(
"Cannot assign DSArrays of unequal capacity");
221 for (
int i = 0; i < other.
size_; ++i) {
232 template <
class Data>
246 template <
class Data>
253 UTIL_THROW(
"Cannot allocate a DSArray with capacity <= 0");
263 template <
class Data>
264 template <
class Archive>
268 if (Archive::is_saving()) {
270 UTIL_THROW(
"Cannot save unallocated DSArray");
276 if (Archive::is_loading()) {
278 UTIL_THROW(
"Invalid DSArray input capacity on load, capacity <= 0");
281 UTIL_THROW(
"Invalid DSArray input size on load, size < 0");
287 UTIL_THROW(
"Inconsistent DSArray size and capacity on load");
290 for (
int i = 0; i <
size_; ++i) {
300 template <
class Data>
311 template <
class Data>
322 template <
class Data>
333 template <
class Data>
344 template <
class Data>
366 template <
class Data>
373 template <
class Data>
380 template <
class Data>
387 template <
class Data>
394 template <
class Data>
396 {
return (
bool)
data_; }
int size() const
Return logical size of this array (i.e., number of elements).
void append(const Data &data)
Append data to the end of the array.
void setCurrent(Data *ptr)
Set the current pointer value.
File containing preprocessor macros for error handling.
void resize(int size)
Modify logical size without modifying data.
virtual ~DSArray()
Destructor.
Data & operator[](int i)
Mimic C array subscripting.
Forward const iterator for an Array or a C array.
DSArray< Data > & operator=(const DSArray< Data > &other)
Assignment, element by element.
void setEnd(Data *ptr)
Set the value of the end pointer.
#define UTIL_THROW(msg)
Macro for throwing an Exception, reporting function, file and line number.
void allocate(int capacity)
Allocates the underlying C array.
Utility classes for scientific computation.
Forward iterator for an Array or a C array.
Data * data_
C array of Data elements.
int capacity_
Capacity (physical size) of underlying C array.
void serialize(Archive &ar, const unsigned int version)
Serialize a DSArray to/from an Archive.
void setEnd(Data *ptr)
Set the value of the end pointer.
int size_
Logical size of array (number of elements used).
void clear()
Set logical size to zero.
int capacity() const
Return physical capacity of array.
void setCurrent(Data *ptr)
Set the current pointer value.
void begin(ArrayIterator< Data > &iterator)
Set an ArrayIterator to the beginning of this Array.
Dynamically allocated array with variable logical size.
bool isAllocated() const
Return true if the DSArray has been allocated, false otherwise.