279 lines
6.3 KiB
Go
279 lines
6.3 KiB
Go
|
package json
|
||
|
|
||
|
import (
|
||
|
"encoding/json"
|
||
|
"fmt"
|
||
|
"math"
|
||
|
"strconv"
|
||
|
)
|
||
|
|
||
|
func AppendBool(dst []byte, val bool) []byte {
|
||
|
return strconv.AppendBool(dst, val)
|
||
|
}
|
||
|
|
||
|
func AppendBools(dst []byte, vals []bool) []byte {
|
||
|
if len(vals) == 0 {
|
||
|
return append(dst, '[', ']')
|
||
|
}
|
||
|
dst = append(dst, '[')
|
||
|
dst = strconv.AppendBool(dst, vals[0])
|
||
|
if len(vals) > 1 {
|
||
|
for _, val := range vals[1:] {
|
||
|
dst = strconv.AppendBool(append(dst, ','), val)
|
||
|
}
|
||
|
}
|
||
|
dst = append(dst, ']')
|
||
|
return dst
|
||
|
}
|
||
|
|
||
|
func AppendInt(dst []byte, val int) []byte {
|
||
|
return strconv.AppendInt(dst, int64(val), 10)
|
||
|
}
|
||
|
|
||
|
func AppendInts(dst []byte, vals []int) []byte {
|
||
|
if len(vals) == 0 {
|
||
|
return append(dst, '[', ']')
|
||
|
}
|
||
|
dst = append(dst, '[')
|
||
|
dst = strconv.AppendInt(dst, int64(vals[0]), 10)
|
||
|
if len(vals) > 1 {
|
||
|
for _, val := range vals[1:] {
|
||
|
dst = strconv.AppendInt(append(dst, ','), int64(val), 10)
|
||
|
}
|
||
|
}
|
||
|
dst = append(dst, ']')
|
||
|
return dst
|
||
|
}
|
||
|
|
||
|
func AppendInt8(dst []byte, val int8) []byte {
|
||
|
return strconv.AppendInt(dst, int64(val), 10)
|
||
|
}
|
||
|
|
||
|
func AppendInts8(dst []byte, vals []int8) []byte {
|
||
|
if len(vals) == 0 {
|
||
|
return append(dst, '[', ']')
|
||
|
}
|
||
|
dst = append(dst, '[')
|
||
|
dst = strconv.AppendInt(dst, int64(vals[0]), 10)
|
||
|
if len(vals) > 1 {
|
||
|
for _, val := range vals[1:] {
|
||
|
dst = strconv.AppendInt(append(dst, ','), int64(val), 10)
|
||
|
}
|
||
|
}
|
||
|
dst = append(dst, ']')
|
||
|
return dst
|
||
|
}
|
||
|
|
||
|
func AppendInt16(dst []byte, val int16) []byte {
|
||
|
return strconv.AppendInt(dst, int64(val), 10)
|
||
|
}
|
||
|
|
||
|
func AppendInts16(dst []byte, vals []int16) []byte {
|
||
|
if len(vals) == 0 {
|
||
|
return append(dst, '[', ']')
|
||
|
}
|
||
|
dst = append(dst, '[')
|
||
|
dst = strconv.AppendInt(dst, int64(vals[0]), 10)
|
||
|
if len(vals) > 1 {
|
||
|
for _, val := range vals[1:] {
|
||
|
dst = strconv.AppendInt(append(dst, ','), int64(val), 10)
|
||
|
}
|
||
|
}
|
||
|
dst = append(dst, ']')
|
||
|
return dst
|
||
|
}
|
||
|
|
||
|
func AppendInt32(dst []byte, val int32) []byte {
|
||
|
return strconv.AppendInt(dst, int64(val), 10)
|
||
|
}
|
||
|
|
||
|
func AppendInts32(dst []byte, vals []int32) []byte {
|
||
|
if len(vals) == 0 {
|
||
|
return append(dst, '[', ']')
|
||
|
}
|
||
|
dst = append(dst, '[')
|
||
|
dst = strconv.AppendInt(dst, int64(vals[0]), 10)
|
||
|
if len(vals) > 1 {
|
||
|
for _, val := range vals[1:] {
|
||
|
dst = strconv.AppendInt(append(dst, ','), int64(val), 10)
|
||
|
}
|
||
|
}
|
||
|
dst = append(dst, ']')
|
||
|
return dst
|
||
|
}
|
||
|
|
||
|
func AppendInt64(dst []byte, val int64) []byte {
|
||
|
return strconv.AppendInt(dst, val, 10)
|
||
|
}
|
||
|
|
||
|
func AppendInts64(dst []byte, vals []int64) []byte {
|
||
|
if len(vals) == 0 {
|
||
|
return append(dst, '[', ']')
|
||
|
}
|
||
|
dst = append(dst, '[')
|
||
|
dst = strconv.AppendInt(dst, vals[0], 10)
|
||
|
if len(vals) > 1 {
|
||
|
for _, val := range vals[1:] {
|
||
|
dst = strconv.AppendInt(append(dst, ','), val, 10)
|
||
|
}
|
||
|
}
|
||
|
dst = append(dst, ']')
|
||
|
return dst
|
||
|
}
|
||
|
|
||
|
func AppendUint(dst []byte, val uint) []byte {
|
||
|
return strconv.AppendUint(dst, uint64(val), 10)
|
||
|
}
|
||
|
|
||
|
func AppendUints(dst []byte, vals []uint) []byte {
|
||
|
if len(vals) == 0 {
|
||
|
return append(dst, '[', ']')
|
||
|
}
|
||
|
dst = append(dst, '[')
|
||
|
dst = strconv.AppendUint(dst, uint64(vals[0]), 10)
|
||
|
if len(vals) > 1 {
|
||
|
for _, val := range vals[1:] {
|
||
|
dst = strconv.AppendUint(append(dst, ','), uint64(val), 10)
|
||
|
}
|
||
|
}
|
||
|
dst = append(dst, ']')
|
||
|
return dst
|
||
|
}
|
||
|
|
||
|
func AppendUint8(dst []byte, val uint8) []byte {
|
||
|
return strconv.AppendUint(dst, uint64(val), 10)
|
||
|
}
|
||
|
|
||
|
func AppendUints8(dst []byte, vals []uint8) []byte {
|
||
|
if len(vals) == 0 {
|
||
|
return append(dst, '[', ']')
|
||
|
}
|
||
|
dst = append(dst, '[')
|
||
|
dst = strconv.AppendUint(dst, uint64(vals[0]), 10)
|
||
|
if len(vals) > 1 {
|
||
|
for _, val := range vals[1:] {
|
||
|
dst = strconv.AppendUint(append(dst, ','), uint64(val), 10)
|
||
|
}
|
||
|
}
|
||
|
dst = append(dst, ']')
|
||
|
return dst
|
||
|
}
|
||
|
|
||
|
func AppendUint16(dst []byte, val uint16) []byte {
|
||
|
return strconv.AppendUint(dst, uint64(val), 10)
|
||
|
}
|
||
|
|
||
|
func AppendUints16(dst []byte, vals []uint16) []byte {
|
||
|
if len(vals) == 0 {
|
||
|
return append(dst, '[', ']')
|
||
|
}
|
||
|
dst = append(dst, '[')
|
||
|
dst = strconv.AppendUint(dst, uint64(vals[0]), 10)
|
||
|
if len(vals) > 1 {
|
||
|
for _, val := range vals[1:] {
|
||
|
dst = strconv.AppendUint(append(dst, ','), uint64(val), 10)
|
||
|
}
|
||
|
}
|
||
|
dst = append(dst, ']')
|
||
|
return dst
|
||
|
}
|
||
|
|
||
|
func AppendUint32(dst []byte, val uint32) []byte {
|
||
|
return strconv.AppendUint(dst, uint64(val), 10)
|
||
|
}
|
||
|
|
||
|
func AppendUints32(dst []byte, vals []uint32) []byte {
|
||
|
if len(vals) == 0 {
|
||
|
return append(dst, '[', ']')
|
||
|
}
|
||
|
dst = append(dst, '[')
|
||
|
dst = strconv.AppendUint(dst, uint64(vals[0]), 10)
|
||
|
if len(vals) > 1 {
|
||
|
for _, val := range vals[1:] {
|
||
|
dst = strconv.AppendUint(append(dst, ','), uint64(val), 10)
|
||
|
}
|
||
|
}
|
||
|
dst = append(dst, ']')
|
||
|
return dst
|
||
|
}
|
||
|
|
||
|
func AppendUint64(dst []byte, val uint64) []byte {
|
||
|
return strconv.AppendUint(dst, uint64(val), 10)
|
||
|
}
|
||
|
|
||
|
func AppendUints64(dst []byte, vals []uint64) []byte {
|
||
|
if len(vals) == 0 {
|
||
|
return append(dst, '[', ']')
|
||
|
}
|
||
|
dst = append(dst, '[')
|
||
|
dst = strconv.AppendUint(dst, vals[0], 10)
|
||
|
if len(vals) > 1 {
|
||
|
for _, val := range vals[1:] {
|
||
|
dst = strconv.AppendUint(append(dst, ','), val, 10)
|
||
|
}
|
||
|
}
|
||
|
dst = append(dst, ']')
|
||
|
return dst
|
||
|
}
|
||
|
|
||
|
func AppendFloat(dst []byte, val float64, bitSize int) []byte {
|
||
|
// JSON does not permit NaN or Infinity. A typical JSON encoder would fail
|
||
|
// with an error, but a logging library wants the data to get thru so we
|
||
|
// make a tradeoff and store those types as string.
|
||
|
switch {
|
||
|
case math.IsNaN(val):
|
||
|
return append(dst, `"NaN"`...)
|
||
|
case math.IsInf(val, 1):
|
||
|
return append(dst, `"+Inf"`...)
|
||
|
case math.IsInf(val, -1):
|
||
|
return append(dst, `"-Inf"`...)
|
||
|
}
|
||
|
return strconv.AppendFloat(dst, val, 'f', -1, bitSize)
|
||
|
}
|
||
|
|
||
|
func AppendFloat32(dst []byte, val float32) []byte {
|
||
|
return AppendFloat(dst, float64(val), 32)
|
||
|
}
|
||
|
|
||
|
func AppendFloats32(dst []byte, vals []float32) []byte {
|
||
|
if len(vals) == 0 {
|
||
|
return append(dst, '[', ']')
|
||
|
}
|
||
|
dst = append(dst, '[')
|
||
|
dst = AppendFloat(dst, float64(vals[0]), 32)
|
||
|
if len(vals) > 1 {
|
||
|
for _, val := range vals[1:] {
|
||
|
dst = AppendFloat(append(dst, ','), float64(val), 32)
|
||
|
}
|
||
|
}
|
||
|
dst = append(dst, ']')
|
||
|
return dst
|
||
|
}
|
||
|
|
||
|
func AppendFloat64(dst []byte, val float64) []byte {
|
||
|
return AppendFloat(dst, val, 64)
|
||
|
}
|
||
|
|
||
|
func AppendFloats64(dst []byte, vals []float64) []byte {
|
||
|
if len(vals) == 0 {
|
||
|
return append(dst, '[', ']')
|
||
|
}
|
||
|
dst = append(dst, '[')
|
||
|
dst = AppendFloat(dst, vals[0], 32)
|
||
|
if len(vals) > 1 {
|
||
|
for _, val := range vals[1:] {
|
||
|
dst = AppendFloat(append(dst, ','), val, 64)
|
||
|
}
|
||
|
}
|
||
|
dst = append(dst, ']')
|
||
|
return dst
|
||
|
}
|
||
|
|
||
|
func AppendInterface(dst []byte, i interface{}) []byte {
|
||
|
marshaled, err := json.Marshal(i)
|
||
|
if err != nil {
|
||
|
return AppendString(dst, fmt.Sprintf("marshaling error: %v", err))
|
||
|
}
|
||
|
return append(dst, marshaled...)
|
||
|
}
|