You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
153 lines
3.5 KiB
153 lines
3.5 KiB
package grpc
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"net"
|
|
"time"
|
|
|
|
"github.com/go-kratos/kratos/v2/internal/host"
|
|
"github.com/go-kratos/kratos/v2/log"
|
|
"github.com/go-kratos/kratos/v2/middleware"
|
|
"github.com/go-kratos/kratos/v2/middleware/recovery"
|
|
"github.com/go-kratos/kratos/v2/middleware/status"
|
|
"github.com/go-kratos/kratos/v2/transport"
|
|
|
|
"google.golang.org/grpc"
|
|
)
|
|
|
|
const loggerName = "transport/grpc"
|
|
|
|
var _ transport.Server = (*Server)(nil)
|
|
|
|
// ServerOption is gRPC server option.
|
|
type ServerOption func(o *Server)
|
|
|
|
// Network with server network.
|
|
func Network(network string) ServerOption {
|
|
return func(s *Server) {
|
|
s.network = network
|
|
}
|
|
}
|
|
|
|
// Address with server address.
|
|
func Address(addr string) ServerOption {
|
|
return func(s *Server) {
|
|
s.address = addr
|
|
}
|
|
}
|
|
|
|
// Timeout with server timeout.
|
|
func Timeout(timeout time.Duration) ServerOption {
|
|
return func(s *Server) {
|
|
s.timeout = timeout
|
|
}
|
|
}
|
|
|
|
// Logger with server logger.
|
|
func Logger(logger log.Logger) ServerOption {
|
|
return func(s *Server) {
|
|
s.log = log.NewHelper(loggerName, logger)
|
|
}
|
|
}
|
|
|
|
// Middleware with server middleware.
|
|
func Middleware(m middleware.Middleware) ServerOption {
|
|
return func(s *Server) {
|
|
s.middleware = m
|
|
}
|
|
}
|
|
|
|
// Options with grpc options.
|
|
func Options(opts ...grpc.ServerOption) ServerOption {
|
|
return func(s *Server) {
|
|
s.grpcOpts = opts
|
|
}
|
|
}
|
|
|
|
// Server is a gRPC server wrapper.
|
|
type Server struct {
|
|
*grpc.Server
|
|
lis net.Listener
|
|
network string
|
|
address string
|
|
timeout time.Duration
|
|
log *log.Helper
|
|
middleware middleware.Middleware
|
|
grpcOpts []grpc.ServerOption
|
|
}
|
|
|
|
// NewServer creates a gRPC server by options.
|
|
func NewServer(opts ...ServerOption) *Server {
|
|
srv := &Server{
|
|
network: "tcp",
|
|
address: ":0",
|
|
timeout: time.Second,
|
|
log: log.NewHelper(loggerName, log.DefaultLogger),
|
|
middleware: middleware.Chain(
|
|
recovery.Recovery(),
|
|
status.Server(),
|
|
),
|
|
}
|
|
for _, o := range opts {
|
|
o(srv)
|
|
}
|
|
var grpcOpts = []grpc.ServerOption{
|
|
grpc.ChainUnaryInterceptor(
|
|
unaryServerInterceptor(srv.middleware, srv.timeout),
|
|
),
|
|
}
|
|
if len(srv.grpcOpts) > 0 {
|
|
grpcOpts = append(grpcOpts, srv.grpcOpts...)
|
|
}
|
|
srv.Server = grpc.NewServer(grpcOpts...)
|
|
return srv
|
|
}
|
|
|
|
// Endpoint return a real address to registry endpoint.
|
|
// examples:
|
|
// grpc://127.0.0.1:9000?isSecure=false
|
|
func (s *Server) Endpoint() (string, error) {
|
|
addr, err := host.Extract(s.address, s.lis)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
return fmt.Sprintf("grpc://%s", addr), nil
|
|
}
|
|
|
|
// Start start the gRPC server.
|
|
func (s *Server) Start() error {
|
|
lis, err := net.Listen(s.network, s.address)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
s.lis = lis
|
|
s.log.Infof("[gRPC] server listening on: %s", lis.Addr().String())
|
|
return s.Serve(lis)
|
|
}
|
|
|
|
// Stop stop the gRPC server.
|
|
func (s *Server) Stop() error {
|
|
s.GracefulStop()
|
|
s.log.Info("[gRPC] server stopping")
|
|
return nil
|
|
}
|
|
|
|
func unaryServerInterceptor(m middleware.Middleware, timeout time.Duration) grpc.UnaryServerInterceptor {
|
|
return func(ctx context.Context, req interface{}, info *grpc.UnaryServerInfo, handler grpc.UnaryHandler) (interface{}, error) {
|
|
ctx = transport.NewContext(ctx, transport.Transport{Kind: transport.KindGRPC})
|
|
ctx = NewServerContext(ctx, ServerInfo{Server: info.Server, FullMethod: info.FullMethod})
|
|
if timeout > 0 {
|
|
var cancel context.CancelFunc
|
|
ctx, cancel = context.WithTimeout(ctx, timeout)
|
|
defer cancel()
|
|
}
|
|
h := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return handler(ctx, req)
|
|
}
|
|
if m != nil {
|
|
h = m(h)
|
|
}
|
|
return h(ctx, req)
|
|
}
|
|
}
|
|
|