tracker/main.go

89 lines
1.9 KiB
Go
Raw Normal View History

2013-06-22 01:31:32 +02:00
// Copyright 2013 The Chihaya Authors. All rights reserved.
// Use of this source code is governed by the BSD 2-Clause license,
// which can be found in the LICENSE file.
package main
import (
"flag"
"log"
"os"
"os/signal"
"runtime"
"runtime/pprof"
2013-12-01 04:41:11 +01:00
"github.com/chihaya/chihaya/config"
"github.com/chihaya/chihaya/server"
2014-06-19 18:34:47 +02:00
2014-06-24 04:47:43 +02:00
_ "github.com/chihaya/chihaya/drivers/backend/mock"
_ "github.com/chihaya/chihaya/drivers/tracker/mock"
2013-06-22 01:31:32 +02:00
)
var (
profile bool
2013-06-23 09:56:28 +02:00
configPath string
2013-06-22 01:31:32 +02:00
)
func init() {
flag.BoolVar(&profile, "profile", false, "Generate profiling data for pprof into chihaya.cpu")
2013-06-23 09:56:28 +02:00
flag.StringVar(&configPath, "config", "", "The location of a valid configuration file.")
2013-06-22 01:31:32 +02:00
}
func main() {
flag.Parse()
runtime.GOMAXPROCS(runtime.NumCPU())
2014-05-08 12:48:32 +02:00
// Enable the profile if flagged.
2013-06-22 01:31:32 +02:00
if profile {
2014-05-08 12:48:32 +02:00
log.Println("running with profiling enabled")
2013-06-22 01:31:32 +02:00
f, err := os.Create("chihaya.cpu")
if err != nil {
2014-05-08 12:48:32 +02:00
log.Fatalf("failed to create profile file: %s\n", err)
2013-06-22 01:31:32 +02:00
}
defer f.Close()
pprof.StartCPUProfile(f)
}
2014-05-08 12:48:32 +02:00
// Load the config file.
2013-06-23 09:56:28 +02:00
if configPath == "" {
2014-05-08 12:48:32 +02:00
log.Fatalf("must specify a configuration file")
2013-06-23 09:56:28 +02:00
}
conf, err := config.Open(configPath)
2013-06-23 09:56:28 +02:00
if err != nil {
2014-05-08 12:48:32 +02:00
log.Fatalf("failed to parse configuration file: %s\n", err)
2013-06-23 09:56:28 +02:00
}
2014-05-08 12:48:32 +02:00
log.Println("succesfully loaded config")
// Create a new server.
2013-06-24 06:18:59 +02:00
s, err := server.New(conf)
if err != nil {
2014-05-08 12:48:32 +02:00
log.Fatalf("failed to create server: %s\n", err)
2013-06-24 06:18:59 +02:00
}
2013-06-22 01:31:32 +02:00
2014-05-08 12:48:32 +02:00
// Spawn a goroutine to handle interrupts and safely shut down.
2013-06-22 01:31:32 +02:00
go func() {
c := make(chan os.Signal, 1)
signal.Notify(c, os.Interrupt)
<-c
if profile {
pprof.StopCPUProfile()
}
2014-05-08 12:48:32 +02:00
log.Println("caught interrupt, shutting down.")
2013-06-22 01:31:32 +02:00
err := s.Stop()
if err != nil {
2014-05-08 12:48:32 +02:00
panic("failed to shutdown cleanly")
2013-06-22 01:31:32 +02:00
}
2014-05-08 12:48:32 +02:00
log.Println("shutdown successfully")
2013-06-22 01:31:32 +02:00
<-c
os.Exit(0)
}()
2014-05-08 12:48:32 +02:00
// Start the server listening and handling requests.
2013-06-23 09:56:28 +02:00
err = s.ListenAndServe()
2013-06-22 01:31:32 +02:00
if err != nil {
2014-05-08 12:48:32 +02:00
log.Fatalf("failed to start server: %s\n", err)
2013-06-22 01:31:32 +02:00
}
}