forked from ballerina-platform/nballerina
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparseTypeDesc.bal
442 lines (423 loc) · 15.1 KB
/
parseTypeDesc.bal
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
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
// Parsing of type descriptors
import wso2/nballerina.comm.err;
function parseTypeDesc(Tokenizer tok) returns TypeDesc|err:Syntax {
return parseUnion(tok);
}
function parseUnion(Tokenizer tok) returns TypeDesc|err:Syntax {
Position startPos = tok.currentStartPos();
TypeDesc td = check parseIntersection(tok);
if tok.current() == "|" {
td = check finishBinaryTypeDesc(tok, "|", td, startPos);
}
return td;
}
function parseIntersection(Tokenizer tok) returns TypeDesc|err:Syntax {
Position startPos = tok.currentStartPos();
TypeDesc td = check parseUnaryTypeDesc(tok);
if tok.current() == "&" {
td = check finishBinaryTypeDesc(tok, "&", td, startPos);
}
return td;
}
function finishBinaryTypeDesc(Tokenizer tok, BinaryTypeOp op, TypeDesc lhs, Position startPos) returns BinaryTypeDesc|err:Syntax {
TypeDesc[] tds = [lhs];
Position[] opPos = [];
while tok.current() == op {
opPos.push(tok.currentStartPos());
check tok.advance();
TypeDesc right = op == "|" ? check parseIntersection(tok) : check parseUnaryTypeDesc(tok);
tds.push(right);
}
Position endPos = tok.previousEndPos();
return { startPos, endPos, opPos, op, tds };
}
function parseUnaryTypeDesc(Tokenizer tok) returns TypeDesc|err:Syntax {
if tok.current() == "!" {
Position startPos = tok.currentStartPos();
check tok.advance();
TypeDesc td = check parseUnaryTypeDesc(tok);
Position endPos = tok.previousEndPos();
UnaryTypeDesc unary = { startPos, endPos, op: "!", opPos: startPos, td };
return unary;
}
return parsePostfixTypeDesc(tok);
}
function parsePostfixTypeDesc(Tokenizer tok) returns TypeDesc|err:Syntax {
Position startPos = tok.currentStartPos();
TypeDesc td = check parsePrimaryTypeDesc(tok);
while true {
if tok.current() == "?" {
Position opPos = tok.currentStartPos();
Position endPos = tok.currentEndPos();
check tok.advance();
UnaryTypeDesc optionalTd = {
startPos,
endPos,
op: "?",
opPos,
td
};
td = optionalTd;
}
else if tok.current() == "[" {
SimpleConstExpr?[] dimensions = [];
Position? endPos = ();
// JBUG #34331 can re-write this to a `while true` and make `Position endPos;`
while tok.current() == "[" {
check tok.advance();
if tok.current() == "]" {
dimensions.push(());
}
else {
dimensions.push(check parseArrayLengthExpr(tok));
}
endPos = check tok.expectEnd("]");
}
ArrayTypeDesc array = { startPos, endPos: <Position>endPos, member: td , dimensions };
td = array;
}
else {
break;
}
}
return td;
}
// Tokenizer is on first token of the type descriptor
// Afterwards it is on the token immediately following the type descriptor
function parsePrimaryTypeDesc(Tokenizer tok) returns TypeDesc|err:Syntax {
Token? cur = tok.current();
Position startPos = tok.currentStartPos();
match cur {
"function" => {
if tok.peek() == "(" {
check tok.advance();
return parseFunctionTypeDesc(tok);
}
else {
Position endPos = tok.currentEndPos();
check tok.advance();
// JBUG should not need cast #30191
return { startPos, endPos, builtinTypeName: <BuiltinTypeName>cur };
}
}
"(" => {
check tok.advance();
Position endPos;
if tok.current() == ")" {
endPos = tok.currentEndPos();
check tok.advance();
return { startPos, endPos, builtinTypeName: "null" };
}
TypeDesc td = check parseTypeDesc(tok);
endPos = check tok.expectEnd(")");
return { startPos, endPos, op: "(", opPos: startPos, td };
}
"boolean"
| "decimal"
| "float"
| "typedesc"
| "handle"
| "any"
| "anydata"
| "never"
| "json"
| "readonly"
| "null" => {
Position endPos = tok.currentEndPos();
check tok.advance();
// JBUG should not need cast #30191
return { startPos, endPos, builtinTypeName: <BuiltinTypeName>cur };
}
"string"
|"int" => {
Position qNamePos = tok.currentStartPos();
Position endPos = tok.currentEndPos();
check tok.advance();
if !tok.currentIsNoSpaceColon() {
// JBUG should not need cast #30191
return { startPos, endPos, builtinTypeName: <BuiltinTypeName>cur };
}
check tok.advance();
string typeName = check tok.expectIdentifier();
endPos = tok.previousEndPos();
return { startPos, endPos, prefix: <string>cur, typeName, qNamePos };
}
"xml" => {
Position pos = tok.currentStartPos();
Position endPos = tok.currentEndPos();
check tok.advance();
if tok.currentIsNoSpaceColon() {
check tok.advance();
string typeName = check tok.expectIdentifier();
endPos = tok.previousEndPos();
return { startPos, endPos, prefix: <string>cur, typeName, qNamePos: pos };
}
else if tok.current() == "<" {
TypeDesc constituent = check parseTypeParam(tok);
endPos = tok.previousEndPos();
return { startPos, endPos, constituent, pos };
}
return { startPos, endPos, builtinTypeName: <BuiltinTypeName>cur };
}
"byte" => {
Position endPos = tok.currentEndPos();
check tok.advance();
return { startPos, endPos, builtinTypeName: "byte" };
}
"[" => {
return parseTupleTypeDesc(tok);
}
"map" => {
check tok.advance();
var rest = check parseTypeParam(tok);
Position endPos = tok.previousEndPos();
return { startPos, endPos, rest, fields: () };
}
"error" => {
Position endPos = tok.currentEndPos();
check tok.advance();
if tok.current() != "<" {
return { startPos, endPos, builtinTypeName: "error" };
}
var detail = check parseTypeParam(tok);
endPos = tok.previousEndPos();
return { startPos, endPos, detail };
}
"record" => {
return parseRecordTypeDesc(tok, startPos);
}
"object" => {
return parseObjectTypeDesc(tok, startPos);
}
"table" => {
check tok.advance();
TypeDesc row = check parseTypeParam(tok);
Position endPos = tok.previousEndPos();
return { startPos, endPos, row };
}
[IDENTIFIER, var identifier] => {
Position qNamePos = tok.currentStartPos();
check tok.advance();
var [prefix, typeName] = check parseOptQualIdentifier(tok, identifier);
Position endPos = tok.previousEndPos();
return { startPos, endPos, prefix, typeName, qNamePos };
}
}
Position endPos = tok.currentEndPos();
SimpleConstExpr valueExpr = check parseSimpleConstExpr(tok);
if valueExpr is ExtendedLiteralExpr {
return { startPos, endPos, valueExpr };
}
return parseError(tok);
}
function parseTypeParam(Tokenizer tok) returns TypeDesc|err:Syntax {
check tok.expect("<");
tok.setMode(MODE_TYPE_DESC);
TypeDesc td = check parseTypeDesc(tok);
check tok.expect(">");
tok.setMode(MODE_NORMAL);
return td;
}
// current token should be "("
function parseFunctionTypeDesc(Tokenizer tok, FunctionParam[]? namedParams = ()) returns FunctionTypeDesc|err:Syntax {
// skip "function"
Position startPos = tok.currentStartPos();
check tok.expect("(");
FunctionTypeParam[] params = namedParams ?: [];
while true {
if tok.current() == ")" {
break;
}
Position paramStartPos = tok.currentStartPos();
TypeDesc td = check parseTypeDesc(tok);
if tok.current() == "..." {
check tok.advance();
params.push(check finishParam(tok, td, paramStartPos, namedParams == (), true));
if tok.current() == ")" {
break;
}
else {
return parseError(tok, "parameter after rest parameter");
}
}
else {
params.push(check finishParam(tok, td, paramStartPos, namedParams == (), false));
}
if tok.current() == "," {
check tok.advance();
}
}
Position endPos = tok.previousEndPos();
// on ")"
check tok.advance();
TypeDesc? ret = ();
if tok.current() == "returns" {
check tok.advance();
ret = check parseTypeDesc(tok);
}
endPos = tok.previousEndPos();
return { startPos, endPos, params, ret };
}
function finishParam(Tokenizer tok, TypeDesc td, Position startPos, boolean allowUnnamed, boolean isRest) returns FunctionTypeParam|FunctionParam|err:Syntax {
Token? t = tok.current();
if !allowUnnamed || t is [IDENTIFIER, string] {
return finishFunctionParam(tok, td, startPos, isRest);
}
return { startPos, endPos: tok.previousEndPos(), name: (), namePos: (), td, isRest };
}
function finishFunctionParam(Tokenizer tok, TypeDesc td, Position startPos, boolean isRest) returns FunctionParam|err:Syntax {
Position namePos = tok.currentStartPos();
string name = check tok.expectIdentifier();
return { startPos, endPos: tok.currentEndPos(), name, namePos, td, isRest };
}
// current token is []
function parseTupleTypeDesc(Tokenizer tok) returns TupleTypeDesc|err:Syntax {
TypeDesc[] members = [];
Position startPos = tok.currentStartPos();
check tok.advance();
Position endPos = tok.currentEndPos();
TypeDesc? rest = ();
if tok.current() != "]" {
while true {
TypeDesc td = check parseTypeDesc(tok);
if tok.current() == "..." {
rest = td;
check tok.advance();
break;
}
else {
members.push(td);
if tok.current() == "," {
check tok.advance();
continue;
}
if tok.current() == "]" {
break;
}
}
return parseError(tok);
}
}
endPos = tok.currentEndPos();
check tok.advance();
return { startPos, endPos, members, rest };
}
function parseRecordTypeDesc(Tokenizer tok, Position startPos) returns MappingTypeDesc|err:Syntax {
check tok.advance();
match tok.current() {
"{|" => {
return parseExclusiveRecordTypeDesc(tok, startPos);
}
"{" => {
return parseInclusiveRecordTypeDesc(tok, startPos);
}
_ => {
return parseError(tok);
}
}
}
function parseObjectTypeDesc(Tokenizer tok, Position startPos) returns ObjectTypeDesc|err:Syntax {
check tok.advance();
check tok.expect("{");
MemberDesc[] members = [];
while tok.current() != "}" {
Position fieldStartPos = tok.currentStartPos();
// We can have fields with function values
check tok.expect("public");
boolean isMethod = tok.current() == "function" && tok.peek() != "(";
MemberDesc memberDesc = isMethod ? check parseMethodMemberDesc(tok, fieldStartPos):
check parseFieldMemberDesc(tok, fieldStartPos);
members.push(memberDesc);
}
Position endPos = tok.currentEndPos();
check tok.advance();
return { startPos, endPos, members };
}
function parseFieldMemberDesc(Tokenizer tok, Position startPos) returns FieldMemberDesc|err:Syntax {
TypeDesc td = check parseTypeDesc(tok);
Position namePos = tok.currentStartPos();
string name = check tok.expectIdentifier();
Position endPos = check tok.expectEnd(";");
return { name, namePos, td, startPos, endPos };
}
function parseMethodMemberDesc(Tokenizer tok, Position startPos) returns MethodMemberDesc|err:Syntax {
check tok.advance();
Position namePos = tok.currentStartPos();
string name;
Token? t = tok.current();
match t {
[IDENTIFIER, var identifier] => {
name = identifier;
}
// SUBSET when we have join and start as keywords they need to be added here as well
"map" => {
// JBUG cast
name = <string>t;
}
_ => {
// JBUG name is not initialized otherwise
name = "";
return parseError(tok, "expected a valid method name");
}
}
check tok.advance();
// passing [] to parseFunctionTypeDesc to ensure parameters are named
FunctionTypeDesc td = check parseFunctionTypeDesc(tok, []);
Position endPos = check tok.expectEnd(";");
return { name, namePos, td, startPos, endPos };
}
function parseExclusiveRecordTypeDesc(Tokenizer tok, Position startPos) returns MappingTypeDesc|err:Syntax {
check tok.advance();
FieldDesc[] fields = [];
TypeDesc? rest = ();
while tok.current() != "|}" {
if rest != () {
return parseError(tok);
}
Position fieldStartPos = tok.currentStartPos();
boolean ro = false;
if tok.current() == "readonly" {
ro = true;
check tok.advance();
}
TypeDesc td = check parseTypeDesc(tok);
if tok.current() == "..." {
rest = td;
check tok.advance();
check tok.expect(";");
}
else {
fields.push(check parseFieldDesc(tok, td, ro, fieldStartPos));
}
}
Position endPos = tok.currentEndPos();
check tok.advance();
return { startPos, endPos, fields, rest };
}
function parseInclusiveRecordTypeDesc(Tokenizer tok, Position startPos) returns MappingTypeDesc|err:Syntax {
check tok.advance();
FieldDesc[] fields = [];
while tok.current() != "}" {
Position fieldStartPos = tok.currentStartPos();
boolean ro = false;
if tok.current() == "readonly" {
ro = true;
check tok.advance();
}
TypeDesc td = check parseTypeDesc(tok);
fields.push(check parseFieldDesc(tok, td, ro, fieldStartPos));
}
Position endPos = tok.currentEndPos();
check tok.advance();
return { startPos, endPos, fields, rest: INCLUSIVE_RECORD_TYPE_DESC };
}
function parseFieldDesc(Tokenizer tok, TypeDesc typeDesc, boolean ro, Position startPos) returns FieldDesc|err:Syntax {
string name = check tok.expectIdentifier();
boolean opt = false;
if tok.current() == "?" {
opt = true;
check tok.advance();
}
Position endPos = check tok.expectEnd(";");
return { startPos, endPos, name, typeDesc, ro, opt };
}