-
Notifications
You must be signed in to change notification settings - Fork 2
/
parse_add.go
executable file
·444 lines (428 loc) · 11.1 KB
/
parse_add.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
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
package jin
import (
"strconv"
)
// AddKeyValue adds a key-value pair to an object.
// Path variable must point to an object,
// otherwise it will provide an error message.
func (p *Parser) AddKeyValue(key string, newVal []byte, path ...string) error {
lenp := len(path)
lenv := len(key)
var curr *node
var err error
if lenv == 0 {
return errNullKey()
}
json, err := p.Get(path...)
if err != nil {
return err
}
curr = p.core
if lenp == 0 {
for _, d := range curr.down {
if d.label == key {
return errKeyAlreadyExist(key)
}
}
if len(json) >= 2 {
if json[0] == 123 && json[len(json)-1] == 125 {
newKV := []byte(`,"` + key + `":` + string(newVal))
if lenv >= 2 {
if newVal[0] == 91 || newVal[0] == 123 {
newNode := createNode(nil)
pCore(newVal, newNode)
newNode.label = key
newNode.value = newVal
if len(p.json) == 2 {
p.json = replace(p.json, newKV[1:], len(p.json)-1, len(p.json)-1)
} else {
p.json = replace(p.json, newKV, len(p.json)-1, len(p.json)-1)
}
curr.down = append(curr.down, newNode)
newNode.up = curr
return nil
}
}
p.json = replace(p.json, newKV, len(p.json)-1, len(p.json)-1)
newNode := createNode(nil)
newNode.label = key
newNode.value = newVal
curr.down = append(curr.down, newNode)
newNode.up = curr
return nil
}
return errObjectExpected()
}
return errBadJSON(0)
}
curr, err = p.core.walk(path)
if err != nil {
return err
}
for _, d := range curr.up.down {
if d.label == key {
return errKeyAlreadyExist(key)
}
}
if len(json) >= 2 {
if json[0] == 123 && json[len(json)-1] == 125 {
if lenv >= 2 {
if newVal[0] == 91 || newVal[0] == 123 {
newNode := createNode(nil)
pCore(newVal, newNode)
newNode.label = key
newNode.value = newVal
curr.down = append(curr.down, newNode)
newNode.up = curr
p.json, err = AddKeyValue(p.json, key, newVal, path...)
if err != nil {
return err
}
for i := 0; i < lenp; i++ {
newNode = newNode.up
newNode.value, err = Get(p.json, path[:lenp-i]...)
if err != nil {
return err
}
}
return nil
}
}
newNode := createNode(nil)
newNode.label = key
newNode.value = newVal
curr.down = append(curr.down, newNode)
newNode.up = curr
p.json, err = AddKeyValue(p.json, key, newVal, path...)
if err != nil {
return err
}
for i := 0; i < lenp; i++ {
newNode = newNode.up
newNode.value, err = Get(p.json, path[:lenp-i]...)
if err != nil {
return err
}
}
return nil
}
return errObjectExpected()
}
return errBadJSON(0)
}
// Add adds a value to an array.
// Path variable must point to an array,
// otherwise it will provide an error message.
func (p *Parser) Add(newVal []byte, path ...string) error {
lenp := len(path)
lenv := len(newVal)
var curr *node
var err error
if lenv == 0 {
return errNullKey()
}
json, err := p.Get(path...)
if err != nil {
return err
}
if err != nil {
return err
}
if lenp == 0 {
curr = p.core
if len(json) >= 2 {
if json[0] == 91 && json[len(json)-1] == 93 {
newValue := []byte(`,` + string(newVal))
if lenv >= 2 {
if newVal[0] == 91 || newVal[0] == 123 {
newNode := createNode(nil)
pCore(newVal, newNode)
index := len(curr.down)
newNode.label = strconv.Itoa(index)
newNode.value = newVal
if len(p.json) == 2 {
p.json = replace(p.json, newValue[1:], len(p.json)-1, len(p.json)-1)
} else {
p.json = replace(p.json, newValue, len(p.json)-1, len(p.json)-1)
}
curr.down = append(curr.down, newNode)
newNode.up = curr
return nil
}
}
p.json = replace(p.json, newValue, len(p.json)-1, len(p.json)-1)
newNode := createNode(nil)
index := len(curr.down)
newNode.label = strconv.Itoa(index)
newNode.value = newVal
curr.down = append(curr.down, newNode)
newNode.up = curr
return nil
}
return errArrayExpected()
}
return errBadJSON(0)
}
curr, err = p.core.walk(path)
if err != nil {
return err
}
if len(json) >= 2 {
if json[0] == 91 && json[len(json)-1] == 93 {
if lenv >= 2 {
if newVal[0] == 91 || newVal[0] == 123 {
newNode := createNode(nil)
pCore(newVal, newNode)
index := len(curr.down)
newNode.label = strconv.Itoa(index)
newNode.value = newVal
curr.down = append(curr.down, newNode)
newNode.up = curr
p.json, err = Add(p.json, newVal, path...)
if err != nil {
return err
}
for i := 0; i < lenp-1; i++ {
newNode = newNode.up
newNode.value, err = Get(p.json, path[:lenp-i]...)
if err != nil {
return err
}
}
return nil
}
}
newNode := createNode(nil)
index := len(curr.down)
newNode.label = strconv.Itoa(index)
newNode.value = newVal
curr.down = append(curr.down, newNode)
newNode.up = curr
p.json, err = Add(p.json, newVal, path...)
if err != nil {
return err
}
for i := 0; i < lenp; i++ {
newNode = newNode.up
newNode.value, err = Get(p.json, path[:lenp-i]...)
if err != nil {
return err
}
}
return nil
}
return errArrayExpected()
}
return errBadJSON(0)
}
// Insert inserts a value to an array.
// Path variable must point to an array,
// otherwise it will provide an error message.
func (p *Parser) Insert(newIndex int, newVal []byte, path ...string) error {
lenp := len(path)
lenv := len(newVal)
var curr *node
var err error
if lenv == 0 {
return errNullKey()
}
json, err := p.Get(path...)
if err != nil {
return err
}
curr = p.core
if lenp == 0 {
if len(json) >= 2 {
if json[0] == 91 && json[len(json)-1] == 93 {
if lenv >= 2 {
if newVal[0] == 91 || newVal[0] == 123 {
newNode := createNode(nil)
pCore(newVal, newNode)
err = newNode.insert(curr, newIndex)
if err != nil {
return err
}
p.json, err = Insert(p.json, newIndex, newVal, path...)
if err != nil {
return err
}
err = newNode.insert(curr, newIndex)
if err != nil {
return err
}
curr.down = append(curr.down, newNode)
newNode.up = curr
return nil
}
}
newNode := createNode(nil)
err = newNode.insert(curr, newIndex)
if err != nil {
return err
}
newNode.value = newVal
curr.down = append(curr.down, newNode)
p.json, err = Insert(p.json, newIndex, newVal, path...)
if err != nil {
return err
}
err = newNode.insert(curr, newIndex)
if err != nil {
return err
}
newNode.up = curr
return nil
}
return errArrayExpected()
}
return errBadJSON(0)
}
curr, err = p.core.walk(path)
if err != nil {
return err
}
if len(json) >= 2 {
if json[0] == 91 && json[len(json)-1] == 93 {
if lenv >= 2 {
if newVal[0] == 91 || newVal[0] == 123 {
newNode := createNode(nil)
pCore(newVal, newNode)
err = newNode.insert(curr, newIndex)
if err != nil {
return err
}
newNode.value = newVal
curr.down = append(curr.down, newNode)
newNode.up = curr
p.json, err = Insert(p.json, newIndex, newVal, path...)
if err != nil {
return err
}
for i := 0; i < lenp; i++ {
newNode = newNode.up
newNode.value, err = Get(p.json, path[:lenp-i]...)
if err != nil {
return err
}
}
return nil
}
}
newNode := createNode(nil)
err = newNode.insert(curr, newIndex)
if err != nil {
return err
}
newNode.value = newVal
curr.down = append(curr.down, newNode)
newNode.up = curr
p.json, err = Insert(p.json, newIndex, newVal, path...)
if err != nil {
return err
}
for i := 0; i < lenp; i++ {
newNode = newNode.up
newNode.value, err = Get(p.json, path[:lenp-i]...)
if err != nil {
return err
}
}
return nil
}
return errArrayExpected()
}
return errBadJSON(0)
}
// AddKeyValueString is a variation of AddKeyValue() func.
// Type of new value must be a string.
func (p *Parser) AddKeyValueString(key, value string, path ...string) error {
if len(key) == 0 {
return errNullKey()
}
return p.AddKeyValue(key, []byte(formatType(value)), path...)
}
// AddKeyValueInt is a variation of AddKeyValue() func.
// Type of new value must be an integer.
func (p *Parser) AddKeyValueInt(key string, value int, path ...string) error {
if len(key) == 0 {
return errNullKey()
}
return p.AddKeyValue(key, []byte(strconv.Itoa(value)), path...)
}
// AddKeyValueFloat is a variation of AddKeyValue() func.
// Type of new value must be a float64.
func (p *Parser) AddKeyValueFloat(key string, value float64, path ...string) error {
if len(key) == 0 {
return errNullKey()
}
return p.AddKeyValue(key, []byte(strconv.FormatFloat(value, 'f', -1, 64)), path...)
}
// AddKeyValueBool is a variation of AddKeyValue() func.
// Type of new value must be a boolean.
func (p *Parser) AddKeyValueBool(key string, value bool, path ...string) error {
if len(key) == 0 {
return errNullKey()
}
if value {
return p.AddKeyValue(key, []byte("true"), path...)
}
return p.AddKeyValue(key, []byte("false"), path...)
}
// AddString is a variation of Add() func.
// Type of new value must be an string.
func (p *Parser) AddString(value string, path ...string) error {
return p.Add([]byte(formatType(value)), path...)
}
// AddInt is a variation of Add() func.
// Type of new value must be an integer.
func (p *Parser) AddInt(value int, path ...string) error {
return p.Add([]byte(strconv.Itoa(value)), path...)
}
// AddFloat is a variation of Add() func.
// Type of new value must be an float64.
func (p *Parser) AddFloat(value float64, path ...string) error {
return p.Add([]byte(strconv.FormatFloat(value, 'f', -1, 64)), path...)
}
// AddBool is a variation of Add() func.
// Type of new value must be an boolean.
func (p *Parser) AddBool(value bool, path ...string) error {
if value {
return p.Add([]byte("true"), path...)
}
return p.Add([]byte("false"), path...)
}
// InsertString is a variation of Insert() func.
// Type of new value must be an string.
func (p *Parser) InsertString(index int, value string, path ...string) error {
if index < 0 {
return errIndexOutOfRange()
}
return p.Insert(index, []byte(formatType(value)), path...)
}
// InsertInt is a variation of Insert() func.
// Type of new value must be an integer.
func (p *Parser) InsertInt(index, value int, path ...string) error {
if index < 0 {
return errIndexOutOfRange()
}
return p.Insert(index, []byte(strconv.Itoa(value)), path...)
}
// InsertFloat is a variation of Insert() func.
// Type of new value must be an float64.
func (p *Parser) InsertFloat(index int, value float64, path ...string) error {
if index < 0 {
return errIndexOutOfRange()
}
return p.Insert(index, []byte(strconv.FormatFloat(value, 'f', -1, 64)), path...)
}
// InsertBool is a variation of Insert() func.
// Type of new value must be an boolean.
func (p *Parser) InsertBool(index int, value bool, path ...string) error {
if index < 0 {
return errIndexOutOfRange()
}
if value {
return p.Insert(index, []byte("true"), path...)
}
return p.Insert(index, []byte("false"), path...)
}