X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcommon%2Flogger.h;h=352b0ce37e2bd28d94f7f23411f59715e0ac67d2;hp=f49d270da7aea5a59cc3530b45a17c6ca2a3b9db;hb=1e8ee5e5467db6fe9795f6a6e806e310bf07ef9d;hpb=6b75ac568098c17de5f0a98ce0d96781b86e98b3 diff --git a/src/common/logger.h b/src/common/logger.h index f49d270d..352b0ce3 100644 --- a/src/common/logger.h +++ b/src/common/logger.h @@ -18,58 +18,54 @@ * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ -#ifndef _LOGGER_H_ -#define _LOGGER_H_ +#ifndef LOGGER_H +#define LOGGER_H + +#include "types.h" #include +#include #include class Logger { - public: - enum LogLevel { - DebugLevel, - InfoLevel, - WarningLevel, - ErrorLevel - }; +public: + enum LogLevel { + DebugLevel, + InfoLevel, + WarningLevel, + ErrorLevel + }; + + inline Logger(LogLevel level) : _stream(&_buffer, QIODevice::WriteOnly), _logLevel(level) {} + ~Logger(); - inline Logger(LogLevel level) : stream(new Stream(level)) {} - ~Logger(); + static void logMessage(QtMsgType type, const char *msg); - inline Logger &operator<<(const char* t) { stream->internalStream << QString::fromAscii(t); return *this; } - inline Logger &operator<<(QChar t) { stream->internalStream << t; return *this; } - inline Logger &operator<<(bool t) { stream->internalStream << (t ? "true" : "false"); return *this; } - inline Logger &operator<<(char t) { stream->internalStream << t; return *this; } - inline Logger &operator<<(signed short t) { stream->internalStream << t; return *this; } - inline Logger &operator<<(unsigned short t) { stream->internalStream << t; return *this; } - inline Logger &operator<<(signed int t) { stream->internalStream << t; return *this; } - inline Logger &operator<<(unsigned int t) { stream->internalStream << t; return *this; } - inline Logger &operator<<(signed long t) { stream->internalStream << t; return *this; } - inline Logger &operator<<(unsigned long t) { stream->internalStream << t; return *this; } - inline Logger &operator<<(qint64 t) { stream->internalStream << QString::number(t); return *this; } - inline Logger &operator<<(quint64 t) { stream->internalStream << QString::number(t); return *this; } - inline Logger &operator<<(float t) { stream->internalStream << t; return *this; } - inline Logger &operator<<(double t) { stream->internalStream << t; return *this; } - inline Logger &operator<<(const QString & t) { stream->internalStream << t; return *this; } - inline Logger &operator<<(const QLatin1String &t) { stream->internalStream << t.latin1(); return *this; } - inline Logger &operator<<(const QByteArray & t) { stream->internalStream << t ; return *this; } - inline Logger &operator<<(const void * t) { stream->internalStream << t; return *this; } + template + inline Logger &operator<<(const T &value) { _stream << value << " "; return *this; } + inline Logger &operator<<(const QStringList & t) { _stream << t.join(" ") << " "; return *this; } + inline Logger &operator<<(bool t) { _stream << (t ? "true" : "false") << " "; return *this; } + +private: + void log(); + QTextStream _stream; + QString _buffer; + LogLevel _logLevel; +}; - void log(); - private: - struct Stream { - Stream(LogLevel level) - : internalStream(&buffer, QIODevice::WriteOnly), - logLevel(level) {} - QTextStream internalStream; - QString buffer; - LogLevel logLevel; - } *stream; +class quInfo : public Logger { +public: + inline quInfo() : Logger(Logger::InfoLevel) {} }; -inline Logger quDebug() { return Logger(Logger::DebugLevel); } -inline Logger quInfo() { return Logger(Logger::InfoLevel); } -inline Logger quWarning() { return Logger(Logger::WarningLevel); } -inline Logger quError() { return Logger(Logger::ErrorLevel); } +class quWarning : public Logger { +public: + inline quWarning() : Logger(Logger::WarningLevel) {} +}; + +class quError : public Logger { +public: + inline quError() : Logger(Logger::ErrorLevel) {} +}; #endif