genofire/hs_monolith
genofire
/
hs_monolith
Archived
1
0
Fork 0
This repository has been archived on 2020-09-27. You can view files and clone it, but cannot push or open issues or pull requests.
hs_monolith/cmd/stock/main.go

84 lines
1.9 KiB
Go

// Package that containts the cmd binary of the microservice to run it
package main
import (
"flag"
"net/http"
"os"
"os/signal"
"syscall"
"github.com/NYTimes/gziphandler"
goji "goji.io"
"goji.io/pat"
web "github.com/genofire/hs_master-kss-monolith/http"
"github.com/genofire/hs_master-kss-monolith/lib/database"
"github.com/genofire/hs_master-kss-monolith/lib/log"
"github.com/genofire/hs_master-kss-monolith/models"
"github.com/genofire/hs_master-kss-monolith/runtime"
)
// Configuration File
var (
configFile string
config *models.Config
)
// Function to run this go program
func main() {
flag.StringVar(&configFile, "config", "config.conf", "path of configuration file (default:config.conf)")
flag.Parse()
// load config
config = models.ReadConfigFile(configFile)
// Config packages:
web.GoodAvailablityTemplate = config.GoodAvailablityTemplate
web.GoodFreshnessTemplate = config.GoodFreshnessTemplate
runtime.CacheConfig = config.CacheClean
runtime.ProductURL = config.MicroserviceDependencies.Product
runtime.PermissionURL = config.MicroserviceDependencies.Permission
log.Log.Info("Starting stock microservice")
err := database.Open(config.Database)
if err != nil {
log.Log.Panic(err)
}
grw := runtime.NewGoodReleaseWorker(config.GoodRelease)
cw := runtime.NewCacheWorker()
go grw.Start()
go cw.Start()
// Startwebsrver
router := goji.NewMux()
web.BindAPI(router)
router.Handle(pat.New("/*"), gziphandler.GzipHandler(http.FileServer(http.Dir(config.Webroot))))
srv := &http.Server{
Addr: config.WebserverBind,
Handler: router,
}
go func() {
if err := srv.ListenAndServe(); err != nil {
panic(err)
}
}()
log.Log.Info("Started stock microservice")
// Wait for system signal
sigs := make(chan os.Signal, 1)
signal.Notify(sigs, syscall.SIGINT, syscall.SIGTERM)
sig := <-sigs
// Stop services
srv.Close()
grw.Close()
cw.Close()
database.Close()
log.Log.Info("received", sig)
}