123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- package main
- import (
- "flag"
- "go-common/library/queue/databus/report"
- "os"
- "time"
- "go-common/app/admin/main/space/conf"
- "go-common/app/admin/main/space/http"
- "go-common/app/admin/main/space/service"
- "go-common/library/log"
- "go-common/library/net/trace"
- "go-common/library/os/signal"
- "go-common/library/syscall"
- )
- var (
- s *service.Service
- )
- func main() {
- flag.Parse()
- if err := conf.Init(); err != nil {
- log.Error("conf.Init() error(%v)", err)
- panic(err)
- }
- log.Init(conf.Conf.Log)
- defer log.Close()
- trace.Init(conf.Conf.Tracer)
- defer trace.Close()
- // service init
- s = service.New(conf.Conf)
- http.Init(conf.Conf, s)
- report.InitManager(conf.Conf.ManagerReport)
- log.Info("space-admin start")
- ch := make(chan os.Signal, 1)
- signal.Notify(ch, syscall.SIGHUP, syscall.SIGQUIT, syscall.SIGTERM, syscall.SIGINT, syscall.SIGSTOP)
- for {
- si := <-ch
- switch si {
- case syscall.SIGQUIT, syscall.SIGTERM, syscall.SIGSTOP, syscall.SIGINT:
- log.Info("get a signal %s, stop the space-admin process", si.String())
- time.Sleep(time.Second)
- return
- case syscall.SIGHUP:
- default:
- return
- }
- }
- }
|