-
Notifications
You must be signed in to change notification settings - Fork 3
/
ipld-schema.pegjs
383 lines (316 loc) · 12.9 KB
/
ipld-schema.pegjs
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
/** IPLD Schema PEG.js grammar **/
// Utility functions
{
function defaultStructRepresentation () {
return { map: {} }
}
function extend (o1, o2) {
// we only use a 2-argument form and this also lets us supply `extend` as an argument
// to Array#reduce and not worry about the additional reducer arguments
return Object.assign(o1, o2)
}
// some values need coercion into proper forms, `default` being one of them
function coerceValue (value) {
if (value === 'true') {
return true
}
if (value === 'false') {
return false
}
// this isn't needed yet, just trying the concept
if (parseInt(value, 10) == value) {
return parseInt(value, 10)
}
return value
}
}
Root = roots:RootConstructs+ {
// merge 'type' and 'advanced' structures into one {types:{}, advanced:{}}
return roots.reduce((o1, o2) => {
if (o2.types) {
if (!o1.types) {
o1.types = {}
}
Object.assign(o1.types, o2.types)
} else if (o2.advanced) {
if (!o1.advanced) {
o1.advanced = {}
}
Object.assign(o1.advanced, o2.advanced)
}
return o1
}, {})
}
RootConstructs
= types:TypeDef { return { types } }
/ advanced:AdvancedDef { return { advanced } }
TypeDef = _ 'type' _ name:TypeName _ definition:Definition _ {
return { [name]: definition }
}
AdvancedDef = _ 'advanced' _ name:TypeName _ {
return { [name]: { advanced: {} } }
}
AdvancedRepresentation = name:TypeName {
return { advanced: name }
}
Definition
= descriptor:MapDescriptor { return descriptor } // "map" assumed if goes straight to a {}
/ descriptor:ListDescriptor { return descriptor } // "list" assumed if goes straight to a []
/ descriptor:LinkDescriptor { return descriptor } // "link" assumed if goes straight to a &
/ descriptor:CopyDescriptor { return descriptor } // "="
/ EnumKind _ descriptor:EnumDescriptor { return descriptor }
/ UnionKind _ descriptor:UnionDescriptor { return descriptor }
/ StructKind _ descriptor:StructDescriptor { return descriptor }
/ BytesKind _ descriptor:BytesDescriptor { return descriptor }
/ kind:SimpleKind { return { [kind]: {} } }
MapKind = "map"
ListKind = "list"
EnumKind = "enum"
UnionKind = "union"
StructKind = "struct"
BytesKind = "bytes"
SimpleKind = kind:BaseType { return kind }
ListDescriptor = "[" _ fields:TypeDescriptor _ "]" _ representation:ListRepresentation? {
return { list: Object.assign({}, fields, representation ? { representation } : null) }
}
// TODO: generalise this TypeName / MapDescriptor / ListDescriptor / LinkDescriptor combo, it's used elsewhere
TypeDescriptor = options:TypeOption* _ valueType:(TypeName / MapDescriptor / ListDescriptor / LinkDescriptor) {
return options.reduce(extend, { valueType })
}
LinkDescriptor = "&" expectedType:TypeName {
return { link: { expectedType } }
}
CopyDescriptor = "=" _ fromType:TypeName {
return { copy: { fromType } }
}
EnumDescriptor = "{" members:EnumMember+ "}" _ representation:EnumRepresentation? _ {
if (!representation || !(representation.string || representation.int)) {
representation = { string: {} }
}
const repr = members.filter((m) => Object.values(m)[0]).reduce(extend, {})
members = Object.keys(members.reduce(extend, {}))
if (representation.string) {
representation.string = repr
} else if (representation.int) {
representation.int = repr
Object.entries(repr).forEach(([k, v]) => {
const i = parseInt(v, 10)
if (i != v) {
throw new Error('int representations only support integer representation values')
}
repr[k] = i
})
}
return { enum: { members, representation } }
}
EnumMember = _ "|" _ name:EnumValue _ representationOptions:EnumFieldRepresentationOptions? _ {
return { [name]: representationOptions }
}
EnumFieldRepresentationOptions = "(" _ value:QuotedString _ ")" { return value }
UnionDescriptor = "{" values:UnionValue+ "}" _ representation:UnionRepresentation {
let fields = values.reduce(extend, {})
if (representation.keyed) {
representation.keyed = fields
} else if (representation.kinded) {
representation.kinded = fields
} else if (representation.stringprefix) {
representation.stringprefix = { prefixes: fields }
} else if (representation.bytesprefix) {
representation.bytesprefix = { prefixes: fields }
} else if (representation.inline) {
representation.inline.discriminantTable = fields
} else if (representation.envelope) {
representation.envelope.discriminantTable = fields
} else {
throw new Error('Unsupported union type') // we shouldn't get here if we're coded right
}
return { union: { members: Object.values(fields), representation } }
}
// TODO: tighten these up, kinded doesn't get quoted kinds, keyed and envelope does, this allows a kinded
// union to pass through with quoted strings, it's currently just a messy duplication
UnionValue = _ "|" _ type:(TypeName / LinkDescriptor) _ name:(QuotedString / BaseType) _ {
return { [name]: type }
}
MapDescriptor = "{" _ keyType:TypeName _ ":" _ valueType:TypeDescriptor _ "}" _ representation:MapRepresentation? {
let representationType = (representation && representation.type)
if (representationType) {
representation = { [representationType]: representation || {} }
delete representation[representationType].type
}
return { map: Object.assign({ keyType }, valueType, representation ? { representation } : null) }
}
StructDescriptor = "{" _ values:StructValue* _ "}" _ representation:StructRepresentation? {
let fields = values.reduce(extend, {})
// field representation options can come in from parens following field definitions, we need
// to lift them out into the 'representation' object
const representationFields = Object.entries(fields).reduce((p, fieldEntry) => {
if (fieldEntry[1].representationOptions) {
p[fieldEntry[0]] = fieldEntry[1].representationOptions
delete fieldEntry[1].representationOptions
}
return p
}, {})
let representationType = (representation && representation.type)
if (representationType) {
// restructure from { type: 'foo', bar: 'baz' } to { foo: { bar: 'baz' } }
representation = { [representationType]: representation || {} }
delete representation[representationType].type
/* auto-fill fieldOrder? if (representationType === 'tuple' && !representation.tuple.fieldOrder) {
representation.tuple.fieldOrder = Object.keys(fields)
} */
}
// handle inline field representation data
if (Object.keys(representationFields).length) {
if (!representation) {
representation = defaultStructRepresentation()
}
if (!representation.map) {
throw new Error('field modifiers only valid for struct map representation')
}
representation.map.fields = representationFields
}
return { struct: extend({ fields }, { representation: representation || defaultStructRepresentation() }) }
}
// TODO: break these by newline || "}" (non-greedy match)
StructValue = _ key:StringName _ options:StructFieldOption* _ type:StructType _ representationOptions:StructFieldRepresentationOptions? _ {
return { [key]: options.reduce(extend, extend({ type }, representationOptions ? { representationOptions } : null)) }
}
StructFieldOption
= "optional" { return { optional: true } }
/ "nullable" { return { nullable: true } }
TypeOption
= "optional" { return { optional: true } }
/ "nullable" { return { valueNullable: true } }
StructType
= type:StringName { return type }
/ MapDescriptor
/ ListDescriptor
/ LinkDescriptor
StructFieldRepresentationOptions = "(" _ options:StructFieldRepresentationOption* _ ")" {
return options.reduce(extend, {})
}
StructFieldRepresentationOption
= "implicit" _ implicit:ImplicitOption { return { implicit } }
/ "rename" _ rename:QuotedString _ { return { rename } }
ImplicitOption
= implicit:QuotedString _ { return implicit }
/ implicit:Integer _ { return parseInt(implicit, 10) }
/ "true" { return true }
/ "false" { return false }
// TODO: floats and bytes
UnionRepresentation = "representation" _ representation:UnionRepresentationType _ {
return representation
}
MapRepresentation = "representation" _ representation:MapRepresentationType _ {
return representation
}
ListRepresentation = "representation" _ representation:ListRepresentationType _ {
return representation
}
StructRepresentation = "representation" _ representation:StructRepresentationType _ {
return representation
}
EnumRepresentation = "representation" _ representation:EnumRepresentationType _ {
return representation
}
UnionRepresentationType
= "keyed" { return { keyed: {} } }
/ "kinded" { return { kinded: {} } }
/ "stringprefix" { return { stringprefix: {} } } // TODO: check kind reprs for union types are all strings
/ "bytesprefix" { return { bytesprefix: {} } } // TODO: check kind reprs for union types are all bytes
/ "inline" _ descriptor:UnionInlineKeyDefinition { return descriptor }
/ "envelope" _ descriptor:UnionEnvelopeKeyDefinition { return descriptor }
UnionInlineKeyDefinition = "{" _ ("discriminantKey" / "discriminantKey") _ discriminantKey:QuotedString _ "}" {
return { inline: { discriminantKey } }
}
// TODO: break these by newline || "}" (non-greedy match)
UnionEnvelopeKeyDefinition = "{" _ ("discriminantKey" / "discriminantKey") _ discriminantKey:QuotedString _ "contentKey" _ contentKey:QuotedString _ "}" {
return { envelope: { discriminantKey, contentKey } }
}
MapRepresentationType
= "map" { return { type: 'map' } }
/ "listpairs" { return { type: 'listpairs' } }
/ "stringpairs" _ representation:MapStringpairsRepresentation { return representation }
/ "advanced" _ representation:AdvancedRepresentation { return representation }
// TODO: break these by newline || "}" (non-greedy match)
MapStringpairsRepresentation = "{" _ options:MapStringpairsRepresentationOptions* _ "}" {
let representation = extend({ type: 'stringpairs' }, options.reduce(extend, {}))
if (!representation.innerDelim || !representation.entryDelim) {
throw new Error('"stringpairs" representation requires both "innerDelim" and "entryDelim" options')
}
return representation
}
MapStringpairsRepresentationOptions
= _ "innerDelim" _ innerDelim:QuotedString { return { innerDelim } }
/ _ "entryDelim" _ entryDelim:QuotedString { return { entryDelim } }
ListRepresentationType = "advanced" _ representation:AdvancedRepresentation { return representation }
StructRepresentationType
= "map" { return { type: 'map' } }
/ "tuple" _ fieldOrder:StructTupleRepresentationFields? { return extend({ type: 'tuple' }, fieldOrder ? { fieldOrder } : null) }
/ "stringjoin" _ fields:StructStringjoinRepresentationFields { return extend({ type: 'stringjoin' }, fields ) }
/ "stringpairs" _ representation:MapStringpairsRepresentation { return representation }
/ "listpairs" { return { type: 'listpairs' } }
// TODO: break these by newline || "}" (non-greedy match)
StructMapRepresentationFields = "{" _ "}"
StructMapRepresentationField = "field" _ field:StringName _ isImplicit:"implicit" _ implicitValue:QuotedString _ {
return { [field]: extend({}, isImplicit ? { implicit: coerceValue(implicitValue) } : null) }
}
StructTupleRepresentationFields = "{" _ fieldOrder:StructTupleRepresentationFieldOrder? _ "}" {
return fieldOrder
}
StructTupleRepresentationFieldOrder = "fieldOrder" _ fieldOrder:QuotedStringArray {
return fieldOrder
}
// TODO: break these by newline || "}" (non-greedy match)
StructStringjoinRepresentationFields = "{" fields:StructStringjoinRepresentationField+ "}" {
fields = fields.reduce(extend, {})
if (!fields.join) {
throw new Error('stringjoin representation needs a "join" specifier')
}
return fields
}
StructStringjoinRepresentationField
= StructStringjoinRepresentationField_Join
/ StructStringjoinRepresentationField_FieldOrder
StructStringjoinRepresentationField_Join = _ "join" _ join:QuotedString _ {
return { join }
}
StructStringjoinRepresentationField_FieldOrder = _ "fieldOrder" _ fieldOrder:QuotedStringArray _ {
return { fieldOrder }
}
EnumRepresentationType
= "string" { return { string: {} } }
/ "int" { return { int: {} } }
BytesDescriptor = "representation" _ "advanced" _ representation:AdvancedRepresentation { return { bytes: { representation } } }
QuotedStringArray = "[" _ firstElement:QuotedString? subsequentElements:(_ "," _ s:QuotedString _ { return s })* _ "]" {
if (!firstElement) {
return []
}
if (!subsequentElements) {
return [ firstElement ]
}
return [ firstElement ].concat(subsequentElements)
}
TypeName = StringName
EnumValue = StringName
QuotedString = "\"" chars:[^"]+ "\"" { return chars.join('') }
StringName = first:[a-zA-Z] remainder:[a-zA-Z0-9_]* { return first + remainder.join('') }
Integer = chars:[0-9]+ { return parseInt(chars.join(''), 10) }
BaseType
= "bool"
/ "string"
/ "bytes"
/ "int"
/ "float"
/ "map"
/ "list"
/ "link"
/ "null"
/ "any"
__
= whitespace+
/ comment+
_ = __*
whitespace = [ \t\n\r]
comment = "#" [^\r\n]*[\r\n]? { return }
newline = "\r"? "\n"