forked from dotnet/runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRune.cs
More file actions
1477 lines (1268 loc) · 61.4 KB
/
Rune.cs
File metadata and controls
1477 lines (1268 loc) · 61.4 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
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
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Buffers;
using System.Diagnostics;
using System.Diagnostics.CodeAnalysis;
using System.Globalization;
using System.Runtime.CompilerServices;
using System.Text.Unicode;
namespace System.Text
{
/// <summary>
/// Represents a Unicode scalar value ([ U+0000..U+D7FF ], inclusive; or [ U+E000..U+10FFFF ], inclusive).
/// </summary>
/// <remarks>
/// This type's constructors and conversion operators validate the input, so consumers can call the APIs
/// assuming that the underlying <see cref="Rune"/> instance is well-formed.
/// </remarks>
[DebuggerDisplay("{DebuggerDisplay,nq}")]
public readonly struct Rune : IComparable, IComparable<Rune>, IEquatable<Rune>
#if SYSTEM_PRIVATE_CORELIB
#pragma warning disable SA1001 // Commas should be spaced correctly
, ISpanFormattable
#pragma warning restore SA1001
#endif
{
internal const int MaxUtf16CharsPerRune = 2; // supplementary plane code points are encoded as 2 UTF-16 code units
internal const int MaxUtf8BytesPerRune = 4; // supplementary plane code points are encoded as 4 UTF-8 code units
private const char HighSurrogateStart = '\ud800';
private const char LowSurrogateStart = '\udc00';
private const int HighSurrogateRange = 0x3FF;
private const byte IsWhiteSpaceFlag = 0x80;
private const byte IsLetterOrDigitFlag = 0x40;
private const byte UnicodeCategoryMask = 0x1F;
// Contains information about the ASCII character range [ U+0000..U+007F ], with:
// - 0x80 bit if set means 'is whitespace'
// - 0x40 bit if set means 'is letter or digit'
// - 0x20 bit is reserved for future use
// - bottom 5 bits are the UnicodeCategory of the character
private static ReadOnlySpan<byte> AsciiCharInfo => new byte[]
{
0x0E, 0x0E, 0x0E, 0x0E, 0x0E, 0x0E, 0x0E, 0x0E, 0x0E, 0x8E, 0x8E, 0x8E, 0x8E, 0x8E, 0x0E, 0x0E, // U+0000..U+000F
0x0E, 0x0E, 0x0E, 0x0E, 0x0E, 0x0E, 0x0E, 0x0E, 0x0E, 0x0E, 0x0E, 0x0E, 0x0E, 0x0E, 0x0E, 0x0E, // U+0010..U+001F
0x8B, 0x18, 0x18, 0x18, 0x1A, 0x18, 0x18, 0x18, 0x14, 0x15, 0x18, 0x19, 0x18, 0x13, 0x18, 0x18, // U+0020..U+002F
0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x18, 0x18, 0x19, 0x19, 0x19, 0x18, // U+0030..U+003F
0x18, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, // U+0040..U+004F
0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x14, 0x18, 0x15, 0x1B, 0x12, // U+0050..U+005F
0x1B, 0x41, 0x41, 0x41, 0x41, 0x41, 0x41, 0x41, 0x41, 0x41, 0x41, 0x41, 0x41, 0x41, 0x41, 0x41, // U+0060..U+006F
0x41, 0x41, 0x41, 0x41, 0x41, 0x41, 0x41, 0x41, 0x41, 0x41, 0x41, 0x14, 0x19, 0x15, 0x19, 0x0E, // U+0070..U+007F
};
private readonly uint _value;
/// <summary>
/// Creates a <see cref="Rune"/> from the provided UTF-16 code unit.
/// </summary>
/// <exception cref="ArgumentOutOfRangeException">
/// If <paramref name="ch"/> represents a UTF-16 surrogate code point
/// U+D800..U+DFFF, inclusive.
/// </exception>
public Rune(char ch)
{
uint expanded = ch;
if (UnicodeUtility.IsSurrogateCodePoint(expanded))
{
ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument.ch);
}
_value = expanded;
}
/// <summary>
/// Creates a <see cref="Rune"/> from the provided UTF-16 surrogate pair.
/// </summary>
/// <exception cref="ArgumentOutOfRangeException">
/// If <paramref name="highSurrogate"/> does not represent a UTF-16 high surrogate code point
/// or <paramref name="lowSurrogate"/> does not represent a UTF-16 low surrogate code point.
/// </exception>
public Rune(char highSurrogate, char lowSurrogate)
: this((uint)char.ConvertToUtf32(highSurrogate, lowSurrogate), false)
{
}
/// <summary>
/// Creates a <see cref="Rune"/> from the provided Unicode scalar value.
/// </summary>
/// <exception cref="ArgumentOutOfRangeException">
/// If <paramref name="value"/> does not represent a value Unicode scalar value.
/// </exception>
public Rune(int value)
: this((uint)value)
{
}
/// <summary>
/// Creates a <see cref="Rune"/> from the provided Unicode scalar value.
/// </summary>
/// <exception cref="ArgumentOutOfRangeException">
/// If <paramref name="value"/> does not represent a value Unicode scalar value.
/// </exception>
[CLSCompliant(false)]
public Rune(uint value)
{
if (!UnicodeUtility.IsValidUnicodeScalar(value))
{
ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument.value);
}
_value = value;
}
// non-validating ctor
private Rune(uint scalarValue, bool _)
{
UnicodeDebug.AssertIsValidScalar(scalarValue);
_value = scalarValue;
}
public static bool operator ==(Rune left, Rune right) => left._value == right._value;
public static bool operator !=(Rune left, Rune right) => left._value != right._value;
public static bool operator <(Rune left, Rune right) => left._value < right._value;
public static bool operator <=(Rune left, Rune right) => left._value <= right._value;
public static bool operator >(Rune left, Rune right) => left._value > right._value;
public static bool operator >=(Rune left, Rune right) => left._value >= right._value;
// Operators below are explicit because they may throw.
public static explicit operator Rune(char ch) => new Rune(ch);
[CLSCompliant(false)]
public static explicit operator Rune(uint value) => new Rune(value);
public static explicit operator Rune(int value) => new Rune(value);
// Displayed as "'<char>' (U+XXXX)"; e.g., "'e' (U+0065)"
private string DebuggerDisplay => string.Create(CultureInfo.InvariantCulture, $"U+{_value:X4} '{(IsValid(_value) ? ToString() : "\uFFFD")}'");
/// <summary>
/// Returns true if and only if this scalar value is ASCII ([ U+0000..U+007F ])
/// and therefore representable by a single UTF-8 code unit.
/// </summary>
public bool IsAscii => UnicodeUtility.IsAsciiCodePoint(_value);
/// <summary>
/// Returns true if and only if this scalar value is within the BMP ([ U+0000..U+FFFF ])
/// and therefore representable by a single UTF-16 code unit.
/// </summary>
public bool IsBmp => UnicodeUtility.IsBmpCodePoint(_value);
/// <summary>
/// Returns the Unicode plane (0 to 16, inclusive) which contains this scalar.
/// </summary>
public int Plane => UnicodeUtility.GetPlane(_value);
/// <summary>
/// A <see cref="Rune"/> instance that represents the Unicode replacement character U+FFFD.
/// </summary>
public static Rune ReplacementChar => UnsafeCreate(UnicodeUtility.ReplacementChar);
/// <summary>
/// Returns the length in code units (<see cref="char"/>) of the
/// UTF-16 sequence required to represent this scalar value.
/// </summary>
/// <remarks>
/// The return value will be 1 or 2.
/// </remarks>
public int Utf16SequenceLength
{
get
{
int codeUnitCount = UnicodeUtility.GetUtf16SequenceLength(_value);
Debug.Assert(codeUnitCount > 0 && codeUnitCount <= MaxUtf16CharsPerRune);
return codeUnitCount;
}
}
/// <summary>
/// Returns the length in code units of the
/// UTF-8 sequence required to represent this scalar value.
/// </summary>
/// <remarks>
/// The return value will be 1 through 4, inclusive.
/// </remarks>
public int Utf8SequenceLength
{
get
{
int codeUnitCount = UnicodeUtility.GetUtf8SequenceLength(_value);
Debug.Assert(codeUnitCount > 0 && codeUnitCount <= MaxUtf8BytesPerRune);
return codeUnitCount;
}
}
/// <summary>
/// Returns the Unicode scalar value as an integer.
/// </summary>
public int Value => (int)_value;
#if SYSTEM_PRIVATE_CORELIB
private static Rune ChangeCaseCultureAware(Rune rune, TextInfo textInfo, bool toUpper)
{
Debug.Assert(!GlobalizationMode.Invariant, "This should've been checked by the caller.");
Debug.Assert(textInfo != null, "This should've been checked by the caller.");
Span<char> original = stackalloc char[MaxUtf16CharsPerRune];
Span<char> modified = stackalloc char[MaxUtf16CharsPerRune];
int charCount = rune.EncodeToUtf16(original);
original = original.Slice(0, charCount);
modified = modified.Slice(0, charCount);
if (toUpper)
{
textInfo.ChangeCaseToUpper(original, modified);
}
else
{
textInfo.ChangeCaseToLower(original, modified);
}
// We use simple case folding rules, which disallows moving between the BMP and supplementary
// planes when performing a case conversion. The helper methods which reconstruct a Rune
// contain debug asserts for this condition.
if (rune.IsBmp)
{
return UnsafeCreate(modified[0]);
}
else
{
return UnsafeCreate(UnicodeUtility.GetScalarFromUtf16SurrogatePair(modified[0], modified[1]));
}
}
#else
private static Rune ChangeCaseCultureAware(Rune rune, CultureInfo culture, bool toUpper)
{
Debug.Assert(!GlobalizationMode.Invariant, "This should've been checked by the caller.");
Debug.Assert(culture != null, "This should've been checked by the caller.");
Span<char> original = stackalloc char[MaxUtf16CharsPerRune]; // worst case scenario = 2 code units (for a surrogate pair)
Span<char> modified = stackalloc char[MaxUtf16CharsPerRune]; // case change should preserve UTF-16 code unit count
int charCount = rune.EncodeToUtf16(original);
original = original.Slice(0, charCount);
modified = modified.Slice(0, charCount);
if (toUpper)
{
MemoryExtensions.ToUpper(original, modified, culture);
}
else
{
MemoryExtensions.ToLower(original, modified, culture);
}
// We use simple case folding rules, which disallows moving between the BMP and supplementary
// planes when performing a case conversion. The helper methods which reconstruct a Rune
// contain debug asserts for this condition.
if (rune.IsBmp)
{
return UnsafeCreate(modified[0]);
}
else
{
return UnsafeCreate(UnicodeUtility.GetScalarFromUtf16SurrogatePair(modified[0], modified[1]));
}
}
#endif
public int CompareTo(Rune other) => this.Value - other.Value; // values don't span entire 32-bit domain; won't integer overflow
/// <summary>
/// Decodes the <see cref="Rune"/> at the beginning of the provided UTF-16 source buffer.
/// </summary>
/// <returns>
/// <para>
/// If the source buffer begins with a valid UTF-16 encoded scalar value, returns <see cref="OperationStatus.Done"/>,
/// and outs via <paramref name="result"/> the decoded <see cref="Rune"/> and via <paramref name="charsConsumed"/> the
/// number of <see langword="char"/>s used in the input buffer to encode the <see cref="Rune"/>.
/// </para>
/// <para>
/// If the source buffer is empty or contains only a standalone UTF-16 high surrogate character, returns <see cref="OperationStatus.NeedMoreData"/>,
/// and outs via <paramref name="result"/> <see cref="ReplacementChar"/> and via <paramref name="charsConsumed"/> the length of the input buffer.
/// </para>
/// <para>
/// If the source buffer begins with an ill-formed UTF-16 encoded scalar value, returns <see cref="OperationStatus.InvalidData"/>,
/// and outs via <paramref name="result"/> <see cref="ReplacementChar"/> and via <paramref name="charsConsumed"/> the number of
/// <see langword="char"/>s used in the input buffer to encode the ill-formed sequence.
/// </para>
/// </returns>
/// <remarks>
/// The general calling convention is to call this method in a loop, slicing the <paramref name="source"/> buffer by
/// <paramref name="charsConsumed"/> elements on each iteration of the loop. On each iteration of the loop <paramref name="result"/>
/// will contain the real scalar value if successfully decoded, or it will contain <see cref="ReplacementChar"/> if
/// the data could not be successfully decoded. This pattern provides convenient automatic U+FFFD substitution of
/// invalid sequences while iterating through the loop.
/// </remarks>
public static OperationStatus DecodeFromUtf16(ReadOnlySpan<char> source, out Rune result, out int charsConsumed)
{
if (!source.IsEmpty)
{
// First, check for the common case of a BMP scalar value.
// If this is correct, return immediately.
char firstChar = source[0];
if (TryCreate(firstChar, out result))
{
charsConsumed = 1;
return OperationStatus.Done;
}
// First thing we saw was a UTF-16 surrogate code point.
// Let's optimistically assume for now it's a high surrogate and hope
// that combining it with the next char yields useful results.
if (source.Length > 1)
{
char secondChar = source[1];
if (TryCreate(firstChar, secondChar, out result))
{
// Success! Formed a supplementary scalar value.
charsConsumed = 2;
return OperationStatus.Done;
}
else
{
// Either the first character was a low surrogate, or the second
// character was not a low surrogate. This is an error.
goto InvalidData;
}
}
else if (!char.IsHighSurrogate(firstChar))
{
// Quick check to make sure we're not going to report NeedMoreData for
// a single-element buffer where the data is a standalone low surrogate
// character. Since no additional data will ever make this valid, we'll
// report an error immediately.
goto InvalidData;
}
}
// If we got to this point, the input buffer was empty, or the buffer
// was a single element in length and that element was a high surrogate char.
charsConsumed = source.Length;
result = ReplacementChar;
return OperationStatus.NeedMoreData;
InvalidData:
charsConsumed = 1; // maximal invalid subsequence for UTF-16 is always a single code unit in length
result = ReplacementChar;
return OperationStatus.InvalidData;
}
/// <summary>
/// Decodes the <see cref="Rune"/> at the beginning of the provided UTF-8 source buffer.
/// </summary>
/// <returns>
/// <para>
/// If the source buffer begins with a valid UTF-8 encoded scalar value, returns <see cref="OperationStatus.Done"/>,
/// and outs via <paramref name="result"/> the decoded <see cref="Rune"/> and via <paramref name="bytesConsumed"/> the
/// number of <see langword="byte"/>s used in the input buffer to encode the <see cref="Rune"/>.
/// </para>
/// <para>
/// If the source buffer is empty or contains only a partial UTF-8 subsequence, returns <see cref="OperationStatus.NeedMoreData"/>,
/// and outs via <paramref name="result"/> <see cref="ReplacementChar"/> and via <paramref name="bytesConsumed"/> the length of the input buffer.
/// </para>
/// <para>
/// If the source buffer begins with an ill-formed UTF-8 encoded scalar value, returns <see cref="OperationStatus.InvalidData"/>,
/// and outs via <paramref name="result"/> <see cref="ReplacementChar"/> and via <paramref name="bytesConsumed"/> the number of
/// <see langword="char"/>s used in the input buffer to encode the ill-formed sequence.
/// </para>
/// </returns>
/// <remarks>
/// The general calling convention is to call this method in a loop, slicing the <paramref name="source"/> buffer by
/// <paramref name="bytesConsumed"/> elements on each iteration of the loop. On each iteration of the loop <paramref name="result"/>
/// will contain the real scalar value if successfully decoded, or it will contain <see cref="ReplacementChar"/> if
/// the data could not be successfully decoded. This pattern provides convenient automatic U+FFFD substitution of
/// invalid sequences while iterating through the loop.
/// </remarks>
public static OperationStatus DecodeFromUtf8(ReadOnlySpan<byte> source, out Rune result, out int bytesConsumed)
{
// This method follows the Unicode Standard's recommendation for detecting
// the maximal subpart of an ill-formed subsequence. See The Unicode Standard,
// Ch. 3.9 for more details. In summary, when reporting an invalid subsequence,
// it tries to consume as many code units as possible as long as those code
// units constitute the beginning of a longer well-formed subsequence per Table 3-7.
// Try reading source[0].
int index = 0;
if (source.IsEmpty)
{
goto NeedsMoreData;
}
uint tempValue = source[0];
if (UnicodeUtility.IsAsciiCodePoint(tempValue))
{
bytesConsumed = 1;
result = UnsafeCreate(tempValue);
return OperationStatus.Done;
}
// Per Table 3-7, the beginning of a multibyte sequence must be a code unit in
// the range [C2..F4]. If it's outside of that range, it's either a standalone
// continuation byte, or it's an overlong two-byte sequence, or it's an out-of-range
// four-byte sequence.
// Try reading source[1].
index = 1;
if (!UnicodeUtility.IsInRangeInclusive(tempValue, 0xC2, 0xF4))
{
goto Invalid;
}
tempValue = (tempValue - 0xC2) << 6;
if (source.Length <= 1)
{
goto NeedsMoreData;
}
// Continuation bytes are of the form [10xxxxxx], which means that their two's
// complement representation is in the range [-65..-128]. This allows us to
// perform a single comparison to see if a byte is a continuation byte.
int thisByteSignExtended = (sbyte)source[1];
if (thisByteSignExtended >= -64)
{
goto Invalid;
}
tempValue += (uint)thisByteSignExtended;
tempValue += 0x80; // remove the continuation byte marker
tempValue += (0xC2 - 0xC0) << 6; // remove the leading byte marker
if (tempValue < 0x0800)
{
Debug.Assert(UnicodeUtility.IsInRangeInclusive(tempValue, 0x0080, 0x07FF));
goto Finish; // this is a valid 2-byte sequence
}
// This appears to be a 3- or 4-byte sequence. Since per Table 3-7 we now have
// enough information (from just two code units) to detect overlong or surrogate
// sequences, we need to perform these checks now.
if (!UnicodeUtility.IsInRangeInclusive(tempValue, ((0xE0 - 0xC0) << 6) + (0xA0 - 0x80), ((0xF4 - 0xC0) << 6) + (0x8F - 0x80)))
{
// The first two bytes were not in the range [[E0 A0]..[F4 8F]].
// This is an overlong 3-byte sequence or an out-of-range 4-byte sequence.
goto Invalid;
}
if (UnicodeUtility.IsInRangeInclusive(tempValue, ((0xED - 0xC0) << 6) + (0xA0 - 0x80), ((0xED - 0xC0) << 6) + (0xBF - 0x80)))
{
// This is a UTF-16 surrogate code point, which is invalid in UTF-8.
goto Invalid;
}
if (UnicodeUtility.IsInRangeInclusive(tempValue, ((0xF0 - 0xC0) << 6) + (0x80 - 0x80), ((0xF0 - 0xC0) << 6) + (0x8F - 0x80)))
{
// This is an overlong 4-byte sequence.
goto Invalid;
}
// The first two bytes were just fine. We don't need to perform any other checks
// on the remaining bytes other than to see that they're valid continuation bytes.
// Try reading source[2].
index = 2;
if (source.Length <= 2)
{
goto NeedsMoreData;
}
thisByteSignExtended = (sbyte)source[2];
if (thisByteSignExtended >= -64)
{
goto Invalid; // this byte is not a UTF-8 continuation byte
}
tempValue <<= 6;
tempValue += (uint)thisByteSignExtended;
tempValue += 0x80; // remove the continuation byte marker
tempValue -= (0xE0 - 0xC0) << 12; // remove the leading byte marker
if (tempValue <= 0xFFFF)
{
Debug.Assert(UnicodeUtility.IsInRangeInclusive(tempValue, 0x0800, 0xFFFF));
goto Finish; // this is a valid 3-byte sequence
}
// Try reading source[3].
index = 3;
if (source.Length <= 3)
{
goto NeedsMoreData;
}
thisByteSignExtended = (sbyte)source[3];
if (thisByteSignExtended >= -64)
{
goto Invalid; // this byte is not a UTF-8 continuation byte
}
tempValue <<= 6;
tempValue += (uint)thisByteSignExtended;
tempValue += 0x80; // remove the continuation byte marker
tempValue -= (0xF0 - 0xE0) << 18; // remove the leading byte marker
// Valid 4-byte sequence
UnicodeDebug.AssertIsValidSupplementaryPlaneScalar(tempValue);
Finish:
bytesConsumed = index + 1;
Debug.Assert(1 <= bytesConsumed && bytesConsumed <= 4); // Valid subsequences are always length [1..4]
result = UnsafeCreate(tempValue);
return OperationStatus.Done;
NeedsMoreData:
Debug.Assert(0 <= index && index <= 3); // Incomplete subsequences are always length 0..3
bytesConsumed = index;
result = ReplacementChar;
return OperationStatus.NeedMoreData;
Invalid:
Debug.Assert(1 <= index && index <= 3); // Invalid subsequences are always length 1..3
bytesConsumed = index;
result = ReplacementChar;
return OperationStatus.InvalidData;
}
/// <summary>
/// Decodes the <see cref="Rune"/> at the end of the provided UTF-16 source buffer.
/// </summary>
/// <remarks>
/// This method is very similar to <see cref="DecodeFromUtf16(ReadOnlySpan{char}, out Rune, out int)"/>, but it allows
/// the caller to loop backward instead of forward. The typical calling convention is that on each iteration
/// of the loop, the caller should slice off the final <paramref name="charsConsumed"/> elements of
/// the <paramref name="source"/> buffer.
/// </remarks>
public static OperationStatus DecodeLastFromUtf16(ReadOnlySpan<char> source, out Rune result, out int charsConsumed)
{
int index = source.Length - 1;
if ((uint)index < (uint)source.Length)
{
// First, check for the common case of a BMP scalar value.
// If this is correct, return immediately.
char finalChar = source[index];
if (TryCreate(finalChar, out result))
{
charsConsumed = 1;
return OperationStatus.Done;
}
if (char.IsLowSurrogate(finalChar))
{
// The final character was a UTF-16 low surrogate code point.
// This must be preceded by a UTF-16 high surrogate code point, otherwise
// we have a standalone low surrogate, which is always invalid.
index--;
if ((uint)index < (uint)source.Length)
{
char penultimateChar = source[index];
if (TryCreate(penultimateChar, finalChar, out result))
{
// Success! Formed a supplementary scalar value.
charsConsumed = 2;
return OperationStatus.Done;
}
}
// If we got to this point, we saw a standalone low surrogate
// and must report an error.
charsConsumed = 1; // standalone surrogate
result = ReplacementChar;
return OperationStatus.InvalidData;
}
}
// If we got this far, the source buffer was empty, or the source buffer ended
// with a UTF-16 high surrogate code point. These aren't errors since they could
// be valid given more input data.
charsConsumed = (int)((uint)(-source.Length) >> 31); // 0 -> 0, all other lengths -> 1
result = ReplacementChar;
return OperationStatus.NeedMoreData;
}
/// <summary>
/// Decodes the <see cref="Rune"/> at the end of the provided UTF-8 source buffer.
/// </summary>
/// <remarks>
/// This method is very similar to <see cref="DecodeFromUtf8(ReadOnlySpan{byte}, out Rune, out int)"/>, but it allows
/// the caller to loop backward instead of forward. The typical calling convention is that on each iteration
/// of the loop, the caller should slice off the final <paramref name="bytesConsumed"/> elements of
/// the <paramref name="source"/> buffer.
/// </remarks>
public static OperationStatus DecodeLastFromUtf8(ReadOnlySpan<byte> source, out Rune value, out int bytesConsumed)
{
int index = source.Length - 1;
if ((uint)index < (uint)source.Length)
{
// The buffer contains at least one byte. Let's check the fast case where the
// buffer ends with an ASCII byte.
uint tempValue = source[index];
if (UnicodeUtility.IsAsciiCodePoint(tempValue))
{
bytesConsumed = 1;
value = UnsafeCreate(tempValue);
return OperationStatus.Done;
}
// If the final byte is not an ASCII byte, we may be beginning or in the middle of
// a UTF-8 multi-code unit sequence. We need to back up until we see the start of
// the multi-code unit sequence; we can detect the leading byte because all multi-byte
// sequences begin with a byte whose 0x40 bit is set. Since all multi-byte sequences
// are no greater than 4 code units in length, we only need to search back a maximum
// of four bytes.
if (((byte)tempValue & 0x40) != 0)
{
// This is a UTF-8 leading byte. We'll do a forward read from here.
// It'll return invalid (if given C0, F5, etc.) or incomplete. Both are fine.
return DecodeFromUtf8(source.Slice(index), out value, out bytesConsumed);
}
// If we got to this point, the final byte was a UTF-8 continuation byte.
// Let's check the three bytes immediately preceding this, looking for the starting byte.
for (int i = 3; i > 0; i--)
{
index--;
if ((uint)index >= (uint)source.Length)
{
goto Invalid; // out of data
}
// The check below will get hit for ASCII (values 00..7F) and for UTF-8 starting bytes
// (bits 0xC0 set, values C0..FF). In two's complement this is the range [-64..127].
// It's just a fast way for us to terminate the search.
if ((sbyte)source[index] >= -64)
{
goto ForwardDecode;
}
}
Invalid:
// If we got to this point, either:
// - the last 4 bytes of the input buffer are continuation bytes;
// - the entire input buffer (if fewer than 4 bytes) consists only of continuation bytes; or
// - there's no UTF-8 leading byte between the final continuation byte of the buffer and
// the previous well-formed subsequence or maximal invalid subsequence.
//
// In all of these cases, the final byte must be a maximal invalid subsequence of length 1.
// See comment near the end of this method for more information.
value = ReplacementChar;
bytesConsumed = 1;
return OperationStatus.InvalidData;
ForwardDecode:
// If we got to this point, we found an ASCII byte or a UTF-8 starting byte at position source[index].
// Technically this could also mean we found an invalid byte like C0 or F5 at this position, but that's
// fine since it'll be handled by the forward read. From this position, we'll perform a forward read
// and see if we consumed the entirety of the buffer.
source = source.Slice(index);
Debug.Assert(!source.IsEmpty, "Shouldn't reach this for empty inputs.");
OperationStatus operationStatus = DecodeFromUtf8(source, out Rune tempRune, out int tempBytesConsumed);
if (tempBytesConsumed == source.Length)
{
// If this forward read consumed the entirety of the end of the input buffer, we can return it
// as the result of this function. It could be well-formed, incomplete, or invalid. If it's
// invalid and we consumed the remainder of the buffer, we know we've found the maximal invalid
// subsequence, which is what we wanted anyway.
bytesConsumed = tempBytesConsumed;
value = tempRune;
return operationStatus;
}
// If we got to this point, we know that the final continuation byte wasn't consumed by the forward
// read that we just performed above. This means that the continuation byte has to be part of an
// invalid subsequence since there's no UTF-8 leading byte between what we just consumed and the
// continuation byte at the end of the input. Furthermore, since any maximal invalid subsequence
// of length > 1 must have a UTF-8 leading byte as its first code unit, this implies that the
// continuation byte at the end of the buffer is itself a maximal invalid subsequence of length 1.
goto Invalid;
}
else
{
// Source buffer was empty.
value = ReplacementChar;
bytesConsumed = 0;
return OperationStatus.NeedMoreData;
}
}
/// <summary>
/// Encodes this <see cref="Rune"/> to a UTF-16 destination buffer.
/// </summary>
/// <param name="destination">The buffer to which to write this value as UTF-16.</param>
/// <returns>The number of <see cref="char"/>s written to <paramref name="destination"/>.</returns>
/// <exception cref="ArgumentException">
/// If <paramref name="destination"/> is not large enough to hold the output.
/// </exception>
public int EncodeToUtf16(Span<char> destination)
{
if (!TryEncodeToUtf16(destination, out int charsWritten))
{
ThrowHelper.ThrowArgumentException_DestinationTooShort();
}
return charsWritten;
}
/// <summary>
/// Encodes this <see cref="Rune"/> to a UTF-8 destination buffer.
/// </summary>
/// <param name="destination">The buffer to which to write this value as UTF-8.</param>
/// <returns>The number of <see cref="byte"/>s written to <paramref name="destination"/>.</returns>
/// <exception cref="ArgumentException">
/// If <paramref name="destination"/> is not large enough to hold the output.
/// </exception>
public int EncodeToUtf8(Span<byte> destination)
{
if (!TryEncodeToUtf8(destination, out int bytesWritten))
{
ThrowHelper.ThrowArgumentException_DestinationTooShort();
}
return bytesWritten;
}
public override bool Equals([NotNullWhen(true)] object? obj) => (obj is Rune other) && Equals(other);
public bool Equals(Rune other) => this == other;
public override int GetHashCode() => Value;
/// <summary>
/// Gets the <see cref="Rune"/> which begins at index <paramref name="index"/> in
/// string <paramref name="input"/>.
/// </summary>
/// <remarks>
/// Throws if <paramref name="input"/> is null, if <paramref name="index"/> is out of range, or
/// if <paramref name="index"/> does not reference the start of a valid scalar value within <paramref name="input"/>.
/// </remarks>
public static Rune GetRuneAt(string input, int index)
{
int runeValue = ReadRuneFromString(input, index);
if (runeValue < 0)
{
ThrowHelper.ThrowArgumentException_CannotExtractScalar(ExceptionArgument.index);
}
return UnsafeCreate((uint)runeValue);
}
/// <summary>
/// Returns <see langword="true"/> iff <paramref name="value"/> is a valid Unicode scalar
/// value, i.e., is in [ U+0000..U+D7FF ], inclusive; or [ U+E000..U+10FFFF ], inclusive.
/// </summary>
public static bool IsValid(int value) => IsValid((uint)value);
/// <summary>
/// Returns <see langword="true"/> iff <paramref name="value"/> is a valid Unicode scalar
/// value, i.e., is in [ U+0000..U+D7FF ], inclusive; or [ U+E000..U+10FFFF ], inclusive.
/// </summary>
[CLSCompliant(false)]
public static bool IsValid(uint value) => UnicodeUtility.IsValidUnicodeScalar(value);
// returns a negative number on failure
internal static int ReadFirstRuneFromUtf16Buffer(ReadOnlySpan<char> input)
{
if (input.IsEmpty)
{
return -1;
}
// Optimistically assume input is within BMP.
uint returnValue = input[0];
if (UnicodeUtility.IsSurrogateCodePoint(returnValue))
{
if (!UnicodeUtility.IsHighSurrogateCodePoint(returnValue))
{
return -1;
}
// Treat 'returnValue' as the high surrogate.
if (input.Length <= 1)
{
return -1; // not an argument exception - just a "bad data" failure
}
uint potentialLowSurrogate = input[1];
if (!UnicodeUtility.IsLowSurrogateCodePoint(potentialLowSurrogate))
{
return -1;
}
returnValue = UnicodeUtility.GetScalarFromUtf16SurrogatePair(returnValue, potentialLowSurrogate);
}
return (int)returnValue;
}
// returns a negative number on failure
private static int ReadRuneFromString(string input, int index)
{
if (input is null)
{
ThrowHelper.ThrowArgumentNullException(ExceptionArgument.input);
}
if ((uint)index >= (uint)input!.Length)
{
ThrowHelper.ThrowArgumentOutOfRange_IndexMustBeLessException();
}
// Optimistically assume input is within BMP.
uint returnValue = input[index];
if (UnicodeUtility.IsSurrogateCodePoint(returnValue))
{
if (!UnicodeUtility.IsHighSurrogateCodePoint(returnValue))
{
return -1;
}
// Treat 'returnValue' as the high surrogate.
//
// If this becomes a hot code path, we can skip the below bounds check by reading
// off the end of the string using unsafe code. Since strings are null-terminated,
// we're guaranteed not to read a valid low surrogate, so we'll fail correctly if
// the string terminates unexpectedly.
index++;
if ((uint)index >= (uint)input.Length)
{
return -1; // not an argument exception - just a "bad data" failure
}
uint potentialLowSurrogate = input[index];
if (!UnicodeUtility.IsLowSurrogateCodePoint(potentialLowSurrogate))
{
return -1;
}
returnValue = UnicodeUtility.GetScalarFromUtf16SurrogatePair(returnValue, potentialLowSurrogate);
}
return (int)returnValue;
}
/// <summary>
/// Returns a <see cref="string"/> representation of this <see cref="Rune"/> instance.
/// </summary>
public override string ToString()
{
#if SYSTEM_PRIVATE_CORELIB
if (IsBmp)
{
return string.CreateFromChar((char)_value);
}
else
{
UnicodeUtility.GetUtf16SurrogatesFromSupplementaryPlaneScalar(_value, out char high, out char low);
return string.CreateFromChar(high, low);
}
#else
if (IsBmp)
{
return ((char)_value).ToString();
}
else
{
Span<char> buffer = stackalloc char[MaxUtf16CharsPerRune];
UnicodeUtility.GetUtf16SurrogatesFromSupplementaryPlaneScalar(_value, out buffer[0], out buffer[1]);
return buffer.ToString();
}
#endif
}
#if SYSTEM_PRIVATE_CORELIB
bool ISpanFormattable.TryFormat(Span<char> destination, out int charsWritten, ReadOnlySpan<char> format, IFormatProvider? provider) =>
TryEncodeToUtf16(destination, out charsWritten);
string IFormattable.ToString(string? format, IFormatProvider? formatProvider) => ToString();
#endif
/// <summary>
/// Attempts to create a <see cref="Rune"/> from the provided input value.
/// </summary>
public static bool TryCreate(char ch, out Rune result)
{
uint extendedValue = ch;
if (!UnicodeUtility.IsSurrogateCodePoint(extendedValue))
{
result = UnsafeCreate(extendedValue);
return true;
}
else
{
result = default;
return false;
}
}
/// <summary>
/// Attempts to create a <see cref="Rune"/> from the provided UTF-16 surrogate pair.
/// Returns <see langword="false"/> if the input values don't represent a well-formed UTF-16surrogate pair.
/// </summary>
public static bool TryCreate(char highSurrogate, char lowSurrogate, out Rune result)
{
// First, extend both to 32 bits, then calculate the offset of
// each candidate surrogate char from the start of its range.
uint highSurrogateOffset = (uint)highSurrogate - HighSurrogateStart;
uint lowSurrogateOffset = (uint)lowSurrogate - LowSurrogateStart;
// This is a single comparison which allows us to check both for validity at once since
// both the high surrogate range and the low surrogate range are the same length.
// If the comparison fails, we call to a helper method to throw the correct exception message.
if ((highSurrogateOffset | lowSurrogateOffset) <= HighSurrogateRange)
{
// The 0x40u << 10 below is to account for uuuuu = wwww + 1 in the surrogate encoding.
result = UnsafeCreate((highSurrogateOffset << 10) + ((uint)lowSurrogate - LowSurrogateStart) + (0x40u << 10));
return true;
}
else
{
// Didn't have a high surrogate followed by a low surrogate.
result = default;
return false;
}
}
/// <summary>
/// Attempts to create a <see cref="Rune"/> from the provided input value.
/// </summary>
public static bool TryCreate(int value, out Rune result) => TryCreate((uint)value, out result);
/// <summary>
/// Attempts to create a <see cref="Rune"/> from the provided input value.
/// </summary>
[CLSCompliant(false)]
public static bool TryCreate(uint value, out Rune result)
{
if (UnicodeUtility.IsValidUnicodeScalar(value))
{
result = UnsafeCreate(value);
return true;
}
else
{
result = default;
return false;
}
}
/// <summary>
/// Encodes this <see cref="Rune"/> to a UTF-16 destination buffer.
/// </summary>
/// <param name="destination">The buffer to which to write this value as UTF-16.</param>
/// <param name="charsWritten">
/// The number of <see cref="char"/>s written to <paramref name="destination"/>,
/// or 0 if the destination buffer is not large enough to contain the output.</param>
/// <returns>True if the value was written to the buffer; otherwise, false.</returns>
/// <remarks>