-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.go
82 lines (70 loc) · 2.02 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
package main
import (
"base-go/adapter/repositories"
cats_repo "base-go/adapter/repositories/cats-repo"
"base-go/application"
"base-go/application/cats"
"base-go/common/config"
"base-go/common/logger"
gw_http "base-go/gateway/http"
"base-go/migrations"
cats_service "base-go/services/cats"
"context"
"log"
"net/http"
"os"
"os/signal"
"syscall"
"time"
)
func main() {
mainEcho()
}
func mainEcho() {
logger.Init()
cnf := config.Get()
logger.Info("Initializing...")
gormdb := repositories.NewGormdb(cnf)
migrations.Migrate(gormdb)
logger.Info("Constructing dependencies...")
catRepo := cats_repo.NewCatsRepo(gormdb)
catsService := cats_service.NewCatsService(catRepo)
catsInteractor := cats.NewCatsInteractor(catsService)
app := application.NewApp(catsInteractor)
logger.Info("Constructing http server...")
router := gw_http.EchoRouter(cnf, app)
server := gw_http.NewHttpServer(cnf, router)
// Server run context
serverCtx, serverStopCtx := context.WithCancel(context.Background())
// Listen for syscall signals for process to interrupt/quit
sig := make(chan os.Signal, 1)
signal.Notify(sig, syscall.SIGHUP, syscall.SIGINT, syscall.SIGTERM, syscall.SIGQUIT)
logger.Info("Setup OS signal handler...")
go func() {
<-sig
// Shutdown signal with grace period of 30 seconds
shutdownCtx, _ := context.WithTimeout(serverCtx, 30*time.Second)
go func() {
<-shutdownCtx.Done()
if shutdownCtx.Err() == context.DeadlineExceeded {
logger.Error("graceful shutdown timed out.. forcing exit, error: %s", shutdownCtx.Err().Error())
}
}()
// Trigger graceful shutdown
err := server.Shutdown(shutdownCtx)
if err != nil {
log.Fatal(err)
}
serverStopCtx()
}()
// Run the server
logger.Info("Starting http server at %s:%d", cnf.HttpConfig.Host, cnf.HttpConfig.Port)
err := server.ListenAndServe()
if err != nil && err != http.ErrServerClosed {
log.Fatal(err)
}
// Wait for server context to be stopped
logger.Info("Waiting for http server to exit...")
<-serverCtx.Done()
logger.Info("Goodbye.")
}