You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.1 KiB
53 lines
1.1 KiB
package main |
|
|
|
import ( |
|
"flag" |
|
"os" |
|
"os/signal" |
|
"syscall" |
|
|
|
"go-common/app/interface/main/app-intl/conf" |
|
"go-common/app/interface/main/app-intl/http" |
|
ecode "go-common/library/ecode/tip" |
|
"go-common/library/log" |
|
"go-common/library/net/trace" |
|
"go-common/library/text/translate/chinese" |
|
) |
|
|
|
func main() { |
|
flag.Parse() |
|
if err := conf.Init(); err != nil { |
|
log.Error("conf.Init() error(%v)", err) |
|
panic(err) |
|
} |
|
// init log |
|
log.Init(conf.Conf.XLog) |
|
defer log.Close() |
|
// init chinese |
|
chinese.Init() |
|
log.Info("app-intl start") |
|
// init trace |
|
trace.Init(conf.Conf.Tracer) |
|
defer trace.Close() |
|
// ecode init |
|
ecode.Init(conf.Conf.Ecode) |
|
// service init |
|
http.Init(conf.Conf) |
|
// init pprof conf.Conf.Perf |
|
// init signal |
|
c := make(chan os.Signal, 1) |
|
signal.Notify(c, syscall.SIGHUP, syscall.SIGQUIT, syscall.SIGTERM, syscall.SIGINT) |
|
for { |
|
s := <-c |
|
log.Info("app-intl get a signal %s", s.String()) |
|
switch s { |
|
case syscall.SIGQUIT, syscall.SIGTERM, syscall.SIGSTOP, syscall.SIGINT: |
|
log.Info("app-intl exit") |
|
return |
|
case syscall.SIGHUP: |
|
// TODO reload |
|
default: |
|
return |
|
} |
|
} |
|
}
|
|
|