-
Notifications
You must be signed in to change notification settings - Fork 238
/
gohangout.go
227 lines (183 loc) · 5.15 KB
/
gohangout.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
227
package main
import (
"context"
"flag"
"fmt"
"net/http"
_ "net/http/pprof"
"os"
"runtime"
"runtime/pprof"
"sync"
_ "time/tzdata"
_ "go.uber.org/automaxprocs"
"github.com/childe/gohangout/input"
"github.com/childe/gohangout/internal/config"
"github.com/childe/gohangout/internal/signal"
"github.com/childe/gohangout/topology"
"github.com/prometheus/client_golang/prometheus/promhttp"
"k8s.io/klog/v2"
)
var version string
var options = &struct {
config string
autoReload bool // 配置文件更新自动重启
pprof bool
pprofAddr string
cpuprofile string
memprofile string
version bool
prometheus string
exitWhenNil bool
}{}
var (
worker = flag.Int("worker", 1, "worker thread count")
)
type gohangoutInputs []*input.InputBox
var inputs gohangoutInputs
var (
ctx context.Context
cancel context.CancelFunc
)
// start all workers in all inputboxes, and wait until stop is called (stop will shutdown all inputboxes)
func (inputs gohangoutInputs) start() {
boxes := ([]*input.InputBox)(inputs)
var wg sync.WaitGroup
wg.Add(len(boxes))
for i := range boxes {
go func(i int) {
defer wg.Done()
boxes[i].Beat(*worker)
}(i)
}
wg.Wait()
}
func (inputs gohangoutInputs) stop() {
boxes := ([]*input.InputBox)(inputs)
for _, box := range boxes {
box.Shutdown()
}
}
func buildPluginLink(config map[string]interface{}) (boxes []*input.InputBox, err error) {
boxes = make([]*input.InputBox, 0)
for inputIdx, inputI := range config["inputs"].([]interface{}) {
var inputPlugin topology.Input
i := inputI.(map[interface{}]interface{})
klog.Infof("input[%d] %v", inputIdx+1, i)
// len(i) is 1
for inputTypeI, inputConfigI := range i {
inputType := inputTypeI.(string)
inputConfig := inputConfigI.(map[interface{}]interface{})
inputPlugin = input.GetInput(inputType, inputConfig)
if inputPlugin == nil {
err = fmt.Errorf("invalid input plugin")
return
}
box := input.NewInputBox(inputPlugin, inputConfig, config, exit)
if box == nil {
err = fmt.Errorf("new input box fail")
return
}
box.SetShutdownWhenNil(options.exitWhenNil)
boxes = append(boxes, box)
}
}
return
}
// reload config file. stop inputs and start new inputs
func reload() {
gohangoutConfig, err := config.ParseConfig(options.config)
if err != nil {
klog.Errorf("could not parse config, ignore reload: %v", err)
return
}
klog.Info("stop old inputs")
inputs.stop()
boxes, err := buildPluginLink(gohangoutConfig)
if err != nil {
klog.Errorf("build plugin link error, ignore reload: %v", err)
return
}
inputs = gohangoutInputs(boxes)
klog.Info("start new inputs")
go inputs.start()
}
func _main() {
gohangoutConfig, err := config.ParseConfig(options.config)
if err != nil {
klog.Fatalf("could not parse config: %v", err)
}
boxes, err := buildPluginLink(gohangoutConfig)
if err != nil {
klog.Fatalf("build plugin link error: %v", err)
}
ctx, cancel = context.WithCancel(context.Background())
defer cancel()
inputs = gohangoutInputs(boxes)
go inputs.start()
if options.autoReload {
if err := config.WatchConfig(options.config, reload); err != nil {
klog.Fatalf("watch config fail: %s", err)
}
}
go signal.ListenSignal(exit, reload)
<-ctx.Done()
inputs.stop()
}
func main() {
flag.StringVar(&options.config, "config", options.config, "path to configuration file or directory")
flag.BoolVar(&options.autoReload, "reload", options.autoReload, "if auto reload while config file changed")
flag.BoolVar(&options.pprof, "pprof", false, "pprof or not")
flag.StringVar(&options.pprofAddr, "pprof-address", "127.0.0.1:8899", "default: 127.0.0.1:8899")
flag.StringVar(&options.cpuprofile, "cpuprofile", "", "write cpu profile to `file`")
flag.StringVar(&options.memprofile, "memprofile", "", "write mem profile to `file`")
flag.BoolVar(&options.version, "version", false, "print version and exit")
flag.StringVar(&options.prometheus, "prometheus", "", "address to expose prometheus metrics")
flag.BoolVar(&options.exitWhenNil, "exit-when-nil", false, "triger gohangout to exit when receive a nil event")
klog.InitFlags(nil)
flag.Parse()
if options.version {
fmt.Printf("gohangout version %s\n", version)
return
}
klog.Infof("gohangout version: %s", version)
defer klog.Flush()
if options.prometheus != "" {
go func() {
http.Handle("/metrics", promhttp.Handler())
http.ListenAndServe(options.prometheus, nil)
}()
}
if options.pprof {
go func() {
http.ListenAndServe(options.pprofAddr, nil)
}()
}
if options.cpuprofile != "" {
f, err := os.Create(options.cpuprofile)
if err != nil {
klog.Fatalf("could not create CPU profile: %s", err)
}
if err := pprof.StartCPUProfile(f); err != nil {
klog.Fatalf("could not start CPU profile: %s", err)
}
defer pprof.StopCPUProfile()
}
if options.memprofile != "" {
defer func() {
f, err := os.Create(options.memprofile)
if err != nil {
klog.Fatalf("could not create memory profile: %s", err)
}
defer f.Close()
runtime.GC() // get up-to-date statistics
if err := pprof.WriteHeapProfile(f); err != nil {
klog.Fatalf("could not write memory profile: %s", err)
}
}()
}
_main()
}
func exit() {
cancel()
}