Log4net,将日志消息从 c++ dll 发送到 c# 应用程序?

Log4net, sending log messages from a c++ dll to a c# application?

本文关键字:应用程序 dll c++ 日志 消息 Log4net      更新时间:2023-10-16

我有一个使用 Log4Net 进行日志记录的 WPF/c# 应用程序。此应用程序使用以下方法调用几个 c++ dll:

[DllImport("test.dll", CallingConvention = CallingConvention.Cdecl)] public static extern void TestFunction();

我想做的是让 dll 将日志记录消息发送回 C# 应用程序,以便 c++ 和 c# 中的所有内容都转到同一日志。这可能吗?

如果是这样,我该怎么做?

将c++ dill中的日志重定向到 c# 回调的示例:

C# 端:

[UnmanagedFunctionPointer(CallingConvention.StdCall)]
delegate void LogCallback([MarshalAs(UnmanagedType.LPWStr)] string info);
namespace WinApp
{
static class Wrapper
{
[DllImport("target.dll", CharSet = CharSet.Unicode, CallingConvention = CallingConvention.Cdecl)]
public static extern void SetLogCallback([MarshalAs(UnmanagedType.FunctionPtr)] LogCallback callbackPointer);
internal static void Init()
{
LogCallback log_cb = (info) =>
{
Console.Write(DateTime.Now.TimeOfDay.ToString() + " " + info);
};
SetLogCallback(log_cb);
}
}

C++端(编译target.dll(:

extern "C" {
typedef char* (__stdcall* LogCallback)(const wchar_t* info);
PEPARSER_API void SetLogCallback(LogCallback cb);
}
static LogCallback global_log_cb = nullptr;

void LogInfo(const wchar_t* info) {
if (global_log_cb) {
std::wstring buf = L"[PEParse]" + std::wstring(info) + L"n";
global_log_cb(buf.c_str());
}
else {
std::cout << "global_log_cb not setn";
}
}
void LogInfo(const char* info) {
const size_t cSize = strlen(info) + 1;
size_t t;
std::wstring wstr(cSize, L'#');
mbstowcs_s(&t, &wstr[0], cSize, info, cSize - 1);
LogInfo(&wstr[0]);
}
void SetLogCallback(LogCallback cb) {
global_log_cb = cb;
LogInfo("log init");
}

我已经使用这个界面很长时间了。