-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjson.go
428 lines (362 loc) · 10.3 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
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
// Package geko provides GEneric Keep Order types.
//
// It's mainly used to solve the issue that in some scenarios, the field order
// in JSON object is meaningful, but when unmarshal into a normal map, these
// information will be lost. See [golang/go#27179].
//
// # Provided types
//
// - [Map], and it's type alias [Object], to replace map.
// - [Pairs], and it's type alias [ObjectItems], to replace map, when you need
// to keep all values of duplicated key.
// - [List], and it's type alias [Array] to replace slice.
// - [Any] type, to replace the interface{}, it will use types above to
// do JSON unmarshal.
//
// The [JSONUnmarshal] function is a shorthand for defined an [Any] and
// unmarshal data into it.
//
// # Example of JSON processing
//
// result, _ := geko.JSONUnmarshal([]byte(`{"b": 1, "a": 2, "b": 3}`))
// object := result.(geko.ObjectItems)
// output, _ := json.Marshal(object)
// fmt.Println(string(output)) // {"b":1,"a:2","b":3}
//
// If you do not want duplicated key in result, you can use [Pairs.ToMap], or
// use [UseObject] to let [JSONUnmarshal] do it for you:
//
// result, _ := geko.JSONUnmarshal(
// []byte(`{"b": 1, "a": 2, "b": 3}`),
// geko.UseObject(),
// )
// object, _ := result.(geko.Object)
// object.Keys() // => ["b", "a"]
// output, _ := json.Marshal(object)
// fmt.Println(string(output)) // {"b":3,"a:2"}
//
// The [UseObject] option will make it use [Object] to unmarshal JSON object,
// instead of [ObjectItems]. [Object] will automatically deal with duplicated
// key for you. Maybe you think "b" should be 1, or "b" should appear after "a",
// these behavior can be adjusted by using [ObjectOnDuplicatedKey]
// with [DuplicatedKeyStrategy].
//
// [JSONUnmarshal] supports all JSON item, that's why it returns any. You can
// directly unmarshal into a [Object]/[ObjectItems] or [Array], if the type
// of input data is determined:
//
// var arr geko.Array // or geko.Object for JSON object
// _ := json.Unmarshal([]byte(`[1, 2, {"one": 1}, false]`), &arr)
// object, _ := arr.Get(2).(geko.ObjectItems)
// object.GetFirstOrZeroValue("one") // => 1
//
// But you can't customize [DecodeOptions] when doing this, it will always use
// default options.
//
// # Use container type directly
//
// Outside of JSON processing, these types can also be used simply as generic
// container types with insertion order preservation feature:
//
// m := geko.NewMap[int, string]()
// m.Set(1, "one")
// m.Set(3, "three")
// m.Set(2, "two")
//
// m.Get(3) // "three", true
// m.GetValueByIndex(1) // "three"
//
// There are many API for [Map], [List] and [Pairs], see their document for details.
//
// [golang/go#27179]: https://github.com/golang/go/issues/27179
package geko
import (
"bytes"
"encoding/json"
"io"
"reflect"
"unsafe"
)
// DecodeOptions are options for controlling the behavior of [Any] unmarshaling.
//
// Zero value(default value) of it is:
//
// - Do not use [json.Number] for JSON number
// - Uses [ObjectItems] for JSON object.
//
// See also: [CreateDecodeOptions], [UseNumber], [UseObjectItems], [UseObject],
// [ObjectOnDuplicatedKey].
type DecodeOptions struct {
useNumber bool
useObject bool
duplicatedKeyStrategy DuplicatedKeyStrategy
}
// DecodeOption is atom/modifier of [DecodeOptions].
type DecodeOption func(opts *DecodeOptions)
// CreateDecodeOptions creates a [DecodeOptions] by apply all option to the
// default decode option.
func CreateDecodeOptions(option ...DecodeOption) DecodeOptions {
opts := DecodeOptions{}
opts.Apply(option...)
return opts
}
// Apply option to current options.
func (opts *DecodeOptions) Apply(option ...DecodeOption) {
for _, opt := range option {
opt(opts)
}
}
// UseNumber will enable or disable using [json.Number] for json number.
func UseNumber(v bool) DecodeOption {
return func(opts *DecodeOptions) {
opts.useNumber = v
}
}
// UseObject will change unmarshal behavior to using [Object] for JSON object.
//
// See also: [ObjectOnDuplicatedKey], [UseObjectItems].
func UseObject() DecodeOption {
return func(opts *DecodeOptions) {
opts.useObject = true
}
}
// UseObjectItems will change unmarshal behavior (back) to using [ObjectItems]
// for JSON object.
//
// See also: [UseObject].
func UseObjectItems() DecodeOption {
return func(opts *DecodeOptions) {
opts.useObject = false
}
}
// ObjectOnDuplicatedKey set the strategy when there are duplicated key in JSON
// object. Only effect when [UseObject] is applied.
//
// See document of [DuplicatedKeyStrategy] and its enum value for details.
func ObjectOnDuplicatedKey(strategy DuplicatedKeyStrategy) DecodeOption {
return func(opts *DecodeOptions) {
opts.duplicatedKeyStrategy = strategy
}
}
type decoder struct {
decoder *json.Decoder
opts DecodeOptions
}
func newDecoder(data []byte, opts DecodeOptions) *decoder {
return &decoder{
decoder: json.NewDecoder(bytes.NewReader(data)),
opts: opts,
}
}
func (d *decoder) decode() (any, error) {
if d.opts.useNumber {
d.decoder.UseNumber()
}
item, err := d.next()
if err != nil {
return nil, err
}
if _, err := d.decoder.Token(); err != io.EOF {
return nil, newSyntaxError(
"invalid character after top-level value",
d.decoder.InputOffset(),
)
}
return item, nil
}
// This is not "legal", but it seems there is no other way to set the msg of syntax error.
func newSyntaxError(msg string, offset int64) *json.SyntaxError {
err := &json.SyntaxError{
Offset: offset,
}
msgField := reflect.ValueOf(err).Elem().Field(0 /* the msg field */)
if msgField.Kind() == reflect.String {
newMsgField := reflect.NewAt(msgField.Type(), unsafe.Pointer(msgField.UnsafeAddr())).Elem()
newMsgField.SetString(msg)
}
return err
}
func (d *decoder) next() (any, error) {
var token json.Token
var err error
if token, err = d.decoder.Token(); err != nil {
return nil, err
}
return d.nextAfterToken(token)
}
func (d *decoder) nextAfterToken(token json.Token) (any, error) {
var value any
switch v := token.(type) {
case bool, float64, json.Number, string, nil:
value = v
case json.Delim:
switch v {
case '{':
{
var object jsonObject[string, any]
if d.opts.useObject {
m := NewMap[string, any]()
m.SetDuplicatedKeyStrategy(d.opts.duplicatedKeyStrategy)
object = m
} else {
object = NewPairs[string, any]()
}
if err := parseIntoObject[string, any](d, object, true); err != nil {
return nil, err
}
value = object
}
case '[':
{
l := NewList[any]()
if err := parseIntoArray[any](d, l); err != nil {
return nil, err
}
value = l
}
}
}
return value, nil
}
// Array
type jsonArray[T any] interface {
innerSlice() *[]T
}
func marshalArray[T any, A jsonArray[T]](array A) ([]byte, error) {
slice := *array.innerSlice()
if slice == nil {
return []byte(`[]`), nil
}
var data bytes.Buffer
enc := json.NewEncoder(&data)
enc.SetEscapeHTML(false)
err := enc.Encode(slice)
return data.Bytes(), err
}
func parseIntoArray[T any, A jsonArray[T]](d *decoder, array A) error {
// The behavior of the standard library is to clear the list
// and we are consistent with it
*array.innerSlice() = nil
for {
token, err := d.decoder.Token()
if err != nil {
return err
}
// if meet ], the list parse ends
delim, ok := token.(json.Delim)
if ok && delim == ']' {
return nil
}
var value T
v, err := d.nextAfterToken(token)
if err != nil {
return err
}
value, _ = v.(T) // never fails because we have checked T is any too
*array.innerSlice() = append(*array.innerSlice(), value)
}
}
func unmarshalArray[T any, A jsonArray[T]](data []byte, array A, option ...DecodeOption) error {
if !isEmptyInterface[T]() {
return json.Unmarshal(data, array.innerSlice())
}
d := newDecoder(data, CreateDecodeOptions(option...))
token, err := d.decoder.Token()
if err != nil {
return err
}
if delim, ok := token.(json.Delim); !ok || delim != '[' {
return &json.UnmarshalTypeError{
Value: "non-array value",
Type: reflect.TypeOf(array).Elem(),
}
}
return parseIntoArray[T](d, array)
}
// Object
type jsonObject[K comparable, V any] interface {
GetByIndex(int) Pair[K, V]
Add(K, V)
Len() int
}
func marshalObject[K comparable, V any, O jsonObject[K, V]](object O) ([]byte, error) {
if !isString[K]() {
return nil, &json.UnsupportedTypeError{
Type: reflect.TypeOf(object),
}
}
var buf bytes.Buffer
enc := json.NewEncoder(&buf)
enc.SetEscapeHTML(false)
_ = buf.WriteByte('{')
for i, length := 0, object.Len(); i < length; i++ {
if i > 0 {
_ = buf.WriteByte(',')
}
pair := object.GetByIndex(i)
// Key is string type, encoding never fail
_ = enc.Encode(pair.Key)
_ = buf.WriteByte(':')
if err := enc.Encode(pair.Value); err != nil {
return nil, err
}
}
_ = buf.WriteByte('}')
return buf.Bytes(), nil
}
func parseIntoObject[K comparable, V any, O jsonObject[K, V]](
d *decoder, object O, valueIsAny bool,
) error {
// The behavior of the standard library is **do not** clear the map
// and we are consistent with it.
valueIsAny = valueIsAny || isEmptyInterface[V]()
for {
token, err := d.decoder.Token()
if err != nil {
return err
}
// if meet }, the object parse ends
delim, ok := token.(json.Delim)
if ok && delim == '}' {
return nil
}
// otherwise, we meet the key of a item
key, _ := token.(string)
var value V
if valueIsAny { // if v is any, we parse it into our json value types
var v any
if v, err = d.next(); err != nil {
return err
} else if v != nil {
value, _ = v.(V) // never fails because we have checked type V is any
}
} else { // otherwise V is a real type, we can let std lib parsing it for us
if err = d.decoder.Decode(&value); err != nil {
return err
}
}
object.Add(any(key).(K), value)
}
}
func unmarshalObject[K comparable, V any, O jsonObject[K, V]](
data []byte, object O, option ...DecodeOption,
) error {
if !isString[K]() {
return &json.UnmarshalTypeError{
Value: "any value",
Type: reflect.TypeOf(object).Elem(),
}
}
d := newDecoder(data, CreateDecodeOptions(option...))
token, err := d.decoder.Token()
if err != nil {
return err
}
if delim, ok := token.(json.Delim); !ok || delim != '{' {
return &json.UnmarshalTypeError{
Value: "non-object value",
Type: reflect.TypeOf(object).Elem(),
}
}
return parseIntoObject[K, V](d, object, false)
}