From: Aurindam Jana Date: Tue, 6 Mar 2012 22:35:27 +0000 (+0100) Subject: QmlDebuggingTests: Separate out public and private tests X-Git-Url: http://git.silmor.de/gitweb/?a=commitdiff_plain;h=5c05f5df1f35291070962b7fe295004e4942f2ce;p=konrad%2Fqtdeclarative.git QmlDebuggingTests: Separate out public and private tests Remove dependencies on quick-private from all possible debugging auto tests and list them under public tests. Change-Id: I688b5b36fdf3d6fbcb6cef2a975ecd1bf679af2b Reviewed-by: Kai Koehne --- diff --git a/src/plugins/qmltooling/qmldbg_tcp/qmldbg_tcp.pro b/src/plugins/qmltooling/qmldbg_tcp/qmldbg_tcp.pro index 0c5e196..fdd1f6e 100644 --- a/src/plugins/qmltooling/qmldbg_tcp/qmldbg_tcp.pro +++ b/src/plugins/qmltooling/qmldbg_tcp/qmldbg_tcp.pro @@ -9,10 +9,14 @@ DESTDIR = $$QT.qml.plugins/qmltooling QTDIR_build:REQUIRES += "contains(QT_CONFIG, qml)" SOURCES += \ - qtcpserverconnection.cpp + qtcpserverconnection.cpp \ + ../shared/qpacketprotocol.cpp HEADERS += \ - qtcpserverconnection.h + qtcpserverconnection.h \ + ../shared/qpacketprotocol.h + +INCLUDEPATH += ../shared OTHER_FILES += qtcpserverconnection.json diff --git a/src/plugins/qmltooling/qmldbg_tcp/qtcpserverconnection.cpp b/src/plugins/qmltooling/qmldbg_tcp/qtcpserverconnection.cpp index 4eccd0d..e5f31b6 100644 --- a/src/plugins/qmltooling/qmldbg_tcp/qtcpserverconnection.cpp +++ b/src/plugins/qmltooling/qmldbg_tcp/qtcpserverconnection.cpp @@ -40,13 +40,13 @@ ****************************************************************************/ #include "qtcpserverconnection.h" +#include "qpacketprotocol.h" #include #include #include #include -#include QT_BEGIN_NAMESPACE diff --git a/src/qml/debugger/qpacketprotocol.cpp b/src/plugins/qmltooling/shared/qpacketprotocol.cpp similarity index 99% copy from src/qml/debugger/qpacketprotocol.cpp copy to src/plugins/qmltooling/shared/qpacketprotocol.cpp index 978054a..a6a4e0e 100644 --- a/src/qml/debugger/qpacketprotocol.cpp +++ b/src/plugins/qmltooling/shared/qpacketprotocol.cpp @@ -39,7 +39,7 @@ ** ****************************************************************************/ -#include "qpacketprotocol_p.h" +#include "qpacketprotocol.h" #include #include diff --git a/src/qml/debugger/qpacketprotocol_p.h b/src/plugins/qmltooling/shared/qpacketprotocol.h similarity index 85% copy from src/qml/debugger/qpacketprotocol_p.h copy to src/plugins/qmltooling/shared/qpacketprotocol.h index c6123d2..0470c74 100644 --- a/src/qml/debugger/qpacketprotocol_p.h +++ b/src/plugins/qmltooling/shared/qpacketprotocol.h @@ -42,34 +42,18 @@ #ifndef QPACKETPROTOCOL_H #define QPACKETPROTOCOL_H -// -// W A R N I N G -// ------------- -// -// This file is not part of the Qt API. It exists purely as an -// implementation detail. This header file may change from version to -// version without notice, or even be removed. -// -// We mean it. -// - #include #include -#include - -QT_BEGIN_HEADER - QT_BEGIN_NAMESPACE - class QIODevice; class QBuffer; class QPacket; class QPacketAutoSend; class QPacketProtocolPrivate; -class Q_QML_PRIVATE_EXPORT QPacketProtocol : public QObject +class QPacketProtocol : public QObject { Q_OBJECT public: @@ -101,7 +85,7 @@ private: }; -class Q_QML_PRIVATE_EXPORT QPacket : public QDataStream +class QPacket : public QDataStream { public: QPacket(); @@ -119,7 +103,7 @@ protected: QBuffer *buf; }; -class Q_QML_PRIVATE_EXPORT QPacketAutoSend : public QPacket +class QPacketAutoSend : public QPacket { public: virtual ~QPacketAutoSend(); @@ -132,6 +116,4 @@ private: QT_END_NAMESPACE -QT_END_HEADER - #endif diff --git a/src/qml/debugger/debugger.pri b/src/qml/debugger/debugger.pri index f5abd2c..f16e225 100644 --- a/src/qml/debugger/debugger.pri +++ b/src/qml/debugger/debugger.pri @@ -1,5 +1,4 @@ SOURCES += \ - $$PWD/qpacketprotocol.cpp \ $$PWD/qqmldebugservice.cpp \ $$PWD/qqmlprofilerservice.cpp \ $$PWD/qqmldebugserver.cpp \ @@ -10,7 +9,6 @@ SOURCES += \ $$PWD/qdebugmessageservice.cpp HEADERS += \ - $$PWD/qpacketprotocol_p.h \ $$PWD/qqmldebugservice_p.h \ $$PWD/qqmldebugservice_p_p.h \ $$PWD/qqmlprofilerservice_p.h \ diff --git a/tests/auto/qml/debugger/debugger.pro b/tests/auto/qml/debugger/debugger.pro index 7669aaa..81ca29a 100644 --- a/tests/auto/qml/debugger/debugger.pro +++ b/tests/auto/qml/debugger/debugger.pro @@ -1,9 +1,7 @@ TEMPLATE = subdirs -PRIVATETESTS += \ +PUBLICTESTS += \ qqmlenginedebugservice \ - qqmldebugclient \ - qqmldebugservice \ qqmldebugjs \ qqmlinspector \ qqmlprofilerservice \ @@ -11,6 +9,12 @@ PRIVATETESTS += \ qv8profilerservice \ qdebugmessageservice +PRIVATETESTS += \ + qqmldebugclient \ + qqmldebugservice + +SUBDIRS += $$PUBLICTESTS + contains(QT_CONFIG, private_tests) { SUBDIRS += $$PRIVATETESTS } diff --git a/tests/auto/qml/debugger/qdebugmessageservice/qdebugmessageservice.pro b/tests/auto/qml/debugger/qdebugmessageservice/qdebugmessageservice.pro index 4b5bf60..64f7274 100644 --- a/tests/auto/qml/debugger/qdebugmessageservice/qdebugmessageservice.pro +++ b/tests/auto/qml/debugger/qdebugmessageservice/qdebugmessageservice.pro @@ -1,6 +1,6 @@ CONFIG += testcase TARGET = tst_qdebugmessageservice -QT += network qml-private testlib +QT += qml network testlib macx:CONFIG -= app_bundle SOURCES += tst_qdebugmessageservice.cpp diff --git a/tests/auto/qml/debugger/qpacketprotocol/qpacketprotocol.pro b/tests/auto/qml/debugger/qpacketprotocol/qpacketprotocol.pro index f631929..e6869fe 100644 --- a/tests/auto/qml/debugger/qpacketprotocol/qpacketprotocol.pro +++ b/tests/auto/qml/debugger/qpacketprotocol/qpacketprotocol.pro @@ -8,4 +8,4 @@ INCLUDEPATH += ../shared include(../shared/debugutil.pri) CONFIG += parallel_test -QT += qml-private network testlib +QT += qml network testlib diff --git a/tests/auto/qml/debugger/qpacketprotocol/tst_qpacketprotocol.cpp b/tests/auto/qml/debugger/qpacketprotocol/tst_qpacketprotocol.cpp index 4a6efb4..8a8c0e5 100644 --- a/tests/auto/qml/debugger/qpacketprotocol/tst_qpacketprotocol.cpp +++ b/tests/auto/qml/debugger/qpacketprotocol/tst_qpacketprotocol.cpp @@ -46,7 +46,7 @@ #include #include -#include +#include "../../../../../src/plugins/qmltooling/shared/qpacketprotocol.h" #include "debugutil_p.h" diff --git a/tests/auto/qml/debugger/qqmldebugclient/qqmldebugclient.pro b/tests/auto/qml/debugger/qqmldebugclient/qqmldebugclient.pro index 22a4df7..60355f1 100644 --- a/tests/auto/qml/debugger/qqmldebugclient/qqmldebugclient.pro +++ b/tests/auto/qml/debugger/qqmldebugclient/qqmldebugclient.pro @@ -2,7 +2,10 @@ CONFIG += testcase TARGET = tst_qqmldebugclient macx:CONFIG -= app_bundle -SOURCES += tst_qqmldebugclient.cpp +HEADERS += ../shared/qqmldebugtestservice.h + +SOURCES += tst_qqmldebugclient.cpp \ + ../shared/qqmldebugtestservice.cpp INCLUDEPATH += ../shared include(../shared/debugutil.pri) diff --git a/tests/auto/qml/debugger/qqmldebugclient/tst_qqmldebugclient.cpp b/tests/auto/qml/debugger/qqmldebugclient/tst_qqmldebugclient.cpp index 1682913..2d52ea9 100644 --- a/tests/auto/qml/debugger/qqmldebugclient/tst_qqmldebugclient.cpp +++ b/tests/auto/qml/debugger/qqmldebugclient/tst_qqmldebugclient.cpp @@ -48,6 +48,7 @@ #include #include "debugutil_p.h" +#include "qqmldebugtestservice.h" #define PORT 13770 #define STR_PORT "13770" diff --git a/tests/auto/qml/debugger/qqmldebugjs/qqmldebugjs.pro b/tests/auto/qml/debugger/qqmldebugjs/qqmldebugjs.pro index 7c3a2ea..c06fd84 100644 --- a/tests/auto/qml/debugger/qqmldebugjs/qqmldebugjs.pro +++ b/tests/auto/qml/debugger/qqmldebugjs/qqmldebugjs.pro @@ -1,6 +1,6 @@ CONFIG += testcase TARGET = tst_qqmldebugjs -QT += qml-private testlib +QT += qml testlib macx:CONFIG -= app_bundle SOURCES += tst_qqmldebugjs.cpp diff --git a/tests/auto/qml/debugger/qqmldebugservice/qqmldebugservice.pro b/tests/auto/qml/debugger/qqmldebugservice/qqmldebugservice.pro index dc20396..bbf05b1 100644 --- a/tests/auto/qml/debugger/qqmldebugservice/qqmldebugservice.pro +++ b/tests/auto/qml/debugger/qqmldebugservice/qqmldebugservice.pro @@ -2,7 +2,11 @@ CONFIG += testcase TARGET = tst_qqmldebugservice macx:CONFIG -= app_bundle -SOURCES += tst_qqmldebugservice.cpp +HEADERS += ../shared/qqmldebugtestservice.h + +SOURCES += tst_qqmldebugservice.cpp \ + ../shared/qqmldebugtestservice.cpp + INCLUDEPATH += ../shared include(../../../shared/util.pri) include(../shared/debugutil.pri) diff --git a/tests/auto/qml/debugger/qqmldebugservice/tst_qqmldebugservice.cpp b/tests/auto/qml/debugger/qqmldebugservice/tst_qqmldebugservice.cpp index 6e14c03..a75a122 100644 --- a/tests/auto/qml/debugger/qqmldebugservice/tst_qqmldebugservice.cpp +++ b/tests/auto/qml/debugger/qqmldebugservice/tst_qqmldebugservice.cpp @@ -47,11 +47,10 @@ #include -#include - #include "../../../shared/util.h" #include "debugutil_p.h" #include "qqmldebugclient.h" +#include "qqmldebugtestservice.h" #define PORT 13769 #define STR_PORT "13769" diff --git a/tests/auto/qml/debugger/qqmlinspector/tst_qqmlinspector.pro b/tests/auto/qml/debugger/qqmlinspector/tst_qqmlinspector.pro index b4ca60b..6d47581 100644 --- a/tests/auto/qml/debugger/qqmlinspector/tst_qqmlinspector.pro +++ b/tests/auto/qml/debugger/qqmlinspector/tst_qqmlinspector.pro @@ -9,4 +9,4 @@ include(../shared/debugutil.pri) CONFIG += parallel_test declarative_debug -QT += qml-private testlib +QT += qml testlib diff --git a/tests/auto/qml/debugger/qqmlprofilerservice/qqmlprofilerservice.pro b/tests/auto/qml/debugger/qqmlprofilerservice/qqmlprofilerservice.pro index 2bf43c9..a83590c 100644 --- a/tests/auto/qml/debugger/qqmlprofilerservice/qqmlprofilerservice.pro +++ b/tests/auto/qml/debugger/qqmlprofilerservice/qqmlprofilerservice.pro @@ -12,4 +12,4 @@ OTHER_FILES += data/test.qml CONFIG += parallel_test declarative_debug -QT += core-private v8-private qml-private testlib +QT += core qml testlib diff --git a/tests/auto/qml/debugger/qqmlprofilerservice/tst_qqmlprofilerservice.cpp b/tests/auto/qml/debugger/qqmlprofilerservice/tst_qqmlprofilerservice.cpp index 2b33ab3..972c3ac 100644 --- a/tests/auto/qml/debugger/qqmlprofilerservice/tst_qqmlprofilerservice.cpp +++ b/tests/auto/qml/debugger/qqmlprofilerservice/tst_qqmlprofilerservice.cpp @@ -42,7 +42,6 @@ #include #include -#include "QtQml/private/qqmlprofilerservice_p.h" #include "debugutil_p.h" #include "qqmldebugclient.h" #include "../../../shared/util.h" @@ -50,11 +49,59 @@ #define PORT 13773 #define STR_PORT "13773" +struct QQmlProfilerData +{ + qint64 time; + int messageType; + int detailType; + + //### + QString detailData; //used by RangeData and RangeLocation + int line; //used by RangeLocation + int column; //used by RangeLocation + int framerate; //used by animation events + int animationcount; //used by animation events + + QByteArray toByteArray() const; +}; + class QQmlProfilerClient : public QQmlDebugClient { Q_OBJECT public: + enum Message { + Event, + RangeStart, + RangeData, + RangeLocation, + RangeEnd, + Complete, // end of transmission + + MaximumMessage + }; + + enum EventType { + FramePaint, + Mouse, + Key, + AnimationFrame, + EndTrace, + StartTrace, + + MaximumEventType + }; + + enum RangeType { + Painting, + Compiling, + Creating, + Binding, //running a binding + HandlingSignal, //running a signal handler + + MaximumRangeType + }; + QQmlProfilerClient(QQmlDebugConnection *connection) : QQmlDebugClient(QLatin1String("CanvasFrameRate"), connection) { @@ -123,21 +170,21 @@ void QQmlProfilerClient::messageReceived(const QByteArray &message) QVERIFY(data.time >= -1); switch (data.messageType) { - case (QQmlProfilerService::Event): { + case (QQmlProfilerClient::Event): { stream >> data.detailType; switch (data.detailType) { - case QQmlProfilerService::AnimationFrame: { + case QQmlProfilerClient::AnimationFrame: { stream >> data.framerate >> data.animationcount; QVERIFY(data.framerate != -1); QVERIFY(data.animationcount != -1); break; } - case QQmlProfilerService::FramePaint: - case QQmlProfilerService::Mouse: - case QQmlProfilerService::Key: - case QQmlProfilerService::StartTrace: - case QQmlProfilerService::EndTrace: + case QQmlProfilerClient::FramePaint: + case QQmlProfilerClient::Mouse: + case QQmlProfilerClient::Key: + case QQmlProfilerClient::StartTrace: + case QQmlProfilerClient::EndTrace: break; default: { QString failMsg = QString("Unknown event type:") + data.detailType; @@ -147,28 +194,28 @@ void QQmlProfilerClient::messageReceived(const QByteArray &message) } break; } - case QQmlProfilerService::Complete: { + case QQmlProfilerClient::Complete: { emit complete(); return; } - case QQmlProfilerService::RangeStart: { + case QQmlProfilerClient::RangeStart: { stream >> data.detailType; - QVERIFY(data.detailType >= 0 && data.detailType < QQmlProfilerService::MaximumRangeType); + QVERIFY(data.detailType >= 0 && data.detailType < QQmlProfilerClient::MaximumRangeType); break; } - case QQmlProfilerService::RangeEnd: { + case QQmlProfilerClient::RangeEnd: { stream >> data.detailType; - QVERIFY(data.detailType >= 0 && data.detailType < QQmlProfilerService::MaximumRangeType); + QVERIFY(data.detailType >= 0 && data.detailType < QQmlProfilerClient::MaximumRangeType); break; } - case QQmlProfilerService::RangeData: { + case QQmlProfilerClient::RangeData: { stream >> data.detailType >> data.detailData; - QVERIFY(data.detailType >= 0 && data.detailType < QQmlProfilerService::MaximumRangeType); + QVERIFY(data.detailType >= 0 && data.detailType < QQmlProfilerClient::MaximumRangeType); break; } - case QQmlProfilerService::RangeLocation: { + case QQmlProfilerClient::RangeLocation: { stream >> data.detailType >> data.detailData >> data.line >> data.column; - QVERIFY(data.detailType >= 0 && data.detailType < QQmlProfilerService::MaximumRangeType); + QVERIFY(data.detailType >= 0 && data.detailType < QQmlProfilerClient::MaximumRangeType); QVERIFY(data.line >= -2); break; } @@ -229,12 +276,12 @@ void tst_QQmlProfilerService::blockingConnectWithTraceEnabled() QVERIFY(m_client->traceMessages.count()); // must start with "StartTrace" - QCOMPARE(m_client->traceMessages.first().messageType, (int)QQmlProfilerService::Event); - QCOMPARE(m_client->traceMessages.first().detailType, (int)QQmlProfilerService::StartTrace); + QCOMPARE(m_client->traceMessages.first().messageType, (int)QQmlProfilerClient::Event); + QCOMPARE(m_client->traceMessages.first().detailType, (int)QQmlProfilerClient::StartTrace); // must end with "EndTrace" - QCOMPARE(m_client->traceMessages.last().messageType, (int)QQmlProfilerService::Event); - QCOMPARE(m_client->traceMessages.last().detailType, (int)QQmlProfilerService::EndTrace); + QCOMPARE(m_client->traceMessages.last().messageType, (int)QQmlProfilerClient::Event); + QCOMPARE(m_client->traceMessages.last().detailType, (int)QQmlProfilerClient::EndTrace); } void tst_QQmlProfilerService::blockingConnectWithTraceDisabled() @@ -254,12 +301,12 @@ void tst_QQmlProfilerService::blockingConnectWithTraceDisabled() QVERIFY(m_client->traceMessages.count()); // must start with "StartTrace" - QCOMPARE(m_client->traceMessages.first().messageType, (int)QQmlProfilerService::Event); - QCOMPARE(m_client->traceMessages.first().detailType, (int)QQmlProfilerService::StartTrace); + QCOMPARE(m_client->traceMessages.first().messageType, (int)QQmlProfilerClient::Event); + QCOMPARE(m_client->traceMessages.first().detailType, (int)QQmlProfilerClient::StartTrace); // must end with "EndTrace" - QCOMPARE(m_client->traceMessages.last().messageType, (int)QQmlProfilerService::Event); - QCOMPARE(m_client->traceMessages.last().detailType, (int)QQmlProfilerService::EndTrace); + QCOMPARE(m_client->traceMessages.last().messageType, (int)QQmlProfilerClient::Event); + QCOMPARE(m_client->traceMessages.last().detailType, (int)QQmlProfilerClient::EndTrace); } void tst_QQmlProfilerService::nonBlockingConnect() @@ -276,12 +323,12 @@ void tst_QQmlProfilerService::nonBlockingConnect() } // must start with "StartTrace" - QCOMPARE(m_client->traceMessages.first().messageType, (int)QQmlProfilerService::Event); - QCOMPARE(m_client->traceMessages.first().detailType, (int)QQmlProfilerService::StartTrace); + QCOMPARE(m_client->traceMessages.first().messageType, (int)QQmlProfilerClient::Event); + QCOMPARE(m_client->traceMessages.first().detailType, (int)QQmlProfilerClient::StartTrace); // must end with "EndTrace" - QCOMPARE(m_client->traceMessages.last().messageType, (int)QQmlProfilerService::Event); - QCOMPARE(m_client->traceMessages.last().detailType, (int)QQmlProfilerService::EndTrace); + QCOMPARE(m_client->traceMessages.last().messageType, (int)QQmlProfilerClient::Event); + QCOMPARE(m_client->traceMessages.last().detailType, (int)QQmlProfilerClient::EndTrace); } void tst_QQmlProfilerService::profileOnExit() @@ -298,12 +345,12 @@ void tst_QQmlProfilerService::profileOnExit() } // must start with "StartTrace" - QCOMPARE(m_client->traceMessages.first().messageType, (int)QQmlProfilerService::Event); - QCOMPARE(m_client->traceMessages.first().detailType, (int)QQmlProfilerService::StartTrace); + QCOMPARE(m_client->traceMessages.first().messageType, (int)QQmlProfilerClient::Event); + QCOMPARE(m_client->traceMessages.first().detailType, (int)QQmlProfilerClient::StartTrace); // must end with "EndTrace" - QCOMPARE(m_client->traceMessages.last().messageType, (int)QQmlProfilerService::Event); - QCOMPARE(m_client->traceMessages.last().detailType, (int)QQmlProfilerService::EndTrace); + QCOMPARE(m_client->traceMessages.last().messageType, (int)QQmlProfilerClient::Event); + QCOMPARE(m_client->traceMessages.last().detailType, (int)QQmlProfilerClient::EndTrace); } QTEST_MAIN(tst_QQmlProfilerService) diff --git a/tests/auto/qml/debugger/qv8profilerservice/qv8profilerservice.pro b/tests/auto/qml/debugger/qv8profilerservice/qv8profilerservice.pro index a8dd634..5088953 100644 --- a/tests/auto/qml/debugger/qv8profilerservice/qv8profilerservice.pro +++ b/tests/auto/qml/debugger/qv8profilerservice/qv8profilerservice.pro @@ -12,4 +12,4 @@ OTHER_FILES += data/test.qml CONFIG += parallel_test declarative_debug -QT += qml-private testlib +QT += qml testlib diff --git a/tests/auto/qml/debugger/qv8profilerservice/tst_qv8profilerservice.cpp b/tests/auto/qml/debugger/qv8profilerservice/tst_qv8profilerservice.cpp index 7b9cda9..497d544 100644 --- a/tests/auto/qml/debugger/qv8profilerservice/tst_qv8profilerservice.cpp +++ b/tests/auto/qml/debugger/qv8profilerservice/tst_qv8profilerservice.cpp @@ -42,7 +42,6 @@ #include #include -#include "QtQml/private/qv8profilerservice_p.h" #include "debugutil_p.h" #include "qqmldebugclient.h" #include "../../../shared/util.h" @@ -50,11 +49,34 @@ #define PORT 13774 #define STR_PORT "13774" +struct QV8ProfilerData +{ + int messageType; + QString filename; + QString functionname; + int lineNumber; + double totalTime; + double selfTime; + int treeLevel; + + QByteArray toByteArray() const; +}; + class QV8ProfilerClient : public QQmlDebugClient { Q_OBJECT public: + enum MessageType { + V8Entry, + V8Complete, + V8SnapshotChunk, + V8SnapshotComplete, + V8Started, + + V8MaximumMessage + }; + QV8ProfilerClient(QQmlDebugConnection *connection) : QQmlDebugClient(QLatin1String("V8Profiler"), connection) { @@ -139,28 +161,28 @@ void QV8ProfilerClient::messageReceived(const QByteArray &message) stream >> messageType; QVERIFY(messageType >= 0); - QVERIFY(messageType < QV8ProfilerService::V8MaximumMessage); + QVERIFY(messageType < QV8ProfilerClient::V8MaximumMessage); switch (messageType) { - case QV8ProfilerService::V8Entry: { + case QV8ProfilerClient::V8Entry: { QV8ProfilerData entry; stream >> entry.filename >> entry.functionname >> entry.lineNumber >> entry.totalTime >> entry.selfTime >> entry.treeLevel; traceMessages.append(entry); break; } - case QV8ProfilerService::V8Complete: + case QV8ProfilerClient::V8Complete: emit complete(); break; - case QV8ProfilerService::V8SnapshotChunk: { + case QV8ProfilerClient::V8SnapshotChunk: { QByteArray json; stream >> json; snapshotMessages.append(json); break; } - case QV8ProfilerService::V8SnapshotComplete: + case QV8ProfilerClient::V8SnapshotComplete: emit snapshot(); break; - case QV8ProfilerService::V8Started: + case QV8ProfilerClient::V8Started: emit started(); break; default: diff --git a/tests/auto/qml/debugger/shared/debugutil.cpp b/tests/auto/qml/debugger/shared/debugutil.cpp index 3d2f460..ac9fa5f 100644 --- a/tests/auto/qml/debugger/shared/debugutil.cpp +++ b/tests/auto/qml/debugger/shared/debugutil.cpp @@ -55,23 +55,6 @@ bool QQmlDebugTest::waitForSignal(QObject *receiver, const char *member, int tim return timer.isActive(); } -QQmlDebugTestService::QQmlDebugTestService(const QString &s, float version, QObject *parent) - : QQmlDebugService(s, version, parent) -{ - registerService(); -} - -void QQmlDebugTestService::messageReceived(const QByteArray &ba) -{ - sendMessage(ba); -} - -void QQmlDebugTestService::stateChanged(State) -{ - emit stateHasChanged(); -} - - QQmlDebugTestClient::QQmlDebugTestClient(const QString &s, QQmlDebugConnection *c) : QQmlDebugClient(s, c) { diff --git a/tests/auto/qml/debugger/shared/debugutil.pri b/tests/auto/qml/debugger/shared/debugutil.pri index b74f6b0..ddce647 100644 --- a/tests/auto/qml/debugger/shared/debugutil.pri +++ b/tests/auto/qml/debugger/shared/debugutil.pri @@ -1,9 +1,10 @@ -QT += core-private - HEADERS += $$PWD/debugutil_p.h \ $$PWD/qqmldebugclient.h \ - $$PWD/qqmlenginedebug_p.h + $$PWD/qqmlenginedebug_p.h \ + $$PWD/../../../../../src/plugins/qmltooling/shared/qpacketprotocol.h + SOURCES += $$PWD/debugutil.cpp \ $$PWD/qqmldebugclient.cpp \ - $$PWD/qqmlenginedebug.cpp + $$PWD/qqmlenginedebug.cpp \ + $$PWD/../../../../../src/plugins/qmltooling/shared/qpacketprotocol.cpp diff --git a/tests/auto/qml/debugger/shared/debugutil_p.h b/tests/auto/qml/debugger/shared/debugutil_p.h index 177c712..2ea295b 100644 --- a/tests/auto/qml/debugger/shared/debugutil_p.h +++ b/tests/auto/qml/debugger/shared/debugutil_p.h @@ -52,7 +52,6 @@ #include #include "qqmldebugclient.h" -#include class QQmlDebugTest { @@ -60,20 +59,6 @@ public: static bool waitForSignal(QObject *receiver, const char *member, int timeout = 5000); }; -class QQmlDebugTestService : public QQmlDebugService -{ - Q_OBJECT -public: - QQmlDebugTestService(const QString &s, float version = 1, QObject *parent = 0); - -signals: - void stateHasChanged(); - -protected: - virtual void messageReceived(const QByteArray &ba); - virtual void stateChanged(State state); -}; - class QQmlDebugTestClient : public QQmlDebugClient { Q_OBJECT diff --git a/tests/auto/qml/debugger/shared/qqmldebugclient.cpp b/tests/auto/qml/debugger/shared/qqmldebugclient.cpp index 0453f88..50feb95 100644 --- a/tests/auto/qml/debugger/shared/qqmldebugclient.cpp +++ b/tests/auto/qml/debugger/shared/qqmldebugclient.cpp @@ -40,8 +40,7 @@ ****************************************************************************/ #include "qqmldebugclient.h" - -#include +#include "../../../../../src/plugins/qmltooling/shared/qpacketprotocol.h" #include #include diff --git a/tests/auto/qml/debugger/shared/qqmldebugclient.h b/tests/auto/qml/debugger/shared/qqmldebugclient.h index 1b05e86..0f140a1 100644 --- a/tests/auto/qml/debugger/shared/qqmldebugclient.h +++ b/tests/auto/qml/debugger/shared/qqmldebugclient.h @@ -44,8 +44,6 @@ #include -#include - class QQmlDebugConnectionPrivate; class QQmlDebugConnection : public QIODevice { @@ -84,7 +82,6 @@ class QQmlDebugClientPrivate; class QQmlDebugClient : public QObject { Q_OBJECT - Q_DECLARE_PRIVATE(QQmlDebugClient) Q_DISABLE_COPY(QQmlDebugClient) public: diff --git a/tests/auto/qml/debugger/shared/qqmldebugtestservice.cpp b/tests/auto/qml/debugger/shared/qqmldebugtestservice.cpp new file mode 100644 index 0000000..1c8afd8 --- /dev/null +++ b/tests/auto/qml/debugger/shared/qqmldebugtestservice.cpp @@ -0,0 +1,58 @@ +/**************************************************************************** +** +** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies). +** Contact: http://www.qt-project.org/ +** +** This file is part of the test suite of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:LGPL$ +** GNU Lesser General Public License Usage +** This file may be used under the terms of the GNU Lesser General Public +** License version 2.1 as published by the Free Software Foundation and +** appearing in the file LICENSE.LGPL included in the packaging of this +** file. Please review the following information to ensure the GNU Lesser +** General Public License version 2.1 requirements will be met: +** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Nokia gives you certain additional +** rights. These rights are described in the Nokia Qt LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU General +** Public License version 3.0 as published by the Free Software Foundation +** and appearing in the file LICENSE.GPL included in the packaging of this +** file. Please review the following information to ensure the GNU General +** Public License version 3.0 requirements will be met: +** http://www.gnu.org/copyleft/gpl.html. +** +** Other Usage +** Alternatively, this file may be used in accordance with the terms and +** conditions contained in a signed written agreement between you and Nokia. +** +** +** +** +** +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +#include "qqmldebugtestservice.h" + +QQmlDebugTestService::QQmlDebugTestService(const QString &s, float version, QObject *parent) + : QQmlDebugService(s, version, parent) +{ + registerService(); +} + +void QQmlDebugTestService::messageReceived(const QByteArray &ba) +{ + sendMessage(ba); +} + +void QQmlDebugTestService::stateChanged(State) +{ + emit stateHasChanged(); +} diff --git a/tests/auto/qml/debugger/shared/qqmldebugtestservice.h b/tests/auto/qml/debugger/shared/qqmldebugtestservice.h new file mode 100644 index 0000000..14fda55 --- /dev/null +++ b/tests/auto/qml/debugger/shared/qqmldebugtestservice.h @@ -0,0 +1,62 @@ + +/**************************************************************************** +** +** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies). +** Contact: http://www.qt-project.org/ +** +** This file is part of the test suite of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:LGPL$ +** GNU Lesser General Public License Usage +** This file may be used under the terms of the GNU Lesser General Public +** License version 2.1 as published by the Free Software Foundation and +** appearing in the file LICENSE.LGPL included in the packaging of this +** file. Please review the following information to ensure the GNU Lesser +** General Public License version 2.1 requirements will be met: +** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Nokia gives you certain additional +** rights. These rights are described in the Nokia Qt LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU General +** Public License version 3.0 as published by the Free Software Foundation +** and appearing in the file LICENSE.GPL included in the packaging of this +** file. Please review the following information to ensure the GNU General +** Public License version 3.0 requirements will be met: +** http://www.gnu.org/copyleft/gpl.html. +** +** Other Usage +** Alternatively, this file may be used in accordance with the terms and +** conditions contained in a signed written agreement between you and Nokia. +** +** +** +** +** +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +#ifndef QQMLDEBUGTESTSERVICE_H +#define QQMLDEBUGTESTSERVICE_H + +#include + +class QQmlDebugTestService : public QQmlDebugService +{ + Q_OBJECT +public: + QQmlDebugTestService(const QString &s, float version = 1, QObject *parent = 0); + +signals: + void stateHasChanged(); + +protected: + virtual void messageReceived(const QByteArray &ba); + virtual void stateChanged(State state); +}; + +#endif // QQMLDEBUGTESTSERVICE_H diff --git a/tests/auto/qml/debugger/shared/qqmlenginedebug.cpp b/tests/auto/qml/debugger/shared/qqmlenginedebug.cpp index 8a46c76..bf763c8 100644 --- a/tests/auto/qml/debugger/shared/qqmlenginedebug.cpp +++ b/tests/auto/qml/debugger/shared/qqmlenginedebug.cpp @@ -43,9 +43,42 @@ #include "qqmldebugclient.h" -#include +struct QmlObjectData { + QUrl url; + int lineNumber; + int columnNumber; + QString idString; + QString objectName; + QString objectType; + int objectId; + int contextId; +}; + +QDataStream &operator>>(QDataStream &ds, QmlObjectData &data) +{ + ds >> data.url >> data.lineNumber >> data.columnNumber >> data.idString + >> data.objectName >> data.objectType >> data.objectId >> data.contextId; + return ds; +} + +struct QmlObjectProperty { + enum Type { Unknown, Basic, Object, List, SignalProperty }; + Type type; + QString name; + QVariant value; + QString valueTypeName; + QString binding; + bool hasNotifySignal; +}; -#include +QDataStream &operator>>(QDataStream &ds, QmlObjectProperty &data) +{ + int type; + ds >> type >> data.name >> data.value >> data.valueTypeName + >> data.binding >> data.hasNotifySignal; + data.type = (QmlObjectProperty::Type)type; + return ds; +} class QQmlEngineDebugClient : public QQmlDebugClient { @@ -61,16 +94,16 @@ private: friend class QQmlEngineDebugPrivate; }; -class QQmlEngineDebugPrivate : public QObjectPrivate +class QQmlEngineDebugPrivate { - Q_DECLARE_PUBLIC(QQmlEngineDebug) public: - QQmlEngineDebugPrivate(QQmlDebugConnection *); + QQmlEngineDebugPrivate(QQmlEngineDebug *, QQmlDebugConnection *); ~QQmlEngineDebugPrivate(); void stateChanged(QQmlEngineDebug::State status); void message(const QByteArray &); + QQmlEngineDebug *q; QQmlEngineDebugClient *client; int nextId; int getId(); @@ -110,8 +143,9 @@ void QQmlEngineDebugClient::messageReceived(const QByteArray &data) priv->message(data); } -QQmlEngineDebugPrivate::QQmlEngineDebugPrivate(QQmlDebugConnection *c) - : client(new QQmlEngineDebugClient(c, this)), nextId(0) +QQmlEngineDebugPrivate::QQmlEngineDebugPrivate(QQmlEngineDebug *p, QQmlDebugConnection *c) + : q(p), + client(new QQmlEngineDebugClient(c, this)), nextId(0) { } @@ -164,7 +198,7 @@ int QQmlEngineDebugPrivate::getId() void QQmlEngineDebugPrivate::remove(QQmlEngineDebug *c, QQmlDebugEnginesQuery *q) { if (c && q) { - QQmlEngineDebugPrivate *p = (QQmlEngineDebugPrivate *)QObjectPrivate::get(c); + QQmlEngineDebugPrivate *p = c->getPrivate(); p->enginesQuery.remove(q->m_queryId); } } @@ -173,7 +207,7 @@ void QQmlEngineDebugPrivate::remove(QQmlEngineDebug *c, QQmlDebugRootContextQuery *q) { if (c && q) { - QQmlEngineDebugPrivate *p = (QQmlEngineDebugPrivate *)QObjectPrivate::get(c); + QQmlEngineDebugPrivate *p = c->getPrivate(); p->rootContextQuery.remove(q->m_queryId); } } @@ -181,7 +215,7 @@ void QQmlEngineDebugPrivate::remove(QQmlEngineDebug *c, void QQmlEngineDebugPrivate::remove(QQmlEngineDebug *c, QQmlDebugObjectQuery *q) { if (c && q) { - QQmlEngineDebugPrivate *p = (QQmlEngineDebugPrivate *)QObjectPrivate::get(c); + QQmlEngineDebugPrivate *p = c->getPrivate(); p->objectQuery.remove(q->m_queryId); } } @@ -189,7 +223,7 @@ void QQmlEngineDebugPrivate::remove(QQmlEngineDebug *c, QQmlDebugObjectQuery *q) void QQmlEngineDebugPrivate::remove(QQmlEngineDebug *c, QQmlDebugExpressionQuery *q) { if (c && q) { - QQmlEngineDebugPrivate *p = (QQmlEngineDebugPrivate *)QObjectPrivate::get(c); + QQmlEngineDebugPrivate *p = c->getPrivate(); p->expressionQuery.remove(q->m_queryId); } } @@ -197,7 +231,7 @@ void QQmlEngineDebugPrivate::remove(QQmlEngineDebug *c, QQmlDebugExpressionQuery void QQmlEngineDebugPrivate::remove(QQmlEngineDebug *c, QQmlDebugWatch *w) { if (c && w) { - QQmlEngineDebugPrivate *p = (QQmlEngineDebugPrivate *)QObjectPrivate::get(c); + QQmlEngineDebugPrivate *p = c->getPrivate(); p->watched.remove(w->m_queryId); } } @@ -205,7 +239,7 @@ void QQmlEngineDebugPrivate::remove(QQmlEngineDebug *c, QQmlDebugWatch *w) void QQmlEngineDebugPrivate::decode(QDataStream &ds, QQmlDebugObjectReference &o, bool simple) { - QQmlEngineDebugService::QQmlObjectData data; + QmlObjectData data; ds >> data; o.m_debugId = data.objectId; o.m_class = data.objectType; @@ -232,7 +266,7 @@ void QQmlEngineDebugPrivate::decode(QDataStream &ds, QQmlDebugObjectReference &o ds >> propCount; for (int ii = 0; ii < propCount; ++ii) { - QQmlEngineDebugService::QQmlObjectProperty data; + QmlObjectProperty data; ds >> data; QQmlDebugPropertyReference prop; prop.m_objectDebugId = o.m_debugId; @@ -241,21 +275,21 @@ void QQmlEngineDebugPrivate::decode(QDataStream &ds, QQmlDebugObjectReference &o prop.m_hasNotifySignal = data.hasNotifySignal; prop.m_valueTypeName = data.valueTypeName; switch (data.type) { - case QQmlEngineDebugService::QQmlObjectProperty::Basic: - case QQmlEngineDebugService::QQmlObjectProperty::List: - case QQmlEngineDebugService::QQmlObjectProperty::SignalProperty: + case QmlObjectProperty::Basic: + case QmlObjectProperty::List: + case QmlObjectProperty::SignalProperty: { prop.m_value = data.value; break; } - case QQmlEngineDebugService::QQmlObjectProperty::Object: + case QmlObjectProperty::Object: { QQmlDebugObjectReference obj; obj.m_debugId = prop.m_value.toInt(); prop.m_value = QVariant::fromValue(obj); break; } - case QQmlEngineDebugService::QQmlObjectProperty::Unknown: + case QmlObjectProperty::Unknown: break; } o.m_properties << prop; @@ -288,7 +322,7 @@ void QQmlEngineDebugPrivate::decode(QDataStream &ds, QQmlDebugContextReference & void QQmlEngineDebugPrivate::stateChanged(QQmlEngineDebug::State status) { - emit q_func()->stateChanged(status); + emit q->stateChanged(status); } void QQmlEngineDebugPrivate::message(const QByteArray &data) @@ -404,30 +438,28 @@ void QQmlEngineDebugPrivate::message(const QByteArray &data) return; emit watch->valueChanged(name, value); } else if (type == "OBJECT_CREATED") { - emit q_func()->newObjects(); + emit q->newObjects(); } } QQmlEngineDebug::QQmlEngineDebug(QQmlDebugConnection *client, QObject *parent) - : QObject(*(new QQmlEngineDebugPrivate(client)), parent) + : QObject(parent), + d(new QQmlEngineDebugPrivate(this, client)) { } QQmlEngineDebug::~QQmlEngineDebug() { + delete d; } QQmlEngineDebug::State QQmlEngineDebug::state() const { - Q_D(const QQmlEngineDebug); - return static_cast(d->client->state()); } QQmlDebugPropertyWatch *QQmlEngineDebug::addWatch(const QQmlDebugPropertyReference &property, QObject *parent) { - Q_D(QQmlEngineDebug); - QQmlDebugPropertyWatch *watch = new QQmlDebugPropertyWatch(parent); if (d->client->state() == QQmlDebugClient::Enabled) { int queryId = d->getId(); @@ -456,7 +488,6 @@ QQmlDebugWatch *QQmlEngineDebug::addWatch(const QQmlDebugContextReference &, con QQmlDebugObjectExpressionWatch *QQmlEngineDebug::addWatch(const QQmlDebugObjectReference &object, const QString &expr, QObject *parent) { - Q_D(QQmlEngineDebug); QQmlDebugObjectExpressionWatch *watch = new QQmlDebugObjectExpressionWatch(parent); if (d->client->state() == QQmlDebugClient::Enabled) { int queryId = d->getId(); @@ -478,8 +509,6 @@ QQmlDebugObjectExpressionWatch *QQmlEngineDebug::addWatch(const QQmlDebugObjectR QQmlDebugWatch *QQmlEngineDebug::addWatch(const QQmlDebugObjectReference &object, QObject *parent) { - Q_D(QQmlEngineDebug); - QQmlDebugWatch *watch = new QQmlDebugWatch(parent); if (d->client->state() == QQmlDebugClient::Enabled) { int queryId = d->getId(); @@ -507,8 +536,6 @@ QQmlDebugWatch *QQmlEngineDebug::addWatch(const QQmlDebugFileReference &, QObjec void QQmlEngineDebug::removeWatch(QQmlDebugWatch *watch) { - Q_D(QQmlEngineDebug); - if (!watch || !watch->m_client) return; @@ -527,8 +554,6 @@ void QQmlEngineDebug::removeWatch(QQmlDebugWatch *watch) QQmlDebugEnginesQuery *QQmlEngineDebug::queryAvailableEngines(QObject *parent) { - Q_D(QQmlEngineDebug); - QQmlDebugEnginesQuery *query = new QQmlDebugEnginesQuery(parent); if (d->client->state() == QQmlDebugClient::Enabled) { query->m_client = this; @@ -549,8 +574,6 @@ QQmlDebugEnginesQuery *QQmlEngineDebug::queryAvailableEngines(QObject *parent) QQmlDebugRootContextQuery *QQmlEngineDebug::queryRootContexts(const QQmlDebugEngineReference &engine, QObject *parent) { - Q_D(QQmlEngineDebug); - QQmlDebugRootContextQuery *query = new QQmlDebugRootContextQuery(parent); if (d->client->state() == QQmlDebugClient::Enabled && engine.debugId() != -1) { query->m_client = this; @@ -571,8 +594,6 @@ QQmlDebugRootContextQuery *QQmlEngineDebug::queryRootContexts(const QQmlDebugEng QQmlDebugObjectQuery *QQmlEngineDebug::queryObject(const QQmlDebugObjectReference &object, QObject *parent) { - Q_D(QQmlEngineDebug); - QQmlDebugObjectQuery *query = new QQmlDebugObjectQuery(parent); if (d->client->state() == QQmlDebugClient::Enabled && object.debugId() != -1) { query->m_client = this; @@ -594,8 +615,6 @@ QQmlDebugObjectQuery *QQmlEngineDebug::queryObject(const QQmlDebugObjectReferenc QQmlDebugObjectQuery *QQmlEngineDebug::queryObjectRecursive(const QQmlDebugObjectReference &object, QObject *parent) { - Q_D(QQmlEngineDebug); - QQmlDebugObjectQuery *query = new QQmlDebugObjectQuery(parent); if (d->client->state() == QQmlDebugClient::Enabled && object.debugId() != -1) { query->m_client = this; @@ -617,8 +636,6 @@ QQmlDebugObjectQuery *QQmlEngineDebug::queryObjectRecursive(const QQmlDebugObjec QQmlDebugExpressionQuery *QQmlEngineDebug::queryExpressionResult(int objectDebugId, const QString &expr, QObject *parent) { - Q_D(QQmlEngineDebug); - QQmlDebugExpressionQuery *query = new QQmlDebugExpressionQuery(parent); if (d->client->state() == QQmlDebugClient::Enabled && objectDebugId != -1) { query->m_client = this; @@ -643,8 +660,6 @@ bool QQmlEngineDebug::setBindingForObject(int objectDebugId, const QString &prop bool isLiteralValue, QString source, int line) { - Q_D(QQmlEngineDebug); - if (d->client->state() == QQmlDebugClient::Enabled && objectDebugId != -1) { QByteArray message; QDataStream ds(&message, QIODevice::WriteOnly); @@ -658,8 +673,6 @@ bool QQmlEngineDebug::setBindingForObject(int objectDebugId, const QString &prop bool QQmlEngineDebug::resetBindingForObject(int objectDebugId, const QString &propertyName) { - Q_D(QQmlEngineDebug); - if (d->client->state() == QQmlDebugClient::Enabled && objectDebugId != -1) { QByteArray message; QDataStream ds(&message, QIODevice::WriteOnly); @@ -674,8 +687,6 @@ bool QQmlEngineDebug::resetBindingForObject(int objectDebugId, const QString &pr bool QQmlEngineDebug::setMethodBody(int objectDebugId, const QString &methodName, const QString &methodBody) { - Q_D(QQmlEngineDebug); - if (d->client->state() == QQmlDebugClient::Enabled && objectDebugId != -1) { QByteArray message; QDataStream ds(&message, QIODevice::WriteOnly); diff --git a/tests/auto/qml/debugger/shared/qqmlenginedebug_p.h b/tests/auto/qml/debugger/shared/qqmlenginedebug_p.h index 2ebdebc..2644346 100644 --- a/tests/auto/qml/debugger/shared/qqmlenginedebug_p.h +++ b/tests/auto/qml/debugger/shared/qqmlenginedebug_p.h @@ -42,23 +42,10 @@ #ifndef QQMLENGINEDEBUG_H #define QQMLENGINEDEBUG_H -// -// W A R N I N G -// ------------- -// -// This file is not part of the Qt API. It exists purely as an -// implementation detail. This header file may change from version to -// version without notice, or even be removed. -// -// We mean it. -// - #include #include #include -#include - class QQmlDebugConnection; class QQmlDebugWatch; class QQmlDebugPropertyWatch; @@ -113,12 +100,14 @@ public: bool resetBindingForObject(int objectDebugId, const QString &propertyName); bool setMethodBody(int objectDebugId, const QString &methodName, const QString &methodBody); + QQmlEngineDebugPrivate *getPrivate() const { return d; } + Q_SIGNALS: void newObjects(); void stateChanged(State state); private: - Q_DECLARE_PRIVATE(QQmlEngineDebug) + QQmlEngineDebugPrivate *d; }; class QQmlDebugWatch : public QObject diff --git a/tools/qmlprofiler/qmlprofiler.pro b/tools/qmlprofiler/qmlprofiler.pro index c35c487..60c2e70 100644 --- a/tools/qmlprofiler/qmlprofiler.pro +++ b/tools/qmlprofiler/qmlprofiler.pro @@ -16,7 +16,8 @@ SOURCES += main.cpp \ commandlistener.cpp \ qqmldebugclient.cpp \ qmlprofilerdata.cpp \ - qmlprofilerclient.cpp + qmlprofilerclient.cpp \ + qpacketprotocol.cpp HEADERS += \ qmlprofilerapplication.h \ @@ -25,4 +26,5 @@ HEADERS += \ qmlprofilerdata.h \ qmlprofilerclient.h \ qmlprofilereventlocation.h \ - qqmldebugclient.h + qqmldebugclient.h \ + qpacketprotocol.h diff --git a/src/qml/debugger/qpacketprotocol.cpp b/tools/qmlprofiler/qpacketprotocol.cpp similarity index 99% rename from src/qml/debugger/qpacketprotocol.cpp rename to tools/qmlprofiler/qpacketprotocol.cpp index 978054a..1dd079c 100644 --- a/src/qml/debugger/qpacketprotocol.cpp +++ b/tools/qmlprofiler/qpacketprotocol.cpp @@ -39,13 +39,11 @@ ** ****************************************************************************/ -#include "qpacketprotocol_p.h" +#include "qpacketprotocol.h" #include #include -QT_BEGIN_NAMESPACE - static const unsigned int MAX_PACKET_SIZE = 0x7FFFFFFF; /*! @@ -545,6 +543,4 @@ QPacketAutoSend::~QPacketAutoSend() p->send(*this); } -QT_END_NAMESPACE - #include diff --git a/src/qml/debugger/qpacketprotocol_p.h b/tools/qmlprofiler/qpacketprotocol.h similarity index 85% rename from src/qml/debugger/qpacketprotocol_p.h rename to tools/qmlprofiler/qpacketprotocol.h index c6123d2..be5fa28 100644 --- a/src/qml/debugger/qpacketprotocol_p.h +++ b/tools/qmlprofiler/qpacketprotocol.h @@ -42,34 +42,18 @@ #ifndef QPACKETPROTOCOL_H #define QPACKETPROTOCOL_H -// -// W A R N I N G -// ------------- -// -// This file is not part of the Qt API. It exists purely as an -// implementation detail. This header file may change from version to -// version without notice, or even be removed. -// -// We mean it. -// - #include #include -#include - -QT_BEGIN_HEADER - QT_BEGIN_NAMESPACE - - class QIODevice; class QBuffer; +QT_END_NAMESPACE class QPacket; class QPacketAutoSend; class QPacketProtocolPrivate; -class Q_QML_PRIVATE_EXPORT QPacketProtocol : public QObject +class QPacketProtocol : public QObject { Q_OBJECT public: @@ -101,7 +85,7 @@ private: }; -class Q_QML_PRIVATE_EXPORT QPacket : public QDataStream +class QPacket : public QDataStream { public: QPacket(); @@ -119,7 +103,7 @@ protected: QBuffer *buf; }; -class Q_QML_PRIVATE_EXPORT QPacketAutoSend : public QPacket +class QPacketAutoSend : public QPacket { public: virtual ~QPacketAutoSend(); @@ -130,8 +114,4 @@ private: QPacketProtocol *p; }; -QT_END_NAMESPACE - -QT_END_HEADER - #endif diff --git a/tools/qmlprofiler/qqmldebugclient.cpp b/tools/qmlprofiler/qqmldebugclient.cpp index 0453f88..36402be 100644 --- a/tools/qmlprofiler/qqmldebugclient.cpp +++ b/tools/qmlprofiler/qqmldebugclient.cpp @@ -40,8 +40,7 @@ ****************************************************************************/ #include "qqmldebugclient.h" - -#include +#include "qpacketprotocol.h" #include #include