-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
64 lines (50 loc) · 1.12 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
package main
import (
"context"
"fmt"
"os"
"os/signal"
"time"
"github.com/it-novum/binaryd/config"
"github.com/it-novum/binaryd/utils"
"github.com/it-novum/binaryd/webserver"
)
// Daniel Ziegler it-novum GmbH 2023
// MIT License
func main() {
// First try to parse the config file
configPath := "./binaryd.ini"
if len(os.Args) > 1 {
configPath = os.Args[1]
}
if !utils.FileExists(configPath) {
fmt.Printf("Config file %v does not exists\n", configPath)
os.Exit(1)
}
cfg := config.NewConfig(configPath)
err := cfg.LoadIni()
if err != nil {
fmt.Println(err)
os.Exit(1)
}
err = cfg.ParseIni()
if err != nil {
fmt.Println(err)
os.Exit(1)
}
// Start Webserver
ctx := context.Background()
server := webserver.NewHttpServer(cfg)
server.SetupHttpHandler()
server.Start(ctx)
// Setup signal handling
stop := make(chan os.Signal, 1)
signal.Notify(stop, os.Interrupt)
// Waiting for SIGINT (pkill -2)
<-stop
ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second)
defer cancel()
server.Shutdown()
// Wait for ListenAndServe goroutine to close.
fmt.Println("Web server shutdown")
}