Files
qt-creator/src/plugins/qmljsinspector/qmljsclientproxy.cpp

582 lines
19 KiB
C++
Raw Normal View History

2010-06-28 18:07:12 +02:00
/**************************************************************************
**
** This file is part of Qt Creator
**
** Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
**
** Contact: Nokia Corporation (qt-info@nokia.com)
**
** Commercial Usage
**
** Licensees holding valid Qt Commercial licenses may use this file in
** accordance with the Qt Commercial License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and Nokia.
**
** GNU Lesser General Public License Usage
**
** Alternatively, 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.
**
** If you are unsure which license is appropriate for your use, please
** contact the sales department at http://qt.nokia.com/contact.
**
**************************************************************************/
2010-06-28 18:05:24 +02:00
#include "qmljsclientproxy.h"
#include "qmljsprivateapi.h"
#include "qmljsobserverclient.h"
#include "qmljsinspector.h"
2010-06-28 18:05:24 +02:00
#include <debugger/debuggerplugin.h>
#include <debugger/debuggerrunner.h>
#include <debugger/qml/qmlengine.h>
#include <debugger/qml/qmladapter.h>
#include <extensionsystem/pluginmanager.h>
2010-06-28 18:05:24 +02:00
#include <utils/qtcassert.h>
#include <projectexplorer/project.h>
2010-06-28 18:05:24 +02:00
#include <QUrl>
#include <QAbstractSocket>
#include <QDebug>
2010-10-06 17:24:39 +02:00
enum {
debug = false
};
2010-06-28 18:05:24 +02:00
using namespace QmlJSInspector::Internal;
ClientProxy::ClientProxy(Debugger::QmlAdapter *adapter, QObject *parent)
: QObject(parent)
, m_adapter(adapter)
, m_engineClient(m_adapter->client())
, m_observerClient(0)
, m_engineQuery(0)
, m_contextQuery(0)
, m_isConnected(false)
{
m_requestObjectsTimer.setSingleShot(true);
m_requestObjectsTimer.setInterval(3000);
connect(m_engineClient, SIGNAL(newObjects()), this, SLOT(newObjects()));
connect(&m_requestObjectsTimer, SIGNAL(timeout()), this, SLOT(refreshObjectTree()));
connectToServer();
}
void ClientProxy::connectToServer()
{
m_observerClient = new QmlJSObserverClient(m_adapter->connection(), this);
m_adapter->logServiceStatusChange(m_observerClient->name(), m_observerClient->status());
connect(m_observerClient, SIGNAL(connectedStatusChanged(QDeclarativeDebugClient::Status)),
this, SLOT(clientStatusChanged(QDeclarativeDebugClient::Status)));
connect(m_observerClient, SIGNAL(currentObjectsChanged(QList<int>)),
SLOT(onCurrentObjectsChanged(QList<int>)));
connect(m_observerClient, SIGNAL(colorPickerActivated()),
SIGNAL(colorPickerActivated()));
connect(m_observerClient, SIGNAL(zoomToolActivated()),
SIGNAL(zoomToolActivated()));
connect(m_observerClient, SIGNAL(selectToolActivated()),
SIGNAL(selectToolActivated()));
connect(m_observerClient, SIGNAL(selectMarqueeToolActivated()),
SIGNAL(selectMarqueeToolActivated()));
connect(m_observerClient, SIGNAL(animationSpeedChanged(qreal)),
SIGNAL(animationSpeedChanged(qreal)));
connect(m_observerClient, SIGNAL(designModeBehaviorChanged(bool)),
SIGNAL(designModeBehaviorChanged(bool)));
connect(m_observerClient, SIGNAL(showAppOnTopChanged(bool)),
SIGNAL(showAppOnTopChanged(bool)));
connect(m_observerClient, SIGNAL(reloaded()), this,
SIGNAL(serverReloaded()));
connect(m_observerClient, SIGNAL(selectedColorChanged(QColor)),
SIGNAL(selectedColorChanged(QColor)));
connect(m_observerClient, SIGNAL(contextPathUpdated(QStringList)),
SIGNAL(contextPathUpdated(QStringList)));
updateConnected();
}
void ClientProxy::clientStatusChanged(QDeclarativeDebugClient::Status status)
{
QString serviceName;
if (QDeclarativeDebugClient *client = qobject_cast<QDeclarativeDebugClient*>(sender())) {
serviceName = client->name();
}
m_adapter->logServiceStatusChange(serviceName, status);
updateConnected();
}
void ClientProxy::disconnectFromServer()
2010-06-28 18:05:24 +02:00
{
if (m_observerClient) {
disconnect(m_observerClient, SIGNAL(connectedStatusChanged(QDeclarativeDebugClient::Status)),
this, SLOT(clientStatusChanged(QDeclarativeDebugClient::Status)));
disconnect(m_observerClient, SIGNAL(currentObjectsChanged(QList<int>)),
2010-08-12 09:25:40 +02:00
this, SLOT(onCurrentObjectsChanged(QList<int>)));
disconnect(m_observerClient, SIGNAL(colorPickerActivated()),
2010-08-12 09:25:40 +02:00
this, SIGNAL(colorPickerActivated()));
disconnect(m_observerClient, SIGNAL(zoomToolActivated()),
2010-08-12 09:25:40 +02:00
this, SIGNAL(zoomToolActivated()));
disconnect(m_observerClient, SIGNAL(selectToolActivated()),
2010-08-12 09:25:40 +02:00
this, SIGNAL(selectToolActivated()));
disconnect(m_observerClient, SIGNAL(selectMarqueeToolActivated()),
2010-08-12 09:25:40 +02:00
this, SIGNAL(selectMarqueeToolActivated()));
disconnect(m_observerClient, SIGNAL(animationSpeedChanged(qreal)),
2010-08-12 09:25:40 +02:00
this, SIGNAL(animationSpeedChanged(qreal)));
disconnect(m_observerClient, SIGNAL(designModeBehaviorChanged(bool)),
2010-08-12 09:25:40 +02:00
this, SIGNAL(designModeBehaviorChanged(bool)));
disconnect(m_observerClient, SIGNAL(selectedColorChanged(QColor)),
2010-08-12 09:25:40 +02:00
this, SIGNAL(selectedColorChanged(QColor)));
disconnect(m_observerClient, SIGNAL(contextPathUpdated(QStringList)),
2010-08-12 09:25:40 +02:00
this, SIGNAL(contextPathUpdated(QStringList)));
2010-06-28 18:05:24 +02:00
delete m_observerClient;
m_observerClient = 0;
2010-06-28 18:05:24 +02:00
}
if (m_engineQuery)
delete m_engineQuery;
m_engineQuery = 0;
2010-06-28 18:05:24 +02:00
if (m_contextQuery)
delete m_contextQuery;
m_contextQuery = 0;
2010-06-28 18:05:24 +02:00
qDeleteAll(m_objectTreeQuery);
m_objectTreeQuery.clear();
updateConnected();
2010-06-28 18:05:24 +02:00
}
void ClientProxy::refreshObjectTree()
{
if (!m_contextQuery) {
m_requestObjectsTimer.stop();
qDeleteAll(m_objectTreeQuery);
m_objectTreeQuery.clear();
queryEngineContext(m_engines.value(0).debugId());
}
}
void ClientProxy::onCurrentObjectsChanged(const QList<int> &debugIds, bool requestIfNeeded)
{
QList<QDeclarativeDebugObjectReference> selectedItems;
2010-08-12 09:25:40 +02:00
foreach (int debugId, debugIds) {
QDeclarativeDebugObjectReference ref = objectReferenceForId(debugId);
if (ref.debugId() != -1) {
selectedItems << ref;
} else if (requestIfNeeded) {
// ### FIXME right now, there's no way in the protocol to
2010-08-12 09:25:40 +02:00
// a) get some item and know its parent (although that's possible
// by adding it to a separate plugin)
// b) add children to part of an existing tree.
2010-08-12 09:25:40 +02:00
// So the only choice that remains is to update the complete
// tree when we have an unknown debug id.
// break;
}
}
emit selectedItemsChanged(selectedItems);
}
void ClientProxy::setSelectedItemsByObjectId(const QList<QDeclarativeDebugObjectReference> &objectRefs)
{
if (isConnected()) {
QList<int> debugIds;
foreach (const QDeclarativeDebugObjectReference &ref, objectRefs) {
debugIds << ref.debugId();
}
m_observerClient->setCurrentObjects(debugIds);
}
}
QDeclarativeDebugObjectReference ClientProxy::objectReferenceForId(int debugId) const
{
foreach (const QDeclarativeDebugObjectReference& it, m_rootObjects) {
QDeclarativeDebugObjectReference result = objectReferenceForId(debugId, it);
if (result.debugId() == debugId)
return result;
}
return QDeclarativeDebugObjectReference();
}
QList<QDeclarativeDebugObjectReference> QmlJSInspector::Internal::ClientProxy::rootObjectReference() const
{
return m_rootObjects;
}
QDeclarativeDebugObjectReference ClientProxy::objectReferenceForId(int debugId,
const QDeclarativeDebugObjectReference &objectRef) const
2010-06-28 18:05:24 +02:00
{
if (objectRef.debugId() == debugId)
return objectRef;
foreach(const QDeclarativeDebugObjectReference &child, objectRef.children()) {
QDeclarativeDebugObjectReference result = objectReferenceForId(debugId, child);
if (result.debugId() == debugId)
return result;
}
return QDeclarativeDebugObjectReference();
2010-06-28 18:05:24 +02:00
}
QDeclarativeDebugObjectReference ClientProxy::objectReferenceForId(const QString &objectId) const
{
if (!objectId.isEmpty() && objectId[0].isLower()) {
const QList<QDeclarativeDebugObjectReference> refs = objectReferences();
foreach (const QDeclarativeDebugObjectReference &ref, refs) {
if (ref.idString() == objectId)
return ref;
}
}
return QDeclarativeDebugObjectReference();
}
QDeclarativeDebugObjectReference ClientProxy::objectReferenceForLocation(const int line, const int column) const
{
const QList<QDeclarativeDebugObjectReference> refs = objectReferences();
foreach (const QDeclarativeDebugObjectReference &ref, refs) {
if (ref.source().lineNumber() == line && ref.source().columnNumber() == column)
return ref;
}
return QDeclarativeDebugObjectReference();
}
2010-08-30 18:40:56 +02:00
QList<QDeclarativeDebugObjectReference> ClientProxy::objectReferences() const
2010-06-28 18:05:24 +02:00
{
QList<QDeclarativeDebugObjectReference> result;
foreach(const QDeclarativeDebugObjectReference &it, m_rootObjects) {
2010-08-30 18:40:56 +02:00
result.append(objectReferences(it));
}
return result;
2010-06-28 18:05:24 +02:00
}
2010-08-30 18:40:56 +02:00
QList<QDeclarativeDebugObjectReference> ClientProxy::objectReferences(const QDeclarativeDebugObjectReference &objectRef) const
2010-06-28 18:05:24 +02:00
{
QList<QDeclarativeDebugObjectReference> result;
2010-08-30 18:40:56 +02:00
result.append(objectRef);
2010-06-28 18:05:24 +02:00
foreach(const QDeclarativeDebugObjectReference &child, objectRef.children()) {
2010-08-30 18:40:56 +02:00
result.append(objectReferences(child));
2010-06-28 18:05:24 +02:00
}
return result;
}
2010-07-08 15:44:35 +02:00
bool ClientProxy::setBindingForObject(int objectDebugId,
const QString &propertyName,
const QVariant &value,
bool isLiteralValue)
2010-06-28 18:05:24 +02:00
{
2010-10-06 17:24:39 +02:00
if (debug)
qDebug() << "setBindingForObject():" << objectDebugId << propertyName << value;
if (objectDebugId == -1)
2010-07-08 16:51:25 +02:00
return false;
if (propertyName == QLatin1String("id"))
return false; // Crashes the QMLViewer.
2010-06-28 18:05:24 +02:00
bool result = m_engineClient->setBindingForObject(objectDebugId, propertyName, value.toString(), isLiteralValue);
return result;
2010-06-28 18:05:24 +02:00
}
2010-07-08 16:51:25 +02:00
bool ClientProxy::setMethodBodyForObject(int objectDebugId, const QString &methodName, const QString &methodBody)
{
2010-10-06 17:24:39 +02:00
if (debug)
qDebug() << "setMethodBodyForObject():" << objectDebugId << methodName << methodBody;
2010-07-08 16:51:25 +02:00
if (objectDebugId == -1)
return 0;
return m_engineClient->setMethodBody(objectDebugId, methodName, methodBody);
2010-07-08 16:51:25 +02:00
}
bool ClientProxy::resetBindingForObject(int objectDebugId, const QString& propertyName)
{
2010-10-06 17:24:39 +02:00
if (debug)
qDebug() << "resetBindingForObject():" << objectDebugId << propertyName;
if (objectDebugId == -1)
return false;
// if (propertyName == QLatin1String("id")) return false;
return m_engineClient->resetBindingForObject(objectDebugId, propertyName);
}
QDeclarativeDebugExpressionQuery *ClientProxy::queryExpressionResult(int objectDebugId, const QString &expr, QObject *parent)
{
2010-10-06 17:24:39 +02:00
if (debug)
qDebug() << "queryExpressionResult():" << objectDebugId << expr << parent;
if (objectDebugId != -1)
return m_engineClient->queryExpressionResult(objectDebugId,expr,parent);
return 0;
}
void ClientProxy::clearComponentCache()
{
if (isConnected())
m_observerClient->clearComponentCache();
}
2010-06-28 18:05:24 +02:00
void ClientProxy::queryEngineContext(int id)
{
if (id < 0)
return;
if (m_contextQuery) {
delete m_contextQuery;
m_contextQuery = 0;
}
m_contextQuery = m_engineClient->queryRootContexts(QDeclarativeDebugEngineReference(id), this);
2010-06-28 18:05:24 +02:00
if (!m_contextQuery->isWaiting())
contextChanged();
else
2010-06-29 15:06:50 +02:00
connect(m_contextQuery, SIGNAL(stateChanged(QDeclarativeDebugQuery::State)),
this, SLOT(contextChanged()));
2010-06-28 18:05:24 +02:00
}
void ClientProxy::contextChanged()
{
if (m_contextQuery) {
m_rootObjects.clear();
QDeclarativeDebugContextReference rootContext = m_contextQuery->rootContext();
2010-06-29 15:06:50 +02:00
delete m_contextQuery;
m_contextQuery = 0;
2010-06-28 18:05:24 +02:00
qDeleteAll(m_objectTreeQuery);
m_objectTreeQuery.clear();
m_requestObjectsTimer.stop();
fetchContextObjectRecursive(rootContext);
2010-06-28 18:05:24 +02:00
}
}
2010-06-28 18:05:24 +02:00
void ClientProxy::fetchContextObjectRecursive(const QDeclarativeDebugContextReference& context)
{
foreach (const QDeclarativeDebugObjectReference & obj, context.objects()) {
QDeclarativeDebugObjectQuery* query = m_engineClient->queryObjectRecursive(obj, this);
if (!query->isWaiting()) {
query->deleteLater(); //ignore errors;
} else {
m_objectTreeQuery << query;
connect(query,
SIGNAL(stateChanged(QDeclarativeDebugQuery::State)),
SLOT(objectTreeFetched(QDeclarativeDebugQuery::State)));
}
}
foreach (const QDeclarativeDebugContextReference& child, context.contexts()) {
fetchContextObjectRecursive(child);
}
2010-06-28 18:05:24 +02:00
}
2010-06-28 18:05:24 +02:00
void ClientProxy::objectTreeFetched(QDeclarativeDebugQuery::State state)
{
QDeclarativeDebugObjectQuery *query = qobject_cast<QDeclarativeDebugObjectQuery *>(sender());
if (!query || state == QDeclarativeDebugQuery::Error) {
delete query;
2010-06-28 18:05:24 +02:00
return;
}
m_rootObjects.append(query->object());
2010-06-28 18:05:24 +02:00
int removed = m_objectTreeQuery.removeAll(query);
Q_ASSERT(removed == 1);
Q_UNUSED(removed);
delete query;
2010-06-28 18:05:24 +02:00
if (m_objectTreeQuery.isEmpty()) {
int old_count = m_debugIdHash.count();
m_debugIdHash.clear();
m_debugIdHash.reserve(old_count + 1);
foreach(const QDeclarativeDebugObjectReference &it, m_rootObjects)
buildDebugIdHashRecursive(it);
emit objectTreeUpdated();
if (isConnected()) {
if (!m_observerClient->currentObjects().isEmpty())
onCurrentObjectsChanged(m_observerClient->currentObjects(), false);
m_observerClient->setObjectIdList(m_rootObjects);
}
}
2010-06-28 18:05:24 +02:00
}
void ClientProxy::buildDebugIdHashRecursive(const QDeclarativeDebugObjectReference& ref)
{
QString filename = ref.source().url().toLocalFile();
int lineNum = ref.source().lineNumber();
int colNum = ref.source().columnNumber();
int rev = 0;
2010-08-30 18:40:56 +02:00
// handle the case where the url contains the revision number encoded. (for object created by the debugger)
static QRegExp rx("^file://(.*)_(\\d+):(\\d+)$");
if (rx.exactMatch(filename)) {
filename = rx.cap(1);
rev = rx.cap(2).toInt();
lineNum += rx.cap(3).toInt() - 1;
}
2010-10-07 11:25:53 +02:00
//convert the filename to a canonical filename in case of shadow build.
bool isShadowBuild = InspectorUi::instance()->isShadowBuildProject();
if (isShadowBuild && rev == 0) {
QString shadowBuildDir = InspectorUi::instance()->debugProjectBuildDirectory();
if (filename.startsWith(shadowBuildDir)) {
ProjectExplorer::Project *debugProject = InspectorUi::instance()->debugProject();
filename = debugProject->projectDirectory() + filename.mid(shadowBuildDir.length());
}
}
2010-08-30 18:40:56 +02:00
// append the debug ids in the hash
m_debugIdHash[qMakePair<QString, int>(filename, rev)][qMakePair<int, int>(lineNum, colNum)].append(ref.debugId());
foreach(const QDeclarativeDebugObjectReference &it, ref.children())
buildDebugIdHashRecursive(it);
}
void ClientProxy::reloadQmlViewer()
2010-06-28 18:05:24 +02:00
{
if (isConnected())
m_observerClient->reloadViewer();
}
void ClientProxy::setDesignModeBehavior(bool inDesignMode)
{
if (isConnected())
m_observerClient->setDesignModeBehavior(inDesignMode);
}
void ClientProxy::setAnimationSpeed(qreal slowdownFactor)
{
if (isConnected())
m_observerClient->setAnimationSpeed(slowdownFactor);
}
void ClientProxy::changeToColorPickerTool()
{
if (isConnected())
m_observerClient->changeToColorPickerTool();
}
void ClientProxy::changeToZoomTool()
{
if (isConnected())
m_observerClient->changeToZoomTool();
}
void ClientProxy::changeToSelectTool()
{
if (isConnected())
m_observerClient->changeToSelectTool();
2010-06-28 18:05:24 +02:00
}
void ClientProxy::changeToSelectMarqueeTool()
{
if (isConnected())
m_observerClient->changeToSelectMarqueeTool();
}
void ClientProxy::showAppOnTop(bool showOnTop)
{
if (isConnected())
m_observerClient->showAppOnTop(showOnTop);
}
void ClientProxy::createQmlObject(const QString &qmlText, int parentDebugId,
const QStringList &imports, const QString &filename)
{
if (isConnected())
m_observerClient->createQmlObject(qmlText, parentDebugId, imports, filename);
}
void ClientProxy::destroyQmlObject(int debugId)
{
if (isConnected())
m_observerClient->destroyQmlObject(debugId);
}
void ClientProxy::reparentQmlObject(int debugId, int newParent)
{
if (isConnected())
m_observerClient->reparentQmlObject(debugId, newParent);
}
void ClientProxy::setContextPathIndex(int contextIndex)
{
if (isConnected())
m_observerClient->setContextPathIndex(contextIndex);
}
void ClientProxy::updateConnected()
{
bool isConnected = m_observerClient && m_observerClient->status() == QDeclarativeDebugClient::Enabled
&& m_engineClient && m_engineClient->status() == QDeclarativeEngineDebug::Enabled;
if (isConnected != m_isConnected) {
m_isConnected = isConnected;
if (isConnected) {
emit connected();
reloadEngines();
} else {
emit disconnected();
}
}
}
2010-06-28 18:05:24 +02:00
void ClientProxy::reloadEngines()
{
if (m_engineQuery) {
emit connectionStatusMessage("[Inspector] Waiting for response to previous engine query");
return;
}
emit aboutToReloadEngines();
m_engineQuery = m_engineClient->queryAvailableEngines(this);
2010-06-28 18:05:24 +02:00
if (!m_engineQuery->isWaiting())
updateEngineList();
else
2010-06-29 15:06:50 +02:00
connect(m_engineQuery, SIGNAL(stateChanged(QDeclarativeDebugQuery::State)),
2010-06-28 18:05:24 +02:00
this, SLOT(updateEngineList()));
}
QList<QDeclarativeDebugEngineReference> ClientProxy::engines() const
{
return m_engines;
}
void ClientProxy::updateEngineList()
{
m_engines = m_engineQuery->engines();
2010-06-29 15:06:50 +02:00
delete m_engineQuery;
m_engineQuery = 0;
2010-06-28 18:05:24 +02:00
emit enginesChanged();
}
Debugger::QmlAdapter *ClientProxy::qmlAdapter() const
{
return m_adapter;
}
bool ClientProxy::isConnected() const
{
return m_isConnected;
}
void ClientProxy::newObjects()
{
if (!m_requestObjectsTimer.isActive())
m_requestObjectsTimer.start();
}