-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathjson_support.go
128 lines (109 loc) · 2.49 KB
/
json_support.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
// Copyright 2014 SteelSeries ApS. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// This package implements a basic LISP interpretor for embedding in a go program for scripting.
// This file implements Json<->Lisp conversions.
package golisp
import (
"encoding/json"
"errors"
"fmt"
"math"
)
func JsonToLisp(json interface{}) (result *Data) {
mapValue, ok := json.(map[string]interface{})
if ok {
var alist *Data
for key, val := range mapValue {
value := JsonToLisp(val)
alist = Acons(StringWithValue(key), value, alist)
}
return alist
}
arrayValue, ok := json.([]interface{})
if ok {
var ary *Data
for _, val := range arrayValue {
value := JsonToLisp(val)
ary = Cons(value, ary)
}
return Reverse(ary)
}
numValue, ok := json.(float64)
if ok {
if math.Trunc(numValue) == numValue {
return IntegerWithValue(int64(numValue))
} else {
return FloatWithValue(float32(numValue))
}
}
strValue, ok := json.(string)
if ok {
return StringWithValue(strValue)
}
boolValue, ok := json.(bool)
if ok {
return BooleanWithValue(boolValue)
}
return
}
func JsonStringToLisp(jsonData string) (result *Data) {
b := []byte(jsonData)
var data interface{}
err := json.Unmarshal(b, &data)
if err != nil {
panic(errors.New(fmt.Sprintf("Badly formed json: '%s'", jsonData)))
}
return JsonToLisp(data)
}
func LispToJson(d *Data) (result interface{}) {
if d == nil {
return ""
}
if IntegerP(d) {
return IntegerValue(d)
}
if StringP(d) || SymbolP(d) {
return StringValue(d)
}
if PairP(d) {
ary := make([]interface{}, 0, Length(d))
for c := d; NotNilP(c); c = Cdr(c) {
ary = append(ary, LispToJson(Car(c)))
}
return ary
}
if AlistP(d) {
dict := make(map[string]interface{}, Length(d))
for c := d; NotNilP(c); c = Cdr(c) {
pair := Car(c)
dict[StringValue(Car(pair))] = LispToJson(Cdr(pair))
}
return dict
}
return ""
}
func LispToJsonString(d *Data) (result string) {
temp := LispToJson(d)
j, err := json.Marshal(temp)
if err == nil {
return string(j)
} else {
return ""
}
}
func TransformJson(xform *Data, jsonNode *Data, parentNode *Data) (xformedJson *Data, err error) {
var transformFunction *Data
var newData *Data
args := InternalMakeList(jsonNode, parentNode)
transformFunction, err = Eval(xform, Global)
if err != nil {
return
}
newData, err = Apply(transformFunction, args, Global)
if err != nil {
return
}
xformedJson = newData
return
}