123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- package main
- import (
- "flag"
- "os"
- "os/signal"
- "syscall"
- "time"
- "go-common/app/interface/main/creative/conf"
- "go-common/app/interface/main/creative/http"
- ecode "go-common/library/ecode/tip"
- "go-common/library/log"
- "go-common/library/net/trace"
- "go-common/library/queue/databus/report"
- )
- 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()
- report.InitUser(nil)
- log.Info("creative-center start")
- // service init
- ecode.Init(conf.Conf.Ecode)
- http.Init(conf.Conf)
- // signal handler
- c := make(chan os.Signal, 1)
- signal.Notify(c, syscall.SIGHUP, syscall.SIGQUIT, syscall.SIGTERM, syscall.SIGINT)
- for {
- s := <-c
- log.Info("creative-center get a signal %s", s.String())
- switch s {
- case syscall.SIGQUIT, syscall.SIGTERM, syscall.SIGSTOP, syscall.SIGINT:
- time.Sleep(time.Second * 2)
- http.Close()
- log.Info("creative-center exit")
- return
- case syscall.SIGHUP:
- // TODO reload
- default:
- return
- }
- }
- }
|