2022-05-12 11:42:18 +00:00
|
|
|
import std/osproc
|
|
|
|
import std/os
|
|
|
|
import std/streams
|
|
|
|
import std/strutils
|
|
|
|
|
|
|
|
const workingDir = currentSourcePath() / ".." / ".." / ".."
|
2022-05-19 19:56:03 +00:00
|
|
|
const executable = "build" / "codex"
|
2022-05-12 11:42:18 +00:00
|
|
|
|
2022-11-08 07:10:17 +00:00
|
|
|
type NodeProcess* = ref object
|
|
|
|
process: Process
|
|
|
|
arguments: seq[string]
|
|
|
|
debug: bool
|
|
|
|
|
|
|
|
proc start(node: NodeProcess) =
|
|
|
|
if node.debug:
|
|
|
|
node.process = startProcess(
|
|
|
|
executable,
|
|
|
|
workingDir,
|
|
|
|
node.arguments,
|
|
|
|
options={poParentStreams}
|
|
|
|
)
|
2022-05-12 11:42:18 +00:00
|
|
|
sleep(1000)
|
|
|
|
else:
|
2022-11-08 07:10:17 +00:00
|
|
|
node.process = startProcess(
|
|
|
|
executable,
|
|
|
|
workingDir,
|
|
|
|
node.arguments
|
|
|
|
)
|
|
|
|
for line in node.process.outputStream.lines:
|
2022-05-19 19:56:03 +00:00
|
|
|
if line.contains("Started codex node"):
|
2022-05-12 11:42:18 +00:00
|
|
|
break
|
|
|
|
|
2022-11-08 07:10:17 +00:00
|
|
|
proc startNode*(args: openArray[string], debug = false): NodeProcess =
|
|
|
|
## Starts a Codex Node with the specified arguments.
|
|
|
|
## Set debug to 'true' to see output of the node.
|
|
|
|
let node = NodeProcess(arguments: @args, debug: debug)
|
|
|
|
node.start()
|
|
|
|
node
|
|
|
|
|
|
|
|
proc stop*(node: NodeProcess) =
|
|
|
|
let process = node.process
|
|
|
|
process.terminate()
|
|
|
|
discard process.waitForExit(timeout=5_000)
|
|
|
|
process.close()
|
|
|
|
|
|
|
|
proc restart*(node: NodeProcess) =
|
|
|
|
node.stop()
|
|
|
|
node.start()
|