-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathArray.h
361 lines (326 loc) · 8.9 KB
/
Array.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
#ifndef DATA_ARRAY_INCLUDED
#define DATA_ARRAY_INCLUDED
#include <string.h>
#include <vector>
namespace data
{
/**
* Struct CopyPolicy represents storage policy for the Array class.
* The purpose of this policy is to create own copy of the array
* and delete it when no longer needed.
*
* @author Ilia Yastrebov
*/
template <class T>
struct CopyPolicy
{
/**
* Creates copy of the given array and returns its pointer. Works
* *only* with PODs (plain old data) and cannot be used with more
* complicated user-defined types
*
* @param ptr Source array
* @param size Size of the source array
* @return Pointer to the new array
*/
static const T * copy(const T * ptr, size_t size)
{
T * copy = new T[size];
memcpy(copy, ptr, size * sizeof(T));
return copy;
}
/**
* Destroys array.
*
* @param ptr Source array
* @param size Size of the array
*/
static void destroy(const T * ptr, size_t size)
{
if (NULL != ptr) {
delete [] ptr;
ptr = NULL;
}
}
};
/**
* CopyPolicy specialization for array of char (string)
*
* @author Ilia Yastrebov
*/
template <>
struct CopyPolicy<char>
{
static const char * copy(const char * ptr, size_t size)
{
char * copy = new char[size + 1];
strcpy(copy, ptr);
return copy;
}
static void destroy(const char * ptr, size_t size)
{
if (NULL != ptr) {
delete [] ptr;
ptr = NULL;
}
}
};
/**
* CopyPolicy specialization for array of strings
*
* @author Ilia Yastrebov
*/
template <>
struct CopyPolicy<char *>
{
static char * const * copy(char * const * ptr, size_t size)
{
char ** copy = new char * [size];
for (size_t i = 0; i < size; ++i) {
copy[i] = new char[strlen(ptr[i]) + 1];
strcpy(copy[i], ptr[i]);
}
return static_cast<char * const *>(copy);
}
static void destroy(char * const * ptr, size_t size)
{
if (NULL != ptr) {
for (size_t i = 0; i < size; ++i) {
delete[] ptr[i];
}
delete [] ptr;
ptr = NULL;
}
}
};
/**
* Struct MovePolicy represents storage policy for the Array class.
* The purpose of this policy is to take ownership of the array
* and delete it when no longer needed.
*
* @author Ilia Yastrebov
*/
template <class T>
struct MovePolicy
{
// Returns the same pointer - no copy!
static const T * copy(const T * ptr, size_t size) { return ptr; }
/**
* Destroys array.
*
* @param ptr Source array
* @param size Size of the array
*/
static void destroy(const T * ptr, size_t size)
{
if (NULL != ptr) {
delete [] ptr;
ptr = NULL;
}
}
};
/**
* MovePolicy specialization for array of char (string)
*
* @author Ilia Yastrebov
*/
template <>
struct MovePolicy<char>
{
// Returns the same pointer - no copy!
static const char * copy(const char * ptr, size_t size) { return ptr; }
static void destroy(const char * ptr, size_t size)
{
if (NULL != ptr) {
delete [] ptr;
ptr = NULL;
}
}
};
/**
* MovePolicy specialization for array of strings
*
* @author Ilia Yastrebov
*/
template <>
struct MovePolicy<char *>
{
// Returns the same pointer - no copy!
static char * const * copy(char * const * ptr, size_t size) { return ptr; }
static void destroy(char * const * ptr, size_t size)
{
if (NULL != ptr) {
for (size_t i = 0; i < size; ++i) {
delete[] ptr[i];
}
delete [] ptr;
ptr = NULL;
}
}
};
/**
* Struct MoveStringPolicy represents storage policy for the Array class.
* The purpose of this policy is to take ownership of the array and delete it when no longer needed,
* but now for specific strings. This policy is used by binary deserialization for strings array
*
* @author Ilia Yastrebov
*/
template <class T>
struct MoveStringPolicy
{
// Returns the same pointer - no copy!
static const T * copy(const T * ptr, size_t size) { return ptr; }
/**
* Destroys array.
*
* @param ptr Source array
* @param size Size of the array
*/
static void destroy(const T * ptr, size_t size)
{
if (NULL != ptr) {
delete [] ptr;
ptr = NULL;
}
}
};
/**
* Struct ShallowCopyPolicy represents storage policy for the Array class.
* The purpose of this policy is to deal with source pointer and prevent
* any copying.
*
* @author Ilia Yastrebov
*/
template <class T>
struct ShallowCopyPolicy
{
// Returns the same pointer - no copy!
static const T * copy(const T * ptr, size_t size) { return ptr; }
// Does nothing - we should not delete source pointer!
static void destroy(const T * ptr, size_t size) {};
};
/**
* Class Array represents base class for arrays
*
* @author Ilia Yastrebov
*/
class ArrayBase
{
public:
typedef std::vector<size_t> Dims;
/**
* Helper method that calculates the actual size of array from its dimensions
*
* @param dims Array dimensions
* @return Actual size of array from its dimensions
*/
static size_t calculateSize(const Dims & dims)
{
size_t size = 1;
for (Dims::const_iterator it = dims.begin(); it != dims.end(); ++it) {
size *= (*it);
}
return size;
}
virtual ~ArrayBase() {}
};
/**
* Class Array represents the array of elements allocated as a continous memory block.
* This class is suitable to store multi-dimensional arrays.
*
* @author Ilia Yastrebov
*/
template <class T>
class Array : public ArrayBase
{
public:
/**
* Returns array pointer.
*
* @param dims Output parameter which indicates array dimensions
* @return pointer to the array
*/
const T * getArray(Dims & dims) const
{
dims = dims_;
return ptr_;
}
/**
* Gets number of elements in array
*
* @return size_t number of elements
*/
size_t getSize() const
{
return size_;
}
/**
* Dtor.
*/
virtual ~Array() {}
/**
* Compare operator works for one dimension array
*
* @param other object to compare
*/
bool operator==(Array<T>& other)
{
if(dims_ != other.dims_) {
return false;
}
for (size_t i=0; i<size_; i++) {
if(ptr_[i] != other.ptr_[i]) {
return false;
}
}
return true;
}
protected:
/**
* Protected ctor.
*/
Array(const T * ptr, const Dims & dims) :
ptr_(ptr),
dims_(dims),
size_(calculateSize(dims))
{
}
/** Pointer to array */
const T * ptr_;
/** Array dimensions */
Dims dims_;
/** Array length (allocated for all dimensions) */
size_t size_;
};
/**
* Class ArrayImpl represents array of elements with storage policy.
* This class simplify storage of arrays with different storage
* policies.
*
* @author Ilia Yastrebov
*/
template < class T,
template <class> class StoragePolicy = CopyPolicy >
class ArrayImpl : public Array<T>
{
public:
/**
* Ctor.
*
* @param ptr Source array
* @param dims Array dimensions
*/
ArrayImpl(const T * ptr, const ArrayBase::Dims & dims) :
Array<T>(StoragePolicy<T>::copy(ptr, ArrayBase::calculateSize(dims)), dims)
{
}
/**
* Dtor.
*/
virtual ~ArrayImpl()
{
StoragePolicy<T>::destroy(Array<T>::ptr_, Array<T>::size_);
}
};
} // namespace data
#endif