cmd/geth: reorganise console/attach commands/flags
This commit is contained in:
parent
8b517d7f00
commit
502a2bd69f
@ -28,42 +28,47 @@ import (
|
|||||||
"gopkg.in/urfave/cli.v1"
|
"gopkg.in/urfave/cli.v1"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
var (
|
||||||
|
consoleFlags = []cli.Flag{utils.JSpathFlag, utils.ExecFlag, utils.PreloadJSFlag}
|
||||||
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
consoleCommand = cli.Command{
|
consoleCommand = cli.Command{
|
||||||
Action: localConsole,
|
Action: utils.MigrateFlags(localConsole),
|
||||||
Name: "console",
|
Name: "console",
|
||||||
Usage: "Start an interactive JavaScript environment",
|
Usage: "Start an interactive JavaScript environment",
|
||||||
ArgsUsage: "", // TODO: Write this!
|
Flags: append(append(nodeFlags, rpcFlags...), consoleFlags...),
|
||||||
Category: "CONSOLE COMMANDS",
|
Category: "CONSOLE COMMANDS",
|
||||||
Description: `
|
Description: `
|
||||||
The Geth console is an interactive shell for the JavaScript runtime environment
|
The Geth console is an interactive shell for the JavaScript runtime environment
|
||||||
which exposes a node admin interface as well as the Ðapp JavaScript API.
|
which exposes a node admin interface as well as the Ðapp JavaScript API.
|
||||||
See https://github.com/ethereum/go-ethereum/wiki/Javascipt-Console
|
See https://github.com/ethereum/go-ethereum/wiki/Javascipt-Console.`,
|
||||||
`,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
attachCommand = cli.Command{
|
attachCommand = cli.Command{
|
||||||
Action: remoteConsole,
|
Action: utils.MigrateFlags(remoteConsole),
|
||||||
Name: "attach",
|
Name: "attach",
|
||||||
Usage: "Start an interactive JavaScript environment (connect to node)",
|
Usage: "Start an interactive JavaScript environment (connect to node)",
|
||||||
ArgsUsage: "", // TODO: Write this!
|
ArgsUsage: "[endpoint]",
|
||||||
|
Flags: append(consoleFlags, utils.DataDirFlag),
|
||||||
Category: "CONSOLE COMMANDS",
|
Category: "CONSOLE COMMANDS",
|
||||||
Description: `
|
Description: `
|
||||||
The Geth console is an interactive shell for the JavaScript runtime environment
|
The Geth console is an interactive shell for the JavaScript runtime environment
|
||||||
which exposes a node admin interface as well as the Ðapp JavaScript API.
|
which exposes a node admin interface as well as the Ðapp JavaScript API.
|
||||||
See https://github.com/ethereum/go-ethereum/wiki/Javascipt-Console.
|
See https://github.com/ethereum/go-ethereum/wiki/Javascipt-Console.
|
||||||
This command allows to open a console on a running geth node.
|
This command allows to open a console on a running geth node.`,
|
||||||
`,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
javascriptCommand = cli.Command{
|
javascriptCommand = cli.Command{
|
||||||
Action: ephemeralConsole,
|
Action: utils.MigrateFlags(ephemeralConsole),
|
||||||
Name: "js",
|
Name: "js",
|
||||||
Usage: "Execute the specified JavaScript files",
|
Usage: "Execute the specified JavaScript files",
|
||||||
ArgsUsage: "", // TODO: Write this!
|
ArgsUsage: "<jsfile> [jsfile...]",
|
||||||
|
Flags: append(nodeFlags, consoleFlags...),
|
||||||
Category: "CONSOLE COMMANDS",
|
Category: "CONSOLE COMMANDS",
|
||||||
Description: `
|
Description: `
|
||||||
The JavaScript VM exposes a node admin interface as well as the Ðapp
|
The JavaScript VM exposes a node admin interface as well as the Ðapp
|
||||||
JavaScript API. See https://github.com/ethereum/go-ethereum/wiki/Javascipt-Console
|
JavaScript API. See https://github.com/ethereum/go-ethereum/wiki/Javascipt-Console`,
|
||||||
`,
|
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -81,11 +86,12 @@ func localConsole(ctx *cli.Context) error {
|
|||||||
utils.Fatalf("Failed to attach to the inproc geth: %v", err)
|
utils.Fatalf("Failed to attach to the inproc geth: %v", err)
|
||||||
}
|
}
|
||||||
config := console.Config{
|
config := console.Config{
|
||||||
DataDir: node.DataDir(),
|
DataDir: utils.MakeDataDir(ctx),
|
||||||
DocRoot: ctx.GlobalString(utils.JSpathFlag.Name),
|
DocRoot: ctx.GlobalString(utils.JSpathFlag.Name),
|
||||||
Client: client,
|
Client: client,
|
||||||
Preload: utils.MakeConsolePreloads(ctx),
|
Preload: utils.MakeConsolePreloads(ctx),
|
||||||
}
|
}
|
||||||
|
|
||||||
console, err := console.New(config)
|
console, err := console.New(config)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
utils.Fatalf("Failed to start the JavaScript console: %v", err)
|
utils.Fatalf("Failed to start the JavaScript console: %v", err)
|
||||||
@ -118,17 +124,18 @@ func remoteConsole(ctx *cli.Context) error {
|
|||||||
Client: client,
|
Client: client,
|
||||||
Preload: utils.MakeConsolePreloads(ctx),
|
Preload: utils.MakeConsolePreloads(ctx),
|
||||||
}
|
}
|
||||||
|
|
||||||
console, err := console.New(config)
|
console, err := console.New(config)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
utils.Fatalf("Failed to start the JavaScript console: %v", err)
|
utils.Fatalf("Failed to start the JavaScript console: %v", err)
|
||||||
}
|
}
|
||||||
defer console.Stop(false)
|
defer console.Stop(false)
|
||||||
|
|
||||||
// If only a short execution was requested, evaluate and return
|
|
||||||
if script := ctx.GlobalString(utils.ExecFlag.Name); script != "" {
|
if script := ctx.GlobalString(utils.ExecFlag.Name); script != "" {
|
||||||
console.Evaluate(script)
|
console.Evaluate(script)
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// Otherwise print the welcome screen and enter interactive mode
|
// Otherwise print the welcome screen and enter interactive mode
|
||||||
console.Welcome()
|
console.Welcome()
|
||||||
console.Interactive()
|
console.Interactive()
|
||||||
@ -151,7 +158,7 @@ func dialRPC(endpoint string) (*rpc.Client, error) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// ephemeralConsole starts a new geth node, attaches an ephemeral JavaScript
|
// ephemeralConsole starts a new geth node, attaches an ephemeral JavaScript
|
||||||
// console to it, and each of the files specified as arguments and tears the
|
// console to it, executes each of the files specified as arguments and tears
|
||||||
// everything down.
|
// everything down.
|
||||||
func ephemeralConsole(ctx *cli.Context) error {
|
func ephemeralConsole(ctx *cli.Context) error {
|
||||||
// Create and start the node based on the CLI flags
|
// Create and start the node based on the CLI flags
|
||||||
@ -165,11 +172,12 @@ func ephemeralConsole(ctx *cli.Context) error {
|
|||||||
utils.Fatalf("Failed to attach to the inproc geth: %v", err)
|
utils.Fatalf("Failed to attach to the inproc geth: %v", err)
|
||||||
}
|
}
|
||||||
config := console.Config{
|
config := console.Config{
|
||||||
DataDir: node.DataDir(),
|
DataDir: utils.MakeDataDir(ctx),
|
||||||
DocRoot: ctx.GlobalString(utils.JSpathFlag.Name),
|
DocRoot: ctx.GlobalString(utils.JSpathFlag.Name),
|
||||||
Client: client,
|
Client: client,
|
||||||
Preload: utils.MakeConsolePreloads(ctx),
|
Preload: utils.MakeConsolePreloads(ctx),
|
||||||
}
|
}
|
||||||
|
|
||||||
console, err := console.New(config)
|
console, err := console.New(config)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
utils.Fatalf("Failed to start the JavaScript console: %v", err)
|
utils.Fatalf("Failed to start the JavaScript console: %v", err)
|
||||||
|
134
cmd/geth/main.go
134
cmd/geth/main.go
@ -49,6 +49,72 @@ var (
|
|||||||
relOracle = common.HexToAddress("0xfa7b9770ca4cb04296cac84f37736d4041251cdf")
|
relOracle = common.HexToAddress("0xfa7b9770ca4cb04296cac84f37736d4041251cdf")
|
||||||
// The app that holds all commands and flags.
|
// The app that holds all commands and flags.
|
||||||
app = utils.NewApp(gitCommit, "the go-ethereum command line interface")
|
app = utils.NewApp(gitCommit, "the go-ethereum command line interface")
|
||||||
|
// flags that configure the node
|
||||||
|
nodeFlags = []cli.Flag{
|
||||||
|
utils.IdentityFlag,
|
||||||
|
utils.UnlockedAccountFlag,
|
||||||
|
utils.PasswordFileFlag,
|
||||||
|
utils.BootnodesFlag,
|
||||||
|
utils.DataDirFlag,
|
||||||
|
utils.KeyStoreDirFlag,
|
||||||
|
utils.NoUSBFlag,
|
||||||
|
utils.EthashCacheDirFlag,
|
||||||
|
utils.EthashCachesInMemoryFlag,
|
||||||
|
utils.EthashCachesOnDiskFlag,
|
||||||
|
utils.EthashDatasetDirFlag,
|
||||||
|
utils.EthashDatasetsInMemoryFlag,
|
||||||
|
utils.EthashDatasetsOnDiskFlag,
|
||||||
|
utils.FastSyncFlag,
|
||||||
|
utils.LightModeFlag,
|
||||||
|
utils.SyncModeFlag,
|
||||||
|
utils.LightServFlag,
|
||||||
|
utils.LightPeersFlag,
|
||||||
|
utils.LightKDFFlag,
|
||||||
|
utils.CacheFlag,
|
||||||
|
utils.TrieCacheGenFlag,
|
||||||
|
utils.ListenPortFlag,
|
||||||
|
utils.MaxPeersFlag,
|
||||||
|
utils.MaxPendingPeersFlag,
|
||||||
|
utils.EtherbaseFlag,
|
||||||
|
utils.GasPriceFlag,
|
||||||
|
utils.MinerThreadsFlag,
|
||||||
|
utils.MiningEnabledFlag,
|
||||||
|
utils.TargetGasLimitFlag,
|
||||||
|
utils.NATFlag,
|
||||||
|
utils.NoDiscoverFlag,
|
||||||
|
utils.DiscoveryV5Flag,
|
||||||
|
utils.NetrestrictFlag,
|
||||||
|
utils.NodeKeyFileFlag,
|
||||||
|
utils.NodeKeyHexFlag,
|
||||||
|
utils.WhisperEnabledFlag,
|
||||||
|
utils.DevModeFlag,
|
||||||
|
utils.TestNetFlag,
|
||||||
|
utils.VMEnableDebugFlag,
|
||||||
|
utils.NetworkIdFlag,
|
||||||
|
utils.RPCCORSDomainFlag,
|
||||||
|
utils.EthStatsURLFlag,
|
||||||
|
utils.MetricsEnabledFlag,
|
||||||
|
utils.FakePoWFlag,
|
||||||
|
utils.NoCompactionFlag,
|
||||||
|
utils.GpoBlocksFlag,
|
||||||
|
utils.GpoPercentileFlag,
|
||||||
|
utils.ExtraDataFlag,
|
||||||
|
configFileFlag,
|
||||||
|
}
|
||||||
|
|
||||||
|
rpcFlags = []cli.Flag{
|
||||||
|
utils.RPCEnabledFlag,
|
||||||
|
utils.RPCListenAddrFlag,
|
||||||
|
utils.RPCPortFlag,
|
||||||
|
utils.RPCApiFlag,
|
||||||
|
utils.WSEnabledFlag,
|
||||||
|
utils.WSListenAddrFlag,
|
||||||
|
utils.WSPortFlag,
|
||||||
|
utils.WSApiFlag,
|
||||||
|
utils.WSAllowedOriginsFlag,
|
||||||
|
utils.IPCDisabledFlag,
|
||||||
|
utils.IPCPathFlag,
|
||||||
|
}
|
||||||
)
|
)
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
@ -81,71 +147,9 @@ func init() {
|
|||||||
dumpConfigCommand,
|
dumpConfigCommand,
|
||||||
}
|
}
|
||||||
|
|
||||||
app.Flags = []cli.Flag{
|
app.Flags = append(app.Flags, nodeFlags...)
|
||||||
utils.IdentityFlag,
|
app.Flags = append(app.Flags, rpcFlags...)
|
||||||
utils.UnlockedAccountFlag,
|
app.Flags = append(app.Flags, consoleFlags...)
|
||||||
utils.PasswordFileFlag,
|
|
||||||
utils.BootnodesFlag,
|
|
||||||
utils.DataDirFlag,
|
|
||||||
utils.KeyStoreDirFlag,
|
|
||||||
utils.NoUSBFlag,
|
|
||||||
utils.EthashCacheDirFlag,
|
|
||||||
utils.EthashCachesInMemoryFlag,
|
|
||||||
utils.EthashCachesOnDiskFlag,
|
|
||||||
utils.EthashDatasetDirFlag,
|
|
||||||
utils.EthashDatasetsInMemoryFlag,
|
|
||||||
utils.EthashDatasetsOnDiskFlag,
|
|
||||||
utils.FastSyncFlag,
|
|
||||||
utils.LightModeFlag,
|
|
||||||
utils.SyncModeFlag,
|
|
||||||
utils.LightServFlag,
|
|
||||||
utils.LightPeersFlag,
|
|
||||||
utils.LightKDFFlag,
|
|
||||||
utils.CacheFlag,
|
|
||||||
utils.TrieCacheGenFlag,
|
|
||||||
utils.JSpathFlag,
|
|
||||||
utils.ListenPortFlag,
|
|
||||||
utils.MaxPeersFlag,
|
|
||||||
utils.MaxPendingPeersFlag,
|
|
||||||
utils.EtherbaseFlag,
|
|
||||||
utils.GasPriceFlag,
|
|
||||||
utils.MinerThreadsFlag,
|
|
||||||
utils.MiningEnabledFlag,
|
|
||||||
utils.TargetGasLimitFlag,
|
|
||||||
utils.NATFlag,
|
|
||||||
utils.NoDiscoverFlag,
|
|
||||||
utils.DiscoveryV5Flag,
|
|
||||||
utils.NetrestrictFlag,
|
|
||||||
utils.NodeKeyFileFlag,
|
|
||||||
utils.NodeKeyHexFlag,
|
|
||||||
utils.RPCEnabledFlag,
|
|
||||||
utils.RPCListenAddrFlag,
|
|
||||||
utils.RPCPortFlag,
|
|
||||||
utils.RPCApiFlag,
|
|
||||||
utils.WSEnabledFlag,
|
|
||||||
utils.WSListenAddrFlag,
|
|
||||||
utils.WSPortFlag,
|
|
||||||
utils.WSApiFlag,
|
|
||||||
utils.WSAllowedOriginsFlag,
|
|
||||||
utils.IPCDisabledFlag,
|
|
||||||
utils.IPCPathFlag,
|
|
||||||
utils.ExecFlag,
|
|
||||||
utils.PreloadJSFlag,
|
|
||||||
utils.WhisperEnabledFlag,
|
|
||||||
utils.DevModeFlag,
|
|
||||||
utils.TestNetFlag,
|
|
||||||
utils.VMEnableDebugFlag,
|
|
||||||
utils.NetworkIdFlag,
|
|
||||||
utils.RPCCORSDomainFlag,
|
|
||||||
utils.EthStatsURLFlag,
|
|
||||||
utils.MetricsEnabledFlag,
|
|
||||||
utils.FakePoWFlag,
|
|
||||||
utils.NoCompactionFlag,
|
|
||||||
utils.GpoBlocksFlag,
|
|
||||||
utils.GpoPercentileFlag,
|
|
||||||
utils.ExtraDataFlag,
|
|
||||||
configFileFlag,
|
|
||||||
}
|
|
||||||
app.Flags = append(app.Flags, debug.Flags...)
|
app.Flags = append(app.Flags, debug.Flags...)
|
||||||
|
|
||||||
app.Before = func(ctx *cli.Context) error {
|
app.Before = func(ctx *cli.Context) error {
|
||||||
|
@ -331,7 +331,7 @@ var (
|
|||||||
}
|
}
|
||||||
ExecFlag = cli.StringFlag{
|
ExecFlag = cli.StringFlag{
|
||||||
Name: "exec",
|
Name: "exec",
|
||||||
Usage: "Execute JavaScript statement (only in combination with console/attach)",
|
Usage: "Execute JavaScript statement",
|
||||||
}
|
}
|
||||||
PreloadJSFlag = cli.StringFlag{
|
PreloadJSFlag = cli.StringFlag{
|
||||||
Name: "preload",
|
Name: "preload",
|
||||||
|
Loading…
Reference in New Issue
Block a user