You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.1 KiB
Go
56 lines
1.1 KiB
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"os/signal"
|
|
"syscall"
|
|
|
|
"FRMS/internal/pkg/config"
|
|
"FRMS/internal/pkg/logging"
|
|
"FRMS/internal/pkg/server"
|
|
"os"
|
|
|
|
"github.com/spf13/viper"
|
|
)
|
|
|
|
type coordinator interface {
|
|
Start()
|
|
}
|
|
|
|
func NewCoordinator(config *viper.Viper, ch chan error) coordinator {
|
|
return server.NewCentralCoordinator(config, ch)
|
|
}
|
|
|
|
func NewConfig(fname string) *viper.Viper {
|
|
return config.LoadConfig(fname)
|
|
}
|
|
|
|
func main() {
|
|
// lets get this bread
|
|
gracefulShutdown := make(chan os.Signal, 1)
|
|
signal.Notify(gracefulShutdown, syscall.SIGINT, syscall.SIGTERM)
|
|
|
|
// config file
|
|
conf := NewConfig("server")
|
|
|
|
errCh := make(chan error)
|
|
|
|
c := NewCoordinator(conf, errCh)
|
|
go c.Start()
|
|
logging.Debug(logging.DStart, "CCO 01 Server %s started", conf.Get("name"))
|
|
|
|
select {
|
|
case err := <-errCh: // blocking to wait for any errors and keep alive otherwise
|
|
panic(err)
|
|
case <-gracefulShutdown:
|
|
// Shutdown via INT
|
|
// storing config
|
|
fmt.Printf("\nStoring config to %s\n", conf.ConfigFileUsed())
|
|
if err := conf.WriteConfig(); err != nil {
|
|
panic(err)
|
|
}
|
|
fmt.Println("Stored config successfully. Exiting...")
|
|
os.Exit(0)
|
|
}
|
|
}
|