-
Notifications
You must be signed in to change notification settings - Fork 0
/
fixedstring.d
386 lines (328 loc) · 6.83 KB
/
fixedstring.d
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
module fixedstring;
/**
* a @safe, @nogc-compatible template string type.
* Authors: Susan
* Date: 2021-11-06
* Licence: AGPL-3.0 or later
* Copyright: Susan, 2021
*/
struct FixedString(size_t maxSize)
{
invariant (_length <= data.length);
enum size = maxSize; ///
private size_t _length;
private char[maxSize] data = ' ';
///
public size_t length() const pure @nogc @safe
{
return _length;
}
/// ditto
public void length(in size_t rhs) pure @safe @nogc
in (rhs <= maxSize)
{
if (rhs >= length)
{
data[length .. rhs] = char.init;
}
_length = rhs;
}
/// constructor
public this(in char[] rhs) @safe @nogc nothrow pure
in (rhs.length <= maxSize)
{
length = rhs.length;
data[0 .. length] = rhs[];
}
/// assignment
public void opAssign(in char[] rhs) @safe @nogc nothrow pure
in (rhs.length <= maxSize)
{
length = rhs.length;
data[0 .. length] = rhs[];
}
/// ditto
public void opAssign(T : FixedString!n, size_t n)(in T rhs) @safe @nogc nothrow pure
in (rhs.length <= maxSize)
{
length = rhs.length;
data[0 .. length] = rhs[];
}
/// ditto
public void opOpAssign(string op)(in char[] rhs) @safe @nogc nothrow pure
if (op == "~")
in (length + rhs.length <= maxSize)
{
immutable oldLength = length;
length = length + rhs.length;
data[oldLength .. length] = rhs[];
}
/// ditto
public void opOpAssign(string op)(in char rhs) @safe @nogc nothrow pure
if (op == "~")
in (length + 1 <= maxSize)
{
length = length + 1;
data[length - 1] = rhs;
}
/// ditto
public void opOpAssign(string op, T: FixedString!n, size_t n)(in T rhs) @safe @nogc nothrow pure
if (op == "~")
in (length + rhs.length <= maxSize)
{
immutable oldLength = length;
length = length + rhs.length;
data[oldLength .. length] = rhs[];
}
/// array features...
public auto opSlice(in size_t first, in size_t last) @safe @nogc nothrow const pure
{
auto temp = data[first .. last];
return temp;
}
/// ditto
public size_t opDollar(size_t pos)() @safe @nogc nothrow const pure
if (pos == 0)
{
return length;
}
/// ditto
public const(char)[] opIndex() @safe @nogc nothrow const pure
{
return data[0 .. length];
}
/// ditto
public char opIndex(in size_t index) @safe @nogc nothrow const pure
in (index < length)
{
return data[index];
}
/// ditto
public void opIndexAssign(in char value, in size_t index) @safe @nogc nothrow pure
in (index <= maxSize)
{
if (index >= length)
{
length = index + 1;
}
data[index] = value;
}
/// equality
public bool opEquals(T : FixedString!n, size_t n)(in T rhs) @safe @nogc nothrow const pure
{
return this[] == rhs[];
}
/// ditto
public bool opEquals(in char[] s) @safe @nogc nothrow const pure
{
if (length != s.length)
{
return false;
}
return this[] == s[];
}
/// concatenation. prefer this over the ~ operator whenever you know what size the result will be ahead of time - the operator version always uses the size of the maximum possible result.
public auto concat(size_t s, T: FixedString!n, size_t n)(in T rhs) @safe @nogc nothrow const pure
in (s >= length + rhs.length)
{
FixedString!(s) result;
result = this[];
result ~= rhs[];
return result;
}
/// concatenation operator
public auto opBinary(string op, T: FixedString!n, size_t n)(in T rhs) @safe @nogc nothrow const pure
if (op == "~")
{
return concat!(size + rhs.size)(rhs);
}
///
public string toString() @safe nothrow const pure
{
return data[0 .. length].idup;
}
///
public size_t toHash() @safe @nogc nothrow const pure
{
ulong result = length;
foreach (char c; data[0 .. length])
{
result += c;
}
return result;
}
/// range interface
public bool empty() @safe @nogc nothrow const pure
{
return (length <= 0);
}
/// ditto
public char front() @safe @nogc nothrow const pure
{
return data[0];
}
/// ditto
public void popFront() @safe @nogc nothrow
{
for (auto i = 0; i < length; ++i)
{
data[i] = data[i + 1];
}
length = length - 1;
}
mixin(opApplyWorkaround);
}
private string resultAssign(in int n)
{
switch (n)
{
case 1:
return "result = dg(temp);";
case 2:
return "result = dg(i, temp);";
default:
assert(false);
}
}
private string delegateType(in int n, in string attributes)
{
string params;
switch (n)
{
case 1:
params = "ref char";
break;
case 2:
params = "ref int, ref char";
break;
default:
assert(false);
}
return "delegate(" ~ params ~ ") " ~ attributes;
}
private string opApplyWorkaround()
{
// dfmt off
return paramNumbers("") ~
paramNumbers("@safe") ~
paramNumbers("@nogc") ~
paramNumbers("@safe @nogc") ~
paramNumbers("nothrow") ~
paramNumbers("@safe nothrow") ~
paramNumbers("@nogc nothrow") ~
paramNumbers("@safe @nogc nothrow") ~
paramNumbers("pure") ~
paramNumbers("pure @safe") ~
paramNumbers("pure @nogc") ~
paramNumbers("pure @safe @nogc") ~
paramNumbers("pure nothrow") ~
paramNumbers("pure @safe nothrow") ~
paramNumbers("pure @nogc nothrow") ~
paramNumbers("pure @safe @nogc nothrow");
// dfmt on
}
private string paramNumbers(in string params)
{
// dfmt off
return good(1, params, true) ~
good(2, params, true) ~
good(1, params, false) ~
good(2, params, false);
// dfmt on
}
private string good(in int n, in string parameters, in bool isConst)
{
string s;
if (isConst)
{
s = "const";
}
else
{
s = "";
}
string result = "
public int opApply(scope int " ~ delegateType(n, parameters) ~ " dg) " ~ s ~ "
{
int result = 0;
for (int i = 0; i != length; ++i)
{
char temp = data[i];
" ~ resultAssign(n) ~ "
if (result)
{
break;
}
}
return result;
}";
return result;
}
@safe @nogc nothrow unittest
{
immutable string temp = "cool";
auto a = FixedString!8(temp);
assert(a[0] == 'c');
assert(a == "cool");
assert(a[] == "cool");
assert(a[0 .. $] == "cool");
a[2] = 'd';
assert(a == "codl");
assert(a != "");
a[5] = 'd';
assert(a == "codl\xffd");
a.length = 4;
assert(a == "codl");
a.length = 6;
assert(a == "codl\xff\xff");
a.length = 4;
assert(a == "codl");
FixedString!10 b;
b = " is nic";
b ~= 'e';
assert(a ~ b == "codl is nice");
assert(a.concat!16(b) == "codl is nice");
assert(a ~ b == a.concat!16(b));
FixedString!10 d;
d = a;
foreach (i, char c; a)
{
switch (i)
{
case 0:
assert(c == 'c');
break;
case 1:
assert(c == 'o');
break;
case 2:
assert(c == 'd');
break;
case 3:
assert(c == 'l');
break;
default:
assert(false);
}
}
a = "de";
a ~= "ad";
assert(a == "dead");
b = "beef";
a ~= b;
assert(a == "deadbeef");
}
@safe nothrow unittest
{
auto a = FixedString!16("bepis");
assert (a.toString == "bepis");
}
@system unittest
{
import std.exception;
import core.exception : AssertError;
assertThrown!AssertError(FixedString!2("too long"));
FixedString!2 a = "uh";
assertThrown!AssertError(a[69] = 'a');
assertThrown!AssertError(a.concat!1(a));
}