2020-11-30 23:40:08 +03:00
|
|
|
// Package yaml provides a yaml codec
|
2021-10-25 20:42:28 +03:00
|
|
|
package yaml // import "go.unistack.org/micro-codec-yaml/v3"
|
2020-11-30 23:40:08 +03:00
|
|
|
|
|
|
|
import (
|
2023-03-05 23:48:42 +03:00
|
|
|
pb "go.unistack.org/micro-proto/v3/codec"
|
2021-10-25 20:30:38 +03:00
|
|
|
"go.unistack.org/micro/v3/codec"
|
|
|
|
rutil "go.unistack.org/micro/v3/util/reflect"
|
2024-09-30 20:21:09 +03:00
|
|
|
yaml "gopkg.in/yaml.v3"
|
2020-11-30 23:40:08 +03:00
|
|
|
)
|
|
|
|
|
2021-09-24 00:16:06 +03:00
|
|
|
type yamlCodec struct {
|
|
|
|
opts codec.Options
|
|
|
|
}
|
|
|
|
|
|
|
|
var _ codec.Codec = &yamlCodec{}
|
2020-11-30 23:40:08 +03:00
|
|
|
|
2021-09-24 00:16:06 +03:00
|
|
|
func (c *yamlCodec) Marshal(v interface{}, opts ...codec.Option) ([]byte, error) {
|
|
|
|
if v == nil {
|
2020-11-30 23:40:08 +03:00
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
2021-09-24 00:16:06 +03:00
|
|
|
options := c.opts
|
|
|
|
for _, o := range opts {
|
|
|
|
o(&options)
|
|
|
|
}
|
2024-09-17 12:16:07 +03:00
|
|
|
|
|
|
|
if options.Flatten {
|
|
|
|
if nv, nerr := rutil.StructFieldByTag(v, options.TagName, "flatten"); nerr == nil {
|
|
|
|
v = nv
|
|
|
|
}
|
2021-05-26 01:20:27 +03:00
|
|
|
}
|
2021-09-24 00:16:06 +03:00
|
|
|
|
2023-03-05 23:48:42 +03:00
|
|
|
switch m := v.(type) {
|
|
|
|
case *codec.Frame:
|
|
|
|
return m.Data, nil
|
|
|
|
case *pb.Frame:
|
2021-09-24 00:16:06 +03:00
|
|
|
return m.Data, nil
|
|
|
|
}
|
|
|
|
|
2021-05-26 01:20:27 +03:00
|
|
|
return yaml.Marshal(v)
|
2020-11-30 23:40:08 +03:00
|
|
|
}
|
|
|
|
|
2021-09-24 00:16:06 +03:00
|
|
|
func (c *yamlCodec) Unmarshal(b []byte, v interface{}, opts ...codec.Option) error {
|
2021-05-26 01:20:27 +03:00
|
|
|
if len(b) == 0 || v == nil {
|
2020-11-30 23:40:08 +03:00
|
|
|
return nil
|
|
|
|
}
|
2021-05-26 01:20:27 +03:00
|
|
|
|
2021-09-24 00:16:06 +03:00
|
|
|
options := c.opts
|
|
|
|
for _, o := range opts {
|
|
|
|
o(&options)
|
2020-11-30 23:40:08 +03:00
|
|
|
}
|
|
|
|
|
2024-09-17 12:16:07 +03:00
|
|
|
if options.Flatten {
|
|
|
|
if nv, nerr := rutil.StructFieldByTag(v, options.TagName, "flatten"); nerr == nil {
|
|
|
|
v = nv
|
|
|
|
}
|
2021-05-26 01:20:27 +03:00
|
|
|
}
|
|
|
|
|
2023-03-05 23:48:42 +03:00
|
|
|
switch m := v.(type) {
|
|
|
|
case *codec.Frame:
|
|
|
|
m.Data = b
|
|
|
|
return nil
|
|
|
|
case *pb.Frame:
|
2021-09-24 00:16:06 +03:00
|
|
|
m.Data = b
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-11-30 23:40:08 +03:00
|
|
|
return yaml.Unmarshal(b, v)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *yamlCodec) String() string {
|
|
|
|
return "yaml"
|
|
|
|
}
|
|
|
|
|
2021-09-24 00:16:06 +03:00
|
|
|
func NewCodec(opts ...codec.Option) *yamlCodec {
|
|
|
|
return &yamlCodec{opts: codec.NewOptions(opts...)}
|
2020-11-30 23:40:08 +03:00
|
|
|
}
|