|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145 |
- /*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You 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 getty
-
- import (
- "crypto/tls"
- "fmt"
- "net"
- "strings"
- "sync"
-
- "github.com/seata/seata-go/pkg/protocol/codec"
- "github.com/seata/seata-go/pkg/util/log"
-
- getty "github.com/apache/dubbo-getty"
- gxsync "github.com/dubbogo/gost/sync"
- "github.com/pkg/errors"
- )
-
- type RpcClient struct {
- gettyConf *Config
- seataConf *SeataConfig
- gettyClients []getty.Client
- futures *sync.Map
- }
-
- func InitRpcClient(gettyConfig *Config, seataConfig *SeataConfig) {
- iniConfig(seataConfig)
- rpcClient := &RpcClient{
- gettyConf: gettyConfig,
- seataConf: seataConfig,
- gettyClients: make([]getty.Client, 0),
- }
- codec.Init()
- rpcClient.init()
- }
-
- func (c *RpcClient) init() {
- addressList := c.getAvailServerList()
- if len(addressList) == 0 {
- log.Warn("no have valid seata server list")
- }
- for _, address := range addressList {
- gettyClient := getty.NewTCPClient(
- getty.WithServerAddress(address),
- getty.WithConnectionNumber(c.gettyConf.ConnectionNum),
- getty.WithReconnectInterval(c.gettyConf.ReconnectInterval),
- getty.WithClientTaskPool(gxsync.NewTaskPoolSimple(0)),
- )
- go gettyClient.RunEventLoop(c.newSession)
- // c.gettyClients = append(c.gettyClients, gettyClient)
- }
- }
-
- func (c *RpcClient) getAvailServerList() []string {
- defaultAddressList := []string{"127.0.0.1:8091"}
- txServiceGroup := c.seataConf.TxServiceGroup
- if txServiceGroup == "" {
- return defaultAddressList
- }
- clusterName := c.seataConf.ServiceVgroupMapping[txServiceGroup]
- if clusterName == "" {
- return defaultAddressList
- }
- grouplist := c.seataConf.ServiceGrouplist[clusterName]
- if grouplist == "" {
- return defaultAddressList
- }
- return strings.Split(grouplist, ",")
- }
-
- func (c *RpcClient) newSession(session getty.Session) error {
- var (
- ok bool
- tcpConn *net.TCPConn
- err error
- )
-
- if c.gettyConf.SessionConfig.CompressEncoding {
- session.SetCompressType(getty.CompressZip)
- }
- if _, ok = session.Conn().(*tls.Conn); ok {
- c.setSessionConfig(session)
- log.Debugf("server accepts new tls session:%s\n", session.Stat())
- return nil
- }
- if _, ok = session.Conn().(*net.TCPConn); !ok {
- panic(fmt.Sprintf("%s, session.conn{%#v} is not a tcp connection\n", session.Stat(), session.Conn()))
- }
-
- if _, ok = session.Conn().(*tls.Conn); !ok {
- if tcpConn, ok = session.Conn().(*net.TCPConn); !ok {
- return errors.New(fmt.Sprintf("%s, session.conn{%#v} is not tcp connection", session.Stat(), session.Conn()))
- }
-
- if err = tcpConn.SetNoDelay(c.gettyConf.SessionConfig.TCPNoDelay); err != nil {
- return err
- }
- if err = tcpConn.SetKeepAlive(c.gettyConf.SessionConfig.TCPKeepAlive); err != nil {
- return err
- }
- if c.gettyConf.SessionConfig.TCPKeepAlive {
- if err = tcpConn.SetKeepAlivePeriod(c.gettyConf.SessionConfig.KeepAlivePeriod); err != nil {
- return err
- }
- }
- if err = tcpConn.SetReadBuffer(c.gettyConf.SessionConfig.TCPRBufSize); err != nil {
- return err
- }
- if err = tcpConn.SetWriteBuffer(c.gettyConf.SessionConfig.TCPWBufSize); err != nil {
- return err
- }
- }
-
- c.setSessionConfig(session)
- log.Debugf("rpc_client new session:%s\n", session.Stat())
-
- return nil
- }
-
- func (c *RpcClient) setSessionConfig(session getty.Session) {
- session.SetName(c.gettyConf.SessionConfig.SessionName)
- session.SetMaxMsgLen(c.gettyConf.SessionConfig.MaxMsgLen)
- session.SetPkgHandler(rpcPkgHandler)
- session.SetEventListener(GetGettyClientHandlerInstance())
- session.SetReadTimeout(c.gettyConf.SessionConfig.TCPReadTimeout)
- session.SetWriteTimeout(c.gettyConf.SessionConfig.TCPWriteTimeout)
- session.SetCronPeriod((int)(c.gettyConf.SessionConfig.CronPeriod.Milliseconds()))
- session.SetWaitTime(c.gettyConf.SessionConfig.WaitTimeout)
- }
|