forked from cloudfoundry/gorouter
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathresponsewriter.go
70 lines (55 loc) · 1.02 KB
/
responsewriter.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
package proxy
import (
"net/http"
)
type proxyResponseWriter struct {
w http.ResponseWriter
status int
size int
flusher http.Flusher
done bool
}
func newProxyResponseWriter(w http.ResponseWriter) *proxyResponseWriter {
proxyWriter := &proxyResponseWriter{
w: w,
flusher: w.(http.Flusher),
}
return proxyWriter
}
func (p *proxyResponseWriter) Header() http.Header {
return p.w.Header()
}
func (p *proxyResponseWriter) Write(b []byte) (int, error) {
if p.done {
return 0, nil
}
if p.status == 0 {
p.WriteHeader(http.StatusOK)
}
size, err := p.w.Write(b)
p.size += size
return size, err
}
func (p *proxyResponseWriter) WriteHeader(s int) {
if p.done {
return
}
p.w.WriteHeader(s)
if p.status == 0 {
p.status = s
}
}
func (p *proxyResponseWriter) Done() {
p.done = true
}
func (p *proxyResponseWriter) Flush() {
if p.flusher != nil {
p.flusher.Flush()
}
}
func (p *proxyResponseWriter) Status() int {
return p.status
}
func (p *proxyResponseWriter) Size() int {
return p.size
}