2020-11-13 12:26:23 +00:00
|
|
|
package object
|
|
|
|
|
|
|
|
import (
|
|
|
|
object "github.com/nspcc-dev/neofs-api-go/v2/object/grpc"
|
|
|
|
"google.golang.org/protobuf/encoding/protojson"
|
|
|
|
)
|
|
|
|
|
|
|
|
func (h *ShortHeader) MarshalJSON() ([]byte, error) {
|
|
|
|
return protojson.MarshalOptions{
|
|
|
|
EmitUnpopulated: true,
|
|
|
|
}.Marshal(
|
|
|
|
ShortHeaderToGRPCMessage(h),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (h *ShortHeader) UnmarshalJSON(data []byte) error {
|
|
|
|
msg := new(object.ShortHeader)
|
|
|
|
|
|
|
|
if err := protojson.Unmarshal(data, msg); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
*h = *ShortHeaderFromGRPCMessage(msg)
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
2020-11-13 12:31:15 +00:00
|
|
|
|
|
|
|
func (a *Attribute) MarshalJSON() ([]byte, error) {
|
|
|
|
return protojson.MarshalOptions{
|
|
|
|
EmitUnpopulated: true,
|
|
|
|
}.Marshal(
|
|
|
|
AttributeToGRPCMessage(a),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (a *Attribute) UnmarshalJSON(data []byte) error {
|
|
|
|
msg := new(object.Header_Attribute)
|
|
|
|
|
|
|
|
if err := protojson.Unmarshal(data, msg); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
*a = *AttributeFromGRPCMessage(msg)
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|