diff options
author | Luke Shumaker <lukeshu@lukeshu.com> | 2023-02-16 22:56:37 -0700 |
---|---|---|
committer | Luke Shumaker <lukeshu@lukeshu.com> | 2023-02-16 22:56:37 -0700 |
commit | a0113140d447e59ce02d131499861aeafb02d328 (patch) | |
tree | 3a61b0c070a5db186e2c49fe70dff6f40431124e /reencode_string.go | |
parent | 6f8e7db1ac5ddd21b8e3fcc39a1e30fde9b62c3a (diff) | |
parent | d19e2c6884c2d409fcc828c870f1839ee84f38cb (diff) |
Merge branch 'lukeshu/reencode-refactor'
Diffstat (limited to 'reencode_string.go')
-rw-r--r-- | reencode_string.go | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/reencode_string.go b/reencode_string.go new file mode 100644 index 0000000..ab148d6 --- /dev/null +++ b/reencode_string.go @@ -0,0 +1,33 @@ +// Copyright (C) 2022-2023 Luke Shumaker <lukeshu@lukeshu.com> +// +// SPDX-License-Identifier: GPL-2.0-or-later + +package lowmemjson + +import ( + "git.lukeshu.com/go/lowmemjson/internal/jsonparse" +) + +type reEncodeString struct { + out reEncoderModule + + // BackslashEscape returns whether a given character in a + // string should be backslash-escaped. The bool argument is + // whether it was \u-escaped in the input. This does not + // affect characters that must or must-not be escaped to be + // valid JSON. + BackslashEscape BackslashEscaper +} + +var _ reEncoderModule = (*reEncodeString)(nil) + +func (enc *reEncodeString) PopWriteBarrier() { + enc.out.PopWriteBarrier() +} + +func (enc *reEncodeString) HandleRune(c rune, t jsonparse.RuneType, escape BackslashEscapeMode, stackSize int) error { + if t == jsonparse.RuneTypeStringChar { + escape = enc.BackslashEscape(c, escape) + } + return enc.out.HandleRune(c, t, escape, stackSize) +} |