-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathString.h
274 lines (214 loc) · 5.52 KB
/
String.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
#ifndef STRING_H
#define STRING_H
#include <cmath>
#include <cctype>
#include <cstddef>
#include <climits>
#include <cfloat>
#include <cassert>
#include <cstring>
#ifndef STRING_NO_PRINT
#include "Print.h"
#endif
struct string {
size_t count;
const char *data;
char operator[](size_t index) const
{
assert(index < count);
return data[index];
}
bool operator==(string b)
{
if (count != b.count) return false;
return memcmp(b.data, data, count) == 0;
}
bool operator!=(string b)
{
if (count != b.count) return true;
return memcmp(b.data, data, count) != 0;
}
};
inline string operator ""_sv(const char *data, size_t count)
{
return {count, data};
}
inline string to_string(const char *cstr)
{
return {strlen(cstr), cstr};
}
inline string string_trim_left(string s)
{
size_t i = 0;
while (i < s.count && isspace(s.data[i])) {
i += 1;
}
return {s.count - i, s.data + i};
}
inline string string_trim_right(string s)
{
size_t i = 0;
while (i < s.count && isspace(s.data[s.count - 1 - i])) {
i += 1;
}
return {s.count - i, s.data};
}
inline string string_trim(string s)
{
return string_trim_right(string_trim_left(s));
}
inline string string_chop_left(string& s, size_t n)
{
if (n > s.count) n = s.count;
string result = {n, s.data};
s.count -= n;
s.data += n;
return result;
}
inline string string_chop_right(string& s, size_t n)
{
if (n > s.count) n = s.count;
string result = {n, s.data + s.count - n};
s.count -= n;
return result;
}
inline bool string_index_of(string s, char c, size_t& index)
{
size_t i = 0;
while (i < s.count && s.data[i] != c) {
i += 1;
}
if (i < s.count) {
index = i;
return true;
}
return false;
}
inline bool string_index_of_from(string s, size_t start, char c, size_t& index)
{
size_t i = start;
while (i < s.count && s.data[i] != c) {
i += 1;
}
if (i < s.count) {
index = i;
return true;
}
return false;
}
inline bool string_try_chop_by_delim(string& s, char delim, string& chunk)
{
size_t i = 0;
while (i < s.count && s.data[i] != delim) {
i += 1;
}
string result = {i, s.data};
if (i < s.count) {
s.count -= i + 1;
s.data += i + 1;
chunk = result;
return true;
}
return false;
}
inline string string_chop_by_delim(string& s, char delim)
{
size_t i = 0;
while (i < s.count && s.data[i] != delim) {
i += 1;
}
string result = {i, s.data};
if (i < s.count) {
s.count -= i + 1;
s.data += i + 1;
} else {
s.count -= i;
s.data += i;
}
return result;
}
enum Parse_Error {
PARSE_ERROR_NONE = 0,
PARSE_ERROR_INVALID_CHAR,
PARSE_ERROR_OVERFLOW,
};
inline Parse_Error parse_u64(string s, unsigned long long& value)
{
value = 0;
for (size_t i = 0; i < s.count; i++) {
unsigned char c = (unsigned char)(s.data[i]);
if (c < '0' || c > '9') return PARSE_ERROR_INVALID_CHAR;
if (value > (ULLONG_MAX / 10) || (value == (ULLONG_MAX / 10) && (c - '0') > (ULLONG_MAX % 10))) {
return PARSE_ERROR_OVERFLOW;
}
value = value * 10 + (c - '0');
}
return PARSE_ERROR_NONE;
}
inline Parse_Error parse_f64(string s, double& value)
{
value = 0.0;
size_t i = 0;
// Parse the integer part before the decimal point
bool has_digits = false;
while (i < s.count && isdigit(s.data[i])) {
value = value * 10 + (s.data[i] - '0');
i += 1;
has_digits = true;
}
if (!has_digits && (i == s.count || (s.data[i] != '.' && s.data[i] != 'e' && s.data[i] != 'E'))) {
return PARSE_ERROR_INVALID_CHAR;
}
if (i < s.count && s.data[i] == '.') {
i += 1;
double fractional_part = 0.1;
bool fractional_digits = false;
while (i < s.count && isdigit(s.data[i])) {
value += (s.data[i] - '0') * fractional_part;
fractional_part /= 10;
i += 1;
fractional_digits = true;
}
if (!fractional_digits && (i == s.count || (s.data[i] != 'e' && s.data[i] != 'E'))) {
return PARSE_ERROR_INVALID_CHAR;
}
}
if (i < s.count && (s.data[i] == 'e' || s.data[i] == 'E')) {
i += 1;
bool exp_negative = false;
if (i < s.count && (s.data[i] == '-' || s.data[i] == '+')) {
exp_negative = (s.data[i] == '-');
i += 1;
}
int exponent = 0;
while (i < s.count && isdigit(s.data[i])) {
exponent = exponent * 10 + (s.data[i] - '0');
i += 1;
}
if (exponent > 308) {
return PARSE_ERROR_OVERFLOW;
}
value *= pow(10, exp_negative ? -exponent : exponent);
}
if (i != s.count) {
return PARSE_ERROR_INVALID_CHAR;
}
if (value > DBL_MAX || value < -DBL_MAX) {
return PARSE_ERROR_OVERFLOW;
}
if (value != 0.0 && (value < DBL_MIN && value > -DBL_MIN)) {
return PARSE_ERROR_OVERFLOW;
}
return PARSE_ERROR_NONE;
}
#ifndef STRING_NO_PRINT
inline void sprint1(String_Buffer *buffer, string s)
{
int n = snprintf(
buffer->data + buffer->length,
buffer->capacity - buffer->length,
"%.*s", (int)(s.count), s.data);
buffer->length = min(buffer->length + n, buffer->capacity - 1);
}
#endif // STRING_NO_PRINT
#endif // STRING_H