@@ -21,10 +21,14 @@ type Client struct {
21
21
22
22
dialOut util.DialOutFunc
23
23
24
- sessionCounter atomic.Uint64
24
+ sessionCounter atomic.Uint64
25
+
25
26
idleSession * skiplist.SkipList [uint64 , * Session ]
26
27
idleSessionLock sync.Mutex
27
28
29
+ sessions map [uint64 ]* Session
30
+ sessionsLock sync.Mutex
31
+
28
32
padding * atomic.TypedValue [* padding.PaddingFactory ]
29
33
30
34
idleSessionTimeout time.Duration
@@ -33,6 +37,7 @@ type Client struct {
33
37
34
38
func NewClient (ctx context.Context , dialOut util.DialOutFunc , _padding * atomic.TypedValue [* padding.PaddingFactory ], idleSessionCheckInterval , idleSessionTimeout time.Duration , minIdleSession int ) * Client {
35
39
c := & Client {
40
+ sessions : make (map [uint64 ]* Session ),
36
41
dialOut : dialOut ,
37
42
padding : _padding ,
38
43
idleSessionTimeout : idleSessionTimeout ,
@@ -130,15 +135,35 @@ func (c *Client) createSession(ctx context.Context) (*Session, error) {
130
135
c .idleSessionLock .Lock ()
131
136
c .idleSession .Remove (math .MaxUint64 - session .seq )
132
137
c .idleSessionLock .Unlock ()
138
+
139
+ c .sessionsLock .Lock ()
140
+ delete (c .sessions , session .seq )
141
+ c .sessionsLock .Unlock ()
133
142
}
143
+
144
+ c .sessionsLock .Lock ()
145
+ c .sessions [session .seq ] = session
146
+ c .sessionsLock .Unlock ()
147
+
134
148
session .Run ()
135
149
return session , nil
136
150
}
137
151
138
152
func (c * Client ) Close () error {
139
153
c .dieCancel ()
140
- c .minIdleSession = 0
141
- go c .idleCleanupExpTime (time.Time {})
154
+
155
+ c .sessionsLock .Lock ()
156
+ sessionToClose := make ([]* Session , 0 , len (c .sessions ))
157
+ for seq , session := range c .sessions {
158
+ sessionToClose = append (sessionToClose , session )
159
+ delete (c .sessions , seq )
160
+ }
161
+ c .sessionsLock .Unlock ()
162
+
163
+ for _ , session := range sessionToClose {
164
+ session .Close ()
165
+ }
166
+
142
167
return nil
143
168
}
144
169
0 commit comments