mirror-chatterino2/src/BrowserExtension.cpp

99 lines
2.4 KiB
C++
Raw Normal View History

2018-08-02 14:23:27 +02:00
#include "BrowserExtension.hpp"
#include "singletons/NativeMessaging.hpp"
#include <QStringList>
#include <QTimer>
#include <fstream>
#include <iostream>
#include <memory>
#ifdef Q_OS_WIN
2018-08-15 22:46:20 +02:00
# include <fcntl.h>
# include <io.h>
# include <stdio.h>
2018-08-02 14:23:27 +02:00
#endif
namespace chatterino {
namespace {
2018-08-15 22:46:20 +02:00
void initFileMode()
{
2018-08-02 14:23:27 +02:00
#ifdef Q_OS_WIN
2018-08-15 22:46:20 +02:00
_setmode(_fileno(stdin), _O_BINARY);
_setmode(_fileno(stdout), _O_BINARY);
2018-08-02 14:23:27 +02:00
#endif
2018-08-15 22:46:20 +02:00
}
2018-08-02 14:23:27 +02:00
2018-08-15 22:46:20 +02:00
void runLoop(NativeMessagingClient &client)
{
2019-08-25 21:25:31 +02:00
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);
}
});
2018-10-21 13:43:02 +02:00
while (true)
{
2018-08-15 22:46:20 +02:00
char size_c[4];
std::cin.read(size_c, 4);
2018-08-02 14:23:27 +02:00
2018-10-21 13:43:02 +02:00
if (std::cin.eof())
2019-08-25 21:25:31 +02:00
{
2018-10-21 13:43:02 +02:00
break;
2019-08-25 21:25:31 +02:00
}
2018-08-02 14:23:27 +02:00
2018-08-15 22:46:20 +02:00
auto size = *reinterpret_cast<uint32_t *>(size_c);
2018-08-02 14:23:27 +02:00
#if 0
bool bigEndian = isBigEndian();
// To avoid breaking strict-aliasing rules and potentially inducing undefined behaviour, the following code can be run instead
uint32_t size = 0;
if (bigEndian) {
size = size_c[3] | static_cast<uint32_t>(size_c[2]) << 8 |
static_cast<uint32_t>(size_c[1]) << 16 | static_cast<uint32_t>(size_c[0]) << 24;
} else {
size = size_c[0] | static_cast<uint32_t>(size_c[1]) << 8 |
static_cast<uint32_t>(size_c[2]) << 16 | static_cast<uint32_t>(size_c[3]) << 24;
}
#endif
2018-08-15 22:46:20 +02:00
std::unique_ptr<char[]> buffer(new char[size + 1]);
std::cin.read(buffer.get(), size);
*(buffer.get() + size) = '\0';
2018-08-02 14:23:27 +02:00
2019-08-25 21:25:31 +02:00
auto data = QByteArray::fromRawData(buffer.get(),
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);
2018-08-15 22:46:20 +02:00
}
2018-08-02 14:23:27 +02:00
}
} // namespace
void runBrowserExtensionHost()
{
initFileMode();
NativeMessagingClient client;
runLoop(client);
}
} // namespace chatterino