0

我正在开发一个应用程序Delphi 7,它将运行并显示由FastMM4.pas.

该应用程序将安装在系统的任何位置。我已经修改了它,FastMM4.pas以便它CreateProcess(简而言之执行我的应用程序)我 以前的问题Sertac Akyuz 的答案中的代码

leakTracker.exefastmm4的日志文件作为参数,打开文件并显示。修改后的fastMM4.pas将用于任何其他应用程序。

Procedure OpenTheLeakReader
 begin
 CmdLine := 'C:\Program Files\leakTracker\leakTracker.exe "';  
 lstrcat(CmdLine,CTheArGuements ); 
 ZeroMemory(@SInfo, SizeOf(SInfo));
 SInfo.cb := SizeOf(SInfo);
 CreateProcess(nil, CmdLine, nil, nil, False,  NORMAL_PRIORITY_CLASS, nil, nil, sInfo, pInfo);
end;

这工作正常,但我已经硬编码了path因为得到我的应用程序路径..

                 [FastMM4]  -cannot use SysUtils.pas     //*1
                            -cannot use Registry.pas     //*2
                            -cannot use ParamStr(0)      //*3
                            -cannot use unitWithSysRegis //*4

                 [someAplicationWhichWillUseFastMM4] -Uses FastMM4.pas  

FAstMM4.pas finalization我有这个

          if ifLeakedMemory then OpenTheLeakReader;

因为我不能拥有

*1 - SysUtils.pas- 在 FastMM4.pass 中,因为这将卸载 fastmmm4

*2 - Registry.pas- 搜索leakTracker安装路径但会卸载 fastmm4

*3 - paramstr(0) - 它在应用程序结束时给出错误。

*4 - unitWithSysRegis- 使用 SysUtils,Registry 在 Fastm4 使用子句中也是不可能的。

所以我被困在如何leakTracker.exe通过CreateProcess获取日志文件的路径并将其发送到“leakTracker.exe”。

4

1 回答 1

2

(首先解释一下(关于问题中的链接问题),这个问题不仅仅是不能在 FastMM4.pas 中使用单元(具有需要内存分配的初始化部分)。OP认为他的代码必须在 FastMM 之后运行最终确定内存管理器。如果在此之后分配内存,FastMM 会引发异常,因此禁止通过 RTL 分配内存。)


使用上一个问题中指出的 api 注册表函数或 Blorgbeard 对此问题的评论。结合前面的代码,它会变成这样:

var
  hReg: HKEY;
  Ret: Longint;
  RegDataType, RegDataSize: DWORD;
  CmdLine: array [0..560] of Char; // increase as needed
  Len: Integer;
  SInfo: TStartupInfo;
  PInfo: TProcessInformation;


initialization
{$ifndef BCB}
  // fastmm code
{$endif}

finalization
{$ifndef PatchBCBTerminate}
  FinalizeMemoryManager;  // fastmm code



  Ret := windows.RegOpenKeyEx(HKEY_LOCAL_MACHINE,
                  'SOFTWARE\[YourProgram]', // registry key to your program's path
                  0, KEY_READ, hReg);

  RegDataType := REG_SZ;
  RegDataSize := 260;
  Ret := windows.RegQueryValueEx(hReg,
                  'path',       // registry value containing your program's path
                  nil, @RegDataType, @CmdLine, @RegDataSize);
  RegCloseKey(hReg);

  CmdLine[RegDataSize - 1] := ' ';
  CmdLine[RegDataSize] := '"';     // open doublequote in case spaces in path
  Len := windows.GetModuleFileName(0,
          PChar(@CmdLine[RegDataSize + 1]), 260) + RegDataSize;

  while CmdLine[Len] <> '.' do     // assumes executable has an extension
    Dec(Len);
  CmdLine[Len] := #0;
  lstrcat(CmdLine, '_MemoryManager_EventLog.txt"'#0);  // closing doublequote

  ZeroMemory(@SInfo, SizeOf(SInfo));
  SInfo.cb := SizeOf(SInfo);
  CreateProcess(nil, CmdLine, nil, nil, False,
                NORMAL_PRIORITY_CLASS, nil, nil, sInfo, pInfo);

{$endif}
end.
于 2012-06-09T12:57:33.057 回答