forked from ochinchina/supervisord
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
56 lines (48 loc) · 1.12 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
package main
import (
"fmt"
"os"
"os/signal"
"syscall"
log "github.com/Sirupsen/logrus"
"github.com/jessevdk/go-flags"
)
type Options struct {
Configuration string `short:"c" long:"configuration" description:"the configuration file" default:"supervisord.conf"`
}
func init() {
log.SetOutput(os.Stdout)
log.SetLevel(log.DebugLevel)
}
func initSignals(s *Supervisor) {
sigs := make(chan os.Signal, 1)
signal.Notify(sigs, syscall.SIGINT, syscall.SIGTERM)
go func() {
sig := <-sigs
log.WithFields(log.Fields{"signal": sig}).Info("receive a signal to stop all process & exit")
s.procMgr.StopAllProcesses()
os.Exit(-1)
}()
}
var options Options
var parser = flags.NewParser(&options, flags.Default & ^flags.PrintErrors)
func main() {
if _, err := parser.Parse(); err != nil {
flagsErr, ok := err.(*flags.Error)
if ok {
switch flagsErr.Type {
case flags.ErrHelp:
fmt.Fprintln(os.Stdout, err)
os.Exit(0)
case flags.ErrCommandRequired:
s := NewSupervisor(options.Configuration)
initSignals(s)
if sErr := s.Reload(); sErr != nil {
panic(sErr)
}
default:
panic(err)
}
}
}
}