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 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225
|
#include "MessageServer.h"
#include <QDebug>
MessageServer::MessageServer(QObject *parent) :
QTcpServer(parent)
{
}
MessageServer::~MessageServer(){
stop();
}
bool MessageServer::start()
{
if(isListening()){
qDebug() << "MessageServer already listening:" << m_host << m_port;
return false;
}
auto address = QHostAddress();
if(m_host.isEmpty() || !address.setAddress(m_host)){
qDebug() << "MessageServer address invalid:" << m_host << m_port;
return false;
}
if(m_port <= 0){
qDebug() << "MessageServer port invalid:" << m_host << m_port;
return false;
}
bool listening = listen(address, m_port);
qDebug() << "MessageServer listening:" << listening << m_host << m_port;
return listening;
}
void MessageServer::stop()
{
// disconnect all clients
foreach(auto client, m_clients){
client->close();
}
// then close the server
close();
}
void MessageServer::setServer(QString host, quint16 port){
bool listening = isListening();
if(listening && (m_host != host || m_port != port)){
stop();
}
m_host = host;
m_port = port;
if(listening){
start();
}
}
void MessageServer::setPause(bool paused)
{
m_paused = paused;
if(paused){
pauseAccepting();
} else {
resumeAccepting();
}
}
void MessageServer::setMaxConnections(int n){
// set the maximum number of connections allowed
m_maxConnections = n;
// then, prune old ones greater than the max (fifo)
pruneConnections();
}
int MessageServer::activeConnections(){
int i = 0;
foreach(auto client, m_clients){
if(client->isConnected()) i++;
}
return i;
}
void MessageServer::pruneConnections(){
// keep only the n most recent connections (fifo)
if(m_maxConnections && m_maxConnections < activeConnections()){
for(int i = m_maxConnections; i < activeConnections(); i++){
auto client = m_clients.first();
client->close();
m_clients.removeFirst();
}
}
}
void MessageServer::send(const Message &message){
foreach(auto client, m_clients){
if(!client->awaitingResponse(message.id())){
continue;
}
client->send(message);
}
}
void MessageServer::incomingConnection(qintptr handle)
{
qDebug() << "MessageServer incomingConnection" << handle;
auto client = new Client(this, this);
client->setSocket(handle);
#if JS8_MESSAGESERVER_IS_SINGLE_CLIENT
while(!m_clients.isEmpty()){
auto client = m_clients.first();
client->close();
m_clients.removeFirst();
}
#endif
if(m_maxConnections && m_maxConnections <= activeConnections()){
qDebug() << "MessageServer connections full, dropping incoming connection";
client->send(Message("API.ERROR", "Connections Full"));
client->close();
return;
}
m_clients.append(client);
}
Client::Client(MessageServer * server, QObject *parent):
QObject(parent),
m_server {server}
{
setConnected(true);
}
void Client::setSocket(qintptr handle){
m_socket = new QTcpSocket(this);
connect(m_socket, &QTcpSocket::disconnected, this, &Client::onDisconnected);
connect(m_socket, &QTcpSocket::readyRead, this, &Client::readyRead);
m_socket->setSocketDescriptor(handle);
}
void Client::setConnected(bool connected){
m_connected = connected;
}
void Client::close(){
if(!m_socket){
return;
}
m_socket->close();
m_socket = nullptr;
}
void Client::send(const Message &message){
if(!isConnected()){
return;
}
if(!m_socket){
return;
}
if(!m_socket->isOpen()){
qDebug() << "client socket isn't open";
return;
}
qDebug() << "client writing" << message.toJson();
m_socket->write(message.toJson());
m_socket->write("\n");
m_socket->flush();
// remove if needed
if(m_requests.contains(message.id())){
m_requests.remove(message.id());
}
}
void Client::onDisconnected(){
qDebug() << "MessageServer client disconnected";
setConnected(false);
}
void Client::readyRead(){
qDebug() << "MessageServer client readyRead";
while(m_socket->canReadLine()){
auto msg = m_socket->readLine().trimmed();
qDebug() << "-> Client" << m_socket->socketDescriptor() << msg;
if(msg.isEmpty()){
return;
}
QJsonParseError e;
QJsonDocument d = QJsonDocument::fromJson(msg, &e);
if(e.error != QJsonParseError::NoError){
send({"API.ERROR", "Invalid JSON (unparsable)"});
return;
}
if(!d.isObject()){
send({"API.ERROR", "Invalid JSON (not an object)"});
return;
}
Message m;
m.read(d.object());
auto id = m.ensureId();
m_requests[id] = m;
emit m_server->message(m);
}
}
|