first commit
This commit is contained in:
321
utils/fgqcanvas/canvasconnection.cpp
Normal file
321
utils/fgqcanvas/canvasconnection.cpp
Normal file
@@ -0,0 +1,321 @@
|
||||
//
|
||||
// Copyright (C) 2017 James Turner zakalawe@mac.com
|
||||
//
|
||||
// This program is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU General Public License as
|
||||
// published by the Free Software Foundation; either version 2 of the
|
||||
// License, or (at your option) any later version.
|
||||
//
|
||||
// This program is distributed in the hope that it will be useful, but
|
||||
// WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
// General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
|
||||
#include "canvasconnection.h"
|
||||
|
||||
#include <QUrl>
|
||||
#include <QDebug>
|
||||
#include <QJsonDocument>
|
||||
#include <QJsonArray>
|
||||
#include <QJsonObject>
|
||||
#include <QJsonValue>
|
||||
#include <QNetworkRequest>
|
||||
#include <QNetworkAccessManager>
|
||||
#include <QNetworkReply>
|
||||
#include <QDataStream>
|
||||
|
||||
#include "localprop.h"
|
||||
#include "fgqcanvasfontcache.h"
|
||||
#include "fgqcanvasimageloader.h"
|
||||
#include "jsonutils.h"
|
||||
|
||||
CanvasConnection::CanvasConnection(QObject *parent) : QObject(parent)
|
||||
{
|
||||
connect(&m_webSocket, &QWebSocket::connected, this, &CanvasConnection::onWebSocketConnected);
|
||||
connect(&m_webSocket, &QWebSocket::disconnected, this, &CanvasConnection::onWebSocketClosed);
|
||||
connect(&m_webSocket, &QWebSocket::textMessageReceived,
|
||||
this, &CanvasConnection::onTextMessageReceived);
|
||||
|
||||
m_destRect = QRectF(50, 50, 400, 400);
|
||||
m_reconnectTimer = new QTimer(this);
|
||||
m_reconnectTimer->setInterval(1000 * 10);
|
||||
m_reconnectTimer->setSingleShot(true);
|
||||
connect(m_reconnectTimer, &QTimer::timeout,
|
||||
this, &CanvasConnection::reconnect);
|
||||
}
|
||||
|
||||
CanvasConnection::~CanvasConnection()
|
||||
{
|
||||
disconnect(&m_webSocket, &QWebSocket::disconnected,
|
||||
this, &CanvasConnection::onWebSocketClosed);
|
||||
m_webSocket.close();
|
||||
}
|
||||
|
||||
void CanvasConnection::setNetworkAccess(QNetworkAccessManager *dl)
|
||||
{
|
||||
m_netAccess = dl;
|
||||
}
|
||||
|
||||
void CanvasConnection::setRootPropertyPath(QByteArray path)
|
||||
{
|
||||
m_rootPropertyPath = path;
|
||||
emit rootPathChanged();
|
||||
}
|
||||
|
||||
void CanvasConnection::setAutoReconnect()
|
||||
{
|
||||
m_autoReconnect = true;
|
||||
}
|
||||
|
||||
QJsonObject CanvasConnection::saveState() const
|
||||
{
|
||||
QJsonObject json;
|
||||
json["url"] = m_webSocketUrl.toString();
|
||||
json["path"] = QString::fromUtf8(m_rootPropertyPath);
|
||||
json["rect"] = rectToJsonArray(m_destRect.toRect());
|
||||
json["window"] = m_windowIndex;
|
||||
return json;
|
||||
}
|
||||
|
||||
bool CanvasConnection::restoreState(QJsonObject state)
|
||||
{
|
||||
m_webSocketUrl = state.value("url").toString();
|
||||
m_rootPropertyPath = state.value("path").toString().toUtf8();
|
||||
m_destRect = jsonArrayToRect(state.value("rect").toArray());
|
||||
|
||||
if (state.contains("window")) {
|
||||
m_windowIndex = state.value("window").toInt();
|
||||
}
|
||||
|
||||
emit geometryChanged();
|
||||
emit rootPathChanged();
|
||||
emit webSocketUrlChanged();
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
void CanvasConnection::saveSnapshot(QDataStream &ds) const
|
||||
{
|
||||
ds << m_webSocketUrl << m_rootPropertyPath << m_destRect;
|
||||
m_localPropertyRoot->saveToStream(ds);
|
||||
}
|
||||
|
||||
void CanvasConnection::restoreSnapshot(QDataStream &ds)
|
||||
{
|
||||
ds >> m_webSocketUrl >> m_rootPropertyPath >> m_destRect;
|
||||
m_localPropertyRoot.reset(LocalProp::restoreFromStream(ds, nullptr));
|
||||
setStatus(Snapshot);
|
||||
|
||||
emit geometryChanged();
|
||||
emit rootPathChanged();
|
||||
emit webSocketUrlChanged();
|
||||
|
||||
emit updated();
|
||||
}
|
||||
|
||||
void CanvasConnection::reconnect()
|
||||
{
|
||||
qDebug() << "starting connection attempt to:" << m_webSocketUrl;
|
||||
m_webSocket.open(m_webSocketUrl);
|
||||
setStatus(Connecting);
|
||||
}
|
||||
|
||||
void CanvasConnection::showDebugTree()
|
||||
{
|
||||
qWarning() << Q_FUNC_INFO << "implement me!";
|
||||
}
|
||||
|
||||
void CanvasConnection::setOrigin(QPointF c)
|
||||
{
|
||||
if (m_destRect.topLeft() == c)
|
||||
return;
|
||||
|
||||
m_destRect.moveTopLeft(c);
|
||||
emit geometryChanged();
|
||||
}
|
||||
|
||||
void CanvasConnection::setSize(QSizeF sz)
|
||||
{
|
||||
if (size() == sz)
|
||||
return;
|
||||
|
||||
m_destRect.setSize(sz);
|
||||
emit geometryChanged();
|
||||
}
|
||||
|
||||
void CanvasConnection::connectWebSocket(QByteArray hostName, int port)
|
||||
{
|
||||
QUrl wsUrl;
|
||||
wsUrl.setScheme("ws");
|
||||
wsUrl.setHost(hostName);
|
||||
wsUrl.setPort(port);
|
||||
wsUrl.setPath("/PropertyTreeMirror" + m_rootPropertyPath);
|
||||
|
||||
m_webSocketUrl = wsUrl;
|
||||
emit webSocketUrlChanged();
|
||||
|
||||
m_webSocket.open(wsUrl);
|
||||
setStatus(Connecting);
|
||||
}
|
||||
|
||||
QPointF CanvasConnection::origin() const
|
||||
{
|
||||
return m_destRect.topLeft();
|
||||
}
|
||||
|
||||
QSizeF CanvasConnection::size() const
|
||||
{
|
||||
return m_destRect.size();
|
||||
}
|
||||
|
||||
void CanvasConnection::setWindowIndex(int index)
|
||||
{
|
||||
if (m_windowIndex != index) {
|
||||
m_windowIndex = index;
|
||||
emit geometryChanged();
|
||||
}
|
||||
}
|
||||
|
||||
LocalProp *CanvasConnection::propertyRoot() const
|
||||
{
|
||||
return m_localPropertyRoot.get();
|
||||
}
|
||||
|
||||
FGQCanvasImageLoader *CanvasConnection::imageLoader() const
|
||||
{
|
||||
if (!m_imageLoader) {
|
||||
m_imageLoader = new FGQCanvasImageLoader(m_netAccess, const_cast<CanvasConnection*>(this));
|
||||
m_imageLoader->setHost(m_webSocketUrl.host(),
|
||||
m_webSocketUrl.port());
|
||||
}
|
||||
|
||||
return m_imageLoader;
|
||||
}
|
||||
|
||||
FGQCanvasFontCache *CanvasConnection::fontCache() const
|
||||
{
|
||||
if (!m_fontCache) {
|
||||
m_fontCache = new FGQCanvasFontCache(m_netAccess, const_cast<CanvasConnection*>(this));
|
||||
m_fontCache->setHost(m_webSocketUrl.host(),
|
||||
m_webSocketUrl.port());
|
||||
}
|
||||
|
||||
return m_fontCache;
|
||||
}
|
||||
|
||||
void CanvasConnection::onWebSocketConnected()
|
||||
{
|
||||
qDebug() << Q_FUNC_INFO << m_webSocketUrl;
|
||||
m_localPropertyRoot.reset(new LocalProp{nullptr, NameIndexTuple("")});
|
||||
setStatus(Connected);
|
||||
}
|
||||
|
||||
void CanvasConnection::onTextMessageReceived(QString message)
|
||||
{
|
||||
QJsonDocument json = QJsonDocument::fromJson(message.toUtf8());
|
||||
if (json.isObject()) {
|
||||
// process new nodes
|
||||
QJsonArray created = json.object().value("created").toArray();
|
||||
Q_FOREACH (QJsonValue v, created) {
|
||||
QJsonObject newProp = v.toObject();
|
||||
|
||||
QByteArray nodePath = newProp.value("path").toString().toUtf8();
|
||||
if (nodePath.indexOf(m_rootPropertyPath) != 0) {
|
||||
qWarning() << "not a property path we are mirroring:" << nodePath;
|
||||
continue;
|
||||
}
|
||||
|
||||
QByteArray localPath = nodePath.mid(m_rootPropertyPath.size() + 1);
|
||||
LocalProp* newNode = propertyFromPath(localPath);
|
||||
newNode->setPosition(newProp.value("position").toInt());
|
||||
// store in the global dict
|
||||
int propId = newProp.value("id").toInt();
|
||||
if (idPropertyDict.contains(propId)) {
|
||||
qWarning() << "duplicate add of:" << nodePath << "old is" << idPropertyDict.value(propId)->path();
|
||||
} else {
|
||||
idPropertyDict.insert(propId, newNode);
|
||||
}
|
||||
|
||||
// set initial value
|
||||
newNode->processChange(newProp.value("value"));
|
||||
}
|
||||
|
||||
// process removes
|
||||
QJsonArray removed = json.object().value("removed").toArray();
|
||||
Q_FOREACH (QJsonValue v, removed) {
|
||||
int propId = v.toInt();
|
||||
if (!idPropertyDict.contains(propId)) {
|
||||
continue;
|
||||
}
|
||||
|
||||
auto prop = idPropertyDict.value(propId);
|
||||
idPropertyDict.remove(propId);
|
||||
|
||||
// depending on the order removes are sent, the LocalProp
|
||||
// may already have been deleted when its parent was removed,
|
||||
// so check if the QPointer is null
|
||||
if (!prop.isNull()) {
|
||||
prop->parent()->removeChild(prop);
|
||||
}
|
||||
} // of removes processing
|
||||
|
||||
// process changes
|
||||
QJsonArray changed = json.object().value("changed").toArray();
|
||||
|
||||
Q_FOREACH (QJsonValue v, changed) {
|
||||
QJsonArray change = v.toArray();
|
||||
if (change.size() != 2) {
|
||||
qWarning() << "malformed change notification";
|
||||
continue;
|
||||
}
|
||||
|
||||
int propId = change.at(0).toInt();
|
||||
if (!idPropertyDict.contains(propId)) {
|
||||
qWarning() << "ignoring unknown prop ID " << propId;
|
||||
continue;
|
||||
}
|
||||
|
||||
LocalProp* lp = idPropertyDict.value(propId);
|
||||
if (lp != nullptr) {
|
||||
lp->processChange(change.at(1));
|
||||
}
|
||||
} // of change processing
|
||||
}
|
||||
|
||||
emit updated();
|
||||
}
|
||||
|
||||
void CanvasConnection::onWebSocketClosed()
|
||||
{
|
||||
if ((m_status == Connected) || (m_status == Connected)) {
|
||||
qDebug() << "saw web-socket closed";
|
||||
}
|
||||
|
||||
m_localPropertyRoot.reset();
|
||||
idPropertyDict.clear();
|
||||
|
||||
setStatus(Closed);
|
||||
|
||||
if (m_autoReconnect) {
|
||||
m_reconnectTimer->start();
|
||||
}
|
||||
}
|
||||
|
||||
void CanvasConnection::setStatus(CanvasConnection::Status newStatus)
|
||||
{
|
||||
if (newStatus == m_status)
|
||||
return;
|
||||
|
||||
m_status = newStatus;
|
||||
emit statusChanged(m_status);
|
||||
}
|
||||
|
||||
LocalProp *CanvasConnection::propertyFromPath(QByteArray path) const
|
||||
{
|
||||
return m_localPropertyRoot->getOrCreateWithPath(path);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user