-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDeclarationParser.cpp
290 lines (252 loc) · 5.98 KB
/
DeclarationParser.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
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
#include <utility>
#include "DeclarationParser.h"
namespace
{
struct BaseType
{
BaseType() : isConst(false)
{
}
bool isValid() const
{
return !typeName.empty();
}
bool isConst;
std::string typeName;
};
std::string identifierString(const clang::Token &token)
{
return std::string(token.getRawIdentifierData(), token.getLength());
}
// Consumes an entire template parameter and any nested parameters
// "token" should point to the opening <
// This doesn't do any parsing; it just reconstructs the string from tokens until the parameter list is over
std::string consumeTemplateParam(TokenVector::const_iterator &token, TokenVector::const_iterator end)
{
int templateDepth = 0;
std::string ret;
if ((token == end) || !token->is(clang::tok::less))
{
// Not what we expected
return std::string();
}
while(token != end)
{
if (token->is(clang::tok::less))
{
ret += "<";
templateDepth++;
}
else if (token->is(clang::tok::greater) || token->is(clang::tok::greatergreater))
{
// This is invalid C++03 but valid C++11
if (token->is(clang::tok::greatergreater))
{
ret += ">>";
templateDepth -= 2;
}
else
{
ret += ">";
templateDepth--;
}
if (templateDepth == 0)
{
// We're done
return ret;
}
else if (templateDepth < 0)
{
// Closed a template that wasn't open
// This can happen only with greatergreater
return std::string();
}
}
else if (token->is(clang::tok::colon))
{
ret += ":";
}
else if (token->is(clang::tok::comma))
{
ret += ", ";
}
else if (token->is(clang::tok::raw_identifier))
{
const std::string identifier(identifierString(*token));
if ((token - 1)->is(clang::tok::raw_identifier))
{
// Space out consecutive identifiers
ret += " ";
}
ret += identifier;
}
else if (token->is(clang::tok::star))
{
ret += "*";
}
else
{
// Unknown token
return std::string();
}
token++;
}
if (templateDepth > 0)
{
// We ran out of tokens early
return std::string();
}
return ret;
}
BaseType consumeBaseType(TokenVector::const_iterator &token, TokenVector::const_iterator end, bool allowIdentifier, const TokenKindSet stopTokens)
{
// Additionally stop on & and *
TokenKindSet allStopTokens(stopTokens);
allStopTokens.insert(clang::tok::star);
allStopTokens.insert(clang::tok::amp);
BaseType ret;
// Track our parse state
enum class ParseState
{
Begin,
Identifier,
TypeSpecifier,
ColonColon,
};
ParseState state = ParseState::Begin;
bool haveBaseName = false;
const std::set<std::string> typeSpecifiers({"short", "long", "unsigned", "signed", "class", "struct", "union", "enum"});
// Keep going until we run out of tokens or hit a stop token
while(token != end && (allStopTokens.count(token->getKind()) == 0))
{
if (token->is(clang::tok::colon) &&
((state == ParseState::Begin) ||
(state == ParseState::Identifier)))
{
// The next token must be :
token++;
if ((token == end) || token->isNot(clang::tok::colon))
{
// Not expected
return BaseType();
}
ret.typeName += "::";
state = ParseState::ColonColon;
}
else if (token->is(clang::tok::less) && (state == ParseState::Identifier) && haveBaseName)
{
const std::string templateParam(consumeTemplateParam(token, end));
if (templateParam.empty())
{
return BaseType();
}
ret.typeName += templateParam;
state = ParseState::Identifier;
}
else if (token->is(clang::tok::raw_identifier))
{
std::string identifier(identifierString(*token));
if (identifier == "const")
{
ret.isConst = true;
state = ParseState::Identifier;
}
else if (typeSpecifiers.count(identifier) > 0)
{
if (state == ParseState::TypeSpecifier)
{
ret.typeName += " ";
}
ret.typeName += identifier;
state = ParseState::TypeSpecifier;
}
else if (!haveBaseName || (state == ParseState::ColonColon))
{
if (state == ParseState::TypeSpecifier)
{
ret.typeName += " ";
}
ret.typeName += identifier;
haveBaseName = true;
state = ParseState::Identifier;
}
else if (allowIdentifier)
{
break;
}
else
{
// Not expected
return BaseType();
}
}
else
{
// Unknown token
return BaseType();
}
token++;
}
return ret;
}
}
namespace DeclarationParser
{
TypeDeclaration consumeType(TokenVector::const_iterator &token, TokenVector::const_iterator end, bool allowIdentifier, const TokenKindSet &stopTokens)
{
IndirectionVector indirections;
BaseType baseType = consumeBaseType(token, end, allowIdentifier, stopTokens);
if (!baseType.isValid())
{
return TypeDeclaration();
}
// Keep going until we run out of tokens or hit a stop token
while(token != end && (stopTokens.count(token->getKind()) == 0))
{
if (token->is(clang::tok::raw_identifier))
{
const std::string identifier(identifierString(*token));
if (identifier == "const")
{
// Is this applying to a *
if (!indirections.empty() && (indirections.back() == Indirection::Pointer))
{
// Convert to a const *
indirections.back() = Indirection::ConstPointer;
}
else
{
// Unexpected
return TypeDeclaration();
}
}
else if (allowIdentifier && (++token == end))
{
// Trailing identifier
break;
}
else
{
// Unexpected
return TypeDeclaration();
}
}
else if (token->is(clang::tok::amp))
{
indirections.push_back(Indirection::Reference);
}
else if (token->is(clang::tok::star))
{
// Assume non-const, following "const" may modify it
indirections.push_back(Indirection::Pointer);
}
else
{
// Something we don't know about
return TypeDeclaration();
}
token++;
}
return TypeDeclaration(baseType.isConst, baseType.typeName, indirections);
}
}