-
Notifications
You must be signed in to change notification settings - Fork 1
/
E26.h
113 lines (93 loc) · 2.48 KB
/
E26.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
#ifndef E26_H
#define E26_H
#include <memory>
using std::shared_ptr;
using std::make_shared;
using std::weak_ptr;
#include <string>
using std::string;
#include <vector>
using std::vector;
#include <initializer_list>
using std::initializer_list;
#include <stdexcept>
using std::out_of_range;
using std::runtime_error;
class StrBlobPtr;
class StrBlob{
friend class StrBlobPtr;
public:
StrBlobPtr begin() const;
StrBlobPtr end() const;
using size_type = vector<string>::size_type;
StrBlob();
StrBlob(initializer_list<string> il);
size_type size() const { return data->size(); }
bool empty() const { return data->empty(); }
void push_back(const string& s) { return data->push_back(s); }
void pop_back();
string& front();
string& back();
//copy constructor
StrBlob(const StrBlob& sb) : data(make_shared<vector<string>>(*sb.data)) {}
//assignment constructor
StrBlob& operator=(const StrBlob& sb);
private:
shared_ptr<vector<string>> data;
void check(size_type i, const string& s) const;
};
class StrBlobPtr{
public:
using size_type = vector<string>::size_type;
StrBlobPtr():curr(0) {}
StrBlobPtr(const StrBlob& sb, size_type sz = 0):wp(sb.data), curr(sz) {}
const string& deref() const;
StrBlobPtr& incr();
private:
weak_ptr<vector<string>> wp;
size_type curr;
shared_ptr<vector<string>> check(size_type i, const string& s) const;
};
StrBlob::StrBlob():data(make_shared<vector<string>>()) {}
StrBlob::StrBlob(initializer_list<string> il):data(make_shared<vector<string>> (il)) {}
void StrBlob::check(size_type i, const string& s) const {
if(i >= data->size() ) throw out_of_range(s);
}
string& StrBlob::front(){
check(0, "front on the empty vector !");
return data->front();
}
string& StrBlob::back(){
check(0, "back on the empty vector !");
return data->back();
}
StrBlob& StrBlob::operator=(const StrBlob& sb){
data = make_shared<vector<string>>(*sb.data);
return *this;
}
shared_ptr<vector<string>> StrBlobPtr::check(size_type i, const string& s) const {
auto ret = wp.lock();
if(!ret){
throw runtime_error("unbound StrBlobPtr!");
} else {
if(i >= ret->size()) throw out_of_range(s);
}
return ret;
}
const string& StrBlobPtr::deref() const {
auto p = check(curr, "The curr is out of range !");
return (*p)[curr];
}
StrBlobPtr& StrBlobPtr::incr(){
check(curr, "The curr is out of range !");
++curr;
return *this;
}
StrBlobPtr StrBlob::begin() const{
return StrBlobPtr(*this);
}
StrBlobPtr StrBlob::end() const{
auto ret = StrBlobPtr(*this, data->size());
return ret;
}
#endif