forked from chaitin/t1k-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfactory.go
57 lines (51 loc) · 1.23 KB
/
factory.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
package t1k
import (
"errors"
"net"
)
// ConnectionFactory 连接工厂
type ConnectionFactory interface {
//生成连接的方法
Factory() (interface{}, error)
//关闭连接的方法
Close(interface{}) error
//检查连接是否有效的方法
Ping(interface{}) error
}
// TcpFactory 结构体
type TcpFactory struct {
Addr string
}
// Factory 方法生成 TCP 连接
func (t *TcpFactory) Factory() (interface{}, error) {
conn, err := net.Dial("tcp", t.Addr)
if err != nil {
return nil, err
}
return conn, nil
}
// Close 方法关闭 TCP 连接
func (t *TcpFactory) Close(conn interface{}) error {
tcpConn, ok := conn.(net.Conn)
if !ok {
return errors.New("invalid connection type")
}
return tcpConn.Close()
}
// Ping 方法检查 TCP 连接是否有效
func (f *TcpFactory) Ping(conn interface{}) error {
tcpConn, ok := conn.(net.Conn)
if !ok {
return errors.New("invalid connection type")
}
// // 发送一个空的 TCP 数据包来检查连接是否有效
// if err := tcpConn.SetDeadline(time.Now().Add(1 * time.Second)); err != nil {
// return err
// }
// if _, err := tcpConn.Write([]byte{}); err != nil {
// return err
// }
// return tcpConn.SetDeadline(time.Time{})
err := DoHeartbeat(tcpConn)
return err
}