-
Notifications
You must be signed in to change notification settings - Fork 2
/
inter_add.go
executable file
·455 lines (424 loc) · 12.6 KB
/
inter_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
445
446
447
448
449
450
451
452
453
454
455
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 AddKeyValue(json []byte, key string, value []byte, path ...string) ([]byte, error) {
if value == nil {
return AddKeyValue(json, key, []byte("null"), path...)
}
var start int
var end int
var err error
if len(json) < 2 {
return json, errBadJSON(0)
}
if len(path) == 0 {
for i := 0; i < len(json); i++ {
if !space(json[i]) {
if json[i] == 123 {
start = i
if i == len(json)-1 {
return json, errBadJSON(i)
}
break
} else {
return json, errObjectExpected()
}
}
}
for i := len(json) - 1; i > -1; i-- {
if !space(json[i]) {
if json[i] == 125 {
end = i + 1
if i == 0 {
return json, errBadJSON(i)
}
break
} else {
return json, errObjectExpected()
}
}
}
} else {
_, start, end, err = core(json, false, path...)
if err != nil {
return json, err
}
}
if json[start] == 123 && json[end-1] == 125 {
empty := true
for i := start + 1; i < end-1; i++ {
if !space(json[i]) {
empty = false
}
}
if empty {
val := []byte(`"` + key + `":` + string(value))
json = replace(json, val, end-1, end-1)
return json, nil
}
path = append(path, key)
_, _, _, err = core(json, false, path...)
if err != nil {
if ErrEqual(err, ErrCodeKeyNotFound) {
val := []byte(`,"` + key + `":` + string(value))
json = replace(json, val, end-1, end-1)
return json, nil
}
return json, err
}
return json, errKeyAlreadyExist(key)
}
return json, errObjectExpected()
}
// Add adds a value to an array.
// Path variable must point to an array,
// otherwise it will provide an error message.
func Add(json []byte, value []byte, path ...string) ([]byte, error) {
var start int
var end int
var err error
if len(json) < 2 {
return json, errBadJSON(0)
}
if len(path) == 0 {
for i := 0; i < len(json); i++ {
if !space(json[i]) {
if json[i] == 91 {
start = i
if i == len(json)-1 {
return json, errBadJSON(i)
}
break
} else {
return json, errArrayExpected()
}
}
}
for i := len(json) - 1; i > -1; i-- {
if !space(json[i]) {
if json[i] == 93 {
end = i + 1
if i == 0 {
return json, errBadJSON(i)
}
break
} else {
return json, errArrayExpected()
}
}
}
} else {
_, start, end, err = core(json, false, path...)
if err != nil {
return json, err
}
}
if json[start] == 91 && json[end-1] == 93 {
empty := true
for i := start + 1; i < end-1; i++ {
if !space(json[i]) {
empty = false
}
}
if empty {
json = replace(json, value, end-1, end-1)
return json, nil
}
val := make([]byte, len(value)+1)
val[0] = 44
copy(val[1:], value)
json = replace(json, val, end-1, end-1)
return json, nil
}
return json, errArrayExpected()
}
// Insert inserts a value to an array.
// Path variable must point to an array,
// otherwise it will provide an error message.
func Insert(json []byte, index int, value []byte, path ...string) ([]byte, error) {
var start int
var end int
var err error
if len(path) == 0 {
for i := 0; i < len(json); i++ {
if !space(json[i]) {
if json[i] == 91 {
start = i
if i == len(json)-1 {
return json, errBadJSON(i)
}
break
} else {
return json, errArrayExpected()
}
}
}
for i := len(json) - 1; i > -1; i-- {
if !space(json[i]) {
if json[i] == 93 {
end = i + 1
if i == 0 {
return json, errBadJSON(i)
}
break
} else {
return json, errArrayExpected()
}
}
}
} else {
_, start, end, err = core(json, false, path...)
if err != nil {
return json, err
}
}
if json[start] != 91 || json[end-1] != 93 {
return json, errArrayExpected()
}
_, start, end, err = core(json, false, append(path, strconv.Itoa(index))...)
if err != nil {
return json, err
}
if json[start-1] == 34 {
start--
}
if json[end] == 34 {
end++
}
var startEdge int
var endEdge int
for i := start - 1; i > 0; i-- {
if !space(json[i]) {
startEdge = i
break
}
}
for i := end; i < len(json); i++ {
if !space(json[i]) {
endEdge = i
break
}
}
if (json[startEdge] == 91 || json[startEdge] == 123) && json[startEdge]+2 == json[endEdge] {
val := make([]byte, 0, len(value)+1)
val = append(val, value...)
val = append(val, 44)
json = replace(json, val, start, start)
return json, nil
}
if json[endEdge] == 44 {
val := make([]byte, 0, len(value)+1)
val = append(val, value...)
val = append(val, 44)
json = replace(json, val, start, start)
return json, nil
}
if json[startEdge] == 44 {
val := make([]byte, 0, len(value)+1)
val = append(val, 44)
val = append(val, value...)
json = replace(json, val, start-1, start-1)
return json, nil
}
return json, errBadJSON(start)
}
// AddKeyValueString is a variation of AddKeyValue() func.
// Type of new value must be a string.
func AddKeyValueString(json []byte, key, value string, path ...string) ([]byte, error) {
if len(key) == 0 {
return nil, errNullKey()
}
return AddKeyValue(json, key, []byte(formatType(value)), path...)
}
// AddKeyValueInt is a variation of AddKeyValue() func.
// Type of new value must be an integer.
func AddKeyValueInt(json []byte, key string, value int, path ...string) ([]byte, error) {
if len(key) == 0 {
return json, errNullKey()
}
return AddKeyValue(json, key, []byte(strconv.Itoa(value)), path...)
}
// AddKeyValueUint is a variation of AddKeyValue() func.
// Type of new value must be an integer.
func AddKeyValueUint(json []byte, key string, value uint, path ...string) ([]byte, error) {
if len(key) == 0 {
return json, errNullKey()
}
return AddKeyValue(json, key, []byte(strconv.FormatUint(uint64(value), 64)), path...)
}
// AddKeyValueInt32 is a variation of AddKeyValue() func.
// Type of new value must be an int32.
func AddKeyValueInt32(json []byte, key string, value int32, path ...string) ([]byte, error) {
if len(key) == 0 {
return json, errNullKey()
}
return AddKeyValue(json, key, []byte(strconv.FormatInt(int64(value), 32)), path...)
}
// AddKeyValueInt64 is a variation of AddKeyValue() func.
// Type of new value must be an int64.
func AddKeyValueInt64(json []byte, key string, value int64, path ...string) ([]byte, error) {
if len(key) == 0 {
return json, errNullKey()
}
return AddKeyValue(json, key, []byte(strconv.FormatInt(value, 64)), path...)
}
// AddKeyValueUint32 is a variation of AddKeyValue() func.
// Type of new value must be an uint32.
func AddKeyValueUint32(json []byte, key string, value uint32, path ...string) ([]byte, error) {
if len(key) == 0 {
return json, errNullKey()
}
return AddKeyValue(json, key, []byte(strconv.FormatUint(uint64(value), 32)), path...)
}
// AddKeyValueUint64 is a variation of AddKeyValue() func.
// Type of new value must be an uint64.
func AddKeyValueUint64(json []byte, key string, value uint64, path ...string) ([]byte, error) {
if len(key) == 0 {
return json, errNullKey()
}
return AddKeyValue(json, key, []byte(strconv.FormatUint(value, 64)), path...)
}
// AddKeyValueFloat is a variation of AddKeyValue() func.
// Type of new value must be a float64.
func AddKeyValueFloat(json []byte, key string, value float64, path ...string) ([]byte, error) {
if len(key) == 0 {
return json, errNullKey()
}
return AddKeyValue(json, 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 AddKeyValueBool(json []byte, key string, value bool, path ...string) ([]byte, error) {
if len(key) == 0 {
return json, errNullKey()
}
if value {
return AddKeyValue(json, key, []byte("true"), path...)
}
return AddKeyValue(json, key, []byte("false"), path...)
}
// AddString is a variation of Add() func.
// Type of new value must be an string.
func AddString(json []byte, value string, path ...string) ([]byte, error) {
return Add(json, []byte(formatType(value)), path...)
}
// AddInt is a variation of Add() func.
// Type of new value must be an integer.
func AddInt(json []byte, value int, path ...string) ([]byte, error) {
return Add(json, []byte(strconv.Itoa(value)), path...)
}
// AddInt32 is a variation of Add() func.
// Type of new value must be an integer.
func AddInt32(json []byte, value int32, path ...string) ([]byte, error) {
return Add(json, []byte(strconv.FormatInt(int64(value), 32)), path...)
}
// AddInt64 is a variation of Add() func.
// Type of new value must be an integer.
func AddInt64(json []byte, value int64, path ...string) ([]byte, error) {
return Add(json, []byte(strconv.FormatInt(value, 64)), path...)
}
// AddUint is a variation of Add() func.
// Type of new value must be an integer.
func AddUint(json []byte, value uint, path ...string) ([]byte, error) {
return Add(json, []byte(strconv.FormatUint(uint64(value), 64)), path...)
}
// AddUint32 is a variation of Add() func.
// Type of new value must be an integer.
func AddUint32(json []byte, value uint32, path ...string) ([]byte, error) {
return Add(json, []byte(strconv.FormatUint(uint64(value), 32)), path...)
}
// AddUint64 is a variation of Add() func.
// Type of new value must be an integer.
func AddUint64(json []byte, value uint64, path ...string) ([]byte, error) {
return Add(json, []byte(strconv.FormatUint(value, 64)), path...)
}
// AddFloat is a variation of Add() func.
// Type of new value must be an float64.
func AddFloat(json []byte, value float64, path ...string) ([]byte, error) {
return Add(json, []byte(strconv.FormatFloat(value, 'f', -1, 64)), path...)
}
// AddBool is a variation of Add() func.
// Type of new value must be an boolean.
func AddBool(json []byte, value bool, path ...string) ([]byte, error) {
if value {
return Add(json, []byte("true"), path...)
}
return Add(json, []byte("false"), path...)
}
// InsertString is a variation of Insert() func.
// Type of new value must be an string.
func InsertString(json []byte, index int, value string, path ...string) ([]byte, error) {
if index < 0 {
return nil, errIndexOutOfRange()
}
return Insert(json, index, []byte(formatType(value)), path...)
}
// InsertInt is a variation of Insert() func.
// Type of new value must be an integer.
func InsertInt(json []byte, index, value int, path ...string) ([]byte, error) {
if index < 0 {
return json, errIndexOutOfRange()
}
return Insert(json, index, []byte(strconv.Itoa(value)), path...)
}
// InsertInt32 is a variation of Insert() func.
// Type of new value must be an integer.
func InsertInt32(json []byte, index int, value int32, path ...string) ([]byte, error) {
if index < 0 {
return json, errIndexOutOfRange()
}
return Insert(json, index, []byte(strconv.FormatInt(int64(value), 32)), path...)
}
// InsertInt64 is a variation of Insert() func.
// Type of new value must be an integer.
func InsertInt64(json []byte, index int, value int64, path ...string) ([]byte, error) {
if index < 0 {
return json, errIndexOutOfRange()
}
return Insert(json, index, []byte(strconv.FormatInt(value, 64)), path...)
}
// InsertUint is a variation of Insert() func.
// Type of new value must be an integer.
func InsertUint(json []byte, index int, value uint, path ...string) ([]byte, error) {
if index < 0 {
return json, errIndexOutOfRange()
}
return Insert(json, index, []byte(strconv.FormatUint(uint64(value), 64)), path...)
}
// InsertUint32 is a variation of Insert() func.
// Type of new value must be an integer.
func InsertUint32(json []byte, index int, value uint32, path ...string) ([]byte, error) {
if index < 0 {
return json, errIndexOutOfRange()
}
return Insert(json, index, []byte(strconv.FormatUint(uint64(value), 32)), path...)
}
// InsertUint64 is a variation of Insert() func.
// Type of new value must be an integer.
func InsertUint64(json []byte, index int, value uint64, path ...string) ([]byte, error) {
if index < 0 {
return json, errIndexOutOfRange()
}
return Insert(json, index, []byte(strconv.FormatUint(value, 64)), path...)
}
// InsertFloat is a variation of Insert() func.
// Type of new value must be an float64.
func InsertFloat(json []byte, index int, value float64, path ...string) ([]byte, error) {
if index < 0 {
return json, errIndexOutOfRange()
}
return Insert(json, 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 InsertBool(json []byte, index int, value bool, path ...string) ([]byte, error) {
if index < 0 {
return json, errIndexOutOfRange()
}
if value {
return Insert(json, index, []byte("true"), path...)
}
return Insert(json, index, []byte("false"), path...)
}