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
|
#include "uidebug.h"
#include "common/unused.h"
#include "qio.h"
#include "debugconsole.h"
#include "common/global.h"
#include <QFile>
#include <QTime>
DebugConsole* sqliteStudioUiDebugConsole = nullptr;
MsgHandlerThreadProxy* msgHandlerThreadProxy = nullptr;
bool UI_DEBUG_ENABLED = false;
bool UI_DEBUG_CONSOLE = true;
QString UI_DEBUG_FILE;
QStringList MsgHandlerThreadProxy::ignoredWarnings;
void uiMessageHandler(QtMsgType type, const QMessageLogContext &context, const QString &msg)
{
if (!UI_DEBUG_ENABLED)
return;
UNUSED(context);
static const QString dbgMsg = QStringLiteral("[%1] DEBUG: %2");
static const QString wrnMsg = QStringLiteral("[%1] WARNING: %2");
static const QString criMsg = QStringLiteral("[%1] CRITICAL: %2");
static const QString fatMsg = QStringLiteral("[%1] FATAL: %2");
QString time = QTime::currentTime().toString("HH:mm:ss.zzz");
switch (type) {
case QtDebugMsg:
msgHandlerThreadProxy->debug(dbgMsg.arg(time, msg));
break;
case QtWarningMsg:
msgHandlerThreadProxy->warn(wrnMsg.arg(time, msg));
break;
case QtCriticalMsg:
msgHandlerThreadProxy->critical(criMsg.arg(time, msg));
break;
case QtFatalMsg:
msgHandlerThreadProxy->fatal(fatMsg.arg(time, msg));
abort();
#if QT_VERSION >= 0x050500
case QtInfoMsg:
msgHandlerThreadProxy->debug(fatMsg.arg(time, msg));
break;
#endif
}
}
void setUiDebug(bool enabled, bool useUiConsole, const QString& file)
{
UI_DEBUG_ENABLED = enabled;
UI_DEBUG_CONSOLE = useUiConsole && file.isEmpty();
UI_DEBUG_FILE = file;
safe_delete(msgHandlerThreadProxy);
safe_delete(sqliteStudioUiDebugConsole);
if (enabled)
{
if (UI_DEBUG_CONSOLE)
sqliteStudioUiDebugConsole = new DebugConsole();
if (file.isEmpty())
msgHandlerThreadProxy = new MsgHandlerThreadProxy();
else
msgHandlerThreadProxy = new MsgHandlerThreadProxy(file);
}
}
void showUiDebugConsole()
{
if (sqliteStudioUiDebugConsole)
sqliteStudioUiDebugConsole->show();
}
bool isDebugEnabled()
{
return UI_DEBUG_ENABLED;
}
bool isDebugConsoleEnabled()
{
return UI_DEBUG_CONSOLE;
}
MsgHandlerThreadProxy::MsgHandlerThreadProxy(QObject *parent) :
QObject(parent)
{
init();
}
MsgHandlerThreadProxy::MsgHandlerThreadProxy(const QString &file, QObject *parent) :
QObject(parent)
{
initFile(file);
init();
}
MsgHandlerThreadProxy::~MsgHandlerThreadProxy()
{
if (outFile)
{
outFile->close();
safe_delete(outFile);
}
}
void MsgHandlerThreadProxy::init()
{
ignoredWarnings << QStringLiteral("libpng warning: Unknown iTXt compression type or method");
ignoredWarnings << QStringLiteral("QPainter::font: Painter not active");
if (sqliteStudioUiDebugConsole)
{
connect(this, SIGNAL(debugRequested(QString)), sqliteStudioUiDebugConsole, SLOT(debug(QString)));
connect(this, SIGNAL(warnRequested(QString)), sqliteStudioUiDebugConsole, SLOT(warning(QString)));
connect(this, SIGNAL(criticalRequested(QString)), sqliteStudioUiDebugConsole, SLOT(critical(QString)));
connect(this, SIGNAL(fatalRequested(QString)), sqliteStudioUiDebugConsole, SLOT(fatal(QString)));
}
else if (outFile)
{
connect(this, SIGNAL(debugRequested(QString)), this, SLOT(printToFile(QString)));
connect(this, SIGNAL(warnRequested(QString)), this, SLOT(printToFile(QString)));
connect(this, SIGNAL(criticalRequested(QString)), this, SLOT(printToFile(QString)));
connect(this, SIGNAL(fatalRequested(QString)), this, SLOT(printToFile(QString)));
}
else
{
connect(this, SIGNAL(debugRequested(QString)), this, SLOT(print(QString)));
connect(this, SIGNAL(warnRequested(QString)), this, SLOT(print(QString)));
connect(this, SIGNAL(criticalRequested(QString)), this, SLOT(print(QString)));
connect(this, SIGNAL(fatalRequested(QString)), this, SLOT(print(QString)));
}
}
void MsgHandlerThreadProxy::initFile(const QString &fileName)
{
outFile = new QFile(fileName);
if (outFile->open(QIODevice::WriteOnly))
outFileStream.setDevice(outFile);
else
safe_delete(outFile);
}
void MsgHandlerThreadProxy::debug(const QString &msg)
{
emit debugRequested(msg);
}
void MsgHandlerThreadProxy::warn(const QString &msg)
{
if (ignoredWarnings.contains(msg.mid(25)))
return;
emit warnRequested(msg);
}
void MsgHandlerThreadProxy::critical(const QString &msg)
{
emit criticalRequested(msg);
}
void MsgHandlerThreadProxy::fatal(const QString &msg)
{
emit fatalRequested(msg);
}
void MsgHandlerThreadProxy::print(const QString& txt)
{
qOut << txt << "\n";
qOut.flush();
}
void MsgHandlerThreadProxy::printToFile(const QString &txt)
{
outFileStream << txt << "\n";
outFileStream.flush();
}
|