summaryrefslogtreecommitdiff
path: root/src/modules/json/JSONDebug.h
blob: ff1cedf8fcbf7d36af2c1ad26d2329476d67c810 (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#ifndef JSON_DEBUG_H
#define JSON_DEBUG_H

#include "JSONDefs.h"
#include "JSONOptions.h"

#ifdef JSON_UNIT_TEST
	#define JSON_PRIVATE
#else
	#define JSON_PRIVATE private:
#endif

#ifdef JSON_DEBUG
	#ifdef JSON_SAFE
		#define JSON_ASSERT_SAFE(condition, msg, code)\
			{\
				if (!(condition)) {\
					JSON_FAIL(msg);\
					code\
				}\
			}
		#define JSON_FAIL_SAFE(msg, code)\
			{\
				JSON_FAIL(msg);\
				code\
			}
	#else
		#define JSON_ASSERT_SAFE(condition, msg, code) JSON_ASSERT(condition, msg)
		#define JSON_FAIL_SAFE(msg, code) JSON_FAIL(msg)
	#endif

	#define JSON_FAIL JSONDebug::_JSON_FAIL
	#define JSON_ASSERT JSONDebug::_JSON_ASSERT

	class JSONDebug {
	public:
		#ifndef JSON_STDERROR
			static void register_callback(json_error_callback_t callback);
		#endif
		static void _JSON_FAIL(const json_string & msg);
		static void _JSON_ASSERT(bool condition, const json_string & msg);
	};
#else
	#ifdef JSON_SAFE
		#define JSON_ASSERT_SAFE(condition, msg, code)\
			{\
				if (!(condition)) {\
					code\
				}\
			}
		#define JSON_FAIL_SAFE(msg, code)\
			{\
				code\
			}
	#else
		#define JSON_ASSERT_SAFE(condition, msg, code)
		#define JSON_FAIL_SAFE(msg, code)
	#endif

	#define JSON_ASSERT(condition, msg)
	#define JSON_FAIL(msg)
#endif

static const json_string EMPTY_STRING;
static const std::string EMPTY_STRING2;

#endif