-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjd.go
More file actions
556 lines (440 loc) · 9.2 KB
/
jd.go
File metadata and controls
556 lines (440 loc) · 9.2 KB
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
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
package jd
import (
"container/list"
"encoding/json"
"fmt"
"io"
)
const (
TYPE_NULL = 0x0001
TYPE_BOOL = 0x0002
TYPE_NUMBER = 0x0004
TYPE_STRING = 0x0010
TYPE_ARRAY = 0x0100
TYPE_MAP = 0x0200
)
type Object interface {
Type() uint32
ToObject() Object
ToNull() Null
ToBool() Bool
ToString() String
ToNumber() Number
ToArray() Array
ToMap() Map
Accept(visitor Visitor) int
}
type Visitor interface {
VisitNull(Null) int
VisitBool(Bool) int
VisitString(String) int
VisitNumber(Number) int
EnterArray(Array) int
VisitArrayItem(index int, value Object) int
LeaveArray(Array) int
EnterMap(Map) int
VisitMapItem(index int, key string, value Object) int
LeaveMap(Map) int
}
type Map interface {
Object
Map(key string) Object
Len() int
Foreach(f func(index int, key string, value Object) int)
}
type Array interface {
Object
Index(index int) Object
Len() int
Foreach(f func(index int, value Object) int)
}
type Null interface {
Object
String() string
}
type Bool interface {
Object
Bool() bool
String() string
}
type String interface {
Object
String() string
}
type Number interface {
Object
Int() int
Int64() int64
Uint64() uint64
Float32() float32
Float64() float64
Number() interface{}
String() string
}
//------------------------------------------------------------------
type jsonObjectImpl struct {
impl Object
}
func (o *jsonObjectImpl) Type() uint32 {
return o.impl.Type()
}
func (o *jsonObjectImpl) ToObject() Object {
return o.impl
}
func (o *jsonObjectImpl) ToNull() Null {
return nil
}
func (o *jsonObjectImpl) ToBool() Bool {
return nil
}
func (o *jsonObjectImpl) ToString() String {
return nil
}
func (o *jsonObjectImpl) ToNumber() Number {
return nil
}
func (o *jsonObjectImpl) ToArray() Array {
return nil
}
func (o *jsonObjectImpl) ToMap() Map {
return nil
}
//------------------------------------------------------------------
type jsonMapImpl struct {
jsonObjectImpl
valuelist *list.List
valuesmap map[string]*list.Element
}
type jsonPair struct {
key string
value Object
}
func (m *jsonMapImpl) Type() uint32 {
return TYPE_MAP
}
func (m *jsonMapImpl) Map(key string) Object {
v, ok := m.valuesmap[key]
if !ok {
return nil
}
return v.Value.(*jsonPair).value
}
func (m *jsonMapImpl) Len() int {
return len(m.valuesmap)
}
func (m *jsonMapImpl) ToMap() Map {
return m
}
func (m *jsonMapImpl) Accept(visitor Visitor) int {
r := visitor.EnterMap(m)
if 0 != r {
return r
}
index := -1
for elem := m.valuelist.Front(); nil != elem; elem = elem.Next() {
index++
r := visitor.VisitMapItem(index, elem.Value.(*jsonPair).key, elem.Value.(*jsonPair).value)
if 0 != r {
return r
}
}
return visitor.LeaveMap(m)
}
func (m *jsonMapImpl) Foreach(f func(index int, key string, value Object) int) {
index := -1
for elem := m.valuelist.Front(); nil != elem; elem = elem.Next() {
index++
r := f(index, elem.Value.(*jsonPair).key, elem.Value.(*jsonPair).value)
if 0 != r {
return
}
}
}
//------------------------------------------------------------------
type jsonArrayImpl struct {
jsonObjectImpl
values []Object
}
func (a *jsonArrayImpl) Type() uint32 {
return TYPE_ARRAY
}
func (a *jsonArrayImpl) Index(index int) Object {
if index >= len(a.values) {
return nil
}
return a.values[index]
}
func (a *jsonArrayImpl) Len() int {
return len(a.values)
}
func (a *jsonArrayImpl) ToArray() Array {
return a
}
func (a *jsonArrayImpl) Accept(visitor Visitor) int {
r := visitor.EnterArray(a)
if 0 != r {
return r
}
for index, v := range a.values {
r := visitor.VisitArrayItem(index, v)
if 0 != r {
return r
}
}
return visitor.LeaveArray(a)
}
func (a *jsonArrayImpl) Foreach(f func(index int, value Object) int) {
for index, v := range a.values {
r := f(index, v)
if 0 != r {
return
}
}
}
//------------------------------------------------------------------
type jsonNullImpl struct {
jsonObjectImpl
}
func (n *jsonNullImpl) Type() uint32 {
return TYPE_NULL
}
func (n *jsonNullImpl) Null() interface{} {
return nil
}
func (n *jsonNullImpl) ToNull() Null {
return n
}
func (n *jsonNullImpl) String() string {
return "null"
}
func (a *jsonNullImpl) Accept(visitor Visitor) int {
return visitor.VisitNull(a)
}
//------------------------------------------------------------------
type jsonBoolImpl struct {
jsonObjectImpl
value bool
}
func (b *jsonBoolImpl) Type() uint32 {
return TYPE_BOOL
}
func (b *jsonBoolImpl) Bool() bool {
return b.value
}
func (b *jsonBoolImpl) ToBool() Bool {
return b
}
func (b *jsonBoolImpl) Accept(visitor Visitor) int {
return visitor.VisitBool(b)
}
func (b *jsonBoolImpl) String() string {
if b.value {
return "true"
}
return "false"
}
//------------------------------------------------------------------
type jsonStringImpl struct {
jsonObjectImpl
value string
}
func (s *jsonStringImpl) Type() uint32 {
return TYPE_STRING
}
func (s *jsonStringImpl) String() string {
return s.value
}
func (s *jsonStringImpl) ToString() String {
return s
}
func (s *jsonStringImpl) Accept(visitor Visitor) int {
return visitor.VisitString(s)
}
//------------------------------------------------------------------
type jsonNumberImpl struct {
jsonObjectImpl
value float64
}
func (u *jsonNumberImpl) Type() uint32 {
return TYPE_NUMBER
}
func (u *jsonNumberImpl) Int() int {
return int(u.value)
}
func (u *jsonNumberImpl) Int64() int64 {
return int64(u.value)
}
func (u *jsonNumberImpl) Uint64() uint64 {
return uint64(u.value)
}
func (u *jsonNumberImpl) Float32() float32 {
return float32(u.value)
}
func (u *jsonNumberImpl) Float64() float64 {
return float64(u.value)
}
func (u *jsonNumberImpl) ToNumber() Number {
return u
}
func (u *jsonNumberImpl) Number() interface{} {
// 检查是否有小数部分:
i64 := int64(u.value)
postfix := u.value - float64(i64)
if postfix != 0 {
return u.value
}
return i64
}
func (u *jsonNumberImpl) Accept(visitor Visitor) int {
return visitor.VisitNumber(u)
}
func (u *jsonNumberImpl) String() string {
return fmt.Sprintf("%v", u.Number())
}
//------------------------------------------------------------------
func readMap(d *json.Decoder) (*jsonMapImpl, error) {
m := new(jsonMapImpl)
m.impl = m
m.valuelist = list.New()
m.valuesmap = make(map[string]*list.Element)
for d.More() {
t, err := d.Token()
if nil != err {
return nil, err
}
k, ok := t.(string)
if !ok {
return nil, fmt.Errorf("Except string")
}
v, err := readObject(d)
if nil != err {
return nil, err
}
_, ok = m.valuesmap[k]
if ok {
return nil, fmt.Errorf("Item with the same key has been exist: %s", k)
}
m.valuesmap[k] = m.valuelist.PushBack(&jsonPair{k, v})
}
d.Token()
return m, nil
}
func readArray(d *json.Decoder) (*jsonArrayImpl, error) {
a := new(jsonArrayImpl)
a.impl = a
a.values = make([]Object, 0, 2)
for d.More() {
v, err := readObject(d)
if nil != err {
return nil, err
}
a.values = append(a.values, v)
}
d.Token()
return a, nil
}
func readObject(d *json.Decoder) (Object, error) {
t, err := d.Token()
if nil != err {
return nil, err
}
switch t.(type) {
case json.Delim:
c := t.(json.Delim)
switch c {
case '{':
return readMap(d)
case '[':
return readArray(d)
default:
return nil, fmt.Errorf("Unexpect delim: %c", c)
}
case string:
o := new(jsonStringImpl)
o.impl = o
o.value = t.(string)
return o, nil
case bool:
o := new(jsonBoolImpl)
o.impl = o
o.value = t.(bool)
return o, nil
case float64:
o := new(jsonNumberImpl)
o.impl = o
o.value = t.(float64)
return o, nil
case nil:
o := new(jsonNullImpl)
o.impl = o
return o, nil
default:
return nil, fmt.Errorf("Unexpect token")
}
}
func LoadObject(r io.Reader) (Object, error) {
return readObject(json.NewDecoder(r))
}
type PrintOptions struct {
}
type jsonSimplePrinter struct {
writer io.Writer
options PrintOptions
}
func (p *jsonSimplePrinter) VisitNull(v Null) int {
p.writer.Write([]byte(v.String()))
return 0
}
func (p *jsonSimplePrinter) VisitBool(v Bool) int {
p.writer.Write([]byte(v.String()))
return 0
}
func (p *jsonSimplePrinter) VisitString(v String) int {
p.writer.Write([]byte(`"`))
p.writer.Write([]byte(v.String()))
p.writer.Write([]byte(`"`))
return 0
}
func (p *jsonSimplePrinter) VisitNumber(v Number) int {
p.writer.Write([]byte(v.String()))
return 0
}
func (p *jsonSimplePrinter) EnterArray(Array) int {
p.writer.Write([]byte("["))
return 0
}
func (p *jsonSimplePrinter) VisitArrayItem(index int, value Object) int {
if 0 != index {
p.writer.Write([]byte(","))
}
value.Accept(p)
return 0
}
func (p *jsonSimplePrinter) LeaveArray(Array) int {
p.writer.Write([]byte("]"))
return 0
}
func (p *jsonSimplePrinter) EnterMap(Map) int {
p.writer.Write([]byte("{"))
return 0
}
func (p *jsonSimplePrinter) VisitMapItem(index int, key string, value Object) int {
if 0 != index {
p.writer.Write([]byte(`,`))
}
p.writer.Write([]byte(`"`))
p.writer.Write([]byte(key))
p.writer.Write([]byte(`":`))
value.Accept(p)
return 0
}
func (p *jsonSimplePrinter) LeaveMap(Map) int {
p.writer.Write([]byte("}"))
return 0
}
func NewSimplePrinter(writer io.Writer, options PrintOptions) Visitor {
return &jsonSimplePrinter{writer, options}
}
func Version() string {
return "1.0.0"
}