-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
89 lines (73 loc) · 1.58 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
package main
import (
"fmt"
"os/signal"
"syscall"
"os"
"flag"
log "github.com/sirupsen/logrus"
)
var (
configFilePath = flag.String("c", "", "Configuration file location")
help = flag.Bool("h", false, "Usage information")
)
func init() {
flag.Parse()
}
func main() {
// Parse command line arguments
if *configFilePath == "" {
fmt.Println("Error: -c option is required")
}
if *help || *configFilePath == "" {
fmt.Println("Usage:", os.Args[0], " [-c <config_file_path>] [-h]")
return
}
// Read YAML config file
err := readConfig(*configFilePath)
if err != nil {
panic(err)
}
// Configure logging
log.SetFormatter(&log.TextFormatter{
DisableColors: true,
FullTimestamp: true,
})
switch config.LogLevel {
case "debug":
log.SetLevel(log.DebugLevel)
case "info":
log.SetLevel(log.InfoLevel)
case "warn":
log.SetLevel(log.WarnLevel)
}
if config.LogLevel == "debug" {
log.SetLevel(log.DebugLevel)
}
if config.LogJSON {
log.SetFormatter(&log.JSONFormatter{})
}
// Stops the program from exiting prematurely
done := make(chan bool)
// Set up watcher for each outbound source
for i := 0; i < len(config.Outbound); i++ {
o := config.Outbound[i]
outbound(o)
}
// Set up watcher for each inbound source
for i := 0; i < len(config.Inbound); i++ {
in := config.Inbound[i]
inbound(in)
}
// Handle termination gracefully
c := make(chan os.Signal, 2)
signal.Notify(c, os.Interrupt, syscall.SIGTERM)
go func() {
<-c
log.Info("SIGTERM termination signal received")
// Close AMQP connections
inboundClose()
done <- true
}()
<-done
}