summaryrefslogtreecommitdiff
path: root/src/libs/qmljs/parser/qmljsengine_p.h
blob: f9f5dfc79a687af26bd4bf2a5745e9235e59d23d (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
// Copyright (C) 2021 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#pragma once

//
//  W A R N I N G
//  -------------
//
// This file is not part of the Qt API.  It exists purely as an
// implementation detail.  This header file may change from version to
// version without notice, or even be removed.
//
// We mean it.
//

#include "qmljsglobal_p.h"
#include "qmljs/parser/qmljssourcelocation_p.h"

#include "qmljs/parser/qmljsmemorypool_p.h"

#include <QString>
#include <QSet>

#include <qmljs/qmljsconstants.h>
QT_QML_BEGIN_NAMESPACE

namespace QmlJS {

class Lexer;
class MemoryPool;

class QML_PARSER_EXPORT Directives {
public:
    virtual ~Directives() {}

    virtual void pragmaLibrary()
    {
    }

    virtual void importFile(const QString &jsfile, const QString &module, int line, int column)
    {
        Q_UNUSED(jsfile);
        Q_UNUSED(module);
        Q_UNUSED(line);
        Q_UNUSED(column);
    }

    virtual void importModule(const QString &uri, const QString &version, const QString &module, int line, int column)
    {
        Q_UNUSED(uri);
        Q_UNUSED(version);
        Q_UNUSED(module);
        Q_UNUSED(line);
        Q_UNUSED(column);
    }
};

class Engine
{
    Lexer *_lexer = nullptr;
    Directives *_directives = nullptr;
    MemoryPool _pool;
    QList<SourceLocation> _comments;
    QStringList _extraCode;
    QString _code;

public:
    void setCode(const QString &code) { _code = code; }
    const QString &code() const { return _code; }

    void addComment(int pos, int len, int line, int col)
    {
        if (len > 0)
            _comments.append(QmlJS::SourceLocation(pos, len, line, col));
    }

    const QList<SourceLocation> comments() const { return _comments; }

    Lexer *lexer() const { return _lexer; }
    void setLexer(Lexer *lexer) { _lexer = lexer; }

    Directives *directives() const { return _directives; }
    void setDirectives(Directives *directives) { _directives = directives; }

    MemoryPool *pool() { return &_pool; }
    const MemoryPool *pool() const { return &_pool; }

    QStringView midRef(int position, int size) { return QStringView{_code}.mid(position, size); }

    QStringView newStringRef(const QString &text)
    {
        _extraCode.append(text);
        return QStringView{_extraCode.last()};
    }

    QStringView newStringRef(const QChar *chars, int size)
    {
        return newStringRef(QString(chars, size));
    }
};

} // end of namespace QmlJS

QT_QML_END_NAMESPACE