forked from ostis-ai/sc-machine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsc_debug.hpp
236 lines (207 loc) · 6.35 KB
/
sc_debug.hpp
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
/*
* This source file is part of an OSTIS project. For the latest info, see http://ostis.net
* Distributed under the MIT License
* (See accompanying file COPYING.MIT or copy at http://opensource.org/licenses/MIT)
*/
#pragma once
#include "utils/sc_log.hpp"
#include "utils/sc_message.hpp"
#include "utils/sc_console.hpp"
#include "sc-core/sc-store/sc_types.h"
namespace utils
{
/// -----------------------
class ScException : public std::exception
{
public:
_SC_EXTERN ScException(std::string description, std::string msg);
_SC_EXTERN ~ScException() noexcept override;
_SC_EXTERN const sc_char * Description() const noexcept;
_SC_EXTERN const sc_char * Message() const noexcept;
private:
std::string m_description;
std::string m_msg;
};
class ExceptionAssert final : public ScException
{
public:
ExceptionAssert(std::string const & description, std::string const & msg)
: ScException("Assert: " + description, msg)
{
}
};
class ExceptionCritical final : public ScException
{
public:
ExceptionCritical(std::string const & description, std::string const & msg)
: ScException("Critical: " + description, msg)
{
}
};
class ExceptionInvalidParams final : public ScException
{
public:
ExceptionInvalidParams(std::string const & description, std::string const & msg)
: ScException("InvalidParams: " + description, msg)
{
}
};
class ExceptionInvalidState final : public ScException
{
public:
ExceptionInvalidState(std::string const & description, std::string const & msg)
: ScException("InvalidState: " + description, msg)
{
}
};
class ExceptionItemNotFound final : public ScException
{
public:
ExceptionItemNotFound(std::string const & description, std::string const & msg)
: ScException("ItemNotFound: " + description, msg)
{
}
};
class ExceptionParseError final : public ScException
{
public:
ExceptionParseError(std::string const & description, std::string const & msg)
: ScException("ParseError: " + description, msg)
{
}
};
class ExceptionNotImplemented final : public ScException
{
public:
ExceptionNotImplemented(std::string const & description, std::string const & msg)
: ScException("NotImplemented: " + description, msg)
{
}
};
class ExceptionInvalidType final : public ScException
{
public:
explicit ExceptionInvalidType(std::string const & description, std::string const & msg)
: ScException("InvalidType: " + description, msg)
{
}
};
// Asserts
#define THROW_EXCEPTION(_exception_class, _msg, _file, _line) \
({ \
std::stringstream _str_message; \
_str_message << _msg; \
std::string _msg_raw = _str_message.str(); \
_str_message << std::endl << "File: " << _file << std::endl << "Line:" << _line << std::endl; \
throw _exception_class(_str_message.str(), _msg_raw); \
})
#define SC_THROW_EXCEPTION(_exception_class, _msg) THROW_EXCEPTION(_exception_class, _msg, __FILE__, __LINE__)
#define SC_NOT_IMPLEMENTED(_msg) SC_THROW_EXCEPTION(utils::ExceptionNotImplemented, _msg)
#define _ASSERT_IMPL(_exception_class, _expr, _msg, _file, _line) \
({ \
if (!(_expr)) \
{ \
std::string _message = ::utils::impl::Message("SC_ASSERT(" #_expr ")", ::utils::impl::Message _msg); \
THROW_EXCEPTION(_exception_class, _message, _file, _line); \
} \
})
#if SC_DEBUG_MODE
# define SC_ASSERT(_expr, _msg) ({ _ASSERT_IMPL(::utils::ExceptionAssert, _expr, _msg, __FILE__, __LINE__); })
#else
# define SC_ASSERT(_expr, _msg) ((void)0)
#endif
#define SC_CHECK_PARAM(_expr, _msg) \
({ _ASSERT_IMPL(::utils::ExceptionInvalidParams, (_expr).IsValid(), _msg, __FILE__, __LINE__); })
#define _CHECK_IMPL(_expr, _msg, _name) \
do \
{ \
if (_expr) \
{ \
} \
else \
{ \
std::string _message = ::utils::impl::Message(std::string(_name) + "(" #_expr ")", ::utils::impl::Message _msg); \
THROW_EXCEPTION(::utils::ExceptionAssert, _message, __FILE__, __LINE__); \
} \
} while (false); // stop runtime
#define SC_CHECK(_expr, _msg) _CHECK_IMPL(_expr, _msg, "CHECK")
#define SC_CHECK_NOT(_expr, _msg) _CHECK_IMPL(!_expr, _msg, "CHECK_NOT")
#define SC_CHECK_EQUAL(_a, _b, _msg) \
do \
{ \
if ((_a) == (_b)) \
{ \
} \
else \
{ \
std::string _message = \
::utils::impl::Message(std::string("SC_CHECK_EQUAL") + "(" #_a " == " #_b ")", ::utils::impl::Message _msg); \
THROW_EXCEPTION(::utils::ExceptionAssert, _message, __FILE__, __LINE__); \
} \
} while (false); // stop runtime
#define SC_CHECK_NOT_EQUAL(_a, _b, _msg) \
do \
{ \
if ((_a) != (_b)) \
{ \
} \
else \
{ \
std::string _message = ::utils::impl::Message( \
std::string("SC_CHECK_NOT_EQUAL") + "(" #_a " != " #_b ")", ::utils::impl::Message _msg); \
THROW_EXCEPTION(::utils::ExceptionAssert, _message, __FILE__, __LINE__); \
} \
} while (false); // stop runtime
#define SC_CHECK_GREAT(_a, _b, _msg) \
do \
{ \
if ((_a) > (_b)) \
{ \
} \
else \
{ \
std::string _message = \
::utils::impl::Message(std::string("SC_CHECK_GREAT") + "(" #_a " > " #_b ")", ::utils::impl::Message _msg); \
THROW_EXCEPTION(::utils::ExceptionAssert, _message, __FILE__, __LINE__); \
} \
} while (false); // stop runtime
#define SC_CHECK_GREAT_EQ(_a, _b, _msg) \
do \
{ \
if ((_a) >= (_b)) \
{ \
} \
else \
{ \
std::string _message = ::utils::impl::Message( \
std::string("SC_CHECK_GREAT_EQ") + "(" #_a " >= " #_b ")", ::utils::impl::Message _msg); \
THROW_EXCEPTION(::utils::ExceptionAssert, _message, __FILE__, __LINE__); \
} \
} while (false); // stop runtime
#define SC_CHECK_LESS(_a, _b, _msg) \
do \
{ \
if ((_a) < (_b)) \
{ \
} \
else \
{ \
std::string _message = \
::utils::impl::Message(std::string("SC_CHECK_LESS") + "(" #_a " < " #_b ")", ::utils::impl::Message _msg); \
THROW_EXCEPTION(::utils::ExceptionAssert, _message, __FILE__, __LINE__); \
} \
} while (false); // stop runtime
#define SC_CHECK_LESS_EQ(_a, _b, _msg) \
do \
{ \
if ((_a) <= (_b)) \
{ \
} \
else \
{ \
std::string _message = ::utils::impl::Message( \
std::string("SC_CHECK_LESS_EQ") + "(" #_a " <= " #_b ")", ::utils::impl::Message _msg); \
THROW_EXCEPTION(::utils::ExceptionAssert, _message, __FILE__, __LINE__); \
} \
} while (false); // stop runtime
} // namespace utils