Files
qt-creator/src/plugins/cppeditor/cpphighlighter.cpp

437 lines
16 KiB
C++
Raw Normal View History

/****************************************************************************
2008-12-02 12:01:29 +01:00
**
** Copyright (C) 2015 The Qt Company Ltd.
** Contact: http://www.qt.io/licensing
2008-12-02 12:01:29 +01:00
**
** This file is part of Qt Creator.
2008-12-02 12:01:29 +01:00
**
** 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 The Qt Company. For licensing terms and
** conditions see http://www.qt.io/terms-conditions. For further information
** use the contact form at http://www.qt.io/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 or version 3 as published by the Free
** Software Foundation and appearing in the file LICENSE.LGPLv21 and
** LICENSE.LGPLv3 included in the packaging of this file. Please review the
** following information to ensure the GNU Lesser General Public License
** requirements will be met: https://www.gnu.org/licenses/lgpl.html and
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
**
** In addition, as a special exception, The Qt Company gives you certain additional
** rights. These rights are described in The Qt Company LGPL Exception
2010-12-17 16:01:08 +01:00
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
**
****************************************************************************/
2008-12-02 15:08:31 +01:00
2008-12-02 12:01:29 +01:00
#include "cpphighlighter.h"
#include "cppeditorenums.h"
2008-12-02 12:01:29 +01:00
#include <cpptools/cppdoxygen.h>
#include <cpptools/cpptoolsreuse.h>
#include <texteditor/textdocumentlayout.h>
2008-12-02 12:01:29 +01:00
#include <cplusplus/SimpleLexer.h>
#include <cplusplus/Lexer.h>
#include <QTextDocument>
2008-12-02 12:01:29 +01:00
using namespace CppEditor::Internal;
using namespace TextEditor;
using namespace CPlusPlus;
CppHighlighter::CppHighlighter(QTextDocument *document) :
SyntaxHighlighter(document)
2008-12-02 12:01:29 +01:00
{
static QVector<TextStyle> categories;
if (categories.isEmpty()) {
categories << C_NUMBER
<< C_STRING
<< C_TYPE
<< C_KEYWORD
<< C_PRIMITIVE_TYPE
<< C_OPERATOR
<< C_PREPROCESSOR
<< C_LABEL
<< C_COMMENT
<< C_DOXYGEN_COMMENT
<< C_DOXYGEN_TAG
<< C_VISUAL_WHITESPACE;
}
setTextFormatCategories(categories);
2008-12-02 12:01:29 +01:00
}
void CppHighlighter::highlightBlock(const QString &text)
2008-12-02 12:01:29 +01:00
{
const int previousBlockState_ = previousBlockState();
int lexerState = 0, initialBraceDepth = 0;
if (previousBlockState_ != -1) {
lexerState = previousBlockState_ & 0xff;
initialBraceDepth = previousBlockState_ >> 8;
2008-12-02 12:01:29 +01:00
}
int braceDepth = initialBraceDepth;
// FIXME: Check defaults or get from document.
LanguageFeatures features;
features.cxx11Enabled = true;
features.c99Enabled = true;
2008-12-02 12:01:29 +01:00
SimpleLexer tokenize;
tokenize.setLanguageFeatures(features);
2008-12-02 12:01:29 +01:00
int initialLexerState = lexerState;
const Tokens tokens = tokenize(text, initialLexerState);
lexerState = tokenize.state(); // refresh lexer state
2008-12-02 12:01:29 +01:00
initialLexerState &= ~0x80; // discard newline expected bit
int foldingIndent = initialBraceDepth;
if (TextBlockUserData *userData = TextDocumentLayout::testUserData(currentBlock())) {
userData->setFoldingIndent(0);
userData->setFoldingStartIncluded(false);
userData->setFoldingEndIncluded(false);
}
2008-12-02 12:01:29 +01:00
if (tokens.isEmpty()) {
setCurrentBlockState((braceDepth << 8) | lexerState);
TextDocumentLayout::clearParentheses(currentBlock());
if (text.length()) {// the empty line can still contain whitespace
if (initialLexerState == T_COMMENT)
highlightLine(text, 0, text.length(), formatForCategory(CppCommentFormat));
else if (initialLexerState == T_DOXY_COMMENT)
highlightLine(text, 0, text.length(), formatForCategory(CppDoxygenCommentFormat));
else
setFormat(0, text.length(), formatForCategory(CppVisualWhitespace));
}
TextDocumentLayout::setFoldingIndent(currentBlock(), foldingIndent);
2008-12-02 12:01:29 +01:00
return;
}
const unsigned firstNonSpace = tokens.first().utf16charsBegin();
2008-12-02 12:01:29 +01:00
Parentheses parentheses;
parentheses.reserve(5);
2008-12-02 12:01:29 +01:00
bool expectPreprocessorKeyword = false;
bool onlyHighlightComments = false;
2008-12-02 12:01:29 +01:00
for (int i = 0; i < tokens.size(); ++i) {
2010-06-29 17:57:15 +02:00
const Token &tk = tokens.at(i);
2008-12-02 12:01:29 +01:00
2010-06-29 17:57:15 +02:00
unsigned previousTokenEnd = 0;
2008-12-02 12:01:29 +01:00
if (i != 0) {
// mark the whitespaces
previousTokenEnd = tokens.at(i - 1).utf16charsBegin() +
tokens.at(i - 1).utf16chars();
2008-12-02 12:01:29 +01:00
}
if (previousTokenEnd != tk.utf16charsBegin()) {
setFormat(previousTokenEnd,
tk.utf16charsBegin() - previousTokenEnd,
formatForCategory(CppVisualWhitespace));
}
2008-12-02 12:01:29 +01:00
if (tk.is(T_LPAREN) || tk.is(T_LBRACE) || tk.is(T_LBRACKET)) {
const QChar c = text.at(tk.utf16charsBegin());
parentheses.append(Parenthesis(Parenthesis::Opened, c, tk.utf16charsBegin()));
if (tk.is(T_LBRACE)) {
2008-12-02 12:01:29 +01:00
++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 (tk.utf16charsBegin() == firstNonSpace) {
++foldingIndent;
TextDocumentLayout::userData(currentBlock())->setFoldingStartIncluded(true);
}
}
2008-12-02 12:01:29 +01:00
} else if (tk.is(T_RPAREN) || tk.is(T_RBRACE) || tk.is(T_RBRACKET)) {
const QChar c = text.at(tk.utf16charsBegin());
parentheses.append(Parenthesis(Parenthesis::Closed, c, tk.utf16charsBegin()));
if (tk.is(T_RBRACE)) {
--braceDepth;
if (braceDepth < foldingIndent) {
// unless we are at the end of the block, we reduce the folding indent
if (i == tokens.size()-1 || tokens.at(i+1).is(T_SEMICOLON))
TextDocumentLayout::userData(currentBlock())->setFoldingEndIncluded(true);
else
foldingIndent = qMin(braceDepth, foldingIndent);
}
}
2008-12-02 12:01:29 +01:00
}
bool highlightCurrentWordAsPreprocessor = expectPreprocessorKeyword;
2009-02-20 11:52:27 +01:00
if (expectPreprocessorKeyword)
expectPreprocessorKeyword = false;
if (onlyHighlightComments && !tk.isComment())
continue;
2008-12-02 12:01:29 +01:00
if (i == 0 && tk.is(T_POUND)) {
highlightLine(text, tk.utf16charsBegin(), tk.utf16chars(),
formatForCategory(CppPreprocessorFormat));
expectPreprocessorKeyword = true;
} else if (highlightCurrentWordAsPreprocessor
&& (tk.isKeyword() || tk.is(T_IDENTIFIER))
&& isPPKeyword(text.midRef(tk.utf16charsBegin(), tk.utf16chars()))) {
setFormat(tk.utf16charsBegin(), tk.utf16chars(), formatForCategory(CppPreprocessorFormat));
const QStringRef ppKeyword = text.midRef(tk.utf16charsBegin(), tk.utf16chars());
if (ppKeyword == QLatin1String("error")
|| ppKeyword == QLatin1String("warning")
|| ppKeyword == QLatin1String("pragma")) {
onlyHighlightComments = true;
}
2009-02-20 11:52:27 +01:00
} else if (tk.is(T_NUMERIC_LITERAL)) {
setFormat(tk.utf16charsBegin(), tk.utf16chars(), formatForCategory(CppNumberFormat));
} else if (tk.isStringLiteral() || tk.isCharLiteral()) {
highlightLine(text, tk.utf16charsBegin(), tk.utf16chars(), formatForCategory(CppStringFormat));
} else if (tk.isComment()) {
const int startPosition = initialLexerState ? previousTokenEnd : tk.utf16charsBegin();
if (tk.is(T_COMMENT) || tk.is(T_CPP_COMMENT)) {
highlightLine(text, startPosition, tk.utf16charsEnd() - startPosition,
formatForCategory(CppCommentFormat));
}
2009-02-20 11:52:27 +01:00
else // a doxygen comment
highlightDoxygenComment(text, startPosition, tk.utf16charsEnd() - startPosition);
2009-02-20 11:52:27 +01:00
2008-12-02 12:01:29 +01:00
// we need to insert a close comment parenthesis, if
// - the line starts in a C Comment (initalState != 0)
// - the first token of the line is a T_COMMENT (i == 0 && tk.is(T_COMMENT))
// - is not a continuation line (tokens.size() > 1 || !state)
if (initialLexerState && i == 0 && (tokens.size() > 1 || !lexerState)) {
2008-12-02 12:01:29 +01:00
--braceDepth;
// unless we are at the end of the block, we reduce the folding indent
if (i == tokens.size()-1)
TextDocumentLayout::userData(currentBlock())->setFoldingEndIncluded(true);
else
foldingIndent = qMin(braceDepth, foldingIndent);
const int tokenEnd = tk.utf16charsBegin() + tk.utf16chars() - 1;
2008-12-02 12:01:29 +01:00
parentheses.append(Parenthesis(Parenthesis::Closed, QLatin1Char('-'), tokenEnd));
// clear the initial state.
initialLexerState = 0;
2008-12-02 12:01:29 +01:00
}
2009-02-20 11:52:27 +01:00
} else if (tk.isKeyword()
|| CppTools::isQtKeyword(text.midRef(tk.utf16charsBegin(), tk.utf16chars()))
|| tk.isObjCAtKeyword()) {
setFormat(tk.utf16charsBegin(), tk.utf16chars(), formatForCategory(CppKeywordFormat));
} else if (tk.isPrimitiveType()) {
setFormat(tk.utf16charsBegin(), tk.utf16chars(),
formatForCategory(CppPrimitiveTypeFormat));
} else if (tk.isOperator()) {
setFormat(tk.utf16charsBegin(), tk.utf16chars(), formatForCategory(CppOperatorFormat));
} else if (i == 0 && tokens.size() > 1 && tk.is(T_IDENTIFIER) && tokens.at(1).is(T_COLON)) {
setFormat(tk.utf16charsBegin(), tk.utf16chars(), formatForCategory(CppLabelFormat));
} else if (tk.is(T_IDENTIFIER)) {
highlightWord(text.midRef(tk.utf16charsBegin(), tk.utf16chars()), tk.utf16charsBegin(),
tk.utf16chars());
}
2008-12-02 12:01:29 +01:00
}
// mark the trailing white spaces
const int lastTokenEnd = tokens.last().utf16charsEnd();
if (text.length() > lastTokenEnd)
highlightLine(text, lastTokenEnd, text.length() - lastTokenEnd, formatForCategory(CppVisualWhitespace));
2008-12-02 12:01:29 +01:00
if (!initialLexerState && lexerState && !tokens.isEmpty()) {
const Token &lastToken = tokens.last();
if (lastToken.is(T_COMMENT) || lastToken.is(T_DOXY_COMMENT)) {
parentheses.append(Parenthesis(Parenthesis::Opened, QLatin1Char('+'),
lastToken.utf16charsBegin()));
++braceDepth;
}
2008-12-02 12:01:29 +01:00
}
TextDocumentLayout::setParentheses(currentBlock(), parentheses);
2008-12-02 12:01:29 +01:00
// if the block is ifdefed out, we only store the parentheses, but
// do not adjust the brace depth.
if (TextDocumentLayout::ifdefedOut(currentBlock())) {
braceDepth = initialBraceDepth;
foldingIndent = initialBraceDepth;
}
TextDocumentLayout::setFoldingIndent(currentBlock(), foldingIndent);
// optimization: if only the brace depth changes, we adjust subsequent blocks
// to have QSyntaxHighlighter stop the rehighlighting
int currentState = currentBlockState();
if (currentState != -1) {
int oldState = currentState & 0xff;
int oldBraceDepth = currentState >> 8;
if (oldState == tokenize.state() && oldBraceDepth != braceDepth) {
TextDocumentLayout::FoldValidator foldValidor;
foldValidor.setup(qobject_cast<TextDocumentLayout *>(document()->documentLayout()));
int delta = braceDepth - oldBraceDepth;
QTextBlock block = currentBlock().next();
while (block.isValid() && block.userState() != -1) {
TextDocumentLayout::changeBraceDepth(block, delta);
TextDocumentLayout::changeFoldingIndent(block, delta);
foldValidor.process(block);
block = block.next();
}
foldValidor.finalize();
}
}
2008-12-02 12:01:29 +01:00
setCurrentBlockState((braceDepth << 8) | tokenize.state());
}
bool CppHighlighter::isPPKeyword(const QStringRef &text) const
2008-12-02 12:01:29 +01:00
{
switch (text.length())
{
case 2:
if (text.at(0) == QLatin1Char('i') && text.at(1) == QLatin1Char('f'))
2008-12-02 12:01:29 +01:00
return true;
break;
case 4:
if (text.at(0) == QLatin1Char('e')
&& (text == QLatin1String("elif") || text == QLatin1String("else")))
2008-12-02 12:01:29 +01:00
return true;
break;
case 5:
switch (text.at(0).toLatin1()) {
case 'i':
if (text == QLatin1String("ifdef"))
return true;
break;
case 'u':
if (text == QLatin1String("undef"))
return true;
break;
case 'e':
if (text == QLatin1String("endif") || text == QLatin1String("error"))
return true;
break;
}
2008-12-02 12:01:29 +01:00
break;
case 6:
switch (text.at(0).toLatin1()) {
case 'i':
if (text == QLatin1String("ifndef") || text == QLatin1String("import"))
return true;
break;
case 'd':
if (text == QLatin1String("define"))
return true;
break;
case 'p':
if (text == QLatin1String("pragma"))
return true;
break;
}
2008-12-02 12:01:29 +01:00
break;
case 7:
switch (text.at(0).toLatin1()) {
case 'i':
if (text == QLatin1String("include"))
return true;
break;
case 'w':
if (text == QLatin1String("warning"))
return true;
break;
}
2008-12-02 12:01:29 +01:00
break;
case 12:
if (text.at(0) == QLatin1Char('i') && text == QLatin1String("include_next"))
2008-12-02 12:01:29 +01:00
return true;
break;
default:
break;
}
return false;
}
void CppHighlighter::highlightLine(const QString &text, int position, int length,
const QTextCharFormat &format)
{
QTextCharFormat visualSpaceFormat = formatForCategory(CppVisualWhitespace);
visualSpaceFormat.setBackground(format.background());
const int end = position + length;
int index = position;
while (index != end) {
const bool isSpace = text.at(index).isSpace();
const int start = index;
do { ++index; }
while (index != end && text.at(index).isSpace() == isSpace);
const int tokenLength = index - start;
if (isSpace)
setFormat(start, tokenLength, visualSpaceFormat);
else if (format.isValid())
setFormat(start, tokenLength, format);
}
}
void CppHighlighter::highlightWord(QStringRef word, int position, int length)
2008-12-02 12:01:29 +01:00
{
// try to highlight Qt 'identifiers' like QObject and Q_PROPERTY
2010-05-25 14:53:21 +02:00
if (word.length() > 2 && word.at(0) == QLatin1Char('Q')) {
if (word.at(1) == QLatin1Char('_') // Q_
|| (word.at(1) == QLatin1Char('T') && word.at(2) == QLatin1Char('_'))) { // QT_
for (int i = 1; i < word.length(); ++i) {
const QChar &ch = word.at(i);
if (!(ch.isUpper() || ch == QLatin1Char('_')))
return;
}
2010-05-25 14:53:21 +02:00
setFormat(position, length, formatForCategory(CppTypeFormat));
}
2008-12-02 12:01:29 +01:00
}
}
2009-02-20 11:52:27 +01:00
2009-02-20 11:53:32 +01:00
void CppHighlighter::highlightDoxygenComment(const QString &text, int position, int)
2009-02-20 11:52:27 +01:00
{
int initial = position;
const QChar *uc = text.unicode();
const QChar *it = uc + position;
const QTextCharFormat &format = formatForCategory(CppDoxygenCommentFormat);
const QTextCharFormat &kwFormat = formatForCategory(CppDoxygenTagFormat);
2009-02-20 11:52:27 +01:00
while (!it->isNull()) {
2009-02-20 11:52:27 +01:00
if (it->unicode() == QLatin1Char('\\') ||
it->unicode() == QLatin1Char('@')) {
++it;
const QChar *start = it;
while (CppTools::isValidAsciiIdentifierChar(*it))
2009-02-20 11:52:27 +01:00
++it;
2009-02-20 12:55:01 +01:00
int k = CppTools::classifyDoxygenTag(start, it - start);
if (k != CppTools::T_DOXY_IDENTIFIER) {
highlightLine(text, initial, start - uc - initial, format);
2009-02-20 11:52:27 +01:00
setFormat(start - uc - 1, it - start + 1, kwFormat);
initial = it - uc;
}
} else
++it;
}
highlightLine(text, initial, it - uc - initial, format);
2009-02-20 11:52:27 +01:00
}