-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlinkctrl.go
226 lines (189 loc) · 3.74 KB
/
linkctrl.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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
package main
import (
"encoding/json"
"fmt"
"os"
"sync"
"time"
"github.com/astaxie/beego/logs"
)
type Link struct {
Cfg LinkConfig
LastFlow int64
Bind string
Instance *LinkInstance
}
type LinkCtrl struct {
sync.RWMutex
Cache []*Link
}
var linkCtrl *LinkCtrl
func init() {
linkCtrl = new(LinkCtrl)
linkCtrl.Cache = make([]*Link, 0)
go consoleUpdate()
}
func LinkDelele(binds []string) {
linkCtrl.Lock()
defer linkCtrl.Unlock()
for _, bind := range binds {
for i, v := range linkCtrl.Cache {
if v.Bind != bind {
continue
}
instance := v.Instance
if instance != nil {
instance.Close()
}
linkCtrl.Cache = append(linkCtrl.Cache[:i], linkCtrl.Cache[i+1:]...)
break
}
}
syncToFile()
}
func LinkStart(binds []string) {
linkCtrl.Lock()
defer linkCtrl.Unlock()
for _, bind := range binds {
for _, v := range linkCtrl.Cache {
if v.Bind != bind {
continue
}
instance := v.Instance
if instance == nil {
instance, err := NewLinkInstance(v.Cfg)
if err != nil {
logs.Error(err.Error())
} else {
v.Instance = instance
}
}
break
}
}
}
func LinkFind(bind string) *LinkConfig {
linkCtrl.RLock()
defer linkCtrl.RUnlock()
for _, v := range linkCtrl.Cache {
if v.Bind != bind {
continue
}
return &v.Cfg
}
return nil
}
func LinkStop(binds []string) {
linkCtrl.Lock()
defer linkCtrl.Unlock()
for _, bind := range binds {
for _, v := range linkCtrl.Cache {
if v.Bind != bind {
continue
}
instance := v.Instance
if instance != nil {
instance.Close()
v.Instance = nil
}
break
}
}
}
func LinkAdd(cfg LinkConfig) error {
value, err := json.Marshal(cfg)
if err != nil {
return err
}
logs.Info("link add config : %s", string(value))
instance, err := NewLinkInstance(cfg)
if err != nil {
return err
}
bind := fmt.Sprintf("%s:%d", cfg.Address, cfg.Port)
linkCtrl.Lock()
linkCtrl.Cache = append(linkCtrl.Cache, &Link{
Cfg: cfg, Instance: instance, Bind: bind,
})
syncToFile()
linkCtrl.Unlock()
return nil
}
func AddLinkItemToConsole(link *Link, idx int) *LinkItem {
var count int
var speed int64
var total int64
status := STATUS_UNLINK
if link.Instance != nil {
count = link.Instance.Channels()
total = link.Instance.Flows()
if link.LastFlow < total {
speed = total - link.LastFlow
}
link.LastFlow = total
status = STATUS_LINK
}
return &LinkItem{
Index: idx,
Bind: link.Bind,
Count: count,
Speed: speed,
Traffic: total,
Status: status,
}
}
func consoleUpdate() {
time.Sleep(3 * time.Second)
for {
linkCtrl.RLock()
var output []*LinkItem
for idx, v := range linkCtrl.Cache {
output = append(output, AddLinkItemToConsole(v, idx))
}
LinkTalbeUpdate(output)
linkCtrl.RUnlock()
time.Sleep(time.Second)
}
}
func syncToFile() {
file := fmt.Sprintf("%s\\linkconfig.json", appDataDir())
var output []LinkConfig
for _, v := range linkCtrl.Cache {
output = append(output, v.Cfg)
}
value, err := json.MarshalIndent(output, "", "\t")
if err != nil {
logs.Error(err.Error())
return
}
err = SaveToFile(file, value)
if err != nil {
logs.Error(err.Error())
return
}
}
func LinkInit() error {
file := fmt.Sprintf("%s\\linkconfig.json", appDataDir())
value, err := os.ReadFile(file)
if err != nil {
logs.Error(err.Error())
return nil
}
var output []LinkConfig
err = json.Unmarshal(value, &output)
if err != nil {
logs.Error(err.Error())
return nil
}
for _, config := range output {
instance, err := NewLinkInstance(config)
if err != nil {
logs.Error(err.Error())
continue
}
linkCtrl.Cache = append(linkCtrl.Cache, &Link{
Cfg: config, Instance: instance, Bind: fmt.Sprintf("%s:%d", config.Address, config.Port),
})
}
return nil
}