1
0
mirror of https://github.com/clementine-player/Clementine synced 2025-01-11 01:14:24 +01:00
Clementine-audio-player-Mac.../ext/libclementine-common/core/logging.h

93 lines
2.5 KiB
C
Raw Normal View History

2011-04-22 18:50:29 +02:00
/* This file is part of Clementine.
Copyright 2011, David Sansome <me@davidsansome.com>
2011-04-22 18:50:29 +02: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
2011-04-22 18:50:29 +02:00
http://www.apache.org/licenses/LICENSE-2.0
2011-04-22 18:50:29 +02:00
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.
2011-04-22 18:50:29 +02:00
*/
// Note: this file is licensed under the Apache License instead of GPL because
// it is used by the Spotify blob which links against libspotify and is not GPL
// compatible.
2011-04-22 18:50:29 +02:00
#ifndef LOGGING_H
#define LOGGING_H
2015-07-20 15:35:13 +02:00
#include <chrono>
#include <string>
2011-04-22 18:50:29 +02:00
#include <QDebug>
2011-04-22 19:17:37 +02:00
#ifdef QT_NO_DEBUG_STREAM
#define qLog(level) \
while (false) QNoDebug()
2011-04-22 19:17:37 +02:00
#else
#define qLog(level) \
2015-06-16 19:58:36 +02:00
logging::CreateLogger##level(__LINE__, __PRETTY_FUNCTION__)
2015-06-16 19:58:36 +02:00
#define qCreateLogger(line, class_name, level) \
logging::CreateLogger(logging::Level_##level, \
2015-06-16 19:58:36 +02:00
logging::ParsePrettyFunction(class_name), \
line)
#endif // QT_NO_DEBUG_STREAM
2011-04-22 18:50:29 +02:00
namespace logging {
class NullDevice : public QIODevice {
protected:
qint64 readData(char*, qint64) { return -1; }
qint64 writeData(const char*, qint64 len) { return len; }
};
2011-04-22 18:50:29 +02:00
enum Level {
Level_Fatal = -1,
Level_Error = 0,
Level_Warning,
Level_Info,
Level_Debug,
};
2011-04-22 18:50:29 +02:00
void Init();
void SetLevels(const QString& levels);
2011-04-22 18:50:29 +02:00
void DumpStackTrace();
QString ParsePrettyFunction(const char* pretty_function);
QDebug CreateLogger(Level level, const QString& class_name, int line);
2011-04-22 18:50:29 +02:00
2015-06-16 19:58:36 +02:00
QDebug CreateLoggerFatal(int line, const char* class_name);
QDebug CreateLoggerError(int line, const char* class_name);
#ifdef QT_NO_WARNING_OUTPUT
2015-06-16 19:58:36 +02:00
QNoDebug CreateLoggerWarning(int, const char*);
#else
2015-06-16 19:58:36 +02:00
QDebug CreateLoggerWarning(int line, const char* class_name);
#endif // QT_NO_WARNING_OUTPUT
#ifdef QT_NO_DEBUG_OUTPUT
2015-06-16 19:58:36 +02:00
QNoDebug CreateLoggerInfo(int, const char*);
QNoDebug CreateLoggerDebug(int, const char*);
#else
2015-06-16 19:58:36 +02:00
QDebug CreateLoggerInfo(int line, const char* class_name);
QDebug CreateLoggerDebug(int line, const char* class_name);
#endif // QT_NO_DEBUG_OUTPUT
void GLog(const char* domain, int level, const char* message, void* user_data);
extern const char* kDefaultLogLevels;
2011-04-22 18:50:29 +02:00
}
2015-07-20 15:35:13 +02:00
QDebug operator<<(QDebug debug, std::chrono::seconds secs);
#endif // LOGGING_H