Files
qt-creator/tests/auto/qml/qmldesigner/testconnectionmanager.cpp
Marco Bubke 4bb4e07ad8 QmlDesigner: Inline SynchronizeCommand
Change-Id: Id030fb6aba7f1ba61ce97ebebb5e91a809ab6d8d
Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
Reviewed-by: Marco Bubke <marco.bubke@qt.io>
Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
2022-09-22 19:06:21 +00:00

52 lines
1.5 KiB
C++

// Copyright (C) 2020 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
#include "testconnectionmanager.h"
#include "synchronizecommand.h"
#include <QLocalSocket>
#include <QVariant>
namespace QmlDesigner {
TestConnectionManager::TestConnectionManager()
{
connections().emplace_back("Editor", "editormode");
}
void TestConnectionManager::writeCommand(const QVariant &command)
{
ConnectionManager::writeCommand(command);
writeCommandCounter()++;
static int synchronizeId = 0;
synchronizeId++;
SynchronizeCommand synchronizeCommand(synchronizeId);
QLocalSocket *socket = connections().front().socket.get();
writeCommandToIODevice(QVariant::fromValue(synchronizeCommand), socket, writeCommandCounter());
writeCommandCounter()++;
while (socket->waitForReadyRead(100)) {
readDataStream(connections().front());
if (m_synchronizeId == synchronizeId)
return;
}
}
void TestConnectionManager::dispatchCommand(const QVariant &command, Connection &connection)
{
static const int synchronizeCommandType = QMetaType::type("SynchronizeCommand");
if (command.userType() == synchronizeCommandType) {
SynchronizeCommand synchronizeCommand = command.value<SynchronizeCommand>();
m_synchronizeId = synchronizeCommand.synchronizeId();
} else {
ConnectionManager::dispatchCommand(command, connection);
}
}
} // namespace QmlDesigner