8539f5c2cd
Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
57 lines
1,018 B
Go
57 lines
1,018 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"log"
|
|
|
|
object "github.com/nspcc-dev/neofs-api-go/v2/object/grpc"
|
|
session "github.com/nspcc-dev/neofs-api-go/v2/session/grpc"
|
|
objectGRPC "github.com/nspcc-dev/neofs-node/pkg/network/transport/object/grpc"
|
|
sessionGRPC "github.com/nspcc-dev/neofs-node/pkg/network/transport/session/grpc"
|
|
"github.com/nspcc-dev/neofs-node/pkg/util/grace"
|
|
)
|
|
|
|
func fatalOnErr(err error) {
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
}
|
|
|
|
func main() {
|
|
c := defaultCfg()
|
|
|
|
init_(c)
|
|
|
|
bootUp(c)
|
|
|
|
wait(c)
|
|
|
|
shutdown(c)
|
|
}
|
|
|
|
func init_(c *cfg) {
|
|
c.ctx = grace.NewGracefulContext(nil)
|
|
|
|
initGRPC(c)
|
|
|
|
initAccountingService(c)
|
|
initContainerService(c)
|
|
|
|
session.RegisterSessionServiceServer(c.cfgGRPC.server, sessionGRPC.New(new(sessionSvc)))
|
|
object.RegisterObjectServiceServer(c.cfgGRPC.server, objectGRPC.New(new(objectSvc)))
|
|
}
|
|
|
|
func bootUp(c *cfg) {
|
|
serveGRPC(c)
|
|
}
|
|
|
|
func wait(c *cfg) {
|
|
<-c.ctx.Done()
|
|
}
|
|
|
|
func shutdown(c *cfg) {
|
|
c.cfgGRPC.server.GracefulStop()
|
|
fmt.Println("gRPC server stopped")
|
|
|
|
c.wg.Wait()
|
|
}
|