first commit
This commit is contained in:
@@ -0,0 +1,99 @@
|
||||
package timeout
|
||||
|
||||
import (
|
||||
"bytes"
|
||||
"fmt"
|
||||
"net/http"
|
||||
"sync"
|
||||
|
||||
"gitverse.ru/andoma/gin"
|
||||
)
|
||||
|
||||
// Writer is a writer with memory buffer
|
||||
type Writer struct {
|
||||
gin.ResponseWriter
|
||||
body *bytes.Buffer
|
||||
headers http.Header
|
||||
mu sync.Mutex
|
||||
timeout bool
|
||||
wroteHeaders bool
|
||||
code int
|
||||
}
|
||||
|
||||
// NewWriter will return a timeout.Writer pointer
|
||||
func NewWriter(w gin.ResponseWriter, buf *bytes.Buffer) *Writer {
|
||||
return &Writer{ResponseWriter: w, body: buf, headers: make(http.Header)}
|
||||
}
|
||||
|
||||
// Write will write data to response body
|
||||
func (w *Writer) Write(data []byte) (int, error) {
|
||||
w.mu.Lock()
|
||||
defer w.mu.Unlock()
|
||||
|
||||
if w.timeout || w.body == nil {
|
||||
return 0, nil
|
||||
}
|
||||
|
||||
return w.body.Write(data)
|
||||
}
|
||||
|
||||
// WriteHeader sends an HTTP response header with the provided status code.
|
||||
// If the response writer has already written headers or if a timeout has occurred,
|
||||
// this method does nothing.
|
||||
func (w *Writer) WriteHeader(code int) {
|
||||
w.mu.Lock()
|
||||
defer w.mu.Unlock()
|
||||
|
||||
if w.timeout || w.wroteHeaders {
|
||||
return
|
||||
}
|
||||
|
||||
// gin is using -1 to skip writing the status code
|
||||
// see https://github.com/gin-gonic/gin/blob/a0acf1df2814fcd828cb2d7128f2f4e2136d3fac/response_writer.go#L61
|
||||
if code == -1 {
|
||||
return
|
||||
}
|
||||
|
||||
checkWriteHeaderCode(code)
|
||||
|
||||
w.writeHeader(code)
|
||||
w.ResponseWriter.WriteHeader(code)
|
||||
}
|
||||
|
||||
func (w *Writer) writeHeader(code int) {
|
||||
w.wroteHeaders = true
|
||||
w.code = code
|
||||
}
|
||||
|
||||
// Header will get response headers
|
||||
func (w *Writer) Header() http.Header {
|
||||
return w.headers
|
||||
}
|
||||
|
||||
// WriteString will write string to response body
|
||||
func (w *Writer) WriteString(s string) (int, error) {
|
||||
return w.Write([]byte(s))
|
||||
}
|
||||
|
||||
// FreeBuffer will release buffer pointer
|
||||
func (w *Writer) FreeBuffer() {
|
||||
// if not reset body,old bytes will put in bufPool
|
||||
w.body.Reset()
|
||||
w.body = nil
|
||||
}
|
||||
|
||||
// Status we must override Status func here,
|
||||
// or the http status code returned by gin.Context.Writer.Status()
|
||||
// will always be 200 in other custom gin middlewares.
|
||||
func (w *Writer) Status() int {
|
||||
if w.code == 0 || w.timeout {
|
||||
return w.ResponseWriter.Status()
|
||||
}
|
||||
return w.code
|
||||
}
|
||||
|
||||
func checkWriteHeaderCode(code int) {
|
||||
if code < 100 || code > 999 {
|
||||
panic(fmt.Sprintf("invalid http status code: %d", code))
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user