- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 Delphi DLL,需要从我的主 UI 应用程序或工作线程调用它。
我不想每次调用 DLL 时都调用 LoadLibrary/FreeLibrary。但是,我也不想在我的应用程序初始化部分加载它。因为我可能在应用程序的生命周期内根本不使用 DLL。
所以我需要的是第一个调用者(线程或主 UI)来初始化和加载 DLL。DLL 将在终结部分卸载。我意识到我需要一些同步。所以我使用了一个关键部分,但我似乎无法让它工作。
只有一个 线程应该尝试加载DLL。如果失败,其他线程不应尝试一次又一次地加载 DLL。
同步未按预期工作!
有人可以提出原因吗?
MCVE:
program Project1;
{$APPTYPE CONSOLE}
uses
Windows,
SysUtils,
Classes;
const
MyDLL = 'MyDLL.dll';
type
TDLLProcessProc = function(A: Integer): Integer; stdcall;
var
DLLProc: TDLLProcessProc = nil;
DLLModule: HMODULE = 0;
DLLInitialized: Boolean = False;
DLLInitialized_OK: Boolean = False;
CS: TRTLCriticalSection;
procedure InitDLLByFirstCall;
begin
if DLLModule = 0 then
begin
if DLLInitialized then Exit;
EnterCriticalSection(CS);
try
if DLLInitialized then Exit;
DLLInitialized := True;
DLLModule := LoadLibrary(MyDLL);
if DLLModule = 0 then RaiseLastWin32Error;
DLLProc := GetProcAddress(DLLModule, 'Process');
if @DLLProc = nil then RaiseLastWin32Error;
DLLInitialized_OK := True;
finally
LeaveCriticalSection(CS);
end;
end;
end;
function DLLProcess(A: Integer): Integer;
begin
InitDLLByFirstCall;
if not DLLInitialized_OK then
raise Exception.Create('DLL was not initialized OK');
Result := DLLProc(A);
end;
type
TDLLThread = class(TThread)
private
FNum: Integer;
public
constructor Create(CreateSuspended: Boolean; ANum: Integer);
procedure Execute; override;
end;
constructor TDLLThread.Create(CreateSuspended: Boolean; ANum: Integer);
begin
FreeOnTerminate := True;
FNum := ANum;
inherited Create(CreateSuspended);
end;
procedure TDLLThread.Execute;
var
RetValue: Integer;
begin
try
RetValue := DLLProcess(FNum);
Sleep(0);
Writeln('TDLLThread Result=> ' + IntToStr(RetValue));
except
on E: Exception do
begin
Writeln('TDLLThread Error: ' + E.Message);
end;
end;
end;
var
I: Integer;
begin
InitializeCriticalSection(CS);
try
// First 10 thread always fail!
for I := 1 to 10 do
TDLLThread.Create(False, I);
Readln;
for I := 1 to 10 do
TDLLThread.Create(False, I);
Readln;
finally
DeleteCriticalSection(CS);
end;
end.
动态链接库:
library MyDLL;
uses
Windows;
{$R *.res}
function Process(A: Integer): Integer; stdcall;
begin
Result := A;
end;
exports
Process;
begin
IsMultiThread := True;
end.
最佳答案
您需要修改您的代码,以便仅在所有初始化完成后设置在 InitDLLByFirstCall
开始时检查的条件变量。因此,DLL 句柄是一个糟糕的选择。
其次,您需要在临界区内外使用相同的条件变量 - 如果为此使用 DLLInitialized
,那么 DLLInitialized_OK
也不是 DLLModule
。
为了让事情更容易推理,您应该尝试使用最少数量的变量。像下面这样的东西应该可以工作:
var
DLLProc: TDLLProcessProc = nil;
DLLInitialized: Boolean = False;
CS: TRTLCriticalSection;
procedure InitDLLByFirstCall;
var
DLLModule: HMODULE;
begin
if DLLInitialized then
Exit;
EnterCriticalSection(CS);
try
if not DLLInitialized then
try
DLLModule := LoadLibrary(MyDLL);
Win32Check(DLLModule <> 0);
DLLProc := GetProcAddress(DLLModule, 'Process');
Win32Check(Assigned(DLLProc));
finally
DLLInitialized := True;
end;
finally
LeaveCriticalSection(CS);
end;
end;
function DLLProcess(A: Integer): Integer;
begin
InitDLLByFirstCall;
if @DLLProc = nil then
raise Exception.Create('DLL was not initialized OK');
Result := DLLProc(A);
end;
如果您不想检查 DLLProcess
中的函数地址,那么您还可以为 DLLInitialized
变量使用整数或枚举,为未初始化、失败和成功。
关于multithreading - 仅按需从 TThread 动态初始化和调用 LoadLibrary 一次,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34401028/
按安卓版本安卓 2.3.3 - 2.3.7 385 65.5%安卓 4.2 155 26.4%安卓 4.3 28 4.8%安卓 4.0.3 - 4.0.4 20 3.4% 按设备擎天柱 L3 (e0)
如果我使用 Win32 API LoadLibrary 连续 3 次加载相同的 DLL,它应该返回 3 个不同的句柄,并且每个库中的函数都应该有不同的地址,对吗? (或者它会做一些“智能”的事情并检测
已关闭。此问题需要 debugging details 。目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and the
我很难理解为什么 C++ 中同时需要 #include 和 LoadLibrary()。在 C++ 中,“#include”强制预处理器将 #include 行替换为您包含的文件的内容(通常是包含声明
我知道在 Linux 下,您可以使用 dlopen(NULL, RTLD_*) 获取调用程序的句柄。有没有办法在 Windows 中使用 LoadLibrary 这样做?我试过使用 LoadLibra
我有一个由 Jet excelsior 生成的 .dll,我试图从它们生成的调用 dll 中提取类。我正在关注他们最初用 c 语言完成的示例脚本。尽管进行了数小时的研究和故障排除,但我无法启动 Loa
我的目录结构如下: test dir a.dll <-- version 1 a.dll <-- version 2 myapp.exe 我预计 LoadLibrary("
我主要是一名 .net 开发人员,用 C++ 做一些小事,所以我遇到了一些麻烦。 我正在使用 hInst = LoadLibrary(TEXT("mydll.dll")); 加载另一个 C++ dll
if (LoadLibrary(L"d:\\cwebpage.dll")) MessageBox(0, L"Loaded", L"ERROR", MB_OK); else Message
我在想如果有几个类来包装 LoadLibrary 和 GetProcAddress、Library 和 Function struct Function { Function(Library&
来自 MSDN : The system maintains a per-process reference count on all loaded modules. Calling LoadLibr
我正在使用 Code::Blocks 并且讨厌手动链接 DLL。我找到了 LoadLibrary()功能,我想知道它是否像 .a 一样工作或 .lib文件会。这个功能是这样工作的吗?如果没有,我可以通
我的代码使用 LoadLibraryA("someDLL.dll");它开始搜索文件 someDLL.dll 的路径是什么?另一个问题:LoadLibraryA 函数是否区分大小写?我的意思是如果我有
我正在使用 CreateRemoteProcess 将一些汇编程序代码注入(inject)远程进程(64 位),然后加载一个 dll,但我在 LoadLibraryA 中得到一个 C0000005 E
我正在尝试使用 LoadLibrary(...) 函数,它接收一个字符串到文件名(.dll 或 .exe)或文件路径。我遇到的问题是文件名本身有多个句点/点。 例子: HINSTANCE hInst
是否可以在调用 LoadLibrary() 时静默捕获错误弹出窗口,例如“过程入口点 xxx 无法位于动态链接库 xxx 中”? 最佳答案 您可以通过调用 SetErrorMode() 来抑制错误弹出
我一直在做 JNA有一段时间了。但是有一件事,我一直没明白。例如,在加载库时: Map options = new HashMap(); options.put(Library.OPTION_CALL
我正在修复其他人的代码并注意到该人多次调用 LoadLibrary,如下所示: LoadLibrary("C:\\Windows\\SysWOW64\\msjint40"); LoadLibrary(
我给了我的软件用户一个从打开文件对话框中选择dll的机会。(这样我的用户就可以从我的网站下载dll并将其与主项目一起使用)。一切工作正常,它甚至可以发现 dll 是由我提供的或选择了无效的 dll。但
我一直在尝试使用 C++ 加载 32 位 dll(从 32 位应用程序,在 Windows 7 64 位上)。 LoadLibrary 返回 NULL,GetLastError 返回 126,表示“找
我是一名优秀的程序员,十分优秀!