-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsession.go
237 lines (198 loc) · 4.43 KB
/
session.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
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
package dnet
import (
"net"
"sync"
"sync/atomic"
"time"
)
const defSendChannelSize = 1024
type session struct {
opts *Options
conn net.Conn
context interface{} // 用户数据
ctxLock sync.Mutex
sendOnce sync.Once
sendNotifyCh chan struct{} // 发送消息通知
sendMessageCh chan interface{} // 发送队列
waitGroup sync.WaitGroup
closed int32
chClose chan struct{}
}
func newSession(conn net.Conn, options *Options) *session {
if options.SendChannelSize <= 0 {
options.SendChannelSize = defSendChannelSize
}
session := &session{
conn: conn,
opts: options,
sendNotifyCh: make(chan struct{}, 1),
chClose: make(chan struct{}),
}
if options.MsgCallback != nil {
session.waitGroup.Add(1)
go session.readThread()
}
return session
}
func (this *session) SetContext(context interface{}) {
this.ctxLock.Lock()
this.context = context
this.ctxLock.Unlock()
}
func (this *session) Context() interface{} {
this.ctxLock.Lock()
defer this.ctxLock.Unlock()
return this.context
}
func (this *session) IsClosed() bool {
select {
case <-this.chClose:
return true
default:
return false
}
}
func (this *session) NetConn() interface{} {
return this.conn
}
func (this *session) LocalAddr() net.Addr {
return this.conn.LocalAddr()
}
//对端地址
func (this *session) RemoteAddr() net.Addr {
return this.conn.RemoteAddr()
}
// 接收线程
func (this *session) readThread() {
defer this.waitGroup.Done()
for {
if this.opts.ReadTimeout > 0 {
if err := this.conn.SetReadDeadline(time.Now().Add(this.opts.ReadTimeout)); err != nil {
if this.opts.ErrorCallback != nil {
this.opts.ErrorCallback(this, err)
}
}
}
if msg, err := this.opts.Codec.Decode(this.conn); this.IsClosed() {
break
} else {
if err != nil {
if ne, ok := err.(net.Error); ok {
if ne.Timeout() {
err = ErrReadTimeout
}
}
if this.opts.ErrorCallback != nil {
this.opts.ErrorCallback(this, err)
}
this.Close(err)
break
} else if msg != nil {
this.opts.MsgCallback(this, msg)
}
}
}
}
// 发送线程
// 关闭连接时,发送完后再关闭
func (this *session) writeThread() {
defer this.waitGroup.Done()
for {
select {
case msg := <-this.sendMessageCh:
if data, err := this.opts.Codec.Encode(msg); err != nil {
if !this.IsClosed() {
if this.opts.ErrorCallback != nil {
this.opts.ErrorCallback(this, err)
}
this.Close(err)
}
return
} else {
if data != nil && len(data) != 0 {
// 发送的消息
if this.opts.WriteTimeout > 0 {
if err := this.conn.SetWriteDeadline(time.Now().Add(this.opts.ReadTimeout)); err != nil {
if this.opts.ErrorCallback != nil {
this.opts.ErrorCallback(this, err)
}
}
}
idx, length := 0, len(data)
for idx < length {
if n, err := this.conn.Write(data[idx:length]); err != nil {
if !this.IsClosed() {
if ne, ok := err.(net.Error); ok {
if ne.Timeout() {
err = ErrSendTimeout
}
}
if this.opts.ErrorCallback != nil {
this.opts.ErrorCallback(this, err)
}
this.Close(err)
}
return
} else {
idx += n
}
}
}
}
default:
if this.IsClosed() {
return
} else {
// 等待发送事件
<-this.sendNotifyCh
}
}
}
}
func (this *session) Send(o interface{}) error {
if o == nil {
return ErrSendMsgNil
}
if this.IsClosed() {
return ErrSessionClosed
}
if !this.opts.BlockSend {
if len(this.sendMessageCh) == this.opts.SendChannelSize {
return ErrSendChanFull
}
}
this.sendOnce.Do(func() {
this.sendMessageCh = make(chan interface{}, this.opts.SendChannelSize)
this.waitGroup.Add(1)
go this.writeThread()
})
this.sendMessageCh <- o
sendNotifyChan(this.sendNotifyCh)
return nil
}
/*
主动关闭连接
先关闭读,待写发送完毕关闭写
*/
func (this *session) Close(reason error) {
if atomic.CompareAndSwapInt32(&this.closed, 0, 1) {
close(this.chClose)
//_ = this.conn.(*net.TCPConn).CloseRead()
// 触发循环
sendNotifyChan(this.sendNotifyCh)
go func() {
this.waitGroup.Wait()
_ = this.conn.Close()
if this.opts.CloseCallback != nil {
this.opts.CloseCallback(this, reason)
}
}()
}
}
// 作为通知用的 channel, make(chan struct{}, 1)
func sendNotifyChan(ch chan struct{}) {
select {
case ch <- struct{}{}:
default:
}
}