| 
									
										
										
										
											2010-07-09 15:47:07 +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-02-19 15:55:11 +01:00
										 |  |  | #include "qmljsscopebuilder.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "qmljsbind.h"
 | 
					
						
							|  |  |  | #include "qmljsinterpreter.h"
 | 
					
						
							|  |  |  | #include "qmljsevaluate.h"
 | 
					
						
							|  |  |  | #include "parser/qmljsast_p.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | using namespace QmlJS; | 
					
						
							|  |  |  | using namespace QmlJS::Interpreter; | 
					
						
							|  |  |  | using namespace QmlJS::AST; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ScopeBuilder::ScopeBuilder(Document::Ptr doc, Interpreter::Context *context) | 
					
						
							|  |  |  |     : _doc(doc) | 
					
						
							|  |  |  |     , _context(context) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ScopeBuilder::~ScopeBuilder() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ScopeBuilder::push(AST::Node *node) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     _nodes += node; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // QML scope object
 | 
					
						
							|  |  |  |     Node *qmlObject = cast<UiObjectDefinition *>(node); | 
					
						
							|  |  |  |     if (! qmlObject) | 
					
						
							|  |  |  |         qmlObject = cast<UiObjectBinding *>(node); | 
					
						
							|  |  |  |     if (qmlObject) | 
					
						
							|  |  |  |         setQmlScopeObject(qmlObject); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // JS scopes
 | 
					
						
							|  |  |  |     if (FunctionDeclaration *fun = cast<FunctionDeclaration *>(node)) { | 
					
						
							| 
									
										
										
										
											2010-04-20 15:19:37 +02:00
										 |  |  |         ObjectValue *functionScope = _doc->bind()->findFunctionScope(fun); | 
					
						
							| 
									
										
										
										
											2010-05-19 14:22:02 +02:00
										 |  |  |         if (functionScope) | 
					
						
							|  |  |  |             _context->scopeChain().jsScopes += functionScope; | 
					
						
							| 
									
										
										
										
											2010-02-19 15:55:11 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     _context->scopeChain().update(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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
 | 
					
						
							|  |  |  |     if (cast<FunctionDeclaration *>(toRemove)) | 
					
						
							|  |  |  |         _context->scopeChain().jsScopes.removeLast(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // QML scope object
 | 
					
						
							|  |  |  |     if (! _nodes.isEmpty() | 
					
						
							|  |  |  |         && (cast<UiObjectDefinition *>(toRemove) || cast<UiObjectBinding *>(toRemove))) | 
					
						
							|  |  |  |         setQmlScopeObject(_nodes.last()); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     _context->scopeChain().update(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ScopeBuilder::setQmlScopeObject(Node *node) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     ScopeChain &scopeChain = _context->scopeChain(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-12 13:58:23 +02:00
										 |  |  |     if (_doc->bind()->isGroupedPropertyBinding(node)) { | 
					
						
							|  |  |  |         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; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         scopeChain.qmlScopeObjects.clear(); | 
					
						
							|  |  |  |         scopeChain.qmlScopeObjects += object; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2010-02-19 15:55:11 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     const ObjectValue *scopeObject = _doc->bind()->findQmlObject(node); | 
					
						
							|  |  |  |     if (scopeObject) { | 
					
						
							| 
									
										
										
										
											2010-05-12 13:58:23 +02:00
										 |  |  |         scopeChain.qmlScopeObjects.clear(); | 
					
						
							| 
									
										
										
										
											2010-02-23 12:34:52 +01:00
										 |  |  |         scopeChain.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
 | 
					
						
							| 
									
										
										
										
											2010-02-19 15:55:11 +01:00
										 |  |  |     const ObjectValue *prototype = scopeObject->prototype(_context); | 
					
						
							|  |  |  |     while (prototype) { | 
					
						
							|  |  |  |         if (const QmlObjectValue *qmlMetaObject = dynamic_cast<const QmlObjectValue *>(prototype)) { | 
					
						
							| 
									
										
										
										
											2010-03-03 11:36:42 +01:00
										 |  |  |             if ((qmlMetaObject->className() == QLatin1String("ListElement") | 
					
						
							|  |  |  |                     || qmlMetaObject->className() == QLatin1String("Connections") | 
					
						
							|  |  |  |                     ) && qmlMetaObject->packageName() == QLatin1String("Qt")) { | 
					
						
							| 
									
										
										
										
											2010-02-19 15:55:11 +01:00
										 |  |  |                 scopeChain.qmlScopeObjects.clear(); | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         prototype = prototype->prototype(_context); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // check if the object has a Qt.PropertyChanges ancestor
 | 
					
						
							|  |  |  |     prototype = scopeObject->prototype(_context); | 
					
						
							| 
									
										
										
										
											2010-05-19 11:15:57 +02:00
										 |  |  |     prototype = isPropertyChangesObject(_context, prototype); | 
					
						
							| 
									
										
										
										
											2010-02-19 15:55:11 +01:00
										 |  |  |     // find the target script binding
 | 
					
						
							|  |  |  |     if (prototype) { | 
					
						
							|  |  |  |         UiObjectInitializer *initializer = 0; | 
					
						
							|  |  |  |         if (UiObjectDefinition *definition = cast<UiObjectDefinition *>(node)) | 
					
						
							|  |  |  |             initializer = definition->initializer; | 
					
						
							|  |  |  |         if (UiObjectBinding *binding = cast<UiObjectBinding *>(node)) | 
					
						
							|  |  |  |             initializer = binding->initializer; | 
					
						
							|  |  |  |         if (initializer) { | 
					
						
							|  |  |  |             for (UiObjectMemberList *m = initializer->members; m; m = m->next) { | 
					
						
							|  |  |  |                 if (UiScriptBinding *scriptBinding = cast<UiScriptBinding *>(m->member)) { | 
					
						
							|  |  |  |                     if (scriptBinding->qualifiedId | 
					
						
							|  |  |  |                             && scriptBinding->qualifiedId->name->asString() == QLatin1String("target") | 
					
						
							|  |  |  |                             && ! scriptBinding->qualifiedId->next) { | 
					
						
							|  |  |  |                         // ### make Evaluate understand statements.
 | 
					
						
							|  |  |  |                         if (ExpressionStatement *expStmt = cast<ExpressionStatement *>(scriptBinding->statement)) { | 
					
						
							|  |  |  |                             Evaluate evaluator(_context); | 
					
						
							|  |  |  |                             const Value *targetValue = evaluator(expStmt->expression); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                             if (const ObjectValue *target = value_cast<const ObjectValue *>(targetValue)) { | 
					
						
							|  |  |  |                                 scopeChain.qmlScopeObjects.prepend(target); | 
					
						
							|  |  |  |                             } else { | 
					
						
							|  |  |  |                                 scopeChain.qmlScopeObjects.clear(); | 
					
						
							|  |  |  |                             } | 
					
						
							|  |  |  |                         } | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											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; | 
					
						
							|  |  |  |     foreach (const ObjectValue *scopeObject, _context->scopeChain().qmlScopeObjects) { | 
					
						
							|  |  |  |         const ObjectValue *object = scopeObject; | 
					
						
							|  |  |  |         for (UiQualifiedId *it = id; it; it = it->next) { | 
					
						
							|  |  |  |             result = object->property(it->name->asString(), _context); | 
					
						
							|  |  |  |             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
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | const ObjectValue *ScopeBuilder::isPropertyChangesObject(Context *context, | 
					
						
							|  |  |  |                                                    const ObjectValue *object) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     const ObjectValue *prototype = object; | 
					
						
							|  |  |  |     while (prototype) { | 
					
						
							|  |  |  |         if (const QmlObjectValue *qmlMetaObject = dynamic_cast<const QmlObjectValue *>(prototype)) { | 
					
						
							|  |  |  |             if (qmlMetaObject->className() == QLatin1String("PropertyChanges") | 
					
						
							|  |  |  |                     && qmlMetaObject->packageName() == QLatin1String("Qt")) | 
					
						
							|  |  |  |                 return prototype; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         prototype = prototype->prototype(context); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } |