20 #include <TelepathyQt/PendingReady>
21 #include <TelepathyQt/Constants>
22 #include <TelepathyQt/DebugReceiver>
23 #include <TelepathyQt/PendingDebugMessageList>
27 #include <KColorScheme>
28 #include <KStandardAction>
30 #include <KLocalizedString>
31 #include <KFindDialog>
43 setContextMenuPolicy(Qt::ActionsContextMenu);
44 KAction* addMark =
new KAction(i18n(
"Add Mark"),
this);
45 connect(addMark, SIGNAL(triggered(
bool)), SLOT(onAddMark()));
46 addAction(KStandardAction::find(
this, SLOT(openFindDialog()),
this));
48 addAction(KStandardAction::copy(
this, SLOT(copy()),
this));
49 addAction(KStandardAction::selectAll(
this, SLOT(selectAll()),
this));
55 if (m_debugReceiver && m_ready) {
57 Tp::PendingOperation *op = m_debugReceiver->setMonitoringEnabled(
false);
59 connect(op, SIGNAL(finished(Tp::PendingOperation*)), &loop, SLOT(quit()));
66 m_serviceName = service;
67 m_serviceWatcher =
new QDBusServiceWatcher(service, QDBusConnection::sessionBus(),
68 QDBusServiceWatcher::WatchForRegistration,
this);
69 connect(m_serviceWatcher, SIGNAL(serviceRegistered(QString)),
70 SLOT(onServiceRegistered(QString)));
72 if (QDBusConnection::sessionBus().interface()->isServiceRegistered(service)) {
73 onServiceRegistered(service);
78 void DebugMessageView::onServiceRegistered(
const QString & service)
80 kDebug() <<
"Service" << service <<
"registered. Introspecting Debug interface...";
82 m_debugReceiver = Tp::DebugReceiver::create(service);
84 Tp::PendingReady *op = m_debugReceiver->becomeReady();
85 connect(op, SIGNAL(finished(Tp::PendingOperation*)),
86 SLOT(onDebugReceiverReady(Tp::PendingOperation*)));
89 void DebugMessageView::onDebugReceiverInvalidated(Tp::DBusProxy *proxy,
90 const QString &errorName,
const QString &errorMessage)
93 kDebug() <<
"DebugReceiver invalidated" << errorName << errorMessage;
95 m_debugReceiver.reset();
98 void DebugMessageView::onDebugReceiverReady(Tp::PendingOperation *op)
101 kDebug() <<
"Failed to introspect Debug interface for" << m_serviceName
102 <<
"Error was:" << op->errorName() <<
"-" << op->errorMessage();
103 m_debugReceiver.reset();
105 connect(m_debugReceiver.data(), SIGNAL(newDebugMessage(Tp::DebugMessage)),
106 SLOT(onNewDebugMessage(Tp::DebugMessage)));
108 connect(m_debugReceiver->setMonitoringEnabled(
true),
109 SIGNAL(finished(Tp::PendingOperation*)),
110 SLOT(onDebugReceiverMonitoringEnabled(Tp::PendingOperation*)));
114 void DebugMessageView::onDebugReceiverMonitoringEnabled(Tp::PendingOperation* op)
117 kError() <<
"Failed to enable monitoring on the Debug object of" << m_serviceName
118 <<
"Error was:" << op->errorName() <<
"-" << op->errorMessage();
120 m_debugReceiver.reset();
122 connect(m_debugReceiver->fetchMessages(), SIGNAL(finished(Tp::PendingOperation*)),
123 SLOT(onFetchMessagesFinished(Tp::PendingOperation*)));
127 void DebugMessageView::onFetchMessagesFinished(Tp::PendingOperation* op)
130 kError() <<
"Failed to fetch messages from" << m_serviceName
131 <<
"Error was:" << op->errorName() <<
"-" << op->errorMessage();
133 m_debugReceiver.reset();
135 Tp::PendingDebugMessageList *pdml = qobject_cast<Tp::PendingDebugMessageList*>(op);
136 Tp::DebugMessageList messages = pdml->result();
137 messages.append(m_tmpCache);
140 Q_FOREACH(
const Tp::DebugMessage &msg, messages) {
147 connect(m_debugReceiver.data(),
148 SIGNAL(invalidated(Tp::DBusProxy*,QString,QString)),
149 SLOT(onDebugReceiverInvalidated(Tp::DBusProxy*,QString,QString)));
153 void DebugMessageView::onNewDebugMessage(
const Tp::DebugMessage & msg)
159 m_tmpCache.append(msg);
172 ms = (int) ((timestamp - (
int) timestamp)*1e6);
173 sec = (long) timestamp;
174 tstruct = std::localtime((time_t *) &sec);
175 if (!std::strftime(time_str,
sizeof(time_str),
"%x %T", tstruct)) {
176 kDebug() <<
"Failed to format timestamp" << timestamp;
181 str.sprintf(
"%s.%d", time_str, ms);
185 void DebugMessageView::appendMessage(
const Tp::DebugMessage &msg)
188 QLatin1Literal(
" - [") % msg.domain % QLatin1Literal(
"] ") %
193 void DebugMessageView::onAddMark()
195 append(QString(QLatin1String(
"%1 -----------------------------")).arg(QDate::currentDate().toString()));
198 void DebugMessageView::openFindDialog()
200 QPointer<KFindDialog> dialog(
new KFindDialog(
this));
201 dialog->setPattern(textCursor().selectedText());
202 if(dialog->exec()==QDialog::Accepted) {
203 QTextDocument::FindFlags flags=0;
204 if(dialog->options() & KFind::FindBackwards) flags |= QTextDocument::FindBackward;
205 if(dialog->options() & KFind::WholeWordsOnly) flags |= QTextDocument::FindWholeWords;
206 if(dialog->options() & KFind::CaseSensitive) flags |= QTextDocument::FindCaseSensitively;
207 bool ret = find(dialog->pattern(), flags);
209 Q_EMIT
statusMessage(i18n(
"Could not find '%1'", dialog->pattern()));