-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconn.go
114 lines (92 loc) · 2.54 KB
/
conn.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
// Copyright 2023 Cockroach Labs, Inc.
// Licensed 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 httptun
import (
"net"
"sync"
"time"
"github.com/gorilla/websocket"
)
// WebsocketConn wraps *websocket.Conn into implementing net.Conn
type WebsocketConn struct {
buf []byte
conn *websocket.Conn
writeMu *sync.Mutex
waitClose func()
closeOnce sync.Once
}
// NewWebsocketConn creates a new WebsocketConn from an open websocket connection which implements net.Conn
func NewWebsocketConn(conn *websocket.Conn, writeMu *sync.Mutex, waitClose func()) *WebsocketConn {
return &WebsocketConn{
conn: conn,
writeMu: writeMu,
waitClose: waitClose,
}
}
// Read implements net.Conn
func (c *WebsocketConn) Read(b []byte) (int, error) {
if len(c.buf) > 0 {
n := copy(b, c.buf)
c.buf = c.buf[n:]
return n, nil
}
for {
t, data, err := c.conn.ReadMessage()
if err != nil {
return 0, err
}
if t != websocket.BinaryMessage {
continue
}
c.buf = data
return c.Read(b)
}
}
// Write implements net.Conn
func (c *WebsocketConn) Write(b []byte) (int, error) {
c.writeMu.Lock()
defer c.writeMu.Unlock()
err := c.conn.WriteMessage(websocket.BinaryMessage, b)
if err != nil {
return 0, err
}
return len(b), nil
}
// Close implements net.Conn
func (c *WebsocketConn) Close() error {
err := c.conn.Close()
// Wait for connection clean up (i.e. keep alive goroutine) to finish.
c.closeOnce.Do(c.waitClose)
return err
}
// LocalAddr implements net.Conn
func (c *WebsocketConn) LocalAddr() net.Addr {
return c.conn.LocalAddr()
}
// RemoteAddr implements net.Conn
func (c *WebsocketConn) RemoteAddr() net.Addr {
return c.conn.RemoteAddr()
}
// SetDeadline implements net.Conn
func (c *WebsocketConn) SetDeadline(t time.Time) error {
// not supported
return nil
}
// SetReadDeadline implements net.Conn
func (c *WebsocketConn) SetReadDeadline(t time.Time) error {
// not supported
return nil
}
// SetWriteDeadline implements net.Conn
func (c *WebsocketConn) SetWriteDeadline(t time.Time) error {
// not supported
return nil
}