| 1 | /**************************************************************************** |
|---|---|
| 2 | ** |
| 3 | ** Copyright (C) 2018 The Qt Company Ltd. |
| 4 | ** Contact: https://www.qt.io/licensing/ |
| 5 | ** |
| 6 | ** This file is part of the QtQml module of the Qt Toolkit. |
| 7 | ** |
| 8 | ** $QT_BEGIN_LICENSE:LGPL$ |
| 9 | ** Commercial License Usage |
| 10 | ** Licensees holding valid commercial Qt licenses may use this file in |
| 11 | ** accordance with the commercial license agreement provided with the |
| 12 | ** Software or, alternatively, in accordance with the terms contained in |
| 13 | ** a written agreement between you and The Qt Company. For licensing terms |
| 14 | ** and conditions see https://www.qt.io/terms-conditions. For further |
| 15 | ** information use the contact form at https://www.qt.io/contact-us. |
| 16 | ** |
| 17 | ** GNU Lesser General Public License Usage |
| 18 | ** Alternatively, this file may be used under the terms of the GNU Lesser |
| 19 | ** General Public License version 3 as published by the Free Software |
| 20 | ** Foundation and appearing in the file LICENSE.LGPL3 included in the |
| 21 | ** packaging of this file. Please review the following information to |
| 22 | ** ensure the GNU Lesser General Public License version 3 requirements |
| 23 | ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html. |
| 24 | ** |
| 25 | ** GNU General Public License Usage |
| 26 | ** Alternatively, this file may be used under the terms of the GNU |
| 27 | ** General Public License version 2.0 or (at your option) the GNU General |
| 28 | ** Public license version 3 or any later version approved by the KDE Free |
| 29 | ** Qt Foundation. The licenses are as published by the Free Software |
| 30 | ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3 |
| 31 | ** included in the packaging of this file. Please review the following |
| 32 | ** information to ensure the GNU General Public License requirements will |
| 33 | ** be met: https://www.gnu.org/licenses/gpl-2.0.html and |
| 34 | ** https://www.gnu.org/licenses/gpl-3.0.html. |
| 35 | ** |
| 36 | ** $QT_END_LICENSE$ |
| 37 | ** |
| 38 | ****************************************************************************/ |
| 39 | |
| 40 | |
| 41 | #include "qqmlpreviewclient_p_p.h" |
| 42 | #include <private/qpacket_p.h> |
| 43 | |
| 44 | #include <QtCore/qurl.h> |
| 45 | #include <QtCore/qfile.h> |
| 46 | #include <QtCore/qfileinfo.h> |
| 47 | #include <QtCore/qdir.h> |
| 48 | #include <QtQml/qqmlfile.h> |
| 49 | |
| 50 | QT_BEGIN_NAMESPACE |
| 51 | |
| 52 | QQmlPreviewClient::QQmlPreviewClient(QQmlDebugConnection *connection) |
| 53 | : QQmlDebugClient(*(new QQmlPreviewClientPrivate(connection))) |
| 54 | { |
| 55 | } |
| 56 | |
| 57 | void QQmlPreviewClient::messageReceived(const QByteArray &message) |
| 58 | { |
| 59 | QPacket packet(connection()->currentDataStreamVersion(), message); |
| 60 | |
| 61 | qint8 command; |
| 62 | packet >> command; |
| 63 | |
| 64 | switch (command) { |
| 65 | case Error: { |
| 66 | QString seviceError; |
| 67 | packet >> seviceError; |
| 68 | emit error(message: seviceError); |
| 69 | break; |
| 70 | } |
| 71 | case Request: { |
| 72 | QString fileName; |
| 73 | packet >> fileName; |
| 74 | emit request(path: fileName); |
| 75 | break; |
| 76 | } |
| 77 | case Fps: { |
| 78 | FpsInfo info; |
| 79 | packet >> info.numSyncs >> info.minSync >> info.maxSync >> info.totalSync |
| 80 | >> info.numRenders >> info.minRender >> info.maxRender >> info.totalRender; |
| 81 | emit fps(info); |
| 82 | break; |
| 83 | } |
| 84 | default: |
| 85 | emit error(message: QString::fromLatin1(str: "Unknown command received: %1").arg(a: command)); |
| 86 | break; |
| 87 | } |
| 88 | } |
| 89 | |
| 90 | void QQmlPreviewClient::sendDirectory(const QString &path, const QStringList &entries) |
| 91 | { |
| 92 | QPacket packet(connection()->currentDataStreamVersion()); |
| 93 | packet << static_cast<qint8>(Directory) << path << entries; |
| 94 | sendMessage(message: packet.data()); |
| 95 | } |
| 96 | |
| 97 | void QQmlPreviewClient::sendFile(const QString &path, const QByteArray &contents) |
| 98 | { |
| 99 | QPacket packet(connection()->currentDataStreamVersion()); |
| 100 | packet << static_cast<qint8>(File) << path << contents; |
| 101 | sendMessage(message: packet.data()); |
| 102 | } |
| 103 | |
| 104 | void QQmlPreviewClient::sendError(const QString &path) |
| 105 | { |
| 106 | QPacket packet(connection()->currentDataStreamVersion()); |
| 107 | packet << static_cast<qint8>(Error) << path; |
| 108 | sendMessage(message: packet.data()); |
| 109 | } |
| 110 | |
| 111 | void QQmlPreviewClient::triggerLoad(const QUrl &url) |
| 112 | { |
| 113 | QPacket packet(connection()->currentDataStreamVersion()); |
| 114 | packet << static_cast<qint8>(Load) << url; |
| 115 | sendMessage(message: packet.data()); |
| 116 | } |
| 117 | |
| 118 | void QQmlPreviewClient::triggerRerun() |
| 119 | { |
| 120 | QPacket packet(connection()->currentDataStreamVersion()); |
| 121 | packet << static_cast<qint8>(Rerun); |
| 122 | sendMessage(message: packet.data()); |
| 123 | } |
| 124 | |
| 125 | void QQmlPreviewClient::triggerZoom(float factor) |
| 126 | { |
| 127 | QPacket packet(connection()->currentDataStreamVersion()); |
| 128 | packet << static_cast<qint8>(Zoom) << factor; |
| 129 | sendMessage(message: packet.data()); |
| 130 | } |
| 131 | |
| 132 | void QQmlPreviewClient::triggerLanguage(const QUrl &url, const QString &locale) |
| 133 | { |
| 134 | QPacket packet(connection()->currentDataStreamVersion()); |
| 135 | packet << static_cast<qint8>(Language) << url << locale; |
| 136 | sendMessage(message: packet.data()); |
| 137 | } |
| 138 | |
| 139 | QT_END_NAMESPACE |
| 140 |
