123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- package main
- import (
- "context"
- "flag"
- "os"
- "os/signal"
- "syscall"
- "time"
- "go-common/app/service/bbq/video-image/conf"
- "go-common/app/service/bbq/video-image/server/grpc"
- "go-common/app/service/bbq/video-image/server/http"
- "go-common/app/service/bbq/video-image/service"
- // ecode "go-common/library/ecode/tip"
- "go-common/library/log"
- // "go-common/library/net/trace"
- )
- func main() {
- flag.Parse()
- if err := conf.Init(); err != nil {
- panic(err)
- }
- log.Init(conf.Conf.Log)
- defer log.Close()
- log.Info("start")
- // dev环境先不要
- // trace.Init(conf.Conf.Tracer)
- // defer trace.Close()
- // ecode.Init(conf.Conf.Ecode)
- serv := service.New(conf.Conf)
- gserv := grpc.New(conf.Conf.RPC, serv)
- http.Init(conf.Conf, serv)
- c := make(chan os.Signal, 1)
- signal.Notify(c, syscall.SIGHUP, syscall.SIGQUIT, syscall.SIGTERM, syscall.SIGINT)
- ctx, cancel := context.WithTimeout(context.Background(), time.Second*3)
- defer cancel()
- for {
- s := <-c
- log.Info("get a signal %s", s.String())
- switch s {
- case syscall.SIGQUIT, syscall.SIGTERM, syscall.SIGINT:
- gserv.Shutdown(ctx)
- log.Info("exit")
- return
- case syscall.SIGHUP:
- default:
- return
- }
- }
- }
|