2015-07-23 13:01:02 +02:00
|
|
|
/****************************************************************************
|
|
|
|
|
**
|
2016-01-15 14:57:40 +01:00
|
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
2015-07-23 13:01:02 +02:00
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator.
|
|
|
|
|
**
|
|
|
|
|
** 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
|
2016-01-15 14:57:40 +01:00
|
|
|
** a written agreement between you and The Qt Company. For licensing terms
|
|
|
|
|
** and conditions see https://www.qt.io/terms-conditions. For further
|
|
|
|
|
** information use the contact form at https://www.qt.io/contact-us.
|
2015-07-23 13:01:02 +02:00
|
|
|
**
|
2016-01-15 14:57:40 +01:00
|
|
|
** GNU General Public License Usage
|
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
|
|
|
** General Public License version 3 as published by the Free Software
|
|
|
|
|
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
|
|
|
|
|
** included in the packaging of this file. Please review the following
|
|
|
|
|
** information to ensure the GNU General Public License requirements will
|
|
|
|
|
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
|
2015-07-23 13:01:02 +02:00
|
|
|
**
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
2015-11-30 09:43:50 +01:00
|
|
|
#include "clangactivationsequencecontextprocessor.h"
|
2015-07-23 13:01:02 +02:00
|
|
|
|
2015-11-30 09:43:50 +01:00
|
|
|
#include "clangactivationsequenceprocessor.h"
|
2015-07-23 13:01:02 +02:00
|
|
|
|
|
|
|
|
#include <cplusplus/BackwardsScanner.h>
|
|
|
|
|
#include <cplusplus/ExpressionUnderCursor.h>
|
|
|
|
|
#include <cplusplus/SimpleLexer.h>
|
|
|
|
|
|
|
|
|
|
#include <QRegExp>
|
|
|
|
|
#include <QTextDocument>
|
|
|
|
|
|
|
|
|
|
namespace ClangCodeModel {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
|
|
|
|
ActivationSequenceContextProcessor::ActivationSequenceContextProcessor(const ClangCompletionAssistInterface *assistInterface)
|
|
|
|
|
: m_textCursor(assistInterface->textDocument()),
|
|
|
|
|
m_assistInterface(assistInterface),
|
|
|
|
|
m_positionInDocument(assistInterface->position()),
|
2015-07-23 16:06:48 +02:00
|
|
|
m_startOfNamePosition(m_positionInDocument),
|
|
|
|
|
m_operatorStartPosition(m_positionInDocument)
|
2015-07-23 13:01:02 +02:00
|
|
|
|
|
|
|
|
{
|
|
|
|
|
m_textCursor.setPosition(m_positionInDocument);
|
|
|
|
|
|
|
|
|
|
process();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
CPlusPlus::Kind ActivationSequenceContextProcessor::completionKind() const
|
|
|
|
|
{
|
|
|
|
|
return m_completionKind;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const QTextCursor &ActivationSequenceContextProcessor::textCursor_forTestOnly() const
|
|
|
|
|
{
|
|
|
|
|
return m_textCursor;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-23 16:06:48 +02:00
|
|
|
int ActivationSequenceContextProcessor::startOfNamePosition() const
|
2015-07-23 13:01:02 +02:00
|
|
|
{
|
2015-07-23 16:06:48 +02:00
|
|
|
return m_startOfNamePosition;
|
2015-07-23 13:01:02 +02:00
|
|
|
}
|
|
|
|
|
|
2015-07-23 16:06:48 +02:00
|
|
|
int ActivationSequenceContextProcessor::operatorStartPosition() const
|
2015-07-23 13:01:02 +02:00
|
|
|
{
|
2015-07-23 16:06:48 +02:00
|
|
|
return m_operatorStartPosition;
|
2015-07-23 13:01:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ActivationSequenceContextProcessor::process()
|
|
|
|
|
{
|
2015-07-23 16:06:48 +02:00
|
|
|
goBackToStartOfName();
|
2015-07-23 13:01:02 +02:00
|
|
|
processActivationSequence();
|
|
|
|
|
|
|
|
|
|
if (m_completionKind != CPlusPlus::T_EOF_SYMBOL) {
|
|
|
|
|
processStringLiteral();
|
|
|
|
|
processComma();
|
|
|
|
|
generateTokens();
|
|
|
|
|
processDoxygenComment();
|
|
|
|
|
processComment();
|
|
|
|
|
processInclude();
|
|
|
|
|
processSlashOutsideOfAString();
|
|
|
|
|
processLeftParen();
|
|
|
|
|
processPreprocessorInclude();
|
|
|
|
|
}
|
2015-07-23 16:06:48 +02:00
|
|
|
|
|
|
|
|
resetPositionsForEOFCompletionKind();
|
2015-07-23 13:01:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ActivationSequenceContextProcessor::processActivationSequence()
|
|
|
|
|
{
|
2015-07-24 15:35:20 +02:00
|
|
|
const int nonSpacePosition = skipPrecedingWhitespace(m_assistInterface, m_startOfNamePosition);
|
2015-07-23 16:06:48 +02:00
|
|
|
const auto activationSequence = m_assistInterface->textAt(nonSpacePosition - 3, 3);
|
2015-07-23 13:01:02 +02:00
|
|
|
ActivationSequenceProcessor activationSequenceProcessor(activationSequence,
|
2015-07-23 16:06:48 +02:00
|
|
|
nonSpacePosition,
|
2015-07-23 13:01:02 +02:00
|
|
|
true);
|
|
|
|
|
|
|
|
|
|
m_completionKind = activationSequenceProcessor.completionKind();
|
2015-07-23 16:06:48 +02:00
|
|
|
m_operatorStartPosition = activationSequenceProcessor.operatorStartPosition();
|
2015-07-23 13:01:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ActivationSequenceContextProcessor::processStringLiteral()
|
|
|
|
|
{
|
|
|
|
|
if (m_completionKind == CPlusPlus::T_STRING_LITERAL) {
|
|
|
|
|
QTextCursor selectionTextCursor = m_textCursor;
|
|
|
|
|
selectionTextCursor.movePosition(QTextCursor::StartOfLine, QTextCursor::KeepAnchor);
|
|
|
|
|
QString selection = selectionTextCursor.selectedText();
|
|
|
|
|
if (selection.indexOf(QLatin1Char('"')) < selection.length() - 1)
|
|
|
|
|
m_completionKind = CPlusPlus::T_EOF_SYMBOL;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ActivationSequenceContextProcessor::processComma()
|
|
|
|
|
{
|
|
|
|
|
if (m_completionKind == CPlusPlus::T_COMMA) {
|
|
|
|
|
CPlusPlus::ExpressionUnderCursor expressionUnderCursor(m_assistInterface->languageFeatures());
|
|
|
|
|
if (expressionUnderCursor.startOfFunctionCall(m_textCursor) == -1)
|
|
|
|
|
m_completionKind = CPlusPlus::T_EOF_SYMBOL;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ActivationSequenceContextProcessor::generateTokens()
|
|
|
|
|
{
|
|
|
|
|
CPlusPlus::SimpleLexer tokenize;
|
|
|
|
|
tokenize.setLanguageFeatures(m_assistInterface->languageFeatures());
|
|
|
|
|
tokenize.setSkipComments(false);
|
|
|
|
|
auto state = CPlusPlus::BackwardsScanner::previousBlockState(m_textCursor.block());
|
|
|
|
|
m_tokens = tokenize(m_textCursor.block().text(), state);
|
|
|
|
|
int leftOfCursorTokenIndex = std::max(0, m_textCursor.positionInBlock() - 1);
|
|
|
|
|
m_tokenIndex= CPlusPlus::SimpleLexer::tokenBefore(m_tokens, leftOfCursorTokenIndex); // get the token at the left of the cursor
|
|
|
|
|
if (m_tokenIndex > -1)
|
|
|
|
|
m_token = m_tokens.at(m_tokenIndex);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ActivationSequenceContextProcessor::processDoxygenComment()
|
|
|
|
|
{
|
|
|
|
|
if (m_completionKind == CPlusPlus::T_DOXY_COMMENT
|
|
|
|
|
&& !(m_token.is(CPlusPlus::T_DOXY_COMMENT)
|
|
|
|
|
|| m_token.is(CPlusPlus::T_CPP_DOXY_COMMENT)))
|
|
|
|
|
m_completionKind = CPlusPlus::T_EOF_SYMBOL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ActivationSequenceContextProcessor::processComment()
|
|
|
|
|
{
|
|
|
|
|
if (m_token.is(CPlusPlus::T_COMMENT) || m_token.is(CPlusPlus::T_CPP_COMMENT))
|
|
|
|
|
m_completionKind = CPlusPlus::T_EOF_SYMBOL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ActivationSequenceContextProcessor::processInclude()
|
|
|
|
|
{
|
|
|
|
|
if (m_token.isLiteral() && !isCompletionKindStringLiteralOrSlash())
|
|
|
|
|
m_completionKind = CPlusPlus::T_EOF_SYMBOL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ActivationSequenceContextProcessor::processSlashOutsideOfAString()
|
|
|
|
|
{
|
|
|
|
|
if (m_completionKind ==CPlusPlus::T_SLASH
|
|
|
|
|
&& (m_token.isNot(CPlusPlus::T_STRING_LITERAL)
|
|
|
|
|
&& m_token.isNot(CPlusPlus::T_ANGLE_STRING_LITERAL)))
|
|
|
|
|
m_completionKind = CPlusPlus::T_EOF_SYMBOL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ActivationSequenceContextProcessor::processLeftParen()
|
|
|
|
|
{
|
|
|
|
|
if (m_completionKind == CPlusPlus::T_LPAREN) {
|
|
|
|
|
if (m_tokenIndex > 0) {
|
|
|
|
|
// look at the token at the left of T_LPAREN
|
|
|
|
|
const CPlusPlus::Token &previousToken = m_tokens.at(m_tokenIndex - 1);
|
|
|
|
|
switch (previousToken.kind()) {
|
|
|
|
|
case CPlusPlus::T_IDENTIFIER:
|
|
|
|
|
case CPlusPlus::T_GREATER:
|
|
|
|
|
case CPlusPlus::T_SIGNAL:
|
|
|
|
|
case CPlusPlus::T_SLOT:
|
|
|
|
|
break; // good
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
// that's a bad token :)
|
|
|
|
|
m_completionKind = CPlusPlus::T_EOF_SYMBOL;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool ActivationSequenceContextProcessor::isCompletionKindStringLiteralOrSlash() const
|
|
|
|
|
{
|
|
|
|
|
return m_completionKind == CPlusPlus::T_STRING_LITERAL
|
|
|
|
|
|| m_completionKind == CPlusPlus::T_ANGLE_STRING_LITERAL
|
|
|
|
|
|| m_completionKind == CPlusPlus::T_SLASH;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool ActivationSequenceContextProcessor::isProbablyPreprocessorIncludeDirective() const
|
|
|
|
|
{
|
|
|
|
|
return m_tokens.size() >= 3
|
|
|
|
|
&& m_tokens.at(0).is(CPlusPlus::T_POUND)
|
|
|
|
|
&& m_tokens.at(1).is(CPlusPlus::T_IDENTIFIER)
|
|
|
|
|
&& (m_tokens.at(2).is(CPlusPlus::T_STRING_LITERAL)
|
|
|
|
|
|| m_tokens.at(2).is(CPlusPlus::T_ANGLE_STRING_LITERAL));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ActivationSequenceContextProcessor::processPreprocessorInclude()
|
|
|
|
|
{
|
|
|
|
|
if (isCompletionKindStringLiteralOrSlash()) {
|
|
|
|
|
if (isProbablyPreprocessorIncludeDirective()) {
|
|
|
|
|
const CPlusPlus::Token &directiveToken = m_tokens.at(1);
|
|
|
|
|
QString directive = m_textCursor.block().text().mid(directiveToken.bytesBegin(),
|
|
|
|
|
directiveToken.bytes());
|
|
|
|
|
if (directive != QStringLiteral("include")
|
|
|
|
|
&& directive != QStringLiteral("include_next")
|
|
|
|
|
&& directive != QStringLiteral("import"))
|
|
|
|
|
m_completionKind = CPlusPlus::T_EOF_SYMBOL;
|
|
|
|
|
} else {
|
|
|
|
|
m_completionKind = CPlusPlus::T_EOF_SYMBOL;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-23 16:06:48 +02:00
|
|
|
void ActivationSequenceContextProcessor::resetPositionsForEOFCompletionKind()
|
2015-07-23 13:01:02 +02:00
|
|
|
{
|
|
|
|
|
if (m_completionKind == CPlusPlus::T_EOF_SYMBOL)
|
2015-07-23 16:06:48 +02:00
|
|
|
m_operatorStartPosition = m_positionInDocument;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-24 15:35:20 +02:00
|
|
|
int ActivationSequenceContextProcessor::skipPrecedingWhitespace(
|
|
|
|
|
const TextEditor::AssistInterface *assistInterface,
|
|
|
|
|
int startPosition)
|
2015-07-23 16:06:48 +02:00
|
|
|
{
|
|
|
|
|
int position = startPosition;
|
2015-07-24 15:35:20 +02:00
|
|
|
while (assistInterface->characterAt(position - 1).isSpace())
|
2015-07-23 16:06:48 +02:00
|
|
|
--position;
|
|
|
|
|
return position;
|
2015-07-23 13:01:02 +02:00
|
|
|
}
|
|
|
|
|
|
2015-07-24 15:35:20 +02:00
|
|
|
static bool isValidIdentifierChar(const QChar &character)
|
|
|
|
|
{
|
|
|
|
|
return character.isLetterOrNumber()
|
|
|
|
|
|| character == QLatin1Char('_')
|
|
|
|
|
|| character.isHighSurrogate()
|
|
|
|
|
|| character.isLowSurrogate();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int ActivationSequenceContextProcessor::findStartOfName(
|
|
|
|
|
const TextEditor::AssistInterface *assistInterface,
|
|
|
|
|
int startPosition)
|
2015-07-23 13:01:02 +02:00
|
|
|
{
|
2015-07-23 16:06:48 +02:00
|
|
|
int position = startPosition;
|
|
|
|
|
QChar character;
|
|
|
|
|
do {
|
2015-07-24 15:35:20 +02:00
|
|
|
character = assistInterface->characterAt(--position);
|
|
|
|
|
} while (isValidIdentifierChar(character));
|
2015-07-23 13:01:02 +02:00
|
|
|
|
2015-07-23 16:06:48 +02:00
|
|
|
return position + 1;
|
|
|
|
|
}
|
2015-07-23 13:01:02 +02:00
|
|
|
|
2015-07-23 16:06:48 +02:00
|
|
|
void ActivationSequenceContextProcessor::goBackToStartOfName()
|
|
|
|
|
{
|
2015-07-24 15:35:20 +02:00
|
|
|
m_startOfNamePosition = findStartOfName(m_assistInterface, m_positionInDocument);
|
2015-07-23 13:01:02 +02:00
|
|
|
|
2015-07-23 16:06:48 +02:00
|
|
|
if (m_startOfNamePosition != m_positionInDocument)
|
|
|
|
|
m_textCursor.setPosition(m_startOfNamePosition);
|
2015-07-23 13:01:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace ClangCodeModel
|
|
|
|
|
|