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
|
{* UltraStar Deluxe - Karaoke Game
*
* UltraStar Deluxe is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*
* $URL$
* $Id$
*}
// Auto
// try to match the w3c regex and decode as unicode on match and as fallback if not match
// (copied from http://www.w3.org/International/questions/qa-forms-utf-8.en.php)
//
// m/\A(
// [\x09\x0A\x0D\x20-\x7E] # ASCII
// | [\xC2-\xDF][\x80-\xBF] # non-overlong 2-byte
// | \xE0[\xA0-\xBF][\x80-\xBF] # excluding overlongs
// | [\xE1-\xEC\xEE\xEF][\x80-\xBF]{2} # straight 3-byte
// | \xED[\x80-\x9F][\x80-\xBF] # excluding surrogates
// | \xF0[\x90-\xBF][\x80-\xBF]{2} # planes 1-3
// | [\xF1-\xF3][\x80-\xBF]{3} # planes 4-15
// | \xF4[\x80-\x8F][\x80-\xBF]{2} # plane 16
// )*\z/x
type
TEncoderAuto = class(TEncoder)
public
function GetName(): AnsiString; override;
function Encode(const InStr: UCS4String; out OutStr: AnsiString): boolean; override;
function Decode(const InStr: AnsiString; out OutStr: UCS4String): boolean; override;
constructor Create(const UTF8Encoder, FallbackEncoder: IEncoder);
private
FallbackEncoder: IEncoder;
UTF8Encoder: IEncoder;
Regex: PPCRE;
RegexExtra: PPCREExtra;
end;
function PCREGetMem(Size: SizeInt): Pointer; cdecl;
begin
GetMem(Result, Size);
end;
procedure PCREFreeMem(P: Pointer); cdecl;
begin
FreeMem(P);
end;
// NOTICE: Log.LogError/ConsoleWriteLn/DebugWriteLn are initialized yet
procedure ShowError(const msg: string);
begin
{$IFDEF CONSOLE}
WriteLn('ERROR: ', msg);
{$ENDIF}
end;
constructor TEncoderAuto.Create(const UTF8Encoder, FallbackEncoder: IEncoder);
var
Error: PChar;
ErrorOffset: Integer;
begin
inherited Create();
self.FallbackEncoder := FallbackEncoder;
self.UTF8Encoder := UTF8Encoder;
// Load and initialize PCRE Library
if LoadPCRE() then
begin
// compile regex
self.Regex := pcre_compile('\A([\x09\x0A\x0D\x20-\x7E]|[\xC2-\xDF][\x80-\xBF]|\xE0[\xA0-\xBF][\x80-\xBF]|[\xE1-\xEC\xEE\xEF][\x80-\xBF]{2}|\xED[\x80-\x9F][\x80-\xBF]|\xF0[\x90-\xBF][\x80-\xBF]{2}|[\xF1-\xF3][\x80-\xBF]{3}|\xF4[\x80-\x8F][\x80-\xBF]{2})*\z', 0, @Error, @ErrorOffset, nil);
if self.Regex = Nil then
begin
ShowError(Format('UTF8 Regex compilation failed: %s at %d', [Error, ErrorOffset]));
end
else
begin
// if compiled successfull, try to get more informations the speed up the matching
self.RegexExtra := pcre_study(self.Regex, 0, @Error);
if Error <> Nil then
begin
ShowError('UTF8 Regex study failed: ' + Error);
end;
end;
end
else
begin
ShowError('pcre not loaded. utf-8 autodetection will not work.');
end;
end;
function TEncoderAuto.GetName(): AnsiString;
begin
Result := 'Auto';
end;
function TEncoderAuto.Decode(const InStr: AnsiString; out OutStr: UCS4String): boolean;
var
RegexResults: Integer;
begin
if (self.Regex <> Nil) then
begin
RegexResults := pcre_exec(Regex, RegexExtra, PChar(InStr), Length(InStr), 0, 0, Nil, 0);
if RegexResults >= 0 then
begin
Result := UTF8Encoder.Decode(InStr, OutStr);
Exit;
end;
end;
Result := FallbackEncoder.Decode(InStr, OutStr);
end;
function TEncoderAuto.Encode(const InStr: UCS4String; out OutStr: AnsiString): boolean;
begin
Result := UTF8Encoder.Encode(InStr, OutStr);
end;
|