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
|
/*
* This file is part of the API Extractor project.
*
* Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
*
* Contact: PySide team <contact@pyside.org>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* version 2 as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA
*
*/
#include "reporthandler.h"
#include "typesystem.h"
#include "typedatabase.h"
#include <QtCore/QSet>
#include <cstring>
#include <cstdarg>
#include <cstdio>
#if _WINDOWS || NOCOLOR
#define COLOR_END ""
#define COLOR_WHITE ""
#define COLOR_YELLOW ""
#define COLOR_GREEN ""
#else
#define COLOR_END "\033[0m"
#define COLOR_WHITE "\033[1;37m"
#define COLOR_YELLOW "\033[1;33m"
#define COLOR_GREEN "\033[0;32m"
#endif
static bool m_silent = false;
static int m_warningCount = 0;
static int m_suppressedCount = 0;
static QString m_context;
static ReportHandler::DebugLevel m_debugLevel = ReportHandler::NoDebug;
static QSet<QString> m_reportedWarnings;
static QString m_progressBuffer;
static int m_step_size = 0;
static int m_step = -1;
static int m_step_warning = 0;
static void printProgress()
{
std::printf("%s", m_progressBuffer.toAscii().data());
std::fflush(stdout);
m_progressBuffer.clear();
}
static void printWarnings()
{
if (m_reportedWarnings.size() > 0) {
m_progressBuffer += "\t";
foreach(QString msg, m_reportedWarnings)
m_progressBuffer += msg + "\n\t";
m_progressBuffer += "\n\n";
m_reportedWarnings.clear();
printProgress();
}
}
ReportHandler::DebugLevel ReportHandler::debugLevel()
{
return m_debugLevel;
}
void ReportHandler::setDebugLevel(ReportHandler::DebugLevel level)
{
m_debugLevel = level;
}
void ReportHandler::setContext(const QString& context)
{
m_context = context;
}
int ReportHandler::suppressedCount()
{
return m_suppressedCount;
}
int ReportHandler::warningCount()
{
return m_warningCount;
}
void ReportHandler::setProgressReference(int max)
{
m_step_size = max;
m_step = -1;
}
bool ReportHandler::isSilent()
{
return m_silent;
}
void ReportHandler::setSilent(bool silent)
{
m_silent = silent;
}
void ReportHandler::warning(const QString &text)
{
if (m_silent)
return;
// Context is useless!
// QString warningText = QString("\r" COLOR_YELLOW "WARNING(%1)" COLOR_END " :: %2").arg(m_context).arg(text);
TypeDatabase *db = TypeDatabase::instance();
if (db && db->isSuppressedWarning(text)) {
++m_suppressedCount;
} else if (!m_reportedWarnings.contains(text)) {
++m_warningCount;
++m_step_warning;
m_reportedWarnings << text;
}
}
void ReportHandler::progress(const QString& str, ...)
{
if (m_silent)
return;
if (m_step == -1) {
QTextStream buf(&m_progressBuffer);
buf.setFieldWidth(45);
buf.setFieldAlignment(QTextStream::AlignLeft);
buf << str;
printProgress();
m_step = 0;
}
m_step++;
if (m_step >= m_step_size) {
if (m_step_warning == 0) {
m_progressBuffer = "[" COLOR_GREEN "OK" COLOR_END "]\n";
} else {
m_progressBuffer = "[" COLOR_YELLOW "WARNING" COLOR_END "]\n";
}
printProgress();
m_step_warning = 0;
}
}
void ReportHandler::flush()
{
if (!m_silent)
printWarnings();
}
void ReportHandler::debug(DebugLevel level, const QString &text)
{
if (m_debugLevel == NoDebug)
return;
if (level <= m_debugLevel) {
std::printf("\r" COLOR_GREEN "DEBUG" COLOR_END " :: %-70s\n", qPrintable(text));
printProgress();
}
}
|