forked from codesenberg/bombardier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dialer.go
71 lines (57 loc) · 1.28 KB
/
dialer.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
package main
import (
"context"
"net"
"sync/atomic"
)
type countingConn struct {
net.Conn
bytesRead, bytesWritten *int64
}
func (cc *countingConn) Read(b []byte) (n int, err error) {
n, err = cc.Conn.Read(b)
if err == nil {
atomic.AddInt64(cc.bytesRead, int64(n))
}
return
}
func (cc *countingConn) Write(b []byte) (n int, err error) {
n, err = cc.Conn.Write(b)
if err == nil {
atomic.AddInt64(cc.bytesWritten, int64(n))
}
return
}
var fasthttpDialFunc = func(
bytesRead, bytesWritten *int64,
) func(string) (net.Conn, error) {
return func(address string) (net.Conn, error) {
conn, err := net.Dial("tcp", address)
if err != nil {
return nil, err
}
wrappedConn := &countingConn{
Conn: conn,
bytesRead: bytesRead,
bytesWritten: bytesWritten,
}
return wrappedConn, nil
}
}
var httpDialContextFunc = func(
bytesRead, bytesWritten *int64,
) func(context.Context, string, string) (net.Conn, error) {
dialer := &net.Dialer{}
return func(ctx context.Context, network, address string) (net.Conn, error) {
conn, err := dialer.DialContext(ctx, network, address)
if err != nil {
return nil, err
}
wrappedConn := &countingConn{
Conn: conn,
bytesRead: bytesRead,
bytesWritten: bytesWritten,
}
return wrappedConn, nil
}
}