-
Notifications
You must be signed in to change notification settings - Fork 948
/
bfe_server_init.go
117 lines (96 loc) · 2.93 KB
/
bfe_server_init.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
// Copyright (c) 2019 The BFE Authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// create bfe service and init
package bfe_server
import (
"github.com/baidu/go-lib/log"
)
import (
"github.com/bfenetworks/bfe/bfe_config/bfe_conf"
"github.com/bfenetworks/bfe/bfe_modules"
)
func StartUp(cfg bfe_conf.BfeConfig, version string, confRoot string, dryRun bool) error {
var err error
// set all available modules
bfe_modules.SetModules()
// create bfe server
bfeServer := NewBfeServer(cfg, confRoot, version)
// initial http
if err = bfeServer.InitHttp(); err != nil {
log.Logger.Error("StartUp(): InitHttp():%s", err.Error())
return err
}
// initial https
if err = bfeServer.InitHttps(); err != nil {
log.Logger.Error("StartUp(): InitHttps():%s", err.Error())
return err
}
// load data
if err = bfeServer.InitDataLoad(); err != nil {
log.Logger.Error("StartUp(): bfeServer.InitDataLoad():%s",
err.Error())
return err
}
log.Logger.Info("StartUp(): bfeServer.InitDataLoad() OK")
// setup signal table
bfeServer.InitSignalTable()
log.Logger.Info("StartUp():bfeServer.InitSignalTable() OK")
// init web monitor
monitorPort := cfg.Server.MonitorPort
if err = bfeServer.InitWebMonitor(monitorPort); err != nil {
log.Logger.Error("StartUp(): InitWebMonitor():%s", err.Error())
return err
}
// register modules
if err = bfeServer.RegisterModules(cfg.Server.Modules); err != nil {
log.Logger.Error("StartUp(): RegisterModules():%s", err.Error())
return err
}
// initialize modules
if err = bfeServer.InitModules(); err != nil {
log.Logger.Error("StartUp(): bfeServer.InitModules():%s",
err.Error())
return err
}
log.Logger.Info("StartUp():bfeServer.InitModules() OK")
if dryRun {
return nil
}
// initialize listeners
if err = bfeServer.InitListeners(cfg); err != nil {
log.Logger.Error("StartUp(): InitListeners():%v", err)
return err
}
// start embedded web server if enabled
if cfg.Server.MonitorEnabled {
bfeServer.Monitor.Start()
}
serveChan := make(chan error)
// start goroutine to accept http connections
for i := 0; i < cfg.Server.AcceptNum; i++ {
go func() {
httpErr := bfeServer.ServeHttp(bfeServer.HttpListener)
serveChan <- httpErr
}()
}
// start goroutine to accept https connections
for i := 0; i < cfg.Server.AcceptNum; i++ {
go func() {
httpsErr := bfeServer.ServeHttps(bfeServer.HttpsListener)
serveChan <- httpsErr
}()
}
err = <-serveChan
return err
}