2013-08-06 14:41:28 +00:00
|
|
|
/****************************************************************************
|
|
|
|
**
|
|
|
|
** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
|
|
|
|
** Contact: http://www.qt-project.org/legal
|
|
|
|
**
|
|
|
|
** This file is part of the tools applications of the Qt Toolkit.
|
|
|
|
**
|
|
|
|
** $QT_BEGIN_LICENSE:LGPL$
|
|
|
|
** Commercial License Usage
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
** accordance with the commercial license agreement provided with the
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
|
|
** a written agreement between you and Digia. For licensing terms and
|
|
|
|
** conditions see http://qt.digia.com/licensing. For further information
|
|
|
|
** use the contact form at http://qt.digia.com/contact-us.
|
|
|
|
**
|
|
|
|
** 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.
|
|
|
|
**
|
|
|
|
** In addition, as a special exception, Digia gives you certain additional
|
|
|
|
** rights. These rights are described in the Digia Qt LGPL Exception
|
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
**
|
|
|
|
** 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.
|
|
|
|
**
|
|
|
|
**
|
|
|
|
** $QT_END_LICENSE$
|
|
|
|
**
|
|
|
|
****************************************************************************/
|
|
|
|
#ifndef QQMLCODEGENERATOR_P_H
|
|
|
|
#define QQMLCODEGENERATOR_P_H
|
|
|
|
|
|
|
|
#include <private/qqmljsast_p.h>
|
|
|
|
#include <private/qqmlpool_p.h>
|
|
|
|
#include <private/qqmlscript_p.h>
|
|
|
|
#include <private/qqmljsengine_p.h>
|
|
|
|
#include <private/qv4compiler_p.h>
|
|
|
|
#include <private/qv4compileddata_p.h>
|
|
|
|
#include <private/qqmljsmemorypool_p.h>
|
|
|
|
#include <private/qv4codegen_p.h>
|
|
|
|
#include <private/qv4compiler_p.h>
|
|
|
|
#include <QTextStream>
|
2013-09-11 17:28:13 +00:00
|
|
|
#include <QCoreApplication>
|
2013-08-06 14:41:28 +00:00
|
|
|
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
|
2013-10-24 12:51:02 +00:00
|
|
|
class QQmlTypeNameCache;
|
|
|
|
|
2013-08-06 14:41:28 +00:00
|
|
|
namespace QtQml {
|
|
|
|
|
|
|
|
using namespace QQmlJS;
|
|
|
|
|
|
|
|
struct DebugStream
|
|
|
|
{
|
|
|
|
DebugStream(QTextStream &stream)
|
|
|
|
: stream(stream)
|
|
|
|
, indent(0)
|
|
|
|
{}
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
QTextStream &operator<<(const T &value)
|
|
|
|
{
|
|
|
|
return stream << QByteArray(indent * 4, ' ') << value;
|
|
|
|
}
|
|
|
|
|
|
|
|
QTextStream &noindent() { return stream; }
|
|
|
|
|
|
|
|
QTextStream &stream;
|
|
|
|
int indent;
|
|
|
|
};
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
struct PoolList
|
|
|
|
{
|
|
|
|
PoolList()
|
|
|
|
: first(0)
|
|
|
|
, last(0)
|
|
|
|
, count(0)
|
|
|
|
{}
|
|
|
|
|
|
|
|
T *first;
|
|
|
|
T *last;
|
|
|
|
int count;
|
|
|
|
|
|
|
|
void append(T *item) {
|
|
|
|
item->next = 0;
|
|
|
|
if (last)
|
|
|
|
last->next = item;
|
|
|
|
else
|
|
|
|
first = item;
|
|
|
|
last = item;
|
|
|
|
++count;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct QmlObject;
|
|
|
|
|
|
|
|
struct SignalParameter : public QV4::CompiledData::Parameter
|
|
|
|
{
|
|
|
|
SignalParameter *next;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct Signal
|
|
|
|
{
|
|
|
|
int nameIndex;
|
2013-09-06 12:14:20 +00:00
|
|
|
QV4::CompiledData::Location location;
|
2013-08-06 14:41:28 +00:00
|
|
|
PoolList<SignalParameter> *parameters;
|
2013-09-13 13:03:51 +00:00
|
|
|
|
|
|
|
QStringList parameterStringList(const QStringList &stringPool) const;
|
|
|
|
|
2013-08-06 14:41:28 +00:00
|
|
|
Signal *next;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct QmlProperty : public QV4::CompiledData::Property
|
|
|
|
{
|
|
|
|
QmlProperty *next;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct Binding : public QV4::CompiledData::Binding
|
|
|
|
{
|
2013-10-08 09:44:57 +00:00
|
|
|
// Binding's compiledScriptIndex is index in parsedQML::functions
|
2013-08-06 14:41:28 +00:00
|
|
|
Binding *next;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct Function
|
|
|
|
{
|
2013-10-08 09:44:57 +00:00
|
|
|
int index; // index in parsedQML::functions
|
2013-08-06 14:41:28 +00:00
|
|
|
Function *next;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct QmlObject
|
|
|
|
{
|
|
|
|
int inheritedTypeNameIndex;
|
|
|
|
int idIndex;
|
|
|
|
int indexOfDefaultProperty;
|
|
|
|
|
2013-09-08 09:05:20 +00:00
|
|
|
QV4::CompiledData::Location location;
|
2013-09-17 15:27:07 +00:00
|
|
|
QV4::CompiledData::Location locationOfIdProperty;
|
2013-09-08 09:05:20 +00:00
|
|
|
|
2013-08-06 14:41:28 +00:00
|
|
|
PoolList<QmlProperty> *properties;
|
|
|
|
PoolList<Signal> *qmlSignals;
|
|
|
|
PoolList<Binding> *bindings;
|
|
|
|
PoolList<Function> *functions;
|
|
|
|
|
|
|
|
void dump(DebugStream &out);
|
|
|
|
};
|
|
|
|
|
2013-09-24 19:49:10 +00:00
|
|
|
struct Pragma
|
|
|
|
{
|
|
|
|
enum PragmaType {
|
|
|
|
PragmaSingleton = 0x1
|
|
|
|
};
|
|
|
|
quint32 type;
|
|
|
|
|
|
|
|
QV4::CompiledData::Location location;
|
|
|
|
};
|
|
|
|
|
2013-08-06 14:41:28 +00:00
|
|
|
struct ParsedQML
|
|
|
|
{
|
2013-09-11 11:46:27 +00:00
|
|
|
ParsedQML(bool debugMode)
|
|
|
|
: jsModule(debugMode)
|
|
|
|
, jsGenerator(&jsModule, sizeof(QV4::CompiledData::QmlUnit))
|
2013-08-06 14:41:28 +00:00
|
|
|
{}
|
|
|
|
QString code;
|
|
|
|
QQmlJS::Engine jsParserEngine;
|
|
|
|
V4IR::Module jsModule;
|
|
|
|
QList<QV4::CompiledData::Import*> imports;
|
2013-09-24 19:49:10 +00:00
|
|
|
QList<Pragma*> pragmas;
|
2013-09-13 11:43:15 +00:00
|
|
|
AST::UiProgram *program;
|
2013-08-06 14:41:28 +00:00
|
|
|
int indexOfRootObject;
|
|
|
|
QList<QmlObject*> objects;
|
|
|
|
QList<AST::Node*> functions; // FunctionDeclaration, Statement or Expression
|
|
|
|
QV4::Compiler::JSUnitGenerator jsGenerator;
|
|
|
|
|
2013-09-12 08:53:20 +00:00
|
|
|
QV4::CompiledData::TypeReferenceMap typeReferences;
|
|
|
|
|
2013-08-06 14:41:28 +00:00
|
|
|
QString stringAt(int index) const { return jsGenerator.strings.value(index); }
|
|
|
|
};
|
|
|
|
|
|
|
|
// Doesn't really generate code per-se, but more the data structure
|
|
|
|
struct Q_QML_EXPORT QQmlCodeGenerator : public AST::Visitor
|
|
|
|
{
|
2013-09-11 17:28:13 +00:00
|
|
|
Q_DECLARE_TR_FUNCTIONS(QQmlCodeGenerator)
|
|
|
|
public:
|
2013-08-06 14:41:28 +00:00
|
|
|
QQmlCodeGenerator();
|
|
|
|
bool generateFromQml(const QString &code, const QUrl &url, const QString &urlString, ParsedQML *output);
|
|
|
|
|
2013-09-13 13:03:51 +00:00
|
|
|
static bool isSignalPropertyName(const QString &name);
|
|
|
|
|
2013-08-06 14:41:28 +00:00
|
|
|
using AST::Visitor::visit;
|
|
|
|
using AST::Visitor::endVisit;
|
|
|
|
|
|
|
|
virtual bool visit(AST::UiArrayMemberList *ast);
|
|
|
|
virtual bool visit(AST::UiImport *ast);
|
2013-08-22 19:08:37 +00:00
|
|
|
virtual bool visit(AST::UiPragma *ast);
|
|
|
|
virtual bool visit(AST::UiHeaderItemList *ast);
|
2013-08-06 14:41:28 +00:00
|
|
|
virtual bool visit(AST::UiObjectInitializer *ast);
|
|
|
|
virtual bool visit(AST::UiObjectMemberList *ast);
|
|
|
|
virtual bool visit(AST::UiParameterList *ast);
|
|
|
|
virtual bool visit(AST::UiProgram *);
|
|
|
|
virtual bool visit(AST::UiQualifiedId *ast);
|
|
|
|
virtual bool visit(AST::UiArrayBinding *ast);
|
|
|
|
virtual bool visit(AST::UiObjectBinding *ast);
|
|
|
|
virtual bool visit(AST::UiObjectDefinition *ast);
|
|
|
|
virtual bool visit(AST::UiPublicMember *ast);
|
|
|
|
virtual bool visit(AST::UiScriptBinding *ast);
|
|
|
|
virtual bool visit(AST::UiSourceElement *ast);
|
|
|
|
|
|
|
|
void accept(AST::Node *node);
|
|
|
|
|
|
|
|
// returns index in _objects
|
|
|
|
int defineQMLObject(AST::UiQualifiedId *qualifiedTypeNameId, AST::UiObjectInitializer *initializer);
|
|
|
|
int defineQMLObject(AST::UiObjectDefinition *node)
|
|
|
|
{ return defineQMLObject(node->qualifiedTypeNameId, node->initializer); }
|
|
|
|
|
|
|
|
static QString asString(AST::UiQualifiedId *node);
|
|
|
|
QStringRef asStringRef(AST::Node *node);
|
|
|
|
static void extractVersion(QStringRef string, int *maj, int *min);
|
|
|
|
QStringRef textRefAt(const AST::SourceLocation &loc) const
|
|
|
|
{ return QStringRef(&sourceCode, loc.offset, loc.length); }
|
|
|
|
QStringRef textRefAt(const AST::SourceLocation &first,
|
|
|
|
const AST::SourceLocation &last) const;
|
|
|
|
static QQmlScript::LocationSpan location(AST::UiQualifiedId *id)
|
|
|
|
{
|
|
|
|
return location(id->identifierToken, id->identifierToken);
|
|
|
|
}
|
|
|
|
|
|
|
|
void setBindingValue(QV4::CompiledData::Binding *binding, AST::Statement *statement);
|
|
|
|
|
2013-09-12 12:43:56 +00:00
|
|
|
void appendBinding(AST::UiQualifiedId *name, AST::Statement *value);
|
|
|
|
void appendBinding(AST::UiQualifiedId *name, int objectIndex);
|
2013-09-11 17:28:13 +00:00
|
|
|
void appendBinding(const AST::SourceLocation &nameLocation, int propertyNameIndex, AST::Statement *value);
|
2013-09-16 15:25:53 +00:00
|
|
|
void appendBinding(const AST::SourceLocation &nameLocation, int propertyNameIndex, int objectIndex, bool isListItem = false);
|
2013-09-11 17:28:13 +00:00
|
|
|
|
2013-09-12 14:53:32 +00:00
|
|
|
bool setId(AST::Statement *value);
|
|
|
|
|
2013-09-12 12:43:56 +00:00
|
|
|
// resolves qualified name (font.pixelSize for example) and returns the last name along
|
|
|
|
// with the object any right-hand-side of a binding should apply to.
|
2013-09-17 15:23:49 +00:00
|
|
|
bool resolveQualifiedId(AST::UiQualifiedId **nameToResolve, QmlObject **object);
|
2013-09-12 12:43:56 +00:00
|
|
|
|
2013-09-16 15:25:53 +00:00
|
|
|
bool sanityCheckPropertyName(const AST::SourceLocation &nameLocation, int nameIndex, bool isListItem = false);
|
2013-09-11 17:28:13 +00:00
|
|
|
|
|
|
|
void recordError(const AST::SourceLocation &location, const QString &description);
|
2013-08-06 14:41:28 +00:00
|
|
|
|
2013-09-12 08:53:20 +00:00
|
|
|
void collectTypeReferences();
|
|
|
|
|
2013-08-06 14:41:28 +00:00
|
|
|
static QQmlScript::LocationSpan location(AST::SourceLocation start, AST::SourceLocation end);
|
|
|
|
|
|
|
|
int registerString(const QString &str) const { return jsGenerator->registerString(str); }
|
|
|
|
template <typename _Tp> _Tp *New() { return new (pool->allocate(sizeof(_Tp))) _Tp(); }
|
|
|
|
|
2013-09-12 12:43:56 +00:00
|
|
|
QString stringAt(int index) const { return jsGenerator->strings.at(index); }
|
|
|
|
|
2013-09-30 07:41:35 +00:00
|
|
|
static bool isStatementNodeScript(AST::Statement *statement);
|
|
|
|
|
2013-08-06 14:41:28 +00:00
|
|
|
QList<QQmlError> errors;
|
|
|
|
|
|
|
|
QList<QV4::CompiledData::Import*> _imports;
|
2013-09-24 19:49:10 +00:00
|
|
|
QList<Pragma*> _pragmas;
|
2013-08-06 14:41:28 +00:00
|
|
|
QList<QmlObject*> _objects;
|
|
|
|
QList<AST::Node*> _functions;
|
|
|
|
|
2013-09-12 08:53:20 +00:00
|
|
|
QV4::CompiledData::TypeReferenceMap _typeReferences;
|
|
|
|
|
2013-08-06 14:41:28 +00:00
|
|
|
QmlObject *_object;
|
2013-09-11 17:28:13 +00:00
|
|
|
QSet<QString> _propertyNames;
|
|
|
|
QSet<QString> _signalNames;
|
2013-08-06 14:41:28 +00:00
|
|
|
|
|
|
|
QQmlJS::MemoryPool *pool;
|
|
|
|
QString sourceCode;
|
2013-09-11 17:28:13 +00:00
|
|
|
QUrl url;
|
2013-08-06 14:41:28 +00:00
|
|
|
QV4::Compiler::JSUnitGenerator *jsGenerator;
|
2013-09-19 11:32:13 +00:00
|
|
|
int emptyStringIndex;
|
2013-09-11 17:28:13 +00:00
|
|
|
bool sanityCheckFunctionNames();
|
2013-08-06 14:41:28 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct Q_QML_EXPORT QmlUnitGenerator
|
|
|
|
{
|
|
|
|
QmlUnitGenerator()
|
|
|
|
: jsUnitGenerator(0)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-10-08 09:44:57 +00:00
|
|
|
QV4::CompiledData::QmlUnit *generate(ParsedQML &output, const QVector<int> &runtimeFunctionIndices);
|
2013-08-06 14:41:28 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
int getStringId(const QString &str) const;
|
|
|
|
|
|
|
|
QV4::Compiler::JSUnitGenerator *jsUnitGenerator;
|
|
|
|
};
|
|
|
|
|
2013-09-13 13:03:51 +00:00
|
|
|
struct PropertyResolver
|
|
|
|
{
|
|
|
|
PropertyResolver(QQmlPropertyCache *cache)
|
|
|
|
: cache(cache)
|
|
|
|
{}
|
|
|
|
|
|
|
|
QQmlPropertyData *property(int index)
|
|
|
|
{
|
|
|
|
return cache->property(index);
|
|
|
|
}
|
|
|
|
|
2013-09-19 11:32:13 +00:00
|
|
|
QQmlPropertyData *property(const QString &name, bool *notInRevision = 0);
|
2013-09-13 13:03:51 +00:00
|
|
|
|
|
|
|
// This code must match the semantics of QQmlPropertyPrivate::findSignalByName
|
|
|
|
QQmlPropertyData *signal(const QString &name, bool *notInRevision);
|
|
|
|
|
|
|
|
QQmlPropertyCache *cache;
|
|
|
|
};
|
|
|
|
|
|
|
|
// "Converts" signal expressions to full-fleged function declarations with
|
|
|
|
// parameters taken from the signal declarations
|
|
|
|
// It also updates the QV4::CompiledData::Binding objects to set the property name
|
|
|
|
// to the final signal name (onTextChanged -> textChanged) and sets the IsSignalExpression flag.
|
|
|
|
struct SignalHandlerConverter
|
|
|
|
{
|
|
|
|
Q_DECLARE_TR_FUNCTIONS(QQmlCodeGenerator)
|
|
|
|
public:
|
2013-09-13 14:39:00 +00:00
|
|
|
SignalHandlerConverter(QQmlEnginePrivate *enginePrivate, ParsedQML *parsedQML,
|
2013-09-13 13:03:51 +00:00
|
|
|
QQmlCompiledData *unit);
|
|
|
|
|
|
|
|
bool convertSignalHandlerExpressionsToFunctionDeclarations();
|
|
|
|
|
|
|
|
QList<QQmlError> errors;
|
|
|
|
|
|
|
|
private:
|
2013-09-13 14:39:00 +00:00
|
|
|
bool convertSignalHandlerExpressionsToFunctionDeclarations(QmlObject *obj, const QString &typeName, QQmlPropertyCache *propertyCache);
|
|
|
|
|
2013-09-13 13:03:51 +00:00
|
|
|
const QString &stringAt(int index) const { return parsedQML->jsGenerator.strings.at(index); }
|
|
|
|
void recordError(const QV4::CompiledData::Location &location, const QString &description);
|
|
|
|
|
2013-09-13 14:39:00 +00:00
|
|
|
QQmlEnginePrivate *enginePrivate;
|
2013-09-13 13:03:51 +00:00
|
|
|
ParsedQML *parsedQML;
|
|
|
|
QQmlCompiledData *unit;
|
|
|
|
};
|
|
|
|
|
2013-08-06 14:41:28 +00:00
|
|
|
struct Q_QML_EXPORT JSCodeGen : public QQmlJS::Codegen
|
|
|
|
{
|
2013-10-25 12:23:39 +00:00
|
|
|
JSCodeGen(QQmlEnginePrivate *enginePrivate, const QString &fileName, const QString &sourceCode, V4IR::Module *jsModule,
|
2013-10-24 12:51:02 +00:00
|
|
|
QQmlJS::Engine *jsEngine, AST::UiProgram *qmlRoot, QQmlTypeNameCache *imports);
|
2013-08-06 14:41:28 +00:00
|
|
|
|
2013-10-23 14:24:58 +00:00
|
|
|
struct IdMapping
|
|
|
|
{
|
|
|
|
QString name;
|
|
|
|
int idIndex;
|
2013-10-25 12:23:39 +00:00
|
|
|
QQmlPropertyCache *type;
|
2013-10-23 14:24:58 +00:00
|
|
|
};
|
|
|
|
typedef QVector<IdMapping> ObjectIdMapping;
|
|
|
|
|
2013-10-24 12:51:02 +00:00
|
|
|
void beginContextScope(const ObjectIdMapping &objectIds, QQmlPropertyCache *contextObject);
|
|
|
|
void beginObjectScope(QQmlPropertyCache *scopeObject);
|
|
|
|
|
2013-10-08 09:44:57 +00:00
|
|
|
// Returns mapping from input functions to index in V4IR::Module::functions / compiledData->runtimeFunctions
|
2013-10-30 12:27:43 +00:00
|
|
|
QVector<int> generateJSCodeForFunctionsAndBindings(const QList<AST::Node*> &functions, const QHash<int, QString> &functionNames);
|
2013-09-13 11:43:15 +00:00
|
|
|
|
2013-10-25 12:23:39 +00:00
|
|
|
// Resolve QObject members with the help of QQmlEngine's meta type registry
|
|
|
|
virtual V4IR::Expr *member(V4IR::Expr *base, const QString *name);
|
|
|
|
|
2013-10-23 14:24:58 +00:00
|
|
|
protected:
|
2013-10-24 12:51:02 +00:00
|
|
|
virtual V4IR::Expr *fallbackNameLookup(const QString &name, int line, int col);
|
2013-09-13 11:43:15 +00:00
|
|
|
|
2013-10-23 14:24:58 +00:00
|
|
|
private:
|
2013-10-25 12:23:39 +00:00
|
|
|
QQmlEnginePrivate *engine;
|
2013-10-24 08:38:29 +00:00
|
|
|
QString sourceCode;
|
|
|
|
QQmlJS::Engine *jsEngine; // needed for memory pool
|
|
|
|
AST::UiProgram *qmlRoot;
|
2013-10-24 12:51:02 +00:00
|
|
|
QQmlTypeNameCache *imports;
|
2013-10-24 08:38:29 +00:00
|
|
|
|
2013-10-24 12:51:02 +00:00
|
|
|
ObjectIdMapping _idObjects;
|
|
|
|
QQmlPropertyCache *_contextObject;
|
|
|
|
QQmlPropertyCache *_scopeObject;
|
2013-08-06 14:41:28 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace QtQml
|
|
|
|
|
|
|
|
QT_END_NAMESPACE
|
|
|
|
|
|
|
|
#endif // QQMLCODEGENERATOR_P_H
|