2021-05-19 00:01:30 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2021-06-10 04:27:48 +00:00
|
|
|
"os"
|
|
|
|
"os/signal"
|
2021-06-10 04:27:33 +00:00
|
|
|
"syscall"
|
2021-05-19 00:01:30 +00:00
|
|
|
|
|
|
|
"github.com/urfave/cli/v2"
|
|
|
|
)
|
|
|
|
|
2021-06-07 21:55:39 +00:00
|
|
|
var runSimCommand = &cli.Command{
|
|
|
|
Name: "run",
|
|
|
|
Description: "Run the simulation.",
|
2021-05-19 00:01:30 +00:00
|
|
|
Flags: []cli.Flag{
|
|
|
|
&cli.IntFlag{
|
|
|
|
Name: "epochs",
|
2021-06-07 21:55:39 +00:00
|
|
|
Usage: "Advance the given number of epochs then stop.",
|
2021-05-19 00:01:30 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
Action: func(cctx *cli.Context) error {
|
|
|
|
node, err := open(cctx)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer node.Close()
|
|
|
|
|
2021-06-10 04:27:33 +00:00
|
|
|
go profileOnSignal(cctx, syscall.SIGUSR2)
|
|
|
|
|
2021-05-19 00:01:30 +00:00
|
|
|
sim, err := node.LoadSim(cctx.Context, cctx.String("simulation"))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
fmt.Fprintln(cctx.App.Writer, "loading simulation")
|
|
|
|
err = sim.Load(cctx.Context)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
fmt.Fprintln(cctx.App.Writer, "running simulation")
|
|
|
|
targetEpochs := cctx.Int("epochs")
|
2021-06-10 04:27:48 +00:00
|
|
|
|
|
|
|
ch := make(chan os.Signal, 1)
|
|
|
|
signal.Notify(ch, syscall.SIGUSR1)
|
|
|
|
defer signal.Stop(ch)
|
|
|
|
|
2021-06-07 21:55:39 +00:00
|
|
|
for i := 0; targetEpochs == 0 || i < targetEpochs; i++ {
|
2021-05-19 00:01:30 +00:00
|
|
|
ts, err := sim.Step(cctx.Context)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2021-06-10 04:27:48 +00:00
|
|
|
|
2021-05-19 00:01:30 +00:00
|
|
|
fmt.Fprintf(cctx.App.Writer, "advanced to %d %s\n", ts.Height(), ts.Key())
|
2021-06-10 04:27:48 +00:00
|
|
|
|
|
|
|
// Print
|
|
|
|
select {
|
|
|
|
case <-ch:
|
|
|
|
if err := printInfo(cctx.Context, sim, cctx.App.Writer); err != nil {
|
|
|
|
fmt.Fprintf(cctx.App.ErrWriter, "ERROR: failed to print info: %s\n", err)
|
|
|
|
}
|
|
|
|
case <-cctx.Context.Done():
|
|
|
|
return cctx.Err()
|
|
|
|
default:
|
|
|
|
}
|
2021-05-19 00:01:30 +00:00
|
|
|
}
|
|
|
|
fmt.Fprintln(cctx.App.Writer, "simulation done")
|
|
|
|
return err
|
|
|
|
},
|
|
|
|
}
|