|
- package main
-
- import (
- "flag"
- "fmt"
-
- "PCM/adaptor/PCM-HPC/PCM-TH/rpc/hpcTH"
- "PCM/adaptor/PCM-HPC/PCM-TH/rpc/internal/config"
- "PCM/adaptor/PCM-HPC/PCM-TH/rpc/internal/server"
- "PCM/adaptor/PCM-HPC/PCM-TH/rpc/internal/svc"
-
- "github.com/zeromicro/go-zero/core/conf"
- "github.com/zeromicro/go-zero/core/service"
- "github.com/zeromicro/go-zero/zrpc"
- "google.golang.org/grpc"
- "google.golang.org/grpc/reflection"
- )
-
- var configFile = flag.String("f", "adaptor/PCM-HPC/PCM-TH/rpc/etc/hpc-th-template.yaml", "the config file")
-
- func main() {
- flag.Parse()
-
- var c config.Config
- conf.MustLoad(*configFile, &c)
- ctx := svc.NewServiceContext(c)
-
- s := zrpc.MustNewServer(c.RpcServerConf, func(grpcServer *grpc.Server) {
- hpcTH.RegisterHpcTHServer(grpcServer, server.NewHpcTHServer(ctx))
-
- if c.Mode == service.DevMode || c.Mode == service.TestMode {
- reflection.Register(grpcServer)
- }
- })
- defer s.Stop()
-
- fmt.Printf("Starting rpc server at %s...\n", c.ListenOn)
- s.Start()
- }
|