forked from qt-creator/qt-creator
Since we also license under GPL-3.0 WITH Qt-GPL-exception-1.0,
this applies only to a hypothetical newer version of GPL, that doesn't
exist yet. If such a version emerges, we can still decide to relicense...
While at it, replace (deprecated) GPL-3.0 with more explicit GPL-3.0-only
Change was done by running
find . -type f -exec perl -pi -e "s/LicenseRef-Qt-Commercial OR GPL-3.0\+ OR GPL-3.0 WITH Qt-GPL-exception-1.0/LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0/g" {} \;
Change-Id: I5097e6ce8d10233993ee30d7e25120e2659eb10b
Reviewed-by: Eike Ziller <eike.ziller@qt.io>
321 lines
12 KiB
C++
321 lines
12 KiB
C++
// Copyright (C) 2016 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
|
|
|
#include "qmljshighlighter.h"
|
|
|
|
#include <QSet>
|
|
|
|
#include <utils/qtcassert.h>
|
|
|
|
using namespace QmlJS;
|
|
using namespace TextEditor;
|
|
|
|
namespace QmlJSEditor {
|
|
|
|
QmlJSHighlighter::QmlJSHighlighter(QTextDocument *parent)
|
|
: SyntaxHighlighter(parent),
|
|
m_qmlEnabled(true),
|
|
m_braceDepth(0),
|
|
m_foldingIndent(0),
|
|
m_inMultilineComment(false)
|
|
{
|
|
m_currentBlockParentheses.reserve(20);
|
|
setDefaultTextFormatCategories();
|
|
}
|
|
|
|
QmlJSHighlighter::~QmlJSHighlighter() = default;
|
|
|
|
bool QmlJSHighlighter::isQmlEnabled() const
|
|
{
|
|
return m_qmlEnabled;
|
|
}
|
|
|
|
void QmlJSHighlighter::setQmlEnabled(bool qmlEnabled)
|
|
{
|
|
m_qmlEnabled = qmlEnabled;
|
|
}
|
|
|
|
void QmlJSHighlighter::highlightBlock(const QString &text)
|
|
{
|
|
const QList<Token> tokens = m_scanner(text, onBlockStart());
|
|
|
|
int index = 0;
|
|
while (index < tokens.size()) {
|
|
const Token &token = tokens.at(index);
|
|
|
|
switch (token.kind) {
|
|
case Token::Keyword:
|
|
setFormat(token.offset, token.length, formatForCategory(C_KEYWORD));
|
|
break;
|
|
|
|
case Token::String:
|
|
setFormat(token.offset, token.length, formatForCategory(C_STRING));
|
|
break;
|
|
|
|
case Token::Comment:
|
|
if (m_inMultilineComment
|
|
&& QStringView(text).mid(token.end() - 2, 2) == QLatin1String("*/")) {
|
|
onClosingParenthesis(QLatin1Char('-'), token.end() - 1, index == tokens.size()-1);
|
|
m_inMultilineComment = false;
|
|
} else if (!m_inMultilineComment
|
|
&& (m_scanner.state() & Scanner::MultiLineMask) == Scanner::MultiLineComment
|
|
&& index == tokens.size() - 1) {
|
|
onOpeningParenthesis(QLatin1Char('+'), token.offset, index == 0);
|
|
m_inMultilineComment = true;
|
|
}
|
|
setFormat(token.offset, token.length, formatForCategory(C_COMMENT));
|
|
break;
|
|
|
|
case Token::RegExp:
|
|
setFormat(token.offset, token.length, formatForCategory(C_STRING));
|
|
break;
|
|
|
|
case Token::LeftParenthesis:
|
|
onOpeningParenthesis(QLatin1Char('('), token.offset, index == 0);
|
|
break;
|
|
|
|
case Token::RightParenthesis:
|
|
onClosingParenthesis(QLatin1Char(')'), token.offset, index == tokens.size()-1);
|
|
break;
|
|
|
|
case Token::LeftBrace:
|
|
onOpeningParenthesis(QLatin1Char('{'), token.offset, index == 0);
|
|
break;
|
|
|
|
case Token::RightBrace:
|
|
onClosingParenthesis(QLatin1Char('}'), token.offset, index == tokens.size()-1);
|
|
break;
|
|
|
|
case Token::LeftBracket:
|
|
onOpeningParenthesis(QLatin1Char('['), token.offset, index == 0);
|
|
break;
|
|
|
|
case Token::RightBracket:
|
|
onClosingParenthesis(QLatin1Char(']'), token.offset, index == tokens.size()-1);
|
|
break;
|
|
|
|
case Token::Identifier: {
|
|
if (!m_qmlEnabled)
|
|
break;
|
|
|
|
const QStringView spell = QStringView(text).mid(token.offset, token.length);
|
|
|
|
if (maybeQmlKeyword(spell)) {
|
|
// check the previous token
|
|
if (index == 0 || tokens.at(index - 1).isNot(Token::Dot)) {
|
|
if (index + 1 == tokens.size() || tokens.at(index + 1).isNot(Token::Colon)) {
|
|
setFormat(token.offset, token.length, formatForCategory(C_KEYWORD));
|
|
break;
|
|
}
|
|
}
|
|
if (QStringView(text).mid(token.offset, token.length) == QLatin1String("enum")) {
|
|
setFormat(token.offset, token.length, formatForCategory(C_KEYWORD));
|
|
break;
|
|
}
|
|
} else if (index > 0 && maybeQmlBuiltinType(spell)) {
|
|
const Token &previousToken = tokens.at(index - 1);
|
|
if (previousToken.is(Token::Identifier)
|
|
&& text.at(previousToken.offset) == QLatin1Char('p')
|
|
&& QStringView(text).mid(previousToken.offset, previousToken.length)
|
|
== QLatin1String("property")) {
|
|
setFormat(token.offset, token.length, formatForCategory(C_KEYWORD));
|
|
break;
|
|
}
|
|
} else if (index == 1) {
|
|
const Token &previousToken = tokens.at(0);
|
|
if (previousToken.is(Token::Identifier)
|
|
&& text.at(previousToken.offset) == QLatin1Char('e')
|
|
&& QStringView(text).mid(previousToken.offset, previousToken.length)
|
|
== QLatin1String("enum")) {
|
|
setFormat(token.offset, token.length, formatForCategory(C_ENUMERATION));
|
|
break;
|
|
}
|
|
}
|
|
} break;
|
|
|
|
case Token::Delimiter:
|
|
break;
|
|
|
|
default:
|
|
break;
|
|
} // end swtich
|
|
|
|
++index;
|
|
}
|
|
|
|
int previousTokenEnd = 0;
|
|
for (const auto &token : tokens) {
|
|
setFormat(previousTokenEnd, token.begin() - previousTokenEnd, formatForCategory(C_VISUAL_WHITESPACE));
|
|
|
|
switch (token.kind) {
|
|
case Token::Comment:
|
|
case Token::String:
|
|
case Token::RegExp: {
|
|
int i = token.begin(), e = token.end();
|
|
while (i < e) {
|
|
const QChar ch = text.at(i);
|
|
if (ch.isSpace()) {
|
|
const int start = i;
|
|
do {
|
|
++i;
|
|
} while (i < e && text.at(i).isSpace());
|
|
setFormat(start, i - start, formatForCategory(C_VISUAL_WHITESPACE));
|
|
} else {
|
|
++i;
|
|
}
|
|
}
|
|
} break;
|
|
|
|
default:
|
|
break;
|
|
} // end of switch
|
|
|
|
previousTokenEnd = token.end();
|
|
}
|
|
|
|
setFormat(previousTokenEnd, text.length() - previousTokenEnd, formatForCategory(C_VISUAL_WHITESPACE));
|
|
|
|
setCurrentBlockState(m_scanner.state());
|
|
onBlockEnd(m_scanner.state());
|
|
}
|
|
|
|
bool QmlJSHighlighter::maybeQmlKeyword(QStringView text) const
|
|
{
|
|
if (text.isEmpty())
|
|
return false;
|
|
|
|
const QChar ch = text.at(0);
|
|
if (ch == QLatin1Char('p') && text == QLatin1String("property"))
|
|
return true;
|
|
else if (ch == QLatin1Char('a') && text == QLatin1String("alias"))
|
|
return true;
|
|
else if (ch == QLatin1Char('c') && text == QLatin1String("component"))
|
|
return true;
|
|
else if (ch == QLatin1Char('s') && text == QLatin1String("signal"))
|
|
return true;
|
|
else if (ch == QLatin1Char('r') && (text == QLatin1String("readonly") || text == QLatin1String("required")))
|
|
return true;
|
|
else if (ch == QLatin1Char('i') && text == QLatin1String("import"))
|
|
return true;
|
|
else if (ch == QLatin1Char('o') && text == QLatin1String("on"))
|
|
return true;
|
|
else if (ch == QLatin1Char('e') && text == QLatin1String("enum"))
|
|
return true;
|
|
else
|
|
return false;
|
|
}
|
|
|
|
bool QmlJSHighlighter::maybeQmlBuiltinType(QStringView text) const
|
|
{
|
|
if (text.isEmpty())
|
|
return false;
|
|
|
|
const QChar ch = text.at(0);
|
|
|
|
if (ch == QLatin1Char('a') && text == QLatin1String("action"))
|
|
return true;
|
|
else if (ch == QLatin1Char('b') && text == QLatin1String("bool"))
|
|
return true;
|
|
else if (ch == QLatin1Char('c') && text == QLatin1String("color"))
|
|
return true;
|
|
else if (ch == QLatin1Char('d') && text == QLatin1String("date"))
|
|
return true;
|
|
else if (ch == QLatin1Char('d') && text == QLatin1String("double"))
|
|
return true;
|
|
else if (ch == QLatin1Char('e') && text == QLatin1String("enumeration"))
|
|
return true;
|
|
else if (ch == QLatin1Char('f') && text == QLatin1String("font"))
|
|
return true;
|
|
else if (ch == QLatin1Char('i') && text == QLatin1String("int"))
|
|
return true;
|
|
else if (ch == QLatin1Char('l') && text == QLatin1String("list"))
|
|
return true;
|
|
else if (ch == QLatin1Char('m') && text == QLatin1String("matrix4x4"))
|
|
return true;
|
|
else if (ch == QLatin1Char('p') && text == QLatin1String("point"))
|
|
return true;
|
|
else if (ch == QLatin1Char('q') && text == QLatin1String("quaternion"))
|
|
return true;
|
|
else if (ch == QLatin1Char('r') && text == QLatin1String("real"))
|
|
return true;
|
|
else if (ch == QLatin1Char('r') && text == QLatin1String("rect"))
|
|
return true;
|
|
else if (ch == QLatin1Char('s') && text == QLatin1String("size"))
|
|
return true;
|
|
else if (ch == QLatin1Char('s') && text == QLatin1String("string"))
|
|
return true;
|
|
else if (ch == QLatin1Char('t') && text == QLatin1String("time"))
|
|
return true;
|
|
else if (ch == QLatin1Char('u') && text == QLatin1String("url"))
|
|
return true;
|
|
else if (ch == QLatin1Char('v') && text == QLatin1String("variant"))
|
|
return true;
|
|
else if (ch == QLatin1Char('v') && text == QLatin1String("var"))
|
|
return true;
|
|
else if (ch == QLatin1Char('v') && text == QLatin1String("vector2d"))
|
|
return true;
|
|
else if (ch == QLatin1Char('v') && text == QLatin1String("vector3d"))
|
|
return true;
|
|
else if (ch == QLatin1Char('v') && text == QLatin1String("vector4d"))
|
|
return true;
|
|
else
|
|
return false;
|
|
}
|
|
|
|
int QmlJSHighlighter::onBlockStart()
|
|
{
|
|
m_currentBlockParentheses.clear();
|
|
m_braceDepth = 0;
|
|
m_foldingIndent = 0;
|
|
m_inMultilineComment = false;
|
|
if (TextBlockUserData *userData = TextDocumentLayout::textUserData(currentBlock())) {
|
|
userData->setFoldingIndent(0);
|
|
userData->setFoldingStartIncluded(false);
|
|
userData->setFoldingEndIncluded(false);
|
|
}
|
|
|
|
int state = 0;
|
|
int previousState = previousBlockState();
|
|
if (previousState != -1) {
|
|
state = previousState & 0xff;
|
|
m_braceDepth = (previousState >> 8);
|
|
m_inMultilineComment = ((state & Scanner::MultiLineMask) == Scanner::MultiLineComment);
|
|
}
|
|
m_foldingIndent = m_braceDepth;
|
|
|
|
return state;
|
|
}
|
|
|
|
void QmlJSHighlighter::onBlockEnd(int state)
|
|
{
|
|
setCurrentBlockState((m_braceDepth << 8) | state);
|
|
TextDocumentLayout::setParentheses(currentBlock(), m_currentBlockParentheses);
|
|
TextDocumentLayout::setFoldingIndent(currentBlock(), m_foldingIndent);
|
|
}
|
|
|
|
void QmlJSHighlighter::onOpeningParenthesis(QChar parenthesis, int pos, bool atStart)
|
|
{
|
|
if (parenthesis == QLatin1Char('{') || parenthesis == QLatin1Char('[') || parenthesis == QLatin1Char('+')) {
|
|
++m_braceDepth;
|
|
// if a folding block opens at the beginning of a line, treat the entire line
|
|
// as if it were inside the folding block
|
|
if (atStart)
|
|
TextDocumentLayout::userData(currentBlock())->setFoldingStartIncluded(true);
|
|
}
|
|
m_currentBlockParentheses.push_back(Parenthesis(Parenthesis::Opened, parenthesis, pos));
|
|
}
|
|
|
|
void QmlJSHighlighter::onClosingParenthesis(QChar parenthesis, int pos, bool atEnd)
|
|
{
|
|
if (parenthesis == QLatin1Char('}') || parenthesis == QLatin1Char(']') || parenthesis == QLatin1Char('-')) {
|
|
--m_braceDepth;
|
|
if (atEnd)
|
|
TextDocumentLayout::userData(currentBlock())->setFoldingEndIncluded(true);
|
|
else
|
|
m_foldingIndent = qMin(m_braceDepth, m_foldingIndent); // folding indent is the minimum brace depth of a block
|
|
}
|
|
m_currentBlockParentheses.push_back(Parenthesis(Parenthesis::Closed, parenthesis, pos));
|
|
}
|
|
|
|
} // namespace QmlJSEditor
|