summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.76.0/src/log_rules.h
blob: 02345a252ff3b24d6694638ff526897a37b6b7c4 (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
/**
 * @file log_rules.h
 * prototypes for log_rules.cpp
 *
 * @author  Guy Maurel
 * @license GPL v2+
 */

#ifndef LOG_RULES_H_INCLUDED
#define LOG_RULES_H_INCLUDED

#include "chunk.h"
#include "uncrustify.h"

using namespace uncrustify;

#if defined DEBUG
#define log_rule(rule)                                   \
   log_rule2(__func__, __LINE__, (rule), first, second); \
   log_rule4((rule), first)
#else
#define log_rule(rule) \
   log_rule2(__func__, __LINE__, (rule), first, second)
#endif

// if you need more debug information, remove the comment at the next line
#define SUPER_LOG    1
#ifdef SUPER_LOG
#define log_rule_B(rule) \
   log_rule3(LCURRENT, __func__, __LINE__, (rule))
#else
#define log_rule_B(rule) \
   log_rule3(LCURRENT, __func__, (rule))
#endif

#ifdef SUPER_LOG
#define log_rule_NL(rule) \
   log_ruleNL((rule), pc)
#else
#define log_rule_NL(rule) \
   log_ruleNL(LCURRENT, __func__, (rule))
#endif

void log_rule2(const char *func, size_t line, const char *rule, Chunk *first, Chunk *second);


#ifdef SUPER_LOG
void log_rule3(log_sev_t sev, const char *func, size_t line, const char *rule);

#else
void log_rule3(log_sev_t sev, const char *func, const char *rule);

#endif

void log_rule4(const char *rule, Chunk *first);

void log_ruleNL(const char *rule, Chunk *pc);

#endif /* LOG_RULES_H_INCLUDED */