2011-04-27 10:05:43 +00:00
|
|
|
/****************************************************************************
|
|
|
|
**
|
|
|
|
** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
|
|
|
|
** All rights reserved.
|
|
|
|
** Contact: Nokia Corporation (qt-info@nokia.com)
|
|
|
|
**
|
|
|
|
** This file is part of the QtDeclarative module of the Qt Toolkit.
|
|
|
|
**
|
|
|
|
** $QT_BEGIN_LICENSE:LGPL$
|
|
|
|
** GNU Lesser General Public License Usage
|
2011-05-24 11:43:28 +00:00
|
|
|
** 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.
|
2011-04-27 10:05:43 +00:00
|
|
|
**
|
|
|
|
** In addition, as a special exception, Nokia gives you certain additional
|
2011-05-24 11:43:28 +00:00
|
|
|
** rights. These rights are described in the Nokia Qt LGPL Exception
|
2011-04-27 10:05:43 +00:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
**
|
2011-05-24 11:43:28 +00:00
|
|
|
** 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.
|
2011-04-27 10:05:43 +00:00
|
|
|
**
|
|
|
|
**
|
|
|
|
**
|
|
|
|
**
|
|
|
|
**
|
|
|
|
** $QT_END_LICENSE$
|
|
|
|
**
|
|
|
|
****************************************************************************/
|
|
|
|
|
2011-10-12 06:26:22 +00:00
|
|
|
#include "qdeclarativedebugserver_p.h"
|
|
|
|
#include "qdeclarativedebugservice_p.h"
|
|
|
|
#include "qdeclarativedebugservice_p_p.h"
|
|
|
|
#include <private/qdeclarativeengine_p.h>
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
#include <QtCore/QDir>
|
|
|
|
#include <QtCore/QPluginLoader>
|
|
|
|
#include <QtCore/QStringList>
|
|
|
|
|
|
|
|
#include <private/qobject_p.h>
|
2011-09-30 12:44:53 +00:00
|
|
|
#include <private/qcoreapplication_p.h>
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
|
|
|
|
/*
|
|
|
|
QDeclarativeDebug Protocol (Version 1):
|
|
|
|
|
|
|
|
handshake:
|
|
|
|
1. Client sends
|
|
|
|
"QDeclarativeDebugServer" 0 version pluginNames
|
|
|
|
version: an int representing the highest protocol version the client knows
|
|
|
|
pluginNames: plugins available on client side
|
|
|
|
2. Server sends
|
|
|
|
"QDeclarativeDebugClient" 0 version pluginNames
|
|
|
|
version: an int representing the highest protocol version the client & server know
|
|
|
|
pluginNames: plugins available on server side. plugins both in the client and server message are enabled.
|
|
|
|
client plugin advertisement
|
|
|
|
1. Client sends
|
|
|
|
"QDeclarativeDebugServer" 1 pluginNames
|
|
|
|
server plugin advertisement
|
|
|
|
1. Server sends
|
|
|
|
"QDeclarativeDebugClient" 1 pluginNames
|
|
|
|
plugin communication:
|
|
|
|
Everything send with a header different to "QDeclarativeDebugServer" is sent to the appropriate plugin.
|
|
|
|
*/
|
|
|
|
|
|
|
|
const int protocolVersion = 1;
|
|
|
|
|
2011-10-31 13:40:37 +00:00
|
|
|
// print detailed information about loading of plugins
|
|
|
|
DEFINE_BOOL_CONFIG_OPTION(qmlDebugVerbose, QML_DEBUGGER_VERBOSE)
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
class QDeclarativeDebugServerPrivate : public QObjectPrivate
|
|
|
|
{
|
|
|
|
Q_DECLARE_PUBLIC(QDeclarativeDebugServer)
|
|
|
|
public:
|
|
|
|
QDeclarativeDebugServerPrivate();
|
|
|
|
|
|
|
|
void advertisePlugins();
|
|
|
|
|
|
|
|
QDeclarativeDebugServerConnection *connection;
|
|
|
|
QHash<QString, QDeclarativeDebugService *> plugins;
|
|
|
|
QStringList clientPlugins;
|
|
|
|
bool gotHello;
|
2011-04-27 12:13:26 +00:00
|
|
|
QString waitingForMsgFromService;
|
2011-08-24 10:13:39 +00:00
|
|
|
bool waitingForMsgSucceeded;
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2011-04-27 12:13:26 +00:00
|
|
|
private:
|
|
|
|
// private slot
|
|
|
|
void _q_deliverMessage(const QString &serviceName, const QByteArray &message);
|
2011-11-17 11:19:45 +00:00
|
|
|
static QDeclarativeDebugServerConnection *loadConnectionPlugin(QPluginLoader *loader, const QString &pluginName);
|
|
|
|
|
2011-04-27 10:05:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
QDeclarativeDebugServerPrivate::QDeclarativeDebugServerPrivate() :
|
|
|
|
connection(0),
|
2011-08-24 10:13:39 +00:00
|
|
|
gotHello(false),
|
|
|
|
waitingForMsgSucceeded(false)
|
2011-04-27 10:05:43 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void QDeclarativeDebugServerPrivate::advertisePlugins()
|
|
|
|
{
|
|
|
|
if (!gotHello)
|
|
|
|
return;
|
|
|
|
|
|
|
|
QByteArray message;
|
|
|
|
{
|
|
|
|
QDataStream out(&message, QIODevice::WriteOnly);
|
|
|
|
out << QString(QLatin1String("QDeclarativeDebugClient")) << 1 << plugins.keys();
|
|
|
|
}
|
|
|
|
connection->send(message);
|
|
|
|
}
|
|
|
|
|
|
|
|
QDeclarativeDebugServerConnection *QDeclarativeDebugServerPrivate::loadConnectionPlugin(
|
2011-11-17 11:19:45 +00:00
|
|
|
QPluginLoader *loader, const QString &pluginName)
|
2011-04-27 10:05:43 +00:00
|
|
|
{
|
2011-05-02 09:23:47 +00:00
|
|
|
#ifndef QT_NO_LIBRARY
|
2011-04-27 10:05:43 +00:00
|
|
|
QStringList pluginCandidates;
|
|
|
|
const QStringList paths = QCoreApplication::libraryPaths();
|
|
|
|
foreach (const QString &libPath, paths) {
|
|
|
|
const QDir dir(libPath + QLatin1String("/qmltooling"));
|
|
|
|
if (dir.exists()) {
|
|
|
|
QStringList plugins(dir.entryList(QDir::Files));
|
|
|
|
foreach (const QString &pluginPath, plugins) {
|
|
|
|
if (QFileInfo(pluginPath).fileName().contains(pluginName))
|
|
|
|
pluginCandidates << dir.absoluteFilePath(pluginPath);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach (const QString &pluginPath, pluginCandidates) {
|
2011-10-31 13:40:37 +00:00
|
|
|
if (qmlDebugVerbose())
|
|
|
|
qDebug() << "QDeclarativeDebugServer: Trying to load plugin " << pluginPath << "...";
|
|
|
|
|
2011-11-17 11:19:45 +00:00
|
|
|
loader->setFileName(pluginPath);
|
|
|
|
if (!loader->load()) {
|
2011-10-31 13:40:37 +00:00
|
|
|
if (qmlDebugVerbose())
|
2011-11-17 11:19:45 +00:00
|
|
|
qDebug() << "QDeclarativeDebugServer: Error while loading: " << loader->errorString();
|
2011-04-27 10:05:43 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
QDeclarativeDebugServerConnection *connection = 0;
|
2011-11-17 11:19:45 +00:00
|
|
|
if (QObject *instance = loader->instance())
|
2011-04-27 10:05:43 +00:00
|
|
|
connection = qobject_cast<QDeclarativeDebugServerConnection*>(instance);
|
|
|
|
|
2011-10-31 13:40:37 +00:00
|
|
|
if (connection) {
|
|
|
|
if (qmlDebugVerbose())
|
|
|
|
qDebug() << "QDeclarativeDebugServer: Plugin successfully loaded.";
|
|
|
|
|
2011-04-27 10:05:43 +00:00
|
|
|
return connection;
|
2011-10-31 13:40:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (qmlDebugVerbose())
|
|
|
|
qDebug() << "QDeclarativeDebugServer: Plugin does not implement interface QDeclarativeDebugServerConnection.";
|
|
|
|
|
2011-11-17 11:19:45 +00:00
|
|
|
loader->unload();
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
2011-05-02 09:23:47 +00:00
|
|
|
#endif
|
2011-04-27 10:05:43 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool QDeclarativeDebugServer::hasDebuggingClient() const
|
|
|
|
{
|
|
|
|
Q_D(const QDeclarativeDebugServer);
|
|
|
|
return d->connection
|
|
|
|
&& d->connection->isConnected()
|
|
|
|
&& d->gotHello;
|
|
|
|
}
|
|
|
|
|
|
|
|
QDeclarativeDebugServer *QDeclarativeDebugServer::instance()
|
|
|
|
{
|
|
|
|
static bool commandLineTested = false;
|
|
|
|
static QDeclarativeDebugServer *server = 0;
|
|
|
|
|
|
|
|
if (!commandLineTested) {
|
|
|
|
commandLineTested = true;
|
|
|
|
|
2011-09-30 12:44:53 +00:00
|
|
|
QCoreApplicationPrivate *appD = static_cast<QCoreApplicationPrivate*>(QObjectPrivate::get(qApp));
|
2011-04-27 10:05:43 +00:00
|
|
|
#ifndef QDECLARATIVE_NO_DEBUG_PROTOCOL
|
|
|
|
// ### remove port definition when protocol is changed
|
|
|
|
int port = 0;
|
|
|
|
bool block = false;
|
|
|
|
bool ok = false;
|
|
|
|
|
|
|
|
// format: qmljsdebugger=port:3768[,block] OR qmljsdebugger=ost[,block]
|
|
|
|
if (!appD->qmljsDebugArgumentsString().isEmpty()) {
|
|
|
|
if (!QDeclarativeEnginePrivate::qml_debugging_enabled) {
|
2011-09-19 11:20:41 +00:00
|
|
|
qWarning() << QString::fromLatin1(
|
|
|
|
"QDeclarativeDebugServer: Ignoring \"-qmljsdebugger=%1\". "
|
|
|
|
"Debugging has not been enabled.").arg(
|
|
|
|
appD->qmljsDebugArgumentsString());
|
2011-04-27 10:05:43 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString pluginName;
|
|
|
|
if (appD->qmljsDebugArgumentsString().indexOf(QLatin1String("port:")) == 0) {
|
|
|
|
int separatorIndex = appD->qmljsDebugArgumentsString().indexOf(QLatin1Char(','));
|
|
|
|
port = appD->qmljsDebugArgumentsString().mid(5, separatorIndex - 5).toInt(&ok);
|
|
|
|
pluginName = QLatin1String("qmldbg_tcp");
|
2011-04-26 13:50:49 +00:00
|
|
|
} else if (appD->qmljsDebugArgumentsString().contains(QLatin1String("ost"))) {
|
2011-04-27 10:05:43 +00:00
|
|
|
pluginName = QLatin1String("qmldbg_ost");
|
|
|
|
ok = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
block = appD->qmljsDebugArgumentsString().contains(QLatin1String("block"));
|
|
|
|
|
|
|
|
if (ok) {
|
|
|
|
server = new QDeclarativeDebugServer();
|
2011-11-17 11:19:45 +00:00
|
|
|
QPluginLoader *loader = new QPluginLoader(server);
|
2011-04-27 10:05:43 +00:00
|
|
|
QDeclarativeDebugServerConnection *connection
|
2011-11-17 11:19:45 +00:00
|
|
|
= QDeclarativeDebugServerPrivate::loadConnectionPlugin(loader, pluginName);
|
2011-04-27 10:05:43 +00:00
|
|
|
if (connection) {
|
|
|
|
server->d_func()->connection = connection;
|
|
|
|
|
|
|
|
connection->setServer(server);
|
|
|
|
connection->setPort(port, block);
|
|
|
|
} else {
|
2011-09-19 11:20:41 +00:00
|
|
|
qWarning() << QString::fromLatin1(
|
|
|
|
"QDeclarativeDebugServer: Ignoring \"-qmljsdebugger=%1\". "
|
|
|
|
"Remote debugger plugin has not been found.").arg(
|
|
|
|
appD->qmljsDebugArgumentsString());
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
2011-09-19 11:20:41 +00:00
|
|
|
qWarning() << QString::fromLatin1(
|
|
|
|
"QDeclarativeDebugServer: Ignoring \"-qmljsdebugger=%1\". "
|
|
|
|
"Format is -qmljsdebugger=port:<port>[,block]").arg(
|
|
|
|
appD->qmljsDebugArgumentsString());
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
if (!appD->qmljsDebugArgumentsString().isEmpty()) {
|
2011-09-19 11:20:41 +00:00
|
|
|
qWarning() << QString::fromLatin1(
|
|
|
|
"QDeclarativeDebugServer: Ignoring \"-qmljsdebugger=%1\". "
|
|
|
|
"QtDeclarative is not configured for debugging.").arg(
|
|
|
|
appD->qmljsDebugArgumentsString());
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
return server;
|
|
|
|
}
|
|
|
|
|
|
|
|
QDeclarativeDebugServer::QDeclarativeDebugServer()
|
2011-08-31 07:15:05 +00:00
|
|
|
: QObject(*(new QDeclarativeDebugServerPrivate))
|
2011-04-27 10:05:43 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void QDeclarativeDebugServer::receiveMessage(const QByteArray &message)
|
|
|
|
{
|
|
|
|
Q_D(QDeclarativeDebugServer);
|
|
|
|
|
|
|
|
QDataStream in(message);
|
2011-09-19 10:29:10 +00:00
|
|
|
QString name;
|
|
|
|
|
|
|
|
in >> name;
|
|
|
|
if (name == QLatin1String("QDeclarativeDebugServer")) {
|
|
|
|
int op = -1;
|
|
|
|
in >> op;
|
|
|
|
if (op == 0) {
|
|
|
|
int version;
|
|
|
|
in >> version >> d->clientPlugins;
|
|
|
|
|
|
|
|
// Send the hello answer immediately, since it needs to arrive before
|
|
|
|
// the plugins below start sending messages.
|
|
|
|
QByteArray helloAnswer;
|
|
|
|
{
|
|
|
|
QDataStream out(&helloAnswer, QIODevice::WriteOnly);
|
|
|
|
out << QString(QLatin1String("QDeclarativeDebugClient")) << 0 << protocolVersion << d->plugins.keys();
|
|
|
|
}
|
|
|
|
d->connection->send(helloAnswer);
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2011-09-19 10:29:10 +00:00
|
|
|
d->gotHello = true;
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2011-09-19 10:29:10 +00:00
|
|
|
QHash<QString, QDeclarativeDebugService*>::Iterator iter = d->plugins.begin();
|
|
|
|
for (; iter != d->plugins.end(); ++iter) {
|
|
|
|
QDeclarativeDebugService::Status newStatus = QDeclarativeDebugService::Unavailable;
|
|
|
|
if (d->clientPlugins.contains(iter.key()))
|
|
|
|
newStatus = QDeclarativeDebugService::Enabled;
|
|
|
|
iter.value()->d_func()->status = newStatus;
|
|
|
|
iter.value()->statusChanged(newStatus);
|
|
|
|
}
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2011-09-19 10:29:10 +00:00
|
|
|
qWarning("QDeclarativeDebugServer: Connection established");
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2011-09-19 10:29:10 +00:00
|
|
|
} else if (op == 1) {
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2011-09-19 10:29:10 +00:00
|
|
|
// Service Discovery
|
|
|
|
QStringList oldClientPlugins = d->clientPlugins;
|
|
|
|
in >> d->clientPlugins;
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2011-09-19 10:29:10 +00:00
|
|
|
QHash<QString, QDeclarativeDebugService*>::Iterator iter = d->plugins.begin();
|
|
|
|
for (; iter != d->plugins.end(); ++iter) {
|
|
|
|
const QString pluginName = iter.key();
|
|
|
|
QDeclarativeDebugService::Status newStatus = QDeclarativeDebugService::Unavailable;
|
|
|
|
if (d->clientPlugins.contains(pluginName))
|
|
|
|
newStatus = QDeclarativeDebugService::Enabled;
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2011-09-19 10:29:10 +00:00
|
|
|
if (oldClientPlugins.contains(pluginName)
|
|
|
|
!= d->clientPlugins.contains(pluginName)) {
|
|
|
|
iter.value()->d_func()->status = newStatus;
|
|
|
|
iter.value()->statusChanged(newStatus);
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
}
|
2011-09-19 10:29:10 +00:00
|
|
|
|
2011-04-27 10:05:43 +00:00
|
|
|
} else {
|
2011-09-19 10:29:10 +00:00
|
|
|
qWarning("QDeclarativeDebugServer: Invalid control message %d", op);
|
|
|
|
d->connection->disconnect();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
if (d->gotHello) {
|
2011-04-27 10:05:43 +00:00
|
|
|
QByteArray message;
|
|
|
|
in >> message;
|
|
|
|
|
2011-04-27 12:13:26 +00:00
|
|
|
if (d->waitingForMsgFromService == name) {
|
|
|
|
// deliver directly so that it is delivered before waitForMessage is returning.
|
|
|
|
d->_q_deliverMessage(name, message);
|
2011-08-24 10:13:39 +00:00
|
|
|
d->waitingForMsgSucceeded = true;
|
2011-04-27 10:05:43 +00:00
|
|
|
} else {
|
2011-04-27 12:13:26 +00:00
|
|
|
// deliver message in next event loop run.
|
|
|
|
// Fixes the case that the service does start it's own event loop ...,
|
|
|
|
// but the networking code doesn't deliver any new messages because readyRead
|
|
|
|
// hasn't returned.
|
|
|
|
QMetaObject::invokeMethod(this, "_q_deliverMessage", Qt::QueuedConnection,
|
|
|
|
Q_ARG(QString, name),
|
|
|
|
Q_ARG(QByteArray, message));
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
2011-09-19 10:29:10 +00:00
|
|
|
} else {
|
|
|
|
qWarning("QDeclarativeDebugServer: Invalid hello message");
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
2011-09-19 10:29:10 +00:00
|
|
|
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-04-27 12:13:26 +00:00
|
|
|
void QDeclarativeDebugServerPrivate::_q_deliverMessage(const QString &serviceName, const QByteArray &message)
|
|
|
|
{
|
|
|
|
QHash<QString, QDeclarativeDebugService *>::Iterator iter = plugins.find(serviceName);
|
|
|
|
if (iter == plugins.end()) {
|
|
|
|
qWarning() << "QDeclarativeDebugServer: Message received for missing plugin" << serviceName;
|
|
|
|
} else {
|
|
|
|
(*iter)->messageReceived(message);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-04-27 10:05:43 +00:00
|
|
|
QList<QDeclarativeDebugService*> QDeclarativeDebugServer::services() const
|
|
|
|
{
|
|
|
|
const Q_D(QDeclarativeDebugServer);
|
|
|
|
return d->plugins.values();
|
|
|
|
}
|
|
|
|
|
|
|
|
QStringList QDeclarativeDebugServer::serviceNames() const
|
|
|
|
{
|
|
|
|
const Q_D(QDeclarativeDebugServer);
|
|
|
|
return d->plugins.keys();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool QDeclarativeDebugServer::addService(QDeclarativeDebugService *service)
|
|
|
|
{
|
|
|
|
Q_D(QDeclarativeDebugServer);
|
|
|
|
if (!service || d->plugins.contains(service->name()))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
d->plugins.insert(service->name(), service);
|
|
|
|
d->advertisePlugins();
|
|
|
|
|
|
|
|
QDeclarativeDebugService::Status newStatus = QDeclarativeDebugService::Unavailable;
|
|
|
|
if (d->clientPlugins.contains(service->name()))
|
|
|
|
newStatus = QDeclarativeDebugService::Enabled;
|
|
|
|
service->d_func()->status = newStatus;
|
|
|
|
service->statusChanged(newStatus);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool QDeclarativeDebugServer::removeService(QDeclarativeDebugService *service)
|
|
|
|
{
|
|
|
|
Q_D(QDeclarativeDebugServer);
|
|
|
|
if (!service || !d->plugins.contains(service->name()))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
d->plugins.remove(service->name());
|
|
|
|
d->advertisePlugins();
|
|
|
|
|
|
|
|
QDeclarativeDebugService::Status newStatus = QDeclarativeDebugService::NotConnected;
|
|
|
|
service->d_func()->server = 0;
|
|
|
|
service->d_func()->status = newStatus;
|
|
|
|
service->statusChanged(newStatus);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void QDeclarativeDebugServer::sendMessage(QDeclarativeDebugService *service,
|
|
|
|
const QByteArray &message)
|
|
|
|
{
|
|
|
|
Q_D(QDeclarativeDebugServer);
|
|
|
|
QByteArray msg;
|
|
|
|
{
|
|
|
|
QDataStream out(&msg, QIODevice::WriteOnly);
|
|
|
|
out << service->name() << message;
|
|
|
|
}
|
|
|
|
d->connection->send(msg);
|
|
|
|
}
|
|
|
|
|
2011-04-27 12:13:26 +00:00
|
|
|
bool QDeclarativeDebugServer::waitForMessage(QDeclarativeDebugService *service)
|
|
|
|
{
|
|
|
|
Q_D(QDeclarativeDebugServer);
|
|
|
|
|
|
|
|
if (!service
|
|
|
|
|| !d->plugins.contains(service->name())
|
|
|
|
|| !d->waitingForMsgFromService.isEmpty())
|
|
|
|
return false;
|
|
|
|
|
2011-08-24 10:13:39 +00:00
|
|
|
d->waitingForMsgSucceeded = false;
|
2011-04-27 12:13:26 +00:00
|
|
|
d->waitingForMsgFromService = service->name();
|
|
|
|
|
|
|
|
do {
|
|
|
|
d->connection->waitForMessage();
|
2011-08-24 10:13:39 +00:00
|
|
|
} while (!d->waitingForMsgSucceeded);
|
|
|
|
d->waitingForMsgFromService.clear();
|
2011-04-27 12:13:26 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2011-04-27 10:05:43 +00:00
|
|
|
QT_END_NAMESPACE
|
2011-04-27 12:13:26 +00:00
|
|
|
|
|
|
|
#include "moc_qdeclarativedebugserver_p.cpp"
|