gin/response_writer.go

95 lines
1.8 KiB
Go
Raw Normal View History

2014-08-29 17:49:50 +00: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-03 22:01:28 +00:00
package gin
import (
2014-08-25 11:58:43 +00:00
"bufio"
2014-08-18 03:24:48 +00:00
"log"
2014-08-25 11:58:43 +00:00
"net"
2014-07-03 22:01:28 +00:00
"net/http"
)
const (
2015-03-23 03:45:33 +00:00
NoWritten = -1
DefaultStatus = 200
)
2014-07-03 22:01:28 +00:00
type (
ResponseWriter interface {
http.ResponseWriter
http.Hijacker
http.Flusher
http.CloseNotifier
2014-07-03 22:01:28 +00:00
Status() int
Size() int
2014-07-03 22:01:28 +00:00
Written() bool
2014-08-18 03:24:48 +00:00
WriteHeaderNow()
2014-07-03 22:01:28 +00:00
}
responseWriter struct {
http.ResponseWriter
size int
2015-03-23 03:45:33 +00:00
status int
2014-07-03 22:01:28 +00:00
}
)
func (w *responseWriter) reset(writer http.ResponseWriter) {
w.ResponseWriter = writer
w.size = NoWritten
2015-03-23 03:45:33 +00:00
w.status = DefaultStatus
2014-07-03 22:01:28 +00:00
}
2014-08-18 03:24:48 +00:00
func (w *responseWriter) WriteHeader(code int) {
2014-08-24 02:35:11 +00:00
if code > 0 {
2014-08-18 03:24:48 +00:00
w.status = code
if w.Written() {
2014-08-18 03:24:48 +00:00
log.Println("[GIN] WARNING. Headers were already written!")
}
}
2014-07-03 22:01:28 +00:00
}
2014-08-18 03:24:48 +00:00
func (w *responseWriter) WriteHeaderNow() {
if !w.Written() {
w.size = 0
2014-08-18 03:24:48 +00: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-03 22:01:28 +00:00
}
func (w *responseWriter) Status() int {
return w.status
}
func (w *responseWriter) Size() int {
return w.size
}
2014-07-03 22:01:28 +00:00
func (w *responseWriter) Written() bool {
return w.size != NoWritten
2014-07-03 22:01:28 +00:00
}
2014-08-25 11:58:43 +00:00
// Implements the http.Hijacker interface
2014-08-25 11:58:43 +00:00
func (w *responseWriter) Hijack() (net.Conn, *bufio.ReadWriter, error) {
2015-03-23 03:45:03 +00:00
w.size = 0 // this prevents Gin to write the HTTP headers
return w.ResponseWriter.(http.Hijacker).Hijack()
2014-08-25 11:58:43 +00: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 03:45:33 +00:00
w.ResponseWriter.(http.Flusher).Flush()
}