-
Notifications
You must be signed in to change notification settings - Fork 5
/
fragment.go
440 lines (375 loc) · 11.6 KB
/
fragment.go
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
package raml
import (
"fmt"
"path/filepath"
"strings"
orderedmap "github.com/wk8/go-ordered-map/v2"
"gopkg.in/yaml.v3"
"github.com/acronis/go-stacktrace"
)
type FragmentKind int
const (
FragmentUnknown FragmentKind = iota - 1
FragmentLibrary
FragmentDataType
FragmentNamedExample
)
// CutReferenceName cuts a reference name into two parts: before and after the dot.
func CutReferenceName(refName string) (string, string, bool) {
// External ref - <fragment>.<identifier>
// Local ref - <identifier>
return strings.Cut(refName, ".")
}
type LocationGetter interface {
GetLocation() string
}
type ReferenceTypeGetter interface {
GetReferenceType(refName string) (*BaseShape, error)
}
type ReferenceAnnotationTypeGetter interface {
GetReferenceAnnotationType(refName string) (*BaseShape, error)
}
type Fragment interface {
LocationGetter
ReferenceTypeGetter
ReferenceAnnotationTypeGetter
}
// Library is the RAML 1.0 Library
type Library struct {
ID string
Usage string
AnnotationTypes *orderedmap.OrderedMap[string, *BaseShape]
// TODO: Specific to API fragments. Not supported yet.
// ResourceTypes map[string]interface{} `yaml:"resourceTypes"`
Types *orderedmap.OrderedMap[string, *BaseShape]
Uses *orderedmap.OrderedMap[string, *LibraryLink]
CustomDomainProperties *orderedmap.OrderedMap[string, *DomainExtension]
Location string
raml *RAML
}
// GetReferenceType returns a reference type by name, implementing the ReferenceTypeGetter interface
func (l *Library) GetReferenceType(refName string) (*BaseShape, error) {
before, after, found := CutReferenceName(refName)
var ref *BaseShape
if !found {
rr, ok := l.Types.Get(refName)
if !ok {
return nil, fmt.Errorf("reference \"%s\" not found", refName)
}
ref = rr
} else {
lib, ok := l.Uses.Get(before)
if !ok {
return nil, fmt.Errorf("library \"%s\" not found", before)
}
rr, ok := lib.Link.Types.Get(after)
if !ok {
return nil, fmt.Errorf("reference \"%s\" not found", after)
}
ref = rr
}
return ref, nil
}
// GetReferenceAnnotationType returns a reference annotation type by name,
// implementing the ReferenceAnnotationTypeGetter interface
func (l *Library) GetReferenceAnnotationType(refName string) (*BaseShape, error) {
before, after, found := CutReferenceName(refName)
var ref *BaseShape
if !found {
rr, ok := l.AnnotationTypes.Get(refName)
if !ok {
return nil, fmt.Errorf("reference \"%s\" not found", refName)
}
ref = rr
} else {
lib, ok := l.Uses.Get(before)
if !ok {
return nil, fmt.Errorf("library \"%s\" not found", before)
}
rr, ok := lib.Link.AnnotationTypes.Get(after)
if !ok {
return nil, fmt.Errorf("reference \"%s\" not found", after)
}
ref = rr
}
return ref, nil
}
func (l *Library) GetLocation() string {
return l.Location
}
type LibraryLink struct {
ID string
Value string
Link *Library
Location string
stacktrace.Position
}
func (l *Library) unmarshalUses(valueNode *yaml.Node) error {
if valueNode.Tag == TagNull {
return nil
}
if valueNode.Kind != yaml.MappingNode {
return StacktraceNew("uses must be map", l.Location, WithNodePosition(valueNode))
}
l.Uses = orderedmap.New[string, *LibraryLink](len(valueNode.Content) / 2)
// Map nodes come in pairs in order [key, value]
for j := 0; j != len(valueNode.Content); j += 2 {
name := valueNode.Content[j].Value
path := valueNode.Content[j+1]
l.Uses.Set(name, &LibraryLink{
Value: path.Value,
Location: l.Location,
Position: stacktrace.Position{Line: path.Line, Column: path.Column},
})
}
return nil
}
func (l *Library) unmarshalTypes(valueNode *yaml.Node) error {
if valueNode.Tag == TagNull {
return nil
}
if valueNode.Kind != yaml.MappingNode {
return StacktraceNew("types must be map", l.Location, WithNodePosition(valueNode))
}
l.Types = orderedmap.New[string, *BaseShape](len(valueNode.Content) / 2)
// Map nodes come in pairs in order [key, value]
for j := 0; j != len(valueNode.Content); j += 2 {
name := valueNode.Content[j].Value
data := valueNode.Content[j+1]
shape, err := l.raml.makeNewShapeYAML(data, name, l.Location)
if err != nil {
return StacktraceNewWrapped("parse types: make shape", err, l.Location, WithNodePosition(data))
}
l.Types.Set(name, shape)
l.raml.PutTypeIntoFragment(name, l.Location, shape)
}
return nil
}
func (l *Library) unmarshalAnnotationTypes(valueNode *yaml.Node) error {
if valueNode.Tag == TagNull {
return nil
}
if valueNode.Kind != yaml.MappingNode {
return StacktraceNew("annotation types must be map", l.Location, WithNodePosition(valueNode))
}
l.AnnotationTypes = orderedmap.New[string, *BaseShape](len(valueNode.Content) / 2)
// Map nodes come in pairs in order [key, value]
for j := 0; j != len(valueNode.Content); j += 2 {
name := valueNode.Content[j].Value
data := valueNode.Content[j+1]
shape, err := l.raml.makeNewShapeYAML(data, name, l.Location)
if err != nil {
return StacktraceNewWrapped("parse annotation types: make shape", err, l.Location, WithNodePosition(data))
}
l.AnnotationTypes.Set(name, shape)
l.raml.PutAnnotationTypeIntoFragment(name, l.Location, shape)
}
return nil
}
// UnmarshalYAML unmarshals a Library from a yaml.Node, implementing the yaml.Unmarshaler interface
func (l *Library) UnmarshalYAML(value *yaml.Node) error {
if value.Kind != yaml.MappingNode {
return StacktraceNew("must be map", l.Location, WithNodePosition(value))
}
for i := 0; i != len(value.Content); i += 2 {
node := value.Content[i]
valueNode := value.Content[i+1]
switch node.Value {
case "uses":
if err := l.unmarshalUses(valueNode); err != nil {
return fmt.Errorf("unmarshall uses: %w", err)
}
case "types":
if err := l.unmarshalTypes(valueNode); err != nil {
return fmt.Errorf("unmarshall types: %w", err)
}
case "annotationTypes":
if err := l.unmarshalAnnotationTypes(valueNode); err != nil {
return fmt.Errorf("unmarshall annotation types: %w", err)
}
case "usage":
if err := valueNode.Decode(&l.Usage); err != nil {
return StacktraceNewWrapped("parse usage: value node decode", err, l.Location,
WithNodePosition(valueNode))
}
default:
if IsCustomDomainExtensionNode(node.Value) {
name, de, err := l.raml.unmarshalCustomDomainExtension(l.Location, node, valueNode)
if err != nil {
return StacktraceNewWrapped("unmarshal custom domain extension", err, l.Location,
WithNodePosition(valueNode))
}
l.CustomDomainProperties.Set(name, de)
}
}
}
return nil
}
func (r *RAML) MakeLibrary(path string) *Library {
return &Library{
CustomDomainProperties: orderedmap.New[string, *DomainExtension](0),
Uses: orderedmap.New[string, *LibraryLink](0),
Types: orderedmap.New[string, *BaseShape](0),
AnnotationTypes: orderedmap.New[string, *BaseShape](0),
Location: path,
raml: r,
}
}
// DataType is the RAML 1.0 DataType
type DataType struct {
ID string
Usage string
Uses *orderedmap.OrderedMap[string, *LibraryLink]
Shape *BaseShape
Location string
raml *RAML
}
// GetReferenceType returns a reference type by name, implementing the ReferenceTypeGetter interface
func (dt *DataType) GetReferenceType(refName string) (*BaseShape, error) {
before, after, found := CutReferenceName(refName)
var ref *BaseShape
if !found {
return nil, fmt.Errorf("invalid reference %s", refName)
}
lib, ok := dt.Uses.Get(before)
if !ok {
return nil, fmt.Errorf("library \"%s\" not found", before)
}
ref, ok = lib.Link.Types.Get(after)
if !ok {
return nil, fmt.Errorf("reference \"%s\" not found", after)
}
return ref, nil
}
// GetReferenceAnnotationType returns a reference annotation type by name,
// implementing the ReferenceAnnotationTypeGetter interface
func (dt *DataType) GetReferenceAnnotationType(refName string) (*BaseShape, error) {
before, after, found := CutReferenceName(refName)
var ref *BaseShape
if !found {
return nil, fmt.Errorf("invalid reference %s", refName)
}
lib, ok := dt.Uses.Get(before)
if !ok {
return nil, fmt.Errorf("library \"%s\" not found", before)
}
ref, ok = lib.Link.AnnotationTypes.Get(after)
if !ok {
return nil, fmt.Errorf("reference \"%s\" not found", after)
}
return ref, nil
}
func (dt *DataType) GetLocation() string {
return dt.Location
}
func (dt *DataType) UnmarshalYAML(value *yaml.Node) error {
if value.Kind != yaml.MappingNode {
return StacktraceNew("must be map", dt.Location, WithNodePosition(value))
}
shapeValue := &yaml.Node{
Kind: yaml.MappingNode,
}
for i := 0; i != len(value.Content); i += 2 {
node := value.Content[i]
valueNode := value.Content[i+1]
switch node.Value {
case "usage":
dt.Usage = valueNode.Value
case "uses":
if valueNode.Tag == TagNull {
break
}
dt.Uses = orderedmap.New[string, *LibraryLink](len(valueNode.Content) / 2)
// Map nodes come in pairs in order [key, value]
for j := 0; j != len(valueNode.Content); j += 2 {
name := valueNode.Content[j].Value
path := valueNode.Content[j+1]
dt.Uses.Set(name, &LibraryLink{
Value: path.Value,
Location: dt.Location,
Position: stacktrace.Position{Line: path.Line, Column: path.Column},
})
}
default:
shapeValue.Content = append(shapeValue.Content, node, valueNode)
}
}
shape, err := dt.raml.makeNewShapeYAML(shapeValue, filepath.Base(dt.Location), dt.Location)
if err != nil {
return StacktraceNewWrapped("parse types: make shape", err, dt.Location, WithNodePosition(shapeValue))
}
dt.Shape = shape
return nil
}
func (r *RAML) MakeDataType(path string) *DataType {
return &DataType{
Uses: orderedmap.New[string, *LibraryLink](0),
Location: path,
raml: r,
}
}
func (r *RAML) MakeJSONDataType(value []byte, path string) (*DataType, error) {
dt := r.MakeDataType(path)
// Convert to yaml node to reuse the same data node creation interface
node := &yaml.Node{
Kind: yaml.MappingNode,
Content: []*yaml.Node{
{
Kind: yaml.ScalarNode,
Value: "type",
Tag: "!!str",
},
{
Kind: yaml.ScalarNode,
Value: string(value),
Tag: "!!str",
},
},
}
if err := node.Decode(&dt); err != nil {
return nil, StacktraceNewWrapped("decode fragment", err, path)
}
return dt, nil
}
// NamedExample is the RAML 1.0 NamedExample
type NamedExample struct {
ID string
Map *orderedmap.OrderedMap[string, *Example]
Location string
raml *RAML
}
// GetReferenceAnnotationType returns a reference annotation type by name,
// implementing the ReferenceAnnotationTypeGetter interface
func (ne *NamedExample) GetReferenceAnnotationType(_ string) (*BaseShape, error) {
return nil, fmt.Errorf("named example does not have references")
}
// GetReferenceType returns a reference type by name, implementing the ReferenceTypeGetter interface
func (ne *NamedExample) GetReferenceType(_ string) (*BaseShape, error) {
return nil, fmt.Errorf("named example does not have references")
}
func (ne *NamedExample) GetLocation() string {
return ne.Location
}
func (r *RAML) MakeNamedExample(path string) *NamedExample {
return &NamedExample{
Location: path,
raml: r,
}
}
func (ne *NamedExample) UnmarshalYAML(value *yaml.Node) error {
if value.Kind != yaml.MappingNode {
return StacktraceNew("must be map", ne.Location, WithNodePosition(value))
}
examples := orderedmap.New[string, *Example](len(value.Content) / 2)
for i := 0; i != len(value.Content); i += 2 {
node := value.Content[i]
valueNode := value.Content[i+1]
example, err := ne.raml.makeExample(valueNode, node.Value, ne.Location)
if err != nil {
return StacktraceNewWrapped("make example", err, ne.Location, WithNodePosition(valueNode))
}
examples.Set(node.Value, example)
}
ne.Map = examples
return nil
}