-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdecode.js
445 lines (429 loc) · 12.1 KB
/
decode.js
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
// todo: simplify
import { normalizeDelimiters, defaultDelimiters } from "./delimiters.js";
const advance = (str, state) => {
const c = str[state.index]
const pc = state.pc
if (c === '\r' || (pc !== '\r' && c === '\n')) {
state.line += 1
state.column = 1
}
else {
state.column += 1
}
state.pc = c
state.index += 1
}
const locationstr = (state) => {
return `${state.line}:${state.column}`
}
const location = (state) => {
const {index, line, column} = state
return {index, line, column}
}
export const makeDecoders = (delimiters, ...rest) => {
return _makeDecoders(normalizeDelimiters(delimiters), ...rest)
}
// note: the parser is iterating thru code units rather than code points
// this is effectively correct as long as each delimiter fits within one code unit
// todo: enforce delimiters within one code unit
// assumes delimiters are normalized
export const _makeDecoders = (delimiters) => {
const {opener, closer, escaper, fencer, tagger} = delimiters
// todo: max depth
const parseRoot = (str, receiver) => {
const state = {index: 0, line: 1, column: 1}
parseTree(str, state, receiver)
if (state.index !== str.length) throw SyntaxError(
`Expected end of input but got ${str[state.index]} at ${locationstr(state)}!`
)
return receiver.end()
}
const parseTree = (str, state, receiver) => {
for (;;) {
const text = parseText(str, state)
if (str[state.index] === closer || state.index === str.length) {
return receiver.suffix(text)
}
else {
receiver.prefix(text)
}
parseSubtree(str, state, receiver)
}
}
const parseSubtree = (str, state, next) => {
if (str[state.index] !== opener) throw SyntaxError(
`Expected ${opener} but got ${str[state.index]} at ${locationstr(state)}!`
)
advance(str, state)
parseTree(str, state, next)
if (state.index === str.length) throw SyntaxError(
`Expected ${closer} but got end of input!`
)
if (str[state.index] !== closer) throw SyntaxError(
`Expected ${closer} but got ${str[state.index]} at ${locationstr(state)}!`
)
advance(str, state)
return
}
const parseText = (str, state) => {
const from = location(state)
let c = str[state.index]
let digraphs
if (c === escaper) {
const {digraphs: ds, text} = parseFence(str, state)
if (ds === undefined) return text
digraphs = ds
}
else digraphs = []
let thru = from
for (
;
state.index < str.length;
thru = location(state), advance(str, state)
) {
c = str[state.index]
if (c === opener || c === closer) {
return {
source: str,
from,
thru,
til: location(state),
digraphs,
}
}
else if (c === escaper) {
digraphs.push(parseDigraph(str, state))
}
}
return {
source: str,
from,
thru,
til: location(state),
digraphs,
}
}
const parseDigraph = (str, state) => {
const from = location(state)
advance(str, state)
if (state.index === str.length) throw SyntaxError(
`Expected ${opener} or ${closer} or ${escaper} after ${
escaper
} but got end of input!`
)
const c = str[state.index]
if ([opener, closer, escaper].includes(c)) return {
from,
thru: location(state),
}
throw SyntaxError(
`Expected ${opener} or ${closer} or ${escaper} after ${
escaper
} but got ${c} at ${locationstr(state)}!`
)
}
const parseFence = (str, state) => {
const startindex = state.index
// save first potential digraph 'from' location
const locations = [location(state)]
// skip escaper
advance(str, state)
if (state.index < str.length && str[state.index] === tagger) {
// skip tagger
advance(str, state)
return parseTagged(str, state, locations[0])
}
// save first potential digraph 'to' location
locations.push(location(state))
for (
;
state.index < str.length;
advance(str, state), locations.push(location(state))
) {
const c = str[state.index]
if (c !== escaper) {
if (c === fencer) {
const fencelen = state.index - startindex
if (fencelen % 2 === 0) {
// digraphs + inactive fencer
// skip inactive fencer
advance(str, state)
return {digraphs: locationsToDigraphs(locations)}
}
else {
// skip fencer
advance(str, state)
// fenced text
return parseFenced(str, state, fencelen, locations[0])
}
}
else if (c === opener || c === closer) {
const fencelen = state.index - startindex
if (fencelen % 2 === 1) {
// digraphs + escaper + c
// skip c
advance(str, state)
}
return {digraphs: locationsToDigraphs(locations)}
}
else {
const fencelen = state.index - startindex
if (fencelen % 2 === 0) {
// digraphs + c
advance(str, state)
return {digraphs: locationsToDigraphs(locations)}
}
else {
throw SyntaxError(
`Expected ${opener} or ${closer} or ${escaper} after ${
escaper
} but got ${c} at ${locationstr(state)}!`
)
}
}
}
}
const fencelen = state.index - startindex
if (fencelen % 2 === 0) {
// digraphs
return {digraphs: locationsToDigraphs(locations)}
}
else {
throw SyntaxError(
`Expected ${opener} or ${closer} or ${escaper} after ${
escaper
} but got end of input!`
)
}
}
// note: this could go outside of _makeDelimiters
const locationsToDigraphs = (locations) => {
const digraphs = []
for (let i = 0; i < locations.length - 1; i += 2) {
digraphs.push({from: locations[i], thru: locations[i + 1]})
}
return digraphs
}
const parseFenced = (str, state, fencelen, fencedfrom) => {
const from = location(state)
// more like othersideofthefencestartindex / othersidestartindex / mstartindex
let endindex = -1
let thru
let prev
let til
for (
;
state.index < str.length;
prev = location(state), advance(str, state)
) {
const c = str[state.index]
if (c === fencer) {
endindex = state.index + 1
thru = prev
til = location(state)
}
else if (endindex !== -1 && c !== escaper) {
const mfenlen = state.index - endindex
if (c === opener && fencelen === mfenlen) {
const text = {
source: str,
fencelength: fencelen,
from: fencedfrom,
thru: prev,
til: location(state),
content: {
from,
thru,
til,
},
}
return {text}
}
else if (c === closer && fencelen === mfenlen) {
const text = {
source: str,
fencelength: fencelen,
from: fencedfrom,
thru: prev,
til: location(state),
content: {
from,
thru,
til,
},
}
return {text}
}
endindex = -1
}
}
if (endindex !== -1 && fencelen === str.length - endindex) {
const text = {
source: str,
fencelength: fencelen,
from: fencedfrom,
thru: prev,
til: location(state),
content: {
from,
thru,
til,
},
}
return {text}
}
throw SyntaxError(`Expected fenced text to be closed but got end of input! Text started at ${locationstr(fencedfrom)}.`)
}
const parseTagged = (str, state, taggedfrom) => {
// `$?
// ^
// todo: parseTag
const tag = parseTag(str, state, taggedfrom)
const tagindex = tag.from.index
// `$tag$?
// ^
const from = location(state)
// more like othersideofthefencestartindex / othersidestartindex / mstartindex
let tagmatchindex = -1
let tagmatches = false
let thru
let prev
let til
// $x$$$x$
for (
;
state.index < str.length;
prev = location(state), advance(str, state)
) {
const c = str[state.index]
if (tagmatchindex === -1) {
if (c === tagger) {
tagmatchindex = tagindex
thru = prev
til = location(state)
}
}
else {
// note: tagmatches === false prevents matching a string like $$$$$ (5 taggers)
if (c === str[tagmatchindex] && tagmatches === false) {
tagmatchindex += 1
if (c === tagger) tagmatches = true
}
else {
// && c !== escaper
if (c === opener && tagmatches) {
const text = {
source: str,
tag,
from: taggedfrom,
thru: prev,
til: location(state),
content: {
from,
thru,
til,
},
}
return {text}
}
else if (c === closer && tagmatches) {
const text = {
source: str,
tag,
from: taggedfrom,
thru: prev,
til: location(state),
content: {
from,
thru,
til,
},
}
return {text}
}
// this is to match strings like $x$$$x$
if (c === tagger) {
tagmatchindex = tagindex
thru = prev
til = location(state)
}
else {
tagmatchindex = -1
}
tagmatches = false
}
}
}
if (tagmatchindex !== -1 && tagmatches) {
const text = {
source: str,
tag,
from: taggedfrom,
thru: prev,
til: location(state),
content: {
from,
thru,
til,
},
}
return {text}
}
throw SyntaxError(`Expected tagged text to be closed but got end of input! Text started at ${locationstr(taggedfrom)}.`)
}
const parseTag = (str, state, taggedfrom) => {
// `$?
// ^
const from = location(state)
// note: this is initialized to before `from`, signifying empty tag
let prev = taggedfrom
for (
;
state.index < str.length;
prev = location(state), advance(str, state)
) {
const c = str[state.index]
if (c === tagger) {
// skip $
advance(str, state)
return {
from,
thru: prev,
til: location(state),
}
}
// note: this regexp is based on PostgreSQL syntax for identifiers
// it's a bit more lenient in that it allows digits anywhere
// but also more strict, as it does not allow letters other than a-zA-Z
else if (/[a-zA-Z0-9_]/.test(c) === false) {
throw SyntaxError(`Expected tagged text tag to contain only characters /[a-zA-Z0-9_]/ but got [${c}] at ${locationstr(state)}!`)
}
}
throw SyntaxError(`Expected tagged text tag to be closed but got end of input! Text started at ${locationstr(taggedfrom)}. Tag started at ${locationstr(from)}.`)
}
return parseRoot
}
// todo: naming
export const decodeString = _makeDecoders(defaultDelimiters)
// note: caches the result in text, so subsequent calls will just return that
export const textToString = (text) => {
if (text.stringified) return text.stringified
if (text.digraphs === undefined) {
const {content, source} = text
const stringified = source.slice(content.from.index, content.til.index)
text.stringified = stringified
return stringified
}
const {source, from} = text
const {index} = from
let i = index
let ret = ''
for (const e of text.digraphs) {
const {index} = e.from
ret += source.slice(i, index)
i = index + 1
}
const stringified = ret + source.slice(i, text.til.index)
text.stringified = stringified
return stringified
}