2010-04-28 13:28:36 +02:00
|
|
|
#include "qmljscompletioncontextfinder.h"
|
|
|
|
|
|
|
|
#include <QtCore/QDebug>
|
|
|
|
#include <QtGui/QTextDocument>
|
|
|
|
|
|
|
|
using namespace QmlJS;
|
|
|
|
|
|
|
|
/*
|
|
|
|
Saves and restores the state of the global linizer. This enables
|
|
|
|
backtracking.
|
|
|
|
|
|
|
|
Identical to the defines in qmljslineinfo.cpp
|
|
|
|
*/
|
|
|
|
#define YY_SAVE() LinizerState savedState = yyLinizerState
|
|
|
|
#define YY_RESTORE() yyLinizerState = savedState
|
|
|
|
|
|
|
|
CompletionContextFinder::CompletionContextFinder(const QTextCursor &cursor)
|
|
|
|
: m_cursor(cursor)
|
2010-04-29 11:41:28 +02:00
|
|
|
, m_colonCount(-1)
|
2010-04-29 14:30:30 +02:00
|
|
|
, m_behaviorBinding(false)
|
2010-04-28 13:28:36 +02:00
|
|
|
{
|
|
|
|
QTextBlock lastBlock = cursor.block();
|
|
|
|
if (lastBlock.next().isValid())
|
|
|
|
lastBlock = lastBlock.next();
|
|
|
|
initialize(cursor.document()->begin(), lastBlock);
|
|
|
|
|
2010-04-29 11:41:28 +02:00
|
|
|
m_startTokenIndex = yyLinizerState.tokens.size() - 1;
|
|
|
|
for (; m_startTokenIndex >= 0; --m_startTokenIndex) {
|
|
|
|
const Token &token = yyLinizerState.tokens.at(m_startTokenIndex);
|
2010-04-28 13:28:36 +02:00
|
|
|
if (token.end() <= cursor.positionInBlock())
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2010-04-30 14:22:55 +02:00
|
|
|
if (m_startTokenIndex == yyLinizerState.tokens.size() - 1 && yyLinizerState.insertedSemicolon)
|
|
|
|
--m_startTokenIndex;
|
|
|
|
|
2010-04-29 11:41:28 +02:00
|
|
|
getQmlObjectTypeName(m_startTokenIndex);
|
|
|
|
checkBinding();
|
2010-04-28 13:28:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void CompletionContextFinder::getQmlObjectTypeName(int startTokenIndex)
|
|
|
|
{
|
|
|
|
YY_SAVE();
|
|
|
|
|
|
|
|
int tokenIndex = findOpeningBrace(startTokenIndex);
|
|
|
|
if (tokenIndex != -1) {
|
|
|
|
--tokenIndex;
|
|
|
|
|
|
|
|
// can be one of
|
|
|
|
// A.B on c.d
|
|
|
|
// A.B
|
|
|
|
|
|
|
|
bool identifierExpected = true;
|
|
|
|
int i = tokenIndex;
|
|
|
|
forever {
|
|
|
|
if (i < 0) {
|
|
|
|
if (!readLine())
|
|
|
|
break;
|
|
|
|
else
|
|
|
|
i = yyLinizerState.tokens.size() - 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
const Token &token = yyLinizerState.tokens.at(i);
|
|
|
|
if (!identifierExpected && token.kind == Token::Dot) {
|
|
|
|
identifierExpected = true;
|
|
|
|
} else if (token.kind == Token::Identifier) {
|
|
|
|
const QString idText = yyLine->mid(token.begin(), token.length);
|
|
|
|
if (identifierExpected) {
|
|
|
|
m_qmlObjectTypeName.prepend(idText);
|
|
|
|
identifierExpected = false;
|
|
|
|
} else if (idText == QLatin1String("on")) {
|
|
|
|
m_qmlObjectTypeName.clear();
|
|
|
|
identifierExpected = true;
|
|
|
|
} else {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
--i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
YY_RESTORE();
|
|
|
|
}
|
|
|
|
|
2010-04-29 11:41:28 +02:00
|
|
|
void CompletionContextFinder::checkBinding()
|
|
|
|
{
|
|
|
|
YY_SAVE();
|
|
|
|
|
|
|
|
//qDebug() << "Start line:" << *yyLine << m_startTokenIndex;
|
|
|
|
|
|
|
|
int i = m_startTokenIndex;
|
|
|
|
int colonCount = 0;
|
|
|
|
bool delimiterFound = false;
|
2010-04-29 14:30:30 +02:00
|
|
|
bool firstToken = true;
|
2010-04-29 15:52:17 +02:00
|
|
|
bool identifierExpected = false;
|
|
|
|
bool dotExpected = false;
|
2010-04-29 11:41:28 +02:00
|
|
|
while (!delimiterFound) {
|
|
|
|
if (i < 0) {
|
|
|
|
if (!readLine())
|
|
|
|
break;
|
|
|
|
else
|
|
|
|
i = yyLinizerState.tokens.size() - 1;
|
|
|
|
//qDebug() << "New Line" << *yyLine;
|
|
|
|
}
|
|
|
|
|
|
|
|
const Token &token = yyLinizerState.tokens.at(i);
|
|
|
|
//qDebug() << "Token:" << yyLine->mid(token.begin(), token.length);
|
|
|
|
|
|
|
|
switch (token.kind) {
|
|
|
|
case Token::RightBrace:
|
|
|
|
case Token::LeftBrace:
|
|
|
|
case Token::Semicolon:
|
|
|
|
delimiterFound = true;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Token::Colon:
|
|
|
|
++colonCount;
|
2010-04-29 15:52:17 +02:00
|
|
|
identifierExpected = true;
|
|
|
|
dotExpected = false;
|
|
|
|
m_bindingPropertyName.clear();
|
2010-04-29 11:41:28 +02:00
|
|
|
break;
|
|
|
|
|
2010-04-29 15:52:17 +02:00
|
|
|
case Token::Identifier: {
|
|
|
|
QStringRef tokenString = yyLine->midRef(token.begin(), token.length);
|
|
|
|
if (firstToken && tokenString == QLatin1String("on")) {
|
2010-04-29 14:30:30 +02:00
|
|
|
m_behaviorBinding = true;
|
2010-04-29 15:52:17 +02:00
|
|
|
} else if (identifierExpected) {
|
|
|
|
m_bindingPropertyName.prepend(tokenString.toString());
|
|
|
|
identifierExpected = false;
|
|
|
|
dotExpected = true;
|
|
|
|
} else {
|
|
|
|
dotExpected = false;
|
|
|
|
}
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case Token::Dot:
|
|
|
|
if (dotExpected) {
|
|
|
|
dotExpected = false;
|
|
|
|
identifierExpected = true;
|
|
|
|
} else {
|
|
|
|
identifierExpected = false;
|
|
|
|
}
|
2010-04-29 14:30:30 +02:00
|
|
|
break;
|
|
|
|
|
2010-04-29 11:41:28 +02:00
|
|
|
default:
|
2010-04-29 15:52:17 +02:00
|
|
|
dotExpected = false;
|
|
|
|
identifierExpected = false;
|
2010-04-29 11:41:28 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
--i;
|
2010-04-29 14:30:30 +02:00
|
|
|
firstToken = false;
|
2010-04-29 11:41:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
YY_RESTORE();
|
|
|
|
if (delimiterFound)
|
|
|
|
m_colonCount = colonCount;
|
|
|
|
}
|
|
|
|
|
2010-04-28 13:28:36 +02:00
|
|
|
QStringList CompletionContextFinder::qmlObjectTypeName() const
|
|
|
|
{
|
|
|
|
return m_qmlObjectTypeName;
|
|
|
|
}
|
|
|
|
|
2010-04-29 11:41:28 +02:00
|
|
|
bool CompletionContextFinder::isInQmlContext() const
|
|
|
|
{
|
|
|
|
return !qmlObjectTypeName().isEmpty();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CompletionContextFinder::isInLhsOfBinding() const
|
|
|
|
{
|
|
|
|
return isInQmlContext() && m_colonCount == 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CompletionContextFinder::isInRhsOfBinding() const
|
|
|
|
{
|
2010-04-29 15:52:17 +02:00
|
|
|
return isInQmlContext() && m_colonCount >= 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
QStringList CompletionContextFinder::bindingPropertyName() const
|
|
|
|
{
|
|
|
|
return m_bindingPropertyName;
|
2010-04-29 11:41:28 +02:00
|
|
|
}
|
|
|
|
|
2010-04-29 14:30:30 +02:00
|
|
|
/*!
|
|
|
|
\return true if the cursor after "Type on" in the left hand side
|
|
|
|
of a binding, false otherwise.
|
|
|
|
*/
|
|
|
|
bool CompletionContextFinder::isAfterOnInLhsOfBinding() const
|
|
|
|
{
|
|
|
|
return isInLhsOfBinding() && m_behaviorBinding;
|
|
|
|
}
|
|
|
|
|
2010-04-28 13:28:36 +02:00
|
|
|
int CompletionContextFinder::findOpeningBrace(int startTokenIndex)
|
|
|
|
{
|
|
|
|
YY_SAVE();
|
|
|
|
|
|
|
|
if (startTokenIndex == -1)
|
|
|
|
readLine();
|
|
|
|
|
2010-04-29 11:41:28 +02:00
|
|
|
Token::Kind nestedClosing = Token::EndOfFile;
|
2010-04-28 13:28:36 +02:00
|
|
|
int nestingCount = 0;
|
|
|
|
|
|
|
|
for (int i = 0; i < BigRoof; ++i) {
|
|
|
|
if (i != 0 || startTokenIndex == -1)
|
|
|
|
startTokenIndex = yyLinizerState.tokens.size() - 1;
|
|
|
|
|
|
|
|
for (int t = startTokenIndex; t >= 0; --t) {
|
|
|
|
const Token &token = yyLinizerState.tokens.at(t);
|
|
|
|
switch (token.kind) {
|
|
|
|
case Token::LeftBrace:
|
|
|
|
if (nestingCount > 0) {
|
|
|
|
if (nestedClosing == Token::RightBrace)
|
|
|
|
--nestingCount;
|
|
|
|
} else {
|
|
|
|
return t;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case Token::LeftParenthesis:
|
|
|
|
if (nestingCount > 0) {
|
|
|
|
if (nestedClosing == Token::RightParenthesis)
|
|
|
|
--nestingCount;
|
|
|
|
} else {
|
|
|
|
YY_RESTORE();
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case Token::LeftBracket:
|
|
|
|
if (nestingCount > 0) {
|
|
|
|
if (nestedClosing == Token::RightBracket)
|
|
|
|
--nestingCount;
|
|
|
|
} else {
|
|
|
|
YY_RESTORE();
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Token::RightBrace:
|
|
|
|
case Token::RightParenthesis:
|
|
|
|
case Token::RightBracket:
|
|
|
|
if (nestingCount == 0) {
|
|
|
|
nestedClosing = token.kind;
|
|
|
|
nestingCount = 1;
|
|
|
|
} else if (nestedClosing == token.kind) {
|
|
|
|
++nestingCount;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (! readLine())
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
YY_RESTORE();
|
|
|
|
return -1;
|
|
|
|
}
|