delphi程序中如何截获第三方库打印到std err的信息

第三方库很多Log输出是fprintf到std err的信息,调试的时候为了显示这些信息,我们需要给delphi gui程序绑定一个控制台窗口,下面的函数

  1. procedure AllocateDebugConsole;
  2. var
  3. StdOutHandle, StdErrHandle, StdInHandle: THandle;
  4. Success: Boolean;
  5. begin
  6. // 尝试分配一个控制台窗口
  7. if AllocConsole then
  8. begin
  9. // AllocConsole 成功后,进程的标准句柄已指向新控制台
  10. // 现在需要让 Delphi 的标准 TextFile 变量使用这些新句柄
  11.  
  12. try
  13. // 重新打开 ErrOutput,使其关联到新的 STD_ERROR_HANDLE
  14. Rewrite(ErrOutput); // <--- 使用 Rewrite
  15. WriteLn(ErrOutput, 'ErrOutput redirected.');
  16.  
  17. // 重新打开 Output,使其关联到新的 STD_OUTPUT_HANDLE
  18. Rewrite(Output); // <--- 使用 Rewrite
  19. WriteLn(Output, 'Output redirected.');
  20.  
  21. // 重新打开 Input,使其关联到新的 STD_INPUT_HANDLE
  22. Reset(Input); // <--- 使用 Reset
  23. // WriteLn(Output, 'Input redirected.'); // 不容易测试Input,先注释掉
  24.  
  25. // 可选:设置控制台标题
  26. SetConsoleTitle('Debug Output Console');
  27. Flush(ErrOutput);
  28. Flush(Output);
  29. except
  30. on E: Exception do
  31. begin
  32. // 如果 Rewrite/Reset 失败 (虽然不太可能在成功 AllocConsole 后立即失败)
  33. OutputDebugString(PChar('Failed to redirect standard handles: ' + E.Message));
  34. end;
  35. end;
  36. end
  37. else
  38. begin
  39. // 分配控制台失败
  40. // OutputDebugString(PChar('Failed to allocate console: ' + SysErrorMessage(GetLastError)));
  41. end;
  42. end;
  43.  
  44. 用法
  45.  
  46. begin
  47. AllocateDebugConsole; <----add at here
  48. Application.Initialize;
  49. Application.CreateForm(TFormMain, FormMain);
  50. Application.Run;
  51. end.