-
Notifications
You must be signed in to change notification settings - Fork 0
/
json.go
80 lines (69 loc) · 1.55 KB
/
json.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
//
// Copyright (c) 2020-2021 Markku Rossi
//
// All rights reserved.
//
package tabulate
import (
"encoding/json"
"errors"
)
type jsonMarshaler interface {
marshalJSON() (interface{}, error)
}
// MarshalJSON implements the JSON Marshaler interface.
func (t *Tabulate) MarshalJSON() ([]byte, error) {
content, err := t.marshalJSON()
if err != nil {
return nil, err
}
return json.Marshal(content)
}
func (t *Tabulate) marshalJSON() (interface{}, error) {
content := make(map[string]interface{})
for _, row := range t.Rows {
if len(row.Columns) < 2 {
return nil, errors.New("JSON tabulation must have at least two columns")
}
var columns []interface{}
for i := 1; i < len(row.Columns); i++ {
col := row.Columns[i]
marshaler, ok := col.Data.(jsonMarshaler)
if ok {
v, err := marshaler.marshalJSON()
if err != nil {
return nil, err
}
columns = append(columns, v)
} else {
columns = append(columns, col.Data.String())
}
}
key := row.Columns[0].Data.String()
if len(columns) > 1 {
content[key] = columns
} else {
content[key] = columns[0]
}
}
return content, nil
}
func (v *Value) marshalJSON() (interface{}, error) {
return v.value, nil
}
func (arr *Slice) marshalJSON() (interface{}, error) {
var content []interface{}
for _, data := range arr.content {
marshaler, ok := data.(jsonMarshaler)
if ok {
v, err := marshaler.marshalJSON()
if err != nil {
return nil, err
}
content = append(content, v)
} else {
content = append(content, data.String())
}
}
return content, nil
}