notify/client.go

106 lines
3.9 KiB
Go
Raw Permalink Normal View History

2019-11-14 10:44:19 +08:00
package notify
import (
2021-11-12 16:04:39 +08:00
"b612.me/stario"
2020-02-11 10:50:11 +08:00
"context"
2019-11-14 10:44:19 +08:00
"net"
2020-12-23 20:50:57 +08:00
"sync"
2021-11-12 16:04:39 +08:00
"sync/atomic"
2019-11-14 10:44:19 +08:00
"time"
2019-11-22 10:24:39 +08:00
)
2019-11-14 10:44:19 +08:00
2021-11-12 16:04:39 +08:00
type ClientCommon struct {
alive atomic.Value
status Status
byeFromServer bool
conn net.Conn
mu sync.Mutex
msgID uint64
peerIdentity string
sessionEpoch uint64
sessionOwnerState atomic.Int32
sessionRuntime atomic.Pointer[clientSessionRuntime]
connectSource atomic.Pointer[clientConnectSource]
2024-08-18 17:23:52 +08:00
queue *stario.StarQueue
2021-11-12 16:04:39 +08:00
stopFn context.CancelFunc
stopCtx context.Context
parallelNum int
maxReadTimeout time.Duration
maxWriteTimeout time.Duration
keyExchangeFn func(c Client) error
linkFns map[string]func(message *Message)
defaultFns func(message *Message)
msgEn func([]byte, []byte) []byte
msgDe func([]byte, []byte) []byte
fastStreamEncode transportFastStreamEncoder
fastBulkEncode transportFastBulkEncoder
fastPlainEncode transportFastPlainEncoder
2021-11-12 16:04:39 +08:00
handshakeRsaPubKey []byte
SecretKey []byte
noFinSyncMsgMaxKeepSeconds int
lastHeartbeat int64
heartbeatPeriod time.Duration
wg stario.WaitGroup
netType NetType
2022-02-23 14:36:12 +08:00
showError bool
2021-11-12 16:04:39 +08:00
skipKeyExchange bool
useHeartBeat bool
sequenceDe func([]byte) (interface{}, error)
sequenceEn func(interface{}) ([]byte, error)
logicalSession *logicalSessionState
onFileEvent func(FileEvent)
fileEventObserver func(FileEvent)
fileTransferCfg fileTransferConfig
signalReliableCfg signalReliabilityConfig
streamRuntime *streamRuntime
recordRuntime *recordRuntime
bulkRuntime *bulkRuntime
connectionRetryState *connectionRetryState
securityReadyCheck bool
2022-05-20 09:27:19 +08:00
debugMode bool
2021-11-12 16:04:39 +08:00
}
func NewClient() Client {
transport := defaultModernPSKTransportBundle()
2021-11-12 16:04:39 +08:00
var client = ClientCommon{
maxReadTimeout: 0,
maxWriteTimeout: 0,
peerIdentity: newClientPeerIdentity(),
2021-11-12 16:04:39 +08:00
sequenceEn: encode,
sequenceDe: Decode,
keyExchangeFn: aesRsaHello,
SecretKey: nil,
2021-11-12 16:04:39 +08:00
handshakeRsaPubKey: defaultRsaPubKey,
msgEn: transport.msgEn,
msgDe: transport.msgDe,
fastStreamEncode: transport.fastStreamEncode,
fastBulkEncode: transport.fastBulkEncode,
fastPlainEncode: transport.fastPlainEncode,
skipKeyExchange: true,
securityReadyCheck: true,
2019-11-14 10:44:19 +08:00
}
2021-11-12 16:04:39 +08:00
client.alive.Store(false)
client.useHeartBeat = true
client.heartbeatPeriod = time.Second * 20
client.linkFns = make(map[string]func(*Message))
client.defaultFns = func(message *Message) {
2019-12-15 12:44:55 +08:00
return
2021-11-12 16:04:39 +08:00
}
client.wg = stario.NewWaitGroup(0)
client.fileTransferCfg = defaultFileTransferConfig()
client.signalReliableCfg = defaultSignalReliabilityConfig()
client.logicalSession = newLogicalSessionState(client.fileTransferCfg, client.signalReliableCfg)
client.streamRuntime = newStreamRuntime("cstrm")
client.recordRuntime = newRecordRuntime()
client.bulkRuntime = newBulkRuntime("cblk")
client.connectionRetryState = newConnectionRetryState()
client.onFileEvent = normalizeFileEventCallback(nil)
client.fileEventObserver = normalizeFileEventCallback(nil)
2021-11-12 16:04:39 +08:00
client.stopCtx, client.stopFn = context.WithCancel(context.Background())
client.sessionRuntime.Store(newClientSessionRuntimeBase(client.stopCtx, client.stopFn))
bindClientStreamControl(&client)
bindClientBulkControl(&client)
client.getTransferState().setBuiltinHandler(client.builtinFileTransferHandler)
2021-11-12 16:04:39 +08:00
return &client
}