You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
672 B
20 lines
672 B
3 years ago
|
package cbor
|
||
|
|
||
|
// JSONMarshalFunc is used to marshal interface to JSON encoded byte slice.
|
||
|
// Making it package level instead of embedded in Encoder brings
|
||
|
// some extra efforts at importing, but avoids value copy when the functions
|
||
|
// of Encoder being invoked.
|
||
|
// DO REMEMBER to set this variable at importing, or
|
||
|
// you might get a nil pointer dereference panic at runtime.
|
||
|
var JSONMarshalFunc func(v interface{}) ([]byte, error)
|
||
|
|
||
|
type Encoder struct{}
|
||
|
|
||
|
// AppendKey adds a key (string) to the binary encoded log message
|
||
|
func (e Encoder) AppendKey(dst []byte, key string) []byte {
|
||
|
if len(dst) < 1 {
|
||
|
dst = e.AppendBeginMarker(dst)
|
||
|
}
|
||
|
return e.AppendString(dst, key)
|
||
|
}
|