package main import ( "flag" "os" "os/signal" "syscall" "time" "go-common/app/interface/main/videoup/conf" "go-common/app/interface/main/videoup/http" "go-common/app/interface/main/videoup/service" 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.Xlog) defer log.Close() trace.Init(conf.Conf.Tracer) defer trace.Close() ecode.Init(conf.Conf.Ecode) log.Info("videoup start") // service init report.InitUser(nil) svr := service.New(conf.Conf) http.Init(conf.Conf, svr) // init signal c := make(chan os.Signal, 1) signal.Notify(c, syscall.SIGHUP, syscall.SIGQUIT, syscall.SIGTERM, syscall.SIGINT) for { s := <-c log.Info("videoup get a signal %s", s.String()) switch s { case syscall.SIGQUIT, syscall.SIGTERM, syscall.SIGINT: log.Info("videoup exit") svr.Close() time.Sleep(time.Second) return case syscall.SIGHUP: // TODO reload default: return } } }