2011-04-22 18:50:29 +02:00
|
|
|
/* This file is part of Clementine.
|
2011-04-25 21:16:26 +02:00
|
|
|
Copyright 2011, David Sansome <me@davidsansome.com>
|
2011-04-22 18:50:29 +02:00
|
|
|
|
2011-04-25 21:16:26 +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
|
|
|
|
2011-04-25 21:16:26 +02:00
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
2011-04-22 18:50:29 +02:00
|
|
|
|
2011-04-25 21:16:26 +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
|
|
|
*/
|
|
|
|
|
2011-04-26 15:43:13 +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
|
2014-02-07 16:34:20 +01:00
|
|
|
#define qLog(level) \
|
|
|
|
while (false) QNoDebug()
|
2020-01-30 06:32:09 +01:00
|
|
|
|
|
|
|
#define qLogCat(level, category) \
|
|
|
|
while (false) QNoDebug()
|
2011-04-22 19:17:37 +02:00
|
|
|
#else
|
2015-06-11 18:06:09 +02:00
|
|
|
|
2015-06-11 11:35:30 +02:00
|
|
|
#define qLog(level) \
|
2020-01-30 06:32:09 +01:00
|
|
|
logging::CreateLogger##level(__LINE__, __PRETTY_FUNCTION__, nullptr)
|
2015-06-11 11:35:30 +02:00
|
|
|
|
2020-01-30 06:32:09 +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.
|
|
|
|
#define qLogCat(level, category) \
|
|
|
|
logging::CreateLogger##level(__LINE__, __PRETTY_FUNCTION__, category)
|
2015-06-11 11:35:30 +02:00
|
|
|
|
2020-01-30 06:32:09 +01:00
|
|
|
#endif // QT_NO_DEBUG_STREAM
|
2011-04-22 18:50:29 +02:00
|
|
|
|
|
|
|
namespace logging {
|
2014-02-07 16:34:20 +01:00
|
|
|
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
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
enum Level {
|
|
|
|
Level_Fatal = -1,
|
|
|
|
Level_Error = 0,
|
|
|
|
Level_Warning,
|
|
|
|
Level_Info,
|
|
|
|
Level_Debug,
|
|
|
|
};
|
2011-04-22 18:50:29 +02:00
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
void Init();
|
|
|
|
void SetLevels(const QString& levels);
|
2011-04-22 18:50:29 +02:00
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
void DumpStackTrace();
|
2012-01-18 02:54:45 +01:00
|
|
|
|
2020-01-30 06:32:09 +01:00
|
|
|
QDebug CreateLoggerFatal(int line, const char* pretty_function,
|
|
|
|
const char* category);
|
|
|
|
QDebug CreateLoggerError(int line, const char* pretty_function,
|
|
|
|
const char* category);
|
2015-06-11 18:06:09 +02:00
|
|
|
|
|
|
|
#ifdef QT_NO_WARNING_OUTPUT
|
2020-01-30 06:32:09 +01:00
|
|
|
QNoDebug CreateLoggerWarning(int, const char*, const char*);
|
2015-06-11 18:06:09 +02:00
|
|
|
#else
|
2020-01-30 06:32:09 +01:00
|
|
|
QDebug CreateLoggerWarning(int line, const char* pretty_function,
|
|
|
|
const char* category);
|
|
|
|
#endif // QT_NO_WARNING_OUTPUT
|
2015-06-11 18:06:09 +02:00
|
|
|
|
|
|
|
#ifdef QT_NO_DEBUG_OUTPUT
|
2020-01-30 06:32:09 +01:00
|
|
|
QNoDebug CreateLoggerInfo(int, const char*, const char*);
|
|
|
|
QNoDebug CreateLoggerDebug(int, const char*, const char*);
|
2015-06-11 18:06:09 +02:00
|
|
|
#else
|
2020-01-30 06:32:09 +01:00
|
|
|
QDebug CreateLoggerInfo(int line, const char* pretty_function,
|
|
|
|
const char* category);
|
|
|
|
QDebug CreateLoggerDebug(int line, const char* pretty_function,
|
|
|
|
const char* category);
|
|
|
|
#endif // QT_NO_DEBUG_OUTPUT
|
2015-06-11 18:06:09 +02:00
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
void GLog(const char* domain, int level, const char* message, void* user_data);
|
2011-04-25 21:16:26 +02:00
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
extern const char* kDefaultLogLevels;
|
2020-01-30 06:32:09 +01:00
|
|
|
} // namespace logging
|
2011-04-22 18:50:29 +02:00
|
|
|
|
2015-07-20 15:35:13 +02:00
|
|
|
QDebug operator<<(QDebug debug, std::chrono::seconds secs);
|
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
#endif // LOGGING_H
|