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 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605
|
/*
Copyright 2008 David Nolden <david.nolden.kdevelop@art-master.de>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License version 2 as published by the Free Software Foundation.
This library 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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#include "missingincludeitem.h"
#include <klocale.h>
#include <ktexteditor/document.h>
#include <language/duchain/namespacealiasdeclaration.h>
#include <language/duchain/persistentsymboltable.h>
#include <language/duchain/types/abstracttype.h>
#include <language/duchain/types/delayedtype.h>
#include <language/duchain/types/identifiedtype.h>
#include <language/duchain/classdeclaration.h>
#include <language/duchain/duchainutils.h>
#include <language/duchain/aliasdeclaration.h>
#include "../cppduchain/navigation/navigationwidget.h"
#include "../cppduchain/typeutils.h"
#include "../cppduchain/templateparameterdeclaration.h"
#include "../cppduchain/expressionevaluationresult.h"
#include "../cpputils.h"
#include "model.h"
#include "helpers.h"
#include "sourcemanipulation.h"
//Whether relative urls like "../bla" should be allowed. Even if this is false, they will be preferred over global urls.
bool allowDotDot = true;
const uint maxDeclarationCount = 30;
using namespace KTextEditor;
using namespace KDevelop;
namespace Cpp {
int sharedPathLevel(const QString& a, const QString& b)
{
int levelsShared = -1;
for(int i = 0, c = qMin(a.length(), b.length()); i < c; ++i) {
const QChar aC = a.at(i);
const QChar bC = b.at(i);
if (aC != bC) {
break;
} else if (aC == QDir::separator()) {
++levelsShared;
}
}
return levelsShared;
}
/**
* Try to find a proper include position from the DUChain:
*
* first look at existing imports (i.e. #include's) and find a fitting
* file with the same/similar path to the new include file and use that
*
* otherwise fallback and use the first valid code line before @p maxLine
*/
int findIncludeLineFromDUChain(KTextEditor::Document* document, int maxLine, const QString& includeFile)
{
DUChainReadLocker lock;
TopDUContext* top = DUChainUtils::standardContextForUrl(document->url());
if (!top) {
return -1;
}
int line = -1;
// first approach: look at existing #include statements and re-use them
int currentMatchQuality = -1;
foreach(const DUContext::Import& import, top->importedParentContexts()) {
if (import.position.line > maxLine) {
continue;
}
const int matchQuality = sharedPathLevel(import.context(top)->url().str(), includeFile);
if (matchQuality >= currentMatchQuality) {
line = import.position.line + 1;
currentMatchQuality = matchQuality;
}
}
if (line == -1) {
// Makes sure the line is not in a comment, moving it behind if needed.
// Just does very simple matching, should be ok for header copyright-notices and such.
Cpp::SourceCodeInsertion insertion(top);
int firstValid = insertion.firstValidCodeLineBefore(maxLine);
if(firstValid <= maxLine) {
line = firstValid;
}
}
return line;
}
///Decide whether the file is allowed to be included directly. If yes, this should return false.
bool isBlacklistedInclude(const KUrl& url) {
QString fileName = url.fileName();
if(isSource(fileName))
return true;
//Do not allow including directly from the bits directory. Instead use one of the forwarding headers in other directories, when possible.
if(url.upUrl().fileName() == "bits" && url.path().contains("/include/c++/")) {
return true;
}
return false;
}
QualifiedIdentifier removeTemplateParameters(const QualifiedIdentifier& baseIdentifier) {
QualifiedIdentifier identifier;
for(int a = 0; a < baseIdentifier.count(); ++a) {
Identifier part = baseIdentifier.at(a);
part.clearTemplateIdentifiers();
identifier.push(part);
}
return identifier;
}
QList<KDevelop::CompletionTreeItemPointer> itemsForFile(const QString& displayTextPrefix, const QString& file,
const Path::List& includePaths, const Path& currentPath,
const IndexedDeclaration& decl,
uint argumentHintDepth,
QSet<QString>& directives)
{
QList<KDevelop::CompletionTreeItemPointer> ret;
//We have found a potential declaration. Now find the shortest include path.
QString shortestDirective;
bool isRelativeToCurrentDir = false;
if(isSource(file))
return ret;
const Path canonicalFile(QFileInfo(file).canonicalFilePath());
foreach(const Path& includePath, includePaths) {
QString relative = includePath.relativePath( canonicalFile );
if(relative.startsWith("./"))
relative = relative.mid(2);
if(shortestDirective.isEmpty() || (relative.length() < shortestDirective.length() && (allowDotDot || !relative.startsWith(".."))) || (shortestDirective.startsWith("..") && !relative.startsWith(".."))) {
shortestDirective = relative;
isRelativeToCurrentDir = includePath == currentPath;
}
}
if(!shortestDirective.isEmpty()) {
if(isRelativeToCurrentDir)
shortestDirective = "\"" + shortestDirective + "\"";
else
shortestDirective = "<" + shortestDirective + ">";
if(!directives.contains(shortestDirective))
ret << KDevelop::CompletionTreeItemPointer(new MissingIncludeCompletionItem(shortestDirective, file, displayTextPrefix, decl, (int)argumentHintDepth));
directives.insert(shortestDirective);
}
return ret;
}
struct DirectiveShorterThan {
bool operator()(const KDevelop::CompletionTreeItemPointer& lhs, const KDevelop::CompletionTreeItemPointer& rhs) {
const MissingIncludeCompletionItem* l = dynamic_cast<const MissingIncludeCompletionItem*>(lhs.data());
const MissingIncludeCompletionItem* r = dynamic_cast<const MissingIncludeCompletionItem*>(rhs.data());
if(l && r)
return l->m_addedInclude.length() < r->m_addedInclude.length();
return false;
}
};
QStringList candidateIncludeFiles(Declaration* decl) {
QStringList ret;
bool inBlacklistDir = isBlacklistedInclude(decl->url().toUrl());
foreach(KDevelop::ParsingEnvironmentFilePointer ptr, decl->topContext()->parsingEnvironmentFile()->importers()) {
if(ptr->imports().count() == 1 || inBlacklistDir) {
if(isBlacklistedInclude(ptr->url().toUrl()))
continue;
//This file is a forwader, add it to the list
//Forwarders must be completely empty
if(ptr->topContext()->localDeclarations().count())
continue;
QString file(ptr->url().toUrl().toLocalFile());
ret << file;
}
}
if(!inBlacklistDir)
ret << decl->url().toUrl().toLocalFile();
return ret;
}
/**
* Try to find include candidates based solely on the string of the unknown id @p id
*
* Example: We have 'QState' in our source file, it is unknown
* This method then looks through the include paths used by @p source and returns all
* files matching the file name 'QState'
*
* @note DUChain must be locked
*/
QStringList candidateIncludeFilesFromNameMatcher(const QList<IncludeItem>& includeItems, const QualifiedIdentifier& id)
{
QStringList result;
for (const IncludeItem& item : includeItems) {
// we never want to have directories in the result set
if (item.isDirectory)
continue;
if (item.name == id.toString() && !isBlacklistedInclude(item.url())) {
TopDUContext* top = DUChainUtils::standardContextForUrl(item.url());
// if this file was already parsed, and we don't find a declaration for id => discard
if (top && top->findDeclarations(id).isEmpty()) {
continue;
}
result << item.url().toLocalFile();
}
}
return result;
}
KSharedPtr<MissingIncludeCompletionItem> includeDirectiveFromUrl(const KUrl& fromUrl, const IndexedDeclaration& decl) {
KSharedPtr<MissingIncludeCompletionItem> item;
if(decl.data()) {
QSet<QString> temp;
QStringList candidateFiles = candidateIncludeFiles(decl.data());
QList<KDevelop::CompletionTreeItemPointer> items;
const Path fromPath(fromUrl);
const auto &includePaths = CppUtils::findIncludePaths(fromPath.toLocalFile());
foreach(const QString& file, candidateFiles)
items += itemsForFile(QString(), file, includePaths, fromPath, decl, 0, temp);
qSort<QList<KDevelop::CompletionTreeItemPointer>::iterator, DirectiveShorterThan>(items.begin(), items.end(), DirectiveShorterThan());
if(!items.isEmpty()) {
item = KSharedPtr<MissingIncludeCompletionItem>(dynamic_cast<MissingIncludeCompletionItem*>(items.begin()->data()));
}
}
return item;
}
QList<KDevelop::CompletionTreeItemPointer> missingIncludeCompletionItems(const QString& expression,
const QString& displayTextPrefix,
const Cpp::ExpressionEvaluationResult& expressionResult,
const KDevelop::DUContextPointer& context,
int argumentHintDepth,
bool needInstance)
{
DUChainReadLocker lock;
if (!context)
return {};
AbstractType::Ptr type = TypeUtils::targetType(expressionResult.type.abstractType(), context->topContext());
//Collect all visible "using namespace" imports
QList<Declaration*> imports = context->findDeclarations( globalImportIdentifier() );
QSet<QualifiedIdentifier> prefixes;
prefixes.insert(QualifiedIdentifier());
foreach(Declaration* importDecl, imports) {
NamespaceAliasDeclaration* aliasDecl = dynamic_cast<NamespaceAliasDeclaration*>(importDecl);
if(aliasDecl) {
prefixes.insert(aliasDecl->importIdentifier());
}else{
kDebug() << "Import is not based on NamespaceAliasDeclaration";
}
}
QualifiedIdentifier namespaceScope = context->scopeIdentifier(false);
for(int a = 1; a <= namespaceScope.count(); ++a)
prefixes << namespaceScope.left(a); //Also search within enclosing namespaces
QList<KDevelop::CompletionTreeItemPointer> ret;
QList<KDevelop::CompletionTreeItemPointer> blacklistRet;
QualifiedIdentifier identifier;
if(type) {
DelayedType::Ptr delayed = type.cast<DelayedType>();
if(delayed)
//Remove all template parameters, because the symbol-table doesn't know about those
identifier = removeTemplateParameters(delayed->identifier().identifier().identifier());
IdentifiedType* idType = dynamic_cast<IdentifiedType*>(type.unsafeData());
if(idType) {
identifier = removeTemplateParameters(idType->qualifiedIdentifier());
}
}else{
//expression probably contains a part that needs to be resolved
if(expression.contains(".") || expression.contains("->")) {
///@todo Check if parts of the expression are unresolved, like in "unresolvedClass.callFunction"
kDebug() << "doing nothing with expression" << expression;
}else{
kDebug() << "looking up" << expression << "as qualified identifier";
identifier = removeTemplateParameters(QualifiedIdentifier(expression));
QList<Declaration*> visibleDecls = context->findDeclarations(identifier);
foreach(Declaration* decl, visibleDecls) {
if(!decl->isForwardDeclaration())
return ret; //Do not search for fitting declarations if a valid one is visible right now from here
}
}
}
if(identifier.isEmpty()) {
return ret;
}
KUrl currentUrl(context->topContext()->url().str());
const auto currentPath = Path(currentUrl).parent();
Cpp::EnvironmentFilePointer env(dynamic_cast<Cpp::EnvironmentFile*>(context->topContext()->parsingEnvironmentFile().data()));
if(!env)
return ret;
Path::List includePaths;
foreach(const IndexedString& path, env->includePaths())
includePaths << Path(path.toUrl());
includePaths.prepend(currentPath);
QSet<QString> directives;
QSet<DeclarationId> haveForwardDeclarationItems;
///Search the persistent symbol table
foreach(QualifiedIdentifier prefix, prefixes) {
prefix.setExplicitlyGlobal(false);
const IndexedDeclaration* declarations;
uint declarationCount;
QualifiedIdentifier id = prefix + identifier;
PersistentSymbolTable::self().declarations( id, declarationCount, declarations );
if(declarationCount > maxDeclarationCount)
declarationCount = maxDeclarationCount;
for(uint a = 0; a < declarationCount; ++a) {
KDevelop::ParsingEnvironmentFilePointer env = DUChain::self()->environmentFileForDocument(declarations[a].indexedTopContext());
if(!env || !dynamic_cast<Cpp::EnvironmentFile*>(env.data()))
continue;
Declaration* decl = declarations[a].declaration();
if(!decl)
continue;
if(dynamic_cast<KDevelop::AliasDeclaration*>(decl))
continue;
if(!isSource(context->url().str())) {
if(decl && (decl->context()->type() == DUContext::Namespace || decl->context()->type() == DUContext::Global) && !needInstance && (decl->type<CppClassType>() || decl->type<KDevelop::EnumerationType>()) ) {
if(!haveForwardDeclarationItems.contains(decl->id()))
ret += KDevelop::CompletionTreeItemPointer( new ForwardDeclarationItem(DeclarationPointer(decl)) );
haveForwardDeclarationItems.insert(decl->id());
}
}
if(decl && !decl->isForwardDeclaration()) {
if(context->topContext()->imports(decl->topContext(), CursorInRevision::invalid()))
continue;
QString file(decl->url().toUrl().toLocalFile());
bool inBlacklistDir = isBlacklistedInclude(decl->url().toUrl());
auto candidateFiles = candidateIncludeFiles(decl);
kDebug() << "candidates from DUChain:" << candidateFiles;
for (const QString& file : candidateFiles) {
ret += itemsForFile(displayTextPrefix, file, includePaths, currentPath, decl, argumentHintDepth, directives);
}
if (inBlacklistDir) {
blacklistRet += itemsForFile(displayTextPrefix, file, includePaths, currentPath, decl, argumentHintDepth, directives);
}
}
}
}
lock.unlock();
// NOTE: this will acquire the foreground lock and thus we must not hold the duchain lock here
const QList<IncludeItem> includeItems = CppUtils::allFilesInIncludePath(currentUrl.toLocalFile(), false, QString());
lock.lock();
if (!context)
return ret;
auto candidateFiles = candidateIncludeFilesFromNameMatcher(includeItems, identifier);
kDebug() << "candidates from name matching:" << candidateFiles;
for (const QString& file : candidateFiles) {
ret += itemsForFile(displayTextPrefix, file, includePaths, currentPath, IndexedDeclaration(), argumentHintDepth, directives);
}
if(ret.isEmpty())
ret += blacklistRet;
{
//If there is non-relative include directives, remove the relative ones
QList<KDevelop::CompletionTreeItemPointer> relativeIncludes;
QList<KDevelop::CompletionTreeItemPointer> nonRelativeIncludes;
for(QList<KDevelop::CompletionTreeItemPointer>::iterator it = ret.begin(); it != ret.end(); ) {
MissingIncludeCompletionItem* currentItem = dynamic_cast<MissingIncludeCompletionItem*>(it->data());
if(currentItem) {
if(currentItem->m_addedInclude.contains("\"../") || currentItem->m_addedInclude.contains("<../"))
relativeIncludes << *it;
else
nonRelativeIncludes << *it;
}
++it;
}
if(!nonRelativeIncludes.isEmpty()) {
foreach(KDevelop::CompletionTreeItemPointer relative, relativeIncludes)
ret.removeAll(relative);
}
}
qSort<QList<KDevelop::CompletionTreeItemPointer>::iterator, DirectiveShorterThan>(ret.begin(), ret.end(), DirectiveShorterThan());
return ret;
}
MissingIncludeCompletionItem::MissingIncludeCompletionItem(const QString& addedInclude, const QString& canonicalFile,
const QString& displayTextPrefix,
const IndexedDeclaration& decl, int argumentHintDepth)
: m_argumentHintDepth(argumentHintDepth)
, m_addedInclude(addedInclude)
, m_canonicalPath(canonicalFile)
, m_displayTextPrefix(displayTextPrefix)
, m_decl(decl)
{
}
#define RETURN_CACHED_ICON(name) {static QIcon icon(KIcon(name).pixmap(QSize(16, 16))); return icon;}
QVariant MissingIncludeCompletionItem::data(const QModelIndex& index, int role, const KDevelop::CodeCompletionModel* model) const {
DUChainReadLocker lock(DUChain::lock(), 500);
if(!lock.locked()) {
kDebug(9007) << "Failed to lock the du-chain in time";
return QVariant();
}
if(role == Qt::DecorationRole)
if(index.column() == KTextEditor::CodeCompletionModel::Icon)
RETURN_CACHED_ICON("CTparents")
switch (role) {
case KTextEditor::CodeCompletionModel::IsExpandable:
return QVariant(true);
case KTextEditor::CodeCompletionModel::ExpandingWidget: {
if(!m_decl.data())
return QVariant();
Cpp::NavigationWidget* nav = new Cpp::NavigationWidget(DeclarationPointer(m_decl.data()), TopDUContextPointer(m_decl.data()->topContext()));
model->addNavigationWidget(this, nav);
QVariant v;
v.setValue<QWidget*>((QWidget*)nav);
return v;
}
case Qt::DisplayRole:
switch (index.column()) {
case KTextEditor::CodeCompletionModel::Prefix:
return i18n("Add include directive");
case KTextEditor::CodeCompletionModel::Name: {
const QString suffix = "#include " + m_addedInclude;
// note: m_displayTextPrefix already contains the spaces on the right
if(!m_decl.data())
return i18nc("file content unknown", "%1<unknown contents>, %2", m_displayTextPrefix, suffix);
else if(m_decl.data()->kind() == Declaration::Namespace)
return QString("%1namespace %2, %3").arg(m_displayTextPrefix, m_decl.data()->identifier().toString(), suffix);
else {
return QString("%1%2, %3").arg(m_displayTextPrefix, m_decl.data()->toString()).arg(suffix);
}
}
}
break;
case KTextEditor::CodeCompletionModel::ItemSelected:
{
if(!m_decl.data())
return QVariant();
return QVariant( Cpp::NavigationWidget::shortDescription(m_decl.data()) );
}
}
return QVariant();
}
QString MissingIncludeCompletionItem::lineToInsert() const {
return "#include " + m_addedInclude;
}
void MissingIncludeCompletionItem::execute(KTextEditor::Document* document, const KTextEditor::Range& word) {
// first try to find a proper include position from the DUChain
int line = findIncludeLineFromDUChain(document, word.start().line(), m_canonicalPath);
// in case we couldn't find a duchain for this document, fallback to simple
// "parsing" of the file and look for other #include statements we could
// use as a position to add our line to
// TODO: never add inside comments!
if (line == -1) {
int lastLineWithInclude = -1;
int checkLines = word.start().line() -1;
// make sure we don't add an include in a conditional #if or #ifdef block
int rppConditionalLevel = 0;
for(int a = 0; a < checkLines; ++a) {
QString lineText = document->line(a).trimmed();
if(lineText.startsWith("#if")) {
rppConditionalLevel++;
} else if (rppConditionalLevel > 0 && lineText.startsWith("#endif")) {
rppConditionalLevel--;
} else if(rppConditionalLevel == 0 && lineText.startsWith("#include")) {
QString ending = lineText;
if(!ending.isEmpty())
ending = ending.left( ending.length()-1 ).trimmed(); //Remove the last > or "
if(!ending.endsWith(".moc"))
lastLineWithInclude = a;
}
}
if (lastLineWithInclude != -1) {
line = lastLineWithInclude;
}
}
// otherwise we just add ad the beginning for the document
// TODO: skip first comment block, if it exists
document->insertLine(line, lineToInsert());
#ifndef TEST_COMPLETION
CodeCompletionModel::self()->startCompletionAfterParsing(IndexedString(document->url()));
#endif
}
int MissingIncludeCompletionItem::inheritanceDepth() const {
return 0;
}
ForwardDeclarationItem::ForwardDeclarationItem(KDevelop::DeclarationPointer decl) : NormalDeclarationCompletionItem(decl) {
}
QVariant ForwardDeclarationItem::data(const QModelIndex& index, int role, const KDevelop::CodeCompletionModel* model) const {
if(role == Qt::DisplayRole && index.column() == KTextEditor::CodeCompletionModel::Prefix)
return i18n("Add Forward-Declaration");
if(role == Qt::DecorationRole && index.column() == KTextEditor::CodeCompletionModel::Icon) {
RETURN_CACHED_ICON("dialog-ok"); ///@todo Better icon for the create-forward declaration action
}
QVariant ret = NormalDeclarationCompletionItem::data(index, role, model);
if(role == Qt::DisplayRole && index.column() == KTextEditor::CodeCompletionModel::Name) {
//Add some text behind the item, so we get some more info in minimal completion mode
DUChainReadLocker lock(DUChain::lock());
if(m_declaration)
return QString(m_declaration->qualifiedIdentifier().toString() + ": " + i18n("forward-declare"));
return ret;
// return m_displayTextPrefix + ": " + i18n("Add Forward-Declaration");
}
return ret;
}
void ForwardDeclarationItem::execute(KTextEditor::Document* document, const KTextEditor::Range& word) {
DUChainReadLocker lock(DUChain::lock());
if(m_declaration) {
TopDUContext* top = DUChainUtils::standardContextForUrl(document->url());
if(!top)
return;
Cpp::SourceCodeInsertion insertion(top);
insertion.setInsertBefore(KDevelop::SimpleCursor(word.start()));
insertion.insertForwardDeclaration(m_declaration.data());
lock.unlock();
insertion.changes().setReplacementPolicy(DocumentChangeSet::WarnOnFailedChange);
if(!insertion.changes().applyAllChanges())
return;
}
}
}
|