-
Notifications
You must be signed in to change notification settings - Fork 74
/
main.go
100 lines (93 loc) · 2.55 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
package main
import (
"github.com/didi/gatekeeper/dashboard_router"
"github.com/didi/gatekeeper/golang_common/lib"
"github.com/didi/gatekeeper/golang_common/zerolog/log"
"github.com/didi/gatekeeper/grpc_proxy_router"
"github.com/didi/gatekeeper/handler"
"github.com/didi/gatekeeper/http_proxy_router"
"github.com/didi/gatekeeper/tcp_proxy_router"
_ "net/http/pprof"
"os"
"os/signal"
"syscall"
)
func main() {
if err := lib.CmdExecute(); err != nil || lib.GetCmdPanelType() == "" {
os.Exit(1)
}
if lib.GetCmdPanelType() == "proxy" {
startProxy()
}
if lib.GetCmdPanelType() == "control" {
startControl()
}
if lib.GetCmdPanelType() == "both" {
startBoth()
}
}
func startControl() {
log.Info().Msg(lib.Purple("start controller application"))
lib.InitConf(lib.GetCmdConfPath())
defer lib.DestroyConf()
handler.ServiceManagerHandler.LoadAndWatch()
dashboard_router.HttpServerRun()
quit := make(chan os.Signal)
signal.Notify(quit, syscall.SIGINT, syscall.SIGTERM)
<-quit
dashboard_router.HttpServerStop()
}
func startProxy() {
log.Info().Msg(lib.Purple("start proxy application"))
lib.InitConf(lib.GetCmdConfPath())
defer lib.DestroyConf()
handler.ServiceManagerHandler.LoadAndWatch()
handler.AppManagerHandler.LoadAndWatch()
go func() {
http_proxy_router.HttpServerRun()
}()
go func() {
http_proxy_router.HttpsServerRun()
}()
go func() {
tcp_proxy_router.TcpManagerHandler.TcpServerRun()
}()
go func() {
grpc_proxy_router.GrpcManagerHandler.GrpcServerRun()
}()
quit := make(chan os.Signal)
signal.Notify(quit, syscall.SIGINT, syscall.SIGTERM)
<-quit
tcp_proxy_router.TcpManagerHandler.TcpServerStop()
grpc_proxy_router.GrpcManagerHandler.GrpcServerStop()
http_proxy_router.HttpServerStop()
http_proxy_router.HttpsServerStop()
}
func startBoth() {
log.Info().Msg(lib.Purple("start proxy application"))
lib.InitConf(lib.GetCmdConfPath())
defer lib.DestroyConf()
handler.ServiceManagerHandler.LoadAndWatch()
handler.AppManagerHandler.LoadAndWatch()
dashboard_router.HttpServerRun()
go func() {
http_proxy_router.HttpServerRun()
}()
go func() {
http_proxy_router.HttpsServerRun()
}()
go func() {
tcp_proxy_router.TcpManagerHandler.TcpServerRun()
}()
go func() {
grpc_proxy_router.GrpcManagerHandler.GrpcServerRun()
}()
quit := make(chan os.Signal)
signal.Notify(quit, syscall.SIGINT, syscall.SIGTERM)
<-quit
dashboard_router.HttpServerStop()
tcp_proxy_router.TcpManagerHandler.TcpServerStop()
grpc_proxy_router.GrpcManagerHandler.GrpcServerStop()
http_proxy_router.HttpServerStop()
http_proxy_router.HttpsServerStop()
}