2021-04-26 22:01:38 +03:00
|
|
|
|
#include "pch.h"
|
|
|
|
|
|
#include <common/utils/window.h>
|
|
|
|
|
|
#include <common/utils/ProcessWaiter.h>
|
|
|
|
|
|
#include <common/utils/winapi_error.h>
|
|
|
|
|
|
#include <common/utils/logger_helper.h>
|
2021-05-07 11:16:31 +03:00
|
|
|
|
#include <common/utils/UnhandledExceptionHandler_x64.h>
|
2021-04-26 22:01:38 +03:00
|
|
|
|
#include <keyboardmanager/common/KeyboardManagerConstants.h>
|
|
|
|
|
|
#include <keyboardmanager/KeyboardManagerEngineLibrary/KeyboardManager.h>
|
|
|
|
|
|
#include <keyboardmanager/KeyboardManagerEngineLibrary/trace.h>
|
|
|
|
|
|
|
|
|
|
|
|
const std::wstring instanceMutexName = L"Local\\PowerToys_KBMEngine_InstanceMutex";
|
|
|
|
|
|
|
2021-04-27 18:56:59 +03:00
|
|
|
|
int WINAPI wWinMain(_In_ HINSTANCE hInstance, _In_opt_ HINSTANCE hPrevInstance, _In_ PWSTR lpCmdLine, _In_ int nCmdShow)
|
2021-04-26 22:01:38 +03:00
|
|
|
|
{
|
2021-04-27 18:56:59 +03:00
|
|
|
|
winrt::init_apartment();
|
2021-04-26 22:01:38 +03:00
|
|
|
|
LoggerHelpers::init_logger(KeyboardManagerConstants::ModuleName, L"Engine", LogSettings::keyboardManagerLoggerName);
|
|
|
|
|
|
|
|
|
|
|
|
InitUnhandledExceptionHandler_x64();
|
|
|
|
|
|
|
|
|
|
|
|
auto mutex = CreateMutex(nullptr, true, instanceMutexName.c_str());
|
|
|
|
|
|
if (mutex == nullptr)
|
|
|
|
|
|
{
|
|
|
|
|
|
Logger::error(L"Failed to create mutex. {}", get_last_error_or_default(GetLastError()));
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (GetLastError() == ERROR_ALREADY_EXISTS)
|
|
|
|
|
|
{
|
|
|
|
|
|
Logger::warn(L"KBM engine instance is already running");
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Trace::RegisterProvider();
|
|
|
|
|
|
|
|
|
|
|
|
std::wstring pid = std::wstring(lpCmdLine);
|
|
|
|
|
|
if (!pid.empty())
|
|
|
|
|
|
{
|
|
|
|
|
|
auto mainThreadId = GetCurrentThreadId();
|
|
|
|
|
|
ProcessWaiter::OnProcessTerminate(pid, [mainThreadId](int err) {
|
|
|
|
|
|
if (err != ERROR_SUCCESS)
|
|
|
|
|
|
{
|
|
|
|
|
|
Logger::error(L"Failed to wait for parent process exit. {}", get_last_error_or_default(err));
|
|
|
|
|
|
}
|
|
|
|
|
|
else
|
|
|
|
|
|
{
|
|
|
|
|
|
Logger::trace(L"PowerToys runner exited.");
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Logger::trace(L"Exiting KeyboardManager engine");
|
|
|
|
|
|
PostThreadMessage(mainThreadId, WM_QUIT, 0, 0);
|
|
|
|
|
|
});
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
auto kbm = KeyboardManager();
|
|
|
|
|
|
kbm.StartLowlevelKeyboardHook();
|
|
|
|
|
|
|
|
|
|
|
|
run_message_loop();
|
|
|
|
|
|
|
|
|
|
|
|
kbm.StopLowlevelKeyboardHook();
|
|
|
|
|
|
Trace::UnregisterProvider();
|
|
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
}
|