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 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959
|
/* This file is part of the KDE libraries
Copyright (C) 1997 Matthias Kalle Dalheimer (kalle@kde.org)
2002 Holger Freyther (freyther@kde.org)
2007-2011 David Faure (faure@kde.org)
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library 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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#define KDE_EXTENDED_DEBUG_OUTPUT
#ifndef QT_NO_CAST_FROM_ASCII
#define QT_NO_CAST_FROM_ASCII
#endif
#ifndef QT_NO_CAST_TO_ASCII
#define QT_NO_CAST_TO_ASCII
#endif
#ifndef KDE3_SUPPORT
#define KDE3_SUPPORT
#endif
#include "kdebug.h"
#include <config-io.h>
#include <QThreadStorage>
#ifdef Q_OS_WIN
#include <fcntl.h>
#include <windows.h>
#ifndef _WIN32_WCE
#include <wincon.h>
#endif
#else
#include <unistd.h>
#include <stdio.h>
#endif
#ifdef NDEBUG
#undef kDebug
#undef kBacktrace
#endif
#if HAVE_SYS_TIME_H
#include <sys/time.h>
#endif
#if HAVE_TIME_H
#include <time.h>
#endif
#include "kdatetime.h"
#include <kmessage.h>
#include <klocalizedstring.h>
#include <kconfiggroup.h>
#include <QFile>
#include <QHash>
#include <QObject>
#include <QChar>
#include <QCoreApplication>
#include <QUrl>
#include <qstandardpaths.h>
#include <qlogging.h>
#include <stdlib.h> // abort
#include <unistd.h> // getpid
#include <stdarg.h> // vararg stuff
#include <ctype.h> // isprint
#include <syslog.h>
#include <errno.h>
#include <string.h>
#include <kconfig.h>
#ifdef Q_OS_SOLARIS
// For the purposes of KDebug Solaris has a GNU-libc-compatible
// backtrace() function. This isn't detected by the CMake checks
// normally (check_function_exists fails), but we know it's there.
// For better results, we would use walk_context(), but that's
// a little more code -- see also the crash handler in kcrash.cpp .
#define HAVE_BACKTRACE (1)
#endif
#if HAVE_BACKTRACE
#include <execinfo.h>
#ifdef __GNUC__
#define HAVE_BACKTRACE_DEMANGLE
#include <cxxabi.h>
#endif
#endif
#include "kdebugdbusiface_p.h"
#include <QMutex>
KDELIBS4SUPPORT_DEPRECATED_EXPORT bool kde_kdebug_enable_dbus_interface = false;
class KNoDebugStream: public QIODevice
{
// Q_OBJECT
public:
KNoDebugStream()
{
open(WriteOnly);
}
bool isSequential() const override
{
return true;
}
qint64 readData(char *, qint64) override
{
return 0; /* eof */
}
qint64 readLineData(char *, qint64) override
{
return 0; /* eof */
}
qint64 writeData(const char *, qint64 len) override
{
return len;
}
void setContext(const char *debugFile, int line,
const char *funcinfo, const QByteArray &areaName)
{
context.file = debugFile;
context.line = line;
context.function = funcinfo;
category = areaName; // for storage
context.category = category.constData();
}
protected:
QMessageLogContext context;
QByteArray category;
};
class KSyslogDebugStream: public KNoDebugStream
{
// Q_OBJECT
public:
qint64 writeData(const char *data, qint64 len) override
{
if (len) {
// not using fromRawData because we need a terminating NUL
const QByteArray buf(data, len);
syslog(m_priority, "%s", buf.constData());
}
return len;
}
void setPriority(int priority)
{
m_priority = priority;
}
private:
int m_priority;
};
class KFileDebugStream: public KNoDebugStream
{
// Q_OBJECT
public:
qint64 writeData(const char *data, qint64 len) override
{
if (len) {
QFile aOutputFile(m_fileName);
if (aOutputFile.open(QIODevice::WriteOnly | QIODevice::Append | QIODevice::Unbuffered)) {
QByteArray buf = QByteArray::fromRawData(data, len);
// Apply QT_MESSAGE_PATTERN
const QString formatted = qFormatLogMessage(QtDebugMsg /*hack*/, context, QString::fromUtf8(buf));
buf = formatted.toUtf8();
aOutputFile.write(buf.trimmed());
aOutputFile.putChar('\n');
}
}
return len;
}
void setFileName(const QString &fn)
{
m_fileName = fn;
}
private:
QString m_fileName;
};
class KMessageBoxDebugStream: public KNoDebugStream
{
// Q_OBJECT
public:
qint64 writeData(const char *data, qint64 len) override
{
if (len) {
// Since we are in kdecore here, we cannot use KMsgBox
QString msg = QString::fromLatin1(data, len);
KMessage::message(KMessage::Information, msg, m_caption);
}
return len;
}
void setCaption(const QString &h)
{
m_caption = h;
}
private:
QString m_caption;
};
class KLineEndStrippingDebugStream: public KNoDebugStream
{
// Q_OBJECT
public:
qint64 writeData(const char *data, qint64 len) override
{
QByteArray buf = QByteArray::fromRawData(data, len);
qt_message_output(QtDebugMsg,
context,
QString::fromLocal8Bit(buf.trimmed()));
return len;
}
};
struct KDebugPrivate {
enum OutputMode {
FileOutput = 0,
MessageBoxOutput = 1,
QtOutput = 2,
SyslogOutput = 3,
NoOutput = 4,
DefaultOutput = QtOutput, // if you change DefaultOutput, also change the defaults in kdebugdialog!
Unknown = 5
};
struct Area {
inline Area()
{
clear();
}
void clear(OutputMode set = Unknown)
{
for (int i = 0; i < 4; ++i) {
logFileName[i].clear();
mode[i] = set;
}
}
QByteArray name;
QString logFileName[4];
OutputMode mode[4];
};
typedef QHash<unsigned int, Area> Cache;
KDebugPrivate()
: config(nullptr), kDebugDBusIface(nullptr), m_disableAll(false)
{
Q_ASSERT(int(QtDebugMsg) == 0);
Q_ASSERT(int(QtFatalMsg) == 3);
// Create the D-Bus interface if it has not been created yet
// But only register to D-Bus if we are in a process with a D-Bus event loop,
// otherwise introspection will just hang.
// Examples of processes without a D-Bus event loop: kioslaves and the main kdeinit process.
//
// How to know that we have a real event loop? That's tricky.
// We could delay registration in kDebugDBusIface with a QTimer, but
// it would still get triggered by kioslaves that use enterLoop/exitLoop
// to run kio jobs synchronously.
//
// Solution: we have a bool that is set by KApplication
// (kioslaves should use QCoreApplication but not KApplication).
if (kde_kdebug_enable_dbus_interface) {
kDebugDBusIface = new KDebugDBusIface;
}
for (int i = 0; i < 8; i++) {
m_nullOutputYesNoCache[i] = -1;
}
}
~KDebugPrivate()
{
delete config;
delete kDebugDBusIface;
}
void loadAreaNames()
{
// Don't clear the cache here, that would lose previously registered dynamic areas
//cache.clear();
Area &areaData = cache[0];
areaData.clear();
areaData.name = qApp ? QCoreApplication::applicationName().toUtf8() : QByteArray("unnamed app");
//qDebug() << "loadAreaNames: area 0 has name" << areaData.name;
for (int i = 0; i < 8; i++) {
m_nullOutputYesNoCache[i] = -1;
}
QString filename(QStandardPaths::locate(QStandardPaths::GenericConfigLocation, QLatin1String("kdebug.areas")));
if (!QFile::exists(filename)) {
return;
}
QFile file(filename);
if (!file.open(QIODevice::ReadOnly)) {
qWarning("Couldn't open %s", filename.toLocal8Bit().constData());
file.close();
return;
}
uint lineNumber = 0;
while (!file.atEnd()) {
const QByteArray line = file.readLine().trimmed();
++lineNumber;
if (line.isEmpty()) {
continue;
}
int i = 0;
unsigned char ch = line[i];
if (ch == '#') {
continue; // We have an eof, a comment or an empty line
}
if (ch < '0' || ch > '9') {
qWarning("Syntax error parsing '%s': no number (line %u)", qPrintable(filename), lineNumber);
continue;
}
do {
ch = line[++i];
} while (ch >= '0' && ch <= '9' && i < line.length());
unsigned int number = line.left(i).toUInt();
while (i < line.length() && line[i] <= ' ') {
i++;
}
Area areaData;
areaData.name = line.mid(i);
cache.insert(number, areaData);
}
file.close();
}
inline int level(QtMsgType type)
{
return int(type) - int(QtDebugMsg);
}
QString groupNameForArea(unsigned int area) const
{
QString groupName = QString::number(area);
if (area == 0 || !config->hasGroup(groupName)) {
groupName = QString::fromLocal8Bit(cache.value(area).name);
}
return groupName;
}
OutputMode areaOutputMode(QtMsgType type, unsigned int area, bool enableByDefault)
{
if (!configObject()) {
return QtOutput;
}
QString key;
switch (type) {
case QtDebugMsg:
key = QLatin1String("InfoOutput");
if (m_disableAll) {
return NoOutput;
}
break;
case QtWarningMsg:
key = QLatin1String("WarnOutput");
break;
case QtFatalMsg:
key = QLatin1String("FatalOutput");
break;
case QtCriticalMsg:
default:
/* Programmer error, use "Error" as default */
key = QLatin1String("ErrorOutput");
break;
}
const KConfigGroup cg(config, groupNameForArea(area));
const int mode = cg.readEntry(key, int(enableByDefault ? DefaultOutput : NoOutput));
return OutputMode(mode);
}
QString logFileName(QtMsgType type, unsigned int area)
{
if (!configObject()) {
return QString();
}
const char *aKey;
switch (type) {
case QtDebugMsg:
aKey = "InfoFilename";
break;
case QtWarningMsg:
aKey = "WarnFilename";
break;
case QtFatalMsg:
aKey = "FatalFilename";
break;
case QtCriticalMsg:
default:
aKey = "ErrorFilename";
break;
}
KConfigGroup cg(config, groupNameForArea(area));
return cg.readPathEntry(aKey, QLatin1String("kdebug.dbg"));
}
KConfig *configObject()
{
if (!config) {
config = new KConfig(QLatin1String("kdebugrc"), KConfig::NoGlobals);
m_disableAll = config->group(QString()).readEntry("DisableAll", false);
}
return config;
}
Cache::Iterator areaData(QtMsgType type, unsigned int num, bool enableByDefault = true)
{
if (!cache.contains(0)) {
//qDebug() << "cache size=" << cache.count() << "loading area names";
loadAreaNames(); // fills 'cache'
Q_ASSERT(cache.contains(0));
}
Cache::Iterator it = cache.find(num);
if (it == cache.end()) {
// unknown area
Q_ASSERT(cache.contains(0));
it = cache.find(0);
num = 0;
}
if (num == 0) { // area 0 is special, it becomes the named area "appname"
static bool s_firstDebugFromApplication = true;
if (s_firstDebugFromApplication && !m_disableAll) {
s_firstDebugFromApplication = false;
//qDebug() << "First debug output from" << it->name << "writing out with default" << enableByDefault;
writeGroupForNamedArea(it->name, enableByDefault);
}
}
const int lev = level(type);
//qDebug() << "in cache for" << num << ":" << it->mode[lev];
if (it->mode[lev] == Unknown) {
it->mode[lev] = areaOutputMode(type, num, enableByDefault);
}
if (it->mode[lev] == FileOutput && it->logFileName[lev].isEmpty()) {
it->logFileName[lev] = logFileName(type, num);
}
Q_ASSERT(it->mode[lev] != Unknown);
return it;
}
QDebug setupFileWriter(const QString &fileName)
{
if (!filewriter.hasLocalData()) {
filewriter.setLocalData(new KFileDebugStream);
}
filewriter.localData()->setFileName(fileName);
QDebug result(filewriter.localData());
return result;
}
QDebug setupMessageBoxWriter(QtMsgType type, const QByteArray &areaName)
{
if (!messageboxwriter.hasLocalData()) {
messageboxwriter.setLocalData(new KMessageBoxDebugStream);
}
QDebug result(messageboxwriter.localData());
QByteArray header;
switch (type) {
case QtDebugMsg:
header = "Info";
break;
case QtWarningMsg:
header = "Warning";
break;
case QtFatalMsg:
header = "Fatal Error";
break;
case QtCriticalMsg:
default:
header = "Error";
break;
}
if (!areaName.isEmpty()) {
header += " (";
header += areaName;
header += ')';
}
messageboxwriter.localData()->setCaption(QString::fromLatin1(header));
return result;
}
QDebug setupSyslogWriter(QtMsgType type)
{
if (!syslogwriter.hasLocalData()) {
syslogwriter.setLocalData(new KSyslogDebugStream);
}
QDebug result(syslogwriter.localData());
int level = 0;
switch (type) {
case QtDebugMsg:
level = LOG_INFO;
break;
case QtWarningMsg:
level = LOG_WARNING;
break;
case QtFatalMsg:
level = LOG_CRIT;
break;
case QtCriticalMsg:
default:
level = LOG_ERR;
break;
}
syslogwriter.localData()->setPriority(level);
return result;
}
QDebug setupQtWriter(QtMsgType type)
{
if (type == QtWarningMsg) {
// KDE warnings are not the same thing as Qt warnings
// in Qt, warnings indicate bad code, which must be corrected before the release
// in KDE, it's just something that everyone sees (including users)
type = QtDebugMsg;
}
if (type != QtDebugMsg) {
return QDebug(type);
}
return QDebug(&lineendstrippingwriter);
}
QDebug printHeader(QDebug s)
{
#ifdef KDE_EXTENDED_DEBUG_OUTPUT
static int printTimeStamp = qEnvironmentVariableIntValue("KDE_DEBUG_TIMESTAMP");
//s = s.nospace();
if (printTimeStamp > 0) {
if (printTimeStamp >= 2) {
// the extended print: 17:03:24.123
const QString sformat = QString::fromLatin1("hh:mm:ss.zzz");
s << qPrintable(QDateTime::currentDateTime().time().toString(sformat));
} else {
// the default print: 17:03:24
s << qPrintable(QDateTime::currentDateTime().time().toString());
}
//s << ' ';
}
if (m_indentString.hasLocalData()) {
s.setAutoInsertSpaces(false);
s << m_indentString.localData()->toLatin1().constData();
s.setAutoInsertSpaces(true);
}
#if 0 // This is in Qt now, see %{function} in QT_MESSAGE_PATTERN (qlogging.cpp). Only the coloring is missing (TODO Qt-5.1)
if (funcinfo && printMethodName) {
if (colored) {
if (type <= QtDebugMsg) {
s << "\033[0;34m"; //blue
} else {
s << "\033[0;31m"; //red
}
}
# ifdef Q_CC_GNU
// strip the function info down to the base function name
// note that this throws away the template definitions,
// the parameter types (overloads) and any const/volatile qualifiers
QByteArray info = funcinfo;
int pos = info.indexOf('(');
Q_ASSERT_X(pos != -1, "kDebug",
"Bug in kDebug(): I don't know how to parse this function name");
while (info.at(pos - 1) == ' ')
// that '(' we matched was actually the opening of a function-pointer
{
pos = info.indexOf('(', pos + 1);
}
info.truncate(pos);
// gcc 4.1.2 don't put a space between the return type and
// the function name if the function is in an anonymous namespace
int index = 1;
forever {
index = info.indexOf("<unnamed>::", index);
if (index == -1)
{
break;
}
if (info.at(index - 1) != ':')
{
info.insert(index, ' ');
}
index += strlen("<unnamed>::");
}
pos = info.lastIndexOf(' ');
if (pos != -1) {
int startoftemplate = info.lastIndexOf('<');
if (startoftemplate != -1 && pos > startoftemplate &&
pos < info.lastIndexOf(">::"))
// we matched a space inside this function's template definition
{
pos = info.lastIndexOf(' ', startoftemplate);
}
}
if (pos + 1 == info.length())
// something went wrong, so gracefully bail out
{
s << " " << funcinfo;
} else {
s << " " << info.constData() + pos + 1;
}
# else
s << " " << funcinfo;
# endif
if (colored) {
s << "\033[0m";
}
}
s << ":";
s.space();
#endif
#else // KDE_EXTENDED_DEBUG_OUTPUT
Q_UNUSED(funcinfo);
if (!areaName.isEmpty()) {
s.nospace();
s << areaName.constData() << ':';
s.space();
}
#endif
return s;
}
QDebug stream(QtMsgType type, unsigned int area, const char *debugFile, int line,
const char *funcinfo)
{
Cache::Iterator it = areaData(type, area);
OutputMode mode = it->mode[level(type)];
Q_ASSERT(mode != Unknown);
QString file = it->logFileName[level(type)];
QByteArray areaName = it->name;
//if (areaName.isEmpty())
// areaName = cache.value(0).name;
QDebug s(&devnull);
switch (mode) {
case FileOutput:
s = setupFileWriter(file);
filewriter.localData()->setContext(debugFile, line, funcinfo, areaName);
break;
case MessageBoxOutput:
s = setupMessageBoxWriter(type, areaName);
break;
case SyslogOutput:
s = setupSyslogWriter(type);
break;
case NoOutput:
s = QDebug(&devnull);
return s; //no need to take the time to "print header" if we don't want to output anyway
break;
case Unknown: // should not happen
default: // QtOutput
lineendstrippingwriter.setContext(debugFile, line, funcinfo, areaName);
s = setupQtWriter(type);
break;
}
return printHeader(s);
}
void writeGroupForNamedArea(const QByteArray &areaName, bool enabled)
{
// Ensure that this area name appears in kdebugrc, so that users (via kdebugdialog)
// can turn it off.
KConfig *cfgObj = configObject();
if (cfgObj) {
KConfigGroup cg(cfgObj, QString::fromUtf8(areaName));
const QString key = QString::fromLatin1("InfoOutput");
if (!cg.hasKey(key)) {
cg.writeEntry(key, int(enabled ? KDebugPrivate::QtOutput : KDebugPrivate::NoOutput));
cg.sync();
}
}
}
QMutex mutex;
KConfig *config;
KDebugDBusIface *kDebugDBusIface;
Cache cache;
bool m_disableAll;
int m_nullOutputYesNoCache[8];
KNoDebugStream devnull;
QThreadStorage<QString *> m_indentString;
QThreadStorage<KSyslogDebugStream *> syslogwriter;
QThreadStorage<KFileDebugStream *> filewriter;
QThreadStorage<KMessageBoxDebugStream *> messageboxwriter;
KLineEndStrippingDebugStream lineendstrippingwriter;
};
Q_GLOBAL_STATIC(KDebugPrivate, kDebug_data)
#if HAVE_BACKTRACE
static QString maybeDemangledName(char *name)
{
#ifdef HAVE_BACKTRACE_DEMANGLE
const int len = strlen(name);
QByteArray in = QByteArray::fromRawData(name, len);
const int mangledNameStart = in.indexOf("(_");
if (mangledNameStart >= 0) {
const int mangledNameEnd = in.indexOf('+', mangledNameStart + 2);
if (mangledNameEnd >= 0) {
int status;
// if we forget about this line and the one that undoes its effect we don't change the
// internal data of the QByteArray::fromRawData() ;)
name[mangledNameEnd] = 0;
char *demangled = abi::__cxa_demangle(name + mangledNameStart + 1, nullptr, nullptr, &status);
name[mangledNameEnd] = '+';
if (demangled) {
QString ret = QString::fromLatin1(name, mangledNameStart + 1) +
QString::fromLatin1(demangled) +
QString::fromLatin1(name + mangledNameEnd, len - mangledNameEnd);
free(demangled);
return ret;
}
}
}
#endif
return QString::fromLatin1(name);
}
#endif
QString kRealBacktrace(int levels)
{
QString s;
#if HAVE_BACKTRACE
void *trace[256];
int n = backtrace(trace, 256);
if (!n) {
return s;
}
char **strings = backtrace_symbols(trace, n);
if (levels != -1) {
n = qMin(n, levels);
}
s = QLatin1String("[\n");
for (int i = 0; i < n; ++i)
s += QString::number(i) + QLatin1String(": ") +
maybeDemangledName(strings[i]) + QLatin1Char('\n');
s += QLatin1String("]\n");
if (strings) {
free(strings);
}
#endif
return s;
}
QDebug kDebugDevNull()
{
return QDebug(&kDebug_data()->devnull);
}
QDebug kDebugStream(QtMsgType level, int area, const char *file, int line, const char *funcinfo)
{
if (kDebug_data.isDestroyed()) {
// we don't know what to return now...
qCritical().nospace() << "kDebugStream called after destruction (from "
<< (funcinfo ? funcinfo : "")
<< (file ? " file " : " unknown file")
<< (file ? file : "")
<< " line " << line << ")";
return QDebug(level);
}
QMutexLocker locker(&kDebug_data()->mutex);
return kDebug_data()->stream(level, area, file, line, funcinfo);
}
QDebug perror(QDebug s, KDebugTag)
{
return s << QString::fromLocal8Bit(strerror(errno));
}
QDebug operator<<(QDebug s, const KDateTime &time)
{
if (time.isDateOnly()) {
s.nospace() << "KDateTime(" << qPrintable(time.toString(KDateTime::QtTextDate)) << ")";
} else {
s.nospace() << "KDateTime(" << qPrintable(time.toString(KDateTime::ISODate)) << ")";
}
return s.space();
}
void kClearDebugConfig()
{
if (!kDebug_data) {
return;
}
KDebugPrivate *d = kDebug_data;
QMutexLocker locker(&d->mutex);
delete d->config;
d->config = nullptr;
KDebugPrivate::Cache::Iterator it = d->cache.begin(),
end = d->cache.end();
for (; it != end; ++it) {
it->clear();
}
for (int i = 0; i < 8; i++) {
d->m_nullOutputYesNoCache[i] = -1;
}
}
// static
bool KDebug::hasNullOutput(QtMsgType type,
bool condition,
int area,
bool enableByDefault)
{
if (!condition) {
return true;
}
if (kDebug_data.isDestroyed()) {
// kDebugStream() will generate a warning anyway, so we don't.
return false;
}
KDebugPrivate *const d = kDebug_data;
QMutexLocker locker(&d->mutex);
if (type == QtDebugMsg) {
int *entries = d->m_nullOutputYesNoCache;
for (int i = 0; i < 8; i += 2) {
if (entries[i] == area) {
return entries[i + 1];
}
}
}
KDebugPrivate::Cache::Iterator it = d->areaData(type, area, enableByDefault);
const bool ret = it->mode[d->level(type)] == KDebugPrivate::NoOutput;
// cache result for next time...
if (type == QtDebugMsg) {
int *entries = d->m_nullOutputYesNoCache;
int idx = (qrand() % 4) * 2;
entries[idx] = area;
entries[idx + 1] = ret;
}
return ret;
}
int KDebug::registerArea(const QByteArray &areaName, bool enabled)
{
// TODO for optimization: static int s_lastAreaNumber = 1;
KDebugPrivate *d = kDebug_data;
QMutexLocker locker(&d->mutex);
int areaNumber = 1;
while (d->cache.contains(areaNumber)) {
++areaNumber;
}
KDebugPrivate::Area areaData;
areaData.name = areaName;
//qDebug() << "Assigning area number" << areaNumber << "for name" << areaName;
d->cache.insert(areaNumber, areaData);
d->writeGroupForNamedArea(areaName, enabled);
return areaNumber;
}
#ifndef KDE_NO_DEBUG_OUTPUT
class Q_DECL_HIDDEN KDebug::Block::Private
{
public:
QByteArray m_label;
};
KDebug::Block::Block(const char *label, int area)
: m_area(area), d(nullptr)
{
if (hasNullOutputQtDebugMsg(area)) {
d = nullptr; // remember, for the dtor
} else {
d = new Private;
d->m_label = label;
m_startTime.start();
kDebug(area) << "BEGIN:" << label;
// The indent string is per thread
QThreadStorage<QString *> &indentString = kDebug_data()->m_indentString;
if (!indentString.hasLocalData()) {
indentString.setLocalData(new QString);
}
*(indentString.localData()) += QLatin1String(" ");
}
}
KDebug::Block::~Block()
{
if (d) {
const double duration = m_startTime.elapsed() / 1000.0;
QThreadStorage<QString *> &indentString = kDebug_data()->m_indentString;
indentString.localData()->chop(2);
// Print timing information, and a special message (DELAY) if the method took longer than 5s
if (duration < 5.0) {
kDebug(m_area)
<< "END__:"
<< d->m_label.constData()
<< qPrintable(QString::fromLatin1("[Took: %3s]").arg(QString::number(duration, 'g', 2)));
} else {
kDebug(m_area)
<< "END__:"
<< d->m_label.constData()
<< qPrintable(QString::fromLatin1("[DELAY Took (quite long) %3s]").arg(QString::number(duration, 'g', 2)));
}
delete d;
}
}
#endif
|