-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
executable file
·65 lines (55 loc) · 1.38 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
package main
import (
"context"
"log"
"net/http"
"os"
"os/signal"
"syscall"
"github.com/jusongchen/canis/handlers"
"github.com/jusongchen/canis/version"
)
// How to try it: PORT=8000 go run main.go
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 == "" {
port = "8080"
log.Print("env PORT is not set, using default port 8080.")
}
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,
}
// this channel is for graceful shutdown:
// if we receive an error, we can send it here to notify the server to be stopped
shutdown := make(chan struct{}, 1)
go func() {
err := srv.ListenAndServe()
if err != nil {
shutdown <- struct{}{}
log.Printf("%v", err)
}
}()
log.Printf("The service is ready to listen and serve on %s.",srv.Addr)
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")
}