2011-04-13 08:42:33 +02:00
|
|
|
/**************************************************************************
|
2010-07-29 14:15:12 +02:00
|
|
|
**
|
2011-04-13 08:42:33 +02:00
|
|
|
** This file is part of Qt Creator
|
2010-07-29 14:15:12 +02:00
|
|
|
**
|
2011-04-13 08:42:33 +02:00
|
|
|
** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies).
|
2010-07-29 14:15:12 +02:00
|
|
|
**
|
2011-04-13 08:42:33 +02:00
|
|
|
** Contact: Nokia Corporation (info@qt.nokia.com)
|
2010-07-29 14:15:12 +02:00
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
2011-04-13 08:42:33 +02: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.
|
2010-07-29 14:15:12 +02:00
|
|
|
**
|
|
|
|
|
** In addition, as a special exception, Nokia gives you certain additional
|
2011-04-13 08:42:33 +02:00
|
|
|
** rights. These rights are described in the Nokia Qt LGPL Exception
|
2010-07-29 14:15:12 +02:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
2011-04-13 08:42:33 +02:00
|
|
|
** Other Usage
|
2010-07-29 14:15:12 +02:00
|
|
|
**
|
2011-04-13 08:42:33 +02:00
|
|
|
** Alternatively, this file may be used in accordance with the terms and
|
|
|
|
|
** conditions contained in a signed written agreement between you and Nokia.
|
2010-07-29 14:15:12 +02:00
|
|
|
**
|
2011-04-13 08:42:33 +02:00
|
|
|
** If you have questions regarding the use of this file, please contact
|
2011-05-06 15:05:37 +02:00
|
|
|
** Nokia at info@qt.nokia.com.
|
2010-07-29 14:15:12 +02:00
|
|
|
**
|
2011-04-13 08:42:33 +02:00
|
|
|
**************************************************************************/
|
2010-07-29 14:15:12 +02:00
|
|
|
|
2011-08-05 10:18:32 +02:00
|
|
|
#include "qdeclarativedebugclient.h"
|
2010-07-29 14:15:12 +02:00
|
|
|
|
2011-08-05 10:18:32 +02:00
|
|
|
#include "qpacketprotocol.h"
|
2010-07-29 14:15:12 +02:00
|
|
|
|
|
|
|
|
#include <QtCore/qdebug.h>
|
|
|
|
|
#include <QtCore/qstringlist.h>
|
2011-08-11 09:57:44 +02:00
|
|
|
#include <QtNetwork/qnetworkproxy.h>
|
2011-02-23 12:10:51 +01:00
|
|
|
#include <symbiandevicemanager.h>
|
2010-07-29 14:15:12 +02:00
|
|
|
|
|
|
|
|
namespace QmlJsDebugClient {
|
|
|
|
|
|
2010-09-27 12:45:56 +02:00
|
|
|
const int protocolVersion = 1;
|
|
|
|
|
const QString serverId = QLatin1String("QDeclarativeDebugServer");
|
|
|
|
|
const QString clientId = QLatin1String("QDeclarativeDebugClient");
|
2011-02-23 12:10:51 +01:00
|
|
|
static const uchar KQmlOstProtocolId = 0x94;
|
2010-09-27 12:45:56 +02:00
|
|
|
|
|
|
|
|
class QDeclarativeDebugClientPrivate
|
|
|
|
|
{
|
2011-08-05 10:18:32 +02:00
|
|
|
// Q_DECLARE_PUBLIC(QDeclarativeDebugClient)
|
2010-09-27 12:45:56 +02:00
|
|
|
public:
|
|
|
|
|
QDeclarativeDebugClientPrivate();
|
|
|
|
|
|
|
|
|
|
QString name;
|
2010-11-15 17:09:28 +01:00
|
|
|
QDeclarativeDebugConnection *connection;
|
2010-09-27 12:45:56 +02:00
|
|
|
};
|
|
|
|
|
|
2010-07-29 14:15:12 +02:00
|
|
|
class QDeclarativeDebugConnectionPrivate : public QObject
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
public:
|
|
|
|
|
QDeclarativeDebugConnectionPrivate(QDeclarativeDebugConnection *c);
|
|
|
|
|
QDeclarativeDebugConnection *q;
|
|
|
|
|
QPacketProtocol *protocol;
|
2011-02-23 12:10:51 +01:00
|
|
|
QIODevice *device; // Currently either a QTcpSocket or a SymbianUtils::OstChannel
|
2010-07-29 14:15:12 +02:00
|
|
|
|
2010-09-27 12:45:56 +02:00
|
|
|
bool gotHello;
|
|
|
|
|
QStringList serverPlugins;
|
2010-07-29 14:15:12 +02:00
|
|
|
QHash<QString, QDeclarativeDebugClient *> plugins;
|
2010-09-27 12:45:56 +02:00
|
|
|
|
|
|
|
|
void advertisePlugins();
|
2011-02-23 12:10:51 +01:00
|
|
|
void connectDeviceSignals();
|
2010-09-27 12:45:56 +02:00
|
|
|
|
2010-07-29 14:15:12 +02:00
|
|
|
public Q_SLOTS:
|
|
|
|
|
void connected();
|
|
|
|
|
void readyRead();
|
2011-02-23 12:10:51 +01:00
|
|
|
void deviceAboutToClose();
|
2010-07-29 14:15:12 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
QDeclarativeDebugConnectionPrivate::QDeclarativeDebugConnectionPrivate(QDeclarativeDebugConnection *c)
|
2011-08-05 10:18:32 +02:00
|
|
|
: QObject(c), q(c), protocol(0), device(0), gotHello(false)
|
2010-07-29 14:15:12 +02:00
|
|
|
{
|
|
|
|
|
protocol = new QPacketProtocol(q, this);
|
|
|
|
|
QObject::connect(c, SIGNAL(connected()), this, SLOT(connected()));
|
|
|
|
|
QObject::connect(protocol, SIGNAL(readyRead()), this, SLOT(readyRead()));
|
|
|
|
|
}
|
|
|
|
|
|
2010-09-27 12:45:56 +02:00
|
|
|
void QDeclarativeDebugConnectionPrivate::advertisePlugins()
|
|
|
|
|
{
|
|
|
|
|
if (!q->isConnected() || !gotHello)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
QPacket pack;
|
|
|
|
|
pack << serverId << 1 << plugins.keys();
|
|
|
|
|
protocol->send(pack);
|
|
|
|
|
q->flush();
|
|
|
|
|
}
|
|
|
|
|
|
2010-07-29 14:15:12 +02:00
|
|
|
void QDeclarativeDebugConnectionPrivate::connected()
|
|
|
|
|
{
|
|
|
|
|
QPacket pack;
|
2010-09-27 12:45:56 +02:00
|
|
|
pack << serverId << 0 << protocolVersion << plugins.keys();
|
2010-07-29 14:15:12 +02:00
|
|
|
protocol->send(pack);
|
2010-09-27 12:45:56 +02:00
|
|
|
q->flush();
|
2010-07-29 14:15:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void QDeclarativeDebugConnectionPrivate::readyRead()
|
|
|
|
|
{
|
2010-09-27 12:45:56 +02:00
|
|
|
if (!gotHello) {
|
|
|
|
|
QPacket pack = protocol->read();
|
|
|
|
|
QString name;
|
2010-07-29 14:15:12 +02:00
|
|
|
|
2010-09-27 12:45:56 +02:00
|
|
|
pack >> name;
|
|
|
|
|
|
|
|
|
|
bool validHello = false;
|
|
|
|
|
if (name == clientId) {
|
|
|
|
|
int op = -1;
|
|
|
|
|
pack >> op;
|
|
|
|
|
if (op == 0) {
|
|
|
|
|
int version = -1;
|
|
|
|
|
pack >> version;
|
|
|
|
|
if (version == protocolVersion) {
|
|
|
|
|
pack >> serverPlugins;
|
|
|
|
|
validHello = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!validHello) {
|
|
|
|
|
qWarning("QDeclarativeDebugConnection: Invalid hello message");
|
|
|
|
|
QObject::disconnect(protocol, SIGNAL(readyRead()), this, SLOT(readyRead()));
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
gotHello = true;
|
|
|
|
|
|
|
|
|
|
QHash<QString, QDeclarativeDebugClient *>::Iterator iter = plugins.begin();
|
|
|
|
|
for (; iter != plugins.end(); ++iter) {
|
|
|
|
|
QDeclarativeDebugClient::Status newStatus = QDeclarativeDebugClient::Unavailable;
|
|
|
|
|
if (serverPlugins.contains(iter.key()))
|
|
|
|
|
newStatus = QDeclarativeDebugClient::Enabled;
|
|
|
|
|
iter.value()->statusChanged(newStatus);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
while (protocol->packetsAvailable()) {
|
|
|
|
|
QPacket pack = protocol->read();
|
|
|
|
|
QString name;
|
|
|
|
|
pack >> name;
|
|
|
|
|
|
|
|
|
|
if (name == clientId) {
|
|
|
|
|
int op = -1;
|
|
|
|
|
pack >> op;
|
|
|
|
|
|
|
|
|
|
if (op == 1) {
|
|
|
|
|
// Service Discovery
|
|
|
|
|
QStringList oldServerPlugins = serverPlugins;
|
|
|
|
|
pack >> serverPlugins;
|
|
|
|
|
|
|
|
|
|
QHash<QString, QDeclarativeDebugClient *>::Iterator iter = plugins.begin();
|
|
|
|
|
for (; iter != plugins.end(); ++iter) {
|
|
|
|
|
const QString pluginName = iter.key();
|
|
|
|
|
QDeclarativeDebugClient::Status newStatus = QDeclarativeDebugClient::Unavailable;
|
|
|
|
|
if (serverPlugins.contains(pluginName))
|
|
|
|
|
newStatus = QDeclarativeDebugClient::Enabled;
|
|
|
|
|
|
|
|
|
|
if (oldServerPlugins.contains(pluginName)
|
|
|
|
|
!= serverPlugins.contains(pluginName)) {
|
|
|
|
|
iter.value()->statusChanged(newStatus);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
qWarning() << "QDeclarativeDebugConnection: Unknown control message id" << op;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
QByteArray message;
|
|
|
|
|
pack >> message;
|
|
|
|
|
|
|
|
|
|
QHash<QString, QDeclarativeDebugClient *>::Iterator iter =
|
2011-08-05 10:18:32 +02:00
|
|
|
plugins.find(name);
|
2010-09-27 12:45:56 +02:00
|
|
|
if (iter == plugins.end()) {
|
|
|
|
|
qWarning() << "QDeclarativeDebugConnection: Message received for missing plugin" << name;
|
|
|
|
|
} else {
|
|
|
|
|
(*iter)->messageReceived(message);
|
|
|
|
|
}
|
|
|
|
|
}
|
2010-07-29 14:15:12 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2011-02-23 12:10:51 +01:00
|
|
|
void QDeclarativeDebugConnectionPrivate::deviceAboutToClose()
|
|
|
|
|
{
|
|
|
|
|
// This is nasty syntax but we want to emit our own aboutToClose signal (by calling QIODevice::close())
|
|
|
|
|
// without calling the underlying device close fn as that would cause an infinite loop
|
|
|
|
|
q->QIODevice::close();
|
|
|
|
|
}
|
|
|
|
|
|
2010-07-29 14:15:12 +02:00
|
|
|
QDeclarativeDebugConnection::QDeclarativeDebugConnection(QObject *parent)
|
2011-08-05 10:18:32 +02:00
|
|
|
: QIODevice(parent), d(new QDeclarativeDebugConnectionPrivate(this))
|
2010-07-29 14:15:12 +02:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2010-09-27 12:45:56 +02:00
|
|
|
QDeclarativeDebugConnection::~QDeclarativeDebugConnection()
|
2010-07-29 14:15:12 +02:00
|
|
|
{
|
2010-09-27 12:45:56 +02:00
|
|
|
QHash<QString, QDeclarativeDebugClient*>::iterator iter = d->plugins.begin();
|
|
|
|
|
for (; iter != d->plugins.end(); ++iter) {
|
2011-08-05 10:18:32 +02:00
|
|
|
iter.value()->d_func()->connection = 0;
|
|
|
|
|
iter.value()->statusChanged(QDeclarativeDebugClient::NotConnected);
|
2010-09-27 12:45:56 +02:00
|
|
|
}
|
2010-07-29 14:15:12 +02:00
|
|
|
}
|
|
|
|
|
|
2010-09-27 12:45:56 +02:00
|
|
|
bool QDeclarativeDebugConnection::isConnected() const
|
2010-07-29 14:15:12 +02:00
|
|
|
{
|
2011-02-23 12:10:51 +01:00
|
|
|
return state() == QAbstractSocket::ConnectedState;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
qint64 QDeclarativeDebugConnection::readData(char *data, qint64 maxSize)
|
|
|
|
|
{
|
|
|
|
|
return d->device->read(data, maxSize);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
qint64 QDeclarativeDebugConnection::writeData(const char *data, qint64 maxSize)
|
|
|
|
|
{
|
|
|
|
|
return d->device->write(data, maxSize);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
qint64 QDeclarativeDebugConnection::bytesAvailable() const
|
|
|
|
|
{
|
|
|
|
|
return d->device->bytesAvailable();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool QDeclarativeDebugConnection::isSequential() const
|
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void QDeclarativeDebugConnection::close()
|
|
|
|
|
{
|
|
|
|
|
if (isOpen()) {
|
|
|
|
|
QIODevice::close();
|
|
|
|
|
d->device->close();
|
|
|
|
|
emit stateChanged(QAbstractSocket::UnconnectedState);
|
2011-07-28 17:04:35 +02:00
|
|
|
|
|
|
|
|
QHash<QString, QDeclarativeDebugClient*>::iterator iter = d->plugins.begin();
|
|
|
|
|
for (; iter != d->plugins.end(); ++iter) {
|
2011-08-05 10:18:32 +02:00
|
|
|
iter.value()->statusChanged(QDeclarativeDebugClient::NotConnected);
|
2011-07-28 17:04:35 +02:00
|
|
|
}
|
2011-02-23 12:10:51 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2011-08-31 12:55:08 +02:00
|
|
|
bool QDeclarativeDebugConnection::waitForConnected(int msecs)
|
|
|
|
|
{
|
|
|
|
|
QAbstractSocket *socket = qobject_cast<QAbstractSocket*>(d->device);
|
|
|
|
|
if (socket)
|
|
|
|
|
return socket->waitForConnected(msecs);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2011-02-23 12:10:51 +01:00
|
|
|
// For ease of refactoring we use QAbstractSocket's states even if we're actually using a OstChannel underneath
|
|
|
|
|
// since serial ports have a subset of the socket states afaics
|
|
|
|
|
QAbstractSocket::SocketState QDeclarativeDebugConnection::state() const
|
|
|
|
|
{
|
|
|
|
|
QAbstractSocket *socket = qobject_cast<QAbstractSocket*>(d->device);
|
|
|
|
|
if (socket)
|
|
|
|
|
return socket->state();
|
|
|
|
|
|
|
|
|
|
SymbianUtils::OstChannel *ost = qobject_cast<SymbianUtils::OstChannel*>(d->device);
|
|
|
|
|
if (ost) {
|
|
|
|
|
//TODO we need some handshaking here
|
|
|
|
|
/*
|
|
|
|
|
if (ost->hasReceivedData())
|
|
|
|
|
return QAbstractSocket::ConnectedState;
|
|
|
|
|
else if (ost->isOpen())
|
|
|
|
|
return QAbstractSocket::ConnectingState;
|
|
|
|
|
*/
|
|
|
|
|
if (ost->isOpen()) return QAbstractSocket::ConnectedState;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return QAbstractSocket::UnconnectedState;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void QDeclarativeDebugConnection::flush()
|
|
|
|
|
{
|
|
|
|
|
QAbstractSocket *socket = qobject_cast<QAbstractSocket*>(d->device);
|
|
|
|
|
if (socket) {
|
|
|
|
|
socket->flush();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SymbianUtils::OstChannel *ost = qobject_cast<SymbianUtils::OstChannel*>(d->device);
|
|
|
|
|
if (ost) {
|
|
|
|
|
ost->flush();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void QDeclarativeDebugConnection::connectToHost(const QString &hostName, quint16 port)
|
|
|
|
|
{
|
|
|
|
|
QTcpSocket *socket = new QTcpSocket(d);
|
2011-08-11 09:57:44 +02:00
|
|
|
socket->setProxy(QNetworkProxy::NoProxy);
|
2011-02-23 12:10:51 +01:00
|
|
|
d->device = socket;
|
|
|
|
|
d->connectDeviceSignals();
|
2011-07-28 17:04:35 +02:00
|
|
|
d->gotHello = false;
|
2011-02-23 12:10:51 +01:00
|
|
|
connect(socket, SIGNAL(stateChanged(QAbstractSocket::SocketState)), this, SIGNAL(stateChanged(QAbstractSocket::SocketState)));
|
|
|
|
|
connect(socket, SIGNAL(error(QAbstractSocket::SocketError)), this, SIGNAL(error(QAbstractSocket::SocketError)));
|
|
|
|
|
connect(socket, SIGNAL(connected()), this, SIGNAL(connected()));
|
|
|
|
|
socket->connectToHost(hostName, port);
|
|
|
|
|
QIODevice::open(ReadWrite | Unbuffered);
|
2010-09-27 12:45:56 +02:00
|
|
|
}
|
2010-07-29 14:15:12 +02:00
|
|
|
|
2011-02-23 12:10:51 +01:00
|
|
|
void QDeclarativeDebugConnection::connectToOst(const QString &port)
|
|
|
|
|
{
|
|
|
|
|
SymbianUtils::OstChannel *ost = SymbianUtils::SymbianDeviceManager::instance()->getOstChannel(port, KQmlOstProtocolId);
|
|
|
|
|
if (ost) {
|
|
|
|
|
ost->setParent(d);
|
|
|
|
|
d->device = ost;
|
|
|
|
|
d->connectDeviceSignals();
|
2011-07-28 17:04:35 +02:00
|
|
|
d->gotHello = false;
|
2011-02-23 12:10:51 +01:00
|
|
|
QIODevice::open(ReadWrite | Unbuffered);
|
|
|
|
|
emit stateChanged(QAbstractSocket::ConnectedState);
|
|
|
|
|
emit connected();
|
|
|
|
|
} else {
|
|
|
|
|
emit error(QAbstractSocket::HostNotFoundError);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void QDeclarativeDebugConnectionPrivate::connectDeviceSignals()
|
|
|
|
|
{
|
|
|
|
|
connect(device, SIGNAL(bytesWritten(qint64)), q, SIGNAL(bytesWritten(qint64)));
|
|
|
|
|
connect(device, SIGNAL(readyRead()), q, SIGNAL(readyRead()));
|
|
|
|
|
connect(device, SIGNAL(aboutToClose()), this, SLOT(deviceAboutToClose()));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
|
|
2010-07-29 14:15:12 +02:00
|
|
|
QDeclarativeDebugClientPrivate::QDeclarativeDebugClientPrivate()
|
2011-08-05 10:18:32 +02:00
|
|
|
: connection(0)
|
2010-07-29 14:15:12 +02:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QDeclarativeDebugClient::QDeclarativeDebugClient(const QString &name,
|
2011-08-05 10:18:32 +02:00
|
|
|
QDeclarativeDebugConnection *parent)
|
|
|
|
|
: QObject(parent), d_ptr(new QDeclarativeDebugClientPrivate())
|
2010-07-29 14:15:12 +02:00
|
|
|
{
|
2010-11-15 17:09:28 +01:00
|
|
|
Q_D(QDeclarativeDebugClient);
|
2010-07-29 14:15:12 +02:00
|
|
|
d->name = name;
|
2010-11-15 17:09:28 +01:00
|
|
|
d->connection = parent;
|
2010-07-29 14:15:12 +02:00
|
|
|
|
2010-11-15 17:09:28 +01:00
|
|
|
if (!d->connection)
|
2010-07-29 14:15:12 +02:00
|
|
|
return;
|
|
|
|
|
|
2010-11-15 17:09:28 +01:00
|
|
|
if (d->connection->d->plugins.contains(name)) {
|
2010-07-29 14:15:12 +02:00
|
|
|
qWarning() << "QDeclarativeDebugClient: Conflicting plugin name" << name;
|
2010-11-15 17:09:28 +01:00
|
|
|
d->connection = 0;
|
2010-07-29 14:15:12 +02:00
|
|
|
} else {
|
2010-11-15 17:09:28 +01:00
|
|
|
d->connection->d->plugins.insert(name, this);
|
|
|
|
|
d->connection->d->advertisePlugins();
|
2010-07-29 14:15:12 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2010-09-27 12:45:56 +02:00
|
|
|
QDeclarativeDebugClient::~QDeclarativeDebugClient()
|
|
|
|
|
{
|
2011-08-31 12:55:08 +02:00
|
|
|
Q_D(const QDeclarativeDebugClient);
|
2010-11-15 17:09:28 +01:00
|
|
|
if (d->connection && d->connection->d) {
|
|
|
|
|
d->connection->d->plugins.remove(d->name);
|
|
|
|
|
d->connection->d->advertisePlugins();
|
2010-09-27 12:45:56 +02:00
|
|
|
}
|
|
|
|
|
}
|
2010-07-29 14:15:12 +02:00
|
|
|
|
|
|
|
|
QString QDeclarativeDebugClient::name() const
|
|
|
|
|
{
|
2010-11-15 17:09:28 +01:00
|
|
|
Q_D(const QDeclarativeDebugClient);
|
2010-07-29 14:15:12 +02:00
|
|
|
return d->name;
|
|
|
|
|
}
|
|
|
|
|
|
2010-09-27 12:45:56 +02:00
|
|
|
QDeclarativeDebugClient::Status QDeclarativeDebugClient::status() const
|
2010-07-29 14:15:12 +02:00
|
|
|
{
|
2010-11-15 17:09:28 +01:00
|
|
|
Q_D(const QDeclarativeDebugClient);
|
|
|
|
|
if (!d->connection
|
2011-08-05 10:18:32 +02:00
|
|
|
|| !d->connection->isConnected()
|
|
|
|
|
|| !d->connection->d->gotHello)
|
2010-09-27 12:45:56 +02:00
|
|
|
return NotConnected;
|
2010-07-29 14:15:12 +02:00
|
|
|
|
2010-11-15 17:09:28 +01:00
|
|
|
if (d->connection->d->serverPlugins.contains(d->name))
|
2010-09-27 12:45:56 +02:00
|
|
|
return Enabled;
|
2010-07-29 14:15:12 +02:00
|
|
|
|
2010-09-27 12:45:56 +02:00
|
|
|
return Unavailable;
|
2010-07-29 14:15:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void QDeclarativeDebugClient::sendMessage(const QByteArray &message)
|
|
|
|
|
{
|
2010-11-15 17:09:28 +01:00
|
|
|
Q_D(QDeclarativeDebugClient);
|
2010-09-27 12:45:56 +02:00
|
|
|
if (status() != Enabled)
|
2010-07-29 14:15:12 +02:00
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
QPacket pack;
|
|
|
|
|
pack << d->name << message;
|
2010-11-15 17:09:28 +01:00
|
|
|
d->connection->d->protocol->send(pack);
|
|
|
|
|
d->connection->flush();
|
2010-09-27 12:45:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void QDeclarativeDebugClient::statusChanged(Status)
|
|
|
|
|
{
|
2010-07-29 14:15:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void QDeclarativeDebugClient::messageReceived(const QByteArray &)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2011-02-16 10:02:30 +01:00
|
|
|
} // namespace QmlJsDebugClient
|
2010-07-29 14:15:12 +02:00
|
|
|
|
|
|
|
|
#include <qdeclarativedebugclient.moc>
|