-
Notifications
You must be signed in to change notification settings - Fork 55
/
sse.go
258 lines (226 loc) · 4.95 KB
/
sse.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
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
package zhttp
import (
"bytes"
"context"
"net/http"
"strconv"
"strings"
"time"
"github.com/sohaha/zlsgo/zerror"
"github.com/sohaha/zlsgo/zstring"
)
type (
SSEEngine struct {
ctx context.Context
eventCh chan *SSEEvent
errCh chan error
ctxCancel context.CancelFunc
verifyHeader func(http.Header) bool
option SSEOption
readyState int
}
SSEEvent struct {
ID string
Event string
Undefined []byte
Data []byte
}
)
var (
delim = []byte{':'} // []byte{':', ' '}
ping = []byte("ping")
dataEnd = byte('\n')
)
func (sse *SSEEngine) Event() <-chan *SSEEvent {
return sse.eventCh
}
func (sse *SSEEngine) Close() {
sse.ctxCancel()
}
func (sse *SSEEngine) Done() <-chan struct{} {
return sse.ctx.Done()
}
func (sse *SSEEngine) Error() <-chan error {
return sse.errCh
}
func (sse *SSEEngine) VerifyHeader(fn func(http.Header) bool) {
sse.verifyHeader = fn
}
func (sse *SSEEngine) OnMessage(fn func(*SSEEvent)) (<-chan struct{}, error) {
done := make(chan struct{}, 1)
select {
case <-sse.Done():
done <- struct{}{}
return done, nil
case e := <-sse.Error():
done <- struct{}{}
return done, e
case v := <-sse.Event():
go func() {
fn(v)
for {
select {
case <-sse.Done():
done <- struct{}{}
return
case <-sse.Error():
done <- struct{}{}
return
case v := <-sse.Event():
fn(v)
}
}
}()
return done, nil
}
}
func SSE(url string, v ...interface{}) *SSEEngine {
sse, err := std.SSE(url, nil, v...)
if err != nil {
sse.errCh <- err
}
return sse
}
func (e *Engine) sseReq(method, url string, v ...interface{}) (*Res, error) {
r, err := e.Do(method, url, v...)
if err != nil {
return nil, err
}
statusCode := r.resp.StatusCode
if statusCode == http.StatusNoContent {
return nil, nil
}
if statusCode != http.StatusOK {
return nil, zerror.With(zerror.New(zerror.ErrCode(statusCode), r.String()), "status code is "+strconv.Itoa(statusCode))
}
return r, nil
}
type SSEOption struct {
Method string
RetryNum int
}
func (e *Engine) SSE(url string, opt func(*SSEOption), v ...interface{}) (*SSEEngine, error) {
var (
retry = 3000
currEvent = &SSEEvent{}
)
o := SSEOption{
Method: "POST",
RetryNum: -1,
}
if opt != nil {
opt(&o)
}
ctx, cancel := context.WithCancel(context.TODO())
sse := &SSEEngine{
readyState: 0,
ctx: ctx,
option: o,
ctxCancel: cancel,
eventCh: make(chan *SSEEvent),
errCh: make(chan error),
verifyHeader: func(h http.Header) bool {
return strings.Contains(h.Get("Content-Type"), "text/event-stream")
},
}
lastID := ""
data := append(v, Header{"Accept": "text/event-stream", "Connection": "keep-alive"}, sse.ctx)
r, err := e.sseReq(sse.option.Method, url, data...)
if err != nil {
return sse, err
}
go func() {
for {
if sse.ctx.Err() != nil {
break
}
if err == nil {
if r != nil {
if sse.verifyHeader != nil && !sse.verifyHeader(r.Response().Header) {
sse.eventCh <- &SSEEvent{
Undefined: r.Bytes(),
}
r = nil
}
}
if r == nil {
sse.readyState = 2
cancel()
return
}
sse.readyState = 1
isPing := false
_ = r.Stream(func(line []byte, eof bool) error {
i := len(line)
if i == 1 && line[0] == dataEnd {
if !isPing {
sse.eventCh <- currEvent
currEvent = &SSEEvent{}
isPing = false
} else {
currEvent = &SSEEvent{}
}
return nil
}
if i < 2 {
return nil
}
spl := bytes.SplitN(line, delim, 2)
if len(spl) < 2 {
currEvent.Undefined = line
return nil
}
if len(spl[0]) == 0 {
isPing = bytes.Equal(ping, bytes.TrimSpace(spl[1]))
if !isPing {
currEvent.Undefined = spl[1]
}
return nil
}
val := bytes.TrimSuffix(spl[1], []byte{'\n'})
val = bytes.TrimPrefix(val, []byte{' '})
switch zstring.Bytes2String(spl[0]) {
case "id":
lastID = zstring.Bytes2String(val)
currEvent.ID = lastID
case "event":
currEvent.Event = zstring.Bytes2String(val)
case "data":
if len(currEvent.Data) > 0 {
sse.eventCh <- currEvent
currEvent = &SSEEvent{}
isPing = false
}
currEvent.Data = append(currEvent.Data, val...)
case "retry":
if t, err := strconv.Atoi(zstring.Bytes2String(val)); err == nil {
retry = t
}
}
if eof && !isPing {
sse.eventCh <- currEvent
currEvent = &SSEEvent{}
}
return nil
})
if sse.option.RetryNum >= 0 {
if sse.option.RetryNum == 0 {
cancel()
return
}
sse.option.RetryNum--
}
} else {
sse.errCh <- err
}
sse.readyState = 0
time.Sleep(time.Millisecond * time.Duration(retry))
ndata := data
if lastID != "" {
ndata = append(ndata, Header{"Last-Event-ID": lastID})
}
r, err = e.sseReq(sse.option.Method, url, ndata...)
}
}()
return sse, nil
}