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
|
// *************************************************************************
// gdboutputwidget.cpp - description
// -------------------
// begin : 10th April 2003
// copyright : (C) 2003 by John Birch
// email : jbb@kdevelop.org
// **************************************************************************
//
// **************************************************************************
// * *
// * 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. *
// * *
// **************************************************************************
#include "gdboutputwidget.h"
#include "dbgcontroller.h"
#include <kcombobox.h>
#include <kdebug.h>
#include <kiconloader.h>
#include <klocale.h>
#include <kpopupmenu.h>
#include <qlabel.h>
#include <qlayout.h>
#include <qtextedit.h>
#include <qtoolbutton.h>
#include <qtooltip.h>
#include <qapplication.h>
#include <qclipboard.h>
#include <qdom.h>
namespace GDBDebugger
{
/***************************************************************************/
GDBOutputWidget::GDBOutputWidget( QWidget *parent, const char *name) :
QWidget(parent, name),
m_userGDBCmdEditor(0),
m_Interrupt(0),
m_gdbView(0),
showInternalCommands_(false),
maxLines_(5000)
{
m_gdbView = new OutputText(this);
m_gdbView->setTextFormat(QTextEdit::LogText);
QBoxLayout *userGDBCmdEntry = new QHBoxLayout();
m_userGDBCmdEditor = new KHistoryCombo (this, "gdb-user-cmd-editor");
QLabel *label = new QLabel(i18n("&GDB cmd:"), this);
label->setBuddy(m_userGDBCmdEditor);
userGDBCmdEntry->addWidget(label);
userGDBCmdEntry->addWidget(m_userGDBCmdEditor);
userGDBCmdEntry->setStretchFactor(m_userGDBCmdEditor, 1);
m_Interrupt = new QToolButton( this, "add breakpoint" );
m_Interrupt->setSizePolicy ( QSizePolicy ( (QSizePolicy::SizeType)0,
( QSizePolicy::SizeType)0,
0,
0,
m_Interrupt->sizePolicy().hasHeightForWidth())
);
m_Interrupt->setPixmap ( SmallIcon ( "player_pause" ) );
userGDBCmdEntry->addWidget(m_Interrupt);
QToolTip::add ( m_Interrupt, i18n ( "Pause execution of the app to enter gdb commands" ) );
QVBoxLayout *topLayout = new QVBoxLayout(this, 2);
topLayout->addWidget(m_gdbView, 10);
topLayout->addLayout(userGDBCmdEntry);
slotDbgStatus( "", s_dbgNotStarted);
connect( m_userGDBCmdEditor, SIGNAL(returnPressed()), SLOT(slotGDBCmd()) );
connect( m_Interrupt, SIGNAL(clicked()), SIGNAL(breakInto()));
connect( &updateTimer_, SIGNAL(timeout()),
this, SLOT(flushPending()));
}
/***************************************************************************/
GDBOutputWidget::~GDBOutputWidget()
{
delete m_gdbView;
delete m_userGDBCmdEditor;
}
/***************************************************************************/
void GDBOutputWidget::clear()
{
if (m_gdbView)
m_gdbView->clear();
userCommands_.clear();
allCommands_.clear();
}
/***************************************************************************/
void GDBOutputWidget::slotInternalCommandStdout(const char* line)
{
newStdoutLine(line, true);
}
void GDBOutputWidget::slotUserCommandStdout(const char* line)
{
newStdoutLine(line, false);
}
namespace {
QString colorify(QString text, const QString& color)
{
// Make sure the newline is at the end of the newly-added
// string. This is so that we can always correctly remove
// newline inside 'flushPending'.
Q_ASSERT(text.endsWith("\n"));
if (text.endsWith("\n"))
{
text.remove(text.length()-1, 1);
}
text = "<font color=\"" + color + "\">" + text + "</font>\n";
return text;
}
}
void GDBOutputWidget::newStdoutLine(const QString& line,
bool internal)
{
QString s = html_escape(line);
if (s.startsWith("(gdb)"))
{
s = colorify(s, "blue");
}
allCommands_.append(s);
allCommandsRaw_.append(line);
trimList(allCommands_, maxLines_);
trimList(allCommandsRaw_, maxLines_);
if (!internal)
{
userCommands_.append(s);
userCommandsRaw_.append(line);
trimList(userCommands_, maxLines_);
trimList(userCommandsRaw_, maxLines_);
}
if (!internal || showInternalCommands_)
showLine(s);
}
void GDBOutputWidget::showLine(const QString& line)
{
pendingOutput_ += line;
// To improve performance, we update the view after some delay.
if (!updateTimer_.isActive())
{
updateTimer_.start(100, true /* single shot */);
}
}
void GDBOutputWidget::trimList(QStringList& l, unsigned max_size)
{
unsigned int length = l.count();
if (length > max_size)
{
for(int to_delete = length - max_size; to_delete; --to_delete)
{
l.erase(l.begin());
}
}
}
void GDBOutputWidget::setShowInternalCommands(bool show)
{
if (show != showInternalCommands_)
{
showInternalCommands_ = show;
// Set of strings to show changes, text edit still has old
// set. Refresh.
m_gdbView->clear();
QStringList& newList =
showInternalCommands_ ? allCommands_ : userCommands_;
QStringList::iterator i = newList.begin(), e = newList.end();
for(; i != e; ++i)
{
// Note that color formatting is already applied to '*i'.
showLine(*i);
}
}
}
/***************************************************************************/
void GDBOutputWidget::slotReceivedStderr(const char* line)
{
QString colored = colorify(html_escape(line), "red");
// Errors are shown inside user commands too.
allCommands_.append(colored);
trimList(allCommands_, maxLines_);
userCommands_.append(colored);
trimList(userCommands_, maxLines_);
allCommandsRaw_.append(line);
trimList(allCommandsRaw_, maxLines_);
userCommandsRaw_.append(line);
trimList(userCommandsRaw_, maxLines_);
showLine(colored);
}
/***************************************************************************/
void GDBOutputWidget::slotGDBCmd()
{
QString GDBCmd(m_userGDBCmdEditor->currentText());
if (!GDBCmd.isEmpty())
{
m_userGDBCmdEditor->addToHistory(GDBCmd);
m_userGDBCmdEditor->clearEdit();
emit userGDBCmd(GDBCmd);
}
}
void GDBOutputWidget::flushPending()
{
m_gdbView->setUpdatesEnabled(false);
// QTextEdit adds newline after paragraph automatically.
// So, remove trailing newline to avoid double newlines.
if (pendingOutput_.endsWith("\n"))
pendingOutput_.remove(pendingOutput_.length()-1, 1);
Q_ASSERT(!pendingOutput_.endsWith("\n"));
m_gdbView->append(pendingOutput_);
pendingOutput_ = "";
m_gdbView->scrollToBottom();
m_gdbView->setUpdatesEnabled(true);
m_gdbView->update();
m_userGDBCmdEditor->setFocus();
}
/***************************************************************************/
void GDBOutputWidget::slotDbgStatus(const QString &, int statusFlag)
{
if (statusFlag & s_dbgNotStarted)
{
m_Interrupt->setEnabled(false);
m_userGDBCmdEditor->setEnabled(false);
return;
}
else
{
m_Interrupt->setEnabled(true);
}
if (statusFlag & s_dbgBusy)
{
m_userGDBCmdEditor->setEnabled(false);
}
else
{
m_userGDBCmdEditor->setEnabled(true);
}
}
/***************************************************************************/
void GDBOutputWidget::focusInEvent(QFocusEvent */*e*/)
{
m_gdbView->scrollToBottom();
m_userGDBCmdEditor->setFocus();
}
QString GDBOutputWidget::html_escape(const QString& s)
{
QString r(s);
r.replace("<", "<");
r.replace(">", ">");
return r;
}
void GDBOutputWidget::savePartialProjectSession(QDomElement* el)
{
QDomDocument doc = el->ownerDocument();
QDomElement showInternal = doc.createElement("showInternalCommands");
showInternal.setAttribute("value", QString::number(showInternalCommands_));
el->appendChild(showInternal);
}
void GDBOutputWidget::restorePartialProjectSession(const QDomElement* el)
{
QDomElement showInternal =
el->namedItem("showInternalCommands").toElement();
if (!showInternal.isNull())
{
showInternalCommands_ = showInternal.attribute("value", "0").toInt();
}
}
//void OutputText::contextMenuEvent(QContextMenuEvent* e)
QPopupMenu* OutputText::createPopupMenu(const QPoint&)
{
KPopupMenu* popup = new KPopupMenu;
int id = popup->insertItem(i18n("Show Internal Commands"),
this,
SLOT(toggleShowInternalCommands()));
popup->setItemChecked(id, parent_->showInternalCommands_);
popup->setWhatsThis(
id,
i18n(
"Controls if commands issued internally by KDevelop "
"will be shown or not.<br>"
"This option will affect only future commands, it won't "
"add or remove already issued commands from the view."));
popup->insertItem(i18n("Copy All"),
this,
SLOT(copyAll()));
return popup;
}
void OutputText::copyAll()
{
/* See comments for allCommandRaw_ for explanations of
this complex logic, as opposed to calling text(). */
QStringList& raw = parent_->showInternalCommands_ ?
parent_->allCommandsRaw_ : parent_->userCommandsRaw_;
QString text;
for (unsigned i = 0; i < raw.size(); ++i)
text += raw[i];
// Make sure the text is pastable both with Ctrl-C and with
// middle click.
QApplication::clipboard()->setText(text, QClipboard::Clipboard);
QApplication::clipboard()->setText(text, QClipboard::Selection);
}
void OutputText::toggleShowInternalCommands()
{
parent_->setShowInternalCommands(!parent_->showInternalCommands_);
}
/***************************************************************************/
/***************************************************************************/
/***************************************************************************/
}
#include "gdboutputwidget.moc"
|