forked from linxGnu/gosmpp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtransmittable.go
194 lines (158 loc) · 3.07 KB
/
transmittable.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
package gosmpp
import (
"fmt"
"net"
"runtime"
"sync"
"sync/atomic"
"time"
"github.com/linxGnu/gosmpp/pdu"
)
var (
// ErrConnectionClosing indicates transmitter is closing. Can not send any PDU.
ErrConnectionClosing = fmt.Errorf("connection is closing, can not send PDU to SMSC")
)
type transmittable struct {
settings Settings
wg sync.WaitGroup
input chan pdu.PDU
conn *Connection
aliveState int32
pendingWrite int32
}
func newTransmittable(conn *Connection, settings Settings) *transmittable {
t := &transmittable{
settings: settings,
conn: conn,
input: make(chan pdu.PDU, 1),
aliveState: Alive,
pendingWrite: 0,
}
return t
}
func (t *transmittable) close(state State) (err error) {
if atomic.CompareAndSwapInt32(&t.aliveState, Alive, Closed) {
for atomic.LoadInt32(&t.pendingWrite) != 0 {
runtime.Gosched()
}
// notify daemon
close(t.input)
// wait daemon
t.wg.Wait()
// try to send unbind
_, _ = t.write(pdu.NewUnbind())
// close connection
if state != StoppingProcessOnly {
err = t.conn.Close()
}
// notify transmitter closed
if t.settings.OnClosed != nil {
t.settings.OnClosed(state)
}
}
return
}
func (t *transmittable) closing(state State) {
go func() {
_ = t.close(state)
}()
}
// Submit a PDU.
func (t *transmittable) Submit(p pdu.PDU) (err error) {
atomic.AddInt32(&t.pendingWrite, 1)
if atomic.LoadInt32(&t.aliveState) == Alive {
t.input <- p
} else {
err = ErrConnectionClosing
}
atomic.AddInt32(&t.pendingWrite, -1)
return
}
func (t *transmittable) start() {
t.wg.Add(1)
if t.settings.EnquireLink > 0 {
go func() {
t.loopWithEnquireLink()
t.wg.Done()
}()
} else {
go func() {
t.loop()
t.wg.Done()
}()
}
}
func (t *transmittable) drain() {
for range t.input {
}
}
func (t *transmittable) loop() {
defer t.drain()
for p := range t.input {
if p != nil {
n, err := t.write(p)
if t.check(p, n, err) {
return
}
}
}
}
func (t *transmittable) loopWithEnquireLink() {
ticker := time.NewTicker(t.settings.EnquireLink)
defer func() {
ticker.Stop()
t.drain()
}()
for {
select {
case <-ticker.C:
eqp := pdu.NewEnquireLink()
n, err := t.write(eqp)
if t.check(eqp, n, err) {
return
}
case p, ok := <-t.input:
if !ok {
return
}
if p != nil {
n, err := t.write(p)
if t.check(p, n, err) {
return
}
}
}
}
}
// check error and do closing if need
func (t *transmittable) check(p pdu.PDU, n int, err error) (closing bool) {
if err == nil {
return
}
if t.settings.OnSubmitError != nil {
t.settings.OnSubmitError(p, err)
}
if n == 0 {
if nErr, ok := err.(net.Error); ok {
closing = nErr.Timeout()
} else {
closing = true
}
} else {
closing = true // force closing
}
if closing {
t.closing(ConnectionIssue) // start closing
}
return
}
// low level writing
func (t *transmittable) write(p pdu.PDU) (n int, err error) {
if t.settings.WriteTimeout > 0 {
err = t.conn.SetWriteTimeout(t.settings.WriteTimeout)
}
if err == nil {
n, err = t.conn.WritePDU(p)
}
return
}