-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtransform.ts
322 lines (278 loc) · 12.1 KB
/
transform.ts
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
import { $ast as g } from './grammar';
/*
Foo = "a" / "b" : void
Foo = A / B : void
Foo = a:A b:B : { $: 'Foo', a: A, b: B }
foo = "a" / "b" : "a" | "b"
foo = A / B : A | B
foo = a:A b:B : { a: A, b: B }
foo = @A B : A
*/
export type Expr =
| Alt
| Eps
| Pure
| Ap
| Field
| Located
| Call
| Class
| Terminal
| Any
| LookNeg
| LookPos
| Stringify
| Lex
| Star
| Plus
| Optional
export type Escape = Named | Short | Long | Ascii;
export type Mode = 'l' | 'r'
export type Grammar = { readonly $: "Grammar", readonly rules: readonly Rule[] }
export const Grammar = (rules: readonly Rule[]): Grammar => ({ $: "Grammar", rules });
export type Rule = { readonly $: "Rule", readonly name: string, readonly formals: readonly string[], readonly body: Expr, readonly display: undefined | readonly (Char | Special | Escape)[] }
export const Rule = (name: string, formals: readonly string[], body: Expr, display: undefined | readonly (Char | Special | Escape)[]): Rule => ({ $: "Rule", name, formals, body, display });
export type Alt = { readonly $: "Alt", readonly left: Expr, readonly right: Expr }
export const Alt = (left: Expr, right: Expr): Alt => ({ $: "Alt", left, right });
export type Pure = { readonly $: "Pure", readonly value: string }
export const Pure = (value: string): Pure => ({ $: "Pure", value });
export type Ap = { readonly $: "Ap", readonly left: Expr, readonly right: Expr, readonly mode: Mode }
export const Ap = (left: Expr, right: Expr, mode: Mode): Ap => ({ $: "Ap", left, mode, right });
export type Eps = { readonly $: "Eps" }
export const Eps: Eps = ({ $: "Eps" });
export type Field = { readonly $: "Field", readonly left: Expr, readonly right: Expr, readonly key: string }
export const Field = (key: string, left: Expr, right: Expr): Field => ({ $: "Field", key, left, right });
export type Located = { readonly $: "Located", readonly child: Expr }
export const Located = (child: Expr): Located => ({ $: "Located", child });
export type LookNeg = { readonly $: "LookNeg", readonly expr: Expr }
export const LookNeg = (expr: Expr): LookNeg => ({ $: "LookNeg", expr });
export type LookPos = { readonly $: "LookPos", readonly expr: Expr }
export const LookPos = (expr: Expr): LookPos => ({ $: "LookPos", expr });
export type Stringify = { readonly $: 'Stringify', readonly expr: Expr }
export const Stringify = (expr: Expr): Stringify => ({ $: "Stringify", expr });
export type Lex = { readonly $: 'Lex', readonly expr: Expr }
export const Lex = (expr: Expr): Lex => ({ $: "Lex", expr });
export type Star = { readonly $: 'Star', readonly expr: Expr }
export const Star = (expr: Expr): Star => ({ $: "Star", expr });
export type Plus = { readonly $: 'Plus', readonly expr: Expr }
export const Plus = (expr: Expr): Plus => ({ $: "Plus", expr });
export type Optional = { readonly $: 'Optional', readonly expr: Expr }
export const Optional = (expr: Expr): Optional => ({ $: "Optional", expr });
export type Call = { readonly $: "Call", readonly name: string, readonly params: readonly Expr[] }
export const Call = (name: string, params: readonly Expr[]): Call => ({ $: "Call", name, params });
export type Class = { readonly $: "Class", readonly seqs: readonly (Group | ClassChar | SpecialClass | Escape)[], readonly negated: boolean }
export const Class = (seqs: readonly (Group | ClassChar | SpecialClass | Escape)[], negated: boolean): Class => ({ $: "Class", negated, seqs });
export type Group = { readonly $: "Group", readonly from: ClassChar | SpecialClass | Escape, readonly to: ClassChar | SpecialClass | Escape }
export const Group = (from: ClassChar | SpecialClass | Escape, to: ClassChar | SpecialClass | Escape): Group => ({ $: "Group", from, to });
export type ClassChar = { readonly $: "ClassChar", readonly value: string }
export const ClassChar = (value: string): ClassChar => ({ $: "ClassChar", value });
export type Terminal = { readonly $: "Terminal", readonly value: readonly (Char | Special | Escape)[] }
export const Terminal = (value: readonly (Char | Special | Escape)[]): Terminal => ({ $: "Terminal", value });
export type Any = { readonly $: "Any" }
export const Any: Any = ({ $: "Any" });
export type Char = { readonly $: "Char", readonly value: string }
export const Char = (value: string): Char => ({ $: "Char", value });
export type Special = { readonly $: "Special", readonly value: string }
export const Special = (value: string): Special => ({ $: "Special", value });
export type SpecialClass = { readonly $: "SpecialClass", readonly value: string }
export const SpecialClass = (value: string): SpecialClass => ({ $: "SpecialClass", value });
export type Named = { readonly $: "Named", readonly value: 'b' | 'n' | 'r' | 't' }
export const Named = (value: 'b' | 'n' | 'r' | 't'): Named => ({ $: "Named", value });
export type Short = { readonly $: "Short", readonly value: string }
export const Short = (value: string): Short => ({ $: "Short", value });
export type Long = { readonly $: "Long", readonly value: string }
export const Long = (value: string): Long => ({ $: "Long", value });
export type Ascii = { readonly $: "Ascii", readonly value: string }
export const Ascii = (value: string): Ascii => ({ $: "Ascii", value });
type Context = {
formals: Set<string>;
}
type Transform<T> = (ctx: Context) => T
const keywords: Set<string> = new Set([
'abstract', 'arguments', 'await', 'boolean', 'break', 'byte', 'case', 'catch', 'char',
'class', 'const', 'continue', 'debugger', 'default', 'delete', 'do', 'double', 'else',
'enum', 'eval', 'export', 'extends', 'false', 'final', 'finally', 'float', 'for',
'function', 'goto', 'if', 'implements', 'import', 'in', 'instanceof', 'int', 'interface',
'let', 'long', 'native', 'new', 'null', 'package', 'private', 'protected', 'public',
'return', 'short', 'static', 'super', 'switch', 'synchronized', 'this', 'throw', 'throws',
'transient', 'true', 'try', 'typeof', 'var', 'void', 'volatile', 'while', 'with', 'yield',
'as', 'type', 'interface', 'never', 'Function', 'string', 'number', 'boolean',
]);
const renameIfKeyword = (name: string): string => {
return keywords.has(name) ? `$${name}` : name;
};
export const desugar = ({ rules }: g.Grammar): Grammar => {
return Grammar(rules.flatMap((rule) => {
return transformRule(rule);
}));
};
const transformRule = (
{ name, display, formals, body }: g.Rule
) => {
const fullName = renameIfKeyword(name);
const allFormals = formals ? [formals.head, ...formals.tail] : [];
const formalsSet: Set<string> = new Set(allFormals);
const isAstRule = name.match(/^[A-Z]/);
if (isAstRule) {
const expr = transformAstAlt(body)({
formals: formalsSet,
});
return Rule(fullName, allFormals, Located(Field('$', Pure(name), expr)), display);
} else {
const expr = transformAlt(body)({
formals: formalsSet,
});
return Rule(fullName, allFormals, expr, display);
}
};
const transformAstAlt = (node: g.Alt): Transform<Expr> => (ctx) => {
const altExprs = [node.head, ...node.tail];
if (altExprs.length !== 1 || !altExprs[0]) {
// Foo = A / B
return Ap(transformAlt(node)(ctx), Eps, 'r');
}
const seq = altExprs[0];
const { exprs } = seq;
const hasPick = exprs.filter(expr => expr.selector?.$ === 'Choose').length;
if (hasPick) {
// Foo = A @B
throw new Error('AST rules do not allow @-picking');
}
const hasNamed = exprs.filter(expr => expr.selector?.$ === 'Name').length;
if (hasNamed) {
// Foo = a:A b:B
return transformSeq(seq)(ctx);
} else {
// Foo = A B
return Ap(transformSeq(seq)(ctx), Eps, 'r');
}
};
type gExpr = g.Alt | g.Apply | g.Iter | g.Seq | g.Any | g.Class | g.Terminal
const transformExprs = (nodes: readonly gExpr[]): Transform<Expr[]> => (ctx) => {
return nodes.map(expr => transformExpr(expr)(ctx));
};
const transformExpr = (node: gExpr): Transform<Expr> => (ctx) => {
switch (node.$) {
case 'Apply':
return transformApply(node)(ctx);
case 'Iter':
return transformIter(node)(ctx);
case 'Seq':
return transformSeq(node)(ctx);
case 'Alt':
return transformAlt(node)(ctx);
case 'Any':
return transformAny(node)(ctx);
case 'Class':
return transformClass(node)(ctx);
case 'Terminal':
return transformTerminal(node)(ctx);
}
};
const transformAny = (_node: g.Any): Transform<Expr> => () => {
return Any;
};
const transformClass = ({ negated, seqs }: g.Class): Transform<Expr> => () => {
return Class(seqs, negated === '^');
};
const transformTerminal = ({ value }: g.Terminal): Transform<Expr> => () => {
return Terminal(value);
};
const transformApply = (node: g.Apply): Transform<Expr> => (ctx) => {
const newName = renameIfKeyword(node.name);
const allParams = node.params ? [node.params.head, ...node.params.tail] : [];
return Call(newName, transformExprs(allParams)(ctx));
};
const transformAlt = (node: g.Alt): Transform<Expr> => (ctx) => {
const exprs = [node.head, ...node.tail];
if (exprs.length === 1 && exprs[0]) {
return transformExpr(exprs[0])(ctx);
}
return transformExprs(exprs)(ctx).reduceRight((prev, next) => Alt(next, prev));
};
const transformIter = ({ prefix, expr, suffix }: g.Iter): Transform<Expr> => {
return prefix.reduceRight(
(acc, prefix) => transformPrefix(prefix, acc),
(ctx: Context) => transformSuffix(suffix, transformExpr(expr)(ctx)),
);
};
const transformPrefix = (prefix: "!" | "&" | "#" | "$", expr: Transform<Expr>): Transform<Expr> => (ctx) => {
switch (prefix) {
case '!':
return LookNeg(expr(ctx));
case '&':
return LookPos(expr(ctx));
case '$':
return Stringify(expr(ctx));
case '#':
return Lex(expr(ctx));
default:
throw new Error('Unexpected prefix');
}
};
const transformSuffix = (suffix: "*" | "+" | "?" | undefined, expr: Expr): Expr => {
switch (suffix) {
case '*':
return Star(expr);
case '+':
return Plus(expr);
case '?':
return Optional(expr);
case undefined:
return expr;
default:
throw new Error('Unexpected suffix');
}
};
const transformSeq = ({ exprs }: g.Seq): Transform<Expr> => (ctx) => {
const hasPick = exprs.filter(expr => expr.selector?.$ === 'Choose').length;
const hasNamed = exprs.filter(expr => expr.selector?.$ === 'Name').length;
if (hasPick && hasNamed) {
throw new Error('Picking and naming at the same time is not allowed');
}
if (hasPick > 1) {
throw new Error('Pick one');
}
const opts: Context = {
formals: ctx.formals,
};
if (hasPick) {
// ..@..
// . > (. > (@ < (. < .)))
const transformed = exprs
.map(({ expr, selector }) => [
transformExpr(expr)(opts),
selector?.$ === 'Choose',
] as const);
return transformed
.reduceRight(([prev, wasPicked], [expr, willPick]) => [
Ap(expr, prev, wasPicked ? 'r' : 'l'),
wasPicked || willPick,
])[0];
}
if (hasNamed) {
// ..:.::.
// . > (. > (: x (. > (: x (: > (. > eps))))))
const e = exprs
.map(({ expr, selector }) => [
transformExpr(expr)(opts),
selector?.$ === 'Name' ? selector.name : false,
] as const);
e.push([Eps, 'eps']);
return e
.reduceRight(([prev, wasPicked], [expr, willPick]) => [
!wasPicked
? Ap(expr, prev, 'l')
: willPick
? Field(willPick, expr, prev)
: Ap(expr, prev, 'r'),
wasPicked || willPick,
])[0];
}
const e = exprs.map(({ expr }) => transformExpr(expr)(opts));
if (e.length === 1 && e[0]) {
return e[0];
}
e.push(Eps);
return e.reduceRight((prev, expr) => Ap(expr, prev, 'r'));
};