-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
203 lines (185 loc) · 5.04 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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
package main
import (
"bytes"
"context"
"flag"
"io"
"log"
"net/http"
"net/http/httputil"
"net/url"
"os/exec"
"regexp"
"time"
"github.com/radovskyb/watcher"
)
func Build() (bytes.Buffer, error) {
cmd := exec.Command("bash", "-c", buildCommand)
cmd.Dir = springDir
var b bytes.Buffer
cmd.Stdout = &b
cmd.Stderr = &b
err := cmd.Run()
if err != nil {
log.Printf("Error %v", b.String())
return b, err
}
return b, nil
}
var defaultclient = http.Client{
Timeout: 10 * time.Millisecond,
}
func WaitForStartup() {
// From: https://github.com/spring-projects/spring-boot/blob/main/spring-boot-project/spring-boot-devtools/src/main/java/org/springframework/boot/devtools/autoconfigure/DevToolsProperties.java
// The default pollInterval is 1 second and the default quietPeriod is 400ms.
// We sleep for 1400ms to give spring-boot-devtools enough time to catch the class file changes before we attempt
// to hit the health check.
time.Sleep(1400 * time.Millisecond)
retries := 0
// We wrap this in a func() to make full use of defer to do cleanup when returning
checkhealth := func() bool {
retries++
req, err := http.NewRequest(http.MethodGet, baseUrl+healthCheckPath, nil)
if err != nil {
log.Printf("client: could not create request: %s", err)
return false
}
res, err := defaultclient.Do(req)
if err != nil {
if retries%50 == 0 {
log.Printf("client: error making http request: %s", err)
}
return false
}
defer res.Body.Close() // Successful Do, so we need to close the body
if res.StatusCode == 200 {
return true
} else {
log.Printf("client: status code: %d", res.StatusCode)
}
return false
}
for !checkhealth() {
time.Sleep(100 * time.Millisecond)
}
}
func NewSingleHostBodyBufReverseProxy(target *url.URL, key string) *httputil.ReverseProxy {
director := func(req *http.Request) {
httputil.NewSingleHostReverseProxy(target).Director(req)
if req.Body != nil && req.ContentLength != 0 {
var buf bytes.Buffer
tee := io.TeeReader(req.Body, &buf)
req.Body = io.NopCloser(tee)
ctx := context.WithValue(req.Context(), key, &buf)
r2 := req.WithContext(ctx)
*req = *r2
}
}
return &httputil.ReverseProxy{Director: director}
}
var lastBuild bytes.Buffer
var lastBuildError error
var buildRunning bool
var springDir string
var baseUrl string
var healthCheckPath string
var buildCommand string
func main() {
flag.StringVar(&springDir, "spring-dir", ".", "Directory of the Spring Boot project")
flag.StringVar(&baseUrl, "base-url", "http://localhost:8080", "Base URL")
flag.StringVar(&healthCheckPath, "health-check-path", "/actuator/health", "Health Check Endpoint")
flag.StringVar(&buildCommand, "build-command", "./gradlew build -x test", "Build command")
flag.Parse()
w := watcher.New()
w.SetMaxEvents(1)
r := regexp.MustCompile("^*.java$")
w.AddFilterHook(watcher.RegexFilterHook(r, false))
if err := w.AddRecursive(springDir); err != nil {
log.Fatalln(err)
}
// for path, f := range w.WatchedFiles() {
// log.Printf("%s: %s\n", path, f.Name())
// }
go func() {
for {
select {
case event := <-w.Event:
log.Println(event)
buildRunning = true
log.Println("Building.....")
lastBuild, lastBuildError = Build()
if lastBuildError == nil {
log.Println("Build done, waiting for health check.....")
WaitForStartup()
log.Println("Health Check done")
}
buildRunning = false
case err := <-w.Error:
log.Fatalln(err)
case <-w.Closed:
return
}
}
}()
go func() {
if err := w.Start(time.Millisecond * 100); err != nil {
log.Fatalln(err)
}
}()
remote, err := url.Parse(baseUrl)
if err != nil {
panic(err)
}
handler := func(p *httputil.ReverseProxy) func(http.ResponseWriter, *http.Request) {
return func(w http.ResponseWriter, r *http.Request) {
log.Println(r.URL)
if buildRunning {
log.Println("Waiting for build to finish")
for buildRunning {
time.Sleep(20 * time.Millisecond)
}
log.Println("Build done")
}
if lastBuildError != nil {
w.Write(lastBuild.Bytes())
} else {
r.Host = remote.Host
p.ServeHTTP(w, r)
}
}
}
// proxy := httputil.NewSingleHostReverseProxy(remote)
proxy := NewSingleHostBodyBufReverseProxy(remote, "bodybuf")
proxy.ErrorHandler = func(w http.ResponseWriter, r *http.Request, err error) {
time.Sleep(3 * time.Second)
retryContext := r.Context().Value("retry")
retry := 0
if retryContext != nil {
retry = retryContext.(int)
}
retry++
if retry == 100 {
w.WriteHeader(502)
return
} else {
if r.Body != nil && r.ContentLength != 0 {
if buf, ok := r.Context().Value("bodybuf").(*bytes.Buffer); ok {
if r.ContentLength == int64(buf.Len()) {
r.Body = io.NopCloser(buf)
}
}
}
ctx := context.WithValue(r.Context(), "retry", retry)
r2 := r.WithContext(ctx)
log.Printf("Retrying %d %v", retry, err)
proxy.ServeHTTP(w, r2)
log.Printf("Done Retrying %d", retry)
}
}
http.HandleFunc("/", handler(proxy))
log.Println("Started")
err = http.ListenAndServe(":9000", nil)
if err != nil {
panic(err)
}
}