add context helpers

Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
This commit is contained in:
2020-12-07 16:10:20 +03:00
parent b5d3b699cf
commit c6fd9c1c23
9 changed files with 115 additions and 53 deletions

View File

@@ -0,0 +1,26 @@
package transport
import (
"context"
)
type transportKey struct{}
func FromContext(ctx context.Context) (Transport, bool) {
c, ok := ctx.Value(transportKey{}).(Transport)
return c, ok
}
func NewContext(ctx context.Context, c Transport) context.Context {
return context.WithValue(ctx, transportKey{}, c)
}
// SetOption returns a function to setup a context with given value
func SetOption(k, v interface{}) Option {
return func(o *Options) {
if o.Context == nil {
o.Context = context.Background()
}
o.Context = context.WithValue(o.Context, k, v)
}
}