aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/qml/qqmlrewrite.cpp
blob: af168f7c48504194a0dec543bcd695e4efc5e23d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
/****************************************************************************
**
** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/legal
**
** This file is part of the QtQml module 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$
**
****************************************************************************/

#include "qqmlrewrite_p.h"

#include <private/qqmlglobal_p.h>

#include <QtCore/qdebug.h>
#include <QtCore/qcoreapplication.h>

QT_BEGIN_NAMESPACE

DEFINE_BOOL_CONFIG_OPTION(rewriteDump, QML_REWRITE_DUMP)

namespace QQmlRewrite {

static void rewriteStringLiteral(AST::StringLiteral *ast, const QString *code, int startPosition, TextWriter *writer)
{
    const unsigned position = ast->firstSourceLocation().begin() - startPosition + 1;
    const unsigned length = ast->literalToken.length - 2;
    const QStringRef spell = code->midRef(position, length);
    const int end = spell.size();
    int index = 0;

    while (index < end) {
        const QChar ch = spell.at(index++);

        if (index < end && ch == QLatin1Char('\\')) {
            int pos = index;

            // skip a possibly empty sequence of \r characters
            while (pos < end && spell.at(pos) == QLatin1Char('\r'))
                ++pos;

            if (pos < end && spell.at(pos) == QLatin1Char('\n')) {
                // This is a `\' followed by a newline terminator.
                // In this case there's nothing to replace. We keep the code
                // as it is and we resume the searching.
                index = pos + 1; // refresh the index
            }
        } else if (ch == QLatin1Char('\r') || ch == QLatin1Char('\n')) {
            const QString sep = ch == QLatin1Char('\r') ? QLatin1String("\\r") : QLatin1String("\\n");
            const int pos = index - 1;
            QString s = sep;

            while (index < end && spell.at(index) == ch) {
                s += sep;
                ++index;
            }

            writer->replace(position + pos, index - pos, s);
        }
    }
}

SharedBindingTester::SharedBindingTester()
: _sharable(false), _safe(false)
{
}

void SharedBindingTester::parse(const QString &code)
{
    _sharable = _safe = false;

    Engine engine;
    Lexer lexer(&engine);
    Parser parser(&engine);
    lexer.setCode(code, 0);
    parser.parseStatement();
    if (!parser.statement()) 
        return;

    return parse(parser.statement());
}

void SharedBindingTester::parse(AST::Node *node)
{
    _sharable = true;
    _safe = true;

    AST::Node::acceptChild(node, this);
}

bool SharedBindingTester::visit(AST::FunctionDeclaration *)
{
    _sharable = false;
    return false;
}

bool SharedBindingTester::visit(AST::FunctionExpression *)
{
    _sharable = false;
    return false;
}

bool SharedBindingTester::visit(AST::CallExpression *e)
{
    static const QString mathString = QStringLiteral("Math");

    if (AST::IdentifierExpression *ie = AST::cast<AST::IdentifierExpression *>(e->base)) {
        if (ie->name == mathString)
            return true;
    }

    _safe = false;
    return true;
}

bool SharedBindingTester::visit(AST::IdentifierExpression *e)
{
    static const QString evalString = QStringLiteral("eval");
    if (e->name == evalString)
        _sharable = false;

    return false; // IdentifierExpression is a leaf node anyway
}

bool SharedBindingTester::visit(AST::PostDecrementExpression *)
{
    _safe = false;
    return true;
}

bool SharedBindingTester::visit(AST::PostIncrementExpression *)
{
    _safe = false;
    return true;
}

bool SharedBindingTester::visit(AST::PreDecrementExpression *)
{
    _safe = false;
    return true;
}

bool SharedBindingTester::visit(AST::PreIncrementExpression *)
{
    _safe = false;
    return true;
}

bool SharedBindingTester::visit(AST::BinaryExpression *e)
{
    if (e->op == QSOperator::InplaceAnd ||
        e->op == QSOperator::Assign ||
        e->op == QSOperator::InplaceSub ||
        e->op == QSOperator::InplaceDiv ||
        e->op == QSOperator::InplaceAdd ||
        e->op == QSOperator::InplaceLeftShift ||
        e->op == QSOperator::InplaceMod ||
        e->op == QSOperator::InplaceMul ||
        e->op == QSOperator::InplaceOr ||
        e->op == QSOperator::InplaceRightShift ||
        e->op == QSOperator::InplaceURightShift ||
        e->op == QSOperator::InplaceXor)
        _safe = false;

    return true;
}


/*
    RewriteSignalHandler performs two different types of rewrites, depending on what information
    is available.

    When the target object is known, the rewriter can be provided a list of parameter names (and an
    optional preconstructed parameter string), which allows us to:
        1. Check whether the parameters are used
        2. Rewrite with the parameters included in the rewrite
    When this information is not available, we do a more generic rewrite, and rely on the expression
    to perform a second rewrite with the parameter information (using createParameterString)
    once the target object is known.
*/
RewriteSignalHandler::RewriteSignalHandler()
    : _writer(0)
    , _code(0)
    , _position(0)
    , _parameterAccess(UnknownAccess)
    , _parameterCountForJS(0)
{
}

void RewriteSignalHandler::accept(AST::Node *node)
{
    AST::Node::acceptChild(node, this);
}

bool RewriteSignalHandler::visit(AST::StringLiteral *ast)
{
    rewriteStringLiteral(ast, _code, _position, _writer);
    return false;
}

//if we never make use of the signal parameters in our expression,
//there is no need to provide them
bool RewriteSignalHandler::visit(AST::IdentifierExpression *e)
{
    //optimization: don't need to compare strings if a parameter has already been marked as used.
    if (_parameterAccess == ParametersAccessed)
        return false;

    static const QString argumentsString = QStringLiteral("arguments");
    if (_parameterNames.contains(e->name) || e->name == argumentsString)
        _parameterAccess = ParametersAccessed;
    return false;
}

static inline QString msgUnnamedErrorString()
{
    return QCoreApplication::translate("QQmlRewrite", "Signal uses unnamed parameter followed by named parameter.");
}

static inline QString msgGlobalErrorString(const QString &p)
{
    return QCoreApplication::translate("QQmlRewrite", "Signal parameter \"%1\" hides global variable.").arg(p);
}

#define EXIT_ON_ERROR(error) \
{ \
    _error = error; \
    return QString(); \
}

//create a parameter string which can be inserted into a generic rewrite
QString RewriteSignalHandler::createParameterString(const QList<QByteArray> &parameterNameList,
                                                    const QStringHash<bool> &illegalNames)
{
    QList<QHashedString> hashedParameterNameList;
    for (int i = 0; i < parameterNameList.count(); ++i)
        hashedParameterNameList.append(QString::fromUtf8(parameterNameList.at(i).constData()));

    return createParameterString(hashedParameterNameList, illegalNames);
}

QString RewriteSignalHandler::createParameterString(const QList<QHashedString> &parameterNameList,
                                                    const QStringHash<bool> &illegalNames)
{
    QString parameters;
    bool unnamedParam = false;
    for (int i = 0; i < parameterNameList.count(); ++i) {
        const QHashedString &param = parameterNameList.at(i);
        if (param.isEmpty())
            unnamedParam = true;
        else if (unnamedParam)
            EXIT_ON_ERROR(msgUnnamedErrorString())
        else if (illegalNames.contains(param))
            EXIT_ON_ERROR(msgGlobalErrorString(param))
        ++_parameterCountForJS;
        parameters += param;
        if (i < parameterNameList.count()-1)
            parameters += QStringLiteral(",");
    }
    if (parameters.endsWith(QLatin1Char(',')))
        parameters.resize(parameters.length() - 1);
    return parameters;
}

/*
    If \a parameterString is provided, use \a parameterNameList to test whether the
    parameters are used in the body of the function
      * if unused, the rewrite will not include parameters, else
      * if used, the rewrite will use \a parameterString
    If \a parameterString is not provided, it is constructed from \a parameterNameList
    as needed.
*/
QString RewriteSignalHandler::operator()(QQmlJS::AST::Node *node, const QString &code, const QString &name,
                                         const QString &parameterString,
                                         const QList<QByteArray> &parameterNameList,
                                         const QStringHash<bool> &illegalNames)
{
    if (rewriteDump()) {
        qWarning() << "=============================================================";
        qWarning() << "Rewrote:";
        qWarning() << qPrintable(code);
    }

    bool hasParameterString = !parameterString.isEmpty();

    QQmlJS::AST::ExpressionNode *expression = node->expressionCast();
    QQmlJS::AST::Statement *statement = node->statementCast();
    if (!expression && !statement)
        return code;

    if (!parameterNameList.isEmpty()) {
        for (int i = 0; i < parameterNameList.count(); ++i) {
            QHashedString param(QString::fromUtf8(parameterNameList.at(i).constData()));
            _parameterNames.insert(param, i);
            if (!hasParameterString)
                _parameterNameList.append(param);
        }

        //this is set to Unaccessed here, and will be set to Accessed
        //if we detect that a parameter has been used
        _parameterAccess = ParametersUnaccessed;
    }

    TextWriter w;
    _writer = &w;
    _code = &code;

    _position = expression ? expression->firstSourceLocation().begin() : statement->firstSourceLocation().begin();
    accept(node);

    QString rewritten = code;
    w.write(&rewritten);

    QString parameters = (_parameterAccess == ParametersUnaccessed) ? QString()
                                                                    : hasParameterString ? parameterString
                                                                                         : createParameterString(_parameterNameList, illegalNames);
    rewritten = QStringLiteral("(function ") + name + QStringLiteral("(") + parameters + QStringLiteral(") { ") + rewritten + QStringLiteral(" })");

    if (rewriteDump()) {
        qWarning() << "To:";
        qWarning() << qPrintable(rewritten);
        qWarning() << "=============================================================";
    }

    return rewritten;
}

QString RewriteSignalHandler::operator()(const QString &code, const QString &name, bool *ok,
                                         const QList<QByteArray> &parameterNameList,
                                         const QStringHash<bool> &illegalNames)
{
    Engine engine;
    Lexer lexer(&engine);
    Parser parser(&engine);
    lexer.setCode(code, 0);
    parser.parseStatement();
    if (!parser.statement()) {
        if (ok) *ok = false;
        return QString();
    }
    if (ok) *ok = true;
    return operator()(parser.statement(), code, name, QString(), parameterNameList, illegalNames);
}

} // namespace QQmlRewrite

QT_END_NAMESPACE