<- Back to shtanton's homepage
aboutsummaryrefslogtreecommitdiff
path: root/json/write.go
blob: 97b3f4ecebeeebd4439cdec7321f0852d0cacc42 (plain)
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
package json

import (
	"bufio"
	"fmt"
	"main/walk"
	// "text/scanner"
)

func isInt(segment walk.PathSegment) bool {
	_, isInt := segment.(int)
	return isInt
}

func isString(segment walk.PathSegment) bool {
	_, isString := segment.(string)
	return isString
}

func segmentEqual(left walk.PathSegment, right walk.PathSegment) bool {
	switch left := left.(type) {
	case int:
		_, isInt := right.(int)
		return isInt
	case string:
		right, isString := right.(string)
		return isString && left == right
	default:
		panic("Invalid path segment type")
	}
}

type JSONWriterState int
const (
	JSONWriterStateBeforeValue JSONWriterState = iota
	JSONWriterStateAfterValue
	JSONWriterStateInArray
	JSONWriterStateInMap
)

func NewJSONWriter(writer *bufio.Writer) *JSONWriter {
	return &JSONWriter {
		path: nil,
		writer: writer,
		state: JSONWriterStateBeforeValue,
	}
}

type JSONWriter struct {
	path []walk.PathSegment
	writer *bufio.Writer
	state JSONWriterState
}

func (writer *JSONWriter) navigateTo(keepLen int, path []walk.PathSegment, state JSONWriterState) {
	for {
		if keepLen > len(writer.path) {
			panic("keepLen > len(writer.path)")
		} else if len(writer.path) == keepLen {
			if len(path) == 0 {
				switch writer.state {
				case JSONWriterStateBeforeValue:
					switch state {
					case JSONWriterStateBeforeValue:
						return
					case JSONWriterStateAfterValue:
						panic("Cannot go from BeforeValue to AfterValue in navigateTo")
					case JSONWriterStateInArray:
						writer.writer.WriteRune('[')
						writer.state = JSONWriterStateInArray
					case JSONWriterStateInMap:
						writer.writer.WriteRune('{')
						writer.state = JSONWriterStateInMap
					}
				case JSONWriterStateAfterValue:
					if state == JSONWriterStateAfterValue {
						return
					} else {
						if keepLen == 0 {
							writer.writer.WriteRune('\n')
							writer.state = JSONWriterStateBeforeValue
						} else {
							writer.writer.WriteRune(',')
							path = writer.path[len(writer.path) - 1:]
							writer.path = writer.path[:len(writer.path) - 1]
							keepLen -= 1
							switch path[0].(type) {
							case string:
								writer.state = JSONWriterStateInMap
							case int:
								writer.state = JSONWriterStateInArray
							}
						}
					}
				case JSONWriterStateInArray:
					if state == JSONWriterStateInArray {
						return
					} else {
						writer.writer.WriteRune(']')
						writer.state = JSONWriterStateAfterValue
					}
				case JSONWriterStateInMap:
					if state == JSONWriterStateInMap {
						return
					} else {
						writer.writer.WriteRune('}')
						writer.state = JSONWriterStateAfterValue
					}
				}
			} else {
				// len(path) > 0
				switch writer.state {
				case JSONWriterStateBeforeValue:
					switch path[0].(type) {
					case string:
						writer.writer.WriteRune('{')
						writer.state = JSONWriterStateInMap
					case int:
						writer.writer.WriteRune('[')
						writer.state = JSONWriterStateInArray
					}
				case JSONWriterStateAfterValue:
					if keepLen == 0 {
						writer.writer.WriteRune('\n')
						writer.state = JSONWriterStateBeforeValue
					} else {
						writer.writer.WriteRune(',')
						path = append(writer.path[len(writer.path) - 1:], path...)
						writer.path = writer.path[:len(writer.path) - 1]
						keepLen -= 1
						switch path[0].(type) {
						case string:
							writer.state = JSONWriterStateInMap
						case int:
							writer.state = JSONWriterStateInArray
						}
					}
				case JSONWriterStateInArray:
					switch path[0].(type) {
					case string:
						writer.writer.WriteRune(']')
						writer.state = JSONWriterStateAfterValue
					case int:
						writer.path = append(writer.path, path[0])
						path = path[1:]
						keepLen += 1
						writer.state = JSONWriterStateBeforeValue
					}
				case JSONWriterStateInMap:
					switch p := path[0].(type) {
					case string:
						fmt.Fprintf(writer.writer, "%q:", p)
						writer.path = append(writer.path, p)
						path = path[1:]
						keepLen += 1
						writer.state = JSONWriterStateBeforeValue
					case int:
						writer.writer.WriteRune('}')
						writer.state = JSONWriterStateAfterValue
					}
				}
			}
		} else {
			switch writer.state {
			case JSONWriterStateBeforeValue:
				panic("Cannot close structures from BeforeValue in navigateTo")
			case JSONWriterStateAfterValue:
				if len(writer.path) == keepLen + 1 {
					if len(path) == 0 {
						switch writer.path[len(writer.path) - 1].(type) {
						case string:
							if state == JSONWriterStateInMap {
								writer.writer.WriteRune(',')
								writer.path = writer.path[:len(writer.path) - 1]
								writer.state = JSONWriterStateInMap
							} else {
								writer.writer.WriteRune('}')
								writer.path = writer.path[:len(writer.path) - 1]
							}
						case int:
							if state == JSONWriterStateInArray {
								writer.writer.WriteRune(',')
								writer.path = writer.path[:len(writer.path) - 1]
								writer.state = JSONWriterStateInArray
							} else {
								writer.writer.WriteRune(']')
								writer.path = writer.path[:len(writer.path) - 1]
							}
						}
					} else {
						switch writer.path[len(writer.path) - 1].(type) {
						case string:
							switch path[0].(type) {
							case string:
								writer.writer.WriteRune(',')
								writer.path = writer.path[:len(writer.path) - 1]
								writer.state = JSONWriterStateInMap
							case int:
								writer.writer.WriteRune('}')
								writer.path = writer.path[:len(writer.path) - 1]
							}
						case int:
							switch path[0].(type) {
							case string:
								writer.writer.WriteRune(']')
								writer.path = writer.path[:len(writer.path) - 1]
							case int:
								writer.writer.WriteRune(',')
								writer.path = writer.path[:len(writer.path) - 1]
								writer.state = JSONWriterStateInArray
							}
						}
					}
				} else {
					switch writer.path[len(writer.path) - 1].(type) {
					case string:
						writer.writer.WriteRune('}')
						writer.path = writer.path[:len(writer.path) - 1]
					case int:
						writer.writer.WriteRune(']')
						writer.path = writer.path[:len(writer.path) - 1]
					}
				}
			case JSONWriterStateInArray:
				writer.writer.WriteRune(']')
				writer.state = JSONWriterStateAfterValue
			case JSONWriterStateInMap:
				writer.writer.WriteRune('}')
				writer.state = JSONWriterStateAfterValue
			}
		}
	}
}

func (writer *JSONWriter) Write(value walk.Value) error {
	return nil
}

func (writer *JSONWriter) pathWrite(value walk.Value, path []walk.PathSegment) error {
	switch value := value.(type) {
	case walk.NullValue:
		return writer.write(path, value)
	case walk.BoolValue:
		return writer.write(path, value)
	case walk.NumberValue:
		return writer.write(path, value)
	case walk.StringValue:
		return writer.write(path, value)
	case walk.ArrayValue:
		if len(value) == 0 {
			return writer.write(path, value)
		} else {
			for _, element := range value {
				err := writer.pathWrite(element.Value, append(path, element.Index))
				if err != nil {
					return err
				}
			}
			return nil
		}
	case walk.MapValue:
		if len(value) == 0 {
			return writer.write(path, value)
		} else {
			for _, element := range value {
				err := writer.pathWrite(element.Value, append(path, element.Key))
				if err != nil {
					return err
				}
			}
			return nil
		}
	case walk.RuneValue:
		panic("Cannot write rune value")
	default:
		panic("Unrecognised value type")
	}
}

func (writer *JSONWriter) indent(level int) {
	for i := 0; i < level; i += 1 {
		writer.writer.WriteRune('\t')
	}
}

func (writer *JSONWriter) write(targetPath []walk.PathSegment, value walk.Value) error {
	diversionPoint := 0
	for diversionPoint < len(writer.path) && diversionPoint < len(targetPath) && segmentEqual(writer.path[diversionPoint], targetPath[diversionPoint]) {
		diversionPoint += 1
	}

	switch writer.state {
	case JSONWriterStateBeforeValue:
		goto beforeValue
	case JSONWriterStateAfterValue:
		goto afterValue
	case JSONWriterStateInArray:
		goto inArray
	case JSONWriterStateInMap:
		goto inMap
	}

	beforeValue: {
		if diversionPoint < len(writer.path) {
			panic("Writing a value before doing a necessary leave")
		}
		if diversionPoint < len(targetPath) {
			segment := targetPath[diversionPoint]
			switch segment.(type) {
			case int:
				writer.writer.WriteString("[\n")
				goto inArray
			case string:
				writer.writer.WriteString("{\n")
				goto inMap
			default:
				panic("Invalid path segment")
			}
		}

		switch value := value.(type) {
		case walk.NullValue:
			writer.writer.WriteString("null")
			writer.state = JSONWriterStateAfterValue
			return nil
		case walk.BoolValue:
			if value {
				writer.writer.WriteString("true")
			} else {
				writer.writer.WriteString("false")
			}
			writer.state = JSONWriterStateAfterValue
			return nil
		case walk.NumberValue:
			writer.writer.WriteString(fmt.Sprintf("%v", value))
			writer.state = JSONWriterStateAfterValue
			return nil
		case walk.StringValue:
			writer.writer.WriteString(fmt.Sprintf("%q", value))
			writer.state = JSONWriterStateAfterValue
			return nil
		case walk.ArrayValue:
			// TODO: write the contents of the structures
			writer.writer.WriteString("[\n")
			writer.state = JSONWriterStateInArray
			return nil
		case walk.MapValue:
			writer.writer.WriteString("{\n")
			writer.state = JSONWriterStateInMap
			return nil
		default:
			panic("Invalid value type")
		}
	}

	afterValue: {
		if diversionPoint < len(writer.path) {
			if diversionPoint == len(writer.path) - 1 && diversionPoint < len(targetPath) {
				segment := writer.path[diversionPoint]
				switch segment.(type) {
				case int:
					_, isNumber := targetPath[diversionPoint].(walk.NumberValue)
					if isNumber {
						writer.writer.WriteString(",\n")
						writer.path = writer.path[:diversionPoint]
						goto inArray
					}
				case string:
					_, isString := targetPath[diversionPoint].(walk.StringValue)
					if isString {
						writer.writer.WriteString(",\n")
						writer.path = writer.path[:diversionPoint]
						goto inMap
					}
				default:
					panic("Invalid segment type")
				}
			}

			writer.writer.WriteString("\n")
			switch writer.path[len(writer.path) - 1].(type) {
			case int:
				writer.path = writer.path[:len(writer.path) - 1]
				goto inArray
			case string:
				writer.path = writer.path[:len(writer.path) - 1]
				goto inMap
			default:
				panic("Invalid segment type")
			}
		}

		// TODO: handle len(writer.path) == 0
		if diversionPoint < len(targetPath) {
			if len(writer.path) == 0 {
				writer.writer.WriteString("\n")
				goto beforeValue
			}
			segment := writer.path[diversionPoint - 1]
			writer.writer.WriteString(",")
			diversionPoint--
			writer.path = writer.path[:diversionPoint]
			switch segment.(type) {
			case int:
				goto inArray
			case string:
				goto inMap
			default:
				panic("Invalid segment type")
			}
		}

		if len(writer.path) == 0 {
			writer.writer.WriteString("\n")
			goto beforeValue
		}
		segment := writer.path[diversionPoint - 1]
		writer.writer.WriteString(",\n")
		diversionPoint--
		writer.path = writer.path[:diversionPoint]
		switch segment.(type) {
		case int:
			goto inArray
		case string:
			goto inMap
		default:
			panic("Invalid segment type")
		}
	}

	inArray: {
		if diversionPoint < len(writer.path) {
			writer.indent(len(writer.path))
			writer.writer.WriteString("]")
			goto afterValue
		}

		if diversionPoint < len(targetPath) {
			switch s := targetPath[diversionPoint].(type) {
			case int:
				writer.path = append(writer.path, s)
				diversionPoint++
				writer.indent(len(writer.path))
				goto beforeValue
			case string:
				writer.indent(len(writer.path))
				writer.writer.WriteString("]")
				goto afterValue
			default:
				panic("Invalid segment type")
			}
		}

		writer.indent(len(writer.path))
		writer.writer.WriteString("]")
		goto afterValue
	}

	inMap: {
		if diversionPoint < len(writer.path) {
			writer.indent(len(writer.path))
			writer.writer.WriteString("}")
			goto afterValue
		}

		if diversionPoint < len(targetPath) {
			switch s := targetPath[diversionPoint].(type) {
			case int:
				writer.indent(len(writer.path))
				writer.writer.WriteString("}")
				goto afterValue
			case string:
				writer.path = append(writer.path, s)
				diversionPoint++
				writer.indent(len(writer.path))
				writer.writer.WriteString(fmt.Sprintf("%q: ", s))
				goto beforeValue
			}
		}

		writer.indent(len(writer.path))
		writer.writer.WriteString("}")
		goto afterValue
	}
}

func (writer *JSONWriter) AssertDone() {
	switch writer.state {
	case JSONWriterStateInArray:
		writer.writer.WriteString("]")
	case JSONWriterStateInMap:
		writer.writer.WriteString("}")
	}
	for i := len(writer.path) - 1; i >= 0; i -= 1 {
		switch writer.path[i].(type) {
		case int:
			writer.writer.WriteString("\n")
			writer.indent(i)
			writer.writer.WriteString("]")
		case string:
			writer.writer.WriteString("\n")
			writer.indent(i)
			writer.writer.WriteString("}")
		default:
			panic("Invalid path segment type")
		}
	}
	writer.writer.Flush()
}