NuriaProject Framework  0.1
The NuriaProject Framework
debug.hpp
1 /* Copyright (c) 2014-2015, The Nuria Project
2  * The NuriaProject Framework is free software: you can redistribute it and/or
3  * modify it under the terms of the GNU Lesser General Public License as
4  * published by the Free Software Foundation, either version 3 of the License,
5  * or (at your option) any later version.
6  *
7  * The NuriaProject Framework is distributed in the hope that it will be useful,
8  * but WITHOUT ANY WARRANTY; without even the implied warranty of
9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10  * GNU Lesser General Public License for more details.
11  *
12  * You should have received a copy of the GNU Lesser General Public License
13  * along with The NuriaProject Framework.
14  * If not, see <http://www.gnu.org/licenses/>.
15  */
16 
17 #ifndef NURIA_DEBUG_HPP
18 #define NURIA_DEBUG_HPP
19 
20 #include "essentials.hpp"
21 #include "callback.hpp"
22 #include <QDebug>
23 
24 namespace Nuria {
25 
89 class NURIA_CORE_EXPORT Debug : public QDebug {
90 public:
91 
93  enum Type {
94  DebugMsg = 0,
95  LogMsg = 1,
96  WarnMsg = 2,
97  ErrorMsg = 3,
98  CriticalMsg = 4,
99 
100  AllLevels = CriticalMsg + 1,
101  DefaultLowestMsgLevel = DebugMsg
102 
103  };
104 
109  Debug (Type type, const char *module, const char *fileName, int line,
110  const char *className, const char *methodName);
111 
115  ~Debug ();
116 
128  static void setModuleLevel (const char *module, Type leastLevel);
129 
133  static bool isModuleDisabled (const char *module, Type level);
134 
136  static inline bool isModuleDisabled (uint32_t module, Type level) {
137  return (level < m_lowestLevel ||
138  level < m_disabledModules.value (module, DefaultLowestMsgLevel));
139  }
140 
152  static void qtMessageHandler (QtMsgType type, const QMessageLogContext &context, const QString &message);
153 
155  static void installMessageHandler ();
156 
164  static void setOutputDisabled (bool disabled);
165 
169  static bool isOutputDisabled ();
170 
176  static void setDestination (FILE *handle);
177 
183  static void setDestination (QIODevice *device);
184 
210  static void installOutputHandler (const Callback &callback);
211 
215  static void uninstallOutputHandler (const Callback &callback);
216 
239  static void setOutputFormat (const char *format);
240 
241 private:
242 
243  void setBuffer (const QString &buffer);
244 
245  // Exposing these for faster access
246  static Type m_lowestLevel;
247  static QMap< uint32_t, Type > m_disabledModules;
248 
249  QString m_buffer;
250  Type m_type;
251  int m_line;
252  QLatin1String m_module;
253  QLatin1String m_file;
254  QLatin1String m_class;
255  QLatin1String m_method;
256 
257 };
258 
262 class NURIA_CORE_EXPORT DebugIgnore {
263 public:
264  template< typename T >
265  inline DebugIgnore &operator<< (const T &)
266  { return *this; }
267 };
268 
269 }
270 
271 Q_DECLARE_METATYPE(Nuria::Debug::Type)
272 
273 // Macro magic
274 #ifndef NURIA_MODULE
275 # define NURIA_MODULE ""
276 #endif
277 
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)
282 
283 #ifndef NURIA_DEBUG_NO_DEBUG
284 #define nDebug() NURIA_DEBUG(Nuria::Debug::DebugMsg)
285 #else
286 #define nDebug() Nuria::DebugIgnore()
287 #endif
288 
289 #ifndef NURIA_DEBUG_NO_LOG
290 #define nLog() NURIA_DEBUG(Nuria::Debug::LogMsg)
291 #else
292 #define nLog() Nuria::DebugIgnore()
293 #endif
294 
295 #ifndef NURIA_DEBUG_NO_WARN
296 #define nWarn() NURIA_DEBUG(Nuria::Debug::WarnMsg)
297 #else
298 #define nWarn() Nuria::DebugIgnore()
299 #endif
300 
301 #ifndef NURIA_DEBUG_NO_ERROR
302 #define nError() NURIA_DEBUG(Nuria::Debug::ErrorMsg)
303 #else
304 #define nError() Nuria::DebugIgnore()
305 #endif
306 
307 #ifndef NURIA_DEBUG_NO_CRITICAL
308 #define nCritical() NURIA_DEBUG(Nuria::Debug::CriticalMsg)
309 #else
310 #define nCritical() Nuria::DebugIgnore()
311 #endif
312 
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