2012-10-02 09:12:39 +02:00
|
|
|
/****************************************************************************
|
2010-11-08 16:11:26 +01:00
|
|
|
**
|
2016-01-15 14:57:40 +01:00
|
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
2010-11-08 16:11:26 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2010-11-08 16:11:26 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02: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
|
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.
|
2010-11-08 16:11:26 +01: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.
|
2010-12-17 17:14:20 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2010-11-08 16:11:26 +01:00
|
|
|
|
|
|
|
|
#include "qmljsautocompleter.h"
|
|
|
|
|
|
|
|
|
|
#include <qmljs/qmljsscanner.h>
|
|
|
|
|
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QChar>
|
|
|
|
|
#include <QLatin1Char>
|
|
|
|
|
#include <QTextDocument>
|
|
|
|
|
#include <QTextCursor>
|
|
|
|
|
#include <QTextBlock>
|
2010-11-08 16:11:26 +01:00
|
|
|
|
|
|
|
|
using namespace QmlJSEditor;
|
|
|
|
|
using namespace Internal;
|
|
|
|
|
using namespace QmlJS;
|
|
|
|
|
|
|
|
|
|
static int blockStartState(const QTextBlock &block)
|
|
|
|
|
{
|
2010-12-01 12:00:01 +01:00
|
|
|
int state = block.previous().userState();
|
2010-11-08 16:11:26 +01:00
|
|
|
|
|
|
|
|
if (state == -1)
|
|
|
|
|
return 0;
|
|
|
|
|
else
|
|
|
|
|
return state & 0xff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static Token tokenUnderCursor(const QTextCursor &cursor)
|
|
|
|
|
{
|
|
|
|
|
const QString blockText = cursor.block().text();
|
|
|
|
|
const int blockState = blockStartState(cursor.block());
|
|
|
|
|
|
|
|
|
|
Scanner tokenize;
|
|
|
|
|
const QList<Token> tokens = tokenize(blockText, blockState);
|
|
|
|
|
const int pos = cursor.positionInBlock();
|
|
|
|
|
|
|
|
|
|
int tokenIndex = 0;
|
|
|
|
|
for (; tokenIndex < tokens.size(); ++tokenIndex) {
|
|
|
|
|
const Token &token = tokens.at(tokenIndex);
|
|
|
|
|
|
|
|
|
|
if (token.is(Token::Comment) || token.is(Token::String)) {
|
|
|
|
|
if (pos > token.begin() && pos <= token.end())
|
|
|
|
|
break;
|
|
|
|
|
} else {
|
|
|
|
|
if (pos >= token.begin() && pos < token.end())
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (tokenIndex != tokens.size())
|
|
|
|
|
return tokens.at(tokenIndex);
|
|
|
|
|
|
|
|
|
|
return Token();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static bool shouldInsertMatchingText(QChar lookAhead)
|
|
|
|
|
{
|
|
|
|
|
switch (lookAhead.unicode()) {
|
|
|
|
|
case '{': case '}':
|
|
|
|
|
case ']': case ')':
|
|
|
|
|
case ';': case ',':
|
|
|
|
|
case '"': case '\'':
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
if (lookAhead.isSpace())
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
} // switch
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static bool shouldInsertMatchingText(const QTextCursor &tc)
|
|
|
|
|
{
|
|
|
|
|
QTextDocument *doc = tc.document();
|
|
|
|
|
return shouldInsertMatchingText(doc->characterAt(tc.selectionEnd()));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static bool shouldInsertNewline(const QTextCursor &tc)
|
|
|
|
|
{
|
|
|
|
|
QTextDocument *doc = tc.document();
|
|
|
|
|
int pos = tc.selectionEnd();
|
|
|
|
|
|
|
|
|
|
// count the number of empty lines.
|
|
|
|
|
int newlines = 0;
|
|
|
|
|
for (int e = doc->characterCount(); pos != e; ++pos) {
|
|
|
|
|
const QChar ch = doc->characterAt(pos);
|
|
|
|
|
|
|
|
|
|
if (! ch.isSpace())
|
|
|
|
|
break;
|
|
|
|
|
else if (ch == QChar::ParagraphSeparator)
|
|
|
|
|
++newlines;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (newlines <= 1 && doc->characterAt(pos) != QLatin1Char('}'))
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static bool isCompleteStringLiteral(const QStringRef &text)
|
|
|
|
|
{
|
|
|
|
|
if (text.length() < 2)
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
const QChar quote = text.at(0);
|
|
|
|
|
|
|
|
|
|
if (text.at(text.length() - 1) == quote)
|
|
|
|
|
return text.at(text.length() - 2) != QLatin1Char('\\'); // ### not exactly.
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
AutoCompleter::AutoCompleter()
|
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
AutoCompleter::~AutoCompleter()
|
|
|
|
|
{}
|
|
|
|
|
|
2016-04-14 09:00:05 +02:00
|
|
|
bool AutoCompleter::contextAllowsAutoBrackets(const QTextCursor &cursor,
|
|
|
|
|
const QString &textToInsert) const
|
2010-11-08 16:11:26 +01:00
|
|
|
{
|
|
|
|
|
QChar ch;
|
|
|
|
|
|
|
|
|
|
if (! textToInsert.isEmpty())
|
|
|
|
|
ch = textToInsert.at(0);
|
|
|
|
|
|
|
|
|
|
switch (ch.unicode()) {
|
|
|
|
|
case '(':
|
|
|
|
|
case '[':
|
|
|
|
|
case '{':
|
|
|
|
|
|
|
|
|
|
case ')':
|
|
|
|
|
case ']':
|
|
|
|
|
case '}':
|
|
|
|
|
|
|
|
|
|
case ';':
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
if (ch.isNull())
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
} // end of switch
|
|
|
|
|
|
|
|
|
|
const Token token = tokenUnderCursor(cursor);
|
|
|
|
|
switch (token.kind) {
|
|
|
|
|
case Token::Comment:
|
|
|
|
|
return false;
|
|
|
|
|
|
2015-04-27 10:36:29 +02:00
|
|
|
case Token::RightBrace:
|
|
|
|
|
return false;
|
|
|
|
|
|
2010-11-08 16:11:26 +01:00
|
|
|
case Token::String: {
|
|
|
|
|
const QString blockText = cursor.block().text();
|
|
|
|
|
const QStringRef tokenText = blockText.midRef(token.offset, token.length);
|
2010-12-01 12:00:01 +01:00
|
|
|
QChar quote = tokenText.at(0);
|
|
|
|
|
// if a string literal doesn't start with a quote, it must be multiline
|
|
|
|
|
if (quote != QLatin1Char('"') && quote != QLatin1Char('\'')) {
|
|
|
|
|
const int startState = blockStartState(cursor.block());
|
2011-06-03 08:49:40 +02:00
|
|
|
if ((startState & Scanner::MultiLineMask) == Scanner::MultiLineStringDQuote)
|
2010-12-01 12:00:01 +01:00
|
|
|
quote = QLatin1Char('"');
|
2011-06-03 08:49:40 +02:00
|
|
|
else if ((startState & Scanner::MultiLineMask) == Scanner::MultiLineStringSQuote)
|
2010-12-01 12:00:01 +01:00
|
|
|
quote = QLatin1Char('\'');
|
|
|
|
|
}
|
2010-11-08 16:11:26 +01:00
|
|
|
|
2010-11-12 11:05:10 +01:00
|
|
|
// never insert ' into string literals, it adds spurious ' when writing contractions
|
|
|
|
|
if (ch == QLatin1Char('\''))
|
|
|
|
|
return false;
|
|
|
|
|
|
2010-11-08 16:11:26 +01:00
|
|
|
if (ch != quote || isCompleteStringLiteral(tokenText))
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
} // end of switch
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2016-04-14 09:00:05 +02:00
|
|
|
bool AutoCompleter::contextAllowsAutoQuotes(const QTextCursor &cursor,
|
|
|
|
|
const QString &textToInsert) const
|
|
|
|
|
{
|
|
|
|
|
if (!isQuote(textToInsert))
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
const Token token = tokenUnderCursor(cursor);
|
|
|
|
|
switch (token.kind) {
|
|
|
|
|
case Token::Comment:
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
case Token::RightBrace:
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
case Token::String: {
|
|
|
|
|
const QString blockText = cursor.block().text();
|
|
|
|
|
const QStringRef tokenText = blockText.midRef(token.offset, token.length);
|
|
|
|
|
QChar quote = tokenText.at(0);
|
|
|
|
|
// if a string literal doesn't start with a quote, it must be multiline
|
|
|
|
|
if (quote != QLatin1Char('"') && quote != QLatin1Char('\'')) {
|
|
|
|
|
const int startState = blockStartState(cursor.block());
|
|
|
|
|
if ((startState & Scanner::MultiLineMask) == Scanner::MultiLineStringDQuote)
|
|
|
|
|
quote = QLatin1Char('"');
|
|
|
|
|
else if ((startState & Scanner::MultiLineMask) == Scanner::MultiLineStringSQuote)
|
|
|
|
|
quote = QLatin1Char('\'');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// never insert ' into string literals, it adds spurious ' when writing contractions
|
|
|
|
|
if (textToInsert.at(0) == QLatin1Char('\''))
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
if (textToInsert.at(0) != quote || isCompleteStringLiteral(tokenText))
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
} // end of switch
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2010-11-30 14:14:33 +01:00
|
|
|
bool AutoCompleter::contextAllowsElectricCharacters(const QTextCursor &cursor) const
|
2010-11-08 16:11:26 +01:00
|
|
|
{
|
|
|
|
|
Token token = tokenUnderCursor(cursor);
|
|
|
|
|
switch (token.kind) {
|
|
|
|
|
case Token::Comment:
|
|
|
|
|
case Token::String:
|
|
|
|
|
return false;
|
|
|
|
|
default:
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2010-11-30 14:14:33 +01:00
|
|
|
bool AutoCompleter::isInComment(const QTextCursor &cursor) const
|
2010-11-08 16:11:26 +01:00
|
|
|
{
|
|
|
|
|
return tokenUnderCursor(cursor).is(Token::Comment);
|
|
|
|
|
}
|
|
|
|
|
|
2010-11-30 14:14:33 +01:00
|
|
|
QString AutoCompleter::insertMatchingBrace(const QTextCursor &cursor,
|
|
|
|
|
const QString &text,
|
2016-04-14 09:00:05 +02:00
|
|
|
QChar lookAhead,
|
2016-06-10 15:13:38 +02:00
|
|
|
bool skipChars,
|
2010-11-30 14:14:33 +01:00
|
|
|
int *skippedChars) const
|
2010-11-08 16:11:26 +01:00
|
|
|
{
|
|
|
|
|
if (text.length() != 1)
|
|
|
|
|
return QString();
|
|
|
|
|
|
|
|
|
|
if (! shouldInsertMatchingText(cursor))
|
|
|
|
|
return QString();
|
|
|
|
|
|
|
|
|
|
const QChar ch = text.at(0);
|
|
|
|
|
switch (ch.unicode()) {
|
|
|
|
|
case '(':
|
|
|
|
|
return QString(QLatin1Char(')'));
|
|
|
|
|
|
|
|
|
|
case '[':
|
|
|
|
|
return QString(QLatin1Char(']'));
|
|
|
|
|
|
|
|
|
|
case '{':
|
|
|
|
|
return QString(); // nothing to do.
|
|
|
|
|
|
|
|
|
|
case ')':
|
|
|
|
|
case ']':
|
|
|
|
|
case '}':
|
|
|
|
|
case ';':
|
2016-06-10 15:13:38 +02:00
|
|
|
if (lookAhead == ch && skipChars)
|
2010-11-08 16:11:26 +01:00
|
|
|
++*skippedChars;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
} // end of switch
|
|
|
|
|
|
|
|
|
|
return QString();
|
|
|
|
|
}
|
|
|
|
|
|
2016-04-14 09:00:05 +02:00
|
|
|
QString AutoCompleter::insertMatchingQuote(const QTextCursor &/*tc*/, const QString &text,
|
2016-06-10 15:13:38 +02:00
|
|
|
QChar lookAhead, bool skipChars, int *skippedChars) const
|
2016-04-14 09:00:05 +02:00
|
|
|
{
|
|
|
|
|
if (isQuote(text)) {
|
2016-06-10 15:13:38 +02:00
|
|
|
if (lookAhead == text && skipChars)
|
|
|
|
|
++*skippedChars;
|
|
|
|
|
else
|
2016-04-14 09:00:05 +02:00
|
|
|
return text;
|
|
|
|
|
}
|
|
|
|
|
return QString();
|
|
|
|
|
}
|
|
|
|
|
|
2010-11-30 14:14:33 +01:00
|
|
|
QString AutoCompleter::insertParagraphSeparator(const QTextCursor &cursor) const
|
2010-11-08 16:11:26 +01:00
|
|
|
{
|
|
|
|
|
if (shouldInsertNewline(cursor)) {
|
2010-12-01 14:33:20 +01:00
|
|
|
QTextCursor selCursor = cursor;
|
|
|
|
|
selCursor.movePosition(QTextCursor::EndOfBlock, QTextCursor::KeepAnchor);
|
|
|
|
|
if (! selCursor.selectedText().trimmed().isEmpty())
|
2010-11-08 16:11:26 +01:00
|
|
|
return QString();
|
|
|
|
|
|
|
|
|
|
return QLatin1String("}\n");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return QLatin1String("}");
|
|
|
|
|
}
|