PowerToys/src/runner/powertoy_module.cpp

69 lines
2.0 KiB
C++
Raw Normal View History

#include "pch.h"
#include "powertoy_module.h"
#include "centralized_kb_hook.h"
2021-03-27 01:17:26 +08:00
#include <common/logger/logger.h>
std::map<std::wstring, PowertoyModule>& modules()
2019-12-27 00:26:11 +08:00
{
static std::map<std::wstring, PowertoyModule> modules;
2019-12-27 00:26:11 +08:00
return modules;
}
PowertoyModule load_powertoy(const std::wstring_view filename)
2019-12-27 00:26:11 +08:00
{
auto handle = winrt::check_pointer(LoadLibraryW(filename.data()));
2019-12-27 00:26:11 +08:00
auto create = reinterpret_cast<powertoy_create_func>(GetProcAddress(handle, "powertoy_create"));
if (!create)
{
FreeLibrary(handle);
winrt::throw_last_error();
}
auto pt_module = create();
if (!pt_module)
2019-12-27 00:26:11 +08:00
{
FreeLibrary(handle);
winrt::throw_hresult(winrt::hresult(E_POINTER));
2019-12-27 00:26:11 +08:00
}
return PowertoyModule(pt_module, handle);
}
2019-12-27 00:26:11 +08:00
json::JsonObject PowertoyModule::json_config() const
{
int size = 0;
pt_module->get_config(nullptr, &size);
2019-12-27 00:26:11 +08:00
std::wstring result;
result.resize(size - 1);
pt_module->get_config(result.data(), &size);
2019-12-27 00:26:11 +08:00
return json::JsonObject::Parse(result);
}
PowertoyModule::PowertoyModule(PowertoyModuleIface* pt_module, HMODULE handle) :
handle(handle), pt_module(pt_module)
{
if (!pt_module)
{
throw std::runtime_error("Module not initialized");
}
update_hotkeys();
}
void PowertoyModule::update_hotkeys()
{
CentralizedKeyboardHook::ClearModuleHotkeys(pt_module->get_key());
size_t hotkeyCount = pt_module->get_hotkeys(nullptr, 0);
std::vector<PowertoyModuleIface::Hotkey> hotkeys(hotkeyCount);
pt_module->get_hotkeys(hotkeys.data(), hotkeyCount);
auto modulePtr = pt_module.get();
for (size_t i = 0; i < hotkeyCount; i++)
{
CentralizedKeyboardHook::SetHotkeyAction(pt_module->get_key(), hotkeys[i], [modulePtr, i] {
2021-03-27 01:17:26 +08:00
Logger::trace(L"{} hotkey is invoked from Centralized keyboard hook", modulePtr->get_key());
return modulePtr->on_hotkey(i);
});
}
}