40 lines
1.4 KiB
C++
40 lines
1.4 KiB
C++
#include <optional>
|
|
|
|
#include <hex/api/imhex_api.hpp>
|
|
#include <hex/api/events/events_lifecycle.hpp>
|
|
#include <hex/api/events/requests_lifecycle.hpp>
|
|
#include <hex/helpers/logger.hpp>
|
|
|
|
#include "messaging.hpp"
|
|
|
|
namespace hex::messaging {
|
|
|
|
void messageReceived(const std::string &eventName, const std::vector<u8> &args) {
|
|
log::debug("Received event '{}' with size {}", eventName, args.size());
|
|
ImHexApi::Messaging::impl::runHandler(eventName, args);
|
|
}
|
|
|
|
void setupEvents() {
|
|
SendMessageToMainInstance::subscribe([](const std::string &eventName, const std::vector<u8> &eventData) {
|
|
if (ImHexApi::System::isMainInstance()) {
|
|
log::debug("Executing message '{}' in current instance", eventName);
|
|
EventImHexStartupFinished::subscribe([eventName, eventData]{
|
|
ImHexApi::Messaging::impl::runHandler(eventName, eventData);
|
|
});
|
|
} else {
|
|
log::debug("Forwarding message '{}' to existing instance", eventName);
|
|
sendToOtherInstance(eventName, eventData);
|
|
}
|
|
});
|
|
|
|
EventNativeMessageReceived::subscribe([](const std::string &eventName, const std::vector<u8> &eventData) {
|
|
messageReceived(eventName, eventData);
|
|
});
|
|
}
|
|
|
|
void setupMessaging() {
|
|
ImHexApi::System::impl::setMainInstanceStatus(setupNative());
|
|
setupEvents();
|
|
}
|
|
}
|