[#323] cmd/node: Compose functions for closing components in app

Closing callback can be registered in app through onShutdown method.

Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
remotes/KirillovDenis/release/v0.21.1
Leonard Lyubich 2021-01-18 11:56:14 +03:00 committed by Alex Vanin
parent 707434efa9
commit 9f41192bff
4 changed files with 29 additions and 4 deletions

View File

@ -187,6 +187,8 @@ type cfg struct {
netStatus *atomic.Int32
healthStatus *atomic.Int32
closers []func()
}
type cfgGRPC struct {

View File

@ -62,6 +62,10 @@ func initControlService(c *cfg) {
c.cfgControlService.server = grpc.NewServer()
}
c.onShutdown(func() {
stopGRPC("NeoFS Control API", c.cfgControlService.server, c.log)
})
control.RegisterControlServiceServer(c.cfgControlService.server, ctlSvc)
c.workers = append(c.workers, newWorkerFromFunc(func(ctx context.Context) {

View File

@ -4,6 +4,8 @@ import (
"fmt"
"net"
"github.com/nspcc-dev/neofs-node/pkg/util/logger"
"go.uber.org/zap"
"google.golang.org/grpc"
"google.golang.org/grpc/reflection"
)
@ -17,6 +19,10 @@ func initGRPC(c *cfg) {
c.cfgGRPC.server = grpc.NewServer(
grpc.MaxSendMsgSize(c.viper.GetInt(cfgMaxMsgSize)),
)
c.onShutdown(func() {
stopGRPC("NeoFS Public API", c.cfgGRPC.server, c.log)
})
}
func serveGRPC(c *cfg) {
@ -38,3 +44,13 @@ func serveGRPC(c *cfg) {
}
}()
}
func stopGRPC(name string, s *grpc.Server, l *logger.Logger) {
l = l.With(zap.String("name", name))
l.Info("stopping gRPC server...")
s.GracefulStop()
l.Info("gRPC server stopped successfully")
}

View File

@ -78,12 +78,15 @@ func wait(c *cfg) {
}
func shutdown(c *cfg) {
c.cfgGRPC.server.GracefulStop()
c.cfgControlService.server.GracefulStop()
c.log.Info("gRPC server stopped")
for _, closer := range c.closers {
closer()
}
goOffline(c)
c.wg.Wait()
}
func (c *cfg) onShutdown(f func()) {
c.closers = append(c.closers, f)
}