You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
113 lines
2.9 KiB
Go
113 lines
2.9 KiB
Go
package internal
|
|
|
|
import (
|
|
"fmt"
|
|
"net"
|
|
|
|
"github.com/zeromicro/go-zero/core/proc"
|
|
"github.com/zeromicro/go-zero/core/stat"
|
|
"github.com/zeromicro/go-zero/internal/health"
|
|
"github.com/zeromicro/go-zero/zrpc/internal/serverinterceptors"
|
|
"google.golang.org/grpc"
|
|
"google.golang.org/grpc/health/grpc_health_v1"
|
|
)
|
|
|
|
const probeNamePrefix = "zrpc"
|
|
|
|
type (
|
|
// ServerOption defines the method to customize a rpcServerOptions.
|
|
ServerOption func(options *rpcServerOptions)
|
|
|
|
rpcServerOptions struct {
|
|
metrics *stat.Metrics
|
|
health bool
|
|
}
|
|
|
|
rpcServer struct {
|
|
*baseRpcServer
|
|
name string
|
|
healthManager health.Probe
|
|
}
|
|
)
|
|
|
|
// NewRpcServer returns a Server.
|
|
func NewRpcServer(addr string, opts ...ServerOption) Server {
|
|
var options rpcServerOptions
|
|
for _, opt := range opts {
|
|
opt(&options)
|
|
}
|
|
if options.metrics == nil {
|
|
options.metrics = stat.NewMetrics(addr)
|
|
}
|
|
|
|
return &rpcServer{
|
|
baseRpcServer: newBaseRpcServer(addr, &options),
|
|
healthManager: health.NewHealthManager(fmt.Sprintf("%s-%s", probeNamePrefix, addr)),
|
|
}
|
|
}
|
|
|
|
func (s *rpcServer) SetName(name string) {
|
|
s.name = name
|
|
s.baseRpcServer.SetName(name)
|
|
}
|
|
|
|
func (s *rpcServer) Start(register RegisterFn) error {
|
|
lis, err := net.Listen("tcp", s.address)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
unaryInterceptors := []grpc.UnaryServerInterceptor{
|
|
serverinterceptors.UnaryTracingInterceptor,
|
|
serverinterceptors.UnaryCrashInterceptor,
|
|
serverinterceptors.UnaryStatInterceptor(s.metrics),
|
|
serverinterceptors.UnaryPrometheusInterceptor,
|
|
serverinterceptors.UnaryBreakerInterceptor,
|
|
}
|
|
unaryInterceptors = append(unaryInterceptors, s.unaryInterceptors...)
|
|
streamInterceptors := []grpc.StreamServerInterceptor{
|
|
serverinterceptors.StreamTracingInterceptor,
|
|
serverinterceptors.StreamCrashInterceptor,
|
|
serverinterceptors.StreamBreakerInterceptor,
|
|
}
|
|
streamInterceptors = append(streamInterceptors, s.streamInterceptors...)
|
|
options := append(s.options, WithUnaryServerInterceptors(unaryInterceptors...),
|
|
WithStreamServerInterceptors(streamInterceptors...))
|
|
server := grpc.NewServer(options...)
|
|
register(server)
|
|
|
|
// register the health check service
|
|
if s.health != nil {
|
|
grpc_health_v1.RegisterHealthServer(server, s.health)
|
|
s.health.Resume()
|
|
}
|
|
s.healthManager.MarkReady()
|
|
health.AddProbe(s.healthManager)
|
|
|
|
// we need to make sure all others are wrapped up,
|
|
// so we do graceful stop at shutdown phase instead of wrap up phase
|
|
waitForCalled := proc.AddWrapUpListener(func() {
|
|
if s.health != nil {
|
|
s.health.Shutdown()
|
|
}
|
|
server.GracefulStop()
|
|
})
|
|
defer waitForCalled()
|
|
|
|
return server.Serve(lis)
|
|
}
|
|
|
|
// WithMetrics returns a func that sets metrics to a Server.
|
|
func WithMetrics(metrics *stat.Metrics) ServerOption {
|
|
return func(options *rpcServerOptions) {
|
|
options.metrics = metrics
|
|
}
|
|
}
|
|
|
|
// WithRpcHealth returns a func that sets rpc health switch to a Server.
|
|
func WithRpcHealth(health bool) ServerOption {
|
|
return func(options *rpcServerOptions) {
|
|
options.health = health
|
|
}
|
|
}
|