summary refs log tree commit diff
path: root/vendor/github.com/rs/zerolog/encoder_json.go
blob: 6f96c68adc812e9f0c34aff4b50cb8247a7152a2 (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
// +build !binary_log

package zerolog

// encoder_json.go file contains bindings to generate
// JSON encoded byte stream.

import (
	"encoding/base64"
	"github.com/rs/zerolog/internal/json"
)

var (
	_ encoder = (*json.Encoder)(nil)

	enc = json.Encoder{}
)

func init() {
	// using closure to reflect the changes at runtime.
	json.JSONMarshalFunc = func(v interface{}) ([]byte, error) {
		return InterfaceMarshalFunc(v)
	}
}

func appendJSON(dst []byte, j []byte) []byte {
	return append(dst, j...)
}
func appendCBOR(dst []byte, cbor []byte) []byte {
	dst = append(dst, []byte("\"data:application/cbor;base64,")...)
	l := len(dst)
	enc := base64.StdEncoding
	n := enc.EncodedLen(len(cbor))
	for i := 0; i < n; i++ {
		dst = append(dst, '.')
	}
	enc.Encode(dst[l:], cbor)
	return append(dst, '"')
}

func decodeIfBinaryToString(in []byte) string {
	return string(in)
}

func decodeObjectToStr(in []byte) string {
	return string(in)
}

func decodeIfBinaryToBytes(in []byte) []byte {
	return in
}