-
Notifications
You must be signed in to change notification settings - Fork 1
/
jslens.js
400 lines (347 loc) · 9.85 KB
/
jslens.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
// Lenses can have different types:
// - string: A string lens takes a string/regular expression as argument
// - combinator: A combinator lens takes another lens as input
//
// I made this differentiation to make the processing easier. If it is a
// combinator lens, the input gets just passed on to the sub lenses. If it
// is a string lens, it gets processed.
const NO_CI_MATCH = 0x1
const NO_AO_MATCH = 0x2
export class CopyLens {
#match
constructor (match) {
this.#match = match
}
get (concreteInput) {
const re = new RegExp('^' + this.#match.toString().slice(1, -1))
const split = re.exec(concreteInput)
// The lens didn't match
if (split === null) {
return { noMatch: NO_CI_MATCH }
}
return { result: split[0], ci: concreteInput.substr(split[0].length) }
}
put (abstractOutput, concreteInput) {
const re = new RegExp('^' + this.#match.toString().slice(1, -1))
// return processSplit(abstractOutput, re, concreteInput, re)
const res = processSplit(abstractOutput, re, concreteInput, re)
if (res.splitAo !== undefined) {
res.result = res.splitAo
}
return res
}
create (abstractOutput) {
const re = new RegExp('^' + this.#match.toString().slice(1, -1))
const split = re.exec(abstractOutput)
// The lens didn't match
if (split === null) {
return { noMatch: NO_AO_MATCH }
}
return {
result: split[0],
ao: abstractOutput.substr(split[0].length)
}
}
}
const processSplit = (abstractOutput, reAo, concreteInput, reCi) => {
const splitAo = reAo.exec(abstractOutput)
const splitCi = reCi.exec(concreteInput)
const res = {
noMatch: 0
}
if (splitAo === null || abstractOutput === undefined) {
res.noMatch |= NO_AO_MATCH
} else {
res.ao = abstractOutput.substr(splitAo[0].length)
// res.result = splitAo[0]
res.splitAo = splitAo[0]
}
if (splitCi === null || concreteInput === undefined) {
res.noMatch |= NO_CI_MATCH
} else {
res.ci = concreteInput.substr(splitCi[0].length)
res.splitCi = splitCi[0]
}
if (res.noMatch === 0) {
delete res.noMatch
}
return res
}
// We implement the default lens instead of the const lens.
// The `createFun` is a function that will be called in the create, it has
// one argument which is the abstractOutput. If a string instead of a function
// is supplied, it is a shortcut for `function() {return thestring}`
export class DefaultLens {
#match
#out
#createFun
constructor (match, out, createFun) {
this.#match = match
this.#out = out
if (typeof createFun === 'string') {
this.#createFun = () => { return createFun }
} else {
this.#createFun = createFun
}
}
get (concreteInput) {
const re = new RegExp('^' + this.#match.toString().slice(1, -1))
const split = re.exec(concreteInput)
// The lens didn't match
if (split === null || concreteInput === undefined) {
return { noMatch: NO_CI_MATCH }
}
return {
result: this.#out,
ci: concreteInput.substr(split[0].length)
}
}
put (abstractOutput, concreteInput) {
// `this.#out` is always just a string
let out = this.#out
if (out[0] === '(' || out[0] === ')') {
out = '\\' + out
}
const reAo = new RegExp('^' + out)
const reCi = new RegExp('^' + this.#match.toString().slice(1, -1))
const res = processSplit(abstractOutput, reAo, concreteInput, reCi)
if (res.splitCi !== undefined) {
res.result = res.splitCi
}
return res
}
create (abstractOutput) {
let out = this.#out
if (out[0] === '(' || out[0] === ')') {
out = '\\' + out
}
const re = new RegExp('^' + out)
const split = re.exec(abstractOutput)
// The lens didn't match
if (split === null) {
return { noMatch: NO_AO_MATCH }
}
if (this.#createFun === undefined) {
throw new Error('You need to define a `createFun`')
}
return {
result: this.#createFun(abstractOutput),
ao: abstractOutput.substr(split[0].length)
}
}
}
// DelLens takes as second parameter either a function or a string.
// The string is a shortcut for `function() {return thestring}`
export class DelLens extends DefaultLens {
constructor (match, createFun) {
super(match, '', createFun)
}
}
export class InsLens extends DefaultLens {
constructor (out) {
super(/''/, out, () => { return '' })
}
}
// Combinators
export class ConcatLens {
#lenses
constructor (lenses) {
this.#lenses = lenses
}
get (concreteInput) {
return this.#lenses.reduce((acc, lens, _index, _list) => {
// XXX vmx 2012-07-23: Is there a better way to "break" the reduce
// somehow?
if (acc === false) {
return false
}
const res = lens.get(acc.ci)
if ('noMatch' in res) {
return res
}
return {
result: acc.result + res.result,
ci: res.ci
}
}, { result: '', ci: concreteInput })
}
put (abstractOutput, concreteInput) {
return this.#lenses.reduce((acc, lens, _index, _list) => {
// XXX vmx 2012-07-23: Is there a better way to "break" the reduce
// somehow?
if (acc === false) {
return false
}
const res = lens.put(acc.ao, acc.ci)
if ('noMatch' in res) {
return res
}
return {
result: acc.result + res.result,
ao: res.ao,
ci: res.ci
}
}, { result: '', ao: abstractOutput, ci: concreteInput })
}
create (abstractOutput) {
return this.#lenses.reduce((acc, lens, _index, _list) => {
// XXX vmx 2012-07-23: Is there a better way to "break" the reduce
// somehow?
if (acc === false) {
return false
}
const res = lens.create(acc.ao)
if ('noMatch' in res) {
return res
}
return {
result: acc.result + res.result,
ao: res.ao
}
}, { result: '', ao: abstractOutput })
}
}
export class KleeneLens {
#lens
constructor (lens) {
this.#lens = lens
}
get (concreteInput) {
let result = ''
while (true) {
const res = this.#lens.get(concreteInput)
if ('noMatch' in res) {
break
}
result += res.result
concreteInput = res.ci
}
return {
result,
ci: concreteInput
}
}
put (abstractOutput, concreteInput) {
let result = ''
while (true) {
let res = this.#lens.put(abstractOutput, concreteInput)
if ('noMatch' in res) {
if ((res.noMatch & NO_AO_MATCH) && (res.noMatch & NO_CI_MATCH)) {
// neither ao nor ci match, hence leave the loop
break
} else {
// There's still some concrete input, but no corresponding
// abstract output
if (res.noMatch & NO_AO_MATCH) {
delete res.result
}
// There's still some abstract output, but not corresponding
// concrete input
if (res.noMatch & NO_CI_MATCH) {
res = this.#lens.create(abstractOutput)
}
}
}
if (res.result !== undefined) {
result += res.result
}
if (res.ao !== undefined) {
abstractOutput = res.ao
}
if (res.ci !== undefined) {
concreteInput = res.ci
}
}
return {
result,
ao: abstractOutput,
ci: concreteInput
}
}
create (abstractOutput) {
let result = ''
while (true) {
const res = this.#lens.create(abstractOutput)
if ('noMatch' in res) {
break
}
result += res.result
abstractOutput = res.ao
}
return {
result,
ao: abstractOutput
}
}
}
export class UnionLens {
#lenses
constructor (lenses) {
this.#lenses = lenses
}
get (concreteInput) {
const res = {
noMatch: NO_CI_MATCH,
ci: concreteInput
}
for (const i in this.#lenses) {
const lensRes = this.#lenses[i].get(concreteInput)
// Use first matching lens
if (!('noMatch' in lensRes)) {
return lensRes
}
}
return res
}
// The put is implemented differently from the original dissertation. The
// checks whether the source (concrete input) matched is done right after the
// view (abstract output) matched (as opposed to do it only when several
// views matched).
put (abstractOutput, concreteInput) {
const res = {
// Return no match at all even if one might have matched (but of
// course it is removed if both matched)
noMatch: NO_CI_MATCH | NO_AO_MATCH,
ao: abstractOutput,
ci: concreteInput
}
for (const i in this.#lenses) {
let lensRes = this.#lenses[i].put(abstractOutput, concreteInput)
// The lens matched the abstract output and the concrete input
if (!('noMatch' in lensRes)) {
return lensRes
} else {
// XXX vmx 20120-09-15: Not sure if we should return immediately
// here, or if we should collect the result and wait for a
// possible lens that matches both, the abstract output and
// the concrete input
// The lens matched only the abstract output, hence use the
// create of that lens
// NOTE vmx 2012-09-15: Not sure if this is how it is described
// in the original paper
if (!(lensRes.noMatch & NO_AO_MATCH) &&
(lensRes.noMatch & NO_CI_MATCH)) {
lensRes = this.#lenses[i].create(abstractOutput)
// The `create` doesn't return a concrete input, hence add one
lensRes.ci = ''
return lensRes
}
}
}
return res
}
create (abstractOutput) {
const res = {
noMatch: NO_AO_MATCH,
ao: abstractOutput
}
for (const i in this.#lenses) {
const lensRes = this.#lenses[i].create(abstractOutput)
// The lens matched the abstract output and the concrete input
if (!('noMatch' in lensRes)) {
return lensRes
}
}
return res
}
}