1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
package server
import (
"context"
"github.com/golang/glog"
examples "github.com/grpc-ecosystem/grpc-gateway/v2/examples/internal/proto/examplepb"
)
// Implements NonStandardServiceServer
type nonStandardServer struct{}
func newNonStandardServer() examples.NonStandardServiceServer {
return new(nonStandardServer)
}
func (s *nonStandardServer) Update(ctx context.Context, msg *examples.NonStandardUpdateRequest) (*examples.NonStandardMessage, error) {
glog.Info(msg)
newMsg := &examples.NonStandardMessage{
Thing: &examples.NonStandardMessage_Thing{SubThing: &examples.NonStandardMessage_Thing_SubThing{}}, // The fieldmask_helper doesn't generate nested structs if they are nil
}
applyFieldMask(newMsg, msg.Body, msg.UpdateMask)
glog.Info(newMsg)
return newMsg, nil
}
func (s *nonStandardServer) UpdateWithJSONNames(ctx context.Context, msg *examples.NonStandardWithJSONNamesUpdateRequest) (*examples.NonStandardMessageWithJSONNames, error) {
glog.Info(msg)
newMsg := &examples.NonStandardMessageWithJSONNames{
Thing: &examples.NonStandardMessageWithJSONNames_Thing{SubThing: &examples.NonStandardMessageWithJSONNames_Thing_SubThing{}}, // The fieldmask_helper doesn't generate nested structs if they are nil
}
applyFieldMask(newMsg, msg.Body, msg.UpdateMask)
glog.Info(newMsg)
return newMsg, nil
}
|