-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
61 lines (51 loc) · 1.2 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
package main
import (
"context"
"log"
"net/http"
"os"
"os/signal"
"syscall"
"github.com/AwesomeObserver/nano-service/handlers"
"github.com/AwesomeObserver/nano-service/version"
)
func main() {
log.Printf(
"Starting the service...\ncommit: %s, build time: %s, release: %s",
version.Commit, version.BuildTime, version.Release,
)
port := os.Getenv("PORT")
if port == "" {
log.Fatal("Port is undefided!")
}
r := handlers.Router(version.BuildTime, version.Commit, version.Release)
interrupt := make(chan os.Signal, 1)
signal.Notify(interrupt, os.Interrupt, syscall.SIGTERM)
srv := &http.Server{
Addr: ":" + port,
Handler: r,
}
shutdown := make(chan struct{}, 1)
go func() {
err := srv.ListenAndServe()
if err != nil {
shutdown <- struct{}{}
log.Printf("%v", err)
}
}()
log.Print("The service is ready to listen and serve http://localhost" + port)
select {
case killSignal := <-interrupt:
switch killSignal {
case os.Interrupt:
log.Print("Got SIGINT...")
case syscall.SIGTERM:
log.Print("Got SIGTERM...")
}
case <-shutdown:
log.Printf("Got an error...")
}
log.Print("The service is shutting down...")
srv.Shutdown(context.Background())
log.Print("Done")
}