mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-13 05:59:27 +02:00
* Implemented Unicode string manager for Android. It uses ICU library libicuuc.so. Note: ICU on Android has limited number of code pages. So don't expect support for DOS code pages or other exotic code pages.
git-svn-id: branches/targetandroid@23382 -
This commit is contained in:
parent
7322164c0a
commit
9330507f8d
@ -25,68 +25,162 @@ procedure SetCWidestringManager;
|
|||||||
|
|
||||||
implementation
|
implementation
|
||||||
|
|
||||||
procedure Wide2AnsiMove(source:pwidechar; var dest:RawByteString; cp:TSystemCodePage; len:SizeInt);
|
uses dynlibs;
|
||||||
|
|
||||||
|
type
|
||||||
|
UErrorCode = SizeInt;
|
||||||
|
int32_t = longint;
|
||||||
|
uint32_t = longword;
|
||||||
|
PUConverter = pointer;
|
||||||
|
UBool = LongBool;
|
||||||
|
|
||||||
var
|
var
|
||||||
i : SizeInt;
|
hlibICU: TLibHandle;
|
||||||
hs : RawByteString;
|
ucnv_open: function (converterName: PAnsiChar; var pErrorCode: UErrorCode): PUConverter; cdecl;
|
||||||
|
ucnv_close: procedure (converter: PUConverter); cdecl;
|
||||||
|
ucnv_setSubstChars: procedure (converter: PUConverter; subChars: PAnsiChar; len: byte; var pErrorCode: UErrorCode); cdecl;
|
||||||
|
ucnv_fromUChars: function (cnv: PUConverter; dest: PAnsiChar; destCapacity: int32_t; src: PUnicodeChar; srcLength: int32_t; var pErrorCode: UErrorCode): int32_t; cdecl;
|
||||||
|
ucnv_toUChars: function (cnv: PUConverter; dest: PUnicodeChar; destCapacity: int32_t; src: PAnsiChar; srcLength: int32_t; var pErrorCode: UErrorCode): int32_t; cdecl;
|
||||||
|
u_strToUpper: function (dest: PUnicodeChar; destCapacity: int32_t; src: PUnicodeChar; srcLength: int32_t; locale: PAnsiChar; var pErrorCode: UErrorCode): int32_t; cdecl;
|
||||||
|
u_strToLower: function (dest: PUnicodeChar; destCapacity: int32_t; src: PUnicodeChar; srcLength: int32_t; locale: PAnsiChar; var pErrorCode: UErrorCode): int32_t; cdecl;
|
||||||
|
u_strCompare: function (s1: PUnicodeChar; length1: int32_t; s2: PUnicodeChar; length2: int32_t; codePointOrder: UBool): int32_t; cdecl;
|
||||||
|
u_strCaseCompare: function (s1: PUnicodeChar; length1: int32_t; s2: PUnicodeChar; length2: int32_t; options: uint32_t; var pErrorCode: UErrorCode): int32_t; cdecl;
|
||||||
|
|
||||||
|
DefConv, LastConv: PUConverter;
|
||||||
|
LastCP: TSystemCodePage;
|
||||||
|
|
||||||
|
function GetConverter(cp: TSystemCodePage): PUConverter;
|
||||||
|
var
|
||||||
|
s: ansistring;
|
||||||
|
err: UErrorCode;
|
||||||
begin
|
begin
|
||||||
dest:='';
|
if hlibICU = 0 then begin
|
||||||
if len = 0 then
|
Result:=nil;
|
||||||
exit;
|
exit;
|
||||||
if (cp = CP_UTF8) or (cp = CP_ACP) then
|
end;
|
||||||
begin
|
if (cp = DefaultSystemCodePage) or (cp = CP_ACP) then
|
||||||
// Only UTF-8 is supported for Android
|
Result:=DefConv
|
||||||
SetLength(hs,len*3);
|
else begin
|
||||||
i:=UnicodeToUtf8(pchar(hs),length(hs)+1,source,len);
|
if cp <> LastCP then begin
|
||||||
if i > 0 then
|
Str(cp, s);
|
||||||
begin
|
err:=0;
|
||||||
SetLength(hs,i-1);
|
LastConv:=ucnv_open(PAnsiChar('cp' + s), err);
|
||||||
dest:=hs;
|
if LastConv <> nil then
|
||||||
end;
|
ucnv_setSubstChars(LastConv, '?', 1, err);
|
||||||
end
|
LastCP:=cp;
|
||||||
else
|
end;
|
||||||
|
Result:=LastConv;
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
|
||||||
|
procedure Unicode2AnsiMove(source: PUnicodeChar; var dest: RawByteString; cp: TSystemCodePage; len: SizeInt);
|
||||||
|
var
|
||||||
|
len2: SizeInt;
|
||||||
|
conv: PUConverter;
|
||||||
|
err: UErrorCode;
|
||||||
|
begin
|
||||||
|
if len = 0 then begin
|
||||||
|
dest:='';
|
||||||
|
exit;
|
||||||
|
end;
|
||||||
|
conv:=GetConverter(cp);
|
||||||
|
if conv = nil then begin
|
||||||
DefaultUnicode2AnsiMove(source,dest,DefaultSystemCodePage,len);
|
DefaultUnicode2AnsiMove(source,dest,DefaultSystemCodePage,len);
|
||||||
|
exit;
|
||||||
|
end;
|
||||||
|
|
||||||
|
len2:=len*3;
|
||||||
|
SetLength(dest, len2);
|
||||||
|
err:=0;
|
||||||
|
len2:=ucnv_fromUChars(conv, PAnsiChar(dest), len2, source, len, err);
|
||||||
|
if len2 > Length(dest) then begin
|
||||||
|
SetLength(dest, len2);
|
||||||
|
err:=0;
|
||||||
|
len2:=ucnv_fromUChars(conv, PAnsiChar(dest), len2, source, len, err);
|
||||||
|
end;
|
||||||
|
SetLength(dest, len2);
|
||||||
|
SetCodePage(dest, cp, False);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
procedure Ansi2WideMove(source:pchar; cp:TSystemCodePage; var dest:widestring; len:SizeInt);
|
procedure Ansi2UnicodeMove(source:pchar;cp : TSystemCodePage;var dest:unicodestring;len:SizeInt);
|
||||||
var
|
var
|
||||||
i : SizeInt;
|
len2: SizeInt;
|
||||||
hs : UnicodeString;
|
conv: PUConverter;
|
||||||
|
err: UErrorCode;
|
||||||
begin
|
begin
|
||||||
// Only UTF-8 is supported for Android
|
if len = 0 then begin
|
||||||
dest:='';
|
dest:='';
|
||||||
|
exit;
|
||||||
|
end;
|
||||||
|
conv:=GetConverter(cp);
|
||||||
|
if conv = nil then begin
|
||||||
|
DefaultAnsi2UnicodeMove(source,DefaultSystemCodePage,dest,len);
|
||||||
|
exit;
|
||||||
|
end;
|
||||||
|
|
||||||
|
len2:=len;
|
||||||
|
SetLength(dest, len2);
|
||||||
|
err:=0;
|
||||||
|
len2:=ucnv_toUChars(conv, PUnicodeChar(dest), len2, source, len, err);
|
||||||
|
if len2 > Length(dest) then begin
|
||||||
|
SetLength(dest, len2);
|
||||||
|
err:=0;
|
||||||
|
len2:=ucnv_toUChars(conv, PUnicodeChar(dest), len2, source, len, err);
|
||||||
|
end;
|
||||||
|
SetLength(dest, len2);
|
||||||
|
end;
|
||||||
|
|
||||||
|
function UpperUnicodeString(const s : UnicodeString) : UnicodeString;
|
||||||
|
var
|
||||||
|
len, len2: SizeInt;
|
||||||
|
err: UErrorCode;
|
||||||
|
begin
|
||||||
|
if hlibICU = 0 then begin
|
||||||
|
// fallback implementation
|
||||||
|
Result:=UnicodeString(UpCase(AnsiString(s)));
|
||||||
|
exit;
|
||||||
|
end;
|
||||||
|
len:=Length(s);
|
||||||
|
SetLength(Result, len);
|
||||||
if len = 0 then
|
if len = 0 then
|
||||||
exit;
|
exit;
|
||||||
if (cp = CP_UTF8) or (cp = CP_ACP) then
|
err:=0;
|
||||||
begin
|
len2:=u_strToUpper(PUnicodeChar(Result), len, PUnicodeChar(s), len, nil, err);
|
||||||
SetLength(hs,len);
|
if len2 > len then begin
|
||||||
i:=Utf8ToUnicode(PUnicodeChar(hs),length(hs)+1,pchar(source),len);
|
SetLength(Result, len2);
|
||||||
if i>0 then
|
err:=0;
|
||||||
begin
|
len2:=u_strToUpper(PUnicodeChar(Result), len2, PUnicodeChar(s), len, nil, err);
|
||||||
SetLength(hs,i-1);
|
end;
|
||||||
dest:=hs;
|
SetLength(Result, len2);
|
||||||
end
|
|
||||||
else
|
|
||||||
dest:='';
|
|
||||||
end
|
|
||||||
else
|
|
||||||
DefaultAnsi2UnicodeMove(source,DefaultSystemCodePage,dest,len);
|
|
||||||
end;
|
end;
|
||||||
|
|
||||||
function UpperWideString(const s : WideString) : WideString;
|
function LowerUnicodeString(const s : UnicodeString) : UnicodeString;
|
||||||
|
var
|
||||||
|
len, len2: SizeInt;
|
||||||
|
err: UErrorCode;
|
||||||
begin
|
begin
|
||||||
// Not implemented
|
if hlibICU = 0 then begin
|
||||||
Result:=UpCase(AnsiString(s));
|
// fallback implementation
|
||||||
|
Result:=UnicodeString(LowerCase(AnsiString(s)));
|
||||||
|
exit;
|
||||||
|
end;
|
||||||
|
len:=Length(s);
|
||||||
|
SetLength(Result, len);
|
||||||
|
if len = 0 then
|
||||||
|
exit;
|
||||||
|
err:=0;
|
||||||
|
len2:=u_strToLower(PUnicodeChar(Result), len, PUnicodeChar(s), len, nil, err);
|
||||||
|
if len2 > len then begin
|
||||||
|
SetLength(Result, len2);
|
||||||
|
err:=0;
|
||||||
|
len2:=u_strToLower(PUnicodeChar(Result), len2, PUnicodeChar(s), len, nil, err);
|
||||||
|
end;
|
||||||
|
SetLength(Result, len2);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
function LowerWideString(const s : WideString) : WideString;
|
function _CompareStr(const S1, S2: UnicodeString): PtrInt;
|
||||||
begin
|
var
|
||||||
// Not implemented
|
count, count1, count2: SizeInt;
|
||||||
Result:=LowerCase(AnsiString(s));
|
|
||||||
end;
|
|
||||||
|
|
||||||
function _CompareStr(const S1, S2: ansistring): Integer;
|
|
||||||
var count, count1, count2: integer;
|
|
||||||
begin
|
begin
|
||||||
result := 0;
|
result := 0;
|
||||||
Count1 := Length(S1);
|
Count1 := Length(S1);
|
||||||
@ -95,115 +189,111 @@ begin
|
|||||||
Count:=Count2
|
Count:=Count2
|
||||||
else
|
else
|
||||||
Count:=Count1;
|
Count:=Count1;
|
||||||
result := CompareByte(PChar(S1)^,PChar(S2)^,Count);
|
result := CompareByte(PUnicodeChar(S1)^, PUnicodeChar(S2)^, Count*SizeOf(UnicodeChar));
|
||||||
if result=0 then
|
if result=0 then
|
||||||
result:=Count1-Count2;
|
result:=Count1 - Count2;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
function CompareWideString(const s1, s2 : WideString) : PtrInt;
|
function CompareUnicodeString(const s1, s2 : UnicodeString) : PtrInt;
|
||||||
begin
|
begin
|
||||||
// Not implemented
|
if hlibICU = 0 then begin
|
||||||
Result:=_CompareStr(s1, s2);
|
// fallback implementation
|
||||||
|
Result:=_CompareStr(s1, s2);
|
||||||
|
exit;
|
||||||
|
end;
|
||||||
|
Result:=u_strCompare(PUnicodeChar(s1), Length(s1), PUnicodeChar(s2), Length(s2), True);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
function CompareTextWideString(const s1, s2 : WideString): PtrInt;
|
function CompareTextUnicodeString(const s1, s2 : UnicodeString): PtrInt;
|
||||||
|
const
|
||||||
|
U_COMPARE_CODE_POINT_ORDER = $8000;
|
||||||
|
var
|
||||||
|
err: UErrorCode;
|
||||||
begin
|
begin
|
||||||
// Not implemented
|
if hlibICU = 0 then begin
|
||||||
Result:=_CompareStr(LowerCase(AnsiString(s1)), LowerCase(AnsiString(s2)));
|
// fallback implementation
|
||||||
|
Result:=_CompareStr(UpperUnicodeString(s1), UpperUnicodeString(s2));
|
||||||
|
exit;
|
||||||
|
end;
|
||||||
|
err:=0;
|
||||||
|
Result:=u_strCaseCompare(PUnicodeChar(s1), Length(s1), PUnicodeChar(s2), Length(s2), U_COMPARE_CODE_POINT_ORDER, err);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
function UpperAnsiString(const s : AnsiString) : AnsiString;
|
function UpperAnsiString(const s : AnsiString) : AnsiString;
|
||||||
begin
|
begin
|
||||||
// Not implemented
|
Result:=AnsiString(UpperUnicodeString(UnicodeString(s)));
|
||||||
Result:=UpCase(s);
|
|
||||||
end;
|
end;
|
||||||
|
|
||||||
function LowerAnsiString(const s : AnsiString) : AnsiString;
|
function LowerAnsiString(const s : AnsiString) : AnsiString;
|
||||||
begin
|
begin
|
||||||
// Not implemented
|
Result:=AnsiString(LowerUnicodeString(UnicodeString(s)));
|
||||||
Result:=LowerCase(s);
|
|
||||||
end;
|
|
||||||
|
|
||||||
function CharLengthPChar(const Str: PChar): PtrInt;
|
|
||||||
begin
|
|
||||||
// Not implemented
|
|
||||||
Result:=Length(Str);
|
|
||||||
end;
|
|
||||||
|
|
||||||
function CodePointLength(const Str: PChar; maxlookahead: ptrint): PtrInt;
|
|
||||||
begin
|
|
||||||
// Not implemented
|
|
||||||
Result:=Length(Str);
|
|
||||||
end;
|
end;
|
||||||
|
|
||||||
function CompareStrAnsiString(const s1, s2: ansistring): PtrInt;
|
function CompareStrAnsiString(const s1, s2: ansistring): PtrInt;
|
||||||
begin
|
begin
|
||||||
// Not implemented
|
Result:=CompareUnicodeString(UnicodeString(s1), UnicodeString(s2));
|
||||||
Result:=_CompareStr(s1, s2);
|
|
||||||
end;
|
end;
|
||||||
|
|
||||||
function StrCompAnsi(s1,s2 : PChar): PtrInt;
|
function StrCompAnsi(s1,s2 : PChar): PtrInt;
|
||||||
begin
|
begin
|
||||||
// Not implemented
|
Result:=CompareUnicodeString(UnicodeString(s1), UnicodeString(s2));
|
||||||
Result:=_CompareStr(s1, s2);
|
|
||||||
end;
|
end;
|
||||||
|
|
||||||
function AnsiCompareText(const S1, S2: ansistring): PtrInt;
|
function AnsiCompareText(const S1, S2: ansistring): PtrInt;
|
||||||
begin
|
begin
|
||||||
// Not implemented
|
Result:=CompareTextUnicodeString(UnicodeString(s1), UnicodeString(s2));
|
||||||
Result:=_CompareStr(LowerCase(s1), LowerCase(s2));
|
|
||||||
end;
|
end;
|
||||||
|
|
||||||
function AnsiStrIComp(S1, S2: PChar): PtrInt;
|
function AnsiStrIComp(S1, S2: PChar): PtrInt;
|
||||||
begin
|
begin
|
||||||
// Not implemented
|
Result:=CompareTextUnicodeString(UnicodeString(s1), UnicodeString(s2));
|
||||||
Result:=_CompareStr(LowerCase(s1), LowerCase(s2));
|
|
||||||
end;
|
end;
|
||||||
|
|
||||||
function AnsiStrLComp(S1, S2: PChar; MaxLen: PtrUInt): PtrInt;
|
function AnsiStrLComp(S1, S2: PChar; MaxLen: PtrUInt): PtrInt;
|
||||||
begin
|
begin
|
||||||
// Not implemented
|
Result:=CompareUnicodeString(UnicodeString(Copy(s1, 1, MaxLen)), UnicodeString(Copy(s2, 1, MaxLen)));
|
||||||
Result:=_CompareStr(Copy(s1, 1, MaxLen), Copy(s2, 1, MaxLen));
|
|
||||||
end;
|
end;
|
||||||
|
|
||||||
function AnsiStrLIComp(S1, S2: PChar; MaxLen: PtrUInt): PtrInt;
|
function AnsiStrLIComp(S1, S2: PChar; MaxLen: PtrUInt): PtrInt;
|
||||||
begin
|
begin
|
||||||
// Not implemented
|
Result:=CompareTextUnicodeString(UnicodeString(Copy(s1, 1, MaxLen)), UnicodeString(Copy(s2, 1, MaxLen)));
|
||||||
Result:=_CompareStr(LowerCase(Copy(s1, 1, MaxLen)), LowerCase(Copy(s2, 1, MaxLen)));
|
|
||||||
end;
|
end;
|
||||||
|
|
||||||
function AnsiStrLower(Str: PChar): PChar;
|
function AnsiStrLower(Str: PChar): PChar;
|
||||||
var
|
var
|
||||||
temp: ansistring;
|
s, res: ansistring;
|
||||||
begin
|
begin
|
||||||
// Not implemented
|
s:=Str;
|
||||||
temp:=loweransistring(str);
|
res:=LowerAnsiString(s);
|
||||||
Move(PChar(temp)^, Str, Length(temp));
|
if Length(res) > Length(s) then
|
||||||
|
SetLength(res, Length(s));
|
||||||
|
Move(PAnsiChar(res)^, Str, Length(res) + 1);
|
||||||
Result:=Str;
|
Result:=Str;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
function AnsiStrUpper(Str: PChar): PChar;
|
function AnsiStrUpper(Str: PChar): PChar;
|
||||||
var
|
var
|
||||||
temp: ansistring;
|
s, res: ansistring;
|
||||||
begin
|
begin
|
||||||
// Not implemented
|
s:=Str;
|
||||||
temp:=upperansistring(str);
|
res:=UpperAnsiString(s);
|
||||||
Move(PChar(temp)^, Str, Length(temp));
|
if Length(res) > Length(s) then
|
||||||
|
SetLength(res, Length(s));
|
||||||
|
Move(PAnsiChar(res)^, Str, Length(res) + 1);
|
||||||
Result:=Str;
|
Result:=Str;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
function GetStandardCodePage(const stdcp: TStandardCodePageEnum): TSystemCodePage;
|
function GetStandardCodePage(const stdcp: TStandardCodePageEnum): TSystemCodePage;
|
||||||
begin
|
begin
|
||||||
Result := CP_UTF8; // Android has only UTF-8
|
Result := CP_UTF8; // Android always uses UTF-8
|
||||||
end;
|
end;
|
||||||
|
|
||||||
{$ifdef FPC_HAS_CPSTRING}
|
|
||||||
{$i textrec.inc}
|
{$i textrec.inc}
|
||||||
procedure SetStdIOCodePage(var T: Text); inline;
|
procedure SetStdIOCodePage(var T: Text); inline;
|
||||||
begin
|
begin
|
||||||
case TextRec(T).Mode of
|
case TextRec(T).Mode of
|
||||||
fmInput:TextRec(T).CodePage:=GetStandardCodePage(scpConsoleInput);
|
fmInput:TextRec(T).CodePage:=DefaultSystemCodePage;
|
||||||
fmOutput:TextRec(T).CodePage:=GetStandardCodePage(scpConsoleOutput);
|
fmOutput:TextRec(T).CodePage:=DefaultSystemCodePage;
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
@ -215,7 +305,34 @@ begin
|
|||||||
SetStdIOCodePage(StdOut);
|
SetStdIOCodePage(StdOut);
|
||||||
SetStdIOCodePage(StdErr);
|
SetStdIOCodePage(StdErr);
|
||||||
end;
|
end;
|
||||||
{$endif FPC_HAS_CPSTRING}
|
|
||||||
|
procedure Ansi2WideMove(source:pchar; cp:TSystemCodePage; var dest:widestring; len:SizeInt);
|
||||||
|
var
|
||||||
|
us: UnicodeString;
|
||||||
|
begin
|
||||||
|
Ansi2UnicodeMove(source,cp,us,len);
|
||||||
|
dest:=us;
|
||||||
|
end;
|
||||||
|
|
||||||
|
function UpperWideString(const s : WideString) : WideString;
|
||||||
|
begin
|
||||||
|
Result:=UpperUnicodeString(s);
|
||||||
|
end;
|
||||||
|
|
||||||
|
function LowerWideString(const s : WideString) : WideString;
|
||||||
|
begin
|
||||||
|
Result:=LowerUnicodeString(s);
|
||||||
|
end;
|
||||||
|
|
||||||
|
function CompareWideString(const s1, s2 : WideString) : PtrInt;
|
||||||
|
begin
|
||||||
|
Result:=CompareUnicodeString(s1, s2);
|
||||||
|
end;
|
||||||
|
|
||||||
|
function CompareTextWideString(const s1, s2 : WideString): PtrInt;
|
||||||
|
begin
|
||||||
|
Result:=CompareTextUnicodeString(s1, s2);
|
||||||
|
end;
|
||||||
|
|
||||||
Procedure SetCWideStringManager;
|
Procedure SetCWideStringManager;
|
||||||
Var
|
Var
|
||||||
@ -224,18 +341,13 @@ begin
|
|||||||
CWideStringManager:=widestringmanager;
|
CWideStringManager:=widestringmanager;
|
||||||
With CWideStringManager do
|
With CWideStringManager do
|
||||||
begin
|
begin
|
||||||
Wide2AnsiMoveProc:=@Wide2AnsiMove;
|
Wide2AnsiMoveProc:=@Unicode2AnsiMove;
|
||||||
Ansi2WideMoveProc:=@Ansi2WideMove;
|
Ansi2WideMoveProc:=@Ansi2WideMove;
|
||||||
|
|
||||||
UpperWideStringProc:=@UpperWideString;
|
UpperWideStringProc:=@UpperWideString;
|
||||||
LowerWideStringProc:=@LowerWideString;
|
LowerWideStringProc:=@LowerWideString;
|
||||||
|
|
||||||
CompareWideStringProc:=@CompareWideString;
|
CompareWideStringProc:=@CompareWideString;
|
||||||
CompareTextWideStringProc:=@CompareTextWideString;
|
CompareTextWideStringProc:=@CompareTextWideString;
|
||||||
|
|
||||||
CharLengthPCharProc:=@CharLengthPChar;
|
|
||||||
CodePointLengthProc:=@CodePointLength;
|
|
||||||
|
|
||||||
UpperAnsiStringProc:=@UpperAnsiString;
|
UpperAnsiStringProc:=@UpperAnsiString;
|
||||||
LowerAnsiStringProc:=@LowerAnsiString;
|
LowerAnsiStringProc:=@LowerAnsiString;
|
||||||
CompareStrAnsiStringProc:=@CompareStrAnsiString;
|
CompareStrAnsiStringProc:=@CompareStrAnsiString;
|
||||||
@ -247,29 +359,116 @@ begin
|
|||||||
StrLowerAnsiStringProc:=@AnsiStrLower;
|
StrLowerAnsiStringProc:=@AnsiStrLower;
|
||||||
StrUpperAnsiStringProc:=@AnsiStrUpper;
|
StrUpperAnsiStringProc:=@AnsiStrUpper;
|
||||||
{ Unicode }
|
{ Unicode }
|
||||||
Unicode2AnsiMoveProc:=@Wide2AnsiMove;
|
Unicode2AnsiMoveProc:=@Unicode2AnsiMove;
|
||||||
Ansi2UnicodeMoveProc:=@Ansi2WideMove;
|
Ansi2UnicodeMoveProc:=@Ansi2UnicodeMove;
|
||||||
UpperUnicodeStringProc:=@UpperWideString;
|
UpperUnicodeStringProc:=@UpperUnicodeString;
|
||||||
LowerUnicodeStringProc:=@LowerWideString;
|
LowerUnicodeStringProc:=@LowerUnicodeString;
|
||||||
CompareUnicodeStringProc:=@CompareWideString;
|
CompareUnicodeStringProc:=@CompareUnicodeString;
|
||||||
CompareTextUnicodeStringProc:=@CompareTextWideString;
|
CompareTextUnicodeStringProc:=@CompareTextUnicodeString;
|
||||||
{ CodePage }
|
{ CodePage }
|
||||||
GetStandardCodePageProc:=@GetStandardCodePage;
|
GetStandardCodePageProc:=@GetStandardCodePage;
|
||||||
end;
|
end;
|
||||||
SetUnicodeStringManager(CWideStringManager);
|
SetUnicodeStringManager(CWideStringManager);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
{$ifndef android}
|
procedure UnloadICU;
|
||||||
|
begin
|
||||||
|
if hlibICU = 0 then
|
||||||
|
exit;
|
||||||
|
if DefConv <> nil then
|
||||||
|
ucnv_close(DefConv);
|
||||||
|
if LastConv <> nil then
|
||||||
|
ucnv_close(LastConv);
|
||||||
|
UnloadLibrary(hlibICU);
|
||||||
|
hlibICU:=0;
|
||||||
|
end;
|
||||||
|
|
||||||
|
procedure LoadICU;
|
||||||
var
|
var
|
||||||
iconvlib:TLibHandle;
|
LibVer: ansistring;
|
||||||
{$endif android}
|
|
||||||
|
function _GetProc(const Name: AnsiString; out ProcPtr): boolean;
|
||||||
|
var
|
||||||
|
p: pointer;
|
||||||
|
begin
|
||||||
|
p:=GetProcedureAddress(hlibICU, Name + LibVer);
|
||||||
|
if p = nil then begin
|
||||||
|
// unload lib on failure
|
||||||
|
UnloadICU;
|
||||||
|
Result:=False;
|
||||||
|
end
|
||||||
|
else
|
||||||
|
pointer(ProcPtr):=p;
|
||||||
|
end;
|
||||||
|
|
||||||
|
const
|
||||||
|
ICUver: array [1..4] of ansistring = ('3_8', '4_2', '44', '46');
|
||||||
|
TestProcName = 'ucnv_open';
|
||||||
|
|
||||||
|
var
|
||||||
|
err: UErrorCode;
|
||||||
|
i: longint;
|
||||||
|
s: ansistring;
|
||||||
|
begin
|
||||||
|
hlibICU:=LoadLibrary('libicuuc.so');
|
||||||
|
if hlibICU = 0 then
|
||||||
|
exit;
|
||||||
|
// Finding ICU version using known versions table
|
||||||
|
for i:=High(ICUver) downto Low(ICUver) do begin
|
||||||
|
s:='_' + ICUver[i];
|
||||||
|
if GetProcedureAddress(hlibICU, TestProcName + s) <> nil then begin
|
||||||
|
LibVer:=s;
|
||||||
|
break;
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
|
||||||
|
if LibVer = '' then begin
|
||||||
|
// Finding unknown ICU version
|
||||||
|
Val(ICUver[High(ICUver)], i);
|
||||||
|
for i:=i + 1 to 100 do begin
|
||||||
|
Str(i, s);
|
||||||
|
s:='_' + s;
|
||||||
|
if GetProcedureAddress(hlibICU, TestProcName + s) <> nil then begin
|
||||||
|
LibVer:=s;
|
||||||
|
break;
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
|
||||||
|
if LibVer = '' then begin
|
||||||
|
// Trying versionless name
|
||||||
|
if GetProcedureAddress(hlibICU, TestProcName) = nil then begin
|
||||||
|
// Unable to get ICU version
|
||||||
|
UnloadICU;
|
||||||
|
exit;
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
|
||||||
|
if not _GetProc('ucnv_open', ucnv_open) then exit;
|
||||||
|
if not _GetProc('ucnv_close', ucnv_close) then exit;
|
||||||
|
if not _GetProc('ucnv_setSubstChars', ucnv_setSubstChars) then exit;
|
||||||
|
if not _GetProc('ucnv_fromUChars', ucnv_fromUChars) then exit;
|
||||||
|
if not _GetProc('ucnv_toUChars', ucnv_toUChars) then exit;
|
||||||
|
if not _GetProc('u_strToUpper', u_strToUpper) then exit;
|
||||||
|
if not _GetProc('u_strToLower', u_strToLower) then exit;
|
||||||
|
if not _GetProc('u_strCompare', u_strCompare) then exit;
|
||||||
|
if not _GetProc('u_strCaseCompare', u_strCaseCompare) then exit;
|
||||||
|
|
||||||
|
err:=0;
|
||||||
|
DefConv:=ucnv_open('utf8', err);
|
||||||
|
if DefConv <> nil then
|
||||||
|
ucnv_setSubstChars(DefConv, '?', 1, err);
|
||||||
|
end;
|
||||||
|
|
||||||
initialization
|
initialization
|
||||||
SetCWideStringManager;
|
|
||||||
{ set the DefaultSystemCodePage }
|
|
||||||
DefaultSystemCodePage:=GetStandardCodePage(scpAnsi);
|
DefaultSystemCodePage:=GetStandardCodePage(scpAnsi);
|
||||||
|
DefaultUnicodeCodePage:=CP_UTF16;
|
||||||
|
LoadICU;
|
||||||
|
SetCWideStringManager;
|
||||||
SetStdIOCodePages;
|
SetStdIOCodePages;
|
||||||
|
|
||||||
finalization
|
finalization
|
||||||
|
UnloadICU;
|
||||||
|
|
||||||
end.
|
end.
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user