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
|
/*
SuperCollider Qt IDE
Copyright (c) 2012 Jakob Leben & Tim Blechmann
http://www.audiosynth.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) any later version.
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, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#define QT_NO_DEBUG_OUTPUT
#include "autocompleter.hpp"
#include "sc_editor.hpp"
#include "tokens.hpp"
#include "../../core/sc_introspection.hpp"
#include "../../core/sc_process.hpp"
#include "../../core/main.hpp"
#include "../../core/util/standard_dirs.hpp"
#include "../main_window.hpp"
#ifdef SC_USE_QTWEBENGINE
# include "../help_browser.hpp"
#endif // SC_USE_QTWEBENGINE
#include <yaml-cpp/node/node.h>
#include <yaml-cpp/parser.h>
#include <QDebug>
#include <QLabel>
#include <QScrollBar>
#include <QApplication>
#include <QDesktopWidget>
#include <QProxyStyle>
namespace ScIDE {
static bool tokenMaybeName(Token::Type type) {
return (type == Token::Name || type == Token::Keyword || type == Token::Builtin);
}
static QString incrementedString(const QString& other) {
if (other.isEmpty())
return QString();
QString str = other;
int pos = str.length() - 1;
str[pos] = QChar(str[pos].unicode() + 1);
return str;
}
class MethodCallWidget : public QWidget {
public:
MethodCallWidget(QWidget* parent = 0): QWidget(parent, Qt::ToolTip) {
mLabel = new QLabel(this);
mLabel->setTextFormat(Qt::RichText);
mLabel->setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed);
// Qt 4 had a class called "QGtkStyle" which allowed Qt to access the
// native style of the window manager in Linux and other *nix systems.
// It was removed in Qt 5, so we don't have that option anymore. We have
// to hardcode the colors now. In the future, this should be configurable
// by the user.
// This #if used to be "#if defined(Q_WS_X11)", and then NetBSD was
// excluded (commit c3017f5) because QGtkStyle was not defined on that
// system. Qt 5 got rid of the Q_WS_ macros, so we changed Q_WS_X11 to
// Q_OS_UNIX && !Q_OS_MAC as a best guess. The NetBSD check is probably
// vestigial, but we REALLY needed to get this fix through since Linux
// users have had unreadable autocomplete widgets for almost 18 months
// now. We figured it was best to leave it alone.
// See: https://github.com/supercollider/supercollider/pull/2762
#if defined(Q_OS_UNIX) && !defined(Q_OS_MAC) && !defined(__NetBSD__)
QPalette p;
p.setColor(QPalette::Window, QColor(255, 255, 220));
p.setColor(QPalette::WindowText, Qt::black);
setPalette(p);
#else
QPalette p(palette());
p.setColor(QPalette::Window, p.color(QPalette::ToolTipBase));
setPalette(p);
mLabel->setForegroundRole(QPalette::ToolTipText);
#endif
}
void showMethod(const AutoCompleter::MethodCall& methodCall, int argNum, const QRect& cursorRect) {
const ScLanguage::Method* method = methodCall.method;
int argc = method->arguments.count();
QString text;
if (methodCall.functionalNotation) {
addArgument(text, "receiver", QString(), argNum == 0);
--argNum;
if (argc)
text += ", ";
}
for (int i = 0; i < argc; ++i) {
const ScLanguage::Argument& arg = method->arguments[i];
addArgument(text, arg.name, arg.defaultValue, argNum == i);
if (i != argc - 1)
text += ", ";
}
mLabel->setText(text);
mTargetRect = cursorRect;
updateGeometry();
show();
}
private:
void static addArgument(QString& text, const QString& argText, const QString& valText, bool highlight) {
if (highlight) {
text += QString("<span style=\""
//"text-decoration: underline;"
"font-weight: bold;"
"\">");
}
text += argText;
if (!valText.isEmpty())
text += " = " + valText;
if (highlight)
text += "</span>";
}
void updateGeometry() {
static const QSize margins = QSize(5, 2);
QSize labelSize = mLabel->sizeHint();
mLabel->move(margins.width(), margins.height());
mLabel->resize(labelSize);
QRect rect;
rect.setSize(labelSize + (margins * 2));
rect.moveBottomLeft(mTargetRect.topLeft());
QWidget* parentWid = parentWidget();
QWidget* referenceWidget = parentWid ? parentWid : this;
QRect screen = QApplication::desktop()->availableGeometry(referenceWidget);
if (!screen.contains(rect)) {
if (rect.right() > screen.right())
rect.moveRight(screen.right());
if (rect.left() < screen.left())
rect.moveLeft(screen.left());
if (rect.top() < screen.top())
rect.moveTop(qMax(mTargetRect.bottom(), screen.top()));
if (rect.bottom() > screen.bottom())
rect.moveBottom(screen.bottom());
}
setGeometry(rect);
}
QLabel* mLabel;
QRect mTargetRect;
};
AutoCompleter::AutoCompleter(ScCodeEditor* editor): QObject(editor), mEditor(editor) {
mCompletion.on = false;
mEditor->installEventFilter(this);
connect(editor, SIGNAL(cursorPositionChanged()), this, SLOT(onCursorChanged()));
connect(editor->horizontalScrollBar(), SIGNAL(valueChanged(int)), this, SLOT(hideWidgets()));
connect(editor->verticalScrollBar(), SIGNAL(valueChanged(int)), this, SLOT(hideWidgets()));
connect(Main::scProcess(), SIGNAL(introspectionChanged()), this, SLOT(clearMethodCallStack()));
}
void AutoCompleter::documentChanged(QTextDocument* doc) {
connect(doc, SIGNAL(contentsChange(int, int, int)), this, SLOT(onContentsChange(int, int, int)));
}
inline QTextDocument* AutoCompleter::document() { return static_cast<QPlainTextEdit*>(mEditor)->document(); }
void AutoCompleter::keyPress(QKeyEvent* e) {
switch (e->key()) {
case Qt::Key_ParenLeft:
case Qt::Key_Comma:
triggerMethodCallAid(false);
break;
case Qt::Key_Backspace:
case Qt::Key_Delete:
return;
default:
qDebug(">>> key");
// Only trigger completion if event produces at least 1 printable character:
if (!mCompletion.on && !e->text().isEmpty() && e->text()[0].isPrint())
triggerCompletion();
}
}
bool AutoCompleter::eventFilter(QObject* object, QEvent* event) {
if (object != mEditor)
return false;
switch (event->type()) {
case QEvent::FocusOut:
hideWidgets();
break;
case QEvent::ShortcutOverride: {
QKeyEvent* kevent = static_cast<QKeyEvent*>(event);
switch (kevent->key()) {
case Qt::Key_Left:
case Qt::Key_Right:
if (mCompletion.menu && mCompletion.menu->isVisible())
mCompletion.menu->reject();
break;
case Qt::Key_Escape:
if (mCompletion.menu && mCompletion.menu->isVisible())
mCompletion.menu->reject();
else if (mMethodCall.menu && mMethodCall.menu->isVisible())
mMethodCall.menu->reject();
else if (mMethodCall.widget && mMethodCall.widget->isVisible()) {
// disable method call aid for current call:
Q_ASSERT(!mMethodCall.stack.isEmpty());
mMethodCall.stack.top().suppressed = true;
hideMethodCall();
} else
break;
return true;
}
break;
}
case QEvent::KeyPress: {
QKeyEvent* kevent = static_cast<QKeyEvent*>(event);
switch (kevent->key()) {
case Qt::Key_Tab:
case Qt::Key_Backtab:
if (trySwitchMethodCallArgument(kevent->key() == Qt::Key_Backtab)) {
event->accept();
return true;
}
break;
}
break;
}
default:;
}
return QObject::eventFilter(object, event);
}
void AutoCompleter::onContentsChange(int pos, int removed, int added) {
qDebug() << ">>> contentsChange:" << pos << "-" << removed << "+" << added;
int callIdx = 0;
while (callIdx < mMethodCall.stack.count()) {
MethodCall& call = mMethodCall.stack[callIdx];
if (pos > call.position) {
break;
} else if (pos + removed > call.position) {
qDebug("Method call: opening bracket deleted. popping.");
mMethodCall.stack.remove(callIdx);
} else {
// Adjust method call positions.
// FIXME: We are disregarding changes in context that defines the method call.
// This is for reason of simplicity, and with the benefit that (irrelevant)
// indentation changes don't destroy the method call stack
qDebug("Method call: adjusting position: %i", call.position);
call.position -= removed;
call.position += added;
qDebug("Method call: adjusted position: %i", call.position);
++callIdx;
}
}
if (mCompletion.on) {
if (pos < mCompletion.contextPos) {
quitCompletion("context changed");
} else if (pos <= mCompletion.pos + mCompletion.len) {
QTextBlock block(document()->findBlock(mCompletion.pos));
TokenIterator it(block, mCompletion.pos - block.position());
Token::Type type = it.type();
if (type == Token::Class || tokenMaybeName(type)) {
mCompletion.len = it->length;
mCompletion.text = tokenText(it);
} else {
mCompletion.len = 0;
mCompletion.text.clear();
}
if (!mCompletion.menu.isNull())
updateCompletionMenu(false);
}
}
}
void AutoCompleter::onCursorChanged() {
int cursorPos = mEditor->textCursor().position();
qDebug(">>> cursorChanged: %i", cursorPos);
// completion
if (mCompletion.on) {
if (cursorPos < mCompletion.pos || cursorPos > mCompletion.pos + mCompletion.len) {
quitCompletion("out of bounds");
}
}
if (!mMethodCall.menu.isNull()) {
qDebug("Method call: quitting menu");
delete mMethodCall.menu;
}
updateMethodCall(cursorPos);
}
void AutoCompleter::triggerCompletion(bool forceShow) {
if (mCompletion.on) {
qDebug("AutoCompleter::triggerCompletion(): completion already started.");
updateCompletionMenu(forceShow);
return;
}
QTextCursor cursor(mEditor->textCursor());
const int cursorPos = cursor.positionInBlock();
QTextBlock block(cursor.block());
TokenIterator it(block, cursorPos - 1);
if (!it.isValid())
return;
const Token& triggeringToken = *it;
if (triggeringToken.type == Token::Class) {
if (triggeringToken.length < 3)
return;
mCompletion.type = ClassCompletion;
mCompletion.pos = it.position();
mCompletion.len = it->length;
mCompletion.text = tokenText(it);
mCompletion.contextPos = mCompletion.pos + 3;
mCompletion.base = mCompletion.text;
mCompletion.base.truncate(3);
} else {
TokenIterator objectIt, dotIt, nameIt;
Token::Type objectTokenType = Token::Unknown;
if (tokenMaybeName(it.type())) {
nameIt = it;
--it;
}
if (it.isValid() && it.character() == '.') {
dotIt = it;
--it;
} else
// don't trigger on method names without preceding dot (for now)
return;
if (dotIt.isValid()) {
objectTokenType = it.type();
switch (objectTokenType) {
case Token::Class:
case Token::Char:
case Token::StringMark:
case Token::Builtin:
case Token::Symbol:
case Token::SymbolMark:
case Token::Float:
case Token::RadixFloat:
case Token::HexInt:
objectIt = it;
break;
default:;
}
}
if (!objectIt.isValid() && (!nameIt.isValid() || nameIt->length < 3))
return;
if (nameIt.isValid()) {
mCompletion.pos = nameIt.position();
mCompletion.len = nameIt->length;
mCompletion.text = tokenText(nameIt);
} else {
mCompletion.pos = dotIt.position() + 1;
mCompletion.len = 0;
mCompletion.text.clear();
}
if (objectIt.isValid()) {
mCompletion.contextPos = mCompletion.pos;
mCompletion.base = tokenText(objectIt);
mCompletion.tokenType = objectTokenType;
mCompletion.type = ClassMethodCompletion;
} else {
mCompletion.contextPos = mCompletion.pos + 3;
mCompletion.base = tokenText(nameIt);
mCompletion.type = MethodCompletion;
}
}
mCompletion.on = true;
qDebug() << QStringLiteral("Completion: ON <%1>").arg(mCompletion.base);
showCompletionMenu(forceShow);
if (mCompletion.menu.isNull())
mCompletion.on = false;
}
void AutoCompleter::quitCompletion(const QString& reason) {
Q_ASSERT(mCompletion.on);
qDebug() << QStringLiteral("Completion: OFF (%1)").arg(reason);
if (mCompletion.menu) {
mCompletion.menu->hide();
mCompletion.menu->deleteLater();
mCompletion.menu = 0;
}
mCompletion.on = false;
}
void AutoCompleter::showCompletionMenu(bool forceShow) {
qDebug(">>> showCompletionMenu");
using namespace ScLanguage;
using ScLanguage::Method;
Q_ASSERT(mCompletion.on);
Q_ASSERT(mCompletion.menu.isNull());
QPointer<CompletionMenu> menu;
switch (mCompletion.type) {
case ClassCompletion:
menu = menuForClassCompletion(mCompletion, mEditor);
break;
case ClassMethodCompletion:
menu = menuForClassMethodCompletion(mCompletion, mEditor);
break;
case MethodCompletion:
menu = menuForMethodCompletion(mCompletion, mEditor);
break;
default:
break;
}
if (menu == NULL)
return;
mCompletion.menu = menu;
connect(menu, SIGNAL(finished(int)), this, SLOT(onCompletionMenuFinished(int)));
QRect popupTargetRect = globalCursorRect(mCompletion.pos).adjusted(0, -5, 0, 5);
menu->popup(popupTargetRect);
updateCompletionMenu(forceShow);
if (mCompletion.type == ClassCompletion && Main::settings()->value("IDE/editor/showAutocompleteHelp").toBool()) {
connect(menu, SIGNAL(itemChanged(int)), this, SLOT(updateCompletionMenuInfo()));
connect(menu, SIGNAL(infoClicked(QString)), this, SLOT(gotoHelp(QString)));
updateCompletionMenuInfo();
}
}
CompletionMenu* AutoCompleter::menuForClassCompletion(CompletionDescription const& completion, ScCodeEditor* editor) {
using namespace ScLanguage;
const Introspection& introspection = Main::scProcess()->introspection();
const ClassMap& classes = introspection.classMap();
QString min = completion.base;
QString max = incrementedString(min);
ClassMap::const_iterator matchStart, matchEnd;
matchStart = classes.lower_bound(min);
matchEnd = classes.lower_bound(max);
if (matchStart == matchEnd) {
qDebug() << "Completion: no class matches:" << completion.base;
return NULL;
}
CompletionMenu* menu = new CompletionMenu(editor);
for (ClassMap::const_iterator it = matchStart; it != matchEnd; ++it) {
Class* klass = it->second.data();
menu->addItem(new QStandardItem(klass->name));
}
menu->adapt();
return menu;
}
CompletionMenu* AutoCompleter::menuForClassMethodCompletion(CompletionDescription const& completion,
ScCodeEditor* editor) {
using namespace ScLanguage;
const Class* klass = NULL;
switch (completion.tokenType) {
case Token::Float:
case Token::RadixFloat:
case Token::HexInt:
// Only show completion if at least 1 character after dot
if (!completion.base.contains(".") && completion.text.isEmpty())
return NULL;
default:;
}
klass = classForToken(completion.tokenType, completion.base);
if (klass == NULL) {
qDebug() << "Autocompletion not implemented for" << completion.base;
return NULL;
}
QMap<QString, const Method*> methodMap; // for quick lookup
QList<const Method*> methodList; // to keep order by class hierarchy
do {
foreach (const Method* method, klass->methods) {
QString methodName = method->name.get();
// Operators are also methods, but are not valid in
// a method call syntax, so filter them out.
Q_ASSERT(!methodName.isEmpty());
if (!methodName[0].isLetter())
continue;
if (methodMap.value(methodName) != 0)
continue;
methodMap.insert(methodName, method);
methodList.append(method);
}
klass = klass->superClass;
} while (klass);
CompletionMenu* menu = new CompletionMenu(editor);
menu->setCompletionRole(CompletionMenu::CompletionRole);
foreach (const Method* method, methodList) {
QString methodName = method->name.get();
QString detail(" [ %1 ]");
QStandardItem* item = new QStandardItem();
item->setText(methodName + detail.arg(method->ownerClass->name));
item->setData(QVariant::fromValue(method), CompletionMenu::MethodRole);
item->setData(methodName, CompletionMenu::CompletionRole);
menu->addItem(item);
}
menu->adapt();
return menu;
}
CompletionMenu* AutoCompleter::menuForMethodCompletion(CompletionDescription const& completion, ScCodeEditor* editor) {
using namespace ScLanguage;
const Introspection& introspection = Main::scProcess()->introspection();
const MethodMap& methods = introspection.methodMap();
QString min = completion.base;
QString max = incrementedString(min);
MethodMap::const_iterator matchStart, matchEnd;
matchStart = methods.lower_bound(min);
matchEnd = methods.lower_bound(max);
if (matchStart == matchEnd) {
qDebug() << "Completion: no method matches:" << completion.base;
return NULL;
}
CompletionMenu* menu = new CompletionMenu(editor);
menu->setCompletionRole(CompletionMenu::CompletionRole);
for (MethodMap::const_iterator it = matchStart; it != matchEnd;) {
const Method* method = it->second.data();
std::pair<MethodMap::const_iterator, MethodMap::const_iterator> range = methods.equal_range(it->first);
int count = std::distance(range.first, range.second);
QStandardItem* item = new QStandardItem();
QString methodName = method->name.get();
QString detail(" [ %1 ]");
if (count == 1) {
item->setText(methodName + detail.arg(method->ownerClass->name));
item->setData(QVariant::fromValue(method), CompletionMenu::MethodRole);
} else
item->setText(methodName + detail.arg(count));
item->setData(methodName, CompletionMenu::CompletionRole);
menu->addItem(item);
it = range.second;
}
menu->adapt();
return menu;
}
const ScLanguage::Class* AutoCompleter::classForToken(Token::Type tokenType, const QString& tokenString) {
using namespace ScLanguage;
const Introspection& introspection = Main::scProcess()->introspection();
switch (tokenType) {
case Token::Class: {
const Class* klass = introspection.findClassOrWarn(tokenString);
if (klass)
klass = klass->metaClass;
return klass;
}
case Token::Float:
case Token::RadixFloat:
case Token::HexInt:
if (tokenString.contains(".")) // else it is an int
return introspection.findClass("Float");
else
return introspection.findClass("Integer");
case Token::Char:
return introspection.findClass("Char");
case Token::StringMark:
return introspection.findClass("String");
case Token::Symbol:
case Token::SymbolMark:
return introspection.findClass("Symbol");
default:;
}
if (tokenString == QStringLiteral("true"))
return introspection.findClass("True");
if (tokenString == QStringLiteral("false"))
return introspection.findClass("False");
if (tokenString == QStringLiteral("nil"))
return introspection.findClass("Nil");
if (tokenString == QStringLiteral("thisProcess"))
return introspection.findClass("Main");
if (tokenString == QStringLiteral("thisFunction"))
return introspection.findClass("Function");
if (tokenString == QStringLiteral("thisMethod"))
return introspection.findClass("Method");
if (tokenString == QStringLiteral("thisFunctionDef"))
return introspection.findClass("FunctionDef");
if (tokenString == QStringLiteral("thisThread"))
return introspection.findClass("Thread");
if (tokenString == QStringLiteral("currentEnvironment"))
return introspection.findClass("Environment");
if (tokenString == QStringLiteral("topEnvironment"))
return introspection.findClass("Environment");
if (tokenString == QStringLiteral("inf"))
return introspection.findClass("Float");
return NULL;
}
void AutoCompleter::updateCompletionMenu(bool forceShow) {
Q_ASSERT(mCompletion.on && !mCompletion.menu.isNull());
CompletionMenu* menu = mCompletion.menu;
if (!mCompletion.text.isEmpty()) {
QString pattern = mCompletion.text;
pattern.prepend("^");
menu->model()->setFilterRegExp(pattern);
} else
menu->model()->setFilterRegExp(QString());
if (menu->model()->hasChildren()) {
menu->view()->setCurrentIndex(menu->model()->index(0, 0));
if (forceShow || menu->currentText() != mCompletion.text) {
if (!menu->isVisible())
menu->setTargetRect(globalCursorRect(mCompletion.pos).adjusted(0, -5, 0, 5));
// The Show event will adjust position.
menu->show();
} else
menu->hide();
} else
menu->hide();
if (mCompletion.type == ClassCompletion && Main::settings()->value("IDE/editor/showAutocompleteHelp").toBool())
updateCompletionMenuInfo();
}
void AutoCompleter::onCompletionMenuFinished(int result) {
qDebug("Completion: menu finished");
if (!mCompletion.on)
return;
if (result) {
QString text = mCompletion.menu->currentText();
if (!text.isEmpty()) {
quitCompletion("done");
QTextCursor cursor(mEditor->textCursor());
cursor.setPosition(mCompletion.pos);
cursor.setPosition(mCompletion.pos + mCompletion.len, QTextCursor::KeepAnchor);
cursor.insertText(text);
return;
}
}
// Do not cancel completion whenever menu hidden.
// It could be hidden because of current filter yielding 0 results.
// quitCompletion("cancelled");
}
void AutoCompleter::updateCompletionMenuInfo() {
DocNode* node = parseHelpClass(findHelpClass(mCompletion.menu->currentText()));
if (!node) {
mCompletion.menu->addInfo(QString());
return;
}
QString examples = parseClassElement(node, "EXAMPLES");
if (!examples.isEmpty())
examples.prepend("<h4>Examples</h4>");
// MSVStudio 2013 does not concatenate multiple QStringliterals ("""") properly
// see http://blog.qt.io/blog/2014/06/13/qt-weekly-13-qstringliteral/
QString infos = QStringLiteral("<h4>%1</h4>%2%3<p><a href=\"%4\">go to help</a>")
.arg(parseClassElement(node, "SUMMARY"))
.arg(parseClassElement(node, "DESCRIPTION"))
.arg(examples)
.arg(mCompletion.menu->currentText());
mCompletion.menu->addInfo(infos);
doc_node_free_tree(node);
}
void AutoCompleter::triggerMethodCallAid(bool explicitTrigger) {
using namespace ScLanguage;
if (!mMethodCall.menu.isNull()) {
qDebug("Method call: disambiguation menu already shown. Aborting.");
return;
}
QTextCursor cursor(mEditor->textCursor());
// Find the first bracket that defines a method call
TokenIterator tokenIt;
TokenIterator bracketIt = TokenIterator::leftOf(cursor.block(), cursor.positionInBlock());
while (true) {
bracketIt = ScCodeEditor::previousOpeningBracket(bracketIt);
if (!bracketIt.isValid())
return;
if (bracketIt->character == '(') {
tokenIt = bracketIt.previous();
Token::Type tokenType = tokenIt.type();
if (tokenIt.block() == bracketIt.block() && (tokenType == Token::Name || tokenType == Token::Class))
break;
}
if (!explicitTrigger)
return;
--bracketIt;
}
int bracketPos = bracketIt.position();
// Compare against stack
if (!mMethodCall.stack.isEmpty() && mMethodCall.stack.top().position == bracketPos) {
// A matching call is already on stack
qDebug("Method call: trigger -> call already on stack");
// If triggered explicitly, then either retrigger disambiguation (if needed),
// or unsuppress it.
if (explicitTrigger && !mMethodCall.stack.top().method) {
qDebug("Method call: forced re-trigger, popping current call.");
mMethodCall.stack.pop();
hideMethodCall();
} else {
if (explicitTrigger) {
mMethodCall.stack.top().suppressed = false;
updateMethodCall(cursor.position());
}
// Else, method call popup has been updated by updateMethodCall()
// called on cursor change, before this function.
return;
}
}
QString methodName;
bool functionalNotation = false;
const Class* receiverClass = NULL;
Token::Type tokenType = tokenIt.type();
Q_ASSERT(tokenType == Token::Name || tokenType == Token::Class);
if (tokenType == Token::Name) {
methodName = tokenText(tokenIt);
--tokenIt;
if (tokenIt.isValid() && tokenIt.character() == '.')
--tokenIt;
else
functionalNotation = true;
} else
methodName = "new";
if (!functionalNotation && tokenIt.isValid())
receiverClass = classForToken(tokenIt->type, tokenText(tokenIt));
// Ok, this is a valid method call, push on stack
qDebug("Method call: found call: %s:%s", receiverClass ? qPrintable(receiverClass->name.get()) : "",
methodName.toStdString().c_str());
qDebug("Method call: new call");
MethodCall call;
call.position = bracketPos;
call.functionalNotation = functionalNotation;
pushMethodCall(call);
// Obtain method data, either by inferrence or by user-disambiguation via a menu
const Method* method = 0;
if (receiverClass) {
const Class* klass = receiverClass;
do {
foreach (const Method* m, klass->methods) {
if (m->name == methodName) {
method = m;
break;
}
}
if (method)
break;
klass = klass->superClass;
} while (klass);
} else {
method = disambiguateMethod(methodName, bracketPos);
}
// Finally, show the aid for the method
if (method) {
Q_ASSERT(!mMethodCall.stack.isEmpty());
mMethodCall.stack.top().method = method;
updateMethodCall(mEditor->textCursor().position());
}
}
const ScLanguage::Method* AutoCompleter::disambiguateMethod(const QString& methodName, int cursorPos) {
Q_ASSERT(mMethodCall.menu.isNull());
using namespace ScLanguage;
using std::pair;
const Introspection& introspection = Main::scProcess()->introspection();
const MethodMap& methods = introspection.methodMap();
pair<MethodMap::const_iterator, MethodMap::const_iterator> match = methods.equal_range(methodName);
const Method* method = 0;
if (match.first == match.second) {
qDebug() << "MethodCall: no method matches:" << methodName;
method = 0;
} else if (std::distance(match.first, match.second) == 1)
method = match.first->second.data();
else {
QPointer<CompletionMenu> menu = new CompletionMenu(mEditor);
mMethodCall.menu = menu;
for (MethodMap::const_iterator it = match.first; it != match.second; ++it) {
const Method* method = it->second.data();
QStandardItem* item = new QStandardItem();
item->setText(method->name + " (" + method->ownerClass->name + ')');
item->setData(QVariant::fromValue(method), CompletionMenu::MethodRole);
menu->addItem(item);
}
menu->adapt();
QRect popupTargetRect = globalCursorRect(cursorPos).adjusted(0, -5, 0, 5);
if (static_cast<PopUpWidget*>(menu)->exec(popupTargetRect))
method = menu->currentMethod();
delete menu;
}
return method;
}
void AutoCompleter::updateMethodCall(int cursorPos) {
int i = mMethodCall.stack.count();
while (i--) {
MethodCall& call = mMethodCall.stack[i];
int argNum = -1;
TokenIterator argNameToken;
if (!testMethodCall(call, cursorPos, argNum, argNameToken)) {
qDebug("Method call: popping.");
Q_ASSERT(i == mMethodCall.stack.count() - 1);
mMethodCall.stack.pop();
continue;
}
if (call.suppressed) {
qDebug("Method call: suppressed, not showing anything");
break;
}
if (!call.method || !call.method->arguments.count()) {
qDebug("Method call: no info to show. skipping.");
continue;
}
if (argNameToken.isValid()) {
QString argName = tokenText(argNameToken);
argName.chop(1);
for (int idx = 0; idx < call.method->arguments.count(); ++idx) {
if (call.method->arguments[idx].name == argName) {
argNum = idx;
if (call.functionalNotation)
++argNum;
break;
}
}
}
qDebug("Method call: found current call: %s(%i)", call.method->name.get().toStdString().c_str(), argNum);
showMethodCall(call, argNum);
return;
}
hideMethodCall();
}
void AutoCompleter::pushMethodCall(const MethodCall& call) {
qDebug("Method Call: pushing on stack.");
Q_ASSERT(mMethodCall.stack.isEmpty() || mMethodCall.stack.last().position < call.position);
mMethodCall.stack.push(call);
}
void AutoCompleter::showMethodCall(const MethodCall& call, int arg) {
if (mMethodCall.widget.isNull())
mMethodCall.widget = new MethodCallWidget(mEditor);
MethodCallWidget* w = mMethodCall.widget;
w->showMethod(call, arg, globalCursorRect(call.position).adjusted(0, -7, 0, 5));
}
void AutoCompleter::hideMethodCall() { delete mMethodCall.widget; }
bool AutoCompleter::trySwitchMethodCallArgument(bool backwards) {
// FIXME: Only cycle through argument names that have not been entered already
using namespace ScLanguage;
QTextCursor cursor(mEditor->textCursor());
if (cursor.hasSelection())
return false;
if (mMethodCall.stack.isEmpty()) {
qDebug("Insert arg name: empty stack");
return false;
}
MethodCall& call = mMethodCall.stack.top();
if (!call.method || !call.method->arguments.count()) {
qDebug("Insert arg name: no method, or method has no args");
return false;
}
int cursorPos = cursor.position();
int argNum = -1;
TokenIterator argNameToken;
static const bool strict = true;
bool callValid = testMethodCall(call, cursorPos, argNum, argNameToken, strict);
if (!callValid) {
qDebug("Insert arg name: call invalid");
return false;
}
bool cursorAtArgName = argNum == -1;
if (argNameToken.isValid()) {
qDebug("Insert arg name: have a reference arg name");
QString argName = tokenText(argNameToken);
argName.chop(1);
for (int idx = 0; idx < call.method->arguments.count(); ++idx) {
if (call.method->arguments[idx].name == argName) {
argNum = idx;
break;
}
}
// only increment/decrement if a reference name exists
if (backwards)
--argNum;
else
++argNum;
}
// limit / wrap
if (argNum < 0)
argNum = call.method->arguments.count() - 1;
else if (argNum >= call.method->arguments.count())
argNum = 0;
QString text = call.method->arguments[argNum].name;
text.append(": ");
// insert argument name
if (argNameToken.isValid() && cursorAtArgName) {
int pos = argNameToken.position();
cursor.setPosition(pos);
cursor.setPosition(pos + argNameToken->length + 1, QTextCursor::KeepAnchor);
}
cursor.insertText(text);
return true;
}
bool AutoCompleter::testMethodCall(const MethodCall& call, int cursorPos, int& outArgNum,
TokenIterator& outArgNameToken, bool strict) {
// The 'strict' argument denotes whether the test passes if token before cursor is
// not a comma or an argument name - i.e. the user is typing the value of an argument
if (call.position >= cursorPos) {
qDebug("Method call: call right of cursor.");
return false;
}
QTextBlock block(document()->findBlock(call.position));
TokenIterator token = TokenIterator::rightOf(block, call.position - block.position());
if (!token.isValid())
qWarning("Method call: call stack out of sync!");
Q_ASSERT(token.isValid());
int argNum = 0;
int level = 1;
TokenIterator argNameToken;
bool strictlyValid = true;
++token;
while (level > 0 && token.isValid() && token.position() < cursorPos) {
strictlyValid = false;
char chr = token.character();
Token::Type type = token->type;
if (level == 1) {
if (type == Token::SymbolArg) {
argNameToken = token;
argNum = -1; // denote argument name
strictlyValid = true;
} else if (chr == ',') {
if (argNum >= 0)
++argNum;
else
argNum = -2; // denote comma after argument name
strictlyValid = true;
}
}
if (type == Token::OpeningBracket)
++level;
else if (type == Token::ClosingBracket)
--level;
++token;
}
if (level <= 0) {
qDebug("Method call: call left of cursor.");
return false;
}
outArgNameToken = argNameToken;
outArgNum = argNum;
return (strictlyValid || !strict);
}
void AutoCompleter::clearMethodCallStack() {
mMethodCall.stack.clear();
hideMethodCall();
}
void AutoCompleter::hideWidgets() {
if (mCompletion.menu)
mCompletion.menu->reject();
if (mMethodCall.menu)
mMethodCall.menu->reject();
if (mMethodCall.widget)
mMethodCall.widget->hide();
}
QString AutoCompleter::tokenText(TokenIterator& it) {
if (!it.isValid())
return QString();
int pos = it.position();
QTextCursor cursor(document());
cursor.setPosition(pos);
cursor.setPosition(pos + it->length, QTextCursor::KeepAnchor);
return cursor.selectedText();
}
QRect AutoCompleter::globalCursorRect(int cursorPosition) {
QTextCursor cursor(document());
cursor.setPosition(cursorPosition);
QRect r = mEditor->cursorRect(cursor);
r.moveTopLeft(mEditor->viewport()->mapToGlobal(r.topLeft()));
return r;
}
QString AutoCompleter::findHelpClass(QString klass) {
QString file = standardDirectory(ScResourceDir).append("/HelpSource/Classes/").append(klass).append(".schelp");
if (QFile::exists(file))
return file;
return QString();
}
DocNode* AutoCompleter::parseHelpClass(QString file) {
if (file.isEmpty())
return NULL;
// note, toStdString() converts to UTF-8
return scdoc_parse_file(file.toStdString(), 0);
}
QString AutoCompleter::parseClassElement(DocNode* node, QString element) {
if (QString(node->id) == element) {
QString str;
parseClassNode(node, &str);
return str;
}
for (int i = 0; i < node->n_childs; i++) {
QString ret = parseClassElement(node->children[i], element);
if (!ret.isEmpty())
return ret;
}
return QString();
}
void AutoCompleter::parseClassNode(DocNode* node, QString* str) {
QString id = node->id;
if (id == "NOTE")
str->append("<br><br>Note:<br>");
if (node->text) {
if (id == "LINK") {
QStringList locations = QString(node->text).split('/').last().split('#');
/* if empty, the link is on the same page. No HTML link */
if (locations.first().isEmpty())
str->append(QStringLiteral(" %1 ").arg(locations.first()));
else
str->append(QStringLiteral("<a href=\"%1\">%2</a>").arg(locations.first()).arg(locations.last()));
} else if (id == "CODE") {
str->append(QStringLiteral("<code>%1</code>").arg(node->text));
} else if (id == "CODEBLOCK") {
str->append(QStringLiteral("<pre><code>%1</code></pre>").arg(node->text));
} else {
str->append(node->text);
}
}
for (int i = 0; i < node->n_childs; i++)
parseClassNode(node->children[i], str);
}
void AutoCompleter::gotoHelp(QString symbol) {
#ifdef SC_USE_QTWEBENGINE
HelpBrowserDocklet* helpDock = MainWindow::instance()->helpBrowserDocklet();
helpDock->browser()->gotoHelpFor(symbol);
helpDock->focus();
#endif // SC_USE_QTWEBENGINE
}
} // namespace ScIDE
#undef QT_NO_DEBUG_OUTPUT
|