summaryrefslogtreecommitdiff
path: root/libs/audiographer/audiographer/debuggable.h
blob: 4126327b86954d78beb662d99ad8ff0b505583fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#ifndef AUDIOGRAPHER_DEBUGGABLE_H
#define AUDIOGRAPHER_DEBUGGABLE_H

#ifndef DEFAULT_DEBUG_LEVEL
#define DEFAULT_DEBUG_LEVEL DebugNone
#endif

#include <iostream>

namespace AudioGrapher
{

enum DebugLevel
{
	DebugNone,     //< Disabled
	DebugObject,   //< Object level stuff, ctors, initalizers etc.
	DebugProcess,  //< Process cycle level stuff
	DebugVerbose,  //< Lots of output, not on sample level
	DebugSample    //< Sample level stuff
};

/// Class that allows optimizing out debugging code during compile time
template<DebugLevel L = DEFAULT_DEBUG_LEVEL>
class Debuggable
{
  protected:
	Debuggable(std::ostream & debug_stream = std::cerr)
		: stream (debug_stream) {}

	bool debug_level (DebugLevel level) {
		#ifdef NDEBUG
		return false;
		#else
		return L >= level;
		#endif
	}
	std::ostream & debug_stream() { return stream; }

  private:
	  std::ostream & stream;
};


} // namespace

#endif // AUDIOGRAPHER_DEBUGGABLE_H