-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathJclStringConversions.pas
More file actions
3885 lines (3665 loc) · 119 KB
/
Copy pathJclStringConversions.pas
File metadata and controls
3885 lines (3665 loc) · 119 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
{**************************************************************************************************}
{ }
{ Project JEDI Code Library (JCL) }
{ }
{ The contents of this file are subject to the Mozilla Public License Version 1.1 (the "License"); }
{ you may not use this file except in compliance with the License. You may obtain a copy of the }
{ License at http://www.mozilla.org/MPL/ }
{ }
{ Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF }
{ ANY KIND, either express or implied. See the License for the specific language governing rights }
{ and limitations under the License. }
{ }
{ The Original Code is JclUnicode.pas. }
{ }
{ The Initial Developer of the Original Code is Mike Lischke (public att lischke-online dott de). }
{ Portions created by Mike Lischke are Copyright (C) 1999-2000 Mike Lischke. All Rights Reserved. }
{ }
{ Contributor(s): }
{ Marcel van Brakel }
{ Andreas Hausladen (ahuser) }
{ Mike Lischke }
{ Flier Lu (flier) }
{ Robert Marquardt (marquardt) }
{ Robert Rossmair (rrossmair) }
{ Olivier Sannier (obones) }
{ Matthias Thoma (mthoma) }
{ Petr Vones (pvones) }
{ Peter Schraut (http://www.console-dev.de) }
{ Florent Ouchet (outchy) }
{ }
{**************************************************************************************************}
{ }
{ String conversion routines }
{ }
{**************************************************************************************************}
{ }
{ Last modified: $Date:: $ }
{ Revision: $Rev:: $ }
{ Author: $Author:: $ }
{ }
{**************************************************************************************************}
unit JclStringConversions;
{$I jcl.inc}
interface
uses
{$IFDEF HAS_UNITSCOPE}
System.Classes,
{$ELSE ~HAS_UNITSCOPE}
Classes,
{$ENDIF ~HAS_UNITSCOPE}
{$IFDEF UNITVERSIONING}
JclUnitVersioning,
{$ENDIF UNITVERSIONING}
JclBase;
type
EJclStringConversionError = class(EJclError);
EJclUnexpectedEOSequenceError = class (EJclStringConversionError)
public
constructor Create;
end;
// conversion routines between Ansi, UTF-16, UCS-4 and UTF8 strings
// one shot conversion between PAnsiChar and PWideChar
procedure ExpandASCIIString(const Source: PAnsiChar; Target: PWideChar; Count: SizeInt);
// tpye of stream related functions
type
TJclStreamGetNextCharFunc = function(S: TStream; out Ch: UCS4): Boolean;
TJclStreamSkipCharsFunc = function(S: TStream; var NbSeq: SizeInt): Boolean;
TJclStreamSetNextCharFunc = function(S: TStream; Ch: UCS4): Boolean;
// iterative conversions
// UTF8GetNextChar = read next UTF8 sequence at StrPos
// if UNICODE_SILENT_FAILURE is defined, invalid sequences will be replaced by ReplacementCharacter
// otherwise StrPos is set to -1 on return to flag an error (invalid UTF8 sequence)
// StrPos will be incremented by the number of chars that were read
function UTF8GetNextChar(const S: TUTF8String; var StrPos: SizeInt): UCS4;
function UTF8GetNextBuffer(const S: TUTF8String; var StrPos: SizeInt; var Buffer: TUCS4Array; var Start: SizeInt; Count: SizeInt): SizeInt;
function UTF8GetNextCharFromStream(S: TStream; out Ch: UCS4): Boolean;
function UTF8GetNextBufferFromStream(S: TStream; var Buffer: TUCS4Array; var Start: SizeInt; Count: SizeInt): SizeInt;
// UTF8SkipChars = skip NbSeq UTF8 sequences starting from StrPos
// returns False if String is too small
// if UNICODE_SILENT_FAILURE is not defined StrPos is set to -1 on error (invalid UTF8 sequence)
// StrPos will be incremented by the number of chars that were skipped
// On return, NbSeq contains the number of UTF8 sequences that were skipped
function UTF8SkipChars(const S: TUTF8String; var StrPos: SizeInt; var NbSeq: SizeInt): Boolean;
function UTF8SkipCharsFromStream(S: TStream; var NbSeq: SizeInt): Boolean;
// UTF8SetNextChar = append an UTF8 sequence at StrPos
// returns False on error:
// - if an UCS4 character cannot be stored to an UTF-8 string:
// - if UNICODE_SILENT_FAILURE is defined, ReplacementCharacter is added
// - if UNICODE_SILENT_FAILURE is not defined, StrPos is set to -1
// - StrPos > -1 flags string being too small, callee did nothing, caller is responsible for allocating space
// StrPos will be incremented by the number of chars that were written
function UTF8SetNextChar(var S: TUTF8String; var StrPos: SizeInt; Ch: UCS4): Boolean;
function UTF8SetNextBuffer(var S: TUTF8String; var StrPos: SizeInt; const Buffer: TUCS4Array; var Start: SizeInt; Count: SizeInt): SizeInt;
function UTF8SetNextCharToStream(S: TStream; Ch: UCS4): Boolean;
function UTF8SetNextBufferToStream(S: TStream; const Buffer: TUCS4Array; var Start: SizeInt; Count: SizeInt): SizeInt;
// UTF16GetNextChar = read next UTF16 sequence at StrPos
// if UNICODE_SILENT_FAILURE is defined, invalid sequences will be replaced by ReplacementCharacter
// otherwise StrPos is set to -1 on return to flag an error (invalid UTF16 sequence)
// StrPos will be incremented by the number of chars that were read
function UTF16GetNextChar(const S: TUTF16String; var StrPos: SizeInt): UCS4; overload;
function UTF16GetNextBuffer(const S: TUTF16String; var StrPos: SizeInt; var Buffer: TUCS4Array; var Start: SizeInt; Count: SizeInt): SizeInt; overload;
{$IFDEF SUPPORTS_UNICODE_STRING}
function UTF16GetNextChar(const S: WideString; var StrPos: SizeInt): UCS4; overload;
function UTF16GetNextBuffer(const S: WideString; var StrPos: SizeInt; var Buffer: TUCS4Array; var Start: SizeInt; Count: SizeInt): SizeInt; overload;
{$ENDIF SUPPORTS_UNICODE_STRING}
function UTF16GetNextCharFromStream(S: TStream; out Ch: UCS4): Boolean;
function UTF16GetNextBufferFromStream(S: TStream; var Buffer: TUCS4Array; var Start: SizeInt; Count: SizeInt): SizeInt;
// UTF16GetPreviousChar = read previous UTF16 sequence starting at StrPos-1
// if UNICODE_SILENT_FAILURE is defined, invalid sequences will be replaced by ReplacementCharacter
// otherwise StrPos is set to -1 on return to flag an error (invalid UTF16 sequence)
// StrPos will be decremented by the number of chars that were read
function UTF16GetPreviousChar(const S: TUTF16String; var StrPos: SizeInt): UCS4; overload;
{$IFDEF SUPPORTS_UNICODE_STRING}
function UTF16GetPreviousChar(const S: WideString; var StrPos: SizeInt): UCS4; overload;
{$ENDIF SUPPORTS_UNICODE_STRING}
// UTF16SkipChars = skip NbSeq UTF16 sequences starting from StrPos
// returns False if String is too small
// if UNICODE_SILENT_FAILURE is not defined StrPos is set to -1 on error (invalid UTF16 sequence)
// StrPos will be incremented by the number of chars that were skipped
// On return, NbChar contains the number of UTF16 sequences that were skipped
function UTF16SkipChars(const S: TUTF16String; var StrPos: SizeInt; var NbSeq: SizeInt): Boolean; overload;
{$IFDEF SUPPORTS_UNICODE_STRING}
function UTF16SkipChars(const S: WideString; var StrPos: SizeInt; var NbSeq: SizeInt): Boolean; overload;
{$ENDIF SUPPORTS_UNICODE_STRING}
function UTF16SkipCharsFromStream(S: TStream; var NbSeq: SizeInt): Boolean;
// UTF16SetNextChar = append an UTF16 sequence at StrPos
// returns False on error:
// - if an UCS4 character cannot be stored to an UTF-16 string:
// - if UNICODE_SILENT_FAILURE is defined, ReplacementCharacter is added
// - if UNICODE_SILENT_FAILURE is not defined, StrPos is set to -1
// - StrPos > -1 flags string being too small, callee did nothing and caller is responsible for allocating space
// StrPos will be incremented by the number of chars that were written
function UTF16SetNextChar(var S: TUTF16String; var StrPos: SizeInt; Ch: UCS4): Boolean; overload;
function UTF16SetNextBuffer(var S: TUTF16String; var StrPos: SizeInt; const Buffer: TUCS4Array; var Start: SizeInt; Count: SizeInt): SizeInt; overload;
{$IFDEF SUPPORTS_UNICODE_STRING}
function UTF16SetNextChar(var S: WideString; var StrPos: SizeInt; Ch: UCS4): Boolean; overload;
function UTF16SetNextBuffer(var S: WideString; var StrPos: SizeInt; const Buffer: TUCS4Array; var Start: SizeInt; Count: SizeInt): SizeInt; overload;
{$ENDIF SUPPORTS_UNICODE_STRING}
function UTF16SetNextCharToStream(S: TStream; Ch: UCS4): Boolean;
function UTF16SetNextBufferToStream(S: TStream; const Buffer: TUCS4Array; var Start: SizeInt; Count: SizeInt): SizeInt;
// AnsiGetNextChar = read next character at StrPos
// StrPos will be incremented by the number of chars that were read (1)
function AnsiGetNextChar(const S: AnsiString; var StrPos: SizeInt): UCS4; overload;
function AnsiGetNextBuffer(const S: AnsiString; var StrPos: SizeInt; var Buffer: TUCS4Array; var Start: SizeInt; Count: SizeInt): SizeInt; overload;
function AnsiGetNextCharFromStream(S: TStream; out Ch: UCS4): Boolean; overload;
function AnsiGetNextBufferFromStream(S: TStream; var Buffer: TUCS4Array; var Start: SizeInt; Count: SizeInt): SizeInt; overload;
// same as AnsiGetNextChar* with custom codepage
function AnsiGetNextChar(const S: AnsiString; CodePage: Word; var StrPos: SizeInt): UCS4; overload;
function AnsiGetNextBuffer(const S: AnsiString; CodePage: Word; var StrPos: SizeInt; var Buffer: TUCS4Array; var Start: SizeInt; Count: SizeInt): SizeInt; overload;
function AnsiGetNextCharFromStream(S: TStream; CodePage: Word; out Ch: UCS4): Boolean; overload;
function AnsiGetNextBufferFromStream(S: TStream; CodePage: Word; var Buffer: TUCS4Array; var Start: SizeInt; Count: SizeInt): SizeInt; overload;
// AnsiSkipChars = skip NbSeq characters starting from StrPos
// returns False if String is too small
// StrPos will be incremented by the number of chars that were skipped
// On return, NbChar contains the number of UTF16 sequences that were skipped
function AnsiSkipChars(const S: AnsiString; var StrPos: SizeInt; var NbSeq: SizeInt): Boolean;
function AnsiSkipCharsFromStream(S: TStream; var NbSeq: SizeInt): Boolean;
// AnsiSetNextChar = append a character at StrPos
// returns False on error:
// - if an UCS4 character cannot be stored to an ansi string:
// - if UNICODE_SILENT_FAILURE is defined, ReplacementCharacter is added
// - if UNICODE_SILENT_FAILURE is not defined, StrPos is set to -1
// - StrPos > -1 flags string being too small, callee did nothing and caller is responsible for allocating space
// StrPos will be incremented by the number of chars that were written (1)
function AnsiSetNextChar(var S: AnsiString; var StrPos: SizeInt; Ch: UCS4): Boolean; overload;
function AnsiSetNextBuffer(var S: AnsiString; var StrPos: SizeInt; const Buffer: TUCS4Array; var Start: SizeInt; Count: SizeInt): SizeInt; overload;
function AnsiSetNextCharToStream(S: TStream; Ch: UCS4): Boolean; overload;
function AnsiSetNextBufferToStream(S: TStream; const Buffer: TUCS4Array; var Start: SizeInt; Count: SizeInt): SizeInt; overload;
// same as AnsiSetNextChar* with custom codepage
function AnsiSetNextChar(var S: AnsiString; CodePage: Word; var StrPos: SizeInt; Ch: UCS4): Boolean; overload;
function AnsiSetNextBuffer(var S: AnsiString; CodePage: Word; var StrPos: SizeInt; const Buffer: TUCS4Array; var Start: SizeInt; Count: SizeInt): SizeInt; overload;
function AnsiSetNextCharToStream(S: TStream; CodePage: Word; Ch: UCS4): Boolean; overload;
function AnsiSetNextBufferToStream(S: TStream; CodePage: Word; const Buffer: TUCS4Array; var Start: SizeInt; Count: SizeInt): SizeInt; overload;
// StringGetNextChar = read next character/sequence at StrPos
// if UNICODE_SILENT_FAILURE is defined, invalid sequences will be replaced by ReplacementCharacter
// otherwise StrPos is set to -1 on return to flag an error (invalid UTF16 sequence for WideString)
// StrPos will be incremented by the number of chars that were read
function StringGetNextChar(const S: string; var StrPos: SizeInt): UCS4; {$IFDEF SUPPORTS_INLINE} inline; {$ENDIF}
function StringGetNextBuffer(const S: string; var StrPos: SizeInt; var Buffer: TUCS4Array; var Start: SizeInt; Count: SizeInt): SizeInt; {$IFDEF SUPPORTS_INLINE} inline; {$ENDIF}
// StringSkipChars = skip NbSeq characters/sequences starting from StrPos
// returns False if String is too small
// if UNICODE_SILENT_FAILURE is not defined StrPos is set to -1 on error (invalid UTF16 sequence for WideString)
// StrPos will be incremented by the number of chars that were skipped
// On return, NbChar contains the number of UTF16 sequences that were skipped
function StringSkipChars(const S: string; var StrPos: SizeInt; var NbSeq: SizeInt): Boolean; {$IFDEF SUPPORTS_INLINE} inline; {$ENDIF}
// StringSetNextChar = append a character/sequence at StrPos
// returns False on error:
// - if an UCS4 character cannot be stored to a string:
// - if UNICODE_SILENT_FAILURE is defined, ReplacementCharacter is added
// - if UNICODE_SILENT_FAILURE is not defined, StrPos is set to -1
// - StrPos > -1 flags string being too small, callee did nothing and caller is responsible for allocating space
// StrPos will be incremented by the number of chars that were written
function StringSetNextChar(var S: string; var StrPos: SizeInt; Ch: UCS4): Boolean; {$IFDEF SUPPORTS_INLINE} inline; {$ENDIF}
function StringSetNextBuffer(var S: string; var StrPos: SizeInt; const Buffer: TUCS4Array; var Start: SizeInt; Count: SizeInt): SizeInt; {$IFDEF SUPPORTS_INLINE} inline; {$ENDIF}
// one shot conversions between WideString and others
function WideStringToUTF8(const S: WideString): TUTF8String; {$IFDEF SUPPORTS_INLINE} inline; {$ENDIF SUPPORTS_INLINE}
function UTF8ToWideString(const S: TUTF8String): WideString; {$IFDEF SUPPORTS_INLINE} inline; {$ENDIF SUPPORTS_INLINE}
function WideStringToUCS4(const S: WideString): TUCS4Array; {$IFDEF SUPPORTS_INLINE} inline; {$ENDIF SUPPORTS_INLINE}
function UCS4ToWideString(const S: TUCS4Array): WideString; {$IFDEF SUPPORTS_INLINE} inline; {$ENDIF SUPPORTS_INLINE}
// one shot conversions between AnsiString and others
function AnsiStringToUTF8(const S: AnsiString): TUTF8String; {$IFDEF SUPPORTS_INLINE} inline; {$ENDIF SUPPORTS_INLINE}
function UTF8ToAnsiString(const S: TUTF8String): AnsiString; {$IFDEF SUPPORTS_INLINE} inline; {$ENDIF SUPPORTS_INLINE}
function AnsiStringToUTF16(const S: AnsiString): TUTF16String; {$IFDEF SUPPORTS_INLINE} inline; {$ENDIF SUPPORTS_INLINE}
function UTF16ToAnsiString(const S: TUTF16String): AnsiString; {$IFDEF SUPPORTS_INLINE} inline; {$ENDIF SUPPORTS_INLINE}
function AnsiStringToUCS4(const S: AnsiString): TUCS4Array; {$IFDEF SUPPORTS_INLINE} inline; {$ENDIF SUPPORTS_INLINE}
function UCS4ToAnsiString(const S: TUCS4Array): AnsiString; {$IFDEF SUPPORTS_INLINE} inline; {$ENDIF SUPPORTS_INLINE}
// one shot conversions between string and others
function StringToUTF8(const S: string): TUTF8String; {$IFDEF SUPPORTS_INLINE} inline; {$ENDIF SUPPORTS_INLINE}
function UTF8ToString(const S: TUTF8String): string; {$IFDEF SUPPORTS_INLINE} inline; {$ENDIF SUPPORTS_INLINE}
function StringToUTF16(const S: string): TUTF16String; {$IFDEF SUPPORTS_INLINE} inline; {$ENDIF SUPPORTS_INLINE}
function UTF16ToString(const S: TUTF16String): string; {$IFDEF SUPPORTS_INLINE} inline; {$ENDIF SUPPORTS_INLINE}
function StringToUCS4(const S: string): TUCS4Array; {$IFDEF SUPPORTS_INLINE} inline; {$ENDIF SUPPORTS_INLINE}
function UCS4ToString(const S: TUCS4Array): string; {$IFDEF SUPPORTS_INLINE} inline; {$ENDIF SUPPORTS_INLINE}
function TryStringToUTF8(const S: string; out D: TUTF8String): Boolean; {$IFDEF SUPPORTS_INLINE} inline; {$ENDIF SUPPORTS_INLINE}
function TryUTF8ToString(const S: TUTF8String; out D: string): Boolean; {$IFDEF SUPPORTS_INLINE} inline; {$ENDIF SUPPORTS_INLINE}
function TryStringToUTF16(const S: string; out D: TUTF16String): Boolean; {$IFDEF SUPPORTS_INLINE} inline; {$ENDIF SUPPORTS_INLINE}
function TryUTF16ToString(const S: TUTF16String; out D: string): Boolean; {$IFDEF SUPPORTS_INLINE} inline; {$ENDIF SUPPORTS_INLINE}
function TryStringToUCS4(const S: string; out D: TUCS4Array): Boolean; {$IFDEF SUPPORTS_INLINE} inline; {$ENDIF SUPPORTS_INLINE}
function TryUCS4ToString(const S: TUCS4Array; out D: string): Boolean; {$IFDEF SUPPORTS_INLINE} inline; {$ENDIF SUPPORTS_INLINE}
function UTF8ToUTF16(const S: TUTF8String): TUTF16String;
function UTF16ToUTF8(const S: TUTF16String): TUTF8String;
function UTF8ToUCS4(const S: TUTF8String): TUCS4Array;
function UCS4ToUTF8(const S: TUCS4Array): TUTF8String;
function UTF16ToUCS4(const S: TUTF16String): TUCS4Array;
function UCS4ToUTF16(const S: TUCS4Array): TUTF16String;
function TryUTF8ToUTF16(const S: TUTF8String; out D: TUTF16String): Boolean;
function TryUTF16ToUTF8(const S: TUTF16String; out D: TUTF8String): Boolean;
function TryUTF8ToUCS4(const S: TUTF8String; out D: TUCS4Array): Boolean;
function TryUCS4ToUTF8(const S: TUCS4Array; out D: TUTF8String): Boolean;
function TryUTF16ToUCS4(const S: TUTF16String; out D: TUCS4Array): Boolean;
function TryUCS4ToUTF16(const S: TUCS4Array; out D: TUTF16String): Boolean;
// indexed conversions
function UTF8CharCount(const S: TUTF8String): SizeInt;
function UTF16CharCount(const S: TUTF16String): SizeInt;
function UCS2CharCount(const S: TUCS2String): SizeInt;
function UCS4CharCount(const S: TUCS4Array): SizeInt;
// returns False if string is too small
// if UNICODE_SILENT_FAILURE is not defined and an invalid UTFX sequence is detected, an exception is raised
// returns True on success and Value contains UCS4 character that was read
function GetUCS4CharAt(const UTF8Str: TUTF8String; Index: SizeInt; out Value: UCS4): Boolean; overload;
function GetUCS4CharAt(const WideStr: TUTF16String; Index: SizeInt; out Value: UCS4; IsUTF16: Boolean = True): Boolean; overload;
function GetUCS4CharAt(const UCS4Str: TUCS4Array; Index: SizeInt; out Value: UCS4): Boolean; overload;
function UCS4ToAnsiChar(Value: UCS4): AnsiChar;
function UCS4ToWideChar(Value: UCS4): WideChar;
function UCS4ToChar(Value: UCS4): Char; {$IFDEF SUPPORTS_INLINE} inline; {$ENDIF SUPPORTS_INLINE}
function AnsiCharToUCS4(Value: AnsiChar): UCS4;
function WideCharToUCS4(Value: WideChar): UCS4;
function CharToUCS4(Value: Char): UCS4; {$IFDEF SUPPORTS_INLINE} inline; {$ENDIF SUPPORTS_INLINE}
{$IFDEF UNITVERSIONING}
const
UnitVersioning: TUnitVersionInfo = (
RCSfile: '$URL$';
Revision: '$Revision$';
Date: '$Date$';
LogPath: 'JCL\source\common';
Extra: '';
Data: nil
);
{$ENDIF UNITVERSIONING}
implementation
uses
{$IFDEF HAS_UNITSCOPE}
{$IFDEF MSWINDOWS}
Winapi.Windows,
{$ENDIF MSWINDOWS}
{$ELSE ~HAS_UNITSCOPE}
{$IFDEF MSWINDOWS}
Windows,
{$ENDIF MSWINDOWS}
{$ENDIF ~HAS_UNITSCOPE}
JclResources;
const MB_ERR_INVALID_CHARS = 8;
constructor EJclUnexpectedEOSequenceError.Create;
begin
inherited CreateRes(@RsEUnexpectedEOSeq);
end;
function StreamReadByte(S: TStream; out B: Byte): Boolean; {$IFDEF SUPPORTS_INLINE} inline; {$ENDIF}
begin
B := 0;
Result := S.Read(B, SizeOf(B)) = SizeOf(B);
end;
function StreamWriteByte(S: TStream; B: Byte): Boolean; {$IFDEF SUPPORTS_INLINE} inline; {$ENDIF}
begin
Result := S.Write(B, SizeOf(B)) = SizeOf(B);
end;
function StreamReadWord(S: TStream; out W: Word): Boolean; {$IFDEF SUPPORTS_INLINE} inline; {$ENDIF}
begin
W := 0;
Result := S.Read(W, SizeOf(W)) = SizeOf(W);
end;
function StreamWriteWord(S: TStream; W: Word): Boolean; {$IFDEF SUPPORTS_INLINE} inline; {$ENDIF}
begin
Result := S.Write(W, SizeOf(W)) = SizeOf(W);
end;
//----------------- conversion routines ------------------------------------------------------------
// Converts the given source ANSI string into a Unicode string by expanding each character
// from one byte to two bytes.
// EAX contains Source, EDX contains Target, ECX contains Count
procedure ExpandASCIIString(const Source: PAnsiChar; Target: PWideChar; Count: SizeInt);
asm
{$IFDEF CPU32}
// --> EAX Source
// EDX Target
// ECX Count
JECXZ @@Finish // go out if there is nothing to do (ECX = 0)
PUSH ESI
MOV ESI, EAX
XOR EAX, EAX
@@1:
MOV AL, [ESI]
INC ESI
MOV [EDX], AX
ADD EDX, 2
DEC ECX
JNZ @@1
POP ESI
{$ENDIF CPU32}
{$IFDEF CPU64}
// --> RCX Source
// RDX Target
// R8 Count
DEC R8 // go out if there is nothing to do (R8 = 0)
JS @@Finish
@@1:
MOVZX AX, BYTE PTR [RCX]
INC RCX
MOV WORD PTR [RDX], AX
ADD RDX, 2
@@2:
DEC R8
JNS @@1
{$ENDIF CPU64}
@@Finish:
end;
const
HalfShift: Integer = 10;
HalfBase: UCS4 = $0010000;
HalfMask: UCS4 = $3FF;
procedure FlagInvalidSequence(var StrPos: SizeInt; Increment: SizeInt; out Ch: UCS4); overload;
begin
{$IFDEF UNICODE_SILENT_FAILURE}
Ch := UCS4ReplacementCharacter;
Inc(StrPos, Increment);
{$ELSE ~UNICODE_SILENT_FAILURE}
StrPos := -1;
{$ENDIF ~UNICODE_SILENT_FAILURE}
end;
procedure FlagInvalidSequence(var StrPos: SizeInt; Increment: SizeInt); overload;
begin
{$IFDEF UNICODE_SILENT_FAILURE}
Inc(StrPos, Increment);
{$ELSE ~UNICODE_SILENT_FAILURE}
StrPos := -1;
{$ENDIF ~UNICODE_SILENT_FAILURE}
end;
procedure FlagInvalidSequence(out Ch: UCS4); overload;
begin
{$IFDEF UNICODE_SILENT_FAILURE}
Ch := UCS4ReplacementCharacter;
{$ELSE ~UNICODE_SILENT_FAILURE}
raise EJclUnexpectedEOSequenceError.Create;
{$ENDIF ~UNICODE_SILENT_FAILURE}
end;
procedure FlagInvalidSequence; overload;
begin
{$IFNDEF UNICODE_SILENT_FAILURE}
raise EJclUnexpectedEOSequenceError.Create;
{$ENDIF ~UNICODE_SILENT_FAILURE}
end;
// if UNICODE_SILENT_FAILURE is defined, invalid sequences will be replaced by ReplacementCharacter
// otherwise StrPos is set to -1 on return to flag an error (invalid UTF8 sequence)
// StrPos will be incremented by the number of chars that were read
function UTF8GetNextChar(const S: TUTF8String; var StrPos: SizeInt): UCS4;
var
StrLength: SizeInt;
Ch: UCS4;
ReadSuccess: Boolean;
begin
StrLength := Length(S);
ReadSuccess := True;
if (StrPos <= StrLength) and (StrPos > 0) then
begin
Result := UCS4(S[StrPos]);
case Result of
$00..$7F:
// 1 byte to read
Inc(StrPos);
$C0..$DF:
begin
// 2 bytes to read
if StrPos < StrLength then
begin
Ch := UCS4(S[StrPos + 1]);
if (Ch and $C0) = $80 then
begin
Result := ((Result and $1F) shl 6) or (Ch and $3F);
Inc(StrPos, 2);
end
else
FlagInvalidSequence(StrPos, 1, Result);
end
else
ReadSuccess := False;
end;
$E0..$EF:
begin
// 3 bytes to read
if (StrPos + 1) < StrLength then
begin
Ch := UCS4(S[StrPos + 1]);
if (Ch and $C0) = $80 then
begin
Result := ((Result and $0F) shl 12) or ((Ch and $3F) shl 6);
Ch := UCS4(S[StrPos + 2]);
if (Ch and $C0) = $80 then
begin
Result := Result or (Ch and $3F);
Inc(StrPos, 3);
end
else
FlagInvalidSequence(StrPos, 2, Result);
end
else
FlagInvalidSequence(StrPos, 1, Result);
end
else
ReadSuccess := False;
end;
$F0..$F7:
begin
// 4 bytes to read
if (StrPos + 2) < StrLength then
begin
Ch := UCS4(S[StrPos + 1]);
if (Ch and $C0) = $80 then
begin
Result := ((Result and $07) shl 18) or ((Ch and $3F) shl 12);
Ch := UCS4(S[StrPos + 2]);
if (Ch and $C0) = $80 then
begin
Result := Result or ((Ch and $3F) shl 6);
Ch := UCS4(S[StrPos + 3]);
if (Ch and $C0) = $80 then
begin
Result := Result or (Ch and $3F);
Inc(StrPos, 4);
end
else
FlagInvalidSequence(StrPos, 3, Result);
end
else
FlagInvalidSequence(StrPos, 2, Result);
end
else
FlagInvalidSequence(StrPos, 1, Result);
end
else
ReadSuccess := False;
end;
$F8..$FB:
begin
// 5 bytes to read
if (StrPos + 3) < StrLength then
begin
Ch := UCS4(S[StrPos + 1]);
if (Ch and $C0) = $80 then
begin
Result := ((Result and $03) shl 24) or ((Ch and $3F) shl 18);
Ch := UCS4(S[StrPos + 2]);
if (Ch and $C0) = $80 then
begin
Result := Result or ((Ch and $3F) shl 12);
Ch := UCS4(S[StrPos + 3]);
if (Ch and $C0) = $80 then
begin
Result := Result or ((Ch and $3F) shl 6);
Ch := UCS4(S[StrPos + 4]);
if (Ch and $C0) = $80 then
begin
Result := Result or (Ch and $3F);
Inc(StrPos, 5);
end
else
FlagInvalidSequence(StrPos, 4, Result);
end
else
FlagInvalidSequence(StrPos, 3, Result);
end
else
FlagInvalidSequence(StrPos, 2, Result);
end
else
FlagInvalidSequence(StrPos, 1, Result);
end
else
ReadSuccess := False;
end;
$FC..$FD:
begin
// 6 bytes to read
if (StrPos + 4) < StrLength then
begin
Ch := UCS4(S[StrPos + 1]);
if (Ch and $C0) = $80 then
begin
Result := ((Result and $01) shl 30) or ((Ch and $3F) shl 24);
Ch := UCS4(S[StrPos + 2]);
if (Ch and $C0) = $80 then
begin
Result := Result or ((Ch and $3F) shl 18);
Ch := UCS4(S[StrPos + 3]);
if (Ch and $C0) = $80 then
begin
Result := Result or ((Ch and $3F) shl 12);
Ch := UCS4(S[StrPos + 4]);
if (Ch and $C0) = $80 then
begin
Result := Result or ((Ch and $3F) shl 6);
Ch := UCS4(S[StrPos + 5]);
if (Ch and $C0) = $80 then
begin
Result := Result or (Ch and $3F);
Inc(StrPos, 6);
end
else
FlagInvalidSequence(StrPos, 5, Result);
end
else
FlagInvalidSequence(StrPos, 4, Result);
end
else
FlagInvalidSequence(StrPos, 3, Result);
end
else
FlagInvalidSequence(StrPos, 2, Result);
end
else
FlagInvalidSequence(StrPos, 1, Result);
end
else
ReadSuccess := False;
end;
else
FlagInvalidSequence(StrPos, 1, Result);
end;
if not ReadSuccess then
FlagInvalidSequence(StrPos, 1, Result);
end
else
begin
// StrPos > StrLength
Result := 0;
FlagInvalidSequence(StrPos, 0, Result);
end;
end;
function UTF8GetNextBuffer(const S: TUTF8String; var StrPos: SizeInt; var Buffer: TUCS4Array; var Start: SizeInt; Count: SizeInt): SizeInt;
var
B: Byte;
Ch: UCS4;
ReadSuccess: Boolean;
StrLength: SizeInt;
begin
StrLength := Length(S);
Result := 0;
ReadSuccess := True;
while (StrPos <= StrLength) and (StrPos > 0) and (Count > 0) do
begin
Ch := UCS4(S[StrPos]);
case Ch of
$00..$7F:
// 1 byte to read
Inc(StrPos);
$C0..$DF:
begin
// 2 bytes to read
if StrPos < StrLength then
begin
B := Ord(S[StrPos + 1]);
if (B and $C0) = $80 then
Ch := ((Ch and $1F) shl 6) or (B and $3F)
else
FlagInvalidSequence(StrPos, 1, Ch);
end
else
ReadSuccess := False;
end;
$E0..$EF:
begin
// 3 bytes to read
if (StrPos + 1) < StrLength then
begin
B := Ord(S[StrPos + 1]);
if (B and $C0) = $80 then
begin
Ch := ((Ch and $0F) shl 12) or ((B and $3F) shl 6);
B := Ord(S[StrPos + 2]);
if (B and $C0) = $80 then
Ch := Ch or (B and $3F)
else
FlagInvalidSequence(StrPos, 2, Ch);
end
else
FlagInvalidSequence(StrPos, 1, Ch);
end
else
ReadSuccess := False;
end;
$F0..$F7:
begin
// 4 bytes to read
if (StrPos + 2) < StrLength then
begin
B := Ord(S[StrPos + 1]);
if (B and $C0) = $80 then
begin
Ch := ((Ch and $07) shl 18) or ((B and $3F) shl 12);
B := Ord(S[StrPos + 2]);
if (B and $C0) = $80 then
begin
Ch := Ch or ((B and $3F) shl 6);
B := Ord(S[StrPos + 3]);
if (B and $C0) = $80 then
Ch := Ch or (B and $3F)
else
FlagInvalidSequence(StrPos, 3, Ch);
end
else
FlagInvalidSequence(StrPos, 2, Ch);
end
else
FlagInvalidSequence(StrPos, 1, Ch);
end
else
ReadSuccess := False;
end;
$F8..$FB:
begin
// 5 bytes to read
if (StrPos + 3) < StrLength then
begin
B := Ord(S[StrPos + 1]);
if (B and $C0) = $80 then
begin
Ch := ((Ch and $03) shl 24) or ((B and $3F) shl 18);
B := Ord(S[StrPos + 2]);
if (B and $C0) = $80 then
begin
Ch := Ch or ((B and $3F) shl 12);
B := Ord(S[StrPos + 3]);
if (B and $C0) = $80 then
begin
Ch := Ch or ((B and $3F) shl 6);
B := Ord(S[StrPos + 4]);
if (B and $C0) = $80 then
Ch := Ch or (B and $3F)
else
FlagInvalidSequence(StrPos, 4, Ch);
end
else
FlagInvalidSequence(StrPos, 3, Ch);
end
else
FlagInvalidSequence(StrPos, 2, Ch);
end
else
FlagInvalidSequence(StrPos, 1, Ch);
end
else
ReadSuccess := False;
end;
$FC..$FD:
begin
// 6 bytes to read
if (StrPos + 4) < StrLength then
begin
B := Ord(S[StrPos + 1]);
if (B and $C0) = $80 then
begin
Ch := ((Ch and $01) shl 30) or ((B and $3F) shl 24);
B := Ord(S[StrPos + 2]);
if (B and $C0) = $80 then
begin
Ch := Ch or ((B and $3F) shl 18);
B := Ord(S[StrPos + 3]);
if (B and $C0) = $80 then
begin
Ch := Ch or ((B and $3F) shl 12);
B := Ord(S[StrPos + 4]);
if (B and $C0) = $80 then
begin
Ch := Ch or ((B and $3F) shl 6);
B := Ord(S[StrPos + 5]);
if (B and $C0) = $80 then
Ch := Ch or (B and $3F)
else
FlagInvalidSequence(StrPos, 5, Ch);
end
else
FlagInvalidSequence(StrPos, 4, Ch);
end
else
FlagInvalidSequence(StrPos, 3, Ch);
end
else
FlagInvalidSequence(StrPos, 2, Ch);
end
else
FlagInvalidSequence(StrPos, 1, Ch);
end
else
ReadSuccess := False;
end
else
FlagInvalidSequence(StrPos, 1, Ch);
end;
if not ReadSuccess then
FlagInvalidSequence(StrPos, 1, Ch);
Buffer[Start] := Ch;
Inc(Start);
Inc(Result);
Dec(Count);
end;
end;
function UTF8GetNextCharFromStream(S: TStream; out Ch: UCS4): Boolean;
var
B: Byte;
begin
Result := StreamReadByte(S,B);
if Result then
begin
Ch := UCS4(B);
case Ch of
$00..$7F: ;
// 1 byte to read
// nothing to do
$C0..$DF:
begin
// 2 bytes to read
Result := StreamReadByte(S,B);
if Result then
begin
if (B and $C0) = $80 then
Ch := ((Ch and $1F) shl 6) or (B and $3F)
else
FlagInvalidSequence(Ch);
end;
end;
$E0..$EF:
begin
// 3 bytes to read
Result := StreamReadByte(S,B);
if Result then
begin
if (B and $C0) = $80 then
begin
Ch := ((Ch and $0F) shl 12) or ((B and $3F) shl 6);
Result := StreamReadByte(S,B);
if Result then
begin
if (B and $C0) = $80 then
Ch := Ch or (B and $3F)
else
FlagInvalidSequence(Ch);
end;
end
else
FlagInvalidSequence(Ch);
end;
end;
$F0..$F7:
begin
// 4 bytes to read
Result := StreamReadByte(S,B);
if Result then
begin
if (B and $C0) = $80 then
begin
Ch := ((Ch and $07) shl 18) or ((B and $3F) shl 12);
Result := StreamReadByte(S,B);
if Result then
begin
if (B and $C0) = $80 then
begin
Ch := Ch or ((B and $3F) shl 6);
Result := StreamReadByte(S,B);
if Result then
begin
if (B and $C0) = $80 then
Ch := Ch or (B and $3F)
else
FlagInvalidSequence(Ch);
end;
end
else
FlagInvalidSequence(Ch);
end;
end
else
FlagInvalidSequence(Ch);
end;
end;
$F8..$FB:
begin
// 5 bytes to read
Result := StreamReadByte(S,B);
if Result then
begin
if (B and $C0) = $80 then
begin
Ch := ((Ch and $03) shl 24) or ((B and $3F) shl 18);
Result := StreamReadByte(S,B);
if Result then
begin
if (B and $C0) = $80 then
begin
Ch := Ch or ((B and $3F) shl 12);
Result := StreamReadByte(S,B);
if Result then
begin
if (B and $C0) = $80 then
begin
Ch := Ch or ((B and $3F) shl 6);
Result := StreamReadByte(S,B);
if Result then
begin
if (B and $C0) = $80 then
Ch := Ch or (B and $3F)
else
FlagInvalidSequence(Ch);
end;
end
else
FlagInvalidSequence(Ch);
end;
end
else
FlagInvalidSequence(Ch);
end;
end
else
FlagInvalidSequence(Ch);
end;
end;
$FC..$FD:
begin
// 6 bytes to read
Result := StreamReadByte(S,B);
if Result then
begin
if (B and $C0) = $80 then
begin
Ch := ((Ch and $01) shl 30) or ((B and $3F) shl 24);
Result := StreamReadByte(S,B);
if Result then
begin
if (B and $C0) = $80 then
begin
Ch := Ch or ((B and $3F) shl 18);
Result := StreamReadByte(S,B);
if Result then
begin
if (B and $C0) = $80 then
begin
Ch := Ch or ((B and $3F) shl 12);
Result := StreamReadByte(S,B);
if Result then
begin
if (B and $C0) = $80 then
begin
Ch := Ch or ((B and $3F) shl 6);
Result := StreamReadByte(S,B);
if Result then
begin
if (B and $C0) = $80 then
Ch := Ch or (B and $3F)
else
FlagInvalidSequence(Ch);
end;
end
else
FlagInvalidSequence(Ch);
end;
end
else
FlagInvalidSequence(Ch);
end;
end
else
FlagInvalidSequence(Ch);
end;
end
else
FlagInvalidSequence(Ch);
end;
end;
else
FlagInvalidSequence(Ch);
end;
end;
end;
function UTF8GetNextBufferFromStream(S: TStream; var Buffer: TUCS4Array; var Start: SizeInt; Count: SizeInt): SizeInt;
var
B: Byte;
Ch: UCS4;
ReadSuccess: Boolean;
begin
Result := 0;
ReadSuccess := True;
while ReadSuccess and (Count > 0) do
begin
if StreamReadByte(S,B) then
begin
Ch := UCS4(B);
case Ch of
$00..$7F: ;
// 1 byte to read
// nothing to do
$C0..$DF:
begin
// 2 bytes to read
if StreamReadByte(S,B) then
begin
if (B and $C0) = $80 then
Ch := ((Ch and $1F) shl 6) or (B and $3F)
else
FlagInvalidSequence(Ch);
end
else
ReadSuccess := False;
end;
$E0..$EF:
begin
// 3 bytes to read
if StreamReadByte(S,B) then
begin
if (B and $C0) = $80 then
begin
Ch := ((Ch and $0F) shl 12) or ((B and $3F) shl 6);