2016-01-28 21:23:24 +03:00
|
|
|
package server
|
|
|
|
|
|
|
|
import (
|
|
|
|
"golang.org/x/net/context"
|
|
|
|
)
|
|
|
|
|
|
|
|
type serverKey struct{}
|
|
|
|
|
2017-05-31 21:21:41 +03:00
|
|
|
func wait(ctx context.Context) bool {
|
|
|
|
if ctx == nil {
|
|
|
|
return false
|
|
|
|
}
|
2017-05-31 21:33:11 +03:00
|
|
|
wait, ok := ctx.Value("wait").(bool)
|
|
|
|
if !ok {
|
|
|
|
return false
|
|
|
|
}
|
2017-05-31 21:21:41 +03:00
|
|
|
return wait
|
|
|
|
}
|
|
|
|
|
2016-01-28 21:23:24 +03:00
|
|
|
func FromContext(ctx context.Context) (Server, bool) {
|
|
|
|
c, ok := ctx.Value(serverKey{}).(Server)
|
|
|
|
return c, ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewContext(ctx context.Context, s Server) context.Context {
|
|
|
|
return context.WithValue(ctx, serverKey{}, s)
|
|
|
|
}
|