gpt4 book ai didi

delphi - 了解从 tkSet 中选择的 tkEnumeration

转载 作者:行者123 更新时间:2023-12-03 15:56:09 25 4
gpt4 key购买 nike

我需要执行一个函数来了解对象中所有已发布的属性及其值。我已经完成了一个函数来执行此操作(除了 tkSet 属性之外)。我可以从 tkSet 获取 tkEnumeration 元素,但我不知道如何知道是否选择了 tkEnumeration。

这是我的函数

  procedure TForm1.GetObjectProperties(Obj: TObject; List: TStrings;
Level: Integer);

function GetSubPropObject(Obj: TObject; APropName: string): TObject;
var
PropInfo: PPropInfo;
begin
Result := nil;
try
PropInfo := GetPropInfo(Obj, APropName);
if Assigned(PropInfo) and (PropInfo.PropType^.Kind in [tkClass]) then
begin
Result := GetObjectProp(Obj, PropInfo);
end;
except
on E: Exception do
List.Add(Obj.ClassName + ' ----- ' + E.Message);
end;
end;

// ==> with this procedure I obtains the tkEnumeration elements from a tkSet
procedure GetSetInformation(AOrdTypeInfo: PTypeInfo; Space: string);
var
OrdTypeData: PTypeData;
TypeNameStr: string;
TypeKindStr: string;
MinVal, MaxVal: Integer;
i: integer;
begin
Space := Space + ' ';
// Get the TTypeData pointer
OrdTypeData := GetTypeData(AOrdTypeInfo);
// Get the type name string
//TypeNameStr := string(AOrdTypeInfo.Name);
// Get the type kind string
//TypeKindStr := GetEnumName(TypeInfo(TTypeKind), Integer(AOrdTypeInfo^.Kind));

MinVal := OrdTypeData^.MinValue;
MaxVal := OrdTypeData^.MaxValue;

if AOrdTypeInfo^.Kind = tkSet then
GetSetInformation(OrdTypeData^.CompType^, Space);

if AOrdTypeInfo^.Kind = tkEnumeration then
for i := MinVal to MaxVal do
List.Add(Space + GetEnumName(AOrdTypeInfo, i));
end;
var
ctx: TRttiContext;
rt: TRttiType;
prop: TRttiProperty;
Tmp: string;
i: Integer;
begin
if not Assigned(Obj) or not Assigned(List) then Exit;

Tmp := '';
for i := 0 to (Level * 10) do
Tmp := Tmp + ' ';

ctx := TRttiContext.Create;
try
rt := ctx.GetType(Obj.ClassType);

for prop in rt.GetProperties do
begin
if not prop.IsWritable then
Continue;
if TRttiInstanceType(prop.PropertyType).TypeKind in [tkMethod, tkPointer] then
Continue;
if prop.Visibility <> mvPublished then
Continue;

try
//List.Add(Tmp + prop.Name + ' (' + string(prop.GetValue(Obj).TypeInfo.Name) + '): ' + prop.GetValue(Obj).ToString);
case TRttiInstanceType(prop.PropertyType).TypeKind of
tkInteger, tkInt64:
List.Add(Tmp + prop.Name + ' (' + string(prop.GetValue(Obj).TypeInfo.Name) + '): ' + IntToStr(prop.GetValue(Obj).AsInteger));
tkFloat:
List.Add(Tmp + prop.Name + ' (' + string(prop.GetValue(Obj).TypeInfo.Name) + '): ' + FloatToStr(prop.GetValue(Obj).AsExtended));
tkChar, tkString, tkWChar, tkLString, tkWString, tkUString:
List.Add(Tmp + prop.Name + ' (' + string(prop.GetValue(Obj).TypeInfo.Name) + '): ' + prop.GetValue(Obj).AsString);
tkEnumeration:
List.Add(Tmp + prop.Name + ' (' + string(prop.GetValue(Obj).TypeInfo.Name) + '): ' + GetEnumName(prop.GetValue(Obj).TypeInfo, Ord(prop.GetValue(Obj).Kind)));
tkSet:
begin
List.Add(Tmp + prop.Name + ' (' + string(prop.GetValue(Obj).TypeInfo.Name) + '): ');
GetSetInformation(prop.GetValue(Obj).TypeInfo, Tmp);
end;
else
List.Add(Tmp + prop.Name + ' (' + string(prop.GetValue(Obj).TypeInfo.Name) + ') ' + ' --- ' + GetEnumName(TypeInfo(TTypeKind), Ord(TRttiInstanceType(prop.PropertyType).TypeKind)));
end;
except
List.Add(Tmp + prop.Name + ' ERROR TypeCast');
end;

if TRttiInstanceType(prop.PropertyType).TypeKind = tkClass then
GetObjectProperties(GetSubPropObject(Obj, prop.Name), List, Level + 1);
end;
finally
ctx.Free;
end;
end;

有什么解决办法吗?谢谢!

最佳答案

它不太适合当前编写的输出格式,但您只需使用集合的 ToString 方法即可获取集合成员值的字符串表示形式值(value)本身。

那么,您目前所在的位置:

       tkSet:
begin
List.Add(Tmp + prop.Name + ' (' + string(prop.GetValue(Obj).TypeInfo.Name) + '): ');
GetSetInformation(prop.GetValue(Obj).TypeInfo, Tmp);
end;

例如,在表单上默认 anchor 的情况下,将输出:

Anchors:
akLeft
akTop
akRight
akBottom

你可以这样写:

       tkSet:
begin
List.Add(Tmp + prop.Name + ' (' + string(prop.GetValue(Obj).TypeInfo.Name) + '): ' + prop.GetValue(Obj).ToString);
end;

对于表单上 Anchors 属性的相同默认值,现在将输出:

Anchors: [akLeft,akTop]

如果您需要转换为实际的枚举值或以其他格式呈现它们,那么从该字符串中提取各个成员名称并使用它们来获取值或以任何格式呈现数据应该是一个相对简单的练习你需要。

关于delphi - 了解从 tkSet 中选择的 tkEnumeration,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38192934/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com