2013-08-17 19:20:19 +02:00
|
|
|
// system includes
|
|
|
|
#include <stdexcept>
|
|
|
|
#include <cassert>
|
|
|
|
|
2013-08-17 15:39:29 +02:00
|
|
|
// stl includes
|
|
|
|
#include <iostream>
|
2013-08-17 19:20:19 +02:00
|
|
|
#include <sstream>
|
|
|
|
#include <iterator>
|
|
|
|
|
|
|
|
// Qt includes
|
|
|
|
#include <QResource>
|
2013-08-19 20:33:36 +02:00
|
|
|
#include <QDateTime>
|
2014-10-25 22:35:53 +02:00
|
|
|
#include <QCryptographicHash>
|
|
|
|
#include <QHostInfo>
|
2013-08-17 15:39:29 +02:00
|
|
|
|
2013-08-18 12:21:07 +02:00
|
|
|
// hyperion util includes
|
2013-11-22 11:48:10 +01:00
|
|
|
#include <hyperion/ImageProcessorFactory.h>
|
|
|
|
#include <hyperion/ImageProcessor.h>
|
|
|
|
#include <hyperion/ColorTransform.h>
|
|
|
|
#include <utils/ColorRgb.h>
|
2013-08-18 12:21:07 +02:00
|
|
|
|
2013-08-17 19:20:19 +02:00
|
|
|
// project includes
|
2013-08-17 15:39:29 +02:00
|
|
|
#include "JsonClientConnection.h"
|
|
|
|
|
2013-08-18 12:21:07 +02:00
|
|
|
JsonClientConnection::JsonClientConnection(QTcpSocket *socket, Hyperion * hyperion) :
|
2013-08-17 15:39:29 +02:00
|
|
|
QObject(),
|
2013-08-17 19:20:19 +02:00
|
|
|
_socket(socket),
|
2013-08-18 20:55:59 +02:00
|
|
|
_imageProcessor(ImageProcessorFactory::getInstance().newImageProcessor()),
|
2013-08-18 12:21:07 +02:00
|
|
|
_hyperion(hyperion),
|
2014-11-08 21:01:46 +01:00
|
|
|
_receiveBuffer(),
|
|
|
|
_webSocketHandshakeDone(false)
|
2013-08-17 15:39:29 +02:00
|
|
|
{
|
2013-08-17 19:20:19 +02:00
|
|
|
// connect internal signals and slots
|
2013-08-17 15:39:29 +02:00
|
|
|
connect(_socket, SIGNAL(disconnected()), this, SLOT(socketClosed()));
|
|
|
|
connect(_socket, SIGNAL(readyRead()), this, SLOT(readData()));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
JsonClientConnection::~JsonClientConnection()
|
|
|
|
{
|
|
|
|
delete _socket;
|
|
|
|
}
|
|
|
|
|
|
|
|
void JsonClientConnection::readData()
|
|
|
|
{
|
|
|
|
_receiveBuffer += _socket->readAll();
|
2014-10-25 22:35:53 +02:00
|
|
|
|
2014-11-08 21:01:46 +01:00
|
|
|
if (_webSocketHandshakeDone)
|
|
|
|
{
|
|
|
|
// websocket mode, data frame
|
|
|
|
handleWebSocketFrame();
|
|
|
|
} else
|
|
|
|
{
|
|
|
|
// might be a handshake request or raw socket data
|
|
|
|
if(_receiveBuffer.contains("Upgrade: websocket"))
|
|
|
|
{
|
|
|
|
doWebSocketHandshake();
|
|
|
|
} else
|
|
|
|
{
|
|
|
|
// raw socket data, handling as usual
|
2014-10-25 22:35:53 +02:00
|
|
|
int bytes = _receiveBuffer.indexOf('\n') + 1;
|
|
|
|
while(bytes > 0)
|
|
|
|
{
|
|
|
|
// create message string
|
|
|
|
std::string message(_receiveBuffer.data(), bytes);
|
|
|
|
|
|
|
|
// remove message data from buffer
|
|
|
|
_receiveBuffer = _receiveBuffer.mid(bytes);
|
|
|
|
|
|
|
|
// handle message
|
|
|
|
handleMessage(message);
|
|
|
|
|
|
|
|
// try too look up '\n' again
|
|
|
|
bytes = _receiveBuffer.indexOf('\n') + 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-08-17 15:39:29 +02:00
|
|
|
}
|
|
|
|
|
2014-11-08 21:01:46 +01:00
|
|
|
void JsonClientConnection::handleWebSocketFrame()
|
|
|
|
{
|
|
|
|
if ((_receiveBuffer.at(0) & 0x80) == 0x80)
|
|
|
|
{
|
|
|
|
// final bit found, frame complete
|
|
|
|
quint8 * maskKey = NULL;
|
|
|
|
quint8 opCode = _receiveBuffer.at(0) & 0x0F;
|
|
|
|
bool isMasked = (_receiveBuffer.at(1) & 0x80) == 0x80;
|
|
|
|
quint64 payloadLength = _receiveBuffer.at(1) & 0x7F;
|
|
|
|
quint32 index = 2;
|
|
|
|
|
|
|
|
switch (payloadLength)
|
|
|
|
{
|
|
|
|
case 126:
|
|
|
|
payloadLength = ((_receiveBuffer.at(2) << 8) & 0xFF00) | (_receiveBuffer.at(3) & 0xFF);
|
|
|
|
index += 2;
|
|
|
|
break;
|
|
|
|
case 127:
|
|
|
|
payloadLength = 0;
|
|
|
|
for (uint i=0; i < 8; i++) {
|
|
|
|
payloadLength |= ((quint64)(_receiveBuffer.at(index+i) & 0xFF)) << (8*(7-i));
|
|
|
|
}
|
|
|
|
index += 8;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isMasked)
|
|
|
|
{
|
|
|
|
// if the data is masked we need to get the key for unmasking
|
|
|
|
maskKey = new quint8[4];
|
|
|
|
for (uint i=0; i < 4; i++)
|
|
|
|
{
|
|
|
|
maskKey[i] = _receiveBuffer.at(index + i);
|
|
|
|
}
|
|
|
|
index += 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
// check the type of data frame
|
|
|
|
switch (opCode)
|
|
|
|
{
|
|
|
|
case 0x01:
|
|
|
|
{
|
|
|
|
// frame contains text, extract it
|
|
|
|
QByteArray result = _receiveBuffer.mid(index, payloadLength);
|
|
|
|
_receiveBuffer.clear();
|
|
|
|
|
|
|
|
// unmask data if necessary
|
|
|
|
if (isMasked)
|
|
|
|
{
|
|
|
|
for (uint i=0; i < payloadLength; i++)
|
|
|
|
{
|
|
|
|
result[i] = (result[i] ^ maskKey[i % 4]);
|
|
|
|
}
|
|
|
|
if (maskKey != NULL)
|
|
|
|
{
|
|
|
|
delete[] maskKey;
|
|
|
|
maskKey = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
handleMessage(QString(result).toStdString());
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 0x08:
|
|
|
|
{
|
|
|
|
// close request, confirm
|
|
|
|
quint8 close[] = {0x88, 0};
|
|
|
|
_socket->write((const char*)close, 2);
|
|
|
|
_socket->flush();
|
|
|
|
_socket->close();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 0x09:
|
|
|
|
{
|
|
|
|
// ping received, send pong
|
|
|
|
quint8 pong[] = {0x0A, 0};
|
|
|
|
_socket->write((const char*)pong, 2);
|
|
|
|
_socket->flush();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
{
|
|
|
|
std::cout << "Someone is sending very big messages over several frames... it's not supported yet" << std::endl;
|
|
|
|
quint8 close[] = {0x88, 0};
|
|
|
|
_socket->write((const char*)close, 2);
|
|
|
|
_socket->flush();
|
|
|
|
_socket->close();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void JsonClientConnection::doWebSocketHandshake()
|
|
|
|
{
|
|
|
|
// http header, might not be a very reliable check...
|
|
|
|
std::cout << "Websocket handshake" << std::endl;
|
|
|
|
|
|
|
|
// get the key to prepare an answer
|
|
|
|
int start = _receiveBuffer.indexOf("Sec-WebSocket-Key") + 19;
|
|
|
|
std::string value(_receiveBuffer.mid(start, _receiveBuffer.indexOf("\r\n", start) - start).data());
|
|
|
|
_receiveBuffer.clear();
|
|
|
|
|
|
|
|
// must be always appended
|
|
|
|
value += "258EAFA5-E914-47DA-95CA-C5AB0DC85B11";
|
|
|
|
|
|
|
|
// generate sha1 hash
|
|
|
|
QByteArray hash = QCryptographicHash::hash(value.c_str(), QCryptographicHash::Sha1);
|
|
|
|
|
|
|
|
// prepare an answer
|
|
|
|
std::ostringstream h;
|
|
|
|
h << "HTTP/1.1 101 Switching Protocols\r\n" <<
|
|
|
|
"Upgrade: websocket\r\n" <<
|
|
|
|
"Connection: Upgrade\r\n" <<
|
|
|
|
"Sec-WebSocket-Accept: " << QString(hash.toBase64()).toStdString() << "\r\n\r\n";
|
|
|
|
|
|
|
|
_socket->write(h.str().c_str());
|
|
|
|
_socket->flush();
|
|
|
|
// we are in WebSocket mode, data frames should follow next
|
|
|
|
_webSocketHandshakeDone = true;
|
|
|
|
}
|
|
|
|
|
2013-08-17 15:39:29 +02:00
|
|
|
void JsonClientConnection::socketClosed()
|
|
|
|
{
|
2014-10-25 22:35:53 +02:00
|
|
|
_webSocketHandshakeDone = false;
|
2013-08-17 15:39:29 +02:00
|
|
|
emit connectionClosed(this);
|
|
|
|
}
|
|
|
|
|
2013-08-18 12:02:17 +02:00
|
|
|
void JsonClientConnection::handleMessage(const std::string &messageString)
|
2013-08-17 15:39:29 +02:00
|
|
|
{
|
|
|
|
Json::Reader reader;
|
2013-08-18 12:02:17 +02:00
|
|
|
Json::Value message;
|
|
|
|
if (!reader.parse(messageString, message, false))
|
2013-08-17 15:39:29 +02:00
|
|
|
{
|
|
|
|
sendErrorReply("Error while parsing json: " + reader.getFormattedErrorMessages());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-08-18 12:02:17 +02:00
|
|
|
// check basic message
|
|
|
|
std::string errors;
|
|
|
|
if (!checkJson(message, ":schema", errors))
|
2013-08-17 19:20:19 +02:00
|
|
|
{
|
2013-08-18 12:02:17 +02:00
|
|
|
sendErrorReply("Error while validating json: " + errors);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// check specific message
|
|
|
|
const std::string command = message["command"].asString();
|
2013-08-18 13:33:56 +02:00
|
|
|
if (!checkJson(message, QString(":schema-%1").arg(QString::fromStdString(command)), errors))
|
2013-08-18 12:02:17 +02:00
|
|
|
{
|
|
|
|
sendErrorReply("Error while validating json: " + errors);
|
2013-08-17 19:20:19 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-08-18 12:02:17 +02:00
|
|
|
// switch over all possible commands and handle them
|
|
|
|
if (command == "color")
|
|
|
|
handleColorCommand(message);
|
|
|
|
else if (command == "image")
|
|
|
|
handleImageCommand(message);
|
2013-11-24 16:10:48 +01:00
|
|
|
else if (command == "effect")
|
|
|
|
handleEffectCommand(message);
|
2013-08-18 12:02:17 +02:00
|
|
|
else if (command == "serverinfo")
|
|
|
|
handleServerInfoCommand(message);
|
|
|
|
else if (command == "clear")
|
|
|
|
handleClearCommand(message);
|
|
|
|
else if (command == "clearall")
|
|
|
|
handleClearallCommand(message);
|
|
|
|
else if (command == "transform")
|
|
|
|
handleTransformCommand(message);
|
|
|
|
else
|
|
|
|
handleNotImplemented();
|
|
|
|
}
|
|
|
|
|
|
|
|
void JsonClientConnection::handleColorCommand(const Json::Value &message)
|
|
|
|
{
|
2013-08-18 12:21:07 +02:00
|
|
|
// extract parameters
|
|
|
|
int priority = message["priority"].asInt();
|
|
|
|
int duration = message.get("duration", -1).asInt();
|
2013-12-12 23:39:17 +01:00
|
|
|
|
|
|
|
std::vector<ColorRgb> colorData(_hyperion->getLedCount());
|
|
|
|
const Json::Value & jsonColor = message["color"];
|
|
|
|
Json::UInt i = 0;
|
|
|
|
for (; i < jsonColor.size()/3 && i < _hyperion->getLedCount(); ++i)
|
|
|
|
{
|
|
|
|
colorData[i].red = uint8_t(message["color"][3u*i].asInt());
|
|
|
|
colorData[i].green = uint8_t(message["color"][3u*i+1u].asInt());
|
|
|
|
colorData[i].blue = uint8_t(message["color"][3u*i+2u].asInt());
|
|
|
|
}
|
|
|
|
|
|
|
|
// copy full blocks of led colors
|
|
|
|
unsigned size = i;
|
|
|
|
while (i + size < _hyperion->getLedCount())
|
|
|
|
{
|
|
|
|
memcpy(&(colorData[i]), colorData.data(), size * sizeof(ColorRgb));
|
|
|
|
i += size;
|
|
|
|
}
|
|
|
|
|
|
|
|
// copy remaining block of led colors
|
|
|
|
if (i < _hyperion->getLedCount())
|
|
|
|
{
|
|
|
|
memcpy(&(colorData[i]), colorData.data(), (_hyperion->getLedCount()-i) * sizeof(ColorRgb));
|
|
|
|
}
|
2013-08-18 12:21:07 +02:00
|
|
|
|
|
|
|
// set output
|
2013-12-12 23:39:17 +01:00
|
|
|
_hyperion->setColors(priority, colorData, duration);
|
2013-08-18 12:21:07 +02:00
|
|
|
|
|
|
|
// send reply
|
|
|
|
sendSuccessReply();
|
2013-08-18 12:02:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void JsonClientConnection::handleImageCommand(const Json::Value &message)
|
|
|
|
{
|
2013-08-18 20:55:59 +02:00
|
|
|
// extract parameters
|
|
|
|
int priority = message["priority"].asInt();
|
|
|
|
int duration = message.get("duration", -1).asInt();
|
|
|
|
int width = message["imagewidth"].asInt();
|
|
|
|
int height = message["imageheight"].asInt();
|
|
|
|
QByteArray data = QByteArray::fromBase64(QByteArray(message["imagedata"].asCString()));
|
|
|
|
|
|
|
|
// check consistency of the size of the received data
|
|
|
|
if (data.size() != width*height*3)
|
|
|
|
{
|
|
|
|
sendErrorReply("Size of image data does not match with the width and height");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// set width and height of the image processor
|
|
|
|
_imageProcessor->setSize(width, height);
|
|
|
|
|
2013-11-11 10:00:37 +01:00
|
|
|
// create ImageRgb
|
|
|
|
Image<ColorRgb> image(width, height);
|
2013-08-18 20:55:59 +02:00
|
|
|
memcpy(image.memptr(), data.data(), data.size());
|
|
|
|
|
|
|
|
// process the image
|
2013-11-11 10:00:37 +01:00
|
|
|
std::vector<ColorRgb> ledColors = _imageProcessor->process(image);
|
2013-08-18 20:55:59 +02:00
|
|
|
_hyperion->setColors(priority, ledColors, duration);
|
|
|
|
|
|
|
|
// send reply
|
|
|
|
sendSuccessReply();
|
2013-08-17 15:39:29 +02:00
|
|
|
}
|
|
|
|
|
2013-11-24 16:10:48 +01:00
|
|
|
void JsonClientConnection::handleEffectCommand(const Json::Value &message)
|
|
|
|
{
|
|
|
|
// extract parameters
|
|
|
|
int priority = message["priority"].asInt();
|
|
|
|
int duration = message.get("duration", -1).asInt();
|
|
|
|
const Json::Value & effect = message["effect"];
|
|
|
|
const std::string & effectName = effect["name"].asString();
|
|
|
|
|
|
|
|
// set output
|
2013-12-01 14:09:01 +01:00
|
|
|
if (effect.isMember("args"))
|
|
|
|
{
|
|
|
|
_hyperion->setEffect(effectName, effect["args"], priority, duration);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
_hyperion->setEffect(effectName, priority, duration);
|
|
|
|
}
|
2013-11-24 16:10:48 +01:00
|
|
|
|
|
|
|
// send reply
|
|
|
|
sendSuccessReply();
|
|
|
|
}
|
|
|
|
|
|
|
|
void JsonClientConnection::handleServerInfoCommand(const Json::Value &)
|
2013-08-18 12:02:17 +02:00
|
|
|
{
|
2013-08-19 20:33:36 +02:00
|
|
|
// create result
|
|
|
|
Json::Value result;
|
|
|
|
result["success"] = true;
|
|
|
|
Json::Value & info = result["info"];
|
2014-10-25 22:35:53 +02:00
|
|
|
|
|
|
|
// add host name for remote clients
|
|
|
|
info["hostname"] = QHostInfo::localHostName().toStdString();
|
2013-08-19 20:33:36 +02:00
|
|
|
|
|
|
|
// collect priority information
|
2013-11-30 12:42:08 +01:00
|
|
|
Json::Value & priorities = info["priorities"] = Json::Value(Json::arrayValue);
|
2013-08-19 20:33:36 +02:00
|
|
|
uint64_t now = QDateTime::currentMSecsSinceEpoch();
|
|
|
|
QList<int> activePriorities = _hyperion->getActivePriorities();
|
|
|
|
foreach (int priority, activePriorities) {
|
|
|
|
const Hyperion::InputInfo & priorityInfo = _hyperion->getPriorityInfo(priority);
|
|
|
|
Json::Value & item = priorities[priorities.size()];
|
|
|
|
item["priority"] = priority;
|
|
|
|
if (priorityInfo.timeoutTime_ms != -1)
|
|
|
|
{
|
2013-11-19 23:02:41 +01:00
|
|
|
item["duration_ms"] = Json::Value::UInt(priorityInfo.timeoutTime_ms - now);
|
2013-08-19 20:33:36 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// collect transform information
|
2013-11-22 11:48:10 +01:00
|
|
|
Json::Value & transformArray = info["transform"];
|
|
|
|
for (const std::string& transformId : _hyperion->getTransformIds())
|
|
|
|
{
|
|
|
|
const ColorTransform * colorTransform = _hyperion->getTransform(transformId);
|
|
|
|
if (colorTransform == nullptr)
|
|
|
|
{
|
|
|
|
std::cerr << "Incorrect color transform id: " << transformId << std::endl;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
Json::Value & transform = transformArray.append(Json::Value());
|
|
|
|
transform["id"] = transformId;
|
|
|
|
|
|
|
|
transform["saturationGain"] = colorTransform->_hsvTransform.getSaturationGain();
|
|
|
|
transform["valueGain"] = colorTransform->_hsvTransform.getValueGain();
|
|
|
|
|
|
|
|
Json::Value & threshold = transform["threshold"];
|
|
|
|
threshold.append(colorTransform->_rgbRedTransform.getThreshold());
|
|
|
|
threshold.append(colorTransform->_rgbGreenTransform.getThreshold());
|
|
|
|
threshold.append(colorTransform->_rgbBlueTransform.getThreshold());
|
|
|
|
Json::Value & gamma = transform["gamma"];
|
|
|
|
gamma.append(colorTransform->_rgbRedTransform.getGamma());
|
|
|
|
gamma.append(colorTransform->_rgbGreenTransform.getGamma());
|
|
|
|
gamma.append(colorTransform->_rgbBlueTransform.getGamma());
|
|
|
|
Json::Value & blacklevel = transform["blacklevel"];
|
|
|
|
blacklevel.append(colorTransform->_rgbRedTransform.getBlacklevel());
|
|
|
|
blacklevel.append(colorTransform->_rgbGreenTransform.getBlacklevel());
|
|
|
|
blacklevel.append(colorTransform->_rgbBlueTransform.getBlacklevel());
|
|
|
|
Json::Value & whitelevel = transform["whitelevel"];
|
|
|
|
whitelevel.append(colorTransform->_rgbRedTransform.getWhitelevel());
|
|
|
|
whitelevel.append(colorTransform->_rgbGreenTransform.getWhitelevel());
|
|
|
|
whitelevel.append(colorTransform->_rgbBlueTransform.getWhitelevel());
|
|
|
|
}
|
2013-08-19 20:33:36 +02:00
|
|
|
|
2013-11-24 16:10:48 +01:00
|
|
|
// collect effect info
|
2013-11-30 12:42:08 +01:00
|
|
|
Json::Value & effects = info["effects"] = Json::Value(Json::arrayValue);
|
2013-12-01 14:09:01 +01:00
|
|
|
const std::list<EffectDefinition> & effectsDefinitions = _hyperion->getEffects();
|
|
|
|
for (const EffectDefinition & effectDefinition : effectsDefinitions)
|
2013-11-24 16:10:48 +01:00
|
|
|
{
|
|
|
|
Json::Value effect;
|
2013-12-01 14:09:01 +01:00
|
|
|
effect["name"] = effectDefinition.name;
|
|
|
|
effect["script"] = effectDefinition.script;
|
|
|
|
effect["args"] = effectDefinition.args;
|
2013-11-24 16:10:48 +01:00
|
|
|
|
|
|
|
effects.append(effect);
|
|
|
|
}
|
|
|
|
|
2013-08-19 20:33:36 +02:00
|
|
|
// send the result
|
|
|
|
sendMessage(result);
|
2013-08-18 12:02:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void JsonClientConnection::handleClearCommand(const Json::Value &message)
|
|
|
|
{
|
2013-08-18 13:33:56 +02:00
|
|
|
// extract parameters
|
|
|
|
int priority = message["priority"].asInt();
|
|
|
|
|
|
|
|
// clear priority
|
|
|
|
_hyperion->clear(priority);
|
|
|
|
|
|
|
|
// send reply
|
|
|
|
sendSuccessReply();
|
2013-08-18 12:02:17 +02:00
|
|
|
}
|
|
|
|
|
2013-08-18 13:33:56 +02:00
|
|
|
void JsonClientConnection::handleClearallCommand(const Json::Value &)
|
2013-08-18 12:02:17 +02:00
|
|
|
{
|
2013-08-18 13:33:56 +02:00
|
|
|
// clear priority
|
|
|
|
_hyperion->clearall();
|
|
|
|
|
|
|
|
// send reply
|
|
|
|
sendSuccessReply();
|
2013-08-18 12:02:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void JsonClientConnection::handleTransformCommand(const Json::Value &message)
|
|
|
|
{
|
2013-08-19 19:57:35 +02:00
|
|
|
const Json::Value & transform = message["transform"];
|
|
|
|
|
2013-11-22 11:48:10 +01:00
|
|
|
const std::string transformId = transform.get("id", _hyperion->getTransformIds().front()).asString();
|
|
|
|
ColorTransform * colorTransform = _hyperion->getTransform(transformId);
|
|
|
|
if (colorTransform == nullptr)
|
|
|
|
{
|
|
|
|
//sendErrorReply(std::string("Incorrect transform identifier: ") + transformId);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-08-21 21:50:17 +02:00
|
|
|
if (transform.isMember("saturationGain"))
|
|
|
|
{
|
2013-11-22 11:48:10 +01:00
|
|
|
colorTransform->_hsvTransform.setSaturationGain(transform["saturationGain"].asDouble());
|
2013-08-21 21:50:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (transform.isMember("valueGain"))
|
|
|
|
{
|
2013-11-22 11:48:10 +01:00
|
|
|
colorTransform->_hsvTransform.setValueGain(transform["valueGain"].asDouble());
|
2013-08-21 21:50:17 +02:00
|
|
|
}
|
|
|
|
|
2013-08-19 19:57:35 +02:00
|
|
|
if (transform.isMember("threshold"))
|
|
|
|
{
|
2013-11-22 11:48:10 +01:00
|
|
|
const Json::Value & values = transform["threshold"];
|
|
|
|
colorTransform->_rgbRedTransform .setThreshold(values[0u].asDouble());
|
|
|
|
colorTransform->_rgbGreenTransform.setThreshold(values[1u].asDouble());
|
|
|
|
colorTransform->_rgbBlueTransform .setThreshold(values[2u].asDouble());
|
2013-08-19 19:57:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (transform.isMember("gamma"))
|
|
|
|
{
|
2013-11-22 11:48:10 +01:00
|
|
|
const Json::Value & values = transform["gamma"];
|
|
|
|
colorTransform->_rgbRedTransform .setGamma(values[0u].asDouble());
|
|
|
|
colorTransform->_rgbGreenTransform.setGamma(values[1u].asDouble());
|
|
|
|
colorTransform->_rgbBlueTransform .setGamma(values[2u].asDouble());
|
2013-08-19 19:57:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (transform.isMember("blacklevel"))
|
|
|
|
{
|
2013-11-22 11:48:10 +01:00
|
|
|
const Json::Value & values = transform["blacklevel"];
|
|
|
|
colorTransform->_rgbRedTransform .setBlacklevel(values[0u].asDouble());
|
|
|
|
colorTransform->_rgbGreenTransform.setBlacklevel(values[1u].asDouble());
|
|
|
|
colorTransform->_rgbBlueTransform .setBlacklevel(values[2u].asDouble());
|
2013-08-19 19:57:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (transform.isMember("whitelevel"))
|
|
|
|
{
|
2013-11-22 11:48:10 +01:00
|
|
|
const Json::Value & values = transform["whitelevel"];
|
|
|
|
colorTransform->_rgbRedTransform .setWhitelevel(values[0u].asDouble());
|
|
|
|
colorTransform->_rgbGreenTransform.setWhitelevel(values[1u].asDouble());
|
|
|
|
colorTransform->_rgbBlueTransform .setWhitelevel(values[2u].asDouble());
|
2013-08-19 19:57:35 +02:00
|
|
|
}
|
|
|
|
|
2013-12-03 22:56:46 +01:00
|
|
|
// commit the changes
|
|
|
|
_hyperion->transformsUpdated();
|
|
|
|
|
2013-08-19 19:57:35 +02:00
|
|
|
sendSuccessReply();
|
2013-08-18 12:02:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void JsonClientConnection::handleNotImplemented()
|
2013-08-17 15:39:29 +02:00
|
|
|
{
|
|
|
|
sendErrorReply("Command not implemented");
|
|
|
|
}
|
|
|
|
|
|
|
|
void JsonClientConnection::sendMessage(const Json::Value &message)
|
|
|
|
{
|
|
|
|
Json::FastWriter writer;
|
|
|
|
std::string serializedReply = writer.write(message);
|
2014-10-25 22:35:53 +02:00
|
|
|
|
2014-11-08 21:01:46 +01:00
|
|
|
if (!_webSocketHandshakeDone)
|
|
|
|
{
|
|
|
|
// raw tcp socket mode
|
2014-10-25 22:35:53 +02:00
|
|
|
_socket->write(serializedReply.data(), serializedReply.length());
|
2014-11-08 21:01:46 +01:00
|
|
|
} else
|
|
|
|
{
|
|
|
|
// websocket mode
|
2014-10-25 22:35:53 +02:00
|
|
|
quint32 size = serializedReply.length();
|
|
|
|
|
|
|
|
// prepare data frame
|
|
|
|
QByteArray response;
|
|
|
|
response.append(0x81);
|
2014-11-08 21:01:46 +01:00
|
|
|
if (size > 125)
|
|
|
|
{
|
2014-10-25 22:35:53 +02:00
|
|
|
response.append(0x7E);
|
|
|
|
response.append((size >> 8) & 0xFF);
|
|
|
|
response.append(size & 0xFF);
|
|
|
|
} else {
|
|
|
|
response.append(size);
|
|
|
|
}
|
|
|
|
|
2014-11-08 21:01:46 +01:00
|
|
|
response.append(serializedReply.c_str(), serializedReply.length());
|
2014-10-25 22:35:53 +02:00
|
|
|
|
|
|
|
_socket->write(response.data(), response.length());
|
|
|
|
}
|
2013-08-17 15:39:29 +02:00
|
|
|
}
|
|
|
|
|
2013-08-18 12:21:07 +02:00
|
|
|
void JsonClientConnection::sendSuccessReply()
|
|
|
|
{
|
|
|
|
// create reply
|
|
|
|
Json::Value reply;
|
|
|
|
reply["success"] = true;
|
|
|
|
|
|
|
|
// send reply
|
|
|
|
sendMessage(reply);
|
|
|
|
}
|
|
|
|
|
2013-08-17 15:39:29 +02:00
|
|
|
void JsonClientConnection::sendErrorReply(const std::string &error)
|
|
|
|
{
|
|
|
|
// create reply
|
|
|
|
Json::Value reply;
|
|
|
|
reply["success"] = false;
|
|
|
|
reply["error"] = error;
|
|
|
|
|
|
|
|
// send reply
|
|
|
|
sendMessage(reply);
|
|
|
|
}
|
2013-08-18 12:02:17 +02:00
|
|
|
|
|
|
|
bool JsonClientConnection::checkJson(const Json::Value & message, const QString & schemaResource, std::string & errorMessage)
|
|
|
|
{
|
|
|
|
// read the json schema from the resource
|
|
|
|
QResource schemaData(schemaResource);
|
|
|
|
assert(schemaData.isValid());
|
|
|
|
Json::Reader jsonReader;
|
|
|
|
Json::Value schemaJson;
|
|
|
|
if (!jsonReader.parse(reinterpret_cast<const char *>(schemaData.data()), reinterpret_cast<const char *>(schemaData.data()) + schemaData.size(), schemaJson, false))
|
|
|
|
{
|
|
|
|
throw std::runtime_error("Schema error: " + jsonReader.getFormattedErrorMessages()) ;
|
|
|
|
}
|
|
|
|
|
|
|
|
// create schema checker
|
|
|
|
JsonSchemaChecker schema;
|
|
|
|
schema.setSchema(schemaJson);
|
|
|
|
|
|
|
|
// check the message
|
|
|
|
if (!schema.validate(message))
|
|
|
|
{
|
|
|
|
const std::list<std::string> & errors = schema.getMessages();
|
|
|
|
std::stringstream ss;
|
|
|
|
ss << "{";
|
|
|
|
foreach (const std::string & error, errors) {
|
|
|
|
ss << error << " ";
|
|
|
|
}
|
|
|
|
ss << "}";
|
|
|
|
errorMessage = ss.str();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|