2019-02-01 14:08:21 -05:00
|
|
|
// +build !confonly
|
|
|
|
|
2018-01-10 06:22:37 -05:00
|
|
|
package core
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
)
|
|
|
|
|
|
|
|
type key int
|
|
|
|
|
|
|
|
const v2rayKey key = 1
|
|
|
|
|
2018-02-21 11:05:29 -05:00
|
|
|
// FromContext returns an Instance from the given context, or nil if the context doesn't contain one.
|
2018-01-10 06:22:37 -05:00
|
|
|
func FromContext(ctx context.Context) *Instance {
|
|
|
|
if s, ok := ctx.Value(v2rayKey).(*Instance); ok {
|
|
|
|
return s
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2018-02-21 11:05:29 -05: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
|
|
|
|
}
|