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 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394
|
/*
* This file is part of KDevelop
* Copyright 2014 Milian Wolff <mail@milianw.de>
* Copyright 2015 Sergey Kalinichev <kalinichev.so.0@gmail.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 <QRegularExpression>
#include <QStandardPaths>
#include <interfaces/icore.h>
#include <interfaces/idocumentcontroller.h>
#include <interfaces/iprojectcontroller.h>
#include <interfaces/iproject.h>
#include <language/duchain/duchainlock.h>
#include <language/duchain/ducontext.h>
#include <language/duchain/topducontext.h>
#include <language/duchain/declaration.h>
#include <language/duchain/classmemberdeclaration.h>
#include <language/duchain/classdeclaration.h>
#include <language/duchain/duchainutils.h>
#include <language/duchain/persistentsymboltable.h>
#include <language/duchain/types/integraltype.h>
#include <language/duchain/types/functiontype.h>
#include <language/duchain/types/pointertype.h>
#include <language/duchain/types/typealiastype.h>
#include <language/duchain/types/typeutils.h>
#include <language/duchain/stringhelpers.h>
#include <language/codecompletion/codecompletionmodel.h>
#include <language/codecompletion/normaldeclarationcompletionitem.h>
#include <language/codegen/documentchangeset.h>
#include <util/foregroundlock.h>
#include <custom-definesandincludes/idefinesandincludesmanager.h>
#include <project/projectmodel.h>
#include "../util/clangdebug.h"
#include "../util/clangtypes.h"
#include "../util/clangutils.h"
#include "../duchain/clangdiagnosticevaluator.h"
#include "../duchain/parsesession.h"
#include "../duchain/duchainutils.h"
#include "../duchain/navigationwidget.h"
#include "../clangsettings/clangsettingsmanager.h"
#include <algorithm>
#include <functional>
#include <memory>
#include <KTextEditor/Document>
#include <KTextEditor/View>
using namespace KDevelop;
namespace {
/// Maximum return-type string length in completion items
const int MAX_RETURN_TYPE_STRING_LENGTH = 20;
/// Priority of code-completion results. NOTE: Keep in sync with Clang code base.
enum CodeCompletionPriority {
/// Priority for the next initialization in a constructor initializer list.
CCP_NextInitializer = 7,
/// Priority for an enumeration constant inside a switch whose condition is of the enumeration type.
CCP_EnumInCase = 7,
CCP_LocalDeclarationMatch = 8,
CCP_DeclarationMatch = 12,
CCP_LocalDeclarationSimiliar = 17,
/// Priority for a send-to-super completion.
CCP_SuperCompletion = 20,
CCP_DeclarationSimiliar = 25,
/// Priority for a declaration that is in the local scope.
CCP_LocalDeclaration = 34,
/// Priority for a member declaration found from the current method or member function.
CCP_MemberDeclaration = 35,
/// Priority for a language keyword (that isn't any of the other categories).
CCP_Keyword = 40,
/// Priority for a code pattern.
CCP_CodePattern = 40,
/// Priority for a non-type declaration.
CCP_Declaration = 50,
/// Priority for a type.
CCP_Type = CCP_Declaration,
/// Priority for a constant value (e.g., enumerator).
CCP_Constant = 65,
/// Priority for a preprocessor macro.
CCP_Macro = 70,
/// Priority for a nested-name-specifier.
CCP_NestedNameSpecifier = 75,
/// Priority for a result that isn't likely to be what the user wants, but is included for completeness.
CCP_Unlikely = 80
};
/**
* Common base class for Clang code completion items.
*/
template<class Base>
class CompletionItem : public Base
{
public:
CompletionItem(const QString& display, const QString& prefix)
: Base()
, m_display(display)
, m_prefix(prefix)
, m_unimportant(false)
{
}
~CompletionItem() override = default;
QVariant data(const QModelIndex& index, int role, const CodeCompletionModel* /*model*/) const override
{
if (role == Qt::DisplayRole) {
if (index.column() == CodeCompletionModel::Prefix) {
return m_prefix;
} else if (index.column() == CodeCompletionModel::Name) {
return m_display;
}
}
return {};
}
void markAsUnimportant()
{
m_unimportant = true;
}
protected:
QString m_display;
QString m_prefix;
bool m_unimportant;
};
class OverrideItem : public CompletionItem<CompletionTreeItem>
{
public:
OverrideItem(const QString& nameAndParams, const QString& returnType)
: CompletionItem<CompletionTreeItem>(
nameAndParams,
i18n("Override %1", returnType)
)
, m_returnType(returnType)
{
}
QVariant data(const QModelIndex& index, int role, const CodeCompletionModel* model) const override
{
if (role == Qt::DecorationRole) {
if (index.column() == KTextEditor::CodeCompletionModel::Icon) {
return QIcon::fromTheme(QStringLiteral("CTparents"));
}
}
return CompletionItem<CompletionTreeItem>::data(index, role, model);
}
void execute(KTextEditor::View* view, const KTextEditor::Range& word) override
{
QString replacement = m_returnType + QLatin1Char(' ') + m_display.replace(QRegularExpression(QStringLiteral("\\s*=\\s*0")), QString());
bool appendSpecifer = true;
if (const auto* project =
KDevelop::ICore::self()->projectController()->findProjectForUrl(view->document()->url())) {
const auto arguments = KDevelop::IDefinesAndIncludesManager::manager()->parserArguments(
project->filesForPath(IndexedString(view->document()->url().path())).first());
const auto match = QRegularExpression(QStringLiteral(R"(-std=c\+\+(\w+))")).match(arguments);
appendSpecifer = match.hasMatch(); // assume non-modern if no standard is specified
if (appendSpecifer) {
const auto standard = match.capturedRef(1);
appendSpecifer = (standard != QLatin1String("98") && standard != QLatin1String("03"));
}
}
if (appendSpecifer) {
replacement.append(QLatin1String(" override;"));
} else {
replacement.append(QLatin1Char(';'));
}
DocumentChange overrideChange(IndexedString(view->document()->url()),
word,
QString{},
replacement);
overrideChange.m_ignoreOldText = true;
DocumentChangeSet changes;
changes.addChange(overrideChange);
changes.applyAllChanges();
}
private:
QString m_returnType;
};
/**
* Specialized completion item class for items which are represented by a Declaration
*/
class DeclarationItem : public CompletionItem<NormalDeclarationCompletionItem>
{
public:
DeclarationItem(Declaration* dec, const QString& display, const QString& prefix, const QString& replacement)
: CompletionItem<NormalDeclarationCompletionItem>(display, prefix)
, m_replacement(replacement)
{
m_declaration = dec;
}
QVariant data(const QModelIndex& index, int role, const CodeCompletionModel* model) const override
{
if (role == CodeCompletionModel::MatchQuality && m_matchQuality) {
return m_matchQuality;
}
auto ret = CompletionItem<NormalDeclarationCompletionItem>::data(index, role, model);
if (ret.isValid()) {
return ret;
}
return NormalDeclarationCompletionItem::data(index, role, model);
}
void execute(KTextEditor::View* view, const KTextEditor::Range& word) override
{
QString repl = m_replacement;
DUChainReadLocker lock;
if(!m_declaration){
return;
}
if(m_declaration->isFunctionDeclaration()) {
const auto functionType = m_declaration->type<FunctionType>();
// protect against buggy code that created the m_declaration,
// to mark it as a function but not assign a function type
if (!functionType)
return;
auto doc = view->document();
// Function pointer?
bool funcptr = false;
const auto line = doc->line(word.start().line());
auto pos = word.end().column() - 1;
while ( pos > 0 && (line.at(pos).isLetterOrNumber() || line.at(pos) == QLatin1Char(':')) ) {
pos--;
if ( line.at(pos) == QLatin1Char('&') ) {
funcptr = true;
break;
}
}
auto restEmpty = doc->characterAt(word.end() + KTextEditor::Cursor{0, 1}) == QChar();
bool didAddParentheses = false;
if ( !funcptr && doc->characterAt(word.end()) != QLatin1Char('(') ) {
repl += QLatin1String("()");
didAddParentheses = true;
}
view->document()->replaceText(word, repl);
if (functionType->indexedArgumentsSize() && didAddParentheses) {
view->setCursorPosition(word.start() + KTextEditor::Cursor(0, repl.size() - 1));
}
auto returnTypeIntegral = functionType->returnType().cast<IntegralType>();
if ( restEmpty && !funcptr && returnTypeIntegral && returnTypeIntegral->dataType() == IntegralType::TypeVoid ) {
// function returns void and rest of line is empty -- nothing can be done with the result
if (functionType->indexedArgumentsSize() ) {
// we placed the cursor inside the ()
view->document()->insertText(view->cursorPosition() + KTextEditor::Cursor(0, 1), QStringLiteral(";"));
}
else {
// we placed the cursor after the ()
view->document()->insertText(view->cursorPosition(), QStringLiteral(";"));
view->setCursorPosition(view->cursorPosition() + KTextEditor::Cursor{0, 1});
}
}
} else {
view->document()->replaceText(word, repl);
}
}
bool createsExpandingWidget() const override
{
return true;
}
QWidget* createExpandingWidget(const CodeCompletionModel* /*model*/) const override
{
return new ClangNavigationWidget(m_declaration, AbstractNavigationWidget::EmbeddableWidget);
}
int matchQuality() const
{
return m_matchQuality;
}
///Sets match quality from 0 to 10. 10 is the best fit.
void setMatchQuality(int value)
{
m_matchQuality = value;
}
void setInheritanceDepth(int depth)
{
m_inheritanceDepth = depth;
}
int argumentHintDepth() const override
{
return m_depth;
}
void setArgumentHintDepth(int depth)
{
m_depth = depth;
}
protected:
int m_matchQuality = 0;
int m_depth = 0;
QString m_replacement;
};
class ImplementsItem : public DeclarationItem
{
public:
static QString replacement(const FuncImplementInfo& info)
{
QString replacement = info.templatePrefix;
if (!info.isDestructor && !info.isConstructor) {
replacement += info.returnType + QLatin1Char(' ');
}
replacement += info.prototype + QLatin1String("\n{\n}\n");
return replacement;
}
explicit ImplementsItem(const FuncImplementInfo& item)
: DeclarationItem(item.declaration.data(), item.prototype,
i18n("Implement %1", item.isConstructor ? QStringLiteral("<constructor>") :
item.isDestructor ? QStringLiteral("<destructor>") : item.returnType),
replacement(item)
)
{
}
QVariant data(const QModelIndex& index, int role, const CodeCompletionModel* model) const override
{
if (index.column() == CodeCompletionModel::Arguments) {
// our display string already contains the arguments
return {};
}
return DeclarationItem::data(index, role, model);
}
void execute(KTextEditor::View* view, const KTextEditor::Range& word) override
{
auto* const document = view->document();
DocumentChangeSet changes;
KTextEditor::Cursor rangeStart = word.start();
// try and replace leading typed text that match the proposed implementation
const QString leading = document->line(word.end().line()).left(word.end().column());
const QString leadingNoSpace = removeWhitespace(leading);
if (!leadingNoSpace.isEmpty() && (removeWhitespace(m_display).startsWith(leadingNoSpace)
|| removeWhitespace(m_replacement).startsWith(leadingNoSpace))) {
const int removeSize = leading.end() - std::find_if_not(leading.begin(), leading.end(),
[](QChar c){ return c.isSpace(); });
rangeStart = {word.end().line(), word.end().column() - removeSize};
}
DocumentChange change(IndexedString(view->document()->url()),
KTextEditor::Range(rangeStart, word.end()),
QString(),
m_replacement);
change.m_ignoreOldText = true;
changes.addChange(change);
changes.applyAllChanges();
// Place cursor after the opening brace
// arbitrarily chose 4, as it would accommodate the template and return types on their own line
const auto searchRange = KTextEditor::Range(rangeStart, rangeStart.line() + 4, 0);
const auto results = view->document()->searchText(searchRange, QStringLiteral("{"));
if (!results.isEmpty()) {
view->setCursorPosition(results.first().end());
}
}
};
class ArgumentHintItem : public DeclarationItem
{
public:
struct CurrentArgumentRange
{
int start;
int end;
};
ArgumentHintItem(Declaration* decl, const QString& prefix, const QString& name, const QString& arguments, const CurrentArgumentRange& range)
: DeclarationItem(decl, name, prefix, {})
, m_range(range)
, m_arguments(arguments)
{}
QVariant data(const QModelIndex& index, int role, const CodeCompletionModel* model) const override
{
if (role == CodeCompletionModel::CustomHighlight && index.column() == CodeCompletionModel::Arguments && argumentHintDepth()) {
QTextCharFormat boldFormat;
boldFormat.setFontWeight(QFont::Bold);
const QList<QVariant> highlighting {
QVariant(m_range.start),
QVariant(m_range.end),
boldFormat,
};
return highlighting;
}
if (role == CodeCompletionModel::HighlightingMethod && index.column() == CodeCompletionModel::Arguments && argumentHintDepth()) {
return QVariant(CodeCompletionModel::CustomHighlighting);
}
if (index.column() == CodeCompletionModel::Arguments) {
return m_arguments;
}
return DeclarationItem::data(index, role, model);
}
private:
CurrentArgumentRange m_range;
QString m_arguments;
};
/**
* A minimalistic completion item for macros and such
*/
class SimpleItem : public CompletionItem<CompletionTreeItem>
{
public:
SimpleItem(const QString& display, const QString& prefix, const QString& replacement, const QIcon& icon = QIcon())
: CompletionItem<CompletionTreeItem>(display, prefix)
, m_replacement(replacement)
, m_icon(icon)
{
}
void execute(KTextEditor::View* view, const KTextEditor::Range& word) override
{
view->document()->replaceText(word, m_replacement);
}
QVariant data(const QModelIndex& index, int role, const CodeCompletionModel* model) const override
{
if (role == Qt::DecorationRole && index.column() == KTextEditor::CodeCompletionModel::Icon) {
return m_icon;
}
if (role == CodeCompletionModel::UnimportantItemRole) {
return m_unimportant;
}
return CompletionItem<CompletionTreeItem>::data(index, role, model);
}
private:
QString m_replacement;
QIcon m_icon;
};
/**
* Return true in case position @p position represents a cursor inside a comment
*/
bool isInsideComment(CXTranslationUnit unit, CXFile file, const KTextEditor::Cursor& position)
{
if (!position.isValid()) {
return false;
}
// TODO: This may get very slow for a large TU, investigate if we can improve this function
auto begin = clang_getLocation(unit, file, 1, 1);
auto end = clang_getLocation(unit, file, position.line() + 1, position.column() + 1);
CXSourceRange range = clang_getRange(begin, end);
// tokenize the whole range from the start until 'position'
// if we detect a comment token at this position, return true
const ClangTokens tokens(unit, range);
for (CXToken token : tokens) {
CXTokenKind tokenKind = clang_getTokenKind(token);
if (tokenKind != CXToken_Comment) {
continue;
}
auto range = ClangRange(clang_getTokenExtent(unit, token));
if (range.toRange().contains(position)) {
return true;
}
}
return false;
}
QString& elideStringRight(QString& str, int length)
{
if (str.size() > length + 3) {
return str.replace(length, str.size() - length, QStringLiteral("..."));
}
return str;
}
/**
* @return Value suited for @ref CodeCompletionModel::MatchQuality in the range [0.0, 10.0] (the higher the better)
*
* See https://clang.llvm.org/doxygen/CodeCompleteConsumer_8h_source.html for list of priorities
* They (currently) have a range from [-3, 80] (the lower, the better)
*/
int codeCompletionPriorityToMatchQuality(unsigned int completionPriority)
{
return 10u - qBound(0u, completionPriority, 80u) / 8;
}
int adjustPriorityForType(const AbstractType::Ptr& type, int completionPriority)
{
const auto modifier = 4;
if (type) {
const auto whichType = type->whichType();
if (whichType == AbstractType::TypePointer || whichType == AbstractType::TypeReference) {
// Clang considers all pointers as similar, this is not what we want.
completionPriority += modifier;
} else if (whichType == AbstractType::TypeStructure) {
// Clang considers all classes as similar too...
completionPriority += modifier;
} else if (whichType == AbstractType::TypeDelayed) {
completionPriority += modifier;
} else if (whichType == AbstractType::TypeAlias) {
auto aliasedType = type.cast<TypeAliasType>();
return adjustPriorityForType(aliasedType ? aliasedType->type() : AbstractType::Ptr(), completionPriority);
} else if (whichType == AbstractType::TypeFunction) {
auto functionType = type.cast<FunctionType>();
return adjustPriorityForType(functionType ? functionType->returnType() : AbstractType::Ptr(), completionPriority);
}
} else {
completionPriority += modifier;
}
return completionPriority;
}
/// Adjusts priority for the @p decl
int adjustPriorityForDeclaration(Declaration* decl, unsigned int completionPriority)
{
if(completionPriority < CCP_LocalDeclarationSimiliar || completionPriority > CCP_SuperCompletion){
return completionPriority;
}
return adjustPriorityForType(decl->abstractType(), completionPriority);
}
/**
* @return Whether the declaration represented by identifier @p identifier qualifies as completion result
*
* For example, we don't want to offer SomeClass::SomeClass as completion item to the user
* (otherwise we'd end up generating code such as 's.SomeClass();')
*/
bool isValidCompletionIdentifier(const QualifiedIdentifier& identifier)
{
const int count = identifier.count();
if (identifier.count() < 2) {
return true;
}
const Identifier scope = identifier.at(count-2);
const Identifier id = identifier.last();
if (scope == id) {
return false; // is constructor
}
const QString idString = id.toString();
if (idString.startsWith(QLatin1Char('~')) && scope.toString() == idString.midRef(1)) {
return false; // is destructor
}
return true;
}
/**
* @return Whether the declaration represented by identifier @p identifier qualifies as "special" completion result
*
* "Special" completion results are items that are likely not regularly used.
*
* Examples:
* - 'SomeClass::operator=(const SomeClass&)'
*/
bool isValidSpecialCompletionIdentifier(const QualifiedIdentifier& identifier)
{
if (identifier.count() < 2) {
return false;
}
const Identifier id = identifier.last();
const QString idString = id.toString();
if (idString.startsWith(QLatin1String("operator="))) {
return true; // is assignment operator
}
return false;
}
Declaration* findDeclaration(const QualifiedIdentifier& qid, const DUContextPointer& ctx, const CursorInRevision& position, QSet<Declaration*>& handled)
{
PersistentSymbolTable::Declarations decl = PersistentSymbolTable::self().declarations(qid);
const auto top = ctx->topContext();
const auto& importedContexts = top->importedParentContexts();
for (auto it = decl.iterator(); it; ++it) {
// if the context is not included, then this match is not correct for our consideration
// this fixes issues where we used to include matches from files that did not have
// anything to do with the current TU, e.g. the main from a different file or stuff like that
// it also reduces the chance of us picking up a function of the same name from somewhere else
// also, this makes sure the context has the correct language and we don't get confused by stuff
// from other language plugins
if (std::none_of(importedContexts.begin(), importedContexts.end(), [it] (const DUContext::Import& import) {
return import.topContextIndex() == it->indexedTopContext().index();
})) {
continue;
}
auto declaration = it->declaration();
if (!declaration) {
// Mitigate problems such as: Cannot load a top-context from file "/home/kfunk/.cache/kdevduchain/kdevelop-{foo}/topcontexts/6085"
// - the required language-support for handling ID 55 is probably not loaded
qCWarning(KDEV_CLANG) << "Detected an invalid declaration for" << qid;
continue;
}
if (declaration->kind() == Declaration::Instance && !declaration->isFunctionDeclaration()) {
break;
}
if (!handled.contains(declaration)) {
handled.insert(declaration);
return declaration;
}
}
const auto foundDeclarations = ctx->findDeclarations(qid, position);
for (auto dec : foundDeclarations) {
if (!handled.contains(dec)) {
handled.insert(dec);
return dec;
}
}
return nullptr;
}
/// If any parent of this context is a class, the closest class declaration is returned, nullptr otherwise
Declaration* classDeclarationForContext(const DUContextPointer& context, const CursorInRevision& position)
{
auto parent = context;
while (parent) {
if (parent->type() == DUContext::Class) {
break;
}
if (auto owner = parent->owner()) {
// Work-around for out-of-line methods. They have Helper context instead of Class context
if (owner->context() && owner->context()->type() == DUContext::Helper) {
auto qid = owner->qualifiedIdentifier();
qid.pop();
QSet<Declaration*> tmp;
auto decl = findDeclaration(qid, context, position, tmp);
if (decl && decl->internalContext() && decl->internalContext()->type() == DUContext::Class) {
parent = decl->internalContext();
break;
}
}
}
parent = parent->parentContext();
}
return parent ? parent->owner() : nullptr;
}
class LookAheadItemMatcher
{
public:
explicit LookAheadItemMatcher(const TopDUContextPointer& ctx)
: m_topContext(ctx)
, m_enabled(ClangSettingsManager::self()->codeCompletionSettings().lookAhead)
{}
/// Adds all local declarations for @p declaration into possible look-ahead items.
void addDeclarations(Declaration* declaration)
{
if (!m_enabled) {
return;
}
if (declaration->kind() != Declaration::Instance) {
return;
}
auto type = typeForDeclaration(declaration);
auto identifiedType = dynamic_cast<const IdentifiedType*>(type.data());
if (!identifiedType) {
return;
}
addDeclarationsForType(identifiedType, declaration);
}
/// Add type for matching. This type'll be used for filtering look-ahead items
/// Only items with @p type will be returned through @sa matchedItems
void addMatchedType(const IndexedType& type)
{
if (type.isValid()) {
matchedTypes.insert(type);
}
}
/// @return look-ahead items that math given types. @sa addMatchedType
QList<CompletionTreeItemPointer> matchedItems()
{
QList<CompletionTreeItemPointer> lookAheadItems;
for (const auto& pair: qAsConst(possibleLookAheadDeclarations)) {
auto decl = pair.first;
if (matchedTypes.contains(decl->indexedType())) {
auto parent = pair.second;
const QLatin1String access = (parent->abstractType()->whichType() == AbstractType::TypePointer)
? QLatin1String("->") : QLatin1String(".");
const QString text = parent->identifier().toString() + access + decl->identifier().toString();
auto item = new DeclarationItem(decl, text, {}, text);
item->setMatchQuality(8);
lookAheadItems.append(CompletionTreeItemPointer(item));
}
}
return lookAheadItems;
}
private:
AbstractType::Ptr typeForDeclaration(const Declaration* decl)
{
return TypeUtils::targetType(decl->abstractType(), m_topContext.data());
}
void addDeclarationsForType(const IdentifiedType* identifiedType, Declaration* declaration)
{
if (auto typeDecl = identifiedType->declaration(m_topContext.data())) {
if (dynamic_cast<ClassDeclaration*>(typeDecl->logicalDeclaration(m_topContext.data()))) {
if (!typeDecl->internalContext()) {
return;
}
const auto& localDeclarations = typeDecl->internalContext()->localDeclarations();
for (auto localDecl : localDeclarations) {
if(localDecl->identifier().isEmpty()){
continue;
}
if(auto classMember = dynamic_cast<ClassMemberDeclaration*>(localDecl)){
// TODO: Also add protected/private members if completion is inside this class context.
if(classMember->accessPolicy() != Declaration::Public){
continue;
}
}
if (!localDecl->abstractType()) {
continue;
}
if (localDecl->abstractType()->whichType() == AbstractType::TypeIntegral) {
if (auto integralType = declaration->abstractType().cast<IntegralType>()) {
if (integralType->dataType() == IntegralType::TypeVoid) {
continue;
}
}
}
possibleLookAheadDeclarations.insert({localDecl, declaration});
}
}
}
}
// Declaration and it's context
using DeclarationContext = QPair<Declaration*, Declaration*>;
/// Types of declarations that look-ahead completion items can have
QSet<IndexedType> matchedTypes;
// List of declarations that can be added to the Look Ahead group
// Second declaration represents context
QSet<DeclarationContext> possibleLookAheadDeclarations;
TopDUContextPointer m_topContext;
bool m_enabled;
};
struct MemberAccessReplacer : public QObject
{
Q_OBJECT
public:
enum Type {
None,
DotToArrow,
ArrowToDot
};
Q_ENUM(Type)
public Q_SLOTS:
void replaceCurrentAccess(MemberAccessReplacer::Type type)
{
if (auto document = ICore::self()->documentController()->activeDocument()) {
if (auto textDocument = document->textDocument()) {
auto activeView = document->activeTextView();
if (!activeView) {
return;
}
auto cursor = activeView->cursorPosition();
QString oldAccess, newAccess;
if (type == ArrowToDot) {
oldAccess = QStringLiteral("->");
newAccess = QStringLiteral(".");
} else {
oldAccess = QStringLiteral(".");
newAccess = QStringLiteral("->");
}
auto oldRange = KTextEditor::Range(cursor - KTextEditor::Cursor(0, oldAccess.length()), cursor);
// This code needed for testReplaceMemberAccess test
// Maybe we should do a similar thing for '->' to '.' direction, but this is not so important
while (textDocument->text(oldRange) == QLatin1String(" ") && oldRange.start().column() >= 0) {
oldRange = KTextEditor::Range({oldRange.start().line(), oldRange.start().column() - 1},
{oldRange.end().line(), oldRange.end().column() - 1});
}
if (oldRange.start().column() >= 0 && textDocument->text(oldRange) == oldAccess) {
textDocument->replaceText(oldRange, newAccess);
}
}
}
}
};
static MemberAccessReplacer s_memberAccessReplacer;
}
ClangCodeCompletionContext::ClangCodeCompletionContext(const DUContextPointer& context,
const ParseSessionData::Ptr& sessionData,
const QUrl& url,
const KTextEditor::Cursor& position,
const QString& text,
const QString& followingText
)
: CodeCompletionContext(context, text + followingText, CursorInRevision::castFromSimpleCursor(position), 0)
, m_results(nullptr, clang_disposeCodeCompleteResults)
, m_parseSessionData(sessionData)
{
qRegisterMetaType<MemberAccessReplacer::Type>();
const QByteArray file = url.toLocalFile().toUtf8();
ParseSession session(m_parseSessionData);
QVector<UnsavedFile> otherUnsavedFiles;
{
ForegroundLock lock;
otherUnsavedFiles = ClangUtils::unsavedFiles();
}
QVector<CXUnsavedFile> allUnsaved;
{
const unsigned int completeOptions = clang_defaultCodeCompleteOptions();
CXUnsavedFile unsaved;
unsaved.Filename = file.constData();
const QByteArray content = m_text.toUtf8();
unsaved.Contents = content.constData();
unsaved.Length = content.size();
allUnsaved.reserve(otherUnsavedFiles.size() + 1);
for (const auto& f : qAsConst(otherUnsavedFiles)) {
allUnsaved.append(f.toClangApi());
}
allUnsaved.append(unsaved);
m_results.reset(clang_codeCompleteAt(session.unit(), file.constData(),
position.line() + 1, position.column() + 1,
allUnsaved.data(), allUnsaved.size(),
completeOptions));
if (!m_results) {
qCWarning(KDEV_CLANG) << "Something went wrong during 'clang_codeCompleteAt' for file" << file;
return;
}
auto numDiagnostics = clang_codeCompleteGetNumDiagnostics(m_results.get());
for (uint i = 0; i < numDiagnostics; i++) {
auto diagnostic = clang_codeCompleteGetDiagnostic(m_results.get(), i);
auto diagnosticType = ClangDiagnosticEvaluator::diagnosticType(diagnostic);
clang_disposeDiagnostic(diagnostic);
if (diagnosticType == ClangDiagnosticEvaluator::ReplaceWithArrowProblem || diagnosticType == ClangDiagnosticEvaluator::ReplaceWithDotProblem) {
MemberAccessReplacer::Type replacementType;
if (diagnosticType == ClangDiagnosticEvaluator::ReplaceWithDotProblem) {
replacementType = MemberAccessReplacer::ArrowToDot;
} else {
replacementType = MemberAccessReplacer::DotToArrow;
}
QMetaObject::invokeMethod(&s_memberAccessReplacer, "replaceCurrentAccess", Qt::QueuedConnection,
Q_ARG(MemberAccessReplacer::Type, replacementType));
m_valid = false;
return;
}
}
auto addMacros = ClangSettingsManager::self()->codeCompletionSettings().macros;
if (!addMacros) {
m_filters |= NoMacros;
}
}
if (!m_results->NumResults) {
const auto trimmedText = text.trimmed();
if (trimmedText.endsWith(QLatin1Char('.'))) {
// TODO: This shouldn't be needed if Clang provided diagnostic.
// But it doesn't always do it, so let's try to manually determine whether '.' is used instead of '->'
m_text = trimmedText.leftRef(trimmedText.size() - 1) + QLatin1String("->");
CXUnsavedFile unsaved;
unsaved.Filename = file.constData();
const QByteArray content = m_text.toUtf8();
unsaved.Contents = content.constData();
unsaved.Length = content.size();
allUnsaved[allUnsaved.size() - 1] = unsaved;
m_results.reset(clang_codeCompleteAt(session.unit(), file.constData(),
position.line() + 1, position.column() + 1 + 1,
allUnsaved.data(), allUnsaved.size(),
clang_defaultCodeCompleteOptions()));
if (m_results && m_results->NumResults) {
QMetaObject::invokeMethod(&s_memberAccessReplacer, "replaceCurrentAccess", Qt::QueuedConnection,
Q_ARG(MemberAccessReplacer::Type, MemberAccessReplacer::DotToArrow));
}
m_valid = false;
return;
}
}
// check 'isValidPosition' after parsing the new content
auto clangFile = session.file(file);
if (!isValidPosition(session.unit(), clangFile)) {
m_valid = false;
return;
}
m_completionHelper.computeCompletions(session, clangFile, position);
}
ClangCodeCompletionContext::~ClangCodeCompletionContext()
{
}
bool ClangCodeCompletionContext::isValidPosition(CXTranslationUnit unit, CXFile file) const
{
if (isInsideComment(unit, file, m_position.castToSimpleCursor())) {
clangDebug() << "Invalid completion context: Inside comment";
return false;
}
return true;
}
QList<CompletionTreeItemPointer> ClangCodeCompletionContext::completionItems(bool& abort, bool /*fullCompletion*/)
{
if (!m_valid || !m_duContext || !m_results) {
return {};
}
const auto ctx = DUContextPointer(m_duContext->findContextAt(m_position));
/// Normal completion items, such as 'void Foo::foo()'
QList<CompletionTreeItemPointer> items;
/// Stuff like 'Foo& Foo::operator=(const Foo&)', etc. Not regularly used by our users.
QList<CompletionTreeItemPointer> specialItems;
/// Macros from the current context
QList<CompletionTreeItemPointer> macros;
/// Builtins reported by Clang
QList<CompletionTreeItemPointer> builtin;
// two sets of handled declarations to prevent duplicates and make sure we show
// all available overloads
QSet<Declaration*> handled;
// this is only used for the CXCursor_OverloadCandidate completion items
QSet<Declaration*> overloadsHandled;
LookAheadItemMatcher lookAheadMatcher(TopDUContextPointer(ctx->topContext()));
// If ctx is/inside the Class context, this represents that context.
const auto currentClassContext = classDeclarationForContext(ctx, m_position);
// HACK: try to build a fallback parent ID from the USR
// otherwise we won't identify typedefed anon structs correctly :(
auto parentFromUSR = [this]() -> QString {
const auto containerUSR = ClangString(clang_codeCompleteGetContainerUSR(m_results.get())).toString();
const auto lastAt = containerUSR.lastIndexOf(QLatin1Char('@'));
if (lastAt <= 0 || containerUSR[lastAt - 1] != QLatin1Char('A')) // we use this hack only for _A_non stuff
return {};
return containerUSR.mid(lastAt + 1);
};
const auto fallbackParentFromUSR = parentFromUSR();
clangDebug() << "Clang found" << m_results->NumResults << "completion results";
for (uint i = 0; i < m_results->NumResults; ++i) {
if (abort) {
return {};
}
auto result = m_results->Results[i];
#if CINDEX_VERSION_MINOR >= 30
const bool isOverloadCandidate = result.CursorKind == CXCursor_OverloadCandidate;
#else
const bool isOverloadCandidate = false;
#endif
const auto availability = clang_getCompletionAvailability(result.CompletionString);
if (availability == CXAvailability_NotAvailable) {
continue;
}
const bool isMacroDefinition = result.CursorKind == CXCursor_MacroDefinition;
if (isMacroDefinition && m_filters & NoMacros) {
continue;
}
const bool isBuiltin = (result.CursorKind == CXCursor_NotImplemented);
if (isBuiltin && m_filters & NoBuiltins) {
continue;
}
const bool isDeclaration = !isMacroDefinition && !isBuiltin;
if (isDeclaration && m_filters & NoDeclarations) {
continue;
}
if (availability == CXAvailability_NotAccessible && (!isDeclaration || !currentClassContext)) {
continue;
}
// the string that would be needed to type, usually the identifier of something. Also we use it as name for code completion declaration items.
QString typed;
// the return type of a function e.g.
QString resultType;
// the replacement text when an item gets executed
QString replacement;
QString arguments;
ArgumentHintItem::CurrentArgumentRange argumentRange;
//BEGIN function signature parsing
// nesting depth of parentheses
int parenDepth = 0;
enum FunctionSignatureState {
// not yet inside the function signature
Before,
// any token is part of the function signature now
Inside,
// finished parsing the function signature
After
};
// current state
FunctionSignatureState signatureState = Before;
//END function signature parsing
std::function<void (CXCompletionString)> processChunks = [&] (CXCompletionString completionString) {
const uint chunks = clang_getNumCompletionChunks(completionString);
for (uint j = 0; j < chunks; ++j) {
const auto kind = clang_getCompletionChunkKind(completionString, j);
if (kind == CXCompletionChunk_Optional) {
completionString = clang_getCompletionChunkCompletionString(completionString, j);
if (completionString) {
processChunks(completionString);
}
continue;
}
// We don't need function signature for declaration items, we can get it directly from the declaration. Also adding the function signature to the "display" would break the "Detailed completion" option.
if (isDeclaration && !typed.isEmpty()) {
// TODO: When parent context for CXCursor_OverloadCandidate is fixed remove this check
if (!isOverloadCandidate) {
break;
}
}
const QString string = ClangString(clang_getCompletionChunkText(completionString, j)).toString();
switch (kind) {
case CXCompletionChunk_TypedText:
typed = string;
replacement += string;
break;
case CXCompletionChunk_ResultType:
resultType = string;
continue;
case CXCompletionChunk_Placeholder:
if (signatureState == Inside) {
arguments += string;
}
continue;
case CXCompletionChunk_LeftParen:
if (signatureState == Before && !parenDepth) {
signatureState = Inside;
}
parenDepth++;
break;
case CXCompletionChunk_RightParen:
--parenDepth;
if (signatureState == Inside && !parenDepth) {
arguments += QLatin1Char(')');
signatureState = After;
}
break;
case CXCompletionChunk_Text:
if (isOverloadCandidate) {
typed += string;
}
else if (result.CursorKind == CXCursor_EnumConstantDecl) {
replacement += string;
}
else if (result.CursorKind == CXCursor_EnumConstantDecl) {
replacement += string;
}
break;
case CXCompletionChunk_CurrentParameter:
argumentRange.start = arguments.size();
argumentRange.end = string.size();
break;
default:
break;
}
if (signatureState == Inside) {
arguments += string;
}
}
};
processChunks(result.CompletionString);
// we have our own implementation of an override helper
// TODO: use the clang-provided one, if available
if (typed.endsWith(QLatin1String(" override")))
continue;
// TODO: No closing paren if default parameters present
if (isOverloadCandidate && !arguments.endsWith(QLatin1Char(')'))) {
arguments += QLatin1Char(')');
}
// ellide text to the right for overly long result types (templates especially)
elideStringRight(resultType, MAX_RETURN_TYPE_STRING_LENGTH);
static const auto noIcon = QIcon(QStandardPaths::locate(QStandardPaths::GenericDataLocation,
QStringLiteral("kdevelop/pics/namespace.png")));
if (isDeclaration) {
const Identifier id(typed);
QualifiedIdentifier qid;
auto parent = ClangString(clang_getCompletionParent(result.CompletionString, nullptr)).toString();
if (parent.isEmpty() && !fallbackParentFromUSR.isEmpty()) {
parent = fallbackParentFromUSR;
}
if (!parent.isEmpty()) {
qid = QualifiedIdentifier(parent);
}
qid.push(id);
if (!isValidCompletionIdentifier(qid)) {
continue;
}
if (isOverloadCandidate && resultType.isEmpty() && parent.isEmpty()) {
// workaround: find constructor calls for non-namespaced classes
// TODO: return the namespaced class as parent in libclang
qid.push(id);
}
auto found = findDeclaration(qid, ctx, m_position, isOverloadCandidate ? overloadsHandled : handled);
CompletionTreeItemPointer item;
if (found) {
// TODO: Bug in Clang: protected members from base classes not accessible in derived classes.
if (availability == CXAvailability_NotAccessible) {
if (auto cl = dynamic_cast<ClassMemberDeclaration*>(found)) {
if (cl->accessPolicy() != Declaration::Protected) {
continue;
}
auto declarationClassContext = classDeclarationForContext(DUContextPointer(found->context()), m_position);
uint steps = 10;
auto inheriters = DUChainUtils::inheriters(declarationClassContext, steps);
if(!inheriters.contains(currentClassContext)){
continue;
}
} else {
continue;
}
}
DeclarationItem* declarationItem = nullptr;
if (isOverloadCandidate) {
declarationItem = new ArgumentHintItem(found, resultType, typed, arguments, argumentRange);
declarationItem->setArgumentHintDepth(1);
} else {
declarationItem = new DeclarationItem(found, typed, resultType, replacement);
}
const unsigned int completionPriority = adjustPriorityForDeclaration(found, clang_getCompletionPriority(result.CompletionString));
const bool bestMatch = completionPriority <= CCP_SuperCompletion;
//don't set best match property for internal identifiers, also prefer declarations from current file
const auto isInternal = found->indexedIdentifier().identifier().toString().startsWith(QLatin1String("__"));
if (bestMatch && !isInternal) {
const int matchQuality = codeCompletionPriorityToMatchQuality(completionPriority);
declarationItem->setMatchQuality(matchQuality);
// TODO: LibClang missing API to determine expected code completion type.
if (auto functionType = found->type<FunctionType>()) {
lookAheadMatcher.addMatchedType(IndexedType(functionType->returnType()));
}
lookAheadMatcher.addMatchedType(found->indexedType());
} else {
declarationItem->setInheritanceDepth(completionPriority);
lookAheadMatcher.addDeclarations(found);
}
if ( isInternal ) {
declarationItem->markAsUnimportant();
}
item = declarationItem;
} else {
if (isOverloadCandidate) {
// TODO: No parent context for CXCursor_OverloadCandidate items, hence qid is broken -> no declaration found
auto ahi = new ArgumentHintItem({}, resultType, typed, arguments, argumentRange);
ahi->setArgumentHintDepth(1);
item = ahi;
} else {
// still, let's trust that Clang found something useful and put it into the completion result list
clangDebug() << "Could not find declaration for" << qid;
auto instance = new SimpleItem(typed + arguments, resultType, replacement, noIcon);
instance->markAsUnimportant();
item = CompletionTreeItemPointer(instance);
}
}
if (isValidSpecialCompletionIdentifier(qid)) {
// If it's a special completion identifier e.g. "operator=(const&)" and we don't have a declaration for it, don't add it into completion list, as this item is completely useless and pollutes the test case.
// This happens e.g. for "class A{}; a.|". At | we have "operator=(const A&)" as a special completion identifier without a declaration.
if(item->declaration()){
specialItems.append(item);
}
} else {
items.append(item);
}
continue;
}
if (result.CursorKind == CXCursor_MacroDefinition) {
// TODO: grouping of macros and built-in stuff
const auto text = QString(typed + arguments);
auto instance = new SimpleItem(text, resultType, replacement, noIcon);
auto item = CompletionTreeItemPointer(instance);
if ( text.startsWith(QLatin1Char('_')) ) {
instance->markAsUnimportant();
}
macros.append(item);
} else if (result.CursorKind == CXCursor_NotImplemented) {
auto instance = new SimpleItem(typed, resultType, replacement, noIcon);
auto item = CompletionTreeItemPointer(instance);
builtin.append(item);
}
}
if (abort) {
return {};
}
addImplementationHelperItems();
addOverwritableItems();
eventuallyAddGroup(i18n("Special"), 700, specialItems);
eventuallyAddGroup(i18n("Look-ahead Matches"), 800, lookAheadMatcher.matchedItems());
eventuallyAddGroup(i18n("Builtin"), 900, builtin);
eventuallyAddGroup(i18n("Macros"), 1000, macros);
return items;
}
void ClangCodeCompletionContext::eventuallyAddGroup(const QString& name, int priority,
const QList<CompletionTreeItemPointer>& items)
{
if (items.isEmpty()) {
return;
}
auto* node = new CompletionCustomGroupNode(name, priority);
node->appendChildren(items);
m_ungrouped << CompletionTreeElementPointer(node);
}
void ClangCodeCompletionContext::addOverwritableItems()
{
const auto overrideList = m_completionHelper.overrides();
if (overrideList.isEmpty()) {
return;
}
QList<CompletionTreeItemPointer> overrides;
QList<CompletionTreeItemPointer> overridesAbstract;
for (const auto& info : overrideList) {
QStringList params;
params.reserve(info.params.size());
for (const auto& param : info.params) {
params << param.type + QLatin1Char(' ') + param.id;
}
QString nameAndParams = info.name + QLatin1Char('(') + params.join(QLatin1String(", ")) + QLatin1Char(')');
if(info.isConst)
nameAndParams = nameAndParams + QLatin1String(" const");
if(info.isPureVirtual)
nameAndParams = nameAndParams + QLatin1String(" = 0");
auto item = CompletionTreeItemPointer(new OverrideItem(nameAndParams, info.returnType));
if (info.isPureVirtual)
overridesAbstract << item;
else
overrides << item;
}
eventuallyAddGroup(i18n("Abstract Override"), 0, overridesAbstract);
eventuallyAddGroup(i18n("Virtual Override"), 0, overrides);
}
void ClangCodeCompletionContext::addImplementationHelperItems()
{
const auto implementsList = m_completionHelper.implements();
if (implementsList.isEmpty()) {
return;
}
QList<CompletionTreeItemPointer> implements;
implements.reserve(implementsList.size());
for (const auto& info : implementsList) {
implements << CompletionTreeItemPointer(new ImplementsItem(info));
}
eventuallyAddGroup(i18n("Implement Function"), 0, implements);
}
QList<CompletionTreeElementPointer> ClangCodeCompletionContext::ungroupedElements()
{
return m_ungrouped;
}
ClangCodeCompletionContext::ContextFilters ClangCodeCompletionContext::filters() const
{
return m_filters;
}
void ClangCodeCompletionContext::setFilters(const ClangCodeCompletionContext::ContextFilters& filters)
{
m_filters = filters;
}
#include "context.moc"
|