This repository was archived by the owner on Sep 19, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmutators.go
323 lines (313 loc) · 5.95 KB
/
mutators.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
/*
Written by Daniel Krom
2018
*/
package jonson
import (
"reflect"
"strconv"
"errors"
)
type numberConvertion uint8
const (
toInt numberConvertion = 0
toFloat numberConvertion = 1
toUnsignedInt numberConvertion = 2
toString numberConvertion = 3
)
func (jsn *JSON) MutateToInt() (success bool) {
success, val := jsn.convertToNumberType(toInt)
if success {
jsn.Set(val)
}
return
}
func (jsn *JSON) MutateToFloat() (success bool) {
success, val := jsn.convertToNumberType(toFloat)
if success {
jsn.Set(val)
}
return
}
func (jsn *JSON) MutateToUnsignedInt() (success bool) {
success, val := jsn.convertToNumberType(toUnsignedInt)
if success {
jsn.Set(val)
}
return
}
func (jsn *JSON) MutateToString() (success bool) {
success, val := jsn.convertToNumberType(toString)
if success {
jsn.Set(val)
}
return
}
func (jsn *JSON) convertToNumberType(numType numberConvertion) (success bool, val interface{}) {
jsn.rwMutex.RLock()
defer jsn.rwMutex.RUnlock()
if !jsn.isPrimitive {
success = false
return
}
success = true
switch jsn.kind {
case reflect.Float64:
float64Value := jsn.GetUnsafeFloat64()
switch numType {
case toInt:
val = int(float64Value)
break
case toFloat:
val = float64Value
break
case toUnsignedInt:
val = uint(float64Value)
break
case toString:
val = strconv.FormatFloat(float64Value, 'E', -1, 64)
break
default:
success = false
}
break
case reflect.Float32:
float32Value := jsn.GetUnsafeFloat32()
switch numType {
case toInt:
val = int(float32Value)
break
case toFloat:
val = float64(float32Value)
break
case toUnsignedInt:
val = uint(float32Value)
break
case toString:
val = strconv.FormatFloat(float64(float32Value), 'E', -1, 32)
break
default:
success = false
}
break
case reflect.Uint:
unsignedIntValue := jsn.GetUnsafeUint()
switch numType {
case toInt:
val = int(unsignedIntValue)
break
case toFloat:
val = float64(unsignedIntValue)
break
case toUnsignedInt:
val = unsignedIntValue
break
case toString:
val = strconv.FormatUint(uint64(unsignedIntValue), 10)
break
default:
success = false
}
break
case reflect.Uint8:
unsignedInt8Value := jsn.GetUnsafeUint8()
switch numType {
case toInt:
val = int(unsignedInt8Value)
break
case toFloat:
val = float64(unsignedInt8Value)
break
case toUnsignedInt:
val = uint(unsignedInt8Value)
break
case toString:
val = strconv.FormatUint(uint64(unsignedInt8Value), 10)
break
default:
success = false
}
break
case reflect.Uint16:
unsignedInt16Value := jsn.GetUnsafeUint16()
switch numType {
case toInt:
val = int(unsignedInt16Value)
break
case toFloat:
val = float64(unsignedInt16Value)
break
case toUnsignedInt:
val = uint(unsignedInt16Value)
break
case toString:
val = strconv.FormatUint(uint64(unsignedInt16Value), 10)
break
default:
success = false
}
break
case reflect.Uint32:
unsignedInt32Value := jsn.GetUnsafeUint32()
switch numType {
case toInt:
val = int(unsignedInt32Value)
break
case toFloat:
val = float64(unsignedInt32Value)
break
case toUnsignedInt:
val = uint(unsignedInt32Value)
break
case toString:
val = strconv.FormatUint(uint64(unsignedInt32Value), 10)
break
default:
success = false
}
break
case reflect.Uint64:
unsignedInt64Value := jsn.GetUnsafeUint64()
switch numType {
case toInt:
val = int(unsignedInt64Value)
break
case toFloat:
val = float64(unsignedInt64Value)
break
case toUnsignedInt:
val = uint(unsignedInt64Value)
break
case toString:
val = strconv.FormatUint(unsignedInt64Value, 10)
break
default:
success = false
}
break
case reflect.Int:
intValue := jsn.GetUnsafeInt()
switch numType {
case toInt:
val = intValue
break
case toFloat:
val = float64(intValue)
break
case toUnsignedInt:
val = uint(intValue)
break
case toString:
val = strconv.FormatInt(int64(intValue), 10)
break
default:
success = false
}
case reflect.Int8:
int8Value := jsn.GetUnsafeInt8()
switch numType {
case toInt:
val = int(int8Value)
break
case toFloat:
val = float64(int8Value)
break
case toUnsignedInt:
val = uint(int8Value)
break
case toString:
val = strconv.FormatInt(int64(int8Value), 10)
break
default:
success = false
}
break
case reflect.Int16:
int16Value := jsn.GetUnsafeInt16()
switch numType {
case toInt:
val = int(int16Value)
break
case toFloat:
val = float64(int16Value)
break
case toUnsignedInt:
val = uint(int16Value)
break
case toString:
val = strconv.FormatInt(int64(int16Value), 10)
break
default:
success = false
}
break
case reflect.Int32:
int32Value := jsn.GetUnsafeInt32()
switch numType {
case toInt:
val = int(int32Value)
break
case toFloat:
val = float64(int32Value)
break
case toUnsignedInt:
val = uint(int32Value)
break
case toString:
val = strconv.FormatInt(int64(int32Value), 10)
break
default:
success = false
}
break
case reflect.Int64:
int64Value := jsn.GetUnsafeInt64()
switch numType {
case toInt:
val = int(int64Value)
break
case toFloat:
val = float64(int64Value)
break
case toUnsignedInt:
val = uint(int64Value)
break
case toString:
val = strconv.FormatInt(int64Value, 10)
break
default:
success = false
}
break
case reflect.String:
str := jsn.GetUnsafeString()
var err error
switch numType {
case toInt:
val, err = strconv.ParseInt(str, 10, 64)
if err == nil {
val = int(val.(int64))
}
break
case toFloat:
val, err = strconv.ParseFloat(str, 64)
break
case toUnsignedInt:
val, err = strconv.ParseUint(str, 10, 64)
if err == nil {
val = uint(val.(uint64))
}
break
case toString:
val = str
break
default:
err = errors.New("unsupported type")
}
success = err == nil
break
default:
success = false
}
return
}