forked from luonannet/xihe-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
133 lines (104 loc) · 3.35 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
package main
import (
"flag"
"os"
"github.com/opensourceways/community-robot-lib/logrusutil"
liboptions "github.com/opensourceways/community-robot-lib/options"
"github.com/sirupsen/logrus"
"github.com/opensourceways/xihe-server/bigmodel/infrastructure/bigmodels"
"github.com/opensourceways/xihe-server/common/infrastructure/pgsql"
"github.com/opensourceways/xihe-server/common/infrastructure/redis"
"github.com/opensourceways/xihe-server/config"
"github.com/opensourceways/xihe-server/controller"
"github.com/opensourceways/xihe-server/infrastructure/authingimpl"
"github.com/opensourceways/xihe-server/infrastructure/competitionimpl"
"github.com/opensourceways/xihe-server/infrastructure/gitlab"
"github.com/opensourceways/xihe-server/infrastructure/messages"
"github.com/opensourceways/xihe-server/infrastructure/mongodb"
"github.com/opensourceways/xihe-server/server"
)
type options struct {
service liboptions.ServiceOptions
enableDebug bool
}
func (o *options) Validate() error {
return o.service.Validate()
}
func gatherOptions(fs *flag.FlagSet, args ...string) (options, error) {
var o options
o.service.AddFlags(fs)
fs.BoolVar(
&o.enableDebug, "enable_debug", false,
"whether to enable debug model.",
)
err := fs.Parse(args)
return o, err
}
func main() {
logrusutil.ComponentInit("xihe")
log := logrus.NewEntry(logrus.StandardLogger())
o, err := gatherOptions(
flag.NewFlagSet(os.Args[0], flag.ExitOnError),
os.Args[1:]...,
)
if err != nil {
logrus.Fatalf("new options failed, err:%s", err.Error())
}
if err := o.Validate(); err != nil {
logrus.Fatalf("Invalid options, err:%s", err.Error())
}
if o.enableDebug {
logrus.SetLevel(logrus.DebugLevel)
logrus.Debug("debug enabled.")
}
// cfg
cfg := new(config.Config)
if err := config.LoadConfig(o.service.ConfigFile, cfg); err != nil {
logrus.Fatalf("load config, err:%s", err.Error())
}
// bigmodel
if err := bigmodels.Init(&cfg.BigModel); err != nil {
logrus.Fatalf("initialize big model failed, err:%s", err.Error())
}
// gitlab
if err := gitlab.Init(&cfg.Gitlab); err != nil {
logrus.Fatalf("initialize gitlab failed, err:%s", err.Error())
}
// competition
if err := competitionimpl.Init(&cfg.Competition); err != nil {
logrus.Fatalf("initialize competition failed, err:%s", err.Error())
}
// authing
authingimpl.Init(&cfg.Authing)
// controller
api := &cfg.API
api.MaxPictureSizeToVQA = cfg.BigModel.MaxPictureSizeToVQA
api.MaxPictureSizeToDescribe = cfg.BigModel.MaxPictureSizeToDescribe
if err := controller.Init(api, log); err != nil {
logrus.Fatalf("initialize api controller failed, err:%s", err.Error())
}
// mq
if err := messages.Init(cfg.GetMQConfig(), log, cfg.MQ.Topics); err != nil {
log.Fatalf("initialize mq failed, err:%v", err)
}
defer messages.Exit(log)
// mongo
m := &cfg.Mongodb
if err := mongodb.Initialize(m.DBConn, m.DBName, m.DBCert); err != nil {
logrus.Fatalf("initialize mongodb failed, err:%s", err.Error())
}
defer mongodb.Close()
// postgresql
if err := pgsql.Init(&cfg.Postgresql.DB); err != nil {
logrus.Fatalf("init postgresql failed, err:%s", err.Error())
}
// redis
if err := redis.Init(&cfg.Redis.DB); err != nil {
logrus.Fatalf("init redis failed, err:%s", err.Error())
}
// cfg
cfg.InitDomainConfig()
cfg.InitAppConfig()
// run
server.StartWebServer(o.service.Port, o.service.GracePeriod, cfg)
}