针对gin的超时中间件
本库的实现受到了标准库 http.TimeoutHandler 实现的启发
export GO111MODULE=on
go get github.com/vearne/gin-timeout
-
如果handler支持取消操作,那么需要传入context.Context为c.Request.Context()
-
如果你想在中间件中获得响应的状态码,你应该把中间件放到timeout中间件之前。
package main
import (
"net/http"
"net/http/httptest"
"time"
"github.com/gin-gonic/gin"
timeout "github.com/vearne/gin-timeout"
)
func main() {
req, _ := http.NewRequest("GET", "/test", nil)
engine := gin.New()
engine.Use(func(c *gin.Context) {
c.Next()
println("middleware code: ", c.Writer.Status())
})
engine.Use(timeout.Timeout(timeout.WithTimeout(10 * time.Second)))
engine.GET("/test", func(c *gin.Context) {
c.Status(http.StatusBadRequest)
})
rr := httptest.NewRecorder()
engine.ServeHTTP(rr, req)
println("response code: ", rr.Code)
}
package main
import (
"context"
"fmt"
"github.com/gin-gonic/gin"
"github.com/vearne/gin-timeout"
"io/ioutil"
"log"
"net/http"
"time"
)
func main() {
// create new gin without any middleware
engine := gin.Default()
defaultMsg := `{"code": -1, "msg":"http: Handler timeout"}`
// add timeout middleware with 2 second duration
engine.Use(timeout.Timeout(
timeout.WithTimeout(2*time.Second),
timeout.WithErrorHttpCode(http.StatusRequestTimeout), // 可选参数
timeout.WithDefaultMsg(defaultMsg), // 可选参数
timeout.WithCallBack(func(r *http.Request) {
fmt.Println("timeout happen, url:", r.URL.String())
}),
timeout.WithGinCtxCallBack(func(c *gin.Context) {
fmt.Println("timeout happen, url:", r.URL.String())
}))) // 可选参数
// create a handler that will last 1 seconds
engine.GET("/short", short)
// create a handler that will last 5 seconds
engine.GET("/long", long)
// create a handler that will last 5 seconds but can be canceled.
engine.GET("/long2", long2)
// create a handler that will last 20 seconds but can be canceled.
engine.GET("/long3", long3)
engine.GET("/boundary", boundary)
// run the server
log.Fatal(engine.Run(":8080"))
}
func short(c *gin.Context) {
time.Sleep(1 * time.Second)
c.JSON(http.StatusOK, gin.H{"hello": "short"})
}
func long(c *gin.Context) {
time.Sleep(3 * time.Second)
c.JSON(http.StatusOK, gin.H{"hello": "long"})
}
func boundary(c *gin.Context) {
time.Sleep(2 * time.Second)
c.JSON(http.StatusOK, gin.H{"hello": "boundary"})
}
func long2(c *gin.Context) {
if doSomething(c.Request.Context()) {
c.JSON(http.StatusOK, gin.H{"hello": "long2"})
}
}
func long3(c *gin.Context) {
// request a slow service
// see https://github.com/vearne/gin-timeout/blob/master/example/slow_service.go
url := "http://localhost:8882/hello"
// 注意:
// 请使用 c.Request.Context(), 当超时发生时,handler将会被取消.
req, _ := http.NewRequestWithContext(c.Request.Context(), http.MethodGet, url, nil)
client := http.Client{Timeout: 100 * time.Second}
resp, err := client.Do(req)
if err != nil {
// Where timeout event happen, a error will be received.
fmt.Println("error1:", err)
return
}
defer resp.Body.Close()
s, err := ioutil.ReadAll(resp.Body)
if err != nil {
fmt.Println("error2:", err)
return
}
fmt.Println(s)
}
// A cancelCtx can be canceled.
// When canceled, it also cancels any children that implement canceler.
func doSomething(ctx context.Context) bool {
select {
case <-ctx.Done():
fmt.Println("doSomething is canceled.")
return false
case <-time.After(5 * time.Second):
fmt.Println("doSomething is done.")
return true
}
}