1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
|
#include "Connection.hpp"
#include <QJsonDocument>
#include <QJsonParseError>
#include <QLocalServer>
#include <QLocalSocket>
#include <QString>
#include <QtDebug>
#include <vector>
using namespace Epistmool::Server;
namespace {
constexpr int kInvalidGeneration = 0;
} // namespace
ConnectionId ConnectionId::createInvalid()
{
return ConnectionId{
.index = 0,
.generation = kInvalidGeneration,
};
}
bool ConnectionId::isInvalid() const
{
return generation == kInvalidGeneration;
}
struct ConnectionManager::Connection
{
enum Type
{
Empty,
LocalSocket,
};
union
{
QLocalSocket* localSocket;
};
Type type = Empty;
int generation = kInvalidGeneration + 1;
void markEmpty()
{
type = Empty;
}
};
class ConnectionManager::Private
{
public:
static int findFreeConnectionObj(ConnectionManager& self)
{
for (int i = 0; i < self.mConnections.size(); ++i) {
auto& conn = self.mConnections[i];
if (conn.type == Connection::Empty) {
return i;
}
}
self.mConnections.push_back({});
return self.mConnections.size() - 1;
}
};
ConnectionManager::ConnectionManager(QObject* parent)
: QObject(parent)
{
}
ConnectionManager::~ConnectionManager() = default;
bool ConnectionManager::isLocalConnectionsEnabled() const
{
return mLocal != nullptr;
}
void ConnectionManager::setLocalConnectionsEnabled(bool enabled)
{
bool currentlyEnabled = isLocalConnectionsEnabled();
if (!currentlyEnabled && enabled) {
mLocal = new QLocalServer(this);
if (!mLocal->listen("queue")) {
qFatal("Failed to initialized event queue");
}
connect(mLocal, &QLocalServer::newConnection, mLocal, [&]() {
auto socket = mLocal->nextPendingConnection();
ConnectionId connId;
connId.index = Private::findFreeConnectionObj(*this);
auto& connObj = mConnections[connId.index];
connId.generation = connObj.generation++;
connObj.type = Connection::LocalSocket;
connObj.localSocket = socket;
connect(socket, &QLocalSocket::disconnected, socket, &QObject::deleteLater);
connect(socket, &QLocalSocket::disconnected, this, [this, connId]() {
mConnections[connId.index].markEmpty();
});
connect(socket, &QLocalSocket::readyRead, this, [this, socket, connId]() {
while (socket->canReadLine()) {
auto line = socket->readLine();
QJsonParseError error;
auto msg = QJsonDocument::fromJson(line, &error);
if (error.error != QJsonParseError::NoError) {
qWarning() << "Invalid message from client: " << error.errorString();
qWarning() << "Message: " << QString(line);
} else {
qDebug() << QString(line);
}
emit messageRecieved(msg, connId);
}
});
emit connectionEstablished(connId);
});
} else if (currentlyEnabled && !enabled) {
mLocal->deleteLater();
mLocal = nullptr;
}
}
void ConnectionManager::replyMessage(ConnectionId id, const QJsonDocument& message)
{
if (id.index < 0 || id.index >= mConnections.size()) {
return;
}
auto& conn = mConnections[id.index];
if (id.generation != conn.generation) {
return;
}
switch (conn.type) {
case Connection::Empty: return;
case Connection::LocalSocket: {
auto socket = conn.localSocket;
socket->write(message.toJson(QJsonDocument::Compact));
socket->flush();
} break;
}
}
|