This repository was archived by the owner on Jul 3, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmain.go
95 lines (86 loc) · 1.92 KB
/
main.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
package main
//go:generate protoc --go_out=plugins=grpc:. command/v2ray_api_commands.proto
import "C" //required
import (
"context"
"fmt"
cmd "github.com/Qv2ray/QvRPCBridge/command"
"google.golang.org/grpc"
"time"
)
//required
func main() {}
var client *grpc.ClientConn
//export Dial
func Dial(addr *C.char, timeout uint32) (errMsg *C.char) {
return C.CString(_Dial(C.GoString(addr), timeout))
}
//export GetStats
func GetStats(name *C.char, timeout uint32) (value int64) {
return _GetStats(C.GoString(name), timeout)
}
func _Dial(addr string, timeout uint32) (errMsg string) {
if client != nil {
_ = client.Close()
}
ctx, cancelFunc := context.WithCancel(context.Background())
errPipe := make(chan error)
goodPipe := make(chan struct{})
go func() {
conn, err := grpc.DialContext(ctx, addr, grpc.WithInsecure(), grpc.WithBlock())
select {
case <-ctx.Done():
return
default:
if err != nil {
errPipe <- err
return
}
client = conn
close(goodPipe)
}
}()
select {
case <-time.After(time.Duration(timeout) * time.Millisecond):
cancelFunc()
return fmt.Sprintf("dial timed out %dms at addr `%s`", timeout, addr)
case err := <-errPipe:
return fmt.Sprintf("dial failed: %s", err.Error())
case <-goodPipe:
return ""
}
}
func _GetStats(name string, timeout uint32) (value int64) {
if client == nil {
return -999
}
ctx, cancelFunc := context.WithCancel(context.Background())
errChan := make(chan error)
goodChan := make(chan int64)
go func() {
stats, err := cmd.NewStatsServiceClient(client).GetStats(ctx, &cmd.GetStatsRequest{
Name: name,
Reset_: true,
})
select {
case <-ctx.Done():
return
default:
if err != nil {
errChan <- err
return
}
value = stats.Stat.Value
close(goodChan)
}
}()
select {
case <-time.After(time.Duration(timeout) * time.Millisecond):
cancelFunc()
return -666
case <-errChan:
return -1
case <-goodChan:
return
}
}