* widestring manager can handle now ansi<->wide string conversions even if the lens don't match

This commit is contained in:
florian 2005-03-14 21:09:04 +00:00
parent 20ad7813c2
commit 9445db95f3
3 changed files with 104 additions and 64 deletions

View File

@ -1574,13 +1574,17 @@ Procedure SysResetFPU;assembler;{$ifdef SYSTEMINLINE}inline;{$endif}
asm asm
fninit fninit
fldcw fpucw fldcw fpucw
fwait
end; end;
{ {
$Log$ $Log$
Revision 1.68 2005-02-14 17:13:22 peter Revision 1.69 2005-03-14 21:09:04 florian
* widestring manager can handle now ansi<->wide string conversions even if the lens don't match
Revision 1.68 2005/02/14 17:13:22 peter
* truncate log * truncate log
Revision 1.67 2005/01/23 20:03:23 florian Revision 1.67 2005/01/23 20:03:23 florian

View File

@ -44,10 +44,13 @@ function WideCharLenToString(S : PWideChar;Len : SizeInt) : AnsiString;
procedure WideCharLenToStrVar(Src : PWideChar;Len : SizeInt;var Dest : AnsiString); procedure WideCharLenToStrVar(Src : PWideChar;Len : SizeInt;var Dest : AnsiString);
procedure WideCharToStrVar(S : PWideChar;var Dest : AnsiString); procedure WideCharToStrVar(S : PWideChar;var Dest : AnsiString);
procedure DefaultWide2AnsiMove(source:pwidechar;var dest:ansistring;len:SizeInt);
procedure DefaultAnsi2WideMove(source:pchar;var dest:widestring;len:SizeInt);
Type Type
TWideStringManager = record TWideStringManager = record
Wide2AnsiMoveProc : procedure(source:pwidechar;dest:pchar;len:SizeInt); Wide2AnsiMoveProc : procedure(source:pwidechar;var dest:ansistring;len:SizeInt);
Ansi2WideMoveProc : procedure(source:pchar;dest:pwidechar;len:SizeInt); Ansi2WideMoveProc : procedure(source:pchar;var dest:widestring;len:SizeInt);
// UpperUTF8 : procedure(p:PUTF8String); // UpperUTF8 : procedure(p:PUTF8String);
@ -96,7 +99,10 @@ Procedure SetWideStringManager (Const New : TWideStringManager; Var Old: TWideSt
{ {
$Log$ $Log$
Revision 1.6 2005-03-12 14:56:22 florian Revision 1.7 2005-03-14 21:09:04 florian
* widestring manager can handle now ansi<->wide string conversions even if the lens don't match
Revision 1.6 2005/03/12 14:56:22 florian
+ added Ansi* routines to widestring manager + added Ansi* routines to widestring manager
* made them using OS calls on windows * made them using OS calls on windows

View File

@ -50,33 +50,37 @@ Const
These routines can be overwritten for the Current Locale These routines can be overwritten for the Current Locale
} }
procedure Wide2AnsiMove(source:pwidechar;dest:pchar;len:SizeInt); procedure DefaultWide2AnsiMove(source:pwidechar;var dest:ansistring;len:SizeInt);
var var
i : SizeInt; i : SizeInt;
begin begin
//writeln('in widetoansimove');
setlength(dest,len);
for i:=1 to len do for i:=1 to len do
begin begin
if word(source^)<128 then if word(source^)<256 then
dest^:=char(word(source^)) dest[i]:=char(word(source^))
else else
dest^:=' '; dest[i]:='?';
inc(dest); //inc(dest);
inc(source); inc(source);
end; end;
end; end;
procedure Ansi2WideMove(source:pchar;dest:pwidechar;len:SizeInt); procedure DefaultAnsi2WideMove(source:pchar;var dest:widestring;len:SizeInt);
var var
i : SizeInt; i : SizeInt;
begin begin
//writeln('in ansitowidemove');
setlength(dest,len);
for i:=1 to len do for i:=1 to len do
begin begin
if byte(source^)<128 then // if byte(source^)<128 then
dest^:=widechar(byte(source^)) dest[i]:=widechar(byte(source^));
else // else
dest^:=' '; // dest^:=' ';
inc(dest); //inc(dest);
inc(source); inc(source);
end; end;
end; end;
@ -219,17 +223,21 @@ function fpc_WideStr_To_ShortStr (high_of_res: SizeInt;const S2 : WideString): s
} }
Var Var
Size : SizeInt; Size : SizeInt;
temp : ansistring;
begin begin
if S2='' then if S2='' then
fpc_WideStr_To_ShortStr:='' fpc_WideStr_To_ShortStr:=''
else else
begin begin
Size:=Length(S2); //Size:=Length(S2);
If Size>high_of_res then //If Size>high_of_res then
Size:=high_of_res; // Size:=high_of_res;
widestringmanager.Wide2AnsiMoveProc(PWideChar(S2),PChar(@fpc_WideStr_To_ShortStr[1]),Size); //widestringmanager.Wide2AnsiMoveProc(PWideChar(S2),PChar(@fpc_WideStr_To_ShortStr[1]),Size);
byte(fpc_WideStr_To_ShortStr[0]):=byte(Size); //byte(fpc_WideStr_To_ShortStr[0]):=byte(Size);
widestringmanager.Wide2AnsiMoveProc(PWideChar(S2),temp,Size);
fpc_WideStr_To_ShortStr := temp;
end; end;
end; end;
@ -240,11 +248,11 @@ Function fpc_ShortStr_To_WideStr (Const S2 : ShortString): WideString; {$ifdef h
Var Var
Size : SizeInt; Size : SizeInt;
begin begin
Size:=Length(S2); //Size:=Length(S2);
Setlength (fpc_ShortStr_To_WideStr,Size); Setlength (fpc_ShortStr_To_WideStr,Size);
if Size>0 then if Size>0 then
begin begin
widestringmanager.Ansi2WideMoveProc(PChar(@S2[1]),PWideChar(Pointer(fpc_ShortStr_To_WideStr)),Size); widestringmanager.Ansi2WideMoveProc(PChar(@S2[1]),fpc_ShortStr_To_WideStr,Size);
{ Terminating Zero } { Terminating Zero }
PWideChar(Pointer(fpc_ShortStr_To_WideStr)+Size*sizeof(WideChar))^:=#0; PWideChar(Pointer(fpc_ShortStr_To_WideStr)+Size*sizeof(WideChar))^:=#0;
end; end;
@ -269,12 +277,12 @@ begin
if s2='' then if s2='' then
exit; exit;
Size:=Length(WideString(S2)); Size:=Length(WideString(S2));
Setlength (fpc_WideStr_To_AnsiStr,Size); // Setlength (fpc_WideStr_To_AnsiStr,Size);
if Size>0 then if Size>0 then
begin begin
widestringmanager.Wide2AnsiMoveProc(PWideChar(Pointer(S2)),PChar(Pointer(fpc_WideStr_To_AnsiStr)),Size); widestringmanager.Wide2AnsiMoveProc(PWideChar(Pointer(S2)),fpc_WideStr_To_AnsiStr,Size);
{ Terminating Zero } { Terminating Zero }
PChar(Pointer(fpc_WideStr_To_AnsiStr)+Size)^:=#0; // PChar(Pointer(fpc_WideStr_To_AnsiStr)+Size)^:=#0;
end; end;
end; end;
@ -297,12 +305,12 @@ begin
if s2='' then if s2='' then
exit; exit;
Size:=Length(S2); Size:=Length(S2);
Setlength (result,Size); // Setlength (result,Size);
if Size>0 then if Size>0 then
begin begin
widestringmanager.Ansi2WideMoveProc(PChar(S2),PWideChar(Pointer(result)),Size); widestringmanager.Ansi2WideMoveProc(PChar(S2),result,Size);
{ Terminating Zero } { Terminating Zero }
PWideChar(Pointer(result)+Size*sizeof(WideChar))^:=#0; // PWideChar(Pointer(result)+Size*sizeof(WideChar))^:=#0;
end; end;
end; end;
@ -314,12 +322,12 @@ begin
if p=nil then if p=nil then
exit; exit;
Size := IndexWord(p^, -1, 0); Size := IndexWord(p^, -1, 0);
Setlength (result,Size); // Setlength (result,Size);
if Size>0 then if Size>0 then
begin begin
widestringmanager.Wide2AnsiMoveProc(P,PChar(Pointer(result)),Size); widestringmanager.Wide2AnsiMoveProc(P,result,Size);
{ Terminating Zero } { Terminating Zero }
PChar(Pointer(result)+Size)^:=#0; // PChar(Pointer(result)+Size)^:=#0;
end; end;
end; end;
@ -344,6 +352,7 @@ end;
Function fpc_PWideChar_To_ShortStr(const p : pwidechar): shortstring; compilerproc; Function fpc_PWideChar_To_ShortStr(const p : pwidechar): shortstring; compilerproc;
var var
Size : SizeInt; Size : SizeInt;
temp: ansistring;
begin begin
if p=nil then if p=nil then
begin begin
@ -351,14 +360,15 @@ begin
exit; exit;
end; end;
Size := IndexWord(p^, $7fffffff, 0); Size := IndexWord(p^, $7fffffff, 0);
Setlength (result,Size+1); // Setlength (result,Size+1);
if Size>0 then if Size>0 then
begin begin
If Size>255 then // If Size>255 then
Size:=255; // Size:=255;
widestringmanager.Wide2AnsiMoveProc(p,PChar(@result[1]),Size); widestringmanager.Wide2AnsiMoveProc(p,temp,Size);
byte(result[0]):=byte(Size); // byte(result[0]):=byte(Size);
end; end;
result := temp
end; end;
@ -455,8 +465,8 @@ begin
{ result is automatically set to '' } { result is automatically set to '' }
exit; exit;
l:=IndexChar(p^,-1,#0); l:=IndexChar(p^,-1,#0);
SetLength(fpc_PChar_To_WideStr,L); //SetLength(fpc_PChar_To_WideStr,L);
widestringmanager.Ansi2WideMoveProc(P,PWideChar(Pointer(fpc_PChar_To_WideStr)),l); widestringmanager.Ansi2WideMoveProc(P,fpc_PChar_To_WideStr,l);
end; end;
{ old style helper } { old style helper }
@ -479,7 +489,7 @@ begin
if i = -1 then if i = -1 then
i := high(arr)+1; i := high(arr)+1;
SetLength(fpc_CharArray_To_WideStr,i); SetLength(fpc_CharArray_To_WideStr,i);
widestringmanager.Ansi2WideMoveProc (pchar(@arr),PWideChar(Pointer(fpc_CharArray_To_WideStr)),i); widestringmanager.Ansi2WideMoveProc (pchar(@arr),fpc_CharArray_To_WideStr,i);
end; end;
{ old style helper } { old style helper }
@ -499,7 +509,7 @@ begin
if i = -1 then if i = -1 then
i := len; i := len;
pointer(a) := NewWideString(i); pointer(a) := NewWideString(i);
Ansi2WideMoveProc (src,PWideChar(Pointer(@a[1])),i); widestringmanager.Ansi2WideMoveProc (src,a,i);
end; end;
{$endif not hascompilerproc} {$endif not hascompilerproc}
@ -513,6 +523,7 @@ var
{$endif hascompilerproc} {$endif hascompilerproc}
index: longint; index: longint;
len: byte; len: byte;
temp: ansistring;
begin begin
{$ifdef hascompilerproc} {$ifdef hascompilerproc}
l := high(arr)+1; l := high(arr)+1;
@ -527,11 +538,12 @@ begin
else else
len := index; len := index;
{$ifdef hascompilerproc} {$ifdef hascompilerproc}
widestringmanager.Wide2AnsiMoveProc (pwidechar(@arr),PAnsiChar(@(fpc_WideCharArray_To_ShortStr[1])),len); widestringmanager.Wide2AnsiMoveProc (pwidechar(@arr),temp,len);
{$else} {$else}
widestringmanager.Wide2AnsiMoveProc (arr, PAnsiChar(@(fpc_WideCharArray_To_ShortStr[1])),len); widestringmanager.Wide2AnsiMoveProc (arr, temp,len);
{$endif} {$endif}
fpc_WideCharArray_To_ShortStr[0]:=chr(len); fpc_WideCharArray_To_ShortStr := temp;
//fpc_WideCharArray_To_ShortStr[0]:=chr(len);
end; end;
Function fpc_WideCharArray_To_AnsiStr(const arr: array of widechar): AnsiString; {$ifdef hascompilerproc} compilerproc; {$endif} Function fpc_WideCharArray_To_AnsiStr(const arr: array of widechar): AnsiString; {$ifdef hascompilerproc} compilerproc; {$endif}
@ -545,7 +557,7 @@ begin
if i = -1 then if i = -1 then
i := high(arr)+1; i := high(arr)+1;
SetLength(fpc_WideCharArray_To_AnsiStr,i); SetLength(fpc_WideCharArray_To_AnsiStr,i);
widestringmanager.Wide2AnsiMoveProc (pwidechar(@arr),PAnsiChar(Pointer(fpc_WideCharArray_To_AnsiStr)),i); widestringmanager.Wide2AnsiMoveProc (pwidechar(@arr),fpc_WideCharArray_To_AnsiStr,i);
end; end;
{ old style helper } { old style helper }
@ -565,7 +577,7 @@ begin
if i = -1 then if i = -1 then
i := len; i := len;
pointer(a) := NewAnsiString(i); pointer(a) := NewAnsiString(i);
Wide2AnsiMoveProc (src,PAnsiChar(Pointer(@a[1])),i); widestringmanager.Wide2AnsiMoveProc (src,a,i);
end; end;
{$endif not hascompilerproc} {$endif not hascompilerproc}
@ -614,13 +626,16 @@ end;
function fpc_widestr_to_chararray(arraysize: SizeInt; const src: WideString): fpc_big_chararray;[public,alias: 'FPC_WIDESTR_TO_CHARARRAY']; compilerproc; function fpc_widestr_to_chararray(arraysize: SizeInt; const src: WideString): fpc_big_chararray;[public,alias: 'FPC_WIDESTR_TO_CHARARRAY']; compilerproc;
var var
len: SizeInt; len: SizeInt;
temp: ansistring;
begin begin
len := length(src); len := length(src);
if len > arraysize then
len := arraysize;
{ make sure we don't dereference src if it can be nil (JM) } { make sure we don't dereference src if it can be nil (JM) }
if len > 0 then if len > 0 then
widestringmanager.wide2ansimoveproc(pwidechar(@src[1]),pchar(@fpc_widestr_to_chararray[0]),len); widestringmanager.wide2ansimoveproc(pwidechar(@src[1]),temp,len);
len := length(temp);
if len > arraysize then
len := arraysize;
move(temp[1],fpc_widestr_to_chararray[0],len);
fillchar(fpc_widestr_to_chararray[len],arraysize-len,0); fillchar(fpc_widestr_to_chararray[len],arraysize-len,0);
end; end;
{$endif hascompilerproc} {$endif hascompilerproc}
@ -648,13 +663,17 @@ end;
function fpc_ansistr_to_widechararray(arraysize: SizeInt; const src: AnsiString): fpc_big_widechararray;[public,alias: 'FPC_ANSISTR_TO_WIDECHARARRAY']; compilerproc; function fpc_ansistr_to_widechararray(arraysize: SizeInt; const src: AnsiString): fpc_big_widechararray;[public,alias: 'FPC_ANSISTR_TO_WIDECHARARRAY']; compilerproc;
var var
len: SizeInt; len: SizeInt;
temp: widestring;
begin begin
len := length(src); len := length(src);
if len > arraysize then
len := arraysize;
{ make sure we don't dereference src if it can be nil (JM) } { make sure we don't dereference src if it can be nil (JM) }
if len > 0 then if len > 0 then
widestringmanager.ansi2widemoveproc(pchar(@src[1]),pwidechar(@fpc_ansistr_to_widechararray[0]),len); widestringmanager.ansi2widemoveproc(pchar(@src[1]),temp,len);
len := length(temp);
if len > arraysize then
len := arraysize;
move(temp[1],fpc_ansistr_to_widechararray[0],len*sizeof(widechar));
fillchar(fpc_ansistr_to_widechararray[len],(arraysize-len)*SizeOf(WideChar),0); fillchar(fpc_ansistr_to_widechararray[len],(arraysize-len)*SizeOf(WideChar),0);
end; end;
{$endif hascompilerproc} {$endif hascompilerproc}
@ -663,13 +682,16 @@ end;
function fpc_shortstr_to_widechararray(arraysize: SizeInt; const src: ShortString): fpc_big_widechararray;[public,alias: 'FPC_SHORTSTR_TO_WIDECHARARRAY']; compilerproc; function fpc_shortstr_to_widechararray(arraysize: SizeInt; const src: ShortString): fpc_big_widechararray;[public,alias: 'FPC_SHORTSTR_TO_WIDECHARARRAY']; compilerproc;
var var
len: longint; len: longint;
temp : widestring;
begin begin
len := length(src); len := length(src);
if len > arraysize then
len := arraysize;
{ make sure we don't access char 1 if length is 0 (JM) } { make sure we don't access char 1 if length is 0 (JM) }
if len > 0 then if len > 0 then
widestringmanager.ansi2widemoveproc(pchar(@src[1]),pwidechar(@fpc_shortstr_to_widechararray[0]),len); widestringmanager.ansi2widemoveproc(pchar(@src[1]),temp,len);
len := length(temp);
if len > arraysize then
len := arraysize;
move(temp[1],fpc_shortstr_to_widechararray[0],len*sizeof(widechar));
fillchar(fpc_shortstr_to_widechararray[len],(arraysize-len)*SizeOf(WideChar),0); fillchar(fpc_shortstr_to_widechararray[len],(arraysize-len)*SizeOf(WideChar),0);
end; end;
@ -782,18 +804,23 @@ function WideCharToString(S : PWideChar) : AnsiString;
end; end;
function StringToWideChar(const Src : AnsiString;Dest : PWideChar;DestSize : SizeInt) : PWideChar; function StringToWideChar(const Src : AnsiString;Dest : PWideChar;DestSize : SizeInt) : PWideChar;
var
temp:widestring;
begin begin
if Length(Src)<DestSize then widestringmanager.Ansi2WideMoveProc(PChar(Src),temp,Length(Src));
widestringmanager.Ansi2WideMoveProc(PChar(Src),Dest,Length(Src)) if Length(temp)<DestSize then
move(temp[1],Dest^,Length(temp))
else else
widestringmanager.Ansi2WideMoveProc(PChar(Src),Dest,DestSize); move(temp[1],Dest^,destsize);
result:=Dest; result:=Dest;
end; end;
function WideCharLenToString(S : PWideChar;Len : SizeInt) : AnsiString; function WideCharLenToString(S : PWideChar;Len : SizeInt) : AnsiString;
begin begin
SetLength(result,Len); //SetLength(result,Len);
Wide2AnsiMove(S,PChar(result),Len); widestringmanager.Wide2AnsiMoveproc(S,result,Len);
end; end;
procedure WideCharLenToStrVar(Src : PWideChar;Len : SizeInt;var Dest : AnsiString); procedure WideCharLenToStrVar(Src : PWideChar;Len : SizeInt;var Dest : AnsiString);
@ -1056,8 +1083,8 @@ begin
BufLen := IndexByte(Buf^, Len+1, 0); BufLen := IndexByte(Buf^, Len+1, 0);
If (BufLen>0) and (BufLen < Len) then If (BufLen>0) and (BufLen < Len) then
Len := BufLen; Len := BufLen;
widestringmanager.Ansi2WideMoveProc(Buf,PWideChar(S),Len); widestringmanager.Ansi2WideMoveProc(Buf,S,Len);
PWideChar(Pointer(S)+Len*sizeof(WideChar))^:=#0; //PWideChar(Pointer(S)+Len*sizeof(WideChar))^:=#0;
end; end;
end; end;
@ -1434,8 +1461,8 @@ function CharLengthPChar(const Str: PChar): PtrInt;
procedure initwidestringmanager; procedure initwidestringmanager;
begin begin
fillchar(widestringmanager,sizeof(widestringmanager),0); fillchar(widestringmanager,sizeof(widestringmanager),0);
widestringmanager.Wide2AnsiMoveProc:=@Wide2AnsiMove; widestringmanager.Wide2AnsiMoveProc:=@defaultWide2AnsiMove;
widestringmanager.Ansi2WideMoveProc:=@Ansi2WideMove; widestringmanager.Ansi2WideMoveProc:=@defaultAnsi2WideMove;
widestringmanager.UpperWideStringProc:=@GenericWideCase; widestringmanager.UpperWideStringProc:=@GenericWideCase;
widestringmanager.LowerWideStringProc:=@GenericWideCase; widestringmanager.LowerWideStringProc:=@GenericWideCase;
widestringmanager.CompareWideStringProc:=@CompareWideString; widestringmanager.CompareWideStringProc:=@CompareWideString;
@ -1446,7 +1473,10 @@ procedure initwidestringmanager;
{ {
$Log$ $Log$
Revision 1.53 2005-02-26 15:00:14 florian Revision 1.54 2005-03-14 21:09:04 florian
* widestring manager can handle now ansi<->wide string conversions even if the lens don't match
Revision 1.53 2005/02/26 15:00:14 florian
+ WideSameStr + WideSameStr
Revision 1.52 2005/02/26 10:21:17 florian Revision 1.52 2005/02/26 10:21:17 florian