-
Notifications
You must be signed in to change notification settings - Fork 41
/
party.go
200 lines (156 loc) · 5.1 KB
/
party.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
package signalr
import (
"context"
"sync"
"time"
"github.com/go-kit/log"
)
// Party is the common base of Server and Client. The Party methods are only used internally,
// but the interface is public to allow using Options on Party as parameters for external functions
type Party interface {
context() context.Context
cancel()
onConnected(hc hubConnection)
onDisconnected(hc hubConnection)
invocationTarget(hc hubConnection) interface{}
timeout() time.Duration
setTimeout(timeout time.Duration)
setHandshakeTimeout(timeout time.Duration)
keepAliveInterval() time.Duration
setKeepAliveInterval(interval time.Duration)
insecureSkipVerify() bool
setInsecureSkipVerify(skip bool)
originPatterns() []string
setOriginPatterns(orgs []string)
chanReceiveTimeout() time.Duration
setChanReceiveTimeout(interval time.Duration)
streamBufferCapacity() uint
setStreamBufferCapacity(capacity uint)
allowReconnect() bool
enableDetailedErrors() bool
setEnableDetailedErrors(enable bool)
setAlternateMethodName(methodName, alternateName string)
getMethodNameByAlternateName(alternateName string) (methodName string)
loggers() (info StructuredLogger, dbg StructuredLogger)
setLoggers(info StructuredLogger, dbg StructuredLogger)
prefixLoggers(connectionID string) (info StructuredLogger, dbg StructuredLogger)
maximumReceiveMessageSize() uint
setMaximumReceiveMessageSize(size uint)
waitGroup() *sync.WaitGroup
}
func newPartyBase(parentContext context.Context, info log.Logger, dbg log.Logger) partyBase {
ctx, cancelFunc := context.WithCancel(parentContext)
return partyBase{
ctx: ctx,
cancelFunc: cancelFunc,
_timeout: time.Second * 30,
_handshakeTimeout: time.Second * 15,
_keepAliveInterval: time.Second * 5,
_chanReceiveTimeout: time.Second * 5,
_streamBufferCapacity: 10,
_maximumReceiveMessageSize: 1 << 15, // 32KB
_enableDetailedErrors: false,
_insecureSkipVerify: false,
_originPatterns: nil,
methodNamesByAlternateName: make(map[string]string),
info: info,
dbg: dbg,
}
}
type partyBase struct {
ctx context.Context
cancelFunc context.CancelFunc
_timeout time.Duration
_handshakeTimeout time.Duration
_keepAliveInterval time.Duration
_chanReceiveTimeout time.Duration
_streamBufferCapacity uint
_maximumReceiveMessageSize uint
_enableDetailedErrors bool
_insecureSkipVerify bool
_originPatterns []string
methodNamesByAlternateName map[string]string
info StructuredLogger
dbg StructuredLogger
wg sync.WaitGroup
}
func (p *partyBase) context() context.Context {
return p.ctx
}
func (p *partyBase) cancel() {
p.cancelFunc()
}
func (p *partyBase) timeout() time.Duration {
return p._timeout
}
func (p *partyBase) setTimeout(timeout time.Duration) {
p._timeout = timeout
}
func (p *partyBase) HandshakeTimeout() time.Duration {
return p._handshakeTimeout
}
func (p *partyBase) setHandshakeTimeout(timeout time.Duration) {
p._handshakeTimeout = timeout
}
func (p *partyBase) keepAliveInterval() time.Duration {
return p._keepAliveInterval
}
func (p *partyBase) setKeepAliveInterval(interval time.Duration) {
p._keepAliveInterval = interval
}
func (p *partyBase) insecureSkipVerify() bool {
return p._insecureSkipVerify
}
func (p *partyBase) setInsecureSkipVerify(skip bool) {
p._insecureSkipVerify = skip
}
func (p *partyBase) originPatterns() []string {
return p._originPatterns
}
func (p *partyBase) setOriginPatterns(origins []string) {
p._originPatterns = origins
}
func (p *partyBase) chanReceiveTimeout() time.Duration {
return p._chanReceiveTimeout
}
func (p *partyBase) setChanReceiveTimeout(interval time.Duration) {
p._chanReceiveTimeout = interval
}
func (p *partyBase) streamBufferCapacity() uint {
return p._streamBufferCapacity
}
func (p *partyBase) setStreamBufferCapacity(capacity uint) {
p._streamBufferCapacity = capacity
}
func (p *partyBase) maximumReceiveMessageSize() uint {
return p._maximumReceiveMessageSize
}
func (p *partyBase) setMaximumReceiveMessageSize(size uint) {
p._maximumReceiveMessageSize = size
}
func (p *partyBase) enableDetailedErrors() bool {
return p._enableDetailedErrors
}
func (p *partyBase) setEnableDetailedErrors(enable bool) {
p._enableDetailedErrors = enable
}
func (p *partyBase) setLoggers(info StructuredLogger, dbg StructuredLogger) {
p.info = info
p.dbg = dbg
}
func (p *partyBase) loggers() (info StructuredLogger, debug StructuredLogger) {
return p.info, p.dbg
}
func (p *partyBase) waitGroup() *sync.WaitGroup {
return &p.wg
}
func (p *partyBase) setAlternateMethodName(methodName, alternateName string) {
p.methodNamesByAlternateName[alternateName] = methodName
}
func (p *partyBase) getMethodNameByAlternateName(alternateName string) (methodName string) {
var ok bool
if methodName, ok = p.methodNamesByAlternateName[alternateName]; !ok {
methodName = alternateName
}
return methodName
}