-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
ex16_24_blob.h
455 lines (377 loc) · 11.7 KB
/
ex16_24_blob.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
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
#ifndef CP5_EX16_24_BLOB_H_
#define CP5_EX16_24_BLOB_H_
#include <vector>
using std::vector;
#include <initializer_list>
using std::initializer_list;
#include <memory>
using std::make_shared;
using std::shared_ptr;
#include <algorithm>
#include <stdexcept>
#ifndef _MSC_VER
#define NOEXCEPT noexcept
#else
#define NOEXCEPT
#endif
template <typename> class BlobPtr;
template <typename> class ConstBlobPtr;
template <typename> class Blob;
//==============================================================================
// Blob - custom vector.
//==============================================================================
template <typename T> class Blob {
friend class ConstBlobPtr<T>;
friend class BlobPtr<T>;
friend bool operator==(const Blob& lhs, const Blob& rhs) { return *lhs.data == *rhs.data; }
friend bool operator!=(const Blob& lhs, const Blob& rhs) { return !(lhs == rhs); }
friend bool operator<(const Blob& lhs, const Blob& rhs)
{
return std::lexicographical_compare(lhs.data->begin(), lhs.data->end(), rhs.data->begin(),
rhs.data->end());
}
friend bool operator>(const Blob& lhs, const Blob& rhs) { return rhs < lhs; }
friend bool operator<=(const Blob& lhs, const Blob& rhs) { return !(rhs < lhs); }
friend bool operator>=(const Blob& lhs, const Blob& rhs) { return !(lhs < rhs); }
public:
using size_type = typename vector<T>::size_type;
Blob() : data(make_shared<vector<T>>()) {}
Blob(initializer_list<T> il) : data(make_shared<vector<T>>(il)) {}
template <typename It> Blob(It b, It e) : data(make_shared<vector<T>>(b, e)) {}
Blob(const Blob& b) : data(make_shared<vector<T>>(*b.data)) {}
Blob& operator=(const Blob& b);
Blob(Blob&& b) NOEXCEPT : data(std::move(b.data)) {}
Blob& operator=(Blob&& b) NOEXCEPT;
BlobPtr<T> begin();
BlobPtr<T> end();
ConstBlobPtr<T> cbegin() const;
ConstBlobPtr<T> cend() const;
T& operator[](size_t n);
const T& operator[](size_t n) const;
size_type size() const { return data->size(); }
bool empty() const { return data->empty(); }
void push_back(const T& t) { data->push_back(t); }
void push_back(T&& s) { data->push_back(std::move(s)); }
void pop_back();
T& front();
T& back();
const T& front() const;
const T& back() const;
private:
void check(size_type, const T&) const;
shared_ptr<vector<T>> data;
};
//------------------------------------------------------------------------------
// member function.
//------------------------------------------------------------------------------
template <typename T> Blob<T>& Blob<T>::operator=(const Blob<T>& b)
{
data = make_shared<vector<T>>(*b.data);
return *this;
}
template <typename T> Blob<T>& Blob<T>::operator=(Blob<T>&& b) NOEXCEPT
{
if (this != &b) {
data = std::move(b.data);
b.data = nullptr;
}
return *this;
}
template <typename T> BlobPtr<T> Blob<T>::begin()
{
return BlobPtr<T>(*this);
}
template <typename T> BlobPtr<T> Blob<T>::end()
{
return BlobPtr<T>(*this, data->size());
}
template <typename T> ConstBlobPtr<T> Blob<T>::cbegin() const
{
return ConstBlobPtr<T>(*this);
}
template <typename T> ConstBlobPtr<T> Blob<T>::cend() const
{
return ConstBlobPtr<T>(*this, data->size());
}
template <typename T> inline void Blob<T>::pop_back()
{
check(0, "pop_back on empty Blob<T>");
data->pop_back();
}
template <typename T> inline T& Blob<T>::front()
{
check(0, "front on empty Blob<T>");
return data->front();
}
template <typename T> inline T& Blob<T>::back()
{
check(0, "back on empty Blob<T>");
return data->back();
}
template <typename T> inline const T& Blob<T>::front() const
{
check(0, "front on empty Blob<T>");
return data->front();
}
template <typename T> inline const T& Blob<T>::back() const
{
check(0, "back on empty Blob<T>");
return data->back();
}
template <typename T> inline void Blob<T>::check(size_type i, const T& msg) const
{
if (i >= data->size()) throw std::out_of_range(msg);
}
template <typename T> inline T& Blob<T>::operator[](size_t n)
{
check(n, "out of range");
return data->at(n);
}
template <typename T> inline const T& Blob<T>::operator[](size_t n) const
{
check(n, "out of range");
return data->at(n);
}
//=================================================================================
// BlobPtr - custom iterator of Blob
//=================================================================================
template <typename T> class BlobPtr {
friend bool operator==(const BlobPtr<T>& lhs, const BlobPtr<T>& rhs)
{
return lhs.curr == rhs.curr;
}
friend bool operator!=(const BlobPtr<T>& lhs, const BlobPtr<T>& rhs) { return !(lhs == rhs); }
friend bool operator<(const BlobPtr<T>& lhs, const BlobPtr<T>& rhs)
{
return lhs.curr < rhs.curr;
}
friend bool operator>(const BlobPtr<T>& lhs, const BlobPtr<T>& rhs)
{
return lhs.curr > rhs.curr;
}
friend bool operator<=(const BlobPtr<T>& lhs, const BlobPtr<T>& rhs)
{
return lhs.curr <= rhs.curr;
}
friend bool operator>=(const BlobPtr<T>& lhs, const BlobPtr<T>& rhs)
{
return lhs.curr >= rhs.curr;
}
public:
BlobPtr() : curr(0) {}
BlobPtr(Blob<T>& s, size_t sz = 0) : wptr(s.data), curr(sz) {}
T& operator*() const;
T* operator->() const;
BlobPtr& operator++();
BlobPtr& operator--();
BlobPtr operator++(int);
BlobPtr operator--(int);
BlobPtr& operator+=(size_t);
BlobPtr& operator-=(size_t);
BlobPtr operator+(size_t) const;
BlobPtr operator-(size_t) const;
T& operator[](size_t n);
const T& operator[](size_t n) const;
private:
shared_ptr<vector<T>> check(size_t, const T&) const;
std::weak_ptr<vector<T>> wptr;
size_t curr;
};
//------------------------------------------------------------------------------
// member function.
//------------------------------------------------------------------------------
template <typename T> T& BlobPtr<T>::operator*() const
{
auto p = check(curr, "dereference past end");
return (*p)[curr];
}
template <typename T> T* BlobPtr<T>::operator->() const
{
return &this->operator*();
}
template <typename T> inline BlobPtr<T>& BlobPtr<T>::operator++()
{
check(curr, "increment past end of Blob<T>Ptr");
++curr;
return *this;
}
template <typename T> inline BlobPtr<T>& BlobPtr<T>::operator--()
{
--curr;
check(-1, "decrement past begin of Blob<T>Ptr");
return *this;
}
template <typename T> inline BlobPtr<T> BlobPtr<T>::operator++(int)
{
BlobPtr<T> ret = *this;
++*this;
return ret;
}
template <typename T> inline BlobPtr<T> BlobPtr<T>::operator--(int)
{
BlobPtr<T> ret = *this;
--*this;
return ret;
}
template <typename T> inline BlobPtr<T>& BlobPtr<T>::operator+=(size_t n)
{
curr += n;
check(curr, "increment past end of Blob<T>Ptr");
return *this;
}
template <typename T> inline BlobPtr<T>& BlobPtr<T>::operator-=(size_t n)
{
curr -= n;
check(curr, "increment past end of Blob<T>Ptr");
return *this;
}
template <typename T> inline BlobPtr<T> BlobPtr<T>::operator+(size_t n) const
{
BlobPtr<T> ret = *this;
ret += n;
return ret;
}
template <typename T> inline BlobPtr<T> BlobPtr<T>::operator-(size_t n) const
{
BlobPtr<T> ret = *this;
ret -= n;
return ret;
}
template <typename T> inline shared_ptr<vector<T>> BlobPtr<T>::check(size_t i, const T& msg) const
{
auto ret = wptr.lock();
if (!ret) throw std::runtime_error("unbound Blob<T>Ptr");
if (i >= ret->size()) throw std::out_of_range(msg);
return ret;
}
template <typename T> inline T& BlobPtr<T>::operator[](size_t n)
{
auto p = check(n, "dereference out of range.");
return (*p)[n];
}
template <typename T> inline const T& BlobPtr<T>::operator[](size_t n) const
{
auto p = check(n, "dereference out of range.");
return (*p)[n];
}
//=================================================================================
// ConstBlobPtr - custom const_iterator of Blob
//=================================================================================
template <typename T> class ConstBlobPtr {
friend bool operator==(const ConstBlobPtr<T>& lhs, const ConstBlobPtr<T>& rhs)
{
return lhs.curr == rhs.curr;
}
friend bool operator!=(const ConstBlobPtr<T>& lhs, const ConstBlobPtr<T>& rhs)
{
return !(lhs == rhs);
}
friend bool operator<(const ConstBlobPtr<T>& lhs, const ConstBlobPtr<T>& rhs)
{
return lhs.curr < rhs.curr;
}
friend bool operator>(const ConstBlobPtr<T>& lhs, const ConstBlobPtr<T>& rhs)
{
return lhs.curr > rhs.curr;
}
friend bool operator<=(const ConstBlobPtr<T>& lhs, const ConstBlobPtr<T>& rhs)
{
return lhs.curr <= rhs.curr;
}
friend bool operator>=(const ConstBlobPtr<T>& lhs, const ConstBlobPtr<T>& rhs)
{
return lhs.curr >= rhs.curr;
}
public:
ConstBlobPtr() : curr(0) {}
ConstBlobPtr(const Blob<T>& s, size_t sz = 0) : wptr(s.data), curr(sz) {}
const T& operator*() const;
const T* operator->() const;
ConstBlobPtr& operator++();
ConstBlobPtr& operator--();
ConstBlobPtr operator++(int);
ConstBlobPtr operator--(int);
ConstBlobPtr& operator+=(size_t);
ConstBlobPtr& operator-=(size_t);
ConstBlobPtr operator+(size_t) const;
ConstBlobPtr operator-(size_t) const;
const T& operator[](size_t n) const;
private:
std::shared_ptr<vector<T>> check(size_t, const T&) const;
std::weak_ptr<vector<T>> wptr;
size_t curr;
};
//------------------------------------------------------------------------------
// member function.
//------------------------------------------------------------------------------
template <typename T> inline const T& ConstBlobPtr<T>::operator*() const
{
auto p = check(curr, "dereference past end");
return (*p)[curr];
}
template <typename T> inline const T* ConstBlobPtr<T>::operator->() const
{
return &this->operator*();
}
template <typename T> inline ConstBlobPtr<T>& ConstBlobPtr<T>::operator++()
{
check(curr, "increment past end of ConstBlob<T>Ptr");
++curr;
return *this;
}
template <typename T> inline ConstBlobPtr<T>& ConstBlobPtr<T>::operator--()
{
--curr;
check(-1, "decrement past begin of ConstBlob<T>Ptr");
return *this;
}
template <typename T> inline ConstBlobPtr<T> ConstBlobPtr<T>::operator++(int)
{
ConstBlobPtr<T> ret = *this;
++*this;
return ret;
}
template <typename T> inline ConstBlobPtr<T> ConstBlobPtr<T>::operator--(int)
{
ConstBlobPtr<T> ret = *this;
--*this;
return ret;
}
template <typename T> inline ConstBlobPtr<T>& ConstBlobPtr<T>::operator+=(size_t n)
{
curr += n;
check(curr, "increment past end of ConstBlob<T>Ptr");
return *this;
}
template <typename T> inline ConstBlobPtr<T>& ConstBlobPtr<T>::operator-=(size_t n)
{
curr -= n;
check(curr, "increment past end of ConstBlob<T>Ptr");
return *this;
}
template <typename T> inline ConstBlobPtr<T> ConstBlobPtr<T>::operator+(size_t n) const
{
ConstBlobPtr<T> ret = *this;
ret += n;
return ret;
}
template <typename T> inline ConstBlobPtr<T> ConstBlobPtr<T>::operator-(size_t n) const
{
ConstBlobPtr<T> ret = *this;
ret -= n;
return ret;
}
template <typename T>
inline std::shared_ptr<vector<T>> ConstBlobPtr<T>::check(size_t i, const T& msg) const
{
auto ret = wptr.lock();
if (!ret) throw std::runtime_error("unbound Blob<T>Ptr");
if (i >= ret->size()) throw std::out_of_range(msg);
return ret;
}
template <typename T> inline const T& ConstBlobPtr<T>::operator[](size_t n) const
{
auto p = check(n, "dereference out of range.");
return (*p)[n];
}
#endif // CP5_EX16_24_BLOB_H_