forked from TrueCloudLab/frostfs-api-go
Evgenii Stratonikov
4a330a5706
gopatch: ``` @@ var err, msg, data, t, protojson identifier var obj expression @@ +import "git.frostfs.info/TrueCloudLab/frostfs-api-go/v2/rpc/message" -import protojson "google.golang.org/protobuf/encoding/protojson" -msg := obj -if err := protojson.Unmarshal(data, msg); err != nil { -return err -} -return t.FromGRPCMessage(msg) +return message.UnmarshalJSON(t, data, obj) @@ var err, msg, data, t, goproto identifier var obj expression @@ +import "git.frostfs.info/TrueCloudLab/frostfs-api-go/v2/rpc/message" -import goproto "google.golang.org/protobuf/proto" -msg := obj -if err := goproto.Unmarshal(data, msg); err != nil { -return err -} -return t.FromGRPCMessage(msg) +return message.Unmarshal(t, data, obj) ``` Signed-off-by: Evgenii Stratonikov <e.stratonikov@yadro.com>
86 lines
2.4 KiB
Go
86 lines
2.4 KiB
Go
package session
|
|
|
|
import (
|
|
"git.frostfs.info/TrueCloudLab/frostfs-api-go/v2/rpc/message"
|
|
session "git.frostfs.info/TrueCloudLab/frostfs-api-go/v2/session/grpc"
|
|
)
|
|
|
|
func (c *ObjectSessionContext) MarshalJSON() ([]byte, error) {
|
|
return message.MarshalJSON(c)
|
|
}
|
|
|
|
func (c *ObjectSessionContext) UnmarshalJSON(data []byte) error {
|
|
return message.UnmarshalJSON(c, data, new(session.ObjectSessionContext))
|
|
}
|
|
|
|
func (l *TokenLifetime) MarshalJSON() ([]byte, error) {
|
|
return message.MarshalJSON(l)
|
|
}
|
|
|
|
func (l *TokenLifetime) UnmarshalJSON(data []byte) error {
|
|
return message.UnmarshalJSON(l, data, new(session.SessionToken_Body_TokenLifetime))
|
|
}
|
|
|
|
func (t *TokenBody) MarshalJSON() ([]byte, error) {
|
|
return message.MarshalJSON(t)
|
|
}
|
|
|
|
func (t *TokenBody) UnmarshalJSON(data []byte) error {
|
|
return message.UnmarshalJSON(t, data, new(session.SessionToken_Body))
|
|
}
|
|
|
|
func (t *Token) MarshalJSON() ([]byte, error) {
|
|
return message.MarshalJSON(t)
|
|
}
|
|
|
|
func (t *Token) UnmarshalJSON(data []byte) error {
|
|
return message.UnmarshalJSON(t, data, new(session.SessionToken))
|
|
}
|
|
|
|
func (x *XHeader) MarshalJSON() ([]byte, error) {
|
|
return message.MarshalJSON(x)
|
|
}
|
|
|
|
func (x *XHeader) UnmarshalJSON(data []byte) error {
|
|
return message.UnmarshalJSON(x, data, new(session.XHeader))
|
|
}
|
|
|
|
func (r *RequestMetaHeader) MarshalJSON() ([]byte, error) {
|
|
return message.MarshalJSON(r)
|
|
}
|
|
|
|
func (r *RequestMetaHeader) UnmarshalJSON(data []byte) error {
|
|
return message.UnmarshalJSON(r, data, new(session.RequestMetaHeader))
|
|
}
|
|
|
|
func (r *RequestVerificationHeader) MarshalJSON() ([]byte, error) {
|
|
return message.MarshalJSON(r)
|
|
}
|
|
|
|
func (r *RequestVerificationHeader) UnmarshalJSON(data []byte) error {
|
|
return message.UnmarshalJSON(r, data, new(session.RequestVerificationHeader))
|
|
}
|
|
|
|
func (r *ResponseMetaHeader) MarshalJSON() ([]byte, error) {
|
|
return message.MarshalJSON(r)
|
|
}
|
|
|
|
func (r *ResponseMetaHeader) UnmarshalJSON(data []byte) error {
|
|
return message.UnmarshalJSON(r, data, new(session.ResponseMetaHeader))
|
|
}
|
|
|
|
func (r *ResponseVerificationHeader) MarshalJSON() ([]byte, error) {
|
|
return message.MarshalJSON(r)
|
|
}
|
|
|
|
func (r *ResponseVerificationHeader) UnmarshalJSON(data []byte) error {
|
|
return message.UnmarshalJSON(r, data, new(session.ResponseVerificationHeader))
|
|
}
|
|
|
|
func (x *ContainerSessionContext) MarshalJSON() ([]byte, error) {
|
|
return message.MarshalJSON(x)
|
|
}
|
|
|
|
func (x *ContainerSessionContext) UnmarshalJSON(data []byte) error {
|
|
return message.UnmarshalJSON(x, data, new(session.ContainerSessionContext))
|
|
}
|