go-common/app/interface/main/creative/cmd/main.go
2019-04-22 18:49:16 +08:00

52 lines
1.1 KiB
Go

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
}
}
}