-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathString.cpp
More file actions
245 lines (193 loc) · 5.63 KB
/
Copy pathString.cpp
File metadata and controls
245 lines (193 loc) · 5.63 KB
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
#include "String.h"
#include <cstring>
#include <cassert>
String::String(const char *charArr) : _string{new char[strlen(charArr) + 1]}, _length{strlen(charArr)} {
strcpy(_string, charArr);
assert(_length == strlen(_string));
}
String::String(const char ch) : _string{new char[2]}, _length{1} {
_string[0] = ch;
_string[1] = '\0';
assert(_length == strlen(_string));
}
String::String(const std::string &str) : String{str.c_str()} {}
String::String(const String &other) : _string{new char[other.length() + 1]}, _length{other.length()} {
strcpy(_string, other.c_string());
}
String::~String() {
delete[] _string;
}
String &String::operator=(const String &other) {
if (this == &other)
return *this;
return this->operator=(other.c_string());
}
String &String::operator=(const std::string &str) {
return this->operator=(str.c_str());
}
String &String::operator=(const char *charArr) {
if (_string == charArr)
return *this;
size_t newCharLen{strlen(charArr)};
char *temp{new char[newCharLen + 1]};
strcpy(temp, charArr);
assert(temp[newCharLen] == '\0');
assert(strlen(charArr) == strlen(temp));
delete[] _string;
_string = temp;
_length = newCharLen;
return *this;
}
String &String::operator=(const char ch) {
delete[] _string;
_string = new char[2];
_string[0] = ch;
_string[1] = '\0';
_length = 1;
return *this;
}
String &String::operator+=(const String &other) {
return *this += other.c_string();
}
String &String::operator+=(const std::string &str) {
return *this += str.c_str();
}
String &String::operator+=(const char *charArr) {
size_t newLen{length() + strlen(charArr)};
char *temp {new char[newLen + 1]};
strcpy(temp, _string);
strcat(temp, charArr);
delete[] _string;
_string = temp;
_length = newLen;
return *this;
}
char String::operator[](const size_t index) const {
if (length() <= index)
throw "Invalid index";
return _string[index];
}
char &String::operator[](const size_t index) {
if (length() <= index)
throw "Invalid index";
return _string[index];
}
size_t String::length() const {
assert(_length == strlen(_string));
return _length;
}
const char *String::c_string() const {
assert(_string[_length] == '\0');
return _string;
}
std::string String::std_string() const {
return std::string(_string);
}
std::ostream &operator<<(std::ostream &os, const String &str) {
return os << str.c_string();
}
const String operator+(const String &a, const String &b) {
String temp(a);
temp += b;
return temp;
}
const String operator+(const String &a, const char *const b) {
String temp(a);
temp += b;
return temp;
}
const String operator+(const String &a, const std::string &b) {
String temp(a);
temp += b;
return temp;
}
bool operator==(const String &a, const String &b) {
return strcmp(a.c_string(), b.c_string()) == 0;
}
bool operator==(const String &a, const std::string &b) {
return strcmp(a.c_string(), b.c_str()) == 0;
}
bool operator==(const std::string &a, const String &b) {
return b == a;
}
bool operator==(const String &a, const char *const b) {
return strcmp(a.c_string(), b) == 0;
}
bool operator==(const char *const a, const String &b) {
return b == a;
}
bool operator!=(const String &a, const String &b) {
return !(a == b);
}
bool operator!=(const String &a, const std::string &b) {
return !(a == b);
}
bool operator!=(const std::string &a, const String &b) {
return !(a == b);
}
bool operator!=(const String &a, const char *const b) {
return !(a == b);
}
bool operator!=(const char *const a, const String &b) {
return !(a == b);
}
bool operator<(const String &a, const String &b) {
return strcmp(a.c_string(), b.c_string()) < 0;
}
bool operator<(const String &a, const std::string &b) {
return strcmp(a.c_string(), b.c_str()) < 0;
}
bool operator<(const std::string &a, const String &b) {
return !(b >= a);
}
bool operator<(const String &a, const char *const b) {
return strcmp(a.c_string(), b) < 0;
}
bool operator<(const char *const a, const String &b) {
return !(b >= a);
}
bool operator>(const String &a, const String &b) {
return strcmp(a.c_string(), b.c_string()) > 0;
}
bool operator>(const String &a, const std::string &b) {
return strcmp(a.c_string(), b.c_str()) > 0;
}
bool operator>(const std::string &a, const String &b) {
return !(b <= a);
}
bool operator>(const String &a, const char *const b) {
return strcmp(a.c_string(), b) > 0;
}
bool operator>(const char *const a, const String &b) {
return !(b >= a);
}
bool operator<=(const String &a, const String &b) {
return !(a > b);
}
bool operator<=(const String &a, const std::string &b) {
return !(a > b);
}
bool operator<=(const std::string &a, const String &b) {
return b >= a;
}
bool operator<=(const String &a, const char *const b) {
return strcmp(a.c_string(), b) <= 0;
}
bool operator<=(const char *const a, const String &b) {
return b >= a;
}
bool operator>=(const String &a, const String &b) {
return !(a < b);
}
bool operator>=(const String &a, const std::string &b) {
return !(a < b);
}
bool operator>=(const std::string &a, const String &b) {
return b <= a;
}
bool operator>=(const String &a, const char *const b) {
return !(a < b);
}
bool operator>=(const char *const a, const String &b) {
return b <= a;
}