generated from cloudwego/.github
-
Notifications
You must be signed in to change notification settings - Fork 2
/
example_test.go
187 lines (147 loc) · 4.25 KB
/
example_test.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
// Copyright 2023 CloudWeGo Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package localsession
import (
"context"
"runtime/pprof"
"sync"
"time"
)
func ASSERT(v bool) {
if !v {
panic("not true!")
}
}
func GetCurSession() Session {
s, ok := CurSession()
if !ok {
panic("can't get current session!")
}
return s
}
func ExampleSessionCtx_EnableImplicitlyTransmitAsync() {
// EnableImplicitlyTransmitAsync must be true
InitDefaultManager(ManagerOptions{
ShardNumber: 10,
EnableImplicitlyTransmitAsync: true,
GCInterval: time.Hour,
})
// WARNING: pprof.Do() must be called before BindSession(),
// otherwise transparently transmitting session will be dysfunctional
labels := pprof.Labels("c", "d")
pprof.Do(context.Background(), labels, func(ctx context.Context) {})
s := NewSessionMap(map[interface{}]interface{}{
"a": "b",
})
BindSession(s)
// WARNING: pprof.Do() must be called before BindSession(),
// otherwise transparently transmitting session will be dysfunctional
// labels := pprof.Labels("c", "d")
// pprof.Do(context.Background(), labels, func(ctx context.Context){})
wg := sync.WaitGroup{}
wg.Add(3)
go func() {
defer wg.Done()
ASSERT("b" == mustCurSession().Get("a"))
go func() {
defer wg.Done()
ASSERT("b" == mustCurSession().Get("a"))
}()
ASSERT("b" == mustCurSession().Get("a"))
UnbindSession()
ASSERT(nil == mustCurSession())
go func() {
defer wg.Done()
ASSERT(nil == mustCurSession())
}()
}()
wg.Wait()
}
func ExampleSessionCtx() {
// initialize default manager first
InitDefaultManager(DefaultManagerOptions())
var ctx = context.Background()
var key, v = "a", "b"
var key2, v2 = "c", "d"
var sig = make(chan struct{})
var sig2 = make(chan struct{})
// initialize new session with context
var session = NewSessionCtx(ctx) // implementation...
// set specific key-value and update session
start := session.WithValue(key, v)
// set current session
BindSession(start)
// pass to new goroutine...
Go(func() {
// read specific key under current session
val := GetCurSession().Get(key) // val exists
ASSERT(val == v)
// doSomething....
// set specific key-value under current session
// NOTICE: current session won't change here
next := GetCurSession().WithValue(key2, v2)
val2 := GetCurSession().Get(key2) // val2 == nil
ASSERT(val2 == nil)
// pass both parent session and new session to sub goroutine
GoSession(next, func() {
// read specific key under current session
val := GetCurSession().Get(key) // val exists
ASSERT(val == v)
val2 := GetCurSession().Get(key2) // val2 exists
ASSERT(val2 == v2)
// doSomething....
sig2 <- struct{}{}
<-sig
ASSERT(GetCurSession().IsValid() == false) // current session is invalid
println("g2 done")
sig2 <- struct{}{}
})
Go(func() {
// read specific key under current session
val := GetCurSession().Get(key) // val exists
ASSERT(v == val)
val2 := GetCurSession().Get(key2) // val2 == nil
ASSERT(val2 == nil)
// doSomething....
sig2 <- struct{}{}
<-sig
ASSERT(GetCurSession().IsValid() == false) // current session is invalid
println("g3 done")
sig2 <- struct{}{}
})
BindSession(next)
val2 = GetCurSession().Get(key2) // val2 exists
ASSERT(v2 == val2)
sig2 <- struct{}{}
<-sig
ASSERT(next.IsValid() == false) // next is invalid
println("g1 done")
sig2 <- struct{}{}
})
<-sig2
<-sig2
<-sig2
val2 := GetCurSession().Get(key2) // val2 == nil
ASSERT(val2 == nil)
// initiatively ends the session,
// then all the inherited session (including next) will be disabled
session.Disable()
close(sig)
ASSERT(start.IsValid() == false) // start is invalid
<-sig2
<-sig2
<-sig2
println("g0 done")
UnbindSession()
}