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
|
/*
SPDX-FileCopyrightText: 2002 Matthias Hoelzer-Kluepfel <hoelzer@kde.org>
SPDX-FileCopyrightText: 2002 John Firebaugh <jfirebaugh@kde.org>
SPDX-FileCopyrightText: 2006, 2008 Vladimir Prus <ghost@cs.msu.su>
SPDX-FileCopyrightText: 2007 Hamish Rodda <rodda@kde.org>
SPDX-FileCopyrightText: 2009 Niko Sams <niko.sams@gmail.com>
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#include "breakpointmodel.h"
#include <QIcon>
#include <QPixmap>
#include <QTimer>
#include <KLocalizedString>
#include <KTextEditor/Document>
#include <KTextEditor/MovingInterface>
#include "../interfaces/icore.h"
#include "../interfaces/idebugcontroller.h"
#include "../interfaces/idocumentcontroller.h"
#include "../interfaces/idocument.h"
#include "../interfaces/ipartcontroller.h"
#include <interfaces/idebugsession.h>
#include <interfaces/ibreakpointcontroller.h>
#include <interfaces/isession.h>
#include <debug.h>
#include "breakpoint.h"
#include <KConfigGroup>
#include <QAction>
#include <QMenu>
#include <QMessageBox>
#define IF_DEBUG(x)
using namespace KDevelop;
using namespace KTextEditor;
namespace {
IBreakpointController* breakpointController()
{
KDevelop::ICore* core = KDevelop::ICore::self();
if (!core) {
return nullptr;
}
IDebugController* controller = core->debugController();
if (!controller) {
return nullptr;
}
IDebugSession* session = controller->currentSession();
return session ? session->breakpointController() : nullptr;
}
} // anonymous namespace
class KDevelop::BreakpointModelPrivate
{
public:
bool dirty = false;
bool dontUpdateMarks = false;
QList<Breakpoint*> breakpoints;
/// FIXME: this is just an ugly workaround to not leak deleted breakpoints
/// a real fix would make sure that we actually delete breakpoints
/// right when we delete them... aka remove Breakpoint::{set}deleted
QList<Breakpoint*> deletedBreakpoints;
};
BreakpointModel::BreakpointModel(QObject* parent)
: QAbstractTableModel(parent),
d_ptr(new BreakpointModelPrivate)
{
connect(this, &BreakpointModel::dataChanged, this, &BreakpointModel::updateMarks);
if (KDevelop::ICore::self()->partController()) { //TODO remove if
const auto parts = KDevelop::ICore::self()->partController()->parts();
for (KParts::Part* p : parts) {
slotPartAdded(p);
}
connect(KDevelop::ICore::self()->partController(),
&IPartController::partAdded,
this,
&BreakpointModel::slotPartAdded);
}
connect (KDevelop::ICore::self()->documentController(),
&IDocumentController::textDocumentCreated,
this,
&BreakpointModel::textDocumentCreated);
connect (KDevelop::ICore::self()->documentController(),
&IDocumentController::documentSaved,
this, &BreakpointModel::documentSaved);
}
BreakpointModel::~BreakpointModel()
{
Q_D(BreakpointModel);
qDeleteAll(d->breakpoints);
qDeleteAll(d->deletedBreakpoints);
}
void BreakpointModel::slotPartAdded(KParts::Part* part)
{
if (auto doc = qobject_cast<KTextEditor::Document*>(part))
{
auto *iface = qobject_cast<MarkInterface*>(doc);
if( !iface )
return;
iface->setMarkDescription((MarkInterface::MarkTypes)BreakpointMark, i18n("Breakpoint"));
iface->setMarkPixmap((MarkInterface::MarkTypes)BreakpointMark, *breakpointPixmap());
iface->setMarkPixmap((MarkInterface::MarkTypes)PendingBreakpointMark, *pendingBreakpointPixmap());
iface->setMarkPixmap((MarkInterface::MarkTypes)ReachedBreakpointMark, *reachedBreakpointPixmap());
iface->setMarkPixmap((MarkInterface::MarkTypes)DisabledBreakpointMark, *disabledBreakpointPixmap());
iface->setEditableMarks( MarkInterface::Bookmark | BreakpointMark );
updateMarks();
}
}
void BreakpointModel::textDocumentCreated(KDevelop::IDocument* doc)
{
Q_D(const BreakpointModel);
KTextEditor::Document* const textDocument = doc->textDocument();
if (qobject_cast<KTextEditor::MarkInterface*>(textDocument)) {
// can't use new signal slot syntax here, MarkInterface is not a QObject
connect(textDocument, SIGNAL(markChanged(KTextEditor::Document*,KTextEditor::Mark,KTextEditor::MarkInterface::MarkChangeAction)),
this, SLOT(markChanged(KTextEditor::Document*,KTextEditor::Mark,KTextEditor::MarkInterface::MarkChangeAction)));
connect(textDocument, SIGNAL(markContextMenuRequested(KTextEditor::Document*,KTextEditor::Mark,QPoint,bool&)),
SLOT(markContextMenuRequested(KTextEditor::Document*,KTextEditor::Mark,QPoint,bool&)));
}
// markChanged() is not triggered for loaded breakpoints, so get them a moving cursor now
const QUrl docUrl = textDocument->url();
for (Breakpoint* breakpoint : qAsConst(d->breakpoints)) {
if (docUrl == breakpoint->url()) {
setupMovingCursor(textDocument, breakpoint);
}
}
}
void BreakpointModel::markContextMenuRequested(Document* document, Mark mark, const QPoint &pos, bool& handled)
{
int type = mark.type;
qCDebug(DEBUGGER) << type;
Breakpoint *b = nullptr;
if ((type & AllBreakpointMarks)) {
b = breakpoint(document->url(), mark.line);
if (!b) {
QMessageBox::critical(nullptr, i18n("Breakpoint not found"), i18n("Couldn't find breakpoint at %1:%2", document->url().toString(), mark.line));
}
} else if (!(type & MarkInterface::Bookmark)) // neither breakpoint nor bookmark
return;
QMenu menu; // TODO: needs qwidget
QAction* breakpointAction = menu.addAction(QIcon::fromTheme(QStringLiteral("breakpoint")), i18n("&Breakpoint"));
breakpointAction->setCheckable(true);
breakpointAction->setChecked(b);
QAction* enableAction = nullptr;
if (b) {
enableAction = b->enabled() ?
menu.addAction(QIcon::fromTheme(QStringLiteral("dialog-cancel")), i18n("&Disable Breakpoint")) :
menu.addAction(QIcon::fromTheme(QStringLiteral("dialog-ok-apply")), i18n("&Enable Breakpoint"));
}
menu.addSeparator();
QAction* bookmarkAction = menu.addAction(QIcon::fromTheme(QStringLiteral("bookmark-new")), i18n("&Bookmark"));
bookmarkAction->setCheckable(true);
bookmarkAction->setChecked((type & MarkInterface::Bookmark));
QAction* triggeredAction = menu.exec(pos);
if (triggeredAction) {
if (triggeredAction == bookmarkAction) {
KTextEditor::MarkInterface *iface = qobject_cast<KTextEditor::MarkInterface*>(document);
if ((type & MarkInterface::Bookmark))
iface->removeMark(mark.line, MarkInterface::Bookmark);
else
iface->addMark(mark.line, MarkInterface::Bookmark);
} else if (triggeredAction == breakpointAction) {
if (b) {
b->setDeleted();
} else {
Breakpoint* breakpoint = addCodeBreakpoint(document->url(), mark.line);
setupMovingCursor(document, breakpoint);
}
} else if (triggeredAction == enableAction) {
b->setData(Breakpoint::EnableColumn, b->enabled() ? Qt::Unchecked : Qt::Checked);
}
}
handled = true;
}
QVariant
BreakpointModel::headerData(int section, Qt::Orientation orientation,
int role) const
{
if (orientation == Qt::Vertical)
return QVariant();
if (role == Qt::DecorationRole ) {
if (section == 0)
return QIcon::fromTheme(QStringLiteral("dialog-ok-apply"));
else if (section == 1)
return QIcon::fromTheme(QStringLiteral("system-switch-user"));
}
if (role == Qt::DisplayRole) {
if (section == 0 || section == 1) return QString();
if (section == 2) return i18n("Type");
if (section == 3) return i18n("Location");
if (section == 4) return i18n("Condition");
}
if (role == Qt::ToolTipRole) {
if (section == 0) return i18n("Active status");
if (section == 1) return i18n("State");
return headerData(section, orientation, Qt::DisplayRole);
}
return QVariant();
}
Qt::ItemFlags BreakpointModel::flags(const QModelIndex &index) const
{
/* FIXME: all this logic must be in item */
if (!index.isValid())
return Qt::NoItemFlags;
if (index.column() == 0)
return static_cast<Qt::ItemFlags>(
Qt::ItemIsEnabled | Qt::ItemIsSelectable
| Qt::ItemIsEditable | Qt::ItemIsUserCheckable);
if (index.column() == Breakpoint::ConditionColumn)
return static_cast<Qt::ItemFlags>(
Qt::ItemIsEnabled | Qt::ItemIsSelectable | Qt::ItemIsEditable);
return static_cast<Qt::ItemFlags>(Qt::ItemIsEnabled | Qt::ItemIsSelectable);
}
QModelIndex BreakpointModel::breakpointIndex(KDevelop::Breakpoint* b, int column)
{
Q_D(BreakpointModel);
int row = d->breakpoints.indexOf(b);
if (row == -1) return QModelIndex();
return index(row, column);
}
bool KDevelop::BreakpointModel::removeRows(int row, int count, const QModelIndex& parent)
{
Q_D(BreakpointModel);
if (count < 1 || (row < 0) || (row + count) > rowCount(parent))
return false;
IBreakpointController* controller = breakpointController();
beginRemoveRows(parent, row, row+count-1);
for (int i=0; i < count; ++i) {
Breakpoint* b = d->breakpoints.at(row);
b->m_deleted = true;
if (controller)
controller->breakpointAboutToBeDeleted(row);
d->breakpoints.removeAt(row);
b->m_model = nullptr;
// To be changed: the controller is currently still responsible for deleting the breakpoint
// object
// FIXME: this whole notion of m_deleted is utterly broken and needs to be fixed properly
// for now just prevent a leak...
d->deletedBreakpoints.append(b);
}
endRemoveRows();
updateMarks();
scheduleSave();
return true;
}
int KDevelop::BreakpointModel::rowCount(const QModelIndex& parent) const
{
Q_D(const BreakpointModel);
if (!parent.isValid()) {
return d->breakpoints.count();
}
return 0;
}
int KDevelop::BreakpointModel::columnCount(const QModelIndex& parent) const
{
Q_UNUSED(parent);
return 5;
}
QVariant BreakpointModel::data(const QModelIndex& index, int role) const
{
Q_D(const BreakpointModel);
if (!index.parent().isValid() && index.row() < d->breakpoints.count()) {
return d->breakpoints.at(index.row())->data(index.column(), role);
}
return QVariant();
}
bool KDevelop::BreakpointModel::setData(const QModelIndex& index, const QVariant& value, int role)
{
Q_D(const BreakpointModel);
if (!index.parent().isValid() && index.row() < d->breakpoints.count() && (role == Qt::EditRole || role == Qt::CheckStateRole)) {
return d->breakpoints.at(index.row())->setData(index.column(), value);
}
return false;
}
void BreakpointModel::updateState(int row, Breakpoint::BreakpointState state)
{
Q_D(BreakpointModel);
Breakpoint* breakpoint = d->breakpoints.at(row);
if (state != breakpoint->m_state) {
breakpoint->m_state = state;
reportChange(breakpoint, Breakpoint::StateColumn);
}
}
void BreakpointModel::updateHitCount(int row, int hitCount)
{
Q_D(BreakpointModel);
Breakpoint* breakpoint = d->breakpoints.at(row);
if (hitCount != breakpoint->m_hitCount) {
breakpoint->m_hitCount = hitCount;
reportChange(breakpoint, Breakpoint::HitCountColumn);
}
}
void BreakpointModel::updateErrorText(int row, const QString& errorText)
{
Q_D(BreakpointModel);
Breakpoint* breakpoint = d->breakpoints.at(row);
if (breakpoint->m_errorText != errorText) {
breakpoint->m_errorText = errorText;
reportChange(breakpoint, Breakpoint::StateColumn);
}
if (!errorText.isEmpty()) {
emit error(row, errorText);
}
}
void BreakpointModel::notifyHit(int row)
{
emit hit(row);
}
void BreakpointModel::markChanged(
KTextEditor::Document *document,
KTextEditor::Mark mark,
KTextEditor::MarkInterface::MarkChangeAction action)
{
int type = mark.type;
/* Is this a breakpoint mark, to begin with? */
if (!(type & AllBreakpointMarks)) return;
if (action == KTextEditor::MarkInterface::MarkAdded) {
Breakpoint *b = breakpoint(document->url(), mark.line);
if (b) {
//there was already a breakpoint, so delete instead of adding
b->setDeleted();
return;
}
Breakpoint* breakpoint = addCodeBreakpoint(document->url(), mark.line);
setupMovingCursor(document, breakpoint);
} else {
// Find this breakpoint and delete it
Breakpoint *b = breakpoint(document->url(), mark.line);
if (b) {
b->setDeleted();
}
}
#if 0
if ( KDevelop::ICore::self()->documentController()->activeDocument() && KDevelop::ICore::self()->documentController()->activeDocument()->textDocument() == document )
{
//bring focus back to the editor
// TODO probably want a different command here
KDevelop::ICore::self()->documentController()->activateDocument(KDevelop::ICore::self()->documentController()->activeDocument());
}
#endif
}
static constexpr int breakpointMarkPixmapSize = 32;
const QPixmap* BreakpointModel::breakpointPixmap()
{
static QPixmap pixmap=QIcon::fromTheme(QStringLiteral("breakpoint")).pixmap(QSize(breakpointMarkPixmapSize, breakpointMarkPixmapSize), QIcon::Active, QIcon::Off);
return &pixmap;
}
const QPixmap* BreakpointModel::pendingBreakpointPixmap()
{
static QPixmap pixmap=QIcon::fromTheme(QStringLiteral("breakpoint")).pixmap(QSize(breakpointMarkPixmapSize, breakpointMarkPixmapSize), QIcon::Normal, QIcon::Off);
return &pixmap;
}
const QPixmap* BreakpointModel::reachedBreakpointPixmap()
{
static QPixmap pixmap=QIcon::fromTheme(QStringLiteral("breakpoint")).pixmap(QSize(breakpointMarkPixmapSize, breakpointMarkPixmapSize), QIcon::Selected, QIcon::Off);
return &pixmap;
}
const QPixmap* BreakpointModel::disabledBreakpointPixmap()
{
static QPixmap pixmap=QIcon::fromTheme(QStringLiteral("breakpoint")).pixmap(QSize(breakpointMarkPixmapSize, breakpointMarkPixmapSize), QIcon::Disabled, QIcon::Off);
return &pixmap;
}
void BreakpointModel::toggleBreakpoint(const QUrl& url, const KTextEditor::Cursor& cursor)
{
Breakpoint *b = breakpoint(url, cursor.line());
if (b) {
b->setDeleted();
} else {
addCodeBreakpoint(url, cursor.line());
}
}
void BreakpointModel::reportChange(Breakpoint* breakpoint, Breakpoint::Column column)
{
Q_D(BreakpointModel);
// note: just a portion of Breakpoint::Column is displayed in this model!
if (column >= 0 && column < columnCount()) {
QModelIndex idx = breakpointIndex(breakpoint, column);
Q_ASSERT(idx.isValid()); // make sure we don't pass invalid indices to dataChanged()
emit dataChanged(idx, idx);
}
if (IBreakpointController* controller = breakpointController()) {
int row = d->breakpoints.indexOf(breakpoint);
Q_ASSERT(row != -1);
controller->breakpointModelChanged(row, ColumnFlags(1 << column));
}
scheduleSave();
}
uint BreakpointModel::breakpointType(Breakpoint *breakpoint) const
{
uint type = BreakpointMark;
if (!breakpoint->enabled()) {
type = DisabledBreakpointMark;
} else if (breakpoint->hitCount() > 0) {
type = ReachedBreakpointMark;
} else if (breakpoint->state() == Breakpoint::PendingState) {
type = PendingBreakpointMark;
}
return type;
}
void KDevelop::BreakpointModel::updateMarks()
{
Q_D(BreakpointModel);
if (d->dontUpdateMarks)
return;
const auto* const documentController = ICore::self()->documentController();
if (!documentController) {
qCDebug(DEBUGGER) << "Cannot update marks without the document controller. "
"KDevelop must be exiting and the document controller already destroyed.";
return;
}
//add marks
for (Breakpoint* breakpoint : qAsConst(d->breakpoints)) {
if (breakpoint->kind() != Breakpoint::CodeBreakpoint) continue;
if (breakpoint->line() == -1) continue;
IDocument *doc = documentController->documentForUrl(breakpoint->url());
if (!doc) continue;
KTextEditor::MarkInterface *mark = qobject_cast<KTextEditor::MarkInterface*>(doc->textDocument());
if (!mark) continue;
uint type = breakpointType(breakpoint);
IF_DEBUG( qCDebug(DEBUGGER) << type << breakpoint->url() << mark->mark(breakpoint->line()); )
{
QSignalBlocker blocker(doc->textDocument());
if (mark->mark(breakpoint->line()) & AllBreakpointMarks) {
if (!(mark->mark(breakpoint->line()) & type)) {
mark->removeMark(breakpoint->line(), AllBreakpointMarks);
mark->addMark(breakpoint->line(), type);
}
} else {
mark->addMark(breakpoint->line(), type);
}
}
}
//remove marks
const auto documents = documentController->openDocuments();
for (IDocument* doc : documents) {
KTextEditor::MarkInterface *mark = qobject_cast<KTextEditor::MarkInterface*>(doc->textDocument());
if (!mark) continue;
{
QSignalBlocker blocker(doc->textDocument());
const auto oldMarks = mark->marks();
for (KTextEditor::Mark* m : oldMarks) {
if (!(m->type & AllBreakpointMarks)) continue;
IF_DEBUG( qCDebug(DEBUGGER) << m->line << m->type; )
for (Breakpoint* breakpoint : qAsConst(d->breakpoints)) {
if (breakpoint->kind() != Breakpoint::CodeBreakpoint) continue;
if (doc->url() == breakpoint->url() && m->line == breakpoint->line()) {
goto continueNextMark;
}
}
mark->removeMark(m->line, AllBreakpointMarks);
continueNextMark:;
}
}
}
}
void BreakpointModel::documentSaved(KDevelop::IDocument* doc)
{
Q_D(BreakpointModel);
IF_DEBUG( qCDebug(DEBUGGER); )
for (Breakpoint* breakpoint : qAsConst(d->breakpoints)) {
if (breakpoint->movingCursor()) {
if (breakpoint->movingCursor()->document() != doc->textDocument()) continue;
if (breakpoint->movingCursor()->line() == breakpoint->line()) continue;
d->dontUpdateMarks = true;
breakpoint->setLine(breakpoint->movingCursor()->line());
d->dontUpdateMarks = false;
}
}
}
void BreakpointModel::aboutToDeleteMovingInterfaceContent(KTextEditor::Document* document)
{
Q_D(BreakpointModel);
for (Breakpoint* breakpoint : qAsConst(d->breakpoints)) {
if (breakpoint->movingCursor() && breakpoint->movingCursor()->document() == document) {
breakpoint->setMovingCursor(nullptr);
}
}
}
void BreakpointModel::load()
{
KConfigGroup breakpoints = ICore::self()->activeSession()->config()->group("Breakpoints");
int count = breakpoints.readEntry("number", 0);
if (count == 0)
return;
beginInsertRows(QModelIndex(), 0, count - 1);
for (int i = 0; i < count; ++i) {
if (!breakpoints.group(QString::number(i)).readEntry("kind", "").isEmpty()) {
new Breakpoint(this, breakpoints.group(QString::number(i)));
}
}
endInsertRows();
}
void BreakpointModel::save()
{
Q_D(BreakpointModel);
d->dirty = false;
auto* const activeSession = ICore::self()->activeSession();
if (!activeSession) {
qCDebug(DEBUGGER) << "Cannot save breakpoints because there is no active session. "
"KDevelop must be exiting and already past SessionController::cleanup().";
return;
}
KConfigGroup breakpoints = activeSession->config()->group("Breakpoints");
breakpoints.writeEntry("number", d->breakpoints.count());
int i = 0;
for (Breakpoint* b : qAsConst(d->breakpoints)) {
KConfigGroup g = breakpoints.group(QString::number(i));
b->save(g);
++i;
}
breakpoints.sync();
}
void BreakpointModel::scheduleSave()
{
Q_D(BreakpointModel);
if (d->dirty)
return;
d->dirty = true;
QTimer::singleShot(0, this, &BreakpointModel::save);
}
QList<Breakpoint*> KDevelop::BreakpointModel::breakpoints() const
{
Q_D(const BreakpointModel);
return d->breakpoints;
}
Breakpoint* BreakpointModel::breakpoint(int row) const
{
Q_D(const BreakpointModel);
if (row >= d->breakpoints.count()) return nullptr;
return d->breakpoints.at(row);
}
Breakpoint* BreakpointModel::addCodeBreakpoint()
{
Q_D(BreakpointModel);
beginInsertRows(QModelIndex(), d->breakpoints.count(), d->breakpoints.count());
auto* n = new Breakpoint(this, Breakpoint::CodeBreakpoint);
endInsertRows();
return n;
}
Breakpoint* BreakpointModel::addCodeBreakpoint(const QUrl& url, int line)
{
Breakpoint* n = addCodeBreakpoint();
n->setLocation(url, line);
return n;
}
Breakpoint* BreakpointModel::addCodeBreakpoint(const QString& expression)
{
Breakpoint* n = addCodeBreakpoint();
n->setExpression(expression);
return n;
}
Breakpoint* BreakpointModel::addWatchpoint()
{
Q_D(BreakpointModel);
beginInsertRows(QModelIndex(), d->breakpoints.count(), d->breakpoints.count());
auto* n = new Breakpoint(this, Breakpoint::WriteBreakpoint);
endInsertRows();
return n;
}
Breakpoint* BreakpointModel::addWatchpoint(const QString& expression)
{
Breakpoint* n = addWatchpoint();
n->setExpression(expression);
return n;
}
Breakpoint* BreakpointModel::addReadWatchpoint()
{
Q_D(BreakpointModel);
beginInsertRows(QModelIndex(), d->breakpoints.count(), d->breakpoints.count());
auto* n = new Breakpoint(this, Breakpoint::ReadBreakpoint);
endInsertRows();
return n;
}
Breakpoint* BreakpointModel::addReadWatchpoint(const QString& expression)
{
Breakpoint* n = addReadWatchpoint();
n->setExpression(expression);
return n;
}
Breakpoint* BreakpointModel::addAccessWatchpoint()
{
Q_D(BreakpointModel);
beginInsertRows(QModelIndex(), d->breakpoints.count(), d->breakpoints.count());
auto* n = new Breakpoint(this, Breakpoint::AccessBreakpoint);
endInsertRows();
return n;
}
Breakpoint* BreakpointModel::addAccessWatchpoint(const QString& expression)
{
Breakpoint* n = addAccessWatchpoint();
n->setExpression(expression);
return n;
}
void BreakpointModel::registerBreakpoint(Breakpoint* breakpoint)
{
Q_D(BreakpointModel);
Q_ASSERT(!d->breakpoints.contains(breakpoint));
int row = d->breakpoints.size();
d->breakpoints << breakpoint;
if (IBreakpointController* controller = breakpointController()) {
controller->breakpointAdded(row);
}
scheduleSave();
}
Breakpoint* BreakpointModel::breakpoint(const QUrl& url, int line) const
{
Q_D(const BreakpointModel);
auto it = std::find_if(d->breakpoints.constBegin(), d->breakpoints.constEnd(), [&](Breakpoint* b) {
return (b->url() == url && b->line() == line);
});
return (it != d->breakpoints.constEnd()) ? *it : nullptr;
}
void BreakpointModel::setupMovingCursor(KTextEditor::Document* document, Breakpoint* breakpoint) const
{
Q_ASSERT(document->url() == breakpoint->url() && breakpoint->movingCursor() == nullptr);
auto* const movingInterface = qobject_cast<KTextEditor::MovingInterface*>(document);
if (movingInterface) {
auto* const cursor = movingInterface->newMovingCursor(KTextEditor::Cursor(breakpoint->line(), 0));
// can't use new signal/slot syntax here, MovingInterface is not a QObject
connect(document, SIGNAL(aboutToDeleteMovingInterfaceContent(KTextEditor::Document*)),
this, SLOT(aboutToDeleteMovingInterfaceContent(KTextEditor::Document*)), Qt::UniqueConnection);
breakpoint->setMovingCursor(cursor);
}
}
|