Files
qt-creator/src/plugins/debugger/cdb/cdbdebugoutput.cpp

173 lines
4.6 KiB
C++
Raw Normal View History

/**************************************************************************
2009-02-20 17:07:00 +01:00
**
** This file is part of Qt Creator
**
** Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
2009-02-20 17:07:00 +01:00
**
** Contact: Qt Software Information (qt-info@nokia.com)
**
** Commercial Usage
2009-02-20 17:07:00 +01:00
**
** Licensees holding valid Qt Commercial licenses may use this file in
** accordance with the Qt Commercial License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and Nokia.
2009-02-20 17:07:00 +01:00
**
** GNU Lesser General Public License Usage
2009-02-20 17:07:00 +01:00
**
** Alternatively, this file may be used under the terms of the GNU Lesser
** General Public License version 2.1 as published by the Free Software
** Foundation and appearing in the file LICENSE.LGPL included in the
** packaging of this file. Please review the following information to
** ensure the GNU Lesser General Public License version 2.1 requirements
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
2009-02-20 17:07:00 +01:00
**
** If you are unsure which license is appropriate for your use, please
** contact the sales department at qt-sales@nokia.com.
2009-02-20 17:07:00 +01:00
**
**************************************************************************/
2009-02-20 17:07:00 +01:00
2009-02-09 13:07:38 +01:00
#include "cdbdebugoutput.h"
#include "cdbdebugengine.h"
2009-02-20 17:07:00 +01:00
#include "cdbdebugengine_p.h"
2009-02-09 11:35:43 +01:00
2009-02-23 14:46:46 +01:00
#include <windows.h>
#include <inc/dbgeng.h>
2009-02-09 11:35:43 +01:00
namespace Debugger {
namespace Internal {
CdbDebugOutputBase::CdbDebugOutputBase()
2009-02-23 14:46:46 +01:00
{
}
STDMETHODIMP CdbDebugOutputBase::QueryInterface(
2009-02-09 11:35:43 +01:00
THIS_
IN REFIID InterfaceId,
OUT PVOID* Interface
)
{
*Interface = NULL;
if (IsEqualIID(InterfaceId, __uuidof(IUnknown)) ||
IsEqualIID(InterfaceId, __uuidof(IDebugOutputCallbacksWide)))
2009-02-09 11:35:43 +01:00
{
*Interface = (IDebugOutputCallbacksWide*)this;
2009-02-09 11:35:43 +01:00
AddRef();
return S_OK;
2009-02-23 14:46:46 +01:00
} else {
2009-02-09 11:35:43 +01:00
return E_NOINTERFACE;
}
}
STDMETHODIMP_(ULONG) CdbDebugOutputBase::AddRef(THIS)
2009-02-09 11:35:43 +01:00
{
// This class is designed to be static so
// there's no true refcount.
return 1;
}
STDMETHODIMP_(ULONG) CdbDebugOutputBase::Release(THIS)
2009-02-09 11:35:43 +01:00
{
// This class is designed to be static so
// there's no true refcount.
return 0;
}
STDMETHODIMP CdbDebugOutputBase::Output(
THIS_
IN ULONG mask,
IN PCWSTR text
)
{
output(mask, QString::fromUtf16(text));
return S_OK;
}
IDebugOutputCallbacksWide *CdbDebugOutputBase::getOutputCallback(CIDebugClient *client)
{
IDebugOutputCallbacksWide *rc;
if (FAILED(client->GetOutputCallbacksWide(&rc)))
return 0;
return rc;
}
// ------------------------- CdbDebugOutput
// Return a prefix for debugger messages
static QString prefix(ULONG mask)
{
if (mask & (DEBUG_OUTPUT_PROMPT_REGISTERS)) {
static const QString p = QLatin1String("registers:");
return p;
}
if (mask & (DEBUG_OUTPUT_EXTENSION_WARNING|DEBUG_OUTPUT_WARNING)) {
static const QString p = QLatin1String("warning:");
return p;
}
if (mask & (DEBUG_OUTPUT_ERROR)) {
static const QString p = QLatin1String("error:");
return p;
}
if (mask & DEBUG_OUTPUT_SYMBOLS) {
static const QString p = QLatin1String("symbols:");
return p;
}
static const QString commonPrefix = QLatin1String("cdb:");
return commonPrefix;
}
enum OutputKind { DebuggerOutput, DebuggerPromptOutput, DebuggeeOutput, DebuggeePromptOutput };
static inline OutputKind outputKind(ULONG mask)
{
if (mask & DEBUG_OUTPUT_DEBUGGEE)
return DebuggeeOutput;
if (mask & DEBUG_OUTPUT_DEBUGGEE_PROMPT)
return DebuggeePromptOutput;
if (mask & DEBUG_OUTPUT_PROMPT)
return DebuggerPromptOutput;
return DebuggerOutput;
}
CdbDebugOutput::CdbDebugOutput()
2009-02-09 11:35:43 +01:00
{
}
void CdbDebugOutput::output(ULONG mask, const QString &msg)
{
if (debugCDB > 1)
qDebug() << Q_FUNC_INFO << "\n " << msg;
switch (outputKind(mask)) {
case DebuggerOutput:
debuggerOutput(prefix(mask), msg);
break;
case DebuggerPromptOutput:
emit debuggerInputPrompt(prefix(mask), msg);
break;
case DebuggeeOutput:
emit debuggeeOutput(msg);
break;
case DebuggeePromptOutput:
emit debuggeeInputPrompt(msg);
break;
}
2009-02-09 11:35:43 +01:00
}
// Utility class to temporarily redirect output to another handler
// as long as in scope
OutputRedirector::OutputRedirector(CIDebugClient *client, IDebugOutputCallbacksWide *newHandler) :
m_client(client),
m_oldHandler(CdbDebugOutputBase::getOutputCallback(client))
{
m_client->SetOutputCallbacksWide(newHandler);
}
OutputRedirector::~OutputRedirector()
{
m_client->SetOutputCallbacksWide(m_oldHandler);
}
2009-02-09 11:35:43 +01:00
} // namespace Internal
} // namespace Debugger