-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathconvert.go
228 lines (209 loc) · 4.08 KB
/
convert.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
// Copyright (c) Roman Atachiants and contributors. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for details.
package lua
import (
"encoding/json"
"reflect"
lua "github.com/yuin/gopher-lua"
luar "layeh.com/gopher-luar"
)
// ValueOf converts the type to our value
func ValueOf(v any) Value {
if v == nil || reflect.TypeOf(v).Size() == 0 {
return Nil{}
}
switch v := v.(type) {
case Number:
return v
case String:
return v
case Bool:
return v
case Numbers:
return v
case Strings:
return v
case Bools:
return v
case Table:
return v
case Array:
return v
case int:
return Number(v)
case int8:
return Number(v)
case int16:
return Number(v)
case int32:
return Number(v)
case int64:
return Number(v)
case uint:
return Number(v)
case uint8:
return Number(v)
case uint16:
return Number(v)
case uint32:
return Number(v)
case uint64:
return Number(v)
case float32:
return Number(v)
case float64:
return Number(v)
case bool:
return Bool(v)
case string:
return String(v)
case []int:
return numbersOf(v)
case []int8:
return numbersOf(v)
case []int16:
return numbersOf(v)
case []int32:
return numbersOf(v)
case []int64:
return numbersOf(v)
case []uint:
return numbersOf(v)
case []uint8:
return numbersOf(v)
case []uint16:
return numbersOf(v)
case []uint32:
return numbersOf(v)
case []uint64:
return numbersOf(v)
case []float32:
return numbersOf(v)
case []float64:
return Numbers(v)
case []bool:
return Bools(v)
case []string:
return Strings(v)
case map[string]any:
return mapAsTable(v)
case []any:
return sliceAsArray(v)
case nil, Nil:
return Nil{}
case struct{}:
return Nil{}
default:
out, err := json.Marshal(v)
if err != nil {
return Nil{}
}
var resp any
if err := json.Unmarshal(out, &resp); err != nil {
return Nil{}
}
return ValueOf(resp)
}
}
// resultOf converts a value to a LUA-friendly one.
func resultOf(v lua.LValue) Value {
switch v := v.(type) {
case lua.LNumber:
return Number(v)
case lua.LString:
return String(v)
case lua.LBool:
return Bool(v)
case *lua.LTable:
// slice cases
if top := v.RawGetInt(1); top != nil {
switch top.Type() {
case lua.LTNumber:
return asNumbers(v)
case lua.LTString:
return asStrings(v)
case lua.LTBool:
return asBools(v)
case lua.LTTable:
return asArrays(v)
}
}
// map case
tbl := asTable(v)
if len(tbl) > 0 {
return tbl
}
return Nil{}
case *lua.LUserData:
return ValueOf(v.Value)
default:
return Nil{}
}
}
func asNumbers(t *lua.LTable) (out Numbers) {
t.ForEach(func(_, v lua.LValue) {
out = append(out, float64(v.(lua.LNumber)))
})
return
}
func asStrings(t *lua.LTable) (out Strings) {
t.ForEach(func(_, v lua.LValue) {
out = append(out, string(v.(lua.LString)))
})
return
}
func asBools(t *lua.LTable) (out Bools) {
t.ForEach(func(_, v lua.LValue) {
out = append(out, bool(v.(lua.LBool)))
})
return
}
func asTable(t *lua.LTable) Table {
out := make(Table)
t.ForEach(func(k, v lua.LValue) {
if k.Type() == lua.LTString {
out[k.String()] = resultOf(v)
}
})
return out
}
func asArrays(t *lua.LTable) Array {
out, index := make(Array, t.Len()), 0
t.ForEach(func(_ lua.LValue, v lua.LValue) {
out[index] = resultOf(v)
index += 1
})
return out
}
func sliceAsArray(input []any) Array {
arr := make(Array, 0, len(input))
for _, v := range input {
arr = append(arr, ValueOf(v))
}
return arr
}
func mapAsTable(input map[string]any) Table {
t := make(Table, len(input))
for k, v := range input {
t[k] = ValueOf(v)
}
return t
}
// --------------------------------------------------------------------
// lvalueOf converts the script input into a valid lua value
func lvalueOf(exec *lua.LState, value any) lua.LValue {
if value == nil {
return lua.LNil
}
switch x := value.(type) {
case Value:
return x.lvalue(exec)
default:
switch val := reflect.ValueOf(value); val.Kind() {
case reflect.Map, reflect.Slice:
return ValueOf(val.Interface()).lvalue(exec)
default:
return luar.New(exec, value)
}
}
}