forked from TrueCloudLab/neoneo-go
f457d50773
To be able running the node from any working directory by simply pointing the relative-path as prefix for relative parameters set in config. Closes #3179. Signed-off-by: Ekaterina Pavlova <ekt@morphbits.io>
48 lines
1.3 KiB
Go
48 lines
1.3 KiB
Go
package vm
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
|
|
"github.com/chzyer/readline"
|
|
"github.com/nspcc-dev/neo-go/cli/cmdargs"
|
|
"github.com/nspcc-dev/neo-go/cli/options"
|
|
"github.com/nspcc-dev/neo-go/pkg/core/storage/dbconfig"
|
|
"github.com/urfave/cli"
|
|
)
|
|
|
|
// NewCommands returns 'vm' command.
|
|
func NewCommands() []cli.Command {
|
|
cfgFlags := []cli.Flag{options.Config, options.ConfigFile, options.RelativePath}
|
|
cfgFlags = append(cfgFlags, options.Network...)
|
|
return []cli.Command{{
|
|
Name: "vm",
|
|
Usage: "start the virtual machine",
|
|
Action: startVMPrompt,
|
|
Flags: cfgFlags,
|
|
}}
|
|
}
|
|
|
|
func startVMPrompt(ctx *cli.Context) error {
|
|
if err := cmdargs.EnsureNone(ctx); err != nil {
|
|
return err
|
|
}
|
|
|
|
cfg, err := options.GetConfigFromContext(ctx)
|
|
if err != nil {
|
|
return cli.NewExitError(err, 1)
|
|
}
|
|
if ctx.NumFlags() == 0 {
|
|
cfg.ApplicationConfiguration.DBConfiguration.Type = dbconfig.InMemoryDB
|
|
}
|
|
if cfg.ApplicationConfiguration.DBConfiguration.Type != dbconfig.InMemoryDB {
|
|
cfg.ApplicationConfiguration.DBConfiguration.LevelDBOptions.ReadOnly = true
|
|
cfg.ApplicationConfiguration.DBConfiguration.BoltDBOptions.ReadOnly = true
|
|
}
|
|
|
|
p, err := NewWithConfig(true, os.Exit, &readline.Config{}, cfg)
|
|
if err != nil {
|
|
return cli.NewExitError(fmt.Errorf("failed to create VM CLI: %w", err), 1)
|
|
}
|
|
return p.Run()
|
|
}
|