mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-21 22:24:07 +01:00
improved browser extension
This commit is contained in:
parent
68a96e3be8
commit
38bceba5ec
1 changed files with 28 additions and 2 deletions
|
@ -27,13 +27,29 @@ namespace {
|
||||||
|
|
||||||
void runLoop(NativeMessagingClient &client)
|
void runLoop(NativeMessagingClient &client)
|
||||||
{
|
{
|
||||||
|
auto received_message = std::make_shared<std::atomic_bool>(true);
|
||||||
|
|
||||||
|
auto thread = std::thread([=]() {
|
||||||
|
while (true)
|
||||||
|
{
|
||||||
|
using namespace std::chrono_literals;
|
||||||
|
if (!received_message->exchange(false))
|
||||||
|
{
|
||||||
|
_Exit(1);
|
||||||
|
}
|
||||||
|
std::this_thread::sleep_for(5s);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
while (true)
|
while (true)
|
||||||
{
|
{
|
||||||
char size_c[4];
|
char size_c[4];
|
||||||
std::cin.read(size_c, 4);
|
std::cin.read(size_c, 4);
|
||||||
|
|
||||||
if (std::cin.eof())
|
if (std::cin.eof())
|
||||||
|
{
|
||||||
break;
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
auto size = *reinterpret_cast<uint32_t *>(size_c);
|
auto size = *reinterpret_cast<uint32_t *>(size_c);
|
||||||
|
|
||||||
|
@ -54,8 +70,18 @@ namespace {
|
||||||
std::cin.read(buffer.get(), size);
|
std::cin.read(buffer.get(), size);
|
||||||
*(buffer.get() + size) = '\0';
|
*(buffer.get() + size) = '\0';
|
||||||
|
|
||||||
client.sendMessage(QByteArray::fromRawData(
|
auto data = QByteArray::fromRawData(buffer.get(),
|
||||||
buffer.get(), static_cast<int32_t>(size)));
|
static_cast<int32_t>(size));
|
||||||
|
auto doc = QJsonDocument();
|
||||||
|
|
||||||
|
if (doc.object().value("type") == "nm_pong")
|
||||||
|
{
|
||||||
|
received_message->store(true);
|
||||||
|
}
|
||||||
|
|
||||||
|
received_message->store(true);
|
||||||
|
|
||||||
|
client.sendMessage(data);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} // namespace
|
} // namespace
|
||||||
|
|
Loading…
Reference in a new issue