forked from thoas/bokchoy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
timeout.go
52 lines (45 loc) · 1.17 KB
/
timeout.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
// inspired from https://github.com/go-chi/chi/blob/master/middleware/timeout.go
package middleware
import (
"context"
"time"
"github.com/thoas/bokchoy"
)
// Timeout is a middleware that cancels ctx after a given timeout and return
//
// It's required that you select the ctx.Done() channel to check for the signal
// if the context has reached its deadline and return, otherwise the timeout
// signal will be just ignored.
//
// ie. a handler may look like:
//
// queue.HandlerFunc(func(r *bokchoy.Request) {
// ctx := r.Context()
// processTime := time.Duration(rand.Intn(4)+1) * time.Second
//
// select {
// case <-ctx.Done():
// return
//
// case <-time.After(processTime):
// // The above channel simulates some hard work.
// }
//
// return nil
// })
//
func Timeout(timeout time.Duration) func(next bokchoy.Handler) bokchoy.Handler {
return func(next bokchoy.Handler) bokchoy.Handler {
fn := func(r *bokchoy.Request) error {
ctx, cancel := context.WithTimeout(r.Context(), timeout)
var err error
defer func() {
cancel()
err = ctx.Err()
}()
err = next.Handle(r.WithContext(ctx))
return err
}
return bokchoy.HandlerFunc(fn)
}
}