-
Notifications
You must be signed in to change notification settings - Fork 1
/
request.go
781 lines (708 loc) · 18.9 KB
/
request.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
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
package jaws
import (
"context"
"errors"
"fmt"
"html"
"io"
"net/http"
"net/netip"
"sort"
"strconv"
"strings"
"sync/atomic"
"time"
"github.com/linkdata/deadlock"
"github.com/linkdata/jaws/jid"
"github.com/linkdata/jaws/what"
)
// ConnectFn can be used to interact with a Request before message processing starts.
// Returning an error causes the Request to abort, and the WebSocket connection to close.
type ConnectFn = func(rq *Request) error
// Request maintains the state for a JaWS WebSocket connection, and handles processing
// of events and broadcasts.
//
// Note that we have to store the context inside the struct because there is no call chain
// between the Request being created and it being used once the WebSocket is created.
type Request struct {
Jaws *Jaws // (read-only) the JaWS instance the Request belongs to
JawsKey uint64 // (read-only) a random number used in the WebSocket URI to identify this Request
Created time.Time // (read-only) when the Request was created, used for automatic cleanup
remoteIP netip.Addr // (read-only) remote IP, or nil
mu deadlock.RWMutex // protects following
initial *http.Request // initial HTTP request passed to Jaws.NewRequest
session *Session // session, if established
claimed bool // if UseRequest() has been called for it
running bool // if ServeHTTP() is running
todoDirt []any // dirty tags
ctx context.Context // current context, derived from either Jaws or WS HTTP req
cancelFn context.CancelCauseFunc // cancel function
connectFn ConnectFn // a ConnectFn to call before starting message processing for the Request
elems []*Element
tagMap map[any][]*Element
wsQueue []wsMsg
}
type eventFnCall struct {
jid Jid
wht what.What
data string
}
const maxWsQueueLengthPerElement = 100
func (rq *Request) JawsKeyString() string {
jawsKey := uint64(0)
if rq != nil {
jawsKey = rq.JawsKey
}
return JawsKeyString(jawsKey)
}
func (rq *Request) String() string {
return "Request<" + rq.JawsKeyString() + ">"
}
var ErrRequestAlreadyClaimed = errors.New("request already claimed")
var ErrJavascriptDisabled = errors.New("javascript is disabled")
func (rq *Request) claim(hr *http.Request) (err error) {
rq.mu.Lock()
defer rq.mu.Unlock()
if rq.claimed {
return ErrRequestAlreadyClaimed
}
var actualIP netip.Addr
ctx := context.Background()
if hr != nil {
actualIP = parseIP(hr.RemoteAddr)
ctx = hr.Context()
}
if equalIP(rq.remoteIP, actualIP) {
rq.ctx, rq.cancelFn = context.WithCancelCause(ctx)
rq.claimed = true
} else {
err = fmt.Errorf("/jaws/%s: expected IP %q, got %q", rq.JawsKeyString(), rq.remoteIP.String(), actualIP.String())
}
return
}
func (rq *Request) killSessionLocked() {
if rq.session != nil {
rq.session.delRequest(rq)
rq.session = nil
}
}
func (rq *Request) killSession() {
rq.mu.Lock()
rq.killSessionLocked()
rq.mu.Unlock()
}
func (rq *Request) clearLocked() *Request {
rq.JawsKey = 0
rq.connectFn = nil
rq.Created = time.Time{}
rq.initial = nil
rq.claimed = false
rq.running = false
rq.ctx, rq.cancelFn = context.WithCancelCause(context.Background())
rq.todoDirt = rq.todoDirt[:0]
rq.remoteIP = netip.Addr{}
rq.elems = rq.elems[:0]
rq.killSessionLocked()
clear(rq.tagMap)
return rq
}
func (rq *Request) renderDebug(elem *Element, w io.Writer) {
var sb strings.Builder
_, _ = fmt.Fprintf(&sb, "<!-- id=%q %T tags=[", elem.Jid(), elem.Ui())
if rq.mu.TryRLock() {
defer rq.mu.RUnlock()
for i, tag := range rq.tagsOfLocked(elem) {
if i > 0 {
sb.WriteString(", ")
}
sb.WriteString(TagString(tag))
}
} else {
sb.WriteString("n/a")
}
sb.WriteByte(']')
_, _ = w.Write([]byte(strings.ReplaceAll(sb.String(), "-->", "==>") + " -->"))
}
func (rq *Request) render(elem *Element, w io.Writer, params []any) (err error) {
if err = elem.Ui().JawsRender(elem, w, params); err == nil {
if rq.Jaws.Debug {
rq.renderDebug(elem, w)
}
}
return
}
// HeadHTML writes the HTML code needed in the HTML page's HEAD section.
func (rq *Request) HeadHTML(w io.Writer) (err error) {
rq.mu.RLock()
var b []byte
b = append(b, rq.Jaws.headPrefix...)
b = JawsKeyAppend(b, rq.JawsKey)
b = append(b, `";</script><noscript>`+
`<div class="jaws-alert">This site requires Javascript for full functionality.</div>`+
`<img src="/jaws/`...)
b = JawsKeyAppend(b, rq.JawsKey)
b = append(b, `/noscript"></noscript>`...)
rq.mu.RUnlock()
_, err = w.Write(b)
return
}
// GetConnectFn returns the currently set ConnectFn. That function will be called before starting the WebSocket tunnel if not nil.
func (rq *Request) GetConnectFn() (fn ConnectFn) {
rq.mu.RLock()
fn = rq.connectFn
rq.mu.RUnlock()
return
}
// SetConnectFn sets ConnectFn. That function will be called before starting the WebSocket tunnel if not nil.
func (rq *Request) SetConnectFn(fn ConnectFn) {
rq.mu.Lock()
rq.connectFn = fn
rq.mu.Unlock()
}
// Session returns the Request's Session, or nil.
func (rq *Request) Session() (sess *Session) {
rq.mu.RLock()
sess = rq.session
rq.mu.RUnlock()
return
}
// Initial returns the Request's initial HTTP request, or nil.
func (rq *Request) Initial() (r *http.Request) {
rq.mu.RLock()
r = rq.initial
rq.mu.RUnlock()
return
}
// Get is shorthand for `Session().Get()` and returns the session value associated with the key, or nil.
// It no session is associated with the Request, returns nil.
func (rq *Request) Get(key string) any {
return rq.Session().Get(key)
}
// Set is shorthand for `Session().Set()` and sets a session value to be associated with the key.
// If value is nil, the key is removed from the session.
// Does nothing if there is no session is associated with the Request.
func (rq *Request) Set(key string, val any) {
rq.Session().Set(key, val)
}
// Context returns the Request's Context, which is derived from the
// WebSocket's HTTP requests Context.
func (rq *Request) Context() (ctx context.Context) {
rq.mu.RLock()
ctx = rq.ctx
rq.mu.RUnlock()
return
}
func (rq *Request) maintenance(deadline time.Time) bool {
rq.mu.RLock()
defer rq.mu.RUnlock()
if !rq.running {
if rq.ctx.Err() != nil {
return true
}
if rq.Created.Before(deadline) {
rq.cancelLocked(newErrNoWebSocketRequest(rq))
return true
}
}
return false
}
func (rq *Request) cancelLocked(err error) {
if rq.JawsKey != 0 && rq.ctx.Err() == nil {
if !rq.running {
err = newErrPendingCancelledLocked(rq, err)
}
rq.cancelFn(rq.Jaws.Log(err))
}
}
func (rq *Request) cancel(err error) {
rq.mu.Lock()
defer rq.mu.Unlock()
rq.cancelLocked(err)
}
// Alert attempts to show an alert message on the current request webpage if it has an HTML element with the id 'jaws-alert'.
// The lvl argument should be one of Bootstraps alert levels: primary, secondary, success, danger, warning, info, light or dark.
//
// The default JaWS javascript only supports Bootstrap.js dismissable alerts.
func (rq *Request) Alert(lvl, msg string) {
rq.Jaws.Broadcast(Message{
Dest: rq,
What: what.Alert,
Data: lvl + "\n" + msg,
})
}
// AlertError calls Alert if the given error is not nil.
func (rq *Request) AlertError(err error) {
if rq.Jaws.Log(err) != nil {
rq.Alert("danger", html.EscapeString(err.Error()))
}
}
// Redirect requests the current Request to navigate to the given URL.
func (rq *Request) Redirect(url string) {
rq.Jaws.Broadcast(Message{
Dest: rq,
What: what.Redirect,
Data: url,
})
}
func (rq *Request) tagsOfLocked(elem *Element) (tags []any) {
for tag, elems := range rq.tagMap {
for _, e := range elems {
if e == elem {
tags = append(tags, tag)
break
}
}
}
return
}
func (rq *Request) TagsOf(elem *Element) (tags []any) {
if elem != nil {
rq.mu.RLock()
defer rq.mu.RUnlock()
tags = rq.tagsOfLocked(elem)
}
return
}
// Register creates a new Element with the given tagitem as a valid target
// for dynamic updates.
//
// This function can accept a string or a Jid as the tagitem. A string
// will be interpreted as jaws.Tag(string).
//
// Returns a Jid, suitable for including as a HTML "id" attribute:
//
// <div id="{{$.Register `footag`}}">
func (rq *Request) Register(tagitem any, params ...any) jid.Jid {
switch data := tagitem.(type) {
case jid.Jid:
if elem := rq.getElementByJid(data); elem != nil {
if _, ok := elem.Ui().(*UiHtml); ok {
elem.ParseParams(params)
}
}
return data
case string:
tagitem = Tag(data)
}
uib := &UiHtml{}
elem := rq.NewElement(uib)
uib.parseGetter(elem, tagitem)
elem.ParseParams(params)
return elem.Jid()
}
// Dirty marks all Elements that have one or more of the given tags as dirty.
func (rq *Request) Dirty(tags ...any) {
rq.Jaws.setDirty(MustTagExpand(rq, tags))
}
// wantMessage returns true if the Request want the message.
func (rq *Request) wantMessage(msg *Message) (yes bool) {
switch dest := msg.Dest.(type) {
case *Request:
yes = dest == rq
case string: // HTML id
yes = true
case []any: // more than one tag
yes = true
default:
rq.mu.RLock()
_, yes = rq.tagMap[msg.Dest]
rq.mu.RUnlock()
}
return
}
var nextJid Jid
func (rq *Request) newElementLocked(ui UI) (elem *Element) {
elem = &Element{
jid: Jid(atomic.AddInt64((*int64)(&nextJid), 1)),
ui: ui,
Request: rq,
}
rq.elems = append(rq.elems, elem)
return
}
func (rq *Request) NewElement(ui UI) *Element {
rq.mu.Lock()
defer rq.mu.Unlock()
return rq.newElementLocked(ui)
}
func (rq *Request) getElementByJidLocked(jid Jid) (elem *Element) {
for _, e := range rq.elems {
if e.Jid() == jid {
elem = e
break
}
}
return
}
func (rq *Request) getElementByJid(jid Jid) (e *Element) {
rq.mu.RLock()
e = rq.getElementByJidLocked(jid)
rq.mu.RUnlock()
return
}
func (rq *Request) hasTagLocked(elem *Element, tag any) bool {
for _, e := range rq.tagMap[tag] {
if elem == e {
return true
}
}
return false
}
func (rq *Request) HasTag(elem *Element, tag any) (yes bool) {
rq.mu.RLock()
yes = rq.hasTagLocked(elem, tag)
rq.mu.RUnlock()
return
}
func (rq *Request) appendDirtyTags(tags []any) {
rq.mu.Lock()
rq.todoDirt = append(rq.todoDirt, tags...)
rq.mu.Unlock()
}
// Tag adds the given tags to the given Element.
func (rq *Request) tagExpanded(elem *Element, expandedtags []any) {
rq.mu.Lock()
defer rq.mu.Unlock()
for _, tag := range expandedtags {
if !rq.hasTagLocked(elem, tag) {
rq.tagMap[tag] = append(rq.tagMap[tag], elem)
}
}
}
// Tag adds the given tags to the given Element.
func (rq *Request) Tag(elem *Element, tags ...any) {
if elem != nil && len(tags) > 0 && elem.Request == rq {
rq.tagExpanded(elem, MustTagExpand(elem.Request, tags))
}
}
// GetElements returns a list of the UI elements in the Request that have the given tag(s).
func (rq *Request) GetElements(tagitem any) (elems []*Element) {
tags := MustTagExpand(rq, tagitem)
seen := map[*Element]struct{}{}
rq.mu.RLock()
defer rq.mu.RUnlock()
for _, tag := range tags {
if el, ok := rq.tagMap[tag]; ok {
for _, e := range el {
if _, ok = seen[e]; !ok {
seen[e] = struct{}{}
elems = append(elems, el...)
}
}
}
}
return
}
// Done returns the Request completion channel.
func (rq *Request) Done() (ch <-chan struct{}) {
rq.mu.RLock()
ch = rq.ctx.Done()
rq.mu.RUnlock()
return
}
// process is the main message processing loop. Will unsubscribe broadcastMsgCh and close outboundMsgCh on exit.
func (rq *Request) process(broadcastMsgCh chan Message, incomingMsgCh <-chan wsMsg, outboundMsgCh chan<- wsMsg) {
jawsDoneCh := rq.Jaws.Done()
ctxDoneCh := rq.Done()
eventDoneCh := make(chan struct{})
eventCallCh := make(chan eventFnCall, cap(outboundMsgCh))
go rq.eventCaller(eventCallCh, outboundMsgCh, eventDoneCh)
defer func() {
rq.Jaws.unsubscribe(broadcastMsgCh)
rq.killSession()
close(eventCallCh)
for {
select {
case <-eventCallCh:
case <-incomingMsgCh:
case <-eventDoneCh:
close(outboundMsgCh)
if x := recover(); x != nil {
var err error
var ok bool
if err, ok = x.(error); !ok {
err = fmt.Errorf("jaws: %v panic: %v", rq, x)
}
rq.Jaws.MustLog(err)
}
return
}
}
}()
for {
var tagmsg Message
var wsmsg wsMsg
var ok bool
rq.sendQueue(outboundMsgCh)
// Empty the dirty tags list and call JawsUpdate()
// for identified elements. This queues up wsMsg's
// in elem.wsQueue.
for _, elem := range rq.makeUpdateList() {
elem.update()
}
/*// Append pending WS messages to the queue
// in the order of Element creation.
rq.mu.RLock()
for _, elem := range rq.elems {
wsQueue = append(wsQueue, elem.wsQueue...)
elem.wsQueue = elem.wsQueue[:0]
}
rq.mu.RUnlock()*/
rq.sendQueue(outboundMsgCh)
select {
case <-jawsDoneCh:
case <-ctxDoneCh:
case tagmsg, ok = <-broadcastMsgCh:
case wsmsg, ok = <-incomingMsgCh:
if ok {
// incoming event message from the websocket
if wsmsg.Jid.IsValid() {
switch wsmsg.What {
case what.Input, what.Click:
rq.queueEvent(eventCallCh, eventFnCall{jid: wsmsg.Jid, wht: wsmsg.What, data: wsmsg.Data})
case what.Remove:
rq.handleRemove(wsmsg.Data)
}
}
continue
}
}
if !ok {
// one of the channels are closed, so we're done
return
}
// collect all elements marked with the tag in the message
var todo []*Element
switch v := tagmsg.Dest.(type) {
case nil:
// matches no elements
case *Request:
case string:
// target is a regular HTML ID
rq.queue(wsMsg{
Data: v + "\t" + strconv.Quote(tagmsg.Data),
What: tagmsg.What,
Jid: -1,
})
default:
todo = rq.GetElements(v)
}
switch tagmsg.What {
case what.Reload, what.Redirect, what.Order, what.Alert:
rq.queue(wsMsg{
Jid: 0,
Data: tagmsg.Data,
What: tagmsg.What,
})
default:
for _, elem := range todo {
switch tagmsg.What {
case what.Delete:
rq.queue(wsMsg{
Jid: elem.Jid(),
What: what.Delete,
})
rq.deleteElement(elem)
case what.Input, what.Click:
// Input or Click messages recieved here are from Request.Send() or broadcasts.
// they won't be sent out on the WebSocket, but will queue up a
// call to the event function (if any).
// primary usecase is tests.
rq.queueEvent(eventCallCh, eventFnCall{jid: elem.Jid(), wht: tagmsg.What, data: tagmsg.Data})
case what.Hook:
// "hook" messages are used to synchronously call an event function.
// the function must not send any messages itself, but may return
// an error to be sent out as an alert message.
// primary usecase is tests.
if err := rq.Jaws.Log(rq.callAllEventHandlers(elem.Jid(), tagmsg.What, tagmsg.Data)); err != nil {
rq.queue(wsMsg{
Data: tagmsg.Data,
Jid: elem.Jid(),
What: what.Alert,
})
}
case what.Update:
elem.update()
default:
rq.queue(wsMsg{
Data: tagmsg.Data,
Jid: elem.Jid(),
What: tagmsg.What,
})
}
}
}
}
}
func (rq *Request) handleRemove(data string) {
rq.mu.Lock()
defer rq.mu.Unlock()
for _, jidstr := range strings.Split(data, "\t") {
if e := rq.getElementByJidLocked(jid.ParseString(jidstr)); e != nil {
rq.deleteElementLocked(e)
}
}
}
func (rq *Request) queue(msg wsMsg) {
// rq.mu.Lock()
rq.wsQueue = append(rq.wsQueue, msg)
// rq.mu.Unlock()
}
func (rq *Request) callAllEventHandlers(id Jid, wht what.What, val string) (err error) {
var elems []*Element
rq.mu.RLock()
if id == 0 {
if wht == what.Click {
var after string
var found bool
val, after, found = strings.Cut(val, "\t")
for found {
var jidStr string
jidStr, after, found = strings.Cut(after, "\t")
if id = jid.ParseString(jidStr); id > 0 {
if e := rq.getElementByJidLocked(id); e != nil {
elems = append(elems, e)
}
}
}
}
} else {
if e := rq.getElementByJidLocked(id); e != nil {
elems = append(elems, e)
}
}
rq.mu.RUnlock()
for _, e := range elems {
if !e.deleted {
if err = callEventHandler(e.Ui(), e, wht, val); err != ErrEventUnhandled {
return
}
for _, h := range e.handlers {
if err = h.JawsEvent(e, wht, val); err != ErrEventUnhandled {
return
}
}
}
}
if err == ErrEventUnhandled {
err = nil
}
return
}
func (rq *Request) queueEvent(eventCallCh chan eventFnCall, call eventFnCall) {
select {
case eventCallCh <- call:
default:
rq.Jaws.MustLog(fmt.Errorf("jaws: %v: eventCallCh is full sending %v", rq, call))
return
}
}
func (rq *Request) sendQueue(outboundMsgCh chan<- wsMsg) {
var toSend []wsMsg
validJids := map[Jid]struct{}{}
rq.mu.Lock()
if len(rq.wsQueue) > 0 {
for _, elem := range rq.elems {
if !elem.deleted {
validJids[elem.Jid()] = struct{}{}
}
}
for _, msg := range rq.wsQueue {
ok := msg.Jid < 1 || msg.What == what.Delete
if !ok {
_, ok = validJids[msg.Jid]
}
if ok {
toSend = append(toSend, msg)
}
}
rq.wsQueue = rq.wsQueue[:0]
}
rq.mu.Unlock()
for _, msg := range toSend {
select {
case <-rq.Done():
case outboundMsgCh <- msg:
default:
panic(fmt.Errorf("jaws: %v: outbound message channel is full (%d) sending %s", rq, len(outboundMsgCh), msg))
}
}
}
func deleteElement(s []*Element, e *Element) []*Element {
for i, v := range s {
if e == v {
j := i
for i++; i < len(s); i++ {
v = s[i]
if e != v {
s[j] = v
j++
}
}
for i := j; i < len(s); i++ {
s[i] = nil
}
return s[:j]
}
}
return s
}
func (rq *Request) deleteElementLocked(e *Element) {
e.deleted = true
rq.elems = deleteElement(rq.elems, e)
for k := range rq.tagMap {
rq.tagMap[k] = deleteElement(rq.tagMap[k], e)
}
}
func (rq *Request) deleteElement(e *Element) {
rq.mu.Lock()
defer rq.mu.Unlock()
rq.deleteElementLocked(e)
}
func (rq *Request) makeUpdateList() (todo []*Element) {
rq.mu.Lock()
defer rq.mu.Unlock()
for _, tag := range rq.todoDirt {
for _, elem := range rq.tagMap[tag] {
if !elem.updating {
elem.updating = true
todo = append(todo, elem)
}
}
}
for _, elem := range todo {
elem.updating = false
}
rq.todoDirt = rq.todoDirt[:0]
sort.Slice(todo, func(i, j int) bool { return todo[i].Jid() < todo[j].Jid() })
return
}
// eventCaller calls event functions
func (rq *Request) eventCaller(eventCallCh <-chan eventFnCall, outboundMsgCh chan<- wsMsg, eventDoneCh chan<- struct{}) {
defer close(eventDoneCh)
for call := range eventCallCh {
if err := rq.callAllEventHandlers(call.jid, call.wht, call.data); err != nil {
var m wsMsg
m.FillAlert(err)
select {
case outboundMsgCh <- m:
default:
_ = rq.Jaws.Log(fmt.Errorf("jaws: outboundMsgCh full sending event error '%s'", err.Error()))
}
}
}
}
// onConnect calls the Request's ConnectFn if it's not nil, and returns the error from it.
// Returns nil if ConnectFn is nil.
func (rq *Request) onConnect() (err error) {
rq.mu.RLock()
connectFn := rq.connectFn
rq.mu.RUnlock()
if connectFn != nil {
err = connectFn(rq)
}
return
}
func (rq *Request) Writer(w io.Writer) RequestWriter {
return RequestWriter{rq: rq, Writer: w}
}