strawberry-audio-player-win.../ext/libstrawberry-common/core/logging.h

101 lines
3.0 KiB
C
Raw Normal View History

2018-02-27 18:06:05 +01:00
/* This file is part of Strawberry.
Copyright 2011, David Sansome <me@davidsansome.com>
2021-04-10 07:32:38 +02:00
Copyright 2018-2021, Jonas Kvinge <jonas@jkvinge.net>
2018-02-27 18:06:05 +01:00
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
#ifndef LOGGING_H
#define LOGGING_H
#include <chrono>
#include <QtGlobal>
#include <QIODevice>
#include <QString>
2018-02-27 18:06:05 +01:00
#include <QDebug>
#ifdef QT_NO_DEBUG_STREAM
# define qLog(level) while (false) QNoDebug()
2020-03-08 18:40:39 +01:00
# define qLogCat(level, category) while (false) QNoDebug()
2018-02-27 18:06:05 +01:00
#else
2021-08-24 17:52:08 +02:00
# ifdef _MSC_VER
# define qLog(level) logging::CreateLogger##level(__LINE__, __FUNCSIG__, nullptr)
# else
# define qLog(level) logging::CreateLogger##level(__LINE__, __PRETTY_FUNCTION__, nullptr)
# endif // _MSC_VER
2018-02-27 18:06:05 +01:00
2020-03-08 18:40:39 +01:00
// This macro specifies a separate category for message filtering.
// The default qLog will use the class name extracted from the function name for this purpose.
// The category is also printed in the message along with the class name.
2021-08-24 17:52:08 +02:00
# ifdef _MSC_VER
# define qLogCat(level, category) logging::CreateLogger##level(__LINE__, __FUNCSIG__, category)
# else
# define qLogCat(level, category) logging::CreateLogger##level(__LINE__, __PRETTY_FUNCTION__, category)
# endif // _MSC_VER
2020-03-08 18:40:39 +01:00
#endif // QT_NO_DEBUG_STREAM
2018-02-27 18:06:05 +01:00
namespace logging {
2020-03-08 18:40:39 +01:00
class NullDevice : public QIODevice {
2021-06-20 19:04:08 +02:00
Q_OBJECT
public:
NullDevice(QObject *parent = nullptr) : QIODevice(parent) {}
2018-02-27 18:06:05 +01:00
protected:
2020-06-26 23:01:57 +02:00
qint64 readData(char*, qint64) override { return -1; }
qint64 writeData(const char*, qint64 len) override { return len; }
2018-02-27 18:06:05 +01:00
};
enum Level {
Level_Fatal = -1,
Level_Error = 0,
Level_Warning,
Level_Info,
Level_Debug,
};
void Init();
void SetLevels(const QString& levels);
void DumpStackTrace();
QDebug CreateLoggerInfo(int line, const char *pretty_function, const char* category);
2020-03-08 18:40:39 +01:00
QDebug CreateLoggerFatal(int line, const char *pretty_function, const char* category);
QDebug CreateLoggerError(int line, const char *pretty_function, const char* category);
2018-02-27 18:06:05 +01:00
#ifdef QT_NO_WARNING_OUTPUT
2020-03-08 18:40:39 +01:00
QNoDebug CreateLoggerWarning(int, const char*, const char*);
2018-02-27 18:06:05 +01:00
#else
2020-03-08 18:40:39 +01:00
QDebug CreateLoggerWarning(int line, const char *pretty_function, const char* category);
2018-02-27 18:06:05 +01:00
#endif // QT_NO_WARNING_OUTPUT
#ifdef QT_NO_DEBUG_OUTPUT
2020-03-08 18:40:39 +01:00
QNoDebug CreateLoggerDebug(int, const char*, const char*);
2018-02-27 18:06:05 +01:00
#else
2020-03-08 18:40:39 +01:00
QDebug CreateLoggerDebug(int line, const char *pretty_function, const char* category);
#endif // QT_NO_DEBUG_OUTPUT
2018-02-27 18:06:05 +01:00
2020-03-08 18:40:39 +01:00
void GLog(const char* domain, int level, const char* message, void* user_data);
2018-02-27 18:06:05 +01:00
extern const char *kDefaultLogLevels;
2020-03-08 18:40:39 +01:00
} // namespace logging
2018-02-27 18:06:05 +01:00
2020-06-14 18:58:24 +02:00
QDebug operator<<(QDebug dbg, std::chrono::seconds secs);
2018-02-27 18:06:05 +01:00
#endif // LOGGING_H