gin/response_writer.go

117 lines
2.4 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"
"io"
2014-08-25 11:58:43 +00:00
"net"
2014-07-03 22:01:28 +00:00
"net/http"
)
const (
noWritten = -1
defaultStatus = 200
)
2014-07-03 22:01:28 +00:00
type (
ResponseWriter interface {
http.ResponseWriter
http.Hijacker
http.Flusher
http.CloseNotifier
// Returns the HTTP response status code of the current request.
2014-07-03 22:01:28 +00:00
Status() int
// Returns the number of bytes already written into the response http body.
// See Written()
Size() int
// Writes the string into the response body.
WriteString(string) (int, error)
// Returns true if the response body was already written.
2014-07-03 22:01:28 +00:00
Written() bool
// Forces to write the http header (status code + headers).
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
}
)
var _ ResponseWriter = &responseWriter{}
2014-07-03 22:01:28 +00:00
func (w *responseWriter) reset(writer http.ResponseWriter) {
w.ResponseWriter = writer
w.size = noWritten
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) {
if code > 0 && w.status != code {
if w.Written() {
debugPrint("[WARNING] Headers were already written. Wanted to override status code %d with %d", w.status, code)
2014-08-18 03:24:48 +00:00
}
w.status = code
2014-08-18 03:24:48 +00:00
}
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) WriteString(s string) (n int, err error) {
w.WriteHeaderNow()
n, err = io.WriteString(w.ResponseWriter, s)
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-04-08 13:20:39 +00:00
if w.size < 0 {
w.size = 0
}
2015-03-23 03:45:03 +00:00
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()
}