-
Notifications
You must be signed in to change notification settings - Fork 2
/
parse.go
598 lines (482 loc) · 10.9 KB
/
parse.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
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
package mobiledoc
import "fmt"
// List is a general purpose list.
type List = []interface{}
// Map is a general purpose map.
type Map = map[string]interface{}
// SectionType defines a section type.
type SectionType int
// The available section identifiers.
const (
MarkupSection SectionType = 1
ImageSection SectionType = 2
ListSection SectionType = 3
CardSection SectionType = 10
)
// MarkerType defines a marker type.
type MarkerType int
// The available marker identifiers.
const (
TextMarker MarkerType = 0
AtomMarker MarkerType = 1
)
// Document is a mobiledoc.
type Document struct {
Version string
Markups []Markup
Atoms []Atom
Cards []Card
Sections []Section
}
// Markup is a single markup.
type Markup struct {
Tag string
Attributes Map
}
// Atom is a single atom.
type Atom struct {
Name string
Text string
Payload interface{}
}
// Card is a single card.
type Card struct {
Name string
Payload interface{}
}
// Section is a single section.
type Section struct {
Type SectionType
Tag string
Markers []Marker
Source string
Items [][]Marker
Card *Card
}
// Marker is a single marker.
type Marker struct {
Type MarkerType
OpenMarkups []*Markup
ClosedMarkups int
Text string
Atom *Atom
}
// Parse will parse the specified raw mobiledoc.
func Parse(doc Map) (Document, error) {
// prepare document
d := Document{}
// get version
version, ok := doc["version"].(string)
if !ok {
return d, fmt.Errorf("invalid version")
}
// set version
d.Version = version
// check markups
if _markups, ok := doc["markups"]; ok {
// coerce value
markups, ok := _markups.(List)
if !ok {
return d, fmt.Errorf("invalid markups definition")
}
// parse markups
for _, _markup := range markups {
// coerce value
markup, ok := _markup.(List)
if !ok {
return d, fmt.Errorf("invalid markups definition")
}
// parse markup
m, err := parseMarkup(markup)
if err != nil {
return d, err
}
// add markup
d.Markups = append(d.Markups, m)
}
}
// check atoms
if value, ok := doc["atoms"]; ok {
// coerce value
atoms, ok := value.(List)
if !ok {
return d, fmt.Errorf("invalid atoms definition")
}
// parse atoms
for _, _atom := range atoms {
// coerce value
atom, ok := _atom.(List)
if !ok {
return d, fmt.Errorf("invalid atoms definition")
}
// parse atom
a, err := parseAtom(atom)
if err != nil {
return d, err
}
// add atom
d.Atoms = append(d.Atoms, a)
}
}
// check cards
if value, ok := doc["cards"]; ok {
// coerce value
cards, ok := value.(List)
if !ok {
return d, fmt.Errorf("invalid cards definition")
}
// parse cards
for _, _card := range cards {
// coerce value
card, ok := _card.(List)
if !ok {
return d, fmt.Errorf("invalid cards definition")
}
// parse card
c, err := parseCard(card)
if err != nil {
return d, err
}
// add card
d.Cards = append(d.Cards, c)
}
}
// check sections
if value, ok := doc["sections"]; ok {
// coerce value
sections, ok := value.(List)
if !ok {
return d, fmt.Errorf("invalid sections definition")
}
// parse sections
for _, _section := range sections {
// coerce value
section, ok := _section.(List)
if !ok {
return d, fmt.Errorf("invalid sections definition")
}
// parse section
s, err := parseSection(section, d.Markups, d.Atoms, d.Cards)
if err != nil {
return d, err
}
// add section
d.Sections = append(d.Sections, s)
}
}
return d, nil
}
func parseMarkup(markup List) (Markup, error) {
// prepare markup
m := Markup{}
// validate length
if len(markup) == 0 || len(markup) > 2 {
return m, fmt.Errorf("invalid markup definition")
}
// check tag
tag, ok := markup[0].(string)
if !ok || len(tag) == 0 {
return m, fmt.Errorf("invalid markup tag")
}
// set tag
m.Tag = tag
// return if attributes are missing
if len(markup) == 1 {
return m, nil
}
// get attributes
attributes, ok := markup[1].(List)
if !ok {
return m, fmt.Errorf("invalid markup attributes")
}
// check if attributes are even
if len(attributes)%2 != 0 {
return m, fmt.Errorf("invalid markup attributes")
}
// initialize attributes
m.Attributes = Map{}
// check attributes
for i := 0; i < len(attributes); i += 2 {
// get name
name, ok := attributes[i].(string)
if !ok {
return m, fmt.Errorf("invalid markup attributes key")
}
// set attribute
m.Attributes[name] = attributes[i+1]
}
return m, nil
}
func parseAtom(atom List) (Atom, error) {
// prepare atom
a := Atom{}
// validate length
if len(atom) != 3 {
return a, fmt.Errorf("invalid atom definition")
}
// check name
name, ok := atom[0].(string)
if !ok {
return a, fmt.Errorf("invalid atom name")
}
// set name
a.Name = name
// get text
text, ok := atom[1].(string)
if !ok {
return a, fmt.Errorf("invalid atom text")
}
// set text
a.Text = text
// set payload
a.Payload = atom[2]
return a, nil
}
func parseCard(card List) (Card, error) {
// prepare card
c := Card{}
// validate length
if len(card) != 2 {
return c, fmt.Errorf("invalid card definition")
}
// check name
name, ok := card[0].(string)
if !ok {
return c, fmt.Errorf("invalid card name")
}
// set name
c.Name = name
// set payload
c.Payload = card[1]
return c, nil
}
func parseSection(section List, markups []Markup, atoms []Atom, cards []Card) (Section, error) {
// prepare section
s := Section{}
// validate length
if len(section) == 0 {
return s, fmt.Errorf("invalid section definition")
}
// get section type
_typ, ok := toInt(section[0])
if !ok {
return s, fmt.Errorf("invalid section type")
}
// run validators based on type
switch SectionType(_typ) {
case MarkupSection:
return parseMarkupSection(section, markups, atoms)
case ImageSection:
return parseImageSection(section)
case ListSection:
return parseListSection(section, markups, atoms)
case CardSection:
return parseCardSection(section, cards)
default:
return s, fmt.Errorf("invalid section type")
}
}
func parseMarkupSection(section List, markups []Markup, atoms []Atom) (Section, error) {
// prepare section
s := Section{Type: MarkupSection}
// validate length
if len(section) != 3 {
return s, fmt.Errorf("invalid markup section definition")
}
// get tag
tag, ok := section[1].(string)
if !ok {
return s, fmt.Errorf("invalid markup section tag")
}
// set tag
s.Tag = tag
// get items
items, ok := section[2].(List)
if !ok {
return s, fmt.Errorf("invalid markup section items")
}
// prepare open markup counter
openMarkups := 0
// prepare vars
var err error
var m Marker
// validate markers
for _, _marker := range items {
// coerce value
marker, ok := _marker.(List)
if !ok {
return s, fmt.Errorf("invalid markup section marker definition")
}
// validate marker
m, openMarkups, err = parseMarker(marker, markups, atoms, openMarkups)
if err != nil {
return s, err
}
// add marker
s.Markers = append(s.Markers, m)
}
return s, nil
}
func parseImageSection(image List) (Section, error) {
// prepare section
s := Section{Type: ImageSection}
// validate length
if len(image) != 2 {
return s, fmt.Errorf("invalid image section definition")
}
// get source
source, ok := image[1].(string)
if !ok {
return s, fmt.Errorf("invalid image section source")
}
// set source
s.Source = source
return s, nil
}
func parseListSection(list List, markups []Markup, atoms []Atom) (Section, error) {
// prepare section
s := Section{Type: ListSection}
// validate length
if len(list) != 3 {
return s, fmt.Errorf("invalid list section definition")
}
// get tag
tag, ok := list[1].(string)
if !ok {
return s, fmt.Errorf("invalid list section tag")
}
// set tag
s.Tag = tag
// get items
items, ok := list[2].(List)
if !ok {
return s, fmt.Errorf("invalid list section items")
}
// validate items
for _, _item := range items {
// coerce value
item, ok := _item.(List)
if !ok {
return s, fmt.Errorf("invalid list section item")
}
// prepare open markup counter
openMarkups := 0
// prepare list
var list []Marker
// prepare vars
var err error
var m Marker
// validate markers
for _, _marker := range item {
// coerce value
marker, ok := _marker.(List)
if !ok {
return s, fmt.Errorf("invalid list section item marker")
}
// validate marker
m, openMarkups, err = parseMarker(marker, markups, atoms, openMarkups)
if err != nil {
return s, err
}
// add marker
list = append(list, m)
}
// add list
s.Items = append(s.Items, list)
}
return s, nil
}
func parseCardSection(card List, cards []Card) (Section, error) {
// prepare card
s := Section{Type: CardSection}
// validate length
if len(card) != 2 {
return s, fmt.Errorf("invalid card section definition")
}
// get index
index, ok := toInt(card[1])
if !ok {
return s, fmt.Errorf("invalid card section index")
}
// check index
if index >= len(cards) {
return s, fmt.Errorf("invalid card section index")
}
// set card
s.Card = &cards[index]
return s, nil
}
func parseMarker(marker List, markups []Markup, atoms []Atom, openMarkups int) (Marker, int, error) {
// prepare marker
m := Marker{}
// validate length
if len(marker) != 4 {
return m, 0, fmt.Errorf("invalid marker definition")
}
// get marker type
_typ, ok := toInt(marker[0])
if !ok {
return m, 0, fmt.Errorf("invalid marker type")
}
// check marker type
typ := MarkerType(_typ)
if typ != TextMarker && typ != AtomMarker {
return m, 0, fmt.Errorf("invalid marker type")
}
// set type
m.Type = typ
// get opened markups
openedMarkups, ok := marker[1].(List)
if !ok {
return m, 0, fmt.Errorf("invalid marker opened markups")
}
// validate opened markups
for _, markup := range openedMarkups {
// coerce value
index, ok := toInt(markup)
if !ok {
return m, 0, fmt.Errorf("invalid marker markup index")
}
// check index
if index >= len(markups) {
return m, 0, fmt.Errorf("invalid marker markup index")
}
// add markup
m.OpenMarkups = append(m.OpenMarkups, &markups[index])
// increment counter
openMarkups++
}
// get closed markups
closedMarkups, ok := toInt(marker[2])
if !ok {
return m, 0, fmt.Errorf("invalid marker closed markup")
}
// decrement counter
openMarkups -= closedMarkups
if openMarkups < 0 {
return m, 0, fmt.Errorf("invalid marker open markups count")
}
// set closed markups
m.ClosedMarkups = closedMarkups
// validate text marker
if typ == TextMarker {
// get text
text, ok := marker[3].(string)
if !ok {
return m, 0, fmt.Errorf("invalid marker text")
}
// set text
m.Text = text
}
// validate atom marker
if typ == AtomMarker {
// get index
index, ok := toInt(marker[3])
if !ok || index >= len(atoms) {
return m, 0, fmt.Errorf("invalid marker atom index")
}
// set atom
m.Atom = &atoms[index]
}
return m, openMarkups, nil
}