v2fly/context.go

31 lines
724 B
Go
Raw Normal View History

2019-02-01 19:08:21 +00:00
// +build !confonly
package core
import (
"context"
)
2020-06-27 04:28:53 +00:00
// V2rayKey is the key type of Instance in Context, exported for test.
type V2rayKey int
// V2rayKeyValue is the key value of Instance in Context, exported for test.
const V2rayKeyValue V2rayKey = 1
2018-02-21 16:05:29 +00:00
// FromContext returns an Instance from the given context, or nil if the context doesn't contain one.
func FromContext(ctx context.Context) *Instance {
if s, ok := ctx.Value(V2rayKeyValue).(*Instance); ok {
return s
}
return nil
}
2018-02-21 16:05:29 +00:00
// MustFromContext returns an Instance from the given context, or panics if not present.
func MustFromContext(ctx context.Context) *Instance {
v := FromContext(ctx)
if v == nil {
panic("V is not in context.")
}
return v
}