-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstream.go
More file actions
473 lines (415 loc) · 10.4 KB
/
stream.go
File metadata and controls
473 lines (415 loc) · 10.4 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
package flexjson
import (
"errors"
"fmt"
"strconv"
)
// StreamingParser is a simplified JSON parser that processes JSON character by character
// and updates an output map as it goes along.
type StreamingParser struct {
output *map[string]any // Pointer to the output map
stack []interface{} // Stack of containers (maps/slices)
keys []string // Stack of keys
paths []string // Current path in the JSON
buffer string // Buffer for the current token
isEscaping bool // Whether we're currently escaping a character
inString bool // Whether we're currently inside a string
expectingKey bool // Whether we're expecting a key
expectColon bool // Whether we're expecting a colon
lastChar string // Last processed character
debug bool // Whether to print debug messages
}
// NewStreamingParser creates a new StreamingParser that will update the provided map
func NewStreamingParser(output *map[string]any) *StreamingParser {
if output == nil {
m := make(map[string]any)
output = &m
}
// Clear the output map to start fresh
for k := range *output {
delete(*output, k)
}
return &StreamingParser{
output: output,
stack: []interface{}{output},
keys: []string{},
paths: []string{},
buffer: "",
isEscaping: false,
inString: false,
expectingKey: true,
expectColon: false,
lastChar: "",
}
}
// ProcessString processes a chunk of JSON data character by character
func (sp *StreamingParser) ProcessString(chunk string) error {
for _, c := range chunk {
err := sp.ProcessChar(string(c))
if err != nil {
return err
}
}
return nil
}
// ProcessChar processes a single character in the JSON stream
func (sp *StreamingParser) ProcessChar(c string) error {
sp.log("- %s\texpecting key: %v, expecting colon: %v, isEscaping: %v, inString: %v, buffer: %s\n", c,
sp.expectingKey, sp.expectColon, sp.isEscaping, sp.inString, sp.buffer)
if (c == "," || c == "}" || c == "]") && sp.buffer != "" {
// Try to parse as a number
if value, err := sp.parseNumber(); err == nil {
sp.log("\tAdding number value: %v\n", value)
sp.addValue(value)
sp.buffer = ""
}
}
// Handle string state (special handling for escaping)
if sp.inString {
if sp.isEscaping {
// We're currently escaping
sp.log("\tEscaping character\n")
sp.buffer += c
sp.isEscaping = false
sp.lastChar = c
return nil
}
if c == "\\" {
sp.log("\tStart of escaping character\n")
sp.isEscaping = true
sp.lastChar = c
return nil
}
if c == "\"" {
sp.log("End of string\n")
// End of string
sp.inString = false
// Handle differently based on context
if sp.expectingKey {
sp.log("\tStoring as key\n")
// We just parsed a key
sp.keys = append(sp.keys, sp.buffer)
sp.expectingKey = false
sp.expectColon = true
} else {
sp.log("\tAdding as value\n")
// We just parsed a string value
sp.addValue(sp.buffer)
}
sp.buffer = ""
sp.lastChar = c
return nil
}
// Regular character in string
sp.buffer += c
sp.lastChar = c
return nil
}
// Handle other states
switch c {
case " ", "\t", "\r", "\n":
sp.log("Whitespace\n")
// Skip whitespace
sp.lastChar = c
return nil
case "{":
sp.log("Start of object\n")
// Start of an object
if len(sp.stack) == 1 && len(sp.keys) == 0 {
// Root object - already setup in our output
sp.log("\tRoot object\n")
sp.expectingKey = true
sp.lastChar = c
return nil
}
sp.log("\tCreating new object\n")
// Create new object
newObj := make(map[string]any)
// Add it to its parent
sp.addValue(newObj)
// Push it onto the stack
sp.stack = append(sp.stack, newObj)
sp.expectingKey = true
sp.lastChar = c
return nil
case "}":
sp.log("End of object\n")
// End of an object
if len(sp.stack) > 1 {
sp.stack = sp.stack[:len(sp.stack)-1] // Pop from stack
// If we have keys, also pop the last key
if len(sp.keys) > 0 {
sp.keys = sp.keys[:len(sp.keys)-1]
}
}
sp.expectingKey = false
sp.expectColon = false
sp.lastChar = c
return nil
case "[":
sp.log("Start of array\n")
// Start of an array
newArray := make([]interface{}, 0)
// Add it to its parent
sp.addValue(&newArray)
// Push it onto the stack
sp.stack = append(sp.stack, &newArray)
sp.expectingKey = false
sp.lastChar = c
return nil
case "]":
sp.log("End of array")
// End of an array
if len(sp.stack) > 1 {
sp.stack = sp.stack[:len(sp.stack)-1] // Pop from stack
// If we have keys, also pop the last key
if len(sp.keys) > 0 {
sp.keys = sp.keys[:len(sp.keys)-1]
}
}
sp.expectingKey = false
sp.expectColon = false
sp.lastChar = c
return nil
case "\"":
sp.log("Start of string\n")
// Start of a string
sp.inString = true
sp.buffer = ""
sp.lastChar = c
return nil
case ":":
sp.log("Colon. Expecting: %#v\n", sp.expectColon)
// Colon after key
if !sp.expectColon {
return errors.New(
fmt.Sprintf("unexpected ':' - state: %#v", sp),
)
}
sp.expectColon = false
sp.lastChar = c
return nil
case ",":
sp.log("Comma\n")
// Comma between values or key-value pairs
// After a comma, if the parent is an object, we expect a key
if parent, ok := sp.getCurrentContainer(); ok {
switch parent.(type) {
case *map[string]any, map[string]any:
sp.log("\tParent is an object. Expecting key\n")
sp.expectingKey = true
case *[]interface{}:
sp.log("\tParent is an array. Not expecting key\n")
sp.expectingKey = false
default:
sp.log("\tWarning: Parent is not an object or array. Not expecting key. Parent: %#v\n", parent)
}
}
sp.lastChar = c
return nil
case "t":
// Start of 'true'
if sp.buffer != "" {
return errors.New("unexpected 't'")
}
sp.buffer = "t"
sp.lastChar = c
return nil
case "r":
// Part of 'true'
if sp.buffer == "t" {
sp.buffer = "tr"
sp.lastChar = c
return nil
}
return errors.New("unexpected 'r'")
case "u":
// Part of 'true'
if sp.buffer == "tr" {
sp.buffer = "tru"
sp.lastChar = c
return nil
}
// Part of 'null'
if sp.buffer == "n" {
sp.buffer = "nu"
sp.lastChar = c
return nil
}
return errors.New("unexpected 'u'")
case "e":
// End of 'true' or part of 'false'
if sp.buffer == "tru" {
// Complete 'true'
sp.addValue(true)
sp.buffer = ""
sp.lastChar = c
return nil
}
if sp.buffer == "fals" {
// Complete 'false'
sp.addValue(false)
sp.buffer = ""
sp.lastChar = c
return nil
}
return errors.New("unexpected 'e'")
case "f":
// Start of 'false'
if sp.buffer != "" {
return errors.New("unexpected 'f'")
}
sp.buffer = "f"
sp.lastChar = c
return nil
case "a":
// Part of 'false'
if sp.buffer == "f" {
sp.buffer = "fa"
sp.lastChar = c
return nil
}
return errors.New("unexpected 'a'")
case "l":
// Part of 'false'
if sp.buffer == "fa" {
sp.buffer = "fal"
sp.lastChar = c
return nil
}
// Part of 'null'
if sp.buffer == "nu" {
sp.buffer = "nul"
sp.lastChar = c
return nil
}
if sp.buffer == "nul" {
// Complete 'null'
sp.addValue(nil)
sp.buffer = ""
sp.lastChar = c
return nil
}
return errors.New("unexpected 'l'")
case "s":
// Part of 'false'
if sp.buffer == "fal" {
sp.buffer = "fals"
sp.lastChar = c
return nil
}
return errors.New("unexpected 's'")
case "n":
// Start of 'null'
if sp.buffer != "" {
return errors.New("unexpected 'n'")
}
sp.buffer = "n"
sp.lastChar = c
return nil
default:
if (c >= "0" && c <= "9") || c == "-" || c == "." || c == "+" || c == "e" || c == "E" {
sp.buffer += c
sp.lastChar = c
return nil
}
return errors.New("unexpected character: " + c)
}
}
// parseNumber parses the current buffer as a number
func (sp *StreamingParser) parseNumber() (interface{}, error) {
// Try to parse as integer first
if i, err := strconv.ParseInt(sp.buffer, 10, 64); err == nil {
return i, nil
}
// Try to parse as float
if f, err := strconv.ParseFloat(sp.buffer, 64); err == nil {
return f, nil
}
return nil, errors.New("invalid number: " + sp.buffer)
}
// getCurrentContainer gets the current container (map or slice) from the stack
func (sp *StreamingParser) getCurrentContainer() (interface{}, bool) {
if len(sp.stack) == 0 {
return nil, false
}
return sp.stack[len(sp.stack)-1], true
}
// addValue adds a value to the current container
func (sp *StreamingParser) addValue(value interface{}) {
if len(sp.stack) == 0 {
return
}
current := sp.stack[len(sp.stack)-1]
switch container := current.(type) {
case *map[string]any:
// Add to map with the current key
if len(sp.keys) > 0 {
key := sp.keys[len(sp.keys)-1]
(*container)[key] = value
// Don't remove the key here, it gets removed when we close the object
}
case map[string]any:
// Add to map with the current key
if len(sp.keys) > 0 {
key := sp.keys[len(sp.keys)-1]
container[key] = value
// Don't remove the key here, it gets removed when we close the object
}
case *[]interface{}:
// Add to slice
*container = append(*container, value)
case []interface{}:
// Add to slice
newSlice := append(container, value)
// Update the parent with the new slice
if len(sp.stack) >= 2 {
parent := sp.stack[len(sp.stack)-2]
switch p := parent.(type) {
case *map[string]any:
// Parent is a map
if len(sp.keys) >= 2 {
key := sp.keys[len(sp.keys)-2]
(*p)[key] = newSlice
}
case map[string]any:
// Parent is a map
if len(sp.keys) >= 2 {
key := sp.keys[len(sp.keys)-2]
p[key] = newSlice
}
}
}
// Update the current container in the stack
sp.stack[len(sp.stack)-1] = newSlice
}
}
// Reset resets the parser state
func (sp *StreamingParser) Reset() {
// Clear the output map
for k := range *sp.output {
delete(*sp.output, k)
}
// Reset parser state
sp.stack = []interface{}{sp.output}
sp.keys = []string{}
sp.paths = []string{}
sp.buffer = ""
sp.isEscaping = false
sp.inString = false
sp.expectingKey = true
sp.expectColon = false
sp.lastChar = ""
}
func (sp *StreamingParser) SetDebug(value bool) {
sp.debug = value
}
func (sp *StreamingParser) log(msg string, args ...interface{}) {
if sp.debug {
fmt.Printf(msg, args...)
}
}
// GetCurrentOutput returns the current output map
func (sp *StreamingParser) GetCurrentOutput() map[string]any {
return *sp.output
}