forked from Andersbakken/rtags
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Diagnostic.h
99 lines (81 loc) · 2.58 KB
/
Diagnostic.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
/* This file is part of RTags (http://rtags.net).
RTags is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
RTags is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with RTags. If not, see <http://www.gnu.org/licenses/>. */
#ifndef Diagnostic_h
#define Diagnostic_h
#include "rct/Serializer.h"
#include "rct/String.h"
#include "Location.h"
#include "Sandbox.h"
struct Diagnostic;
typedef Map<Location, Diagnostic> Diagnostics;
struct Diagnostic
{
enum Flag {
None = 0x00,
Warning = 0x01,
Error = 0x02,
Fixit = 0x04,
Note = 0x08,
Skipped = 0x10,
Type_Mask = Warning|Error|Fixit|Note|Skipped,
TemplateOnly = 0x20,
DisplayCategory = 0x40
};
Diagnostic()
: length(-1), sourceFileId(0)
{
}
Flag type() const;
String message;
int length;
uint32_t sourceFileId;
Map<Location, int> ranges;
Diagnostics children;
Flags<Flag> flags;
bool isNull() const { return type() == None; }
bool operator==(const Diagnostic &other) const
{
return (message == other.message
&& length == other.length
&& sourceFileId == other.sourceFileId
&& ranges == other.ranges
&& children == other.children
&& flags == other.flags);
}
bool operator!=(const Diagnostic &other) const
{
return !operator==(other);
}
};
RCT_FLAGS(Diagnostic::Flag);
inline Diagnostic::Flag Diagnostic::type() const
{
return Flags<Flag>(flags & Type_Mask).cast<Flag>();
}
template <> inline Serializer &operator<<(Serializer &s, const Diagnostic &d)
{
// SBROOT
String tmessage = Sandbox::encoded(d.message);
s << d.flags.cast<uint8_t>() << tmessage << d.length << d.sourceFileId << d.ranges << d.children;
return s;
}
template <> inline Deserializer &operator>>(Deserializer &s, Diagnostic &d)
{
uint8_t flags;
String tmessage;
s >> flags >> tmessage >> d.length >> d.sourceFileId >> d.ranges >> d.children;
// SBROOT
d.message = Sandbox::decoded(std::move(tmessage));
d.flags = static_cast<Diagnostic::Flag>(flags);
return s;
}
#endif