gpt4 book ai didi

Delphi (Pascal) 检查每个字段是否赋值

转载 作者:行者123 更新时间:2023-12-03 18:18:03 27 4
gpt4 key购买 nike

我在 Delphi 中使用一个 windows dll,我必须检查我的功能是否分配得当。

我声明函数类型是为了将我的 dll 函数放在这样的类属性中:

type
MPOS_OpenResource = function (ResID: DWORD; CplNum:BYTE; BlockingMode: DWORD):WORD;stdcall;
MPOS_CloseResource = function (ResID: DWORD; CplNum:BYTE):WORD;stdcall;
MPOS_GetResourceID = function (CplNum : Byte; ResID : PDWord) : word;stdcall;
...

然后,我像这样为我的 dll 类中的每个对应字段分配一个方法:

@Self.m_MPOS_OpenResource := GetProcAddress( libHandler, '_MPOS_OpenResource@12' );
@Self.m_MPOS_CloseResource := GetProcAddress( libHandler, '_MPOS_CloseResource@8' );
@Self.m_MPOS_GetResourceID := GetProcAddress( libHandler, '_MPOS_GetResourceID@8');
...

最后我检查每个分配是否都使用了一个巨大的 if 子句:

If(not Assigned(@m_MPOS_OpenResource) OR
not Assigned(@m_MPOS_CloseResource) OR
not Assigned(@m_MPOS_GetResourceID) OR
...) then { Some code for exception}

我想避免使用反射的巨大 if 子句,但我找不到有效的东西。我尝试了很多东西,最后一个开始这个:

for f in rttiType.GetFields() do 
if(not Assigned(rttiType.GetField(f.Name).GetValue(Self))
OR (Self.FieldAddress(f.Name) = Nil)) then begin
ShowMessage('Field not assigned');
end;
end;

但它不起作用。有人可以帮帮我吗?

最佳答案

您可以编写一个包装函数来执行测试:

procedure CheckedGetProcAddress(libHandle: HMODULE; const name: string; var proc: Pointer);
begin
proc := GetProcAddress(libHandle, PChar(Name));
if not Assigned(Proc) then
raise EProcNotFound.Create(...);
end;

然后你写:

CheckedGetProcAddress(libHandler, '_MPOS_OpenResource@12', @@Self.m_MPOS_OpenResource);
CheckedGetProcAddress(libHandler, '_MPOS_CloseResource@8', @Self.m_MPOS_CloseResource);
CheckedGetProcAddress(libHandler, '_MPOS_GetResourceID@8', @Self.m_MPOS_GetResourceID);

FWIW,处理程序是错误的术语。这是一个模块句柄,因此您的变量应命名为 libHandle

关于Delphi (Pascal) 检查每个字段是否赋值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43049124/

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