-
Notifications
You must be signed in to change notification settings - Fork 5
/
config.go
84 lines (74 loc) · 3.2 KB
/
config.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
// Copyright 2021-2024 antlabs. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package quickws
import (
"errors"
"net"
"net/http"
"net/url"
"time"
"github.com/antlabs/wsutil/deflate"
"github.com/antlabs/wsutil/enum"
)
var ErrDialFuncAndProxyFunc = errors.New("dialFunc and proxyFunc can't be set at the same time")
// 握手
type Dialer interface {
Dial(network, addr string) (c net.Conn, err error)
}
// 带超时时间的握手
type DialerTimeout interface {
DialTimeout(network, addr string, timeout time.Duration) (c net.Conn, err error)
}
// Config的配置,有两个种用法
// 一种是声明一个全局的配置,后面不停使用。
// 另外一种是局部声明一个配置,然后使用WithXXX函数设置配置
type Config struct {
cb Callback
deflate.PermessageDeflateConf // 静态配置, 从WithXXX函数中获取
tcpNoDelay bool
replyPing bool // 开启自动回复
ignorePong bool // 忽略pong消息
disableBufioClearHack bool // 关闭bufio的clear hack优化
utf8Check func([]byte) bool // utf8检查
readTimeout time.Duration // 读超时时间
windowsMultipleTimesPayloadSize float32 // 设置几倍(1024+14)的payload大小
bufioMultipleTimesPayloadSize float32 // 设置几倍(1024)的payload大小
parseMode parseMode // 解析模式
maxDelayWriteNum int32 // 最大延迟包的个数, 默认值为10
delayWriteInitBufferSize int32 // 延迟写入的初始缓冲区大小, 默认值是8k
maxDelayWriteDuration time.Duration // 最大延迟时间, 默认值是10ms
subProtocols []string // 设置支持的子协议
readMaxMessage int64 //最大消息大小
dialFunc func() (Dialer, error)
proxyFunc func(*http.Request) (*url.URL, error) //
}
func (c *Config) initPayloadSize() int {
return int((1024.0 + float32(enum.MaxFrameHeaderSize)) * c.windowsMultipleTimesPayloadSize)
}
// 默认设置
func (c *Config) defaultSetting() error {
c.cb = &DefCallback{}
c.maxDelayWriteNum = 10
c.windowsMultipleTimesPayloadSize = 1.0
c.delayWriteInitBufferSize = 8 * 1024
c.maxDelayWriteDuration = 10 * time.Millisecond
c.tcpNoDelay = true
c.parseMode = ParseModeWindows
// 对于text消息,默认不检查text是utf8字符
c.utf8Check = func(b []byte) bool { return true }
if c.dialFunc != nil && c.proxyFunc != nil {
return ErrDialFuncAndProxyFunc
}
return nil
}