-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
89 lines (81 loc) · 2.05 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
package main
import (
"github.com/gorilla/mux"
"github.com/lengdanran/sbl/proxy"
"log"
"net/http"
"strconv"
)
const CONF_FILE = "./conf/config.yaml" // filename of configuration.
// readConf read the configuration from CONF_FILE
func readConf() *Config {
conf, err := ReadConfig(CONF_FILE)
if err != nil {
log.Fatalf("read config error: %s", err)
return nil
}
err = conf.Validation()
if err != nil {
log.Fatalf("verify config error: %s", err)
return nil
}
conf.Print()
return conf
}
func maxAllowedMiddleware(n uint) mux.MiddlewareFunc {
sem := make(chan struct{}, n)
acquire := func() { sem <- struct{}{} }
release := func() { <-sem }
return func(next http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
acquire()
defer release()
next.ServeHTTP(w, r)
})
}
}
func main() {
// 1. read configuration
config := readConf()
if config == nil {
log.Printf("Read configuration from %s failed, exit....", CONF_FILE)
return
}
// 2. make routers for locations
router := mux.NewRouter()
for _, l := range config.Location {
httpProxy, err := proxy.NewHTTPProxy(l.ProxyPass, l.BalanceMode, l.ProxyPassWeight)
if err != nil {
log.Fatalf("create proxy error: %s", err)
}
if httpProxy == nil {
log.Printf("Init httpProxy failed....Skip this location %v\n", l)
continue
}
// start health check
if config.HealthCheck {
httpProxy.HealthCheck(config.HealthCheckInterval)
}
router.Handle(l.Pattern, httpProxy)
}
if config.MaxAllowed > 0 {
router.Use(maxAllowedMiddleware(config.MaxAllowed))
}
svr := http.Server{
Addr: ":" + strconv.Itoa(config.Port),
Handler: router,
}
// 3. listen and serve
log.Printf("Serve Schema = %s\n", config.Schema)
if config.Schema == "http" {
err := svr.ListenAndServe()
if err != nil {
log.Fatalf("listen and serve error: %s", err)
}
} else if config.Schema == "https" {
err := svr.ListenAndServeTLS(config.SSLCertificate, config.SSLCertificateKey)
if err != nil {
log.Fatalf("listen and serve error: %s", err)
}
}
}