2022-11-04 09:52:27 +00:00
|
|
|
|
when (NimMajor, NimMinor) < (1, 4):
|
|
|
|
|
{.push raises: [Defect].}
|
|
|
|
|
else:
|
|
|
|
|
{.push raises: [].}
|
2021-07-14 17:58:46 +00:00
|
|
|
|
|
2020-04-29 04:49:27 +00:00
|
|
|
|
import
|
2023-04-25 13:34:57 +00:00
|
|
|
|
std/[options, strutils, os],
|
2021-06-09 14:37:08 +00:00
|
|
|
|
stew/shims/net as stewNet,
|
2022-11-23 09:08:00 +00:00
|
|
|
|
chronicles,
|
2022-10-18 17:35:26 +00:00
|
|
|
|
chronos,
|
|
|
|
|
metrics,
|
2022-11-30 18:41:19 +00:00
|
|
|
|
libbacktrace,
|
2022-10-18 17:35:26 +00:00
|
|
|
|
system/ansi_c,
|
2023-04-25 13:34:57 +00:00
|
|
|
|
libp2p/crypto/crypto
|
2022-07-25 11:01:37 +00:00
|
|
|
|
import
|
2022-12-07 11:30:32 +00:00
|
|
|
|
../../waku/common/logging,
|
2023-06-22 20:58:14 +00:00
|
|
|
|
./external_config,
|
2023-04-25 13:34:57 +00:00
|
|
|
|
./app
|
2022-10-18 17:35:26 +00:00
|
|
|
|
|
|
|
|
|
logScope:
|
2023-04-25 13:34:57 +00:00
|
|
|
|
topics = "wakunode main"
|
2021-07-22 09:46:54 +00:00
|
|
|
|
|
2022-10-21 13:01:01 +00:00
|
|
|
|
{.pop.} # @TODO confutils.nim(775, 17) Error: can raise an unlisted exception: ref IOError
|
|
|
|
|
when isMainModule:
|
|
|
|
|
## Node setup happens in 6 phases:
|
|
|
|
|
## 1. Set up storage
|
|
|
|
|
## 2. Initialize node
|
|
|
|
|
## 3. Mount and initialize configured protocols
|
|
|
|
|
## 4. Start node and mounted protocols
|
|
|
|
|
## 5. Start monitoring tools and external interfaces
|
|
|
|
|
## 6. Setup graceful shutdown hooks
|
2022-11-23 09:08:00 +00:00
|
|
|
|
|
2023-04-25 13:34:57 +00:00
|
|
|
|
const versionString = "version / git commit hash: " & app.git_version
|
2023-02-06 11:53:05 +00:00
|
|
|
|
let rng = crypto.newRng()
|
2022-11-03 09:45:06 +00:00
|
|
|
|
|
|
|
|
|
let confRes = WakuNodeConf.load(version=versionString)
|
|
|
|
|
if confRes.isErr():
|
|
|
|
|
error "failure while loading the configuration", error=confRes.error
|
|
|
|
|
quit(QuitFailure)
|
|
|
|
|
|
|
|
|
|
let conf = confRes.get()
|
2022-10-18 23:03:43 +00:00
|
|
|
|
|
2022-12-07 11:30:32 +00:00
|
|
|
|
## Logging setup
|
|
|
|
|
|
|
|
|
|
# Adhere to NO_COLOR initiative: https://no-color.org/
|
|
|
|
|
let color = try: not parseBool(os.getEnv("NO_COLOR", "false"))
|
2023-04-04 13:34:53 +00:00
|
|
|
|
except CatchableError: true
|
2022-12-07 11:30:32 +00:00
|
|
|
|
|
|
|
|
|
logging.setupLogLevel(conf.logLevel)
|
|
|
|
|
logging.setupLogFormat(conf.logFormat, color)
|
2022-11-23 09:08:00 +00:00
|
|
|
|
|
|
|
|
|
|
2023-04-25 13:34:57 +00:00
|
|
|
|
var wakunode2 = App.init(rng, conf)
|
|
|
|
|
|
2021-07-22 09:46:54 +00:00
|
|
|
|
##############
|
|
|
|
|
# Node setup #
|
|
|
|
|
##############
|
2022-10-27 22:05:02 +00:00
|
|
|
|
|
2022-03-17 16:33:17 +00:00
|
|
|
|
debug "1/7 Setting up storage"
|
2022-10-27 22:05:02 +00:00
|
|
|
|
|
|
|
|
|
## Peer persistence
|
2023-04-25 13:34:57 +00:00
|
|
|
|
let res1 = wakunode2.setupPeerPersistence()
|
|
|
|
|
if res1.isErr():
|
|
|
|
|
error "1/7 Setting up storage failed", error=res1.error
|
|
|
|
|
quit(QuitFailure)
|
2022-11-23 09:08:00 +00:00
|
|
|
|
|
2022-03-17 16:33:17 +00:00
|
|
|
|
debug "2/7 Retrieve dynamic bootstrap nodes"
|
2022-11-23 09:08:00 +00:00
|
|
|
|
|
2023-04-25 13:34:57 +00:00
|
|
|
|
let res3 = wakunode2.setupDyamicBootstrapNodes()
|
|
|
|
|
if res3.isErr():
|
|
|
|
|
error "2/7 Retrieving dynamic bootstrap nodes failed", error=res3.error
|
|
|
|
|
quit(QuitFailure)
|
2022-03-17 16:33:17 +00:00
|
|
|
|
|
|
|
|
|
debug "3/7 Initializing node"
|
2021-07-22 09:46:54 +00:00
|
|
|
|
|
2023-06-27 13:50:11 +00:00
|
|
|
|
let res4 = wakunode2.setupWakuApp()
|
2023-04-25 13:34:57 +00:00
|
|
|
|
if res4.isErr():
|
|
|
|
|
error "3/7 Initializing node failed", error=res4.error
|
2021-07-22 09:46:54 +00:00
|
|
|
|
quit(QuitFailure)
|
|
|
|
|
|
2022-03-17 16:33:17 +00:00
|
|
|
|
debug "4/7 Mounting protocols"
|
2021-04-24 04:56:37 +00:00
|
|
|
|
|
2023-04-25 13:34:57 +00:00
|
|
|
|
let res5 = waitFor wakunode2.setupAndMountProtocols()
|
|
|
|
|
if res5.isErr():
|
|
|
|
|
error "4/7 Mounting protocols failed", error=res5.error
|
|
|
|
|
quit(QuitFailure)
|
2020-09-01 02:09:54 +00:00
|
|
|
|
|
2022-03-17 16:33:17 +00:00
|
|
|
|
debug "5/7 Starting node and mounted protocols"
|
2022-11-23 09:08:00 +00:00
|
|
|
|
|
2023-06-27 13:50:11 +00:00
|
|
|
|
let res6 = waitFor wakunode2.startApp()
|
2023-04-25 13:34:57 +00:00
|
|
|
|
if res6.isErr():
|
|
|
|
|
error "5/7 Starting node and protocols failed", error=res6.error
|
|
|
|
|
quit(QuitFailure)
|
2022-10-27 22:05:02 +00:00
|
|
|
|
|
2022-03-17 16:33:17 +00:00
|
|
|
|
debug "6/7 Starting monitoring and external interfaces"
|
2021-07-22 09:46:54 +00:00
|
|
|
|
|
2023-04-25 13:34:57 +00:00
|
|
|
|
let res7 = wakunode2.setupMonitoringAndExternalInterfaces()
|
|
|
|
|
if res7.isErr():
|
|
|
|
|
error "6/7 Starting monitoring and external interfaces failed", error=res7.error
|
|
|
|
|
quit(QuitFailure)
|
2022-10-27 22:05:02 +00:00
|
|
|
|
|
|
|
|
|
debug "7/7 Setting up shutdown hooks"
|
2021-07-22 09:46:54 +00:00
|
|
|
|
## Setup shutdown hooks for this process.
|
|
|
|
|
## Stop node gracefully on shutdown.
|
2022-11-23 09:08:00 +00:00
|
|
|
|
|
2023-04-25 13:34:57 +00:00
|
|
|
|
proc asyncStopper(node: App) {.async.} =
|
2022-12-06 10:51:33 +00:00
|
|
|
|
await node.stop()
|
|
|
|
|
quit(QuitSuccess)
|
|
|
|
|
|
2021-04-15 08:18:14 +00:00
|
|
|
|
# Handle Ctrl-C SIGINT
|
|
|
|
|
proc handleCtrlC() {.noconv.} =
|
|
|
|
|
when defined(windows):
|
|
|
|
|
# workaround for https://github.com/nim-lang/Nim/issues/4057
|
|
|
|
|
setupForeignThreadGc()
|
2022-11-29 15:02:18 +00:00
|
|
|
|
notice "Shutting down after receiving SIGINT"
|
2023-04-25 13:34:57 +00:00
|
|
|
|
asyncSpawn asyncStopper(wakunode2)
|
2022-11-23 09:08:00 +00:00
|
|
|
|
|
2021-04-15 08:18:14 +00:00
|
|
|
|
setControlCHook(handleCtrlC)
|
|
|
|
|
|
|
|
|
|
# Handle SIGTERM
|
|
|
|
|
when defined(posix):
|
|
|
|
|
proc handleSigterm(signal: cint) {.noconv.} =
|
2022-11-29 15:02:18 +00:00
|
|
|
|
notice "Shutting down after receiving SIGTERM"
|
2023-04-25 13:34:57 +00:00
|
|
|
|
asyncSpawn asyncStopper(wakunode2)
|
2022-11-23 09:08:00 +00:00
|
|
|
|
|
2022-09-07 15:31:27 +00:00
|
|
|
|
c_signal(ansi_c.SIGTERM, handleSigterm)
|
2022-11-23 09:08:00 +00:00
|
|
|
|
|
2022-11-29 15:02:18 +00:00
|
|
|
|
# Handle SIGSEGV
|
|
|
|
|
when defined(posix):
|
|
|
|
|
proc handleSigsegv(signal: cint) {.noconv.} =
|
2022-11-30 18:41:19 +00:00
|
|
|
|
# Require --debugger:native
|
|
|
|
|
fatal "Shutting down after receiving SIGSEGV", stacktrace=getBacktrace()
|
2022-11-29 15:02:18 +00:00
|
|
|
|
|
2022-11-30 18:41:19 +00:00
|
|
|
|
# Not available in -d:release mode
|
2022-11-29 15:02:18 +00:00
|
|
|
|
writeStackTrace()
|
|
|
|
|
|
2023-04-25 13:34:57 +00:00
|
|
|
|
waitFor wakunode2.stop()
|
2022-11-29 15:02:18 +00:00
|
|
|
|
quit(QuitFailure)
|
|
|
|
|
|
|
|
|
|
c_signal(ansi_c.SIGSEGV, handleSigsegv)
|
|
|
|
|
|
2022-10-21 13:01:01 +00:00
|
|
|
|
info "Node setup complete"
|
2020-09-01 02:09:54 +00:00
|
|
|
|
|
2021-05-28 18:41:29 +00:00
|
|
|
|
runForever()
|