mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-06-07 09:28:03 +08:00
111 lines
2.9 KiB
C++
111 lines
2.9 KiB
C++
#include "pch.h"
|
|
#include "KeyboardHook.h"
|
|
#include <exception>
|
|
#include <msclr\marshal.h>
|
|
#include <msclr\marshal_cppstd.h>
|
|
#include <common/debug_control.h>
|
|
|
|
using namespace interop;
|
|
using namespace System::Runtime::InteropServices;
|
|
using namespace System;
|
|
using namespace System::Diagnostics;
|
|
|
|
KeyboardHook::KeyboardHook(
|
|
KeyboardEventCallback ^ keyboardEventCallback,
|
|
IsActiveCallback ^ isActiveCallback,
|
|
FilterKeyboardEvent ^ filterKeyboardEvent)
|
|
{
|
|
kbEventDispatch = gcnew Thread(gcnew ThreadStart(this, &KeyboardHook::DispatchProc));
|
|
queue = gcnew Queue<KeyboardEvent ^>();
|
|
this->keyboardEventCallback = keyboardEventCallback;
|
|
this->isActiveCallback = isActiveCallback;
|
|
this->filterKeyboardEvent = filterKeyboardEvent;
|
|
}
|
|
|
|
KeyboardHook::~KeyboardHook()
|
|
{
|
|
quit = true;
|
|
|
|
// Notify the DispatchProc thread so that it isn't stuck at the Wait step
|
|
Monitor::Enter(queue);
|
|
Monitor::Pulse(queue);
|
|
Monitor::Exit(queue);
|
|
|
|
kbEventDispatch->Join();
|
|
|
|
// Unregister low level hook procedure
|
|
UnhookWindowsHookEx(hookHandle);
|
|
}
|
|
|
|
void KeyboardHook::DispatchProc()
|
|
{
|
|
Monitor::Enter(queue);
|
|
quit = false;
|
|
while (!quit)
|
|
{
|
|
if (queue->Count == 0)
|
|
{
|
|
Monitor::Wait(queue);
|
|
continue;
|
|
}
|
|
auto nextEv = queue->Dequeue();
|
|
|
|
// Release lock while callback is being invoked
|
|
Monitor::Exit(queue);
|
|
|
|
keyboardEventCallback->Invoke(nextEv);
|
|
|
|
// Re-aquire lock
|
|
Monitor::Enter(queue);
|
|
}
|
|
|
|
Monitor::Exit(queue);
|
|
}
|
|
|
|
void KeyboardHook::Start()
|
|
{
|
|
hookProc = gcnew HookProcDelegate(this, &KeyboardHook::HookProc);
|
|
Process ^ curProcess = Process::GetCurrentProcess();
|
|
ProcessModule ^ curModule = curProcess->MainModule;
|
|
#if defined(DISABLE_LOWLEVEL_HOOKS_WHEN_DEBUGGED)
|
|
const bool hookDisabled = IsDebuggerPresent();
|
|
#else
|
|
const bool hookDisabled = false;
|
|
#endif
|
|
if (!hookDisabled)
|
|
{
|
|
// register low level hook procedure
|
|
hookHandle = SetWindowsHookEx(
|
|
WH_KEYBOARD_LL,
|
|
(HOOKPROC)(void*)Marshal::GetFunctionPointerForDelegate(hookProc),
|
|
0,
|
|
0);
|
|
if (hookHandle == nullptr)
|
|
{
|
|
throw std::exception("SetWindowsHookEx failed.");
|
|
}
|
|
}
|
|
|
|
kbEventDispatch->Start();
|
|
}
|
|
|
|
LRESULT CALLBACK KeyboardHook::HookProc(int nCode, WPARAM wParam, LPARAM lParam)
|
|
{
|
|
if (nCode == HC_ACTION && isActiveCallback->Invoke())
|
|
{
|
|
KeyboardEvent ^ ev = gcnew KeyboardEvent();
|
|
ev->message = wParam;
|
|
ev->key = reinterpret_cast<KBDLLHOOKSTRUCT*>(lParam)->vkCode;
|
|
if (filterKeyboardEvent != nullptr && !filterKeyboardEvent->Invoke(ev))
|
|
{
|
|
return CallNextHookEx(hookHandle, nCode, wParam, lParam);
|
|
}
|
|
|
|
Monitor::Enter(queue);
|
|
queue->Enqueue(ev);
|
|
Monitor::Pulse(queue);
|
|
Monitor::Exit(queue);
|
|
return 1;
|
|
}
|
|
return CallNextHookEx(hookHandle, nCode, wParam, lParam);
|
|
} |