-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDebug.h
120 lines (102 loc) · 1.89 KB
/
Debug.h
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
//============================================================================
// Name : Debug.h
// Author : Peter Žužek
// License : BSD
//============================================================================
#ifndef DEBUG_H_
#define DEBUG_H_
#include <iostream>
#include <sstream>
#ifdef _MSC_VER
#if _MSC_VER < 1900
#define MSVC_LOW 1
#endif
#endif
#if MSVC_LOW
#define _constexpr const
#else
#define _constexpr constexpr
#endif
#define DSELF() Debug(__func__)
class Debug
{
protected:
static _constexpr bool DEBUG_ACTIVE = true;
std::stringstream stream;
std::stringstream before;
template<class T, int size>
void AddToStream(T array[size])
{
// TODO
DSELF() << "array";
for(int i = 0; i < size; ++i)
{
AddToStream(array[i]);
}
}
template<typename T>
void AddToStream(T add)
{
if(DEBUG_ACTIVE)
{
stream << add << ' ';
}
}
template<class T>
void AddToStream(std::basic_string<T> string)
{
//DSELF() << "string";
if(DEBUG_ACTIVE)
{
stream << string << ' ';
}
}
template<template<class, class...> class Container, class First, class... Others>
void AddToStream(Container<First, Others...> list)
{
//DSELF() << "container";
for(auto&& element : list)
{
AddToStream(element);
}
}
public:
Debug() = default;
#ifndef MSVC_LOW
Debug(Debug&& move) = default;
#endif
Debug(const Debug& copy) = delete;
template<typename T>
Debug(T add)
: Debug()
{
before << "Debug: ";
AddToStream(add);
}
template<typename T>
Debug& operator<<(T add)
{
AddToStream(add);
return *this;
}
template<typename U, typename T>
Debug(U before, T add)
: Debug()
{
this->before << before;
AddToStream(add);
}
virtual ~Debug()
{
if(DEBUG_ACTIVE)
{
std::cout << before.str() << stream.str() << std::endl;
}
}
};
template<typename T>
static Debug Warning(T message)
{
return Debug("Warning: ", message);
}
#endif /* DEBUG_H_ */