2016-12-14 18:41:48 +03:00
|
|
|
// Package codec is an interface for encoding messages
|
2024-09-16 23:02:45 +03:00
|
|
|
package codec
|
2015-11-27 03:17:36 +03:00
|
|
|
|
2015-11-28 14:22:29 +03:00
|
|
|
import (
|
2020-02-19 02:05:38 +03:00
|
|
|
"errors"
|
2015-11-28 14:22:29 +03:00
|
|
|
)
|
|
|
|
|
2020-02-19 02:05:38 +03:00
|
|
|
var (
|
2020-11-03 02:02:32 +03:00
|
|
|
// ErrInvalidMessage returned when invalid messge passed to codec
|
2020-02-19 02:05:38 +03:00
|
|
|
ErrInvalidMessage = errors.New("invalid message")
|
2020-11-23 16:18:47 +03:00
|
|
|
// ErrUnknownContentType returned when content-type is unknown
|
|
|
|
ErrUnknownContentType = errors.New("unknown content-type")
|
2020-02-19 02:05:38 +03:00
|
|
|
)
|
|
|
|
|
2020-11-25 10:43:13 +03:00
|
|
|
var (
|
2021-02-13 15:35:56 +03:00
|
|
|
// DefaultCodec is the global default codec
|
2022-05-03 14:38:44 +03:00
|
|
|
DefaultCodec = NewCodec()
|
2021-05-25 22:20:39 +03:00
|
|
|
// DefaultTagName specifies struct tag name to control codec Marshal/Unmarshal
|
|
|
|
DefaultTagName = "codec"
|
2020-11-25 10:43:13 +03:00
|
|
|
)
|
|
|
|
|
2024-09-16 22:41:36 +03:00
|
|
|
// Codec encodes/decodes various types of messages.
|
2015-11-27 03:17:36 +03:00
|
|
|
type Codec interface {
|
2021-09-22 00:57:10 +03:00
|
|
|
Marshal(v interface{}, opts ...Option) ([]byte, error)
|
|
|
|
Unmarshal(b []byte, v interface{}, opts ...Option) error
|
2019-01-10 12:42:02 +03:00
|
|
|
String() string
|
|
|
|
}
|
|
|
|
|
2024-09-16 23:02:45 +03:00
|
|
|
type CodecV2 interface {
|
|
|
|
Marshal(buf []byte, v interface{}, opts ...Option) ([]byte, error)
|
|
|
|
Unmarshal(buf []byte, v interface{}, opts ...Option) error
|
|
|
|
String() string
|
2021-10-01 01:08:24 +03:00
|
|
|
}
|
2023-04-02 14:10:57 +03:00
|
|
|
|
|
|
|
// RawMessage is a raw encoded JSON value.
|
|
|
|
// It implements Marshaler and Unmarshaler and can be used to delay decoding or precompute a encoding.
|
|
|
|
type RawMessage []byte
|
|
|
|
|
|
|
|
// MarshalJSON returns m as the JSON encoding of m.
|
|
|
|
func (m *RawMessage) MarshalJSON() ([]byte, error) {
|
|
|
|
if m == nil {
|
|
|
|
return []byte("null"), nil
|
2024-09-10 10:43:45 +03:00
|
|
|
} else if len(*m) == 0 {
|
|
|
|
return []byte("null"), nil
|
2023-04-02 14:10:57 +03:00
|
|
|
}
|
|
|
|
return *m, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// UnmarshalJSON sets *m to a copy of data.
|
|
|
|
func (m *RawMessage) UnmarshalJSON(data []byte) error {
|
|
|
|
if m == nil {
|
|
|
|
return errors.New("RawMessage UnmarshalJSON on nil pointer")
|
|
|
|
}
|
|
|
|
*m = append((*m)[0:0], data...)
|
|
|
|
return nil
|
|
|
|
}
|