forked from v2fly/v2ray-core
-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathcontext.go
50 lines (41 loc) · 1.18 KB
/
context.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
package core
import (
"context"
)
// V2rayKey is the key type of Instance in Context, exported for test.
type v2rayKeyType int
const v2rayKey v2rayKeyType = 1
// 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(v2rayKey).(*Instance); ok {
return s
}
return nil
}
// 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
}
func WithContext(ctx context.Context, v *Instance) context.Context {
if FromContext(ctx) != v {
ctx = context.WithValue(ctx, v2rayKey, v)
}
return ctx
}
/*ToBackgroundDetachedContext create a detached context from another context
Internal API
*/
func ToBackgroundDetachedContext(ctx context.Context) context.Context {
return &temporaryValueDelegationFix{context.Background(), ctx}
}
type temporaryValueDelegationFix struct {
context.Context
value context.Context
}
func (t *temporaryValueDelegationFix) Value(key interface{}) interface{} {
return t.value.Value(key)
}