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

26
store/context.go Normal file
View File

@@ -0,0 +1,26 @@
package store
import (
"context"
)
type storeKey struct{}
func storeContext(ctx context.Context) (Store, bool) {
c, ok := ctx.Value(storeKey{}).(Store)
return c, ok
}
func NewContext(ctx context.Context, c Store) context.Context {
return context.WithValue(ctx, storeKey{}, 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)
}
}