17 #ifndef NURIA_DEBUG_HPP
18 #define NURIA_DEBUG_HPP
20 #include "essentials.hpp"
21 #include "callback.hpp"
89 class NURIA_CORE_EXPORT
Debug :
public QDebug {
100 AllLevels = CriticalMsg + 1,
101 DefaultLowestMsgLevel = DebugMsg
109 Debug (Type type,
const char *module,
const char *fileName,
int line,
110 const char *className,
const char *methodName);
128 static void setModuleLevel (
const char *module, Type leastLevel);
133 static bool isModuleDisabled (
const char *module, Type level);
137 return (level < m_lowestLevel ||
138 level < m_disabledModules.value (module, DefaultLowestMsgLevel));
152 static void qtMessageHandler (QtMsgType type,
const QMessageLogContext &context,
const QString &message);
155 static void installMessageHandler ();
164 static void setOutputDisabled (
bool disabled);
169 static bool isOutputDisabled ();
176 static void setDestination (FILE *handle);
183 static void setDestination (QIODevice *device);
210 static void installOutputHandler (
const Callback &callback);
215 static void uninstallOutputHandler (
const Callback &callback);
239 static void setOutputFormat (
const char *format);
243 void setBuffer (
const QString &buffer);
246 static Type m_lowestLevel;
247 static QMap< uint32_t, Type > m_disabledModules;
252 QLatin1String m_module;
253 QLatin1String m_file;
254 QLatin1String m_class;
255 QLatin1String m_method;
264 template<
typename T >
275 # define NURIA_MODULE ""
278 #define NURIA_DEBUG(type) \
279 if (Nuria::Debug::isModuleDisabled \
280 (Nuria::jenkinsHash (NURIA_MODULE, sizeof(NURIA_MODULE) - 1), type)) {} else \
281 Nuria::Debug(type, NURIA_MODULE, __FILE__, __LINE__, Q_FUNC_INFO, 0)
283 #ifndef NURIA_DEBUG_NO_DEBUG
284 #define nDebug() NURIA_DEBUG(Nuria::Debug::DebugMsg)
286 #define nDebug() Nuria::DebugIgnore()
289 #ifndef NURIA_DEBUG_NO_LOG
290 #define nLog() NURIA_DEBUG(Nuria::Debug::LogMsg)
292 #define nLog() Nuria::DebugIgnore()
295 #ifndef NURIA_DEBUG_NO_WARN
296 #define nWarn() NURIA_DEBUG(Nuria::Debug::WarnMsg)
298 #define nWarn() Nuria::DebugIgnore()
301 #ifndef NURIA_DEBUG_NO_ERROR
302 #define nError() NURIA_DEBUG(Nuria::Debug::ErrorMsg)
304 #define nError() Nuria::DebugIgnore()
307 #ifndef NURIA_DEBUG_NO_CRITICAL
308 #define nCritical() NURIA_DEBUG(Nuria::Debug::CriticalMsg)
310 #define nCritical() Nuria::DebugIgnore()
313 #endif // NURIA_DEBUG_HPP
A modern style callback mechanism which can be bound to various method types including slots...
Definition: callback.hpp:140
Helper class for Nuria::Debug, which does nothing.
Definition: debug.hpp:262
static bool isModuleDisabled(uint32_t module, Type level)
Definition: debug.hpp:136
Definition: abstractsessionmanager.hpp:24
Type
Definition: debug.hpp:93
Debugging and logging class of the Nuria Framework.
Definition: debug.hpp:89