mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
e5b9f47623
This should fix incorrect encoding for json strings with char codes below 0x20 Updates https://github.com/VictoriaMetrics/VictoriaMetrics/issues/613
65 lines
1.3 KiB
Go
65 lines
1.3 KiB
Go
package quicktemplate
|
|
|
|
import (
|
|
"fmt"
|
|
"strings"
|
|
)
|
|
|
|
func hasSpecialChars(s string) bool {
|
|
if strings.IndexByte(s, '"') >= 0 || strings.IndexByte(s, '\\') >= 0 || strings.IndexByte(s, '<') >= 0 || strings.IndexByte(s, '\'') >= 0 {
|
|
return true
|
|
}
|
|
for i := 0; i < len(s); i++ {
|
|
if s[i] < 0x20 {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
}
|
|
|
|
func appendJSONString(dst []byte, s string, addQuotes bool) []byte {
|
|
if !hasSpecialChars(s) {
|
|
// Fast path - nothing to escape.
|
|
if !addQuotes {
|
|
return append(dst, s...)
|
|
}
|
|
dst = append(dst, '"')
|
|
dst = append(dst, s...)
|
|
dst = append(dst, '"')
|
|
return dst
|
|
}
|
|
|
|
// Slow path - there are chars to escape.
|
|
if addQuotes {
|
|
dst = append(dst, '"')
|
|
}
|
|
bb := AcquireByteBuffer()
|
|
var tmp []byte
|
|
tmp, bb.B = bb.B, dst
|
|
_, err := jsonReplacer.WriteString(bb, s)
|
|
if err != nil {
|
|
panic(fmt.Errorf("BUG: unexpected error returned from jsonReplacer.WriteString: %s", err))
|
|
}
|
|
dst, bb.B = bb.B, tmp
|
|
ReleaseByteBuffer(bb)
|
|
if addQuotes {
|
|
dst = append(dst, '"')
|
|
}
|
|
return dst
|
|
}
|
|
|
|
var jsonReplacer = strings.NewReplacer(func() []string {
|
|
a := []string{
|
|
"\n", `\n`,
|
|
"\r", `\r`,
|
|
"\t", `\t`,
|
|
"\"", `\"`,
|
|
"\\", `\\`,
|
|
"<", `\u003c`,
|
|
"'", `\u0027`,
|
|
}
|
|
for i := 0; i < 0x20; i++ {
|
|
a = append(a, string([]byte{byte(i)}), fmt.Sprintf(`\u%04x`, i))
|
|
}
|
|
return a
|
|
}()...)
|