gin/response_writer.go

96 lines
1.7 KiB
Go
Raw Normal View History

2014-08-29 21:49:50 +04:00
// Copyright 2014 Manu Martinez-Almeida. All rights reserved.
// Use of this source code is governed by a MIT style
// license that can be found in the LICENSE file.
2014-07-04 02:01:28 +04:00
package gin
import (
2014-08-25 15:58:43 +04:00
"bufio"
"net"
2014-07-04 02:01:28 +04:00
"net/http"
)
const (
noWritten = -1
defaultStatus = 200
)
2014-07-04 02:01:28 +04:00
type (
ResponseWriter interface {
http.ResponseWriter
http.Hijacker
http.Flusher
http.CloseNotifier
2014-07-04 02:01:28 +04:00
Status() int
Size() int
2014-07-04 02:01:28 +04:00
Written() bool
2014-08-18 07:24:48 +04:00
WriteHeaderNow()
2014-07-04 02:01:28 +04:00
}
responseWriter struct {
http.ResponseWriter
size int
2015-03-23 06:45:33 +03:00
status int
2014-07-04 02:01:28 +04:00
}
)
func (w *responseWriter) reset(writer http.ResponseWriter) {
w.ResponseWriter = writer
w.size = noWritten
w.status = defaultStatus
2014-07-04 02:01:28 +04:00
}
2014-08-18 07:24:48 +04:00
func (w *responseWriter) WriteHeader(code int) {
2014-08-24 06:35:11 +04:00
if code > 0 {
2014-08-18 07:24:48 +04:00
w.status = code
if w.Written() {
2015-05-12 16:22:13 +03:00
debugPrint("[WARNING] Headers were already written")
2014-08-18 07:24:48 +04:00
}
}
2014-07-04 02:01:28 +04:00
}
2014-08-18 07:24:48 +04:00
func (w *responseWriter) WriteHeaderNow() {
if !w.Written() {
w.size = 0
2014-08-18 07:24:48 +04:00
w.ResponseWriter.WriteHeader(w.status)
}
}
func (w *responseWriter) Write(data []byte) (n int, err error) {
w.WriteHeaderNow()
n, err = w.ResponseWriter.Write(data)
w.size += n
return
2014-07-04 02:01:28 +04:00
}
func (w *responseWriter) Status() int {
return w.status
}
func (w *responseWriter) Size() int {
return w.size
}
2014-07-04 02:01:28 +04:00
func (w *responseWriter) Written() bool {
return w.size != noWritten
2014-07-04 02:01:28 +04:00
}
2014-08-25 15:58:43 +04:00
// Implements the http.Hijacker interface
2014-08-25 15:58:43 +04:00
func (w *responseWriter) Hijack() (net.Conn, *bufio.ReadWriter, error) {
2015-04-08 16:20:39 +03:00
if w.size < 0 {
w.size = 0
}
2015-03-23 06:45:03 +03:00
return w.ResponseWriter.(http.Hijacker).Hijack()
2014-08-25 15:58:43 +04:00
}
// Implements the http.CloseNotify interface
func (w *responseWriter) CloseNotify() <-chan bool {
return w.ResponseWriter.(http.CloseNotifier).CloseNotify()
}
// Implements the http.Flush interface
func (w *responseWriter) Flush() {
2015-03-23 06:45:33 +03:00
w.ResponseWriter.(http.Flusher).Flush()
}