1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504
|
/*
* This file is part of qmljs, the QML/JS language support plugin for KDevelop
* Copyright (c) 2013 Sven Brauch <svenbrauch@googlemail.com>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of
* the License or (at your option) version 3 or any later version
* accepted by the membership of KDE e.V. (or its successor approved
* by the membership of KDE e.V.), which shall act as a proxy
* defined in Section 14 of version 3 of the license.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
#include "context.h"
#include "items/modulecompletionitem.h"
#include "items/functioncalltipcompletionitem.h"
#include <language/codecompletion/codecompletionitem.h>
#include <language/codecompletion/normaldeclarationcompletionitem.h>
#include <language/duchain/declaration.h>
#include <language/duchain/duchainlock.h>
#include <language/duchain/classdeclaration.h>
#include <language/duchain/namespacealiasdeclaration.h>
#include <language/duchain/codemodel.h>
#include <qmljs/qmljsdocument.h>
#include <qmljs/parser/qmljslexer_p.h>
#include "../duchain/expressionvisitor.h"
#include "../duchain/helper.h"
#include "../duchain/cache.h"
#include "../duchain/frameworks/nodejs.h"
#include <QDir>
#include <QRegExp>
using namespace KDevelop;
using DeclarationDepthPair = QPair<Declaration*, int>;
namespace QmlJS {
CodeCompletionContext::CodeCompletionContext(const DUContextPointer& context, const QString& text,
const CursorInRevision& position, int depth)
: KDevelop::CodeCompletionContext(context, extractLastLine(text), position, depth),
m_completionKind(NormalCompletion)
{
// Detect "import ..." and provide import completions
if (m_text.startsWith(QLatin1String("import "))) {
m_completionKind = ImportCompletion;
}
// Node.js module completions
if (m_text.endsWith(QLatin1String("require("))) {
m_completionKind = NodeModulesCompletion;
}
// Detect whether the cursor is in a comment
bool isLastLine = true;
bool inString = false;
for (int index = text.size()-1; index > 0; --index) {
const QChar c = text.at(index);
const QChar prev = text.at(index - 1);
if (c == QLatin1Char('\n')) {
isLastLine = false;
} else if (isLastLine && prev == QLatin1Char('/') && c == QLatin1Char('/')) {
// Single-line comment on the current line, we are in a comment
m_completionKind = CommentCompletion;
break;
} else if (prev == QLatin1Char('/') && c == QLatin1Char('*')) {
// Start of a multi-line comment encountered
m_completionKind = CommentCompletion;
break;
} else if (prev == QLatin1Char('*') && c == QLatin1Char('/')) {
// End of a multi-line comment. Because /* and */ cannot be nested,
// encountering a */ is enough to know that the cursor is outside a
// comment
break;
} else if (prev != QLatin1Char('\\') && (c == QLatin1Char('"') || c == QLatin1Char('\''))) {
// Toggle whether we are in a string or not
inString = !inString;
}
}
if (inString) {
m_completionKind = StringCompletion;
}
// Some specific constructs don't need any code-completion at all (mainly
// because the user will declare new things, not use ones)
if (m_text.contains(QRegExp(QLatin1String("(var|function)\\s+$"))) || // "var |" or "function |"
m_text.contains(QRegExp(QLatin1String("property\\s+[a-zA-Z0-9_]+\\s+$"))) || // "property <type> |"
m_text.contains(QRegExp(QLatin1String("function(\\s+[a-zA-Z0-9_]+)?\\s*\\($"))) || // "function (|" or "function <name> (|"
m_text.contains(QRegExp(QLatin1String("id:\\s*"))) // "id: |"
) {
m_completionKind = NoCompletion;
}
}
QList<CompletionTreeItemPointer> CodeCompletionContext::completionItems(bool& abort, bool fullCompletion)
{
Q_UNUSED (fullCompletion);
if (abort) {
return QList<CompletionTreeItemPointer>();
}
switch (m_completionKind) {
case NormalCompletion:
return normalCompletion();
case CommentCompletion:
return commentCompletion();
case ImportCompletion:
return importCompletion();
case NodeModulesCompletion:
return nodeModuleCompletions();
case StringCompletion:
case NoCompletion:
break;
}
return QList<CompletionTreeItemPointer>();
}
AbstractType::Ptr CodeCompletionContext::typeToMatch() const
{
return m_typeToMatch;
}
QList<KDevelop::CompletionTreeItemPointer> CodeCompletionContext::normalCompletion()
{
QList<CompletionTreeItemPointer> items;
QChar lastChar = m_text.size() > 0 ? m_text.at(m_text.size() - 1) : QLatin1Char('\0');
bool inQmlObjectScope = (m_duContext->type() == DUContext::Class);
// Start with the function call-tips, because functionCallTips is also responsible
// for setting m_declarationForTypeMatch
items << functionCallTips();
if (lastChar == QLatin1Char('.') || lastChar == QLatin1Char('[')) {
// Offer completions for object members and array subscripts
items << fieldCompletions(
m_text.left(m_text.size() - 1),
lastChar == QLatin1Char('[') ? CompletionItem::QuotesAndBracket :
CompletionItem::NoDecoration
);
}
// "object." must only display the members of object, the declarations
// available in the current context.
if (lastChar != QLatin1Char('.')) {
if (inQmlObjectScope) {
DUChainReadLocker lock;
// The cursor is in a QML object and there is nothing before it. Display
// a list of properties and signals that can be used in a script binding.
// Note that the properties/signals of parent QML objects are not displayed here
items << completionsInContext(m_duContext,
CompletionOnlyLocal | CompletionHideWrappers,
CompletionItem::ColonOrBracket);
items << completionsFromImports(CompletionHideWrappers);
items << completionsInContext(DUContextPointer(m_duContext->topContext()),
CompletionHideWrappers,
CompletionItem::NoDecoration);
} else {
items << completionsInContext(m_duContext,
CompletionInContextFlags(),
CompletionItem::NoDecoration);
items << completionsFromImports(CompletionInContextFlags());
items << completionsFromNodeModule(CompletionInContextFlags(), QStringLiteral("__builtin_ecmascript"));
if (!QmlJS::isQmlFile(m_duContext.data())) {
items << completionsFromNodeModule(CompletionInContextFlags(), QStringLiteral("__builtin_dom"));
}
}
}
return items;
}
QList<CompletionTreeItemPointer> CodeCompletionContext::commentCompletion()
{
return QList<CompletionTreeItemPointer>();
}
QList<CompletionTreeItemPointer> CodeCompletionContext::importCompletion()
{
QList<CompletionTreeItemPointer> items;
QString fragment = m_text.section(QLatin1Char(' '), -1, -1);
// Use the cache to find the directory corresponding to the fragment
// (org.kde is, for instance, /usr/lib64/kde4/imports/org/kde), and list
// its subdirectories
QString dataDir = Cache::instance().modulePath(m_duContext->url(), fragment);
QDir dir;
if (!dataDir.isEmpty()) {
dir.setPath(dataDir);
const auto dirEntries = dir.entryList(QDir::Dirs | QDir::NoDotAndDotDot, QDir::Name);
items.reserve(dirEntries.size());
for (const QString& entry : dirEntries) {
items.append(CompletionTreeItemPointer(new ModuleCompletionItem(
fragment + entry.section(QLatin1Char('.'), 0, 0),
ModuleCompletionItem::Import
)));
}
}
return items;
}
QList<CompletionTreeItemPointer> CodeCompletionContext::nodeModuleCompletions()
{
QList<CompletionTreeItemPointer> items;
QDir dir;
const auto& paths = NodeJS::instance().moduleDirectories(m_duContext->url().str());
for (auto& path : paths) {
dir.setPath(path.toLocalFile());
const auto& entries = dir.entryList(QDir::Files, QDir::Name);
for (QString entry : entries) {
entry.remove(QLatin1String(".js"));
if (entry.startsWith(QLatin1String("__"))) {
// Internal module, don't show
continue;
}
items.append(CompletionTreeItemPointer(
new ModuleCompletionItem(entry, ModuleCompletionItem::Quotes)
));
}
}
return items;
}
QList<CompletionTreeItemPointer> CodeCompletionContext::functionCallTips()
{
Stack<ExpressionStackEntry> stack = expressionStack(m_text);
QList<CompletionTreeItemPointer> items;
int argumentHintDepth = 1;
bool isTopOfStack = true;
DUChainReadLocker lock;
while (!stack.isEmpty()) {
ExpressionStackEntry entry = stack.pop();
if (isTopOfStack && entry.operatorStart > entry.startPosition) {
// Deduce the declaration for type matching using operatorStart:
//
// table[document.base +
// [ ^
//
// ^ = operatorStart. Just before operatorStart is a code snippet that ends
// with the declaration whose type should be used.
DeclarationPointer decl = declarationAtEndOfString(m_text.left(entry.operatorStart));
if (decl) {
m_typeToMatch = decl->abstractType();
}
}
if (entry.startPosition > 0 && m_text.at(entry.startPosition - 1) == QLatin1Char('(')) {
// The current entry represents a function call, create a call-tip for it
DeclarationPointer functionDecl = declarationAtEndOfString(m_text.left(entry.startPosition - 1));
if (functionDecl) {
auto item = new FunctionCalltipCompletionItem(
functionDecl,
argumentHintDepth,
entry.commas
);
items << CompletionTreeItemPointer(item);
argumentHintDepth++;
if (isTopOfStack && !m_typeToMatch) {
m_typeToMatch = item->currentArgumentType();
}
}
}
isTopOfStack = false;
}
return items;
}
QList<CompletionTreeItemPointer> CodeCompletionContext::completionsFromImports(CompletionInContextFlags flags)
{
QList<CompletionTreeItemPointer> items;
// Iterate over all the imported namespaces and add their definitions
DUChainReadLocker lock;
const QList<Declaration*> imports = m_duContext->findDeclarations(globalImportIdentifier());
QList<Declaration*> realImports;
for (Declaration* import : imports) {
if (import->kind() != Declaration::NamespaceAlias) {
continue;
}
auto* decl = static_cast<NamespaceAliasDeclaration *>(import);
realImports << m_duContext->findDeclarations(decl->importIdentifier());
}
items.reserve(realImports.size());
foreach (Declaration* import, realImports) {
items << completionsInContext(
DUContextPointer(import->internalContext()),
flags,
CompletionItem::NoDecoration
);
}
return items;
}
QList<CompletionTreeItemPointer> CodeCompletionContext::completionsFromNodeModule(CompletionInContextFlags flags,
const QString& module)
{
return completionsInContext(
DUContextPointer(QmlJS::getInternalContext(
QmlJS::NodeJS::instance().moduleExports(module, m_duContext->url())
)),
flags | CompletionOnlyLocal,
CompletionItem::NoDecoration
);
}
QList<CompletionTreeItemPointer> CodeCompletionContext::completionsInContext(const DUContextPointer& context,
CompletionInContextFlags flags,
CompletionItem::Decoration decoration)
{
QList<CompletionTreeItemPointer> items;
DUChainReadLocker lock;
if (context) {
const auto declarations = context->allDeclarations(
CursorInRevision::invalid(),
context->topContext(),
!flags.testFlag(CompletionOnlyLocal)
);
for (const DeclarationDepthPair& decl : declarations) {
DeclarationPointer declaration(decl.first);
CompletionItem::Decoration decorationOfThisItem = decoration;
if (declaration->identifier() == globalImportIdentifier()) {
continue;
} if (declaration->qualifiedIdentifier().isEmpty()) {
continue;
} else if (context->owner() && (
context->owner()->kind() == Declaration::Namespace ||
context->owner()->kind() == Declaration::NamespaceAlias
) && decl.second != 0 && decl.second != 1001) {
// Only show the local declarations of modules, or the declarations
// immediately in its imported parent contexts (that are global
// contexts, hence the distance of 1001). This prevents "String()",
// "QtQuick1.0" and "builtins" from being listed when the user
// types "PlasmaCore.".
continue;
} else if (decorationOfThisItem == CompletionItem::NoDecoration &&
declaration->abstractType() &&
declaration->abstractType()->whichType() == AbstractType::TypeFunction) {
// Decorate function calls with brackets
decorationOfThisItem = CompletionItem::Brackets;
} else if (flags.testFlag(CompletionHideWrappers)) {
auto* classDecl = dynamic_cast<ClassDeclaration*>(declaration.data());
if (classDecl && classDecl->classType() == ClassDeclarationData::Interface) {
continue;
}
}
items << CompletionTreeItemPointer(new CompletionItem(declaration, decl.second, decorationOfThisItem));
}
}
return items;
}
QList<CompletionTreeItemPointer> CodeCompletionContext::fieldCompletions(const QString& expression,
CompletionItem::Decoration decoration)
{
// The statement given to this method ends with an expression that may identify
// a declaration ("foo" in "test(1, 2, foo"). List the declarations of this
// inner context
DUContext* context = getInternalContext(declarationAtEndOfString(expression));
if (context) {
return completionsInContext(DUContextPointer(context),
CompletionOnlyLocal,
decoration);
} else {
return QList<CompletionTreeItemPointer>();
}
}
Stack<CodeCompletionContext::ExpressionStackEntry> CodeCompletionContext::expressionStack(const QString& expression)
{
Stack<CodeCompletionContext::ExpressionStackEntry> stack;
ExpressionStackEntry entry;
QmlJS::Lexer lexer(nullptr);
bool atEnd = false;
lexer.setCode(expression, 1, false);
entry.startPosition = 0;
entry.operatorStart = 0;
entry.operatorEnd = 0;
entry.commas = 0;
stack.push(entry);
// NOTE: KDevelop uses 0-indexed columns while QMLJS uses 1-indexed columns
while (!atEnd) {
switch (lexer.lex()) {
case QmlJSGrammar::EOF_SYMBOL:
atEnd = true;
break;
case QmlJSGrammar::T_LBRACE:
case QmlJSGrammar::T_LBRACKET:
case QmlJSGrammar::T_LPAREN:
entry.startPosition = lexer.tokenEndColumn() - 1;
entry.operatorStart = entry.startPosition;
entry.operatorEnd = entry.startPosition;
entry.commas = 0;
stack.push(entry);
break;
case QmlJSGrammar::T_RBRACE:
case QmlJSGrammar::T_RBRACKET:
case QmlJSGrammar::T_RPAREN:
if (stack.count() > 1) {
stack.pop();
}
break;
case QmlJSGrammar::T_IDENTIFIER:
case QmlJSGrammar::T_DOT:
case QmlJSGrammar::T_THIS:
break;
case QmlJSGrammar::T_COMMA:
stack.top().commas++;
break;
default:
// The last operator of every sub-expression is stored on the stack
// so that "A = foo." can know that attributes of foo having the same
// type as A should be highlighted.
stack.top().operatorStart = lexer.tokenStartColumn() - 1;
stack.top().operatorEnd = lexer.tokenEndColumn() - 1;
break;
}
}
return stack;
}
DeclarationPointer CodeCompletionContext::declarationAtEndOfString(const QString& expression)
{
// Build the expression stack of expression and use the valid portion of the
// top sub-expression to find the right-most declaration that can be found
// in expression.
QmlJS::Document::MutablePtr doc = QmlJS::Document::create(QStringLiteral("inline"), Dialect::JavaScript);
ExpressionStackEntry topEntry = expressionStack(expression).top();
doc->setSource(expression.mid(topEntry.operatorEnd + topEntry.commas));
doc->parseExpression();
if (!doc || !doc->isParsedCorrectly()) {
return DeclarationPointer();
}
// Use ExpressionVisitor to find the type (and associated declaration) of
// the snippet that has been parsed. The inner context of the declaration
// can be used to get the list of completions
ExpressionVisitor visitor(m_duContext.data());
doc->ast()->accept(&visitor);
return visitor.lastDeclaration();
}
bool CodeCompletionContext::containsOnlySpaces(const QString& str)
{
return std::all_of(str.begin(), str.end(), [](const QChar c) {
return c.isSpace();
});
}
}
|