1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- package main
- import (
- "flag"
- _ "image/gif"
- _ "image/jpeg"
- _ "image/png"
- "os"
- "os/signal"
- "syscall"
- "time"
- "go-common/app/interface/main/upload/conf"
- "go-common/app/interface/main/upload/http"
- "go-common/app/interface/main/upload/service"
- ecode "go-common/library/ecode/tip"
- "go-common/library/log"
- "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)
- }
- ecode.Init(conf.Conf.Ecode)
- // init log
- log.Init(conf.Conf.XLog)
- defer log.Close()
- // service init
- s := service.New(conf.Conf)
- http.Init(conf.Conf, s)
- report.InitUser(nil)
- log.Info("bfs-upload-interface start!")
- // init signal
- c := make(chan os.Signal, 1)
- signal.Notify(c, syscall.SIGHUP, syscall.SIGQUIT, syscall.SIGTERM, syscall.SIGINT)
- for {
- s := <-c
- log.Info("upload get a signal %s", s.String())
- switch s {
- case syscall.SIGQUIT, syscall.SIGTERM, syscall.SIGINT:
- time.Sleep(1 * time.Second)
- log.Info("upload exit")
- return
- case syscall.SIGHUP:
- default:
- return
- }
- }
- }
|