-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathrun.go
98 lines (82 loc) · 2.2 KB
/
run.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
package pool
import (
"fmt"
"net/http"
"os"
"path/filepath"
"github.com/lightningnetwork/lnd/build"
"github.com/lightningnetwork/lnd/signal"
)
// Run starts the trader daemon and blocks until it's shut down again.
func Run(cfg *Config) error {
// Hook interceptor for os signals.
var err error
cfg.ShutdownInterceptor, err = signal.Intercept()
if err != nil {
return err
}
cfg.RequestShutdown = cfg.ShutdownInterceptor.RequestShutdown
sugLogMgr := build.NewSubLoggerManager(
build.NewDefaultLogHandlers(cfg.Logging, logWriter)...,
)
SetupLoggers(sugLogMgr, cfg.ShutdownInterceptor)
// Special show command to list supported subsystems and exit.
if cfg.DebugLevel == "show" {
fmt.Printf("Supported subsystems: %v\n",
sugLogMgr.SupportedSubsystems())
os.Exit(0)
}
if cfg.MaxLogFiles != 0 {
if cfg.Logging.File.MaxLogFiles !=
build.DefaultMaxLogFiles {
return fmt.Errorf("cannot set both maxlogfiles and "+
"logging.file.max-files: %w", err)
}
cfg.Logging.File.MaxLogFiles = cfg.MaxLogFiles
}
if cfg.MaxLogFileSize != 0 {
if cfg.Logging.File.MaxLogFileSize !=
build.DefaultMaxLogFileSize {
return fmt.Errorf("cannot set both maxlogfilesize and "+
"logging.file.max-file-size: %w", err)
}
cfg.Logging.File.MaxLogFileSize = cfg.MaxLogFileSize
}
err = logWriter.InitLogRotator(
cfg.Logging.File, filepath.Join(cfg.LogDir, DefaultLogFilename),
)
if err != nil {
return err
}
err = build.ParseAndSetDebugLevels(cfg.DebugLevel, sugLogMgr)
if err != nil {
return err
}
if cfg.Profile != "" {
go func() {
log.Infof("Pprof listening on %v", cfg.Profile)
profileRedirect := http.RedirectHandler(
"/debug/pprof", http.StatusSeeOther,
)
http.Handle("/", profileRedirect)
//nolint:gosec
err := http.ListenAndServe(cfg.Profile, nil)
if err != nil {
log.Errorf("Unable to run profiler: %v", err)
}
}()
}
trader := NewServer(cfg)
err = trader.Start()
if err != nil {
log.Errorf("Error starting server: %v", err)
return fmt.Errorf("unable to start server: %v", err)
}
<-cfg.ShutdownInterceptor.ShutdownChannel()
err = trader.Stop()
if err != nil {
log.Errorf("Error stopping server: %v", err)
return err
}
return nil
}