forked from mmatczuk/go-http-tunnel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pool.go
122 lines (99 loc) · 2.55 KB
/
pool.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
// Copyright (C) 2017 Michał Matczuk
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package tunnel
import (
"fmt"
"net"
"net/http"
"sync"
"golang.org/x/net/http2"
"github.com/myENA/go-http-tunnel/id"
)
type connPair struct {
conn net.Conn
clientConn *http2.ClientConn
}
// ConnPool - describes a connection pool
type ConnPool struct {
t *http2.Transport
conns map[string]connPair // key is host:port
listener DiscoNotifier
mu sync.RWMutex
}
func newConnPool(t *http2.Transport, l DiscoNotifier) *ConnPool {
return &ConnPool{
t: t,
listener: l,
conns: make(map[string]connPair),
}
}
// GetClientConn - this implements http2.ClientConnPool
func (p *ConnPool) GetClientConn(req *http.Request, addr string) (*http2.ClientConn, error) {
p.mu.RLock()
defer p.mu.RUnlock()
if cp, ok := p.conns[addr]; ok && cp.clientConn.CanTakeNewRequest() {
return cp.clientConn, nil
}
return nil, errClientNotConnected
}
// MarkDead - this implements http2.ClientConnPool
func (p *ConnPool) MarkDead(c *http2.ClientConn) {
p.mu.Lock()
defer p.mu.Unlock()
for addr, cp := range p.conns {
if cp.clientConn == c {
cp.conn.Close()
delete(p.conns, addr)
if p.listener != nil {
p.listener.DiscoNotify(p.AddrToIdentifier(addr))
}
return
}
}
}
// AddConn - This adds a connection to the pool.
func (p *ConnPool) AddConn(conn net.Conn, identifier id.ID) error {
p.mu.Lock()
defer p.mu.Unlock()
addr := p.addr(identifier)
if _, ok := p.conns[addr]; ok {
return errClientAlreadyConnected
}
c, err := p.t.NewClientConn(conn)
if err != nil {
return err
}
p.conns[addr] = connPair{
conn: conn,
clientConn: c,
}
return nil
}
// DeleteConn - This deletes a connection from the pool, sending
// a notification.
func (p *ConnPool) DeleteConn(identifier id.ID) {
p.mu.Lock()
defer p.mu.Unlock()
addr := p.addr(identifier)
if cp, ok := p.conns[addr]; ok {
cp.conn.Close()
delete(p.conns, addr)
if p.listener != nil {
p.listener.DiscoNotify(identifier)
}
}
}
// URL - this generates a URL from an identifier.
func (p *ConnPool) URL(identifier id.ID) string {
return fmt.Sprint("https://", identifier)
}
func (p *ConnPool) addr(identifier id.ID) string {
return fmt.Sprint(identifier.String(), ":443")
}
// AddrToIdentifier - Converts an address, as generated from URL, back into an ID
func (p *ConnPool) AddrToIdentifier(addr string) id.ID {
identifier := id.ID{}
identifier.UnmarshalText([]byte(addr[:len(addr)-4]))
return identifier
}