From 52ed79c7f3e943129171327dda6d651d83649a35 Mon Sep 17 00:00:00 2001 From: Sven/Sarah Barth Date: Tue, 4 Jan 2022 23:41:38 +0100 Subject: [PATCH] * fix #39506: add assignment operator overloads for all string types so that assignments of constant strings can be handled correctly + added adjusted/extended test (the test isn't enabled by default however as it requires libffi on most platforms) --- packages/rtl-objpas/src/inc/rtti.pp | 22 +++++++++++++-- tests/webtbs/tw39506.pp | 44 +++++++++++++++++++++++++++++ 2 files changed, 64 insertions(+), 2 deletions(-) create mode 100644 tests/webtbs/tw39506.pp diff --git a/packages/rtl-objpas/src/inc/rtti.pp b/packages/rtl-objpas/src/inc/rtti.pp index 47fd806174..414b1c9593 100644 --- a/packages/rtl-objpas/src/inc/rtti.pp +++ b/packages/rtl-objpas/src/inc/rtti.pp @@ -158,7 +158,10 @@ type function GetReferenceToRawData: Pointer; procedure ExtractRawData(ABuffer: Pointer); procedure ExtractRawDataNoCopy(ABuffer: Pointer); - class operator := (const AValue: String): TValue; inline; + class operator := (const AValue: ShortString): TValue; inline; + class operator := (const AValue: AnsiString): TValue; inline; + class operator := (const AValue: UnicodeString): TValue; inline; + class operator := (const AValue: WideString): TValue; inline; class operator := (AValue: LongInt): TValue; inline; class operator := (AValue: Single): TValue; inline; class operator := (AValue: Double): TValue; inline; @@ -2369,7 +2372,22 @@ begin Move((@FData.FAsPointer)^, ABuffer^, DataSize); end; -class operator TValue.:=(const AValue: String): TValue; +class operator TValue.:=(const AValue: ShortString): TValue; +begin + Make(@AValue, System.TypeInfo(AValue), Result); +end; + +class operator TValue.:=(const AValue: AnsiString): TValue; +begin + Make(@AValue, System.TypeInfo(AValue), Result); +end; + +class operator TValue.:=(const AValue: UnicodeString): TValue; +begin + Make(@AValue, System.TypeInfo(AValue), Result); +end; + +class operator TValue.:=(const AValue: WideString): TValue; begin Make(@AValue, System.TypeInfo(AValue), Result); end; diff --git a/tests/webtbs/tw39506.pp b/tests/webtbs/tw39506.pp new file mode 100644 index 0000000000..36b19f0ca1 --- /dev/null +++ b/tests/webtbs/tw39506.pp @@ -0,0 +1,44 @@ +{ %INTERACTIVE } +{ %NOTE=This test requires libffi on most platforms } + +program tw39506; + +{$if not defined(cpui386)} +{$define useffi} +{$endif} +{$if defined(cpux86_64) and defined(win64)} +{$undef useffi} +{$endif} + +uses +{$ifdef useffi} + ffi.manager, +{$endif} + rtti, + typinfo; + +var + ok: Boolean = False; + +procedure p(aArg1: ShortString; aArg2: AnsiString; aArg3: UnicodeString; aArg4: WideString); +begin + if aArg1 <> 'hello' then + Halt(1); + if aArg2 <> 'world' then + Halt(2); + if aArg3 <> 'foo' then + Halt(3); + if aArg4 <> 'bar' then + Halt(4); + ok := True; +end; + +var + a: TValueArray; +begin + a := [ShortString('hello'), AnsiString('world'), UnicodeString('foo'), WideString('bar')]; + Invoke(@p,a,ccReg,nil,false,false); + if not ok then + Halt(5); +end. +