-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathparser.lua
More file actions
700 lines (453 loc) · 17.8 KB
/
parser.lua
File metadata and controls
700 lines (453 loc) · 17.8 KB
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
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
local lexer = require("lexer")
local parser = { MinecraftTextNode = {}, NewlineNode = {}, NamedColorNode = {}, HexColorNode = {}, DecorationNode = {}, ShowTextNode = {}, PlainTextNode = {}, ParseAccept = {}, ParseReject = {}, ParseFail = {} }
function parser.MinecraftTextNode.new(position, components)
local self = setmetatable({}, { __index = parser.MinecraftTextNode })
self.kind = "MinecraftTextNode"
self.position = position
self.components = components
return self
end
function parser.NewlineNode.new(position)
local self = setmetatable({}, { __index = parser.NewlineNode })
self.kind = "NewlineNode"
self.position = position
return self
end
function parser.NamedColorNode.new(position, color, components)
local self = setmetatable({}, { __index = parser.NamedColorNode })
self.kind = "NamedColorNode"
self.position = position
self.color = color
self.components = components
return self
end
function parser.HexColorNode.new(position, color, components)
assert(#color == 6)
local self = setmetatable({}, { __index = parser.HexColorNode })
self.kind = "HexColorNode"
self.position = position
self.color = color
self.components = components
return self
end
function parser.DecorationNode.new(position, decoration, components)
local self = setmetatable({}, { __index = parser.DecorationNode })
self.kind = "DecorationNode"
self.position = position
self.decoration = decoration
self.components = components
return self
end
function parser.ShowTextNode.new(position, text, textPosition, originalString, components)
local self = setmetatable({}, { __index = parser.ShowTextNode })
self.kind = "ShowTextNode"
self.position = position
self.text = text
self.textPosition = textPosition
self.originalString = originalString
self.components = components
return self
end
function parser.PlainTextNode.new(position, content)
local self = setmetatable({}, { __index = parser.PlainTextNode })
self.kind = "PlainTextNode"
self.position = position
self.content = content
return self
end
function parser.ParseAccept.new(result, nextIndex, warnings, strictProblems)
local self = setmetatable({}, { __index = parser.ParseAccept })
self.kind = "ParseAccept"
self.result = result
self.nextIndex = nextIndex
self.warnings = warnings
self.strictProblems = strictProblems
return self
end
function parser.ParseReject.new()
local self = setmetatable({}, { __index = parser.ParseReject })
self.kind = "ParseReject"
return self
end
function parser.ParseFail.new(failure)
local self = setmetatable({}, { __index = parser.ParseFail })
self.kind = "ParseFail"
self.failure = failure
return self
end
local function tagMatches(startTag, endTag)
local nameMatches = startTag.name == endTag.name
if not nameMatches then
return false
end
for i = 1, #endTag.arguments do
local hasOpenArgument = i <= #startTag.arguments
local argMatches = hasOpenArgument and startTag.arguments[i].content == endTag.arguments[i].content
if not argMatches then
return false
end
end
return true
end
local function parseNewlineTag(tag, startIndex)
local isStartTag = tag.kind == "TagToken" and not tag.isEndTag
if not isStartTag then
return parser.ParseReject.new()
end
assert(tag.kind == "TagToken")
if tag.name == "br" then
if #tag.arguments > 0 then
return parser.ParseFail.new(lexer.Problem.new("too many argument in br tag", tag.position))
end
return parser.ParseAccept.new(parser.NewlineNode.new(tag.position), startIndex + 1, {}, {})
end
return parser.ParseReject.new()
end
local function parseVoidTag(tag, startIndex)
local tagParsersToTry = { parseNewlineTag }
for _, tagParser in ipairs(tagParsersToTry) do
local result = tagParser(tag, startIndex)
if result.kind == "ParseAccept" or result.kind == "ParseFail" then
return result
end
end
return parser.ParseReject.new()
end
local function parseResetTag(tag, startIndex)
local isStartTag = tag.kind == "TagToken" and not tag.isEndTag
if not isStartTag then
return parser.ParseReject.new()
end
assert(tag.kind == "TagToken")
if tag.name == "reset" then
if #tag.arguments > 0 then
return parser.ParseFail.new(lexer.Problem.new("too many argument in reset tag", tag.position))
end
local warnings = {}
local strictProblems = {
lexer.Problem.new("reset tag is not allowed", tag.position),
}
return parser.ParseAccept.new(true, startIndex + 1, warnings, strictProblems)
end
return parser.ParseReject.new()
end
local function toNamedColor(color)
local validColors = {
black = "black",
dark_blue = "dark_blue",
dark_green = "dark_green",
dark_aqua = "dark_aqua",
dark_red = "dark_red",
dark_purple = "dark_purple",
gold = "gold",
gray = "gray",
dark_gray = "dark_gray",
blue = "blue",
green = "green",
aqua = "aqua",
red = "red",
light_purple = "light_purple",
yellow = "yellow",
white = "white",
}
return validColors[color]
end
local function parseOpenNamedColorTag(tag, startIndex)
local color = toNamedColor(tag.name)
if not color then
return parser.ParseReject.new()
end
assert(type(color) == "string")
if #tag.arguments > 0 then
return parser.ParseFail.new(lexer.Problem.new("too many argument in named color tag", tag.position))
end
return parser.ParseAccept.new(parser.NamedColorNode.new(tag.position, color, {}), startIndex + 1, {}, {})
end
local function toHexColor(color)
local isHexColor = color:match("^#[0-9a-fA-F]*$") ~= nil and #color == 7
if not isHexColor then
return nil
end
local hexColorWithoutTheHash = color:sub(2, #color)
return hexColorWithoutTheHash
end
local function parseOpenHexColorTag(tag, startIndex)
local hexColor = toHexColor(tag.name)
if not hexColor then
return parser.ParseReject.new()
end
if #tag.arguments > 0 then
return parser.ParseFail.new(lexer.Problem.new("too many argument in hex color tag", tag.position))
end
return parser.ParseAccept.new(parser.HexColorNode.new(tag.position, hexColor, {}), startIndex + 1, {}, {})
end
local function parseOpenColorTag(tag, startIndex)
local isColorTag = tag.name == "color"
if not isColorTag then
return parser.ParseReject.new()
end
local colorArg = tag.arguments[1]
if not colorArg then
return parser.ParseFail.new(lexer.Problem.new("not enough argument in color tag", tag.position))
end
local namedColor = toNamedColor(colorArg.content)
local hexColor = toHexColor(colorArg.content)
if not (namedColor or hexColor) then
return parser.ParseFail.new(lexer.Problem.new("invalid color name " .. colorArg.content .. " in color tag", tag.position))
end
if #tag.arguments > 1 then
return parser.ParseFail.new(lexer.Problem.new("too many argument in color tag", tag.position))
end
if namedColor then
return parser.ParseAccept.new(parser.NamedColorNode.new(tag.position, namedColor, {}), startIndex + 1, {}, {})
else
return parser.ParseAccept.new(parser.HexColorNode.new(tag.position, hexColor, {}), startIndex + 1, {}, {})
end
end
local function parseOpenDecorationTag(tag, startIndex)
local validDecorations = {
bold = "bold",
b = "bold",
italic = "italic",
i = "italic",
underlined = "underlined",
u = "underlined",
strikethrough = "strikethrough",
st = "strikethrough",
obfuscated = "obfuscated",
obf = "obfuscated",
}
local decoration = validDecorations[tag.name]
if not decoration then
return parser.ParseReject.new()
end
if #tag.arguments > 0 then
return parser.ParseFail.new(lexer.Problem.new("too many argument in " .. decoration .. " tag", tag.position))
end
return parser.ParseAccept.new(parser.DecorationNode.new(tag.position, decoration, {}), startIndex + 1, {}, {})
end
local function parseOpenHoverTag(tag, startIndex)
local isHoverTag = tag.name == "hover"
if not isHoverTag then
return parser.ParseReject.new()
end
local actionArg = tag.arguments[1]
if not actionArg then
return parser.ParseFail.new(lexer.Problem.new("not enough argument for hover tag", tag.position))
end
if actionArg.content == "show_text" then
local textArg = tag.arguments[2]
if not textArg then
return parser.ParseFail.new(lexer.Problem.new("not enough argument for hover:show_text tag", tag.position))
end
if #tag.arguments > 2 then
return parser.ParseFail.new(lexer.Problem.new("too many argument for hover:show_text tag", tag.position))
end
return parser.ParseAccept.new(parser.ShowTextNode.new(tag.position, textArg.content, textArg.position, textArg.originalString, {}), startIndex + 1, {}, {})
end
return parser.ParseFail.new(lexer.Problem.new("invalid hover tag action", tag.position))
end
local UnhandledTag = {}
function UnhandledTag.new(tagToken)
local self = setmetatable({}, { __index = UnhandledTag })
self.tagToken = tagToken
self.isEndTag = false
self.isResetTag = false
if tagToken.name == "reset" then
self.isResetTag = true
return self
end
assert(tagToken.isEndTag == true)
self.isEndTag = true
return self
end
local function someoneCanConsumeEndTag(openedTags, closeTag)
for i = #openedTags, 1, -1 do
if tagMatches(openedTags[i], closeTag) then
return true
end
end
return false
end
local parseNormalTag
local parseComponentsUntilCloseOrReset
function parseNormalTag(tokens, openedTags, startIndex)
local startTag = tokens[startIndex]
local isStartTag = startTag.kind == "TagToken" and not startTag.isEndTag
if not isStartTag then
return parser.ParseReject.new()
end
local warnings = {}
local strictProblems = {}
local function addWarningsAndProblems(result)
for _, warning in ipairs(result.warnings) do
warnings[#warnings + 1] = warning
end
for _, problem in ipairs(result.strictProblems) do
strictProblems[#strictProblems + 1] = problem
end
end
assert(startTag.kind == "TagToken")
local tagParsersToTry = { parseOpenNamedColorTag, parseOpenHexColorTag, parseOpenColorTag, parseOpenDecorationTag, parseOpenHoverTag }
local foundNode = nil
for _, tagParser in ipairs(tagParsersToTry) do
local tagResult = tagParser(startTag, startIndex)
if tagResult.kind == "ParseAccept" then
foundNode = tagResult.result
addWarningsAndProblems(tagResult)
break
elseif tagResult.kind == "ParseFail" then
return tagResult
end
end
if foundNode == nil then
return parser.ParseReject.new()
end
local resultNode = foundNode
openedTags[#openedTags + 1] = startTag
local result = parseComponentsUntilCloseOrReset(tokens, openedTags, startIndex + 1)
addWarningsAndProblems(result)
local unhandledTag = result.result.unhandledTag
local toPropagateTag = false
if unhandledTag == nil then
strictProblems[#strictProblems + 1] = lexer.Problem.new("tag " .. startTag.name .. " does not have an end tag", startTag.position)
toPropagateTag = false
elseif unhandledTag.isEndTag then
assert(startTag.kind == "TagToken")
if tagMatches(startTag, unhandledTag.tagToken) then
toPropagateTag = false
else
strictProblems[#strictProblems + 1] = lexer.Problem.new("tag " .. startTag.name .. " does not have an end tag", startTag.position)
toPropagateTag = true
end
else
assert(unhandledTag.isResetTag)
toPropagateTag = true
end
openedTags[#openedTags] = nil
resultNode.components = result.result.components
return parser.ParseAccept.new({ node = resultNode, unhandledTag = toPropagateTag and unhandledTag or nil }, result.nextIndex, warnings, strictProblems)
end
function parseComponentsUntilCloseOrReset(tokens, openedTags, startIndex)
local components = {}
local warnings = {}
local strictProblems = {}
local function addWarningsAndProblems(result)
for _, warning in ipairs(result.warnings) do
warnings[#warnings + 1] = warning
end
for _, problem in ipairs(result.strictProblems) do
strictProblems[#strictProblems + 1] = problem
end
end
local index = startIndex
while index <= #tokens do
local moveOn = false
local token = tokens[index]
local function acceptComponentAndMoveOn(component, nextIndex)
components[#components + 1] = component
moveOn = true
index = nextIndex
end
if not moveOn and token.kind == "PlainTextToken" then
acceptComponentAndMoveOn(parser.PlainTextNode.new(token.position, token.content), index + 1)
end
if not moveOn and token.kind == "NewlineToken" then
acceptComponentAndMoveOn(parser.NewlineNode.new(token.position), index + 1)
end
if not moveOn and token.kind == "TagToken" and token.isEndTag then
local closeTagIsValid = someoneCanConsumeEndTag(openedTags, token)
if closeTagIsValid then
local toConsumeEndTagNow = 1
return parser.ParseAccept.new({ components = components, unhandledTag = UnhandledTag.new(token) }, index + toConsumeEndTagNow, warnings, strictProblems)
else
warnings[#warnings + 1] = lexer.Problem.new("invalid end tag " .. token.name, token.position)
acceptComponentAndMoveOn(parser.PlainTextNode.new(token.position, token.originalString), index + 1)
end
end
if not moveOn and token.kind == "TagToken" then
local resetTagResult = parseResetTag(token, index)
if resetTagResult.kind == "ParseAccept" then
assert(token.name == "reset")
addWarningsAndProblems(resetTagResult)
local toConsumeResetTagNow = 1
return parser.ParseAccept.new({ components = components, unhandledTag = UnhandledTag.new(token) }, index + toConsumeResetTagNow, warnings, strictProblems)
elseif resetTagResult.kind == "ParseFail" then
warnings[#warnings + 1] = resetTagResult.failure
acceptComponentAndMoveOn(parser.PlainTextNode.new(token.position, token.originalString), index + 1)
else
assert(resetTagResult.kind == "ParseReject")
end
end
if not moveOn and token.kind == "TagToken" then
local voidTagResult = parseVoidTag(token, index)
if voidTagResult.kind == "ParseAccept" then
addWarningsAndProblems(voidTagResult)
acceptComponentAndMoveOn(voidTagResult.result, voidTagResult.nextIndex)
elseif voidTagResult.kind == "ParseFail" then
warnings[#warnings + 1] = voidTagResult.failure
acceptComponentAndMoveOn(parser.PlainTextNode.new(token.position, token.originalString), index + 1)
else
assert(voidTagResult.kind == "ParseReject")
end
end
if not moveOn and token.kind == "TagToken" then
local normalTagResult = parseNormalTag(tokens, openedTags, index)
if normalTagResult.kind == "ParseAccept" then
addWarningsAndProblems(normalTagResult)
acceptComponentAndMoveOn(normalTagResult.result.node, normalTagResult.nextIndex)
local unhandledTag = normalTagResult.result.unhandledTag
local hasPropagatedUnhandledTag = unhandledTag ~= nil
if hasPropagatedUnhandledTag then
return parser.ParseAccept.new({ components = components, unhandledTag = unhandledTag }, normalTagResult.nextIndex, warnings, strictProblems)
end
elseif normalTagResult.kind == "ParseFail" then
warnings[#warnings + 1] = normalTagResult.failure
acceptComponentAndMoveOn(parser.PlainTextNode.new(token.position, token.originalString), index + 1)
else
assert(normalTagResult.kind == "ParseReject")
end
end
if not moveOn then
assert(token.kind == "TagToken")
warnings[#warnings + 1] = lexer.Problem.new("unknown tag " .. token.name, token.position)
acceptComponentAndMoveOn(parser.PlainTextNode.new(token.position, token.originalString), index + 1)
end
end
return parser.ParseAccept.new({ components = components, unhandledTag = nil }, index, warnings, strictProblems)
end
function parser.parse(tokens)
local components = {}
local openedTags = {}
local index = 1
local warnings = {}
local strictProblems = {}
local function addWarningsAndProblems(result)
for _, warning in ipairs(result.warnings) do
warnings[#warnings + 1] = warning
end
for _, problem in ipairs(result.strictProblems) do
strictProblems[#strictProblems + 1] = problem
end
end
if #tokens < 1 then
return parser.ParseAccept.new(parser.MinecraftTextNode.new(lexer.Position.new(1, 1, 1), components), index, warnings, strictProblems)
end
while index <= #tokens do
local result = parseComponentsUntilCloseOrReset(tokens, openedTags, index)
addWarningsAndProblems(result)
for _, newComponent in ipairs(result.result.components) do
components[#components + 1] = newComponent
end
local unhandledTag = result.result.unhandledTag
if unhandledTag == nil then
elseif unhandledTag.isEndTag then
components[#components + 1] = parser.PlainTextNode.new(unhandledTag.tagToken.position, unhandledTag.tagToken.originalString)
else
assert(unhandledTag.isResetTag)
end
index = result.nextIndex
end
return parser.ParseAccept.new(parser.MinecraftTextNode.new(tokens[1].position, components), index, warnings, strictProblems)
end
return parser