Skip to content

Commit 6151be2

Browse files
authored
feat: add tcp proxy and stream example (#2)
1 parent 4a98581 commit 6151be2

File tree

10 files changed

+132
-6
lines changed

10 files changed

+132
-6
lines changed

client.go echo/client.go

File renamed without changes.

codec/msg.go echo/codec/msg.go

File renamed without changes.

codec/rw.go echo/codec/rw.go

File renamed without changes.

mux/mux_client.go echo/mux/mux_client.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import (
2626
"github.com/cloudwego/netpoll"
2727
"github.com/cloudwego/netpoll/mux"
2828

29-
"github.com/cloudwego/netpoll-examples/codec"
29+
"github.com/cloudwego/netpoll-examples/echo/codec"
3030
)
3131

3232
func main() {

mux/mux_server.go echo/mux/mux_server.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import (
2525
"github.com/cloudwego/netpoll"
2626
"github.com/cloudwego/netpoll/mux"
2727

28-
"github.com/cloudwego/netpoll-examples/codec"
28+
"github.com/cloudwego/netpoll-examples/echo/codec"
2929
)
3030

3131
func main() {

server.go echo/server.go

+5-2
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,12 @@ func prepare(connection netpoll.Connection) context.Context {
4545
}
4646

4747
func handle(ctx context.Context, connection netpoll.Connection) error {
48-
reader := connection.Reader()
48+
reader, writer := connection.Reader(), connection.Writer()
4949
defer reader.Release()
50+
5051
msg, _ := reader.ReadString(reader.Len())
51-
println(msg)
52+
_, _ = writer.WriteString(msg)
53+
writer.Flush()
54+
5255
return nil
5356
}

go.mod

+2
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,5 @@ module github.com/cloudwego/netpoll-examples
33
go 1.15
44

55
require github.com/cloudwego/netpoll v0.1.2
6+
7+
replace github.com/cloudwego/netpoll => github.com/joway/netpoll v0.0.4-0.20220112083038-2eefc181239d

go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
github.com/bytedance/gopkg v0.0.0-20210705062217-74c74ebadcae h1:ERLYTdHnm2E8jwpprhHPvBhbPBaxnwl62tb3lR8Nd+k=
22
github.com/bytedance/gopkg v0.0.0-20210705062217-74c74ebadcae/go.mod h1:birsdqRCbwnckJbdAvcSao+AzOyibVEoWB55MjpYpB8=
3-
github.com/cloudwego/netpoll v0.1.2 h1:NSvqHfCmmR3g0ASshwAB0F2RJvXK8v7ToFmhWzh/ukY=
4-
github.com/cloudwego/netpoll v0.1.2/go.mod h1:rZOiNI0FYjuvNybXKKhAPUja03loJi/cdv2F55AE6E8=
53
github.com/davecgh/go-spew v1.1.0 h1:ZDRjVQ15GmhC3fiQ8ni8+OwkZQO4DARzQgrnXU1Liz8=
64
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
5+
github.com/joway/netpoll v0.0.4-0.20220112083038-2eefc181239d h1:1mx//ApM0tAisXfemrMgFGIlNQ2D9BkZtAIK058L4Iw=
6+
github.com/joway/netpoll v0.0.4-0.20220112083038-2eefc181239d/go.mod h1:rZOiNI0FYjuvNybXKKhAPUja03loJi/cdv2F55AE6E8=
77
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
88
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
99
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=

stream/server.go

+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
/*
2+
* Copyright 2021 CloudWeGo
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
17+
package main
18+
19+
import (
20+
"context"
21+
"fmt"
22+
"time"
23+
24+
"github.com/cloudwego/netpoll"
25+
)
26+
27+
func main() {
28+
network, address := "tcp", ":8082"
29+
listener, _ := netpoll.CreateListener(network, address)
30+
eventLoop, _ := netpoll.NewEventLoop(
31+
nil,
32+
netpoll.WithOnConnect(onConnect),
33+
)
34+
35+
// start listen loop ...
36+
eventLoop.Serve(listener)
37+
}
38+
39+
var _ netpoll.OnConnect = onConnect
40+
41+
func onConnect(ctx context.Context, connection netpoll.Connection) context.Context {
42+
go func() {
43+
for range time.Tick(time.Second) {
44+
connection.Writer().WriteString(fmt.Sprintf("%s\n", time.Now().Format(time.RFC3339)))
45+
connection.Writer().Flush()
46+
}
47+
}()
48+
return context.Background()
49+
}

tcpproxy/server.go

+72
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
/*
2+
* Copyright 2021 CloudWeGo
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
17+
package main
18+
19+
import (
20+
"context"
21+
"log"
22+
"time"
23+
24+
"github.com/cloudwego/netpoll"
25+
)
26+
27+
var (
28+
downstreamAddr = "127.0.0.1:8080"
29+
downstreamKey = "downstream"
30+
)
31+
32+
func main() {
33+
network, address := "tcp", ":8081"
34+
listener, _ := netpoll.CreateListener(network, address)
35+
eventLoop, _ := netpoll.NewEventLoop(
36+
onRequest,
37+
netpoll.WithOnConnect(onConnect),
38+
netpoll.WithReadTimeout(time.Second),
39+
)
40+
41+
// start listen loop ...
42+
eventLoop.Serve(listener)
43+
}
44+
45+
var _ netpoll.OnConnect = onConnect
46+
var _ netpoll.OnRequest = onRequest
47+
48+
func onConnect(ctx context.Context, upstream netpoll.Connection) context.Context {
49+
downstream, err := netpoll.DialConnection("tcp", downstreamAddr, time.Second)
50+
if err != nil {
51+
log.Printf("connect downstream failed: %v", err)
52+
}
53+
return context.WithValue(ctx, downstreamKey, downstream)
54+
}
55+
56+
func onRequest(ctx context.Context, upstream netpoll.Connection) error {
57+
// read request
58+
req, _ := upstream.Reader().ReadString(upstream.Reader().Len())
59+
60+
// send request to downstream
61+
downstream := ctx.Value(downstreamKey).(netpoll.Connection)
62+
_, _ = downstream.Writer().WriteString(req)
63+
downstream.Writer().Flush()
64+
65+
// receive response from downstream
66+
resp, _ := downstream.Reader().ReadString(len(req))
67+
68+
// send response to upstream
69+
upstream.Writer().WriteString(resp)
70+
upstream.Writer().Flush()
71+
return nil
72+
}

0 commit comments

Comments
 (0)