-
Notifications
You must be signed in to change notification settings - Fork 192
/
Copy pathtokenizer-event-handlers.ts
415 lines (343 loc) · 10.5 KB
/
tokenizer-event-handlers.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
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
import b, { SYNTHETIC } from '../builders';
import { appendChild, parseElementBlockParams } from '../utils';
import { HandlebarsNodeVisitors } from './handlebars-node-visitors';
import * as AST from '../types/nodes';
import * as HBS from '../types/handlebars-ast';
import SyntaxError from '../errors/syntax-error';
import { Tag } from '../parser';
import builders from '../builders';
import traverse from '../traversal/traverse';
import print from '../generation/print';
import Walker from '../traversal/walker';
import * as handlebars from 'handlebars';
import { assign } from '@glimmer/util';
import { NodeVisitor } from '../traversal/visitor';
import { EntityParser } from 'simple-html-tokenizer';
export const voidMap: {
[tagName: string]: boolean;
} = Object.create(null);
let voidTagNames =
'area base br col command embed hr img input keygen link meta param source track wbr';
voidTagNames.split(' ').forEach(tagName => {
voidMap[tagName] = true;
});
export class TokenizerEventHandlers extends HandlebarsNodeVisitors {
private tagOpenLine = 0;
private tagOpenColumn = 0;
reset() {
this.currentNode = null;
}
// Comment
beginComment() {
this.currentNode = b.comment('');
this.currentNode.loc = {
source: null,
start: b.pos(this.tagOpenLine, this.tagOpenColumn),
end: (null as any) as AST.Position,
};
}
appendToCommentData(char: string) {
this.currentComment.value += char;
}
finishComment() {
this.currentComment.loc.end = b.pos(this.tokenizer.line, this.tokenizer.column);
appendChild(this.currentElement(), this.currentComment);
}
// Data
beginData() {
this.currentNode = b.text();
this.currentNode.loc = {
source: null,
start: b.pos(this.tokenizer.line, this.tokenizer.column),
end: (null as any) as AST.Position,
};
}
appendToData(char: string) {
this.currentData.chars += char;
}
finishData() {
this.currentData.loc.end = b.pos(this.tokenizer.line, this.tokenizer.column);
appendChild(this.currentElement(), this.currentData);
}
// Tags - basic
tagOpen() {
this.tagOpenLine = this.tokenizer.line;
this.tagOpenColumn = this.tokenizer.column;
}
beginStartTag() {
this.currentNode = {
type: 'StartTag',
name: '',
attributes: [],
modifiers: [],
comments: [],
selfClosing: false,
loc: SYNTHETIC,
};
}
beginEndTag() {
this.currentNode = {
type: 'EndTag',
name: '',
attributes: [],
modifiers: [],
comments: [],
selfClosing: false,
loc: SYNTHETIC,
};
}
finishTag() {
let { line, column } = this.tokenizer;
let tag = this.currentTag;
tag.loc = b.loc(this.tagOpenLine, this.tagOpenColumn, line, column);
if (tag.type === 'StartTag') {
this.finishStartTag();
if (voidMap[tag.name] || tag.selfClosing) {
this.finishEndTag(true);
}
} else if (tag.type === 'EndTag') {
this.finishEndTag(false);
}
}
finishStartTag() {
let { name, attributes: attrs, modifiers, comments, selfClosing } = this.currentStartTag;
let loc = b.loc(this.tagOpenLine, this.tagOpenColumn);
let element = b.element({ name, selfClosing }, { attrs, modifiers, comments, loc });
this.elementStack.push(element);
}
finishEndTag(isVoid: boolean) {
let tag = this.currentTag;
let element = this.elementStack.pop() as AST.ElementNode;
let parent = this.currentElement();
validateEndTag(tag, element, isVoid);
element.loc.end.line = this.tokenizer.line;
element.loc.end.column = this.tokenizer.column;
parseElementBlockParams(element);
appendChild(parent, element);
}
markTagAsSelfClosing() {
this.currentTag.selfClosing = true;
}
// Tags - name
appendToTagName(char: string) {
this.currentTag.name += char;
}
// Tags - attributes
beginAttribute() {
let tag = this.currentTag;
if (tag.type === 'EndTag') {
throw new SyntaxError(
`Invalid end tag: closing tag must not have attributes, ` +
`in \`${tag.name}\` (on line ${this.tokenizer.line}).`,
tag.loc
);
}
this.currentAttribute = {
name: '',
parts: [],
isQuoted: false,
isDynamic: false,
start: b.pos(this.tokenizer.line, this.tokenizer.column),
valueStartLine: 0,
valueStartColumn: 0,
};
}
appendToAttributeName(char: string) {
this.currentAttr.name += char;
}
beginAttributeValue(isQuoted: boolean) {
this.currentAttr.isQuoted = isQuoted;
this.currentAttr.valueStartLine = this.tokenizer.line;
this.currentAttr.valueStartColumn = this.tokenizer.column;
}
appendToAttributeValue(char: string) {
let parts = this.currentAttr.parts;
let lastPart = parts[parts.length - 1];
if (lastPart && lastPart.type === 'TextNode') {
lastPart.chars += char;
// update end location for each added char
lastPart.loc.end.line = this.tokenizer.line;
lastPart.loc.end.column = this.tokenizer.column;
} else {
// initially assume the text node is a single char
let loc = b.loc(
this.tokenizer.line,
this.tokenizer.column,
this.tokenizer.line,
this.tokenizer.column
);
// correct for `\n` as first char
if (char === '\n') {
loc.start.line -= 1;
loc.start.column = lastPart ? lastPart.loc.end.column : this.currentAttr.valueStartColumn;
}
let text = b.text(char, loc);
parts.push(text);
}
}
finishAttributeValue() {
let { name, parts, isQuoted, isDynamic, valueStartLine, valueStartColumn } = this.currentAttr;
let value = assembleAttributeValue(parts, isQuoted, isDynamic, this.tokenizer.line);
value.loc = b.loc(valueStartLine, valueStartColumn, this.tokenizer.line, this.tokenizer.column);
let loc = b.loc(
this.currentAttr.start.line,
this.currentAttr.start.column,
this.tokenizer.line,
this.tokenizer.column
);
let attribute = b.attr(name, value, loc);
this.currentStartTag.attributes.push(attribute);
}
reportSyntaxError(message: string) {
throw new SyntaxError(
`Syntax error at line ${this.tokenizer.line} col ${this.tokenizer.column}: ${message}`,
b.loc(this.tokenizer.line, this.tokenizer.column)
);
}
}
function assembleAttributeValue(
parts: (AST.MustacheStatement | AST.TextNode)[],
isQuoted: boolean,
isDynamic: boolean,
line: number
) {
if (isDynamic) {
if (isQuoted) {
return assembleConcatenatedValue(parts);
} else {
if (
parts.length === 1 ||
(parts.length === 2 &&
parts[1].type === 'TextNode' &&
(parts[1] as AST.TextNode).chars === '/')
) {
return parts[0];
} else {
throw new SyntaxError(
`An unquoted attribute value must be a string or a mustache, ` +
`preceeded by whitespace or a '=' character, and ` +
`followed by whitespace, a '>' character, or '/>' (on line ${line})`,
b.loc(line, 0)
);
}
}
} else {
return parts.length > 0 ? parts[0] : b.text('');
}
}
function assembleConcatenatedValue(parts: (AST.MustacheStatement | AST.TextNode)[]) {
for (let i = 0; i < parts.length; i++) {
let part: AST.BaseNode = parts[i];
if (part.type !== 'MustacheStatement' && part.type !== 'TextNode') {
throw new SyntaxError(
'Unsupported node in quoted attribute value: ' + part['type'],
part.loc
);
}
}
return b.concat(parts);
}
function validateEndTag(
tag: Tag<'StartTag' | 'EndTag'>,
element: AST.ElementNode,
selfClosing: boolean
) {
let error;
if (voidMap[tag.name] && !selfClosing) {
// EngTag is also called by StartTag for void and self-closing tags (i.e.
// <input> or <br />, so we need to check for that here. Otherwise, we would
// throw an error for those cases.
error = 'Invalid end tag ' + formatEndTagInfo(tag) + ' (void elements cannot have end tags).';
} else if (element.tag === undefined) {
error = 'Closing tag ' + formatEndTagInfo(tag) + ' without an open tag.';
} else if (element.tag !== tag.name) {
error =
'Closing tag ' +
formatEndTagInfo(tag) +
' did not match last open tag `' +
element.tag +
'` (on line ' +
element.loc.start.line +
').';
}
if (error) {
throw new SyntaxError(error, element.loc);
}
}
function formatEndTagInfo(tag: Tag<'StartTag' | 'EndTag'>) {
return '`' + tag.name + '` (on line ' + tag.loc.end.line + ')';
}
/**
ASTPlugins can make changes to the Glimmer template AST before
compilation begins.
*/
export interface ASTPluginBuilder {
(env: ASTPluginEnvironment): ASTPlugin;
}
export interface ASTPlugin {
name: string;
visitor: NodeVisitor;
}
export interface ASTPluginEnvironment {
meta?: object;
syntax: Syntax;
}
interface HandlebarsParseOptions {
srcName?: string;
ignoreStandalone?: boolean;
}
export interface PreprocessOptions {
meta?: unknown;
plugins?: {
ast?: ASTPluginBuilder[];
};
parseOptions?: HandlebarsParseOptions;
/**
Useful for specifying a group of options together.
When `'codemod'` we disable all whitespace control in handlebars
(to preserve as much as possible) and we also avoid any
escaping/unescaping of HTML entity codes.
*/
mode?: 'codemod' | 'precompile';
}
export interface Syntax {
parse: typeof preprocess;
builders: typeof builders;
print: typeof print;
traverse: typeof traverse;
Walker: typeof Walker;
}
const syntax: Syntax = {
parse: preprocess,
builders,
print,
traverse,
Walker,
};
export function preprocess(html: string, options: PreprocessOptions = {}): AST.Template {
let mode = options.mode || 'precompile';
let ast: HBS.Program;
if (typeof html === 'object') {
ast = html;
} else {
let parseOptions = options.parseOptions || {};
if (mode === 'codemod') {
parseOptions.ignoreStandalone = true;
}
ast = handlebars.parse(html, parseOptions) as HBS.Program;
}
let entityParser = undefined;
if (mode === 'codemod') {
entityParser = new EntityParser({});
}
let program = new TokenizerEventHandlers(html, entityParser).acceptTemplate(ast);
if (options && options.plugins && options.plugins.ast) {
for (let i = 0, l = options.plugins.ast.length; i < l; i++) {
let transform = options.plugins.ast[i];
let env = assign({}, options, { syntax }, { plugins: undefined });
let pluginResult = transform(env);
traverse(program, pluginResult.visitor);
}
}
return program;
}