mirror of
https://github.com/labstack/echo.git
synced 2024-11-24 08:22:21 +02:00
25e72d623e
Signed-off-by: Vishal Rana <vr@labstack.com>
81 lines
1.3 KiB
Go
81 lines
1.3 KiB
Go
// +build !appengine
|
|
|
|
package fasthttp
|
|
|
|
import (
|
|
"io"
|
|
"net/http"
|
|
|
|
"github.com/labstack/echo/engine"
|
|
"github.com/labstack/gommon/log"
|
|
"github.com/valyala/fasthttp"
|
|
)
|
|
|
|
type (
|
|
Response struct {
|
|
*fasthttp.RequestCtx
|
|
header engine.Header
|
|
status int
|
|
size int64
|
|
committed bool
|
|
writer io.Writer
|
|
logger *log.Logger
|
|
}
|
|
)
|
|
|
|
func NewResponse(c *fasthttp.RequestCtx) *Response {
|
|
return &Response{
|
|
RequestCtx: c,
|
|
header: &ResponseHeader{c.Response.Header},
|
|
writer: c,
|
|
logger: log.New("test"),
|
|
}
|
|
}
|
|
|
|
func (r *Response) Header() engine.Header {
|
|
return r.header
|
|
}
|
|
|
|
func (r *Response) WriteHeader(code int) {
|
|
if r.committed {
|
|
r.logger.Warn("response already committed")
|
|
return
|
|
}
|
|
r.status = code
|
|
r.SetStatusCode(code)
|
|
r.committed = true
|
|
}
|
|
|
|
func (r *Response) Write(b []byte) (int, error) {
|
|
return r.RequestCtx.Write(b)
|
|
}
|
|
|
|
func (r *Response) Status() int {
|
|
return r.status
|
|
}
|
|
|
|
func (r *Response) Size() int64 {
|
|
return r.size
|
|
}
|
|
|
|
func (r *Response) Committed() bool {
|
|
return r.committed
|
|
}
|
|
|
|
func (r *Response) SetWriter(w io.Writer) {
|
|
r.writer = w
|
|
}
|
|
|
|
func (r *Response) Writer() io.Writer {
|
|
return r.writer
|
|
}
|
|
|
|
func (r *Response) reset(c *fasthttp.RequestCtx, h engine.Header) {
|
|
r.RequestCtx = c
|
|
r.header = h
|
|
r.status = http.StatusOK
|
|
r.size = 0
|
|
r.committed = false
|
|
r.writer = c
|
|
}
|