2019-02-01 14:08:21 -05:00
|
|
|
// +build !confonly
|
|
|
|
|
2018-01-10 06:22:37 -05:00
|
|
|
package core
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
)
|
|
|
|
|
2020-06-27 00:28:53 -04:00
|
|
|
// V2rayKey is the key type of Instance in Context, exported for test.
|
|
|
|
type V2rayKey int
|
2018-01-10 06:22:37 -05:00
|
|
|
|
2020-06-27 00:28:53 -04:00
|
|
|
const v2rayKey V2rayKey = 1
|
2018-01-10 06:22:37 -05:00
|
|
|
|
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
|
|
|
|
}
|