-
Notifications
You must be signed in to change notification settings - Fork 0
/
yaml.lua
631 lines (558 loc) · 15.7 KB
/
yaml.lua
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
-- This file, yaml.lua, was retrieved from its original URL at
-- https://github.com/exosite/lua-yaml/yaml.lua on
-- August 8, 2022 under the MIT license.
--
-- In compliance with the license, the license text is reproduced as follows.
-- Copyright (c) 2017 Dominic Letz [email protected]
--
-- Permission is hereby granted, free of charge, to any person obtaining a copy
-- of this software and associated documentation files (the 'Software'), to
-- deal in the Software without restriction, including without limitation the
-- rights to use, copy, modify, merge, publish, distribute, sublicense,
-- and/or sell copies of the Software, and to permit persons to whom the
-- Software is furnished to do so, subject to the following conditions:
--
-- The above copyright notice and this permission notice shall be included
-- in all copies or substantial portions of the Software.
--
-- THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
-- FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
-- DEALINGS IN THE SOFTWARE.
local table_print_value
table_print_value = function(value, indent, done)
indent = indent or 0
done = done or {}
if type(value) == 'table' and not done[value] then
done[value] = true
local list = {}
for key in pairs(value) do
list[#list + 1] = key
end
table.sort(list, function(a, b)
return tostring(a) < tostring(b)
end)
local last = list[#list]
local rep = '{\n'
local comma
for _, key in ipairs(list) do
if key == last then
comma = ''
else
comma = ','
end
local keyRep
if type(key) == 'number' then
keyRep = key
else
keyRep = string.format('%q', tostring(key))
end
rep = rep
.. string.format(
'%s[%s] = %s%s\n',
string.rep(' ', indent + 2),
keyRep,
table_print_value(value[key], indent + 2, done),
comma
)
end
rep = rep .. string.rep(' ', indent) -- indent it
rep = rep .. '}'
done[value] = false
return rep
elseif type(value) == 'string' then
return string.format('%q', value)
else
return tostring(value)
end
end
local table_print = function(tt)
print('return ' .. table_print_value(tt))
end
local table_clone = function(t)
local clone = {}
for k, v in pairs(t) do
clone[k] = v
end
return clone
end
local string_trim = function(s, what)
what = what or ' '
return s:gsub('^[' .. what .. ']*(.-)[' .. what .. ']*$', '%1')
end
local push = function(stack, item)
stack[#stack + 1] = item
end
local pop = function(stack)
local item = stack[#stack]
stack[#stack] = nil
return item
end
local context = function(str)
if type(str) ~= 'string' then
return ''
end
str = str:sub(0, 25):gsub('\n', '\\n'):gsub('"', '\\"')
return ', near "' .. str .. '"'
end
local Parser = {}
function Parser.new(self, tokens)
self.tokens = tokens
self.parse_stack = {}
self.refs = {}
self.current = 0
return self
end
local exports = { version = '1.2' }
local word = function(w)
return '^(' .. w .. ')([%s$%c])'
end
local tokens = {
{ 'comment', '^#[^\n]*' },
{ 'indent', '^\n( *)' },
{ 'space', '^ +' },
{ 'true', word('enabled'), const = true, value = true },
{ 'true', word('true'), const = true, value = true },
{ 'true', word('yes'), const = true, value = true },
{ 'true', word('on'), const = true, value = true },
{ 'false', word('disabled'), const = true, value = false },
{ 'false', word('false'), const = true, value = false },
{ 'false', word('no'), const = true, value = false },
{ 'false', word('off'), const = true, value = false },
{ 'null', word('null'), const = true, value = nil },
{ 'null', word('Null'), const = true, value = nil },
{ 'null', word('NULL'), const = true, value = nil },
{ 'null', word('~'), const = true, value = nil },
{ 'id', '^"([^"]-)" *(:[%s%c])' },
{ 'id', "^'([^']-)' *(:[%s%c])" },
{ 'string', '^"([^"]-)"', force_text = true },
{ 'string', "^'([^']-)'", force_text = true },
{
'timestamp',
'^(%d%d%d%d)-(%d%d?)-(%d%d?)%s+(%d%d?):(%d%d):(%d%d)%s+(%-?%d%d?):(%d%d)',
},
{
'timestamp',
'^(%d%d%d%d)-(%d%d?)-(%d%d?)%s+(%d%d?):(%d%d):(%d%d)%s+(%-?%d%d?)',
},
{ 'timestamp', '^(%d%d%d%d)-(%d%d?)-(%d%d?)%s+(%d%d?):(%d%d):(%d%d)' },
{ 'timestamp', '^(%d%d%d%d)-(%d%d?)-(%d%d?)%s+(%d%d?):(%d%d)' },
{ 'timestamp', '^(%d%d%d%d)-(%d%d?)-(%d%d?)%s+(%d%d?)' },
{ 'timestamp', '^(%d%d%d%d)-(%d%d?)-(%d%d?)' },
{ 'doc', '^%-%-%-[^%c]*' },
{ ',', '^,' },
{ 'string', '^%b{} *[^,%c]+', noinline = true },
{ '{', '^{' },
{ '}', '^}' },
{ 'string', '^%b[] *[^,%c]+', noinline = true },
{ '[', '^%[' },
{ ']', '^%]' },
{ '-', '^%-', noinline = true },
{ ':', '^:' },
{ 'pipe', '^(|)(%d*[+%-]?)', sep = '\n' },
{ 'pipe', '^(>)(%d*[+%-]?)', sep = ' ' },
{ 'id', '^([%w][%w %-_]*)(:[%s%c])' },
{ 'string', '^[^%c]+', noinline = true },
{ 'string', '^[^,%]}%c ]+' },
}
exports.tokenize = function(str)
local token
local row = 0
local ignore
local indents = 0
local lastIndents
local stack = {}
local indentAmount = 0
local inline = false
str = str:gsub('\r\n', '\010')
while #str > 0 do
for i in ipairs(tokens) do
local captures = {}
if not inline or tokens[i].noinline == nil then
captures = { str:match(tokens[i][2]) }
end
if #captures > 0 then
captures.input = str:sub(0, 25)
token = table_clone(tokens[i])
token[2] = captures
local str2 = str:gsub(tokens[i][2], '', 1)
token.raw = str:sub(1, #str - #str2)
str = str2
if token[1] == '{' or token[1] == '[' then
inline = true
elseif token.const then
-- Since word pattern contains last char we're re-adding it
str = token[2][2] .. str
token.raw = token.raw:sub(1, #token.raw - #token[2][2])
elseif token[1] == 'id' then
-- Since id pattern contains last semi-colon we're re-adding it
str = token[2][2] .. str
token.raw = token.raw:sub(1, #token.raw - #token[2][2])
-- Trim
token[2][1] = string_trim(token[2][1])
elseif token[1] == 'string' then
-- Finding numbers
local snip = token[2][1]
if not token.force_text then
if snip:match('^(-?%d+%.%d+)$') or snip:match('^(-?%d+)$') then
token[1] = 'number'
end
end
elseif token[1] == 'comment' then
ignore = true
elseif token[1] == 'indent' then
row = row + 1
inline = false
lastIndents = indents
if indentAmount == 0 then
indentAmount = #token[2][1]
end
if indentAmount ~= 0 then
indents = (#token[2][1] / indentAmount)
else
indents = 0
end
if indents == lastIndents then
ignore = true
elseif indents > lastIndents + 2 then
error(
'SyntaxError: invalid indentation, got '
.. tostring(indents)
.. ' instead of '
.. tostring(lastIndents)
.. context(token[2].input)
)
elseif indents > lastIndents + 1 then
push(stack, token)
elseif indents < lastIndents then
local input = token[2].input
token = { 'dedent', { '', input = '' } }
token.input = input
while lastIndents > indents + 1 do
lastIndents = lastIndents - 1
push(stack, token)
end
end
end -- if token[1] == XXX
token.row = row
break
end -- if #captures > 0
end
if not ignore then
if token then
push(stack, token)
token = nil
else
error('SyntaxError ' .. context(str))
end
end
ignore = false
end
return stack
end
Parser.peek = function(self, offset)
offset = offset or 1
return self.tokens[offset + self.current]
end
Parser.advance = function(self)
self.current = self.current + 1
return self.tokens[self.current]
end
Parser.advanceValue = function(self)
return self:advance()[2][1]
end
Parser.accept = function(self, type)
if self:peekType(type) then
return self:advance()
end
end
Parser.expect = function(self, type, msg)
return self:accept(type) or error(msg .. context(self:peek()[1].input))
end
Parser.expectDedent = function(self, msg)
return self:accept('dedent')
or (self:peek() == nil)
or error(msg .. context(self:peek()[2].input))
end
Parser.peekType = function(self, val, offset)
return self:peek(offset) and self:peek(offset)[1] == val
end
Parser.ignore = function(self, items)
local advanced
repeat
advanced = false
for _, v in pairs(items) do
if self:peekType(v) then
self:advance()
advanced = true
end
end
until advanced == false
end
Parser.ignoreSpace = function(self)
self:ignore({ 'space' })
end
Parser.ignoreWhitespace = function(self)
self:ignore({ 'space', 'indent', 'dedent' })
end
Parser.parse = function(self)
local ref = nil
if self:peekType('string') and not self:peek().force_text then
local char = self:peek()[2][1]:sub(1, 1)
if char == '&' then
ref = self:peek()[2][1]:sub(2)
self:advanceValue()
self:ignoreSpace()
elseif char == '*' then
ref = self:peek()[2][1]:sub(2)
return self.refs[ref]
end
end
local result
local c = {
indent = self:accept('indent') and 1 or 0,
token = self:peek(),
}
push(self.parse_stack, c)
if c.token[1] == 'doc' then
result = self:parseDoc()
elseif c.token[1] == '-' then
result = self:parseList()
elseif c.token[1] == '{' then
result = self:parseInlineHash()
elseif c.token[1] == '[' then
result = self:parseInlineList()
elseif c.token[1] == 'id' then
result = self:parseHash()
elseif c.token[1] == 'string' then
result = self:parseString('\n')
elseif c.token[1] == 'timestamp' then
result = self:parseTimestamp()
elseif c.token[1] == 'number' then
result = tonumber(self:advanceValue())
elseif c.token[1] == 'pipe' then
result = self:parsePipe()
elseif c.token.const == true then
self:advanceValue()
result = c.token.value
else
error(
"ParseError: unexpected token '"
.. c.token[1]
.. "'"
.. context(c.token.input)
)
end
pop(self.parse_stack)
while c.indent > 0 do
c.indent = c.indent - 1
local term = 'term ' .. c.token[1] .. ": '" .. c.token[2][1] .. "'"
self:expectDedent('last ' .. term .. ' is not properly dedented')
end
if ref then
self.refs[ref] = result
end
return result
end
Parser.parseDoc = function(self)
self:accept('doc')
return self:parse()
end
Parser.inline = function(self)
local current = self:peek(0)
if not current then
return {}, 0
end
local inline = {}
local i = 0
while
self:peek(i)
and not self:peekType('indent', i)
and current.row == self:peek(i).row
do
inline[self:peek(i)[1]] = true
i = i - 1
end
return inline, -i
end
Parser.isInline = function(self)
local _, i = self:inline()
return i > 0
end
Parser.parent = function(self, level)
level = level or 1
return self.parse_stack[#self.parse_stack - level]
end
Parser.parentType = function(self, type, level)
return self:parent(level) and self:parent(level).token[1] == type
end
Parser.parseString = function(self)
if self:isInline() then
local result = self:advanceValue()
--[[
- a: this looks
flowing: but is
no: string
--]]
local types = self:inline()
if types['id'] and types['-'] then
if not self:peekType('indent') or not self:peekType('indent', 2) then
return result
end
end
--[[
a: 1
b: this is
a flowing string
example
c: 3
--]]
if self:peekType('indent') then
self:expect('indent', 'text block needs to start with indent')
local addtl = self:accept('indent')
result = result .. '\n' .. self:parseTextBlock('\n')
self:expectDedent('text block ending dedent missing')
if addtl then
self:expectDedent('text block ending dedent missing')
end
end
return result
else
--[[
a: 1
b:
this is also
a flowing string
example
c: 3
--]]
return self:parseTextBlock('\n')
end
end
Parser.parsePipe = function(self)
local pipe = self:expect('pipe')
self:expect('indent', 'text block needs to start with indent')
local result = self:parseTextBlock(pipe.sep)
self:expectDedent('text block ending dedent missing')
return result
end
Parser.parseTextBlock = function(self, sep)
local token = self:advance()
local result = string_trim(token.raw, '\n')
local indents = 0
while self:peek() ~= nil and (indents > 0 or not self:peekType('dedent')) do
local newtoken = self:advance()
while token.row < newtoken.row do
result = result .. sep
token.row = token.row + 1
end
if newtoken[1] == 'indent' then
indents = indents + 1
elseif newtoken[1] == 'dedent' then
indents = indents - 1
else
result = result .. string_trim(newtoken.raw, '\n')
end
end
return result
end
Parser.parseHash = function(self, hash)
hash = hash or {}
local indents = 0
if self:isInline() then
local id = self:advanceValue()
self:expect(':', 'expected semi-colon after id')
self:ignoreSpace()
if self:accept('indent') then
indents = indents + 1
hash[id] = self:parse()
else
hash[id] = self:parse()
if self:accept('indent') then
indents = indents + 1
end
end
self:ignoreSpace()
end
while self:peekType('id') do
local id = self:advanceValue()
self:expect(':', 'expected semi-colon after id')
self:ignoreSpace()
hash[id] = self:parse()
self:ignoreSpace()
end
while indents > 0 do
self:expectDedent('expected dedent')
indents = indents - 1
end
return hash
end
Parser.parseInlineHash = function(self)
local id
local hash = {}
local i = 0
self:accept('{')
while not self:accept('}') do
self:ignoreSpace()
if i > 0 then
self:expect(',', 'expected comma')
end
self:ignoreWhitespace()
if self:peekType('id') then
id = self:advanceValue()
if id then
self:expect(':', 'expected semi-colon after id')
self:ignoreSpace()
hash[id] = self:parse()
self:ignoreWhitespace()
end
end
i = i + 1
end
return hash
end
Parser.parseList = function(self)
local list = {}
while self:accept('-') do
self:ignoreSpace()
list[#list + 1] = self:parse()
self:ignoreSpace()
end
return list
end
Parser.parseInlineList = function(self)
local list = {}
local i = 0
self:accept('[')
while not self:accept(']') do
self:ignoreSpace()
if i > 0 then
self:expect(',', 'expected comma')
end
self:ignoreSpace()
list[#list + 1] = self:parse()
self:ignoreSpace()
i = i + 1
end
return list
end
Parser.parseTimestamp = function(self)
local capture = self:advance()[2]
return os.time({
year = capture[1],
month = capture[2],
day = capture[3],
hour = capture[4] or 0,
min = capture[5] or 0,
sec = capture[6] or 0,
isdst = false,
}) - os.time({ year = 1970, month = 1, day = 1, hour = 8 })
end
exports.eval = function(str)
return Parser:new(exports.tokenize(str)):parse()
end
exports.dump = table_print
return exports