-
-
Notifications
You must be signed in to change notification settings - Fork 670
/
Copy pathstring.ts
872 lines (808 loc) · 31.5 KB
/
string.ts
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
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
/// <reference path="./rt/index.d.ts" />
import { OBJECT, BLOCK_MAXSIZE, TOTAL_OVERHEAD } from "./rt/common";
import {
compareImpl,
findCodePointForward,
findCodePointBackward,
strtol,
strtod,
isSpace,
isAscii,
isFinalSigma,
toLower8,
toUpper8
} from "./util/string";
import { SPECIALS_UPPER, casemap, bsearch } from "./util/casemap";
import { E_INDEXOUTOFRANGE, E_INVALIDLENGTH, E_UNPAIRED_SURROGATE } from "./util/error";
import { idof } from "./builtins";
import { Array } from "./array";
@final export abstract class String {
@lazy static readonly MAX_LENGTH: i32 = <i32>(BLOCK_MAXSIZE >>> alignof<u16>());
static fromCharCode(unit: i32, surr: i32 = -1): String {
let hasSur = surr > 0;
let out = changetype<String>(__new(2 << i32(hasSur), idof<String>()));
store<u16>(changetype<usize>(out), <u16>unit);
if (hasSur) store<u16>(changetype<usize>(out), <u16>surr, 2);
return out;
}
static fromCharCodes(units: Array<i32>): String {
let length = units.length;
let out = changetype<String>(__new(<usize>length << 1, idof<String>()));
let ptr = units.dataStart;
for (let i = 0; i < length; ++i) {
store<u16>(changetype<usize>(out) + (<usize>i << 1), load<i32>(ptr + (<usize>i << 2)));
}
return out;
}
static fromCodePoint(code: i32): String {
let hasSur = <u32>code > 0xFFFF;
let out = changetype<String>(__new(2 << i32(hasSur), idof<String>()));
if (!hasSur) {
store<u16>(changetype<usize>(out), <u16>code);
} else {
// Checks valid code point range
assert(<u32>code <= 0x10FFFF);
code -= 0x10000;
let hi = (code & 0x03FF) | 0xDC00;
let lo = code >>> 10 | 0xD800;
store<u32>(changetype<usize>(out), lo | hi << 16);
}
return out;
}
@builtin static raw(parts: TemplateStringsArray, ...args: unknown[]): string { return unreachable(); }
get length(): i32 {
return changetype<OBJECT>(changetype<usize>(this) - TOTAL_OVERHEAD).rtSize >> 1;
}
at(pos: i32): String {
let len = this.length;
pos += select(0, len, pos >= 0);
if (<u32>pos >= <u32>len) throw new RangeError(E_INDEXOUTOFRANGE);
let out = __new(2, idof<String>());
store<u16>(out, load<u16>(changetype<usize>(this) + (<usize>pos << 1)));
return changetype<String>(out); // retains
}
@operator("[]") charAt(pos: i32): String {
if (<u32>pos >= <u32>this.length) return changetype<String>("");
let out = changetype<String>(__new(2, idof<String>()));
store<u16>(changetype<usize>(out), load<u16>(changetype<usize>(this) + (<usize>pos << 1)));
return out;
}
charCodeAt(pos: i32): i32 {
if (<u32>pos >= <u32>this.length) return -1; // (NaN)
return load<u16>(changetype<usize>(this) + (<usize>pos << 1));
}
codePointAt(pos: i32): i32 {
let len = this.length;
if (<u32>pos >= <u32>len) return -1; // (undefined)
let first = <i32>load<u16>(changetype<usize>(this) + (<usize>pos << 1));
if ((first & 0xFC00) != 0xD800 || pos + 1 == len) return first;
let second = <i32>load<u16>(changetype<usize>(this) + (<usize>pos << 1), 2);
if ((second & 0xFC00) != 0xDC00) return first;
return (first - 0xD800 << 10) + (second - 0xDC00) + 0x10000;
}
@operator("+") private static __concat(left: String, right: String): String {
return left.concat(right);
}
concat(other: String): String {
let thisSize: isize = this.length << 1;
let otherSize: isize = other.length << 1;
let outSize: usize = thisSize + otherSize;
if (outSize == 0) return changetype<String>("");
let out = changetype<String>(__new(outSize, idof<String>()));
memory.copy(changetype<usize>(out), changetype<usize>(this), thisSize);
memory.copy(changetype<usize>(out) + thisSize, changetype<usize>(other), otherSize);
return out;
}
endsWith(search: String, end: i32 = String.MAX_LENGTH): bool {
end = min(max(end, 0), this.length);
let searchLength = <isize>search.length;
let searchStart = <isize>end - searchLength;
if (searchStart < 0) return false;
// @ts-ignore: string <-> String
return !compareImpl(this, searchStart, search, 0, searchLength);
}
@operator("==") private static __eq(left: String | null, right: String | null): bool {
if (changetype<usize>(left) == changetype<usize>(right)) return true;
if (changetype<usize>(left) == 0 || changetype<usize>(right) == 0) return false;
let leftLength = changetype<string>(left).length;
if (leftLength != changetype<string>(right).length) return false;
// @ts-ignore: string <-> String
return !compareImpl(left, 0, right, 0, leftLength);
}
@operator.prefix("!")
private static __not(str: String | null): bool {
return changetype<usize>(str) == 0 || !changetype<string>(str).length;
}
@operator("!=")
private static __ne(left: String | null, right: String | null): bool {
return !this.__eq(left, right);
}
@operator(">") private static __gt(left: String, right: String): bool {
if (changetype<usize>(left) == changetype<usize>(right)) return false;
let leftLength = left.length;
if (!leftLength) return false;
let rightLength = right.length;
if (!rightLength) return true;
// @ts-ignore: string <-> String
let res = compareImpl(left, 0, right, 0, min(leftLength, rightLength));
return res ? res > 0 : leftLength > rightLength;
}
@operator(">=") private static __gte(left: String, right: String): bool {
return !this.__lt(left, right);
}
@operator("<") private static __lt(left: String, right: String): bool {
if (changetype<usize>(left) == changetype<usize>(right)) return false;
let rightLength = right.length;
if (!rightLength) return false;
let leftLength = left.length;
if (!leftLength) return true;
// @ts-ignore: string <-> String
let res = compareImpl(left, 0, right, 0, min(leftLength, rightLength));
return res ? res < 0 : leftLength < rightLength;
}
@operator("<=") private static __lte(left: String, right: String): bool {
return !this.__gt(left, right);
}
includes(search: String, start: i32 = 0): bool {
return this.indexOf(search, start) != -1;
}
indexOf(search: String, start: i32 = 0): i32 {
let searchLen = <isize>search.length;
if (!searchLen) return 0;
let len = <isize>this.length;
if (!len) return -1;
let searchStart = min(max(<isize>start, 0), len);
if (len - searchStart < searchLen) return -1;
if (ASC_SHRINK_LEVEL <= 2) {
let firstChar = load<u16>(changetype<usize>(search));
searchStart = findCodePointForward(changetype<usize>(this), searchStart, len, firstChar);
if (searchStart == -1) return -1; // Nothing found
if (searchLen == 1) return <i32>searchStart; // Needle is single character
}
for (len -= searchLen; searchStart <= len; ++searchStart) {
// @ts-ignore: string <-> String
if (!compareImpl(this, searchStart, search, 0, searchLen)) return <i32>searchStart;
}
return -1;
}
lastIndexOf(search: String, start: i32 = i32.MAX_VALUE): i32 {
let searchLen = <isize>search.length;
if (!searchLen) return this.length;
let len = <isize>this.length;
if (!len) return -1;
if (len < searchLen) return -1;
let searchStart = min(max(<isize>start, 0), len - searchLen);
if (ASC_SHRINK_LEVEL <= 2) {
let firstChar = load<u16>(changetype<usize>(search));
searchStart = findCodePointBackward(changetype<usize>(this), searchStart, firstChar);
if (searchStart == -1) return -1; // Nothing found
if (searchLen == 1) return <i32>searchStart; // Needle is single character
}
for (; searchStart >= 0; --searchStart) {
// @ts-ignore: string <-> String
if (!compareImpl(this, searchStart, search, 0, searchLen)) return <i32>searchStart;
}
return -1;
}
// TODO: implement full locale comparison with locales and Collator options
localeCompare(other: String): i32 {
if (changetype<usize>(other) == changetype<usize>(this)) return 0;
let alen = this.length;
let blen = other.length;
// @ts-ignore: string <-> String
let res = compareImpl(this, 0, other, 0, <usize>min(alen, blen));
res = res ? res : alen - blen;
// normalize to [-1, 1] range
return i32(res > 0) - i32(res < 0);
}
startsWith(search: String, start: i32 = 0): bool {
let len = <isize>this.length;
let searchStart = min(max(<isize>start, 0), len);
let searchLength = <isize>search.length;
if (searchLength + searchStart > len) return false;
// @ts-ignore: string <-> String
return !compareImpl(this, searchStart, search, 0, searchLength);
}
substr(start: i32, length: i32 = i32.MAX_VALUE): String { // legacy
let intStart: isize = start;
let end: isize = length;
let len: isize = this.length;
if (intStart < 0) intStart = max(len + intStart, 0);
let size = min(max(end, 0), len - intStart) << 1;
if (size <= 0) return changetype<String>("");
let out = changetype<String>(__new(size, idof<String>()));
memory.copy(changetype<usize>(out), changetype<usize>(this) + (intStart << 1), size);
return out;
}
substring(start: i32, end: i32 = i32.MAX_VALUE): String {
let len: isize = this.length;
let finalStart = min<isize>(max(start, 0), len);
let finalEnd = min<isize>(max(end, 0), len);
let fromPos = min<isize>(finalStart, finalEnd) << 1;
let toPos = max<isize>(finalStart, finalEnd) << 1;
let size = toPos - fromPos;
if (!size) return changetype<String>("");
if (!fromPos && toPos == len << 1) return this;
let out = changetype<String>(__new(size, idof<String>()));
memory.copy(changetype<usize>(out), changetype<usize>(this) + fromPos, size);
return out;
}
trim(): String {
let len = this.length;
let size: usize = len << 1;
while (size && isSpace(load<u16>(changetype<usize>(this) + size - 2))) {
size -= 2;
}
let offset: usize = 0;
while (offset < size && isSpace(load<u16>(changetype<usize>(this) + offset))) {
offset += 2; size -= 2;
}
if (!size) return changetype<String>("");
if (!offset && size == len << 1) return this;
let out = changetype<String>(__new(size, idof<String>()));
memory.copy(changetype<usize>(out), changetype<usize>(this) + offset, size);
return out;
}
@inline
trimLeft(): String {
return this.trimStart();
}
@inline
trimRight(): String {
return this.trimEnd();
}
trimStart(): String {
let size = <usize>this.length << 1;
let offset: usize = 0;
while (offset < size && isSpace(load<u16>(changetype<usize>(this) + offset))) {
offset += 2;
}
if (!offset) return this;
size -= offset;
if (!size) return changetype<String>("");
let out = changetype<String>(__new(size, idof<String>()));
memory.copy(changetype<usize>(out), changetype<usize>(this) + offset, size);
return out;
}
trimEnd(): String {
let originalSize = <usize>this.length << 1;
let size = originalSize;
while (size && isSpace(load<u16>(changetype<usize>(this) + size - 2))) {
size -= 2;
}
if (!size) return changetype<String>("");
if (size == originalSize) return this;
let out = changetype<String>(__new(size, idof<String>()));
memory.copy(changetype<usize>(out), changetype<usize>(this), size);
return out;
}
padStart(length: i32, pad: string = " "): String {
let thisSize = <usize>this.length << 1;
let targetSize = <usize>length << 1;
let padSize = <usize>pad.length << 1;
if (targetSize < thisSize || !padSize) return this;
let prependSize = targetSize - thisSize;
let out = changetype<String>(__new(targetSize, idof<String>()));
if (prependSize > padSize) {
let repeatCount = (prependSize - 2) / padSize;
let restBase = repeatCount * padSize;
let restSize = prependSize - restBase;
memory.repeat(changetype<usize>(out), changetype<usize>(pad), padSize, repeatCount);
memory.copy(changetype<usize>(out) + restBase, changetype<usize>(pad), restSize);
} else {
memory.copy(changetype<usize>(out), changetype<usize>(pad), prependSize);
}
memory.copy(changetype<usize>(out) + prependSize, changetype<usize>(this), thisSize);
return out;
}
padEnd(length: i32, pad: string = " "): String {
let thisSize = <usize>this.length << 1;
let targetSize = <usize>length << 1;
let padSize = <usize>pad.length << 1;
if (targetSize < thisSize || !padSize) return this;
let appendSize = targetSize - thisSize;
let out = changetype<String>(__new(targetSize, idof<String>()));
memory.copy(changetype<usize>(out), changetype<usize>(this), thisSize);
if (appendSize > padSize) {
let repeatCount = (appendSize - 2) / padSize;
let restBase = repeatCount * padSize;
let restSize = appendSize - restBase;
memory.repeat(changetype<usize>(out) + thisSize, changetype<usize>(pad), padSize, repeatCount);
memory.copy(changetype<usize>(out) + thisSize + restBase, changetype<usize>(pad), restSize);
} else {
memory.copy(changetype<usize>(out) + thisSize, changetype<usize>(pad), appendSize);
}
return out;
}
repeat(count: i32 = 0): String {
let length = this.length;
// Most browsers can't handle strings 1 << 28 chars or longer
if (count < 0 || <u64>length * count > (1 << 28)) {
throw new RangeError(E_INVALIDLENGTH);
}
if (count == 0 || !length) return changetype<String>("");
if (count == 1) return this;
let out = changetype<String>(__new((length * count) << 1, idof<String>()));
memory.repeat(changetype<usize>(out), changetype<usize>(this), <usize>length << 1, count);
return out;
}
replace(search: String, replacement: String): String {
let len: usize = this.length;
let slen: usize = search.length;
if (len <= slen) {
return len < slen ? this : select<String>(replacement, this, search == this);
}
let index: isize = this.indexOf(search);
if (~index) {
let rlen: usize = replacement.length;
len -= slen;
let olen = len + rlen;
if (olen) {
let out = changetype<String>(__new(olen << 1, idof<String>()));
memory.copy(changetype<usize>(out), changetype<usize>(this), index << 1);
memory.copy(
changetype<usize>(out) + (index << 1),
changetype<usize>(replacement),
rlen << 1
);
memory.copy(
changetype<usize>(out) + ((index + rlen) << 1),
changetype<usize>(this) + ((index + slen) << 1),
(len - index) << 1
);
return out;
}
}
return this;
}
replaceAll(search: String, replacement: String): String {
let thisLen: usize = this.length;
let searchLen: usize = search.length;
if (thisLen <= searchLen) {
return thisLen < searchLen
? this
: select<String>(replacement, this, search == this);
}
let replaceLen: usize = replacement.length;
if (!searchLen) {
if (!replaceLen) return this;
// Special case: 'abc'.replaceAll('', '-') -> '-a-b-c-'
let out = changetype<String>(__new((thisLen + (thisLen + 1) * replaceLen) << 1, idof<String>()));
memory.copy(changetype<usize>(out), changetype<usize>(replacement), replaceLen << 1);
let offset = replaceLen;
for (let i: usize = 0; i < thisLen; ++i) {
store<u16>(
changetype<usize>(out) + (offset++ << 1),
load<u16>(changetype<usize>(this) + (i << 1))
);
memory.copy(
changetype<usize>(out) + (offset << 1),
changetype<usize>(replacement),
replaceLen << 1
);
offset += replaceLen;
}
return out;
}
let prev: isize = 0, next: isize = 0;
if (searchLen == replaceLen) {
// Fast path when search and replacement have same length
let outSize = thisLen << 1;
let out = changetype<String>(__new(outSize, idof<String>()));
memory.copy(changetype<usize>(out), changetype<usize>(this), outSize);
while (~(next = <isize>this.indexOf(search, <i32>prev))) {
memory.copy(changetype<usize>(out) + (next << 1), changetype<usize>(replacement), replaceLen << 1);
prev = next + searchLen;
}
return out;
}
let out: String | null = null, offset: usize = 0, outSize = thisLen;
while (~(next = <isize>this.indexOf(search, <i32>prev))) {
if (!out) out = changetype<String>(__new(thisLen << 1, idof<String>()));
let chunk = next - prev;
if (offset + chunk + replaceLen > outSize) {
outSize <<= 1;
out = changetype<String>(__renew(changetype<usize>(out), outSize << 1));
}
memory.copy(
changetype<usize>(out) + (offset << 1),
changetype<usize>(this) + (prev << 1),
chunk << 1
);
offset += chunk;
memory.copy(
changetype<usize>(out) + (offset << 1),
changetype<usize>(replacement),
replaceLen << 1
);
offset += replaceLen;
prev = next + searchLen;
}
if (out) {
let rest = thisLen - prev;
if (offset + rest > outSize) {
outSize <<= 1;
out = changetype<String>(__renew(changetype<usize>(out), outSize << 1));
}
if (rest) {
memory.copy(
changetype<usize>(out) + (offset << 1),
changetype<usize>(this) + (prev << 1),
rest << 1
);
}
rest += offset;
if (outSize > rest) {
out = changetype<String>(__renew(changetype<usize>(out), rest << 1));
}
return out;
}
return this;
}
slice(start: i32, end: i32 = i32.MAX_VALUE): String {
let len = this.length;
start = start < 0 ? max(start + len, 0) : min(start, len);
end = end < 0 ? max(end + len, 0) : min(end, len);
len = end - start;
if (len <= 0) return changetype<String>("");
let out = changetype<String>(__new(len << 1, idof<String>()));
memory.copy(changetype<usize>(out), changetype<usize>(this) + (<usize>start << 1), <usize>len << 1);
return out;
}
split(separator: String | null = null, limit: i32 = i32.MAX_VALUE): String[] {
if (!limit) return changetype<String[]>(__newArray(0, alignof<String>(), idof<Array<String>>()));
if (changetype<usize>(separator) == 0) return [ this ];
let length: isize = this.length;
let sepLen = changetype<string>(separator).length;
if (limit < 0) limit = i32.MAX_VALUE;
if (!sepLen) {
if (!length) return changetype<String[]>(__newArray(0, alignof<String>(), idof<Array<String>>()));
// split by chars
length = min<isize>(length, <isize>limit);
let result = changetype<String[]>(__newArray(<i32>length, alignof<String>(), idof<Array<String>>()));
// @ts-ignore: cast
let resultStart = result.dataStart as usize;
for (let i: isize = 0; i < length; ++i) {
let charStr = changetype<String>(__new(2, idof<String>()));
store<u16>(changetype<usize>(charStr), load<u16>(changetype<usize>(this) + (<usize>i << 1)));
store<usize>(resultStart + (<usize>i << alignof<usize>()), changetype<usize>(charStr)); // result[i] = charStr
__link(changetype<usize>(result), changetype<usize>(charStr), true);
}
return result;
} else if (!length) {
let result = changetype<String[]>(__newArray(1, alignof<String>(), idof<Array<String>>()));
// @ts-ignore: cast
store<usize>(result.dataStart as usize, changetype<usize>("")); // static ""
return result;
}
let result = changetype<String[]>(__newArray(0, alignof<String>(), idof<Array<String>>()));
let end = 0, start = 0, i = 0;
while (~(end = this.indexOf(changetype<string>(separator), start))) {
let len = end - start;
if (len > 0) {
let out = changetype<String>(__new(<usize>len << 1, idof<String>()));
memory.copy(changetype<usize>(out), changetype<usize>(this) + (<usize>start << 1), <usize>len << 1);
result.push(out);
} else {
result.push(changetype<String>(""));
}
if (++i == limit) return result;
start = end + sepLen;
}
if (!start) { // also means: loop above didn't do anything
result.push(this);
return result;
}
let len = length - start;
if (len > 0) {
let out = changetype<String>(__new(<usize>len << 1, idof<String>()));
memory.copy(changetype<usize>(out), changetype<usize>(this) + (<usize>start << 1), <usize>len << 1);
result.push(out);
} else {
result.push(changetype<String>("")); // static ""
}
return result;
}
toLowerCase(): String {
let len = <usize>this.length;
if (!len) return this;
let codes = changetype<String>(__new(len * 2 * 2, idof<String>()));
let j: usize = 0;
for (let i: usize = 0; i < len; ++i, ++j) {
let c = <u32>load<u16>(changetype<usize>(this) + (i << 1));
if (isAscii(c)) {
store<u16>(changetype<usize>(codes) + (j << 1), toLower8(c));
} else {
// check and read surrogate pair
if ((c - 0xD7FF < 0xDC00 - 0xD7FF) && i < len - 1) {
let c1 = <u32>load<u16>(changetype<usize>(this) + (i << 1), 2);
if (c1 - 0xDBFF < 0xE000 - 0xDBFF) {
let c0 = c;
c = (((c & 0x03FF) << 10) | (c1 & 0x03FF)) + 0x10000;
++i;
if (c >= 0x20000) {
store<u32>(changetype<usize>(codes) + (j << 1), c0 | (c1 << 16));
++j;
continue;
}
}
}
// check special casing for lower table. It has one ently so instead lookup we just inline this.
if (c == 0x0130) {
// 0x0130 -> [0x0069, 0x0307]
store<u32>(changetype<usize>(codes) + (j << 1), (0x0307 << 16) | 0x0069);
++j;
} else if (c == 0x03A3) { // 'Σ'
// Σ maps to σ but except at the end of a word where it maps to ς
let sigma = 0x03C3; // σ
if (len > 1 && isFinalSigma(changetype<usize>(this), i, len)) {
sigma = 0x03C2; // ς
}
store<u16>(changetype<usize>(codes) + (j << 1), sigma);
} else if (c - 0x24B6 <= 0x24CF - 0x24B6) {
// Range 0x24B6 <= c <= 0x24CF not covered by casemap and require special early handling
store<u16>(changetype<usize>(codes) + (j << 1), c + 26);
} else {
let code = casemap(c, 0) & 0x1FFFFF;
if (code < 0x10000) {
store<u16>(changetype<usize>(codes) + (j << 1), code);
} else {
// store as surrogare pair
code -= 0x10000;
let lo = (code >>> 10) | 0xD800;
let hi = (code & 0x03FF) | 0xDC00;
store<u32>(changetype<usize>(codes) + (j << 1), lo | (hi << 16));
++j;
}
}
}
}
return changetype<String>(__renew(changetype<usize>(codes), j << 1));
}
toUpperCase(): String {
let len = <usize>this.length;
if (!len) return this;
let codes = changetype<String>(__new(len * 3 * 2, idof<String>()));
let specialsPtr = changetype<usize>(SPECIALS_UPPER);
let specialsLen = SPECIALS_UPPER.length;
let j: usize = 0;
for (let i: usize = 0; i < len; ++i, ++j) {
let c = <u32>load<u16>(changetype<usize>(this) + (i << 1));
if (isAscii(c)) {
store<u16>(changetype<usize>(codes) + (j << 1), toUpper8(c));
} else {
// check and read surrogate pair
if ((c - 0xD7FF < 0xDC00 - 0xD7FF) && i < len - 1) {
let c1 = <u32>load<u16>(changetype<usize>(this) + (i << 1), 2);
if (c1 - 0xDBFF < 0xE000 - 0xDBFF) {
let c0 = c;
c = (((c & 0x03FF) << 10) | (c1 & 0x03FF)) + 0x10000;
++i;
if (c >= 0x20000) {
store<u32>(changetype<usize>(codes) + (j << 1), c0 | (c1 << 16));
++j;
continue;
}
}
}
// Range 0x24D0 <= c <= 0x24E9 not covered by casemap and require special early handling
if (c - 0x24D0 <= 0x24E9 - 0x24D0) {
// monkey patch
store<u16>(changetype<usize>(codes) + (j << 1), c - 26);
} else {
let index: usize = -1;
// Fast range check. See first and last rows in specialsUpper table
if (c - 0x00DF <= 0xFB17 - 0x00DF) {
index = <usize>bsearch(c, specialsPtr, specialsLen);
}
if (~index) {
// load next 3 code points from row with `index` offset for specialsUpper table
let ab = load<u32>(specialsPtr + (index << 1), 2);
let cc = load<u16>(specialsPtr + (index << 1), 6);
store<u32>(changetype<usize>(codes) + (j << 1), ab, 0);
store<u16>(changetype<usize>(codes) + (j << 1), cc, 4);
j += 1 + usize(cc != 0);
} else {
let code = casemap(c, 1) & 0x1FFFFF;
if (code < 0x10000) {
store<u16>(changetype<usize>(codes) + (j << 1), code);
} else {
// store as surrogare pair
code -= 0x10000;
let lo = (code >>> 10) | 0xD800;
let hi = (code & 0x03FF) | 0xDC00;
store<u32>(changetype<usize>(codes) + (j << 1), lo | (hi << 16));
++j;
}
}
}
}
}
return changetype<String>(__renew(changetype<usize>(codes), j << 1));
}
toString(): String {
return this;
}
}
// @ts-ignore: nolib
export type string = String;
export function parseInt(str: string, radix: i32 = 0): f64 {
return strtol<f64>(str, radix);
}
export function parseFloat(str: string): f64 {
return strtod(str);
}
// Encoding helpers
export namespace String {
export namespace UTF8 {
export const enum ErrorMode {
WTF8,
REPLACE,
ERROR
}
export function byteLength(str: string, nullTerminated: bool = false): i32 {
let strOff = changetype<usize>(str);
let strEnd = strOff + <usize>changetype<OBJECT>(changetype<usize>(str) - TOTAL_OVERHEAD).rtSize;
let bufLen = i32(nullTerminated);
while (strOff < strEnd) {
let c1 = <u32>load<u16>(strOff);
if (c1 < 128) {
// @ts-ignore: cast
if (nullTerminated & !c1) break;
bufLen += 1;
} else if (c1 < 2048) {
bufLen += 2;
} else {
if ((c1 & 0xFC00) == 0xD800 && strOff + 2 < strEnd) {
if ((<u32>load<u16>(strOff, 2) & 0xFC00) == 0xDC00) {
bufLen += 4; strOff += 4;
continue;
}
}
bufLen += 3;
}
strOff += 2;
}
return bufLen;
}
export function encode(str: string, nullTerminated: bool = false, errorMode: ErrorMode = ErrorMode.WTF8): ArrayBuffer {
let buf = changetype<ArrayBuffer>(__new(<usize>byteLength(str, nullTerminated), idof<ArrayBuffer>()));
encodeUnsafe(changetype<usize>(str), str.length, changetype<usize>(buf), nullTerminated, errorMode);
return buf;
}
// @ts-ignore: decorator
@unsafe
export function encodeUnsafe(str: usize, len: i32, buf: usize, nullTerminated: bool = false, errorMode: ErrorMode = ErrorMode.WTF8): usize {
let strEnd = str + (<usize>len << 1);
let bufOff = buf;
while (str < strEnd) {
let c1 = <u32>load<u16>(str);
if (c1 < 128) {
store<u8>(bufOff, c1);
bufOff++;
// @ts-ignore: cast
if (nullTerminated & !c1) return bufOff - buf;
} else if (c1 < 2048) {
let b0 = c1 >> 6 | 192;
let b1 = c1 & 63 | 128;
store<u16>(bufOff, b1 << 8 | b0);
bufOff += 2;
} else {
// D800: 11011 0 0000000000 Lead
// DBFF: 11011 0 1111111111
// DC00: 11011 1 0000000000 Trail
// DFFF: 11011 1 1111111111
// F800: 11111 0 0000000000 Mask
// FC00: 11111 1 0000000000
if ((c1 & 0xF800) == 0xD800) {
if (c1 < 0xDC00 && str + 2 < strEnd) {
let c2 = <u32>load<u16>(str, 2);
if ((c2 & 0xFC00) == 0xDC00) {
c1 = 0x10000 + ((c1 & 0x03FF) << 10) | (c2 & 0x03FF);
let b0 = c1 >> 18 | 240;
let b1 = c1 >> 12 & 63 | 128;
let b2 = c1 >> 6 & 63 | 128;
let b3 = c1 & 63 | 128;
store<u32>(bufOff, b3 << 24 | b2 << 16 | b1 << 8 | b0);
bufOff += 4; str += 4;
continue;
}
}
if (errorMode != ErrorMode.WTF8) { // unlikely
if (errorMode == ErrorMode.ERROR) throw new Error(E_UNPAIRED_SURROGATE);
c1 = 0xFFFD;
}
}
let b0 = c1 >> 12 | 224;
let b1 = c1 >> 6 & 63 | 128;
let b2 = c1 & 63 | 128;
store<u16>(bufOff, b1 << 8 | b0);
store<u8>(bufOff, b2, 2);
bufOff += 3;
}
str += 2;
}
if (nullTerminated) {
store<u8>(bufOff++, 0);
}
return bufOff - buf;
}
export function decode(buf: ArrayBuffer, nullTerminated: bool = false): String {
return decodeUnsafe(changetype<usize>(buf), buf.byteLength, nullTerminated);
}
// @ts-ignore: decorator
@unsafe
export function decodeUnsafe(buf: usize, len: usize, nullTerminated: bool = false): String {
let bufOff = buf;
let bufEnd = buf + len;
assert(bufEnd >= bufOff); // guard wraparound
let str = changetype<String>(__new(len << 1, idof<String>())); // max is one u16 char per u8 byte
let strOff = changetype<usize>(str);
while (bufOff < bufEnd) {
let u0 = <u32>load<u8>(bufOff); ++bufOff;
if (!(u0 & 128)) {
// @ts-ignore: cast
if (nullTerminated & !u0) break;
store<u16>(strOff, u0);
} else {
if (bufEnd == bufOff) break;
let u1 = <u32>load<u8>(bufOff) & 63; ++bufOff;
if ((u0 & 224) == 192) {
store<u16>(strOff, (u0 & 31) << 6 | u1);
} else {
if (bufEnd == bufOff) break;
let u2 = <u32>load<u8>(bufOff) & 63; ++bufOff;
if ((u0 & 240) == 224) {
u0 = (u0 & 15) << 12 | u1 << 6 | u2;
} else {
if (bufEnd == bufOff) break;
u0 = (u0 & 7) << 18 | u1 << 12 | u2 << 6 | <u32>load<u8>(bufOff) & 63;
++bufOff;
}
if (u0 < 0x10000) {
store<u16>(strOff, u0);
} else {
u0 -= 0x10000;
let lo = u0 >> 10 | 0xD800;
let hi = (u0 & 0x03FF) | 0xDC00;
store<u32>(strOff, lo | (hi << 16));
strOff += 2;
}
}
}
strOff += 2;
}
return changetype<String>(__renew(changetype<usize>(str), strOff - changetype<usize>(str)));
}
}
export namespace UTF16 {
export function byteLength(str: string): i32 {
return changetype<OBJECT>(changetype<usize>(str) - TOTAL_OVERHEAD).rtSize;
}
export function encode(str: string): ArrayBuffer {
let buf = changetype<ArrayBuffer>(__new(<usize>byteLength(str), idof<ArrayBuffer>()));
encodeUnsafe(changetype<usize>(str), str.length, changetype<usize>(buf));
return buf;
}
// @ts-ignore: decorator
@unsafe
export function encodeUnsafe(str: usize, len: i32, buf: usize): usize {
let size = <usize>len << 1;
memory.copy(buf, changetype<usize>(str), size);
return size;
}
export function decode(buf: ArrayBuffer): String {
return decodeUnsafe(changetype<usize>(buf), buf.byteLength);
}
// @ts-ignore: decorator
@unsafe
export function decodeUnsafe(buf: usize, len: usize): String {
let str = changetype<String>(__new(len &= ~1, idof<String>()));
memory.copy(changetype<usize>(str), buf, len);
return str;
}
}
}
export class TemplateStringsArray extends Array<string> {
readonly raw!: string[];
}