-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathbtcd.go
200 lines (176 loc) · 5.78 KB
/
btcd.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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
/**
* Copyright (c) 2018-present, MultiVAC Foundation.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
// Copyright (c) 2013-2016 The btcsuite developers
// Use of this source code is governed by an ISC
// license that can be found in the LICENSE file.
package main
import (
"fmt"
"math/rand"
"net"
"net/http"
"os"
"runtime"
"runtime/debug"
"runtime/pprof"
"time"
"github.com/multivactech/MultiVAC/configs/config"
"github.com/multivactech/MultiVAC/logger"
"github.com/multivactech/MultiVAC/server"
"github.com/multivactech/MultiVAC/server/autoupdater"
"github.com/multivactech/MultiVAC/server/shutdown"
_ "net/http/pprof"
"github.com/multivactech/MultiVAC/configs/limits"
)
// winServiceMain is only invoked on Windows. It detects when btcd is running
// as a service and reacts accordingly.
var winServiceMain func() (bool, error)
// btcdMain is the real main function for btcd. It is necessary to work around
// the fact that deferred functions do not run when os.Exit() is called. The
// optional serverChan parameter is mainly used by the service code to be
// notified with the server once it is setup so it can gracefully stop it when
// requested from the service control manager.
func btcdMain(serverChan chan<- *server.Server) error {
// Load configuration and parse command line. This function also
// initializes logging and configures it accordingly.
_, err := config.LoadConfig()
defer logger.LogCleanup()
if err != nil {
return err
}
cfg := config.GlobalConfig()
logger.InitLevel()
// Get a channel that will be closed when a shutdown signal has been
// triggered either from an OS signal such as SIGINT (Ctrl+C) or from
// another subsystem such as the RPC server.
interrupt := shutdown.InterruptListener()
defer logger.BtcdLogger().Info("Shutdown complete")
err = os.MkdirAll(cfg.DataDir, 0700)
if err != nil {
logger.BtcdLogger().Errorf("%v", err)
return err
}
// Show version at startup.
logger.BtcdLogger().Infof("Version %s", config.Version())
// Enable http profiling server if requested.
if cfg.Profile != "" {
go func() {
listenAddr := net.JoinHostPort("", cfg.Profile)
logger.BtcdLogger().Infof("Profile server listening on %s", listenAddr)
profileRedirect := http.RedirectHandler("/debug/pprof",
http.StatusSeeOther)
http.Handle("/", profileRedirect)
logger.BtcdLogger().Errorf("%v", http.ListenAndServe(listenAddr, nil))
}()
}
// Write cpu profile if requested.
if cfg.CPUProfile != "" {
f, err := os.Create(cfg.CPUProfile)
if err != nil {
logger.BtcdLogger().Errorf("Unable to create cpu profile: %v", err)
return err
}
pprof.StartCPUProfile(f)
defer f.Close()
defer pprof.StopCPUProfile()
}
// Return now if an interrupt signal was triggered.
if shutdown.InterruptRequested(interrupt) {
return nil
}
// Return now if an interrupt signal was triggered.
if shutdown.InterruptRequested(interrupt) {
return nil
}
if !config.GlobalConfig().RunAsDNSSeed && !config.GlobalConfig().StorageNode {
a, _ := time.Parse("2006-01-02 15:04:05", "2020-01-06 11:17:25")
for time.Now().Sub(a) < 0 {
time.Sleep(time.Second)
}
}
// Create server and start it.
server, err := server.NewServer(cfg.Listeners, config.ActiveNetParams().Params, cfg.MonitorListeners)
if err != nil {
// TODO: this logging could do with some beautifying.
logger.BtcdLogger().Errorf("Unable to start server on %v: %v",
cfg.Listeners, err)
return err
}
defer func() {
logger.BtcdLogger().Infof("Gracefully shutting down the server...")
server.Stop()
server.WaitForShutdown()
logger.ServerLogger().Infof("Server shutdown complete")
}()
server.Start()
if serverChan != nil {
serverChan <- server
}
// Try to initiate Autoupdater
reload := make(<-chan struct{})
if cfg.UpdateWatchURL != "" && cfg.UpdateIntervalSec > 0 && !cfg.StorageNode && !cfg.IsOneOfFirstMiners && !cfg.RunAsDNSSeed {
logger.BtcdLogger().Info("Start AutoUpdater.")
autoUpdater, err := autoupdater.NewAutoUpdater(autoupdater.Options{
BaseURL: cfg.UpdateWatchURL,
Architecture: runtime.GOARCH,
Platform: runtime.GOOS,
Interval: time.Duration(cfg.UpdateIntervalSec) * time.Second,
CurrentVersion: config.Version(),
})
if err != nil {
return err
}
reload = autoUpdater.ShutdownChan()
go func() {
// Randomly sleep to avoid all client update at the same time.
r := rand.New(rand.NewSource(time.Now().UnixNano()))
d := r.Intn(cfg.UpdateIntervalSec)
time.Sleep(time.Duration(d) * time.Second)
autoUpdater.Run()
}()
}
// Wait until:
// * the interrupt signal is received from an OS signal, or
// * shutdown is requested through one of the subsystems such as the RPC server, or
// * autoupdater requested to reload a new version.
select {
case <-interrupt:
case <-reload:
}
return nil
}
func main() {
// Use all processor cores.
runtime.GOMAXPROCS(runtime.NumCPU())
// Block and transaction processing can cause bursty allocations. This
// limits the garbage collector from excessively overallocating during
// bursts. This value was arrived at with the help of profiling live
// usage.
debug.SetGCPercent(10)
// Up some limits.
if err := limits.SetLimits(); err != nil {
fmt.Fprintf(os.Stderr, "failed to set limits: %v\n", err)
os.Exit(1)
}
// Call serviceMain on Windows to handle running as a service. When
// the return isService flag is true, exit now since we ran as a
// service. Otherwise, just fall through to normal operation.
if runtime.GOOS == "windows" {
isService, err := winServiceMain()
if err != nil {
logger.BtcdLogger().Error(err)
os.Exit(1)
}
if isService {
os.Exit(0)
}
}
// Work around defer not working after os.Exit()
if err := btcdMain(nil); err != nil {
os.Exit(1)
}
}