-
Notifications
You must be signed in to change notification settings - Fork 287
/
parse.cpp
214 lines (184 loc) · 6.32 KB
/
parse.cpp
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
#include <vcpkg/base/messages.h>
#include <vcpkg/base/parse.h>
#include <vcpkg/base/util.h>
#include <memory>
#include <utility>
namespace vcpkg
{
static void advance_rowcol(char32_t ch, int& row, int& column)
{
if (ch == '\t')
column = ((column + 7) & ~7) + 1; // round to next 8-width tab stop
else if (ch == '\n')
{
row++;
column = 1;
}
else
{
++column;
}
}
std::string ParseError::to_string() const
{
auto decoder = Unicode::Utf8Decoder(line.data(), line.data() + line.size());
ParseMessage as_message;
as_message.location = SourceLoc{std::next(decoder, caret_col), decoder, row, column};
as_message.message = message;
return as_message.format(origin, MessageKind::Error).extract_data();
}
LocalizedString ParseMessage::format(StringView origin, MessageKind kind) const
{
LocalizedString res;
if (!origin.empty())
{
res.append_raw(fmt::format("{}:{}:{}: ", origin, location.row, location.column));
}
res.append_raw(kind == MessageKind::Warning ? WarningPrefix : ErrorPrefix);
res.append(message);
res.append_raw('\n');
auto line_end = Util::find_if(location.it, ParserBase::is_lineend);
StringView line = StringView{
location.start_of_line.pointer_to_current(),
line_end.pointer_to_current(),
};
res.append_indent().append(msgFormattedParseMessageExpression, msg::value = line);
res.append_raw('\n');
auto caret_point = StringView{location.start_of_line.pointer_to_current(), location.it.pointer_to_current()};
auto formatted_caret_point = msg::format(msgFormattedParseMessageExpression, msg::value = caret_point);
std::string caret_string;
caret_string.reserve(formatted_caret_point.data().size());
for (char32_t ch : Unicode::Utf8Decoder(formatted_caret_point))
{
if (ch == '\t')
caret_string.push_back('\t');
else if (Unicode::is_double_width_code_point(ch))
caret_string.append(" ");
else
caret_string.push_back(' ');
}
caret_string.push_back('^');
res.append_indent().append_raw(caret_string);
return res;
}
void ParseMessages::exit_if_errors_or_warnings(StringView origin) const
{
for (const auto& warning : warnings)
{
msg::println(warning.format(origin, MessageKind::Warning));
}
if (error)
{
Checks::msg_exit_with_message(VCPKG_LINE_INFO, LocalizedString::from_raw(error->to_string()));
}
if (!warnings.empty())
{
Checks::msg_exit_with_error(VCPKG_LINE_INFO, msgWarningsTreatedAsErrors);
}
}
ParserBase::ParserBase(StringView text, StringView origin, TextRowCol init_rowcol)
: m_it(text.begin(), text.end())
, m_start_of_line(m_it)
, m_row(init_rowcol.row_or(1))
, m_column(init_rowcol.column_or(1))
, m_text(text)
, m_origin(origin)
{
}
StringView ParserBase::skip_whitespace() { return match_while(is_whitespace); }
StringView ParserBase::skip_tabs_spaces()
{
return match_while([](char32_t ch) { return ch == ' ' || ch == '\t'; });
}
void ParserBase::skip_to_eof() { m_it = m_it.end(); }
void ParserBase::skip_newline()
{
if (cur() == '\r') next();
if (cur() == '\n') next();
}
void ParserBase::skip_line()
{
match_until(is_lineend);
skip_newline();
}
bool ParserBase::require_character(char ch)
{
if (static_cast<char32_t>(ch) == cur())
{
next();
return false;
}
add_error(msg::format(msgExpectedCharacterHere, msg::expected = ch));
return true;
}
bool ParserBase::try_match_keyword(StringView keyword_content)
{
auto encoded = m_it;
// check that the encoded stream matches the keyword:
for (const char ch : keyword_content)
{
if (encoded.is_eof() || *encoded != static_cast<char32_t>(ch))
{
return false;
}
++encoded;
}
// whole keyword matched, now check for a word boundary:
if (!encoded.is_eof() && !is_whitespace(*encoded))
{
return false;
}
// success
m_it = encoded;
m_column += static_cast<int>(keyword_content.size());
return true;
}
char32_t ParserBase::next()
{
if (m_it == m_it.end())
{
return Unicode::end_of_file;
}
auto ch = *m_it;
// See https://www.gnu.org/prep/standards/standards.html#Errors
advance_rowcol(ch, m_row, m_column);
++m_it;
if (ch == '\n')
{
m_start_of_line = m_it;
}
if (m_it != m_it.end() && Unicode::utf16_is_surrogate_code_point(*m_it))
{
m_it = m_it.end();
}
return cur();
}
void ParserBase::add_error(LocalizedString&& message) { add_error(std::move(message), cur_loc()); }
void ParserBase::add_error(LocalizedString&& message, const SourceLoc& loc)
{
// avoid cascading errors by only saving the first
if (!m_messages.error)
{
// find end of line
auto line_end = loc.it;
while (line_end != line_end.end() && *line_end != '\n' && *line_end != '\r')
{
++line_end;
}
m_messages.error = std::make_unique<ParseError>(
m_origin.to_string(),
loc.row,
loc.column,
static_cast<int>(std::distance(loc.start_of_line, loc.it)),
std::string(loc.start_of_line.pointer_to_current(), line_end.pointer_to_current()),
std::move(message));
}
// Avoid error loops by skipping to the end
skip_to_eof();
}
void ParserBase::add_warning(LocalizedString&& message) { add_warning(std::move(message), cur_loc()); }
void ParserBase::add_warning(LocalizedString&& message, const SourceLoc& loc)
{
m_messages.warnings.push_back(ParseMessage{loc, std::move(message)});
}
}