2010-07-09 15:47:07 +02:00
|
|
|
/**************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
|
**
|
2011-01-11 16:28:15 +01:00
|
|
|
** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies).
|
2010-07-09 15:47:07 +02:00
|
|
|
**
|
2011-04-13 08:42:33 +02:00
|
|
|
** Contact: Nokia Corporation (info@qt.nokia.com)
|
2010-07-09 15:47:07 +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-09 15:47:07 +02:00
|
|
|
**
|
2010-12-17 16:01:08 +01: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-12-17 16:01:08 +01:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
2011-04-13 08:42:33 +02:00
|
|
|
** 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.
|
|
|
|
|
**
|
2010-12-17 16:01:08 +01: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-09 15:47:07 +02:00
|
|
|
**
|
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
2010-02-19 15:55:11 +01:00
|
|
|
#include "qmljsscopebuilder.h"
|
|
|
|
|
|
|
|
|
|
#include "qmljsbind.h"
|
2011-07-01 13:51:53 +02:00
|
|
|
#include "qmljscontext.h"
|
2010-02-19 15:55:11 +01:00
|
|
|
#include "qmljsevaluate.h"
|
2011-07-12 14:55:27 +02:00
|
|
|
#include "qmljsscopechain.h"
|
2011-10-07 14:04:06 +02:00
|
|
|
#include "qmljsutils.h"
|
2010-02-19 15:55:11 +01:00
|
|
|
#include "parser/qmljsast_p.h"
|
|
|
|
|
|
2011-09-28 15:15:09 +02:00
|
|
|
#include <utils/qtcassert.h>
|
|
|
|
|
|
2010-02-19 15:55:11 +01:00
|
|
|
using namespace QmlJS;
|
|
|
|
|
using namespace QmlJS::AST;
|
|
|
|
|
|
2011-07-12 14:55:27 +02:00
|
|
|
ScopeBuilder::ScopeBuilder(ScopeChain *scopeChain)
|
|
|
|
|
: _scopeChain(scopeChain)
|
2010-02-19 15:55:11 +01:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ScopeBuilder::~ScopeBuilder()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ScopeBuilder::push(AST::Node *node)
|
|
|
|
|
{
|
|
|
|
|
_nodes += node;
|
|
|
|
|
|
|
|
|
|
// QML scope object
|
|
|
|
|
Node *qmlObject = cast<UiObjectDefinition *>(node);
|
|
|
|
|
if (! qmlObject)
|
|
|
|
|
qmlObject = cast<UiObjectBinding *>(node);
|
2011-09-28 15:15:09 +02:00
|
|
|
if (qmlObject) {
|
|
|
|
|
// save the previous scope objects
|
|
|
|
|
_qmlScopeObjects.push(_scopeChain->qmlScopeObjects());
|
2010-02-19 15:55:11 +01:00
|
|
|
setQmlScopeObject(qmlObject);
|
2011-09-28 15:15:09 +02:00
|
|
|
}
|
2010-02-19 15:55:11 +01:00
|
|
|
|
2011-10-05 14:14:35 +02:00
|
|
|
// JS signal handler scope
|
|
|
|
|
if (UiScriptBinding *script = cast<UiScriptBinding *>(node)) {
|
|
|
|
|
QString name;
|
|
|
|
|
if (script->qualifiedId)
|
|
|
|
|
name = script->qualifiedId->name.toString();
|
|
|
|
|
if (!_scopeChain->qmlScopeObjects().isEmpty()
|
|
|
|
|
&& name.startsWith(QLatin1String("on"))
|
|
|
|
|
&& !script->qualifiedId->next) {
|
|
|
|
|
const ObjectValue *owner = 0;
|
|
|
|
|
const Value *value = 0;
|
|
|
|
|
// try to find the name on the scope objects
|
|
|
|
|
foreach (const ObjectValue *scope, _scopeChain->qmlScopeObjects()) {
|
|
|
|
|
value = scope->lookupMember(name, _scopeChain->context(), &owner);
|
|
|
|
|
if (value)
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
// signals defined in QML
|
|
|
|
|
if (const ASTSignal *astsig = dynamic_cast<const ASTSignal *>(value)) {
|
|
|
|
|
_scopeChain->appendJsScope(astsig->bodyScope());
|
|
|
|
|
}
|
|
|
|
|
// signals defined in C++
|
|
|
|
|
else if (const QmlObjectValue *qmlObject = dynamic_cast<const QmlObjectValue *>(owner)) {
|
|
|
|
|
if (const ObjectValue *scope = qmlObject->signalScope(name)) {
|
|
|
|
|
_scopeChain->appendJsScope(scope);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2011-06-06 14:13:50 +02:00
|
|
|
// JS scopes
|
|
|
|
|
switch (node->kind) {
|
|
|
|
|
case Node::Kind_UiScriptBinding:
|
|
|
|
|
case Node::Kind_FunctionDeclaration:
|
|
|
|
|
case Node::Kind_FunctionExpression:
|
|
|
|
|
case Node::Kind_UiPublicMember:
|
|
|
|
|
{
|
2011-07-12 14:55:27 +02:00
|
|
|
ObjectValue *scope = _scopeChain->document()->bind()->findAttachedJSScope(node);
|
2011-10-05 14:14:35 +02:00
|
|
|
if (scope)
|
|
|
|
|
_scopeChain->appendJsScope(scope);
|
2011-06-06 14:13:50 +02:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
default:
|
|
|
|
|
break;
|
2010-02-19 15:55:11 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2010-04-22 15:59:21 +02:00
|
|
|
void ScopeBuilder::push(const QList<AST::Node *> &nodes)
|
|
|
|
|
{
|
|
|
|
|
foreach (Node *node, nodes)
|
|
|
|
|
push(node);
|
|
|
|
|
}
|
|
|
|
|
|
2010-02-19 15:55:11 +01:00
|
|
|
void ScopeBuilder::pop()
|
|
|
|
|
{
|
|
|
|
|
Node *toRemove = _nodes.last();
|
|
|
|
|
_nodes.removeLast();
|
|
|
|
|
|
|
|
|
|
// JS scopes
|
2011-06-06 14:13:50 +02:00
|
|
|
switch (toRemove->kind) {
|
|
|
|
|
case Node::Kind_UiScriptBinding:
|
|
|
|
|
case Node::Kind_FunctionDeclaration:
|
|
|
|
|
case Node::Kind_FunctionExpression:
|
|
|
|
|
case Node::Kind_UiPublicMember:
|
|
|
|
|
{
|
2011-07-12 14:55:27 +02:00
|
|
|
ObjectValue *scope = _scopeChain->document()->bind()->findAttachedJSScope(toRemove);
|
|
|
|
|
if (scope) {
|
|
|
|
|
QList<const ObjectValue *> jsScopes = _scopeChain->jsScopes();
|
|
|
|
|
if (!jsScopes.isEmpty()) {
|
|
|
|
|
jsScopes.removeLast();
|
|
|
|
|
_scopeChain->setJsScopes(jsScopes);
|
|
|
|
|
}
|
|
|
|
|
}
|
2011-06-06 14:13:50 +02:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
default:
|
|
|
|
|
break;
|
2010-11-24 14:42:10 +01:00
|
|
|
}
|
2010-02-19 15:55:11 +01:00
|
|
|
|
|
|
|
|
// QML scope object
|
2011-09-28 15:15:09 +02:00
|
|
|
if (cast<UiObjectDefinition *>(toRemove) || cast<UiObjectBinding *>(toRemove)) {
|
|
|
|
|
// restore the previous scope objects
|
|
|
|
|
QTC_ASSERT(!_qmlScopeObjects.isEmpty(), return);
|
|
|
|
|
_scopeChain->setQmlScopeObjects(_qmlScopeObjects.pop());
|
|
|
|
|
}
|
2010-09-24 14:05:34 +02:00
|
|
|
}
|
|
|
|
|
|
2010-02-19 15:55:11 +01:00
|
|
|
void ScopeBuilder::setQmlScopeObject(Node *node)
|
|
|
|
|
{
|
2011-07-12 14:55:27 +02:00
|
|
|
QList<const ObjectValue *> qmlScopeObjects;
|
|
|
|
|
if (_scopeChain->document()->bind()->isGroupedPropertyBinding(node)) {
|
2010-05-12 13:58:23 +02:00
|
|
|
UiObjectDefinition *definition = cast<UiObjectDefinition *>(node);
|
|
|
|
|
if (!definition)
|
|
|
|
|
return;
|
|
|
|
|
const Value *v = scopeObjectLookup(definition->qualifiedTypeNameId);
|
|
|
|
|
if (!v)
|
|
|
|
|
return;
|
|
|
|
|
const ObjectValue *object = v->asObjectValue();
|
|
|
|
|
if (!object)
|
|
|
|
|
return;
|
|
|
|
|
|
2011-07-12 14:55:27 +02:00
|
|
|
qmlScopeObjects += object;
|
|
|
|
|
_scopeChain->setQmlScopeObjects(qmlScopeObjects);
|
|
|
|
|
return;
|
2010-05-12 13:58:23 +02:00
|
|
|
}
|
2010-02-19 15:55:11 +01:00
|
|
|
|
2011-07-12 14:55:27 +02:00
|
|
|
const ObjectValue *scopeObject = _scopeChain->document()->bind()->findQmlObject(node);
|
2010-02-19 15:55:11 +01:00
|
|
|
if (scopeObject) {
|
2011-07-12 14:55:27 +02:00
|
|
|
qmlScopeObjects += scopeObject;
|
2010-02-25 12:56:59 +01:00
|
|
|
} else {
|
|
|
|
|
return; // Probably syntax errors, where we're working with a "recovered" AST.
|
2010-02-19 15:55:11 +01:00
|
|
|
}
|
|
|
|
|
|
2010-03-03 11:36:42 +01:00
|
|
|
// check if the object has a Qt.ListElement or Qt.Connections ancestor
|
|
|
|
|
// ### allow only signal bindings for Connections
|
2011-07-12 14:55:27 +02:00
|
|
|
PrototypeIterator iter(scopeObject, _scopeChain->context());
|
2010-11-12 14:53:00 +01:00
|
|
|
iter.next();
|
|
|
|
|
while (iter.hasNext()) {
|
|
|
|
|
const ObjectValue *prototype = iter.next();
|
2011-10-10 10:32:33 +02:00
|
|
|
if (const CppComponentValue *qmlMetaObject = dynamic_cast<const CppComponentValue *>(prototype)) {
|
2010-03-03 11:36:42 +01:00
|
|
|
if ((qmlMetaObject->className() == QLatin1String("ListElement")
|
|
|
|
|
|| qmlMetaObject->className() == QLatin1String("Connections")
|
2011-09-16 13:55:10 +02:00
|
|
|
) && (qmlMetaObject->moduleName() == QLatin1String("Qt")
|
|
|
|
|
|| qmlMetaObject->moduleName() == QLatin1String("QtQuick"))) {
|
2011-07-12 14:55:27 +02:00
|
|
|
qmlScopeObjects.clear();
|
2010-02-19 15:55:11 +01:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// check if the object has a Qt.PropertyChanges ancestor
|
2011-07-12 14:55:27 +02:00
|
|
|
const ObjectValue *prototype = scopeObject->prototype(_scopeChain->context());
|
|
|
|
|
prototype = isPropertyChangesObject(_scopeChain->context(), prototype);
|
2010-02-19 15:55:11 +01:00
|
|
|
// find the target script binding
|
|
|
|
|
if (prototype) {
|
2011-10-07 14:04:06 +02:00
|
|
|
UiObjectInitializer *initializer = initializerOfObject(node);
|
2010-02-19 15:55:11 +01:00
|
|
|
if (initializer) {
|
|
|
|
|
for (UiObjectMemberList *m = initializer->members; m; m = m->next) {
|
|
|
|
|
if (UiScriptBinding *scriptBinding = cast<UiScriptBinding *>(m->member)) {
|
2011-09-13 09:57:24 +02:00
|
|
|
if (scriptBinding->qualifiedId
|
|
|
|
|
&& scriptBinding->qualifiedId->name == QLatin1String("target")
|
2010-02-19 15:55:11 +01:00
|
|
|
&& ! scriptBinding->qualifiedId->next) {
|
2011-07-12 14:55:27 +02:00
|
|
|
Evaluate evaluator(_scopeChain);
|
2010-11-23 14:15:50 +01:00
|
|
|
const Value *targetValue = evaluator(scriptBinding->statement);
|
|
|
|
|
|
|
|
|
|
if (const ObjectValue *target = value_cast<const ObjectValue *>(targetValue)) {
|
2011-07-12 14:55:27 +02:00
|
|
|
qmlScopeObjects.prepend(target);
|
2010-11-23 14:15:50 +01:00
|
|
|
} else {
|
2011-07-12 14:55:27 +02:00
|
|
|
qmlScopeObjects.clear();
|
2010-02-19 15:55:11 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2011-07-12 14:55:27 +02:00
|
|
|
|
|
|
|
|
_scopeChain->setQmlScopeObjects(qmlScopeObjects);
|
2010-02-19 15:55:11 +01:00
|
|
|
}
|
2010-05-12 13:58:23 +02:00
|
|
|
|
|
|
|
|
const Value *ScopeBuilder::scopeObjectLookup(AST::UiQualifiedId *id)
|
|
|
|
|
{
|
|
|
|
|
// do a name lookup on the scope objects
|
|
|
|
|
const Value *result = 0;
|
2011-07-12 14:55:27 +02:00
|
|
|
foreach (const ObjectValue *scopeObject, _scopeChain->qmlScopeObjects()) {
|
2010-05-12 13:58:23 +02:00
|
|
|
const ObjectValue *object = scopeObject;
|
|
|
|
|
for (UiQualifiedId *it = id; it; it = it->next) {
|
2011-09-13 09:57:24 +02:00
|
|
|
if (it->name.isEmpty())
|
2010-10-14 15:14:35 +02:00
|
|
|
return 0;
|
2011-09-13 09:57:24 +02:00
|
|
|
result = object->lookupMember(it->name.toString(), _scopeChain->context());
|
2010-05-12 13:58:23 +02:00
|
|
|
if (!result)
|
|
|
|
|
break;
|
|
|
|
|
if (it->next) {
|
|
|
|
|
object = result->asObjectValue();
|
|
|
|
|
if (!object) {
|
|
|
|
|
result = 0;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (result)
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
}
|
2010-05-19 11:15:57 +02:00
|
|
|
|
|
|
|
|
|
2011-07-13 15:04:27 +02:00
|
|
|
const ObjectValue *ScopeBuilder::isPropertyChangesObject(const ContextPtr &context,
|
2010-05-19 11:15:57 +02:00
|
|
|
const ObjectValue *object)
|
|
|
|
|
{
|
2010-11-12 14:53:00 +01:00
|
|
|
PrototypeIterator iter(object, context);
|
|
|
|
|
while (iter.hasNext()) {
|
|
|
|
|
const ObjectValue *prototype = iter.next();
|
2011-10-10 10:32:33 +02:00
|
|
|
if (const CppComponentValue *qmlMetaObject = dynamic_cast<const CppComponentValue *>(prototype)) {
|
2010-05-19 11:15:57 +02:00
|
|
|
if (qmlMetaObject->className() == QLatin1String("PropertyChanges")
|
2011-09-16 13:55:10 +02:00
|
|
|
&& (qmlMetaObject->moduleName() == QLatin1String("Qt")
|
|
|
|
|
|| qmlMetaObject->moduleName() == QLatin1String("QtQuick")))
|
2010-05-19 11:15:57 +02:00
|
|
|
return prototype;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|