consolecmd.go 6.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
// Copyright 2016 The go-ethereum Authors
// This file is part of go-ethereum.
//
// go-ethereum is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// go-ethereum is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with go-ethereum. If not, see <http://www.gnu.org/licenses/>.

package main

import (
	"os"
	"os/signal"
22
	"strings"
23 24 25

	"github.com/ethereum/go-ethereum/cmd/utils"
	"github.com/ethereum/go-ethereum/console"
26 27
	"github.com/ethereum/go-ethereum/node"
	"github.com/ethereum/go-ethereum/rpc"
28
	"gopkg.in/urfave/cli.v1"
29 30
)

31 32 33
var (
	consoleFlags = []cli.Flag{utils.JSpathFlag, utils.ExecFlag, utils.PreloadJSFlag}

34
	consoleCommand = cli.Command{
35 36 37
		Action:   utils.MigrateFlags(localConsole),
		Name:     "console",
		Usage:    "Start an interactive JavaScript environment",
38
		Flags:    append(append(append(nodeFlags, rpcFlags...), consoleFlags...), whisperFlags...),
39
		Category: "CONSOLE COMMANDS",
40 41 42
		Description: `
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.
43
See https://github.com/ethereum/go-ethereum/wiki/Javascipt-Console.`,
44
	}
45

46
	attachCommand = cli.Command{
47
		Action:    utils.MigrateFlags(remoteConsole),
48 49
		Name:      "attach",
		Usage:     "Start an interactive JavaScript environment (connect to node)",
50 51
		ArgsUsage: "[endpoint]",
		Flags:     append(consoleFlags, utils.DataDirFlag),
52
		Category:  "CONSOLE COMMANDS",
53 54 55 56
		Description: `
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.
See https://github.com/ethereum/go-ethereum/wiki/Javascipt-Console.
57
This command allows to open a console on a running geth node.`,
58
	}
59

60
	javascriptCommand = cli.Command{
61
		Action:    utils.MigrateFlags(ephemeralConsole),
62 63
		Name:      "js",
		Usage:     "Execute the specified JavaScript files",
64 65
		ArgsUsage: "<jsfile> [jsfile...]",
		Flags:     append(nodeFlags, consoleFlags...),
66
		Category:  "CONSOLE COMMANDS",
67 68
		Description: `
The JavaScript VM exposes a node admin interface as well as the Ðapp
69
JavaScript API. See https://github.com/ethereum/go-ethereum/wiki/Javascipt-Console`,
70 71 72 73 74
	}
)

// localConsole starts a new geth node, attaching a JavaScript console to it at the
// same time.
75
func localConsole(ctx *cli.Context) error {
76
	// Create and start the node based on the CLI flags
77
	node := makeFullNode(ctx)
78 79 80 81 82 83 84 85 86
	startNode(ctx, node)
	defer node.Stop()

	// Attach to the newly started node and start the JavaScript console
	client, err := node.Attach()
	if err != nil {
		utils.Fatalf("Failed to attach to the inproc geth: %v", err)
	}
	config := console.Config{
87
		DataDir: utils.MakeDataDir(ctx),
88 89 90 91
		DocRoot: ctx.GlobalString(utils.JSpathFlag.Name),
		Client:  client,
		Preload: utils.MakeConsolePreloads(ctx),
	}
92

93 94 95 96 97 98 99 100 101
	console, err := console.New(config)
	if err != nil {
		utils.Fatalf("Failed to start the JavaScript console: %v", err)
	}
	defer console.Stop(false)

	// If only a short execution was requested, evaluate and return
	if script := ctx.GlobalString(utils.ExecFlag.Name); script != "" {
		console.Evaluate(script)
102
		return nil
103 104 105 106
	}
	// Otherwise print the welcome screen and enter interactive mode
	console.Welcome()
	console.Interactive()
107 108

	return nil
109 110 111 112
}

// remoteConsole will connect to a remote geth instance, attaching a JavaScript
// console to it.
113
func remoteConsole(ctx *cli.Context) error {
114
	// Attach to a remotely running geth instance and start the JavaScript console
115
	client, err := dialRPC(ctx.Args().First())
116 117 118 119
	if err != nil {
		utils.Fatalf("Unable to attach to remote geth: %v", err)
	}
	config := console.Config{
120
		DataDir: utils.MakeDataDir(ctx),
121 122 123 124
		DocRoot: ctx.GlobalString(utils.JSpathFlag.Name),
		Client:  client,
		Preload: utils.MakeConsolePreloads(ctx),
	}
125

126 127 128 129 130 131 132 133
	console, err := console.New(config)
	if err != nil {
		utils.Fatalf("Failed to start the JavaScript console: %v", err)
	}
	defer console.Stop(false)

	if script := ctx.GlobalString(utils.ExecFlag.Name); script != "" {
		console.Evaluate(script)
134
		return nil
135
	}
136

137 138 139
	// Otherwise print the welcome screen and enter interactive mode
	console.Welcome()
	console.Interactive()
140 141

	return nil
142 143
}

144 145 146 147 148
// dialRPC returns a RPC client which connects to the given endpoint.
// The check for empty endpoint implements the defaulting logic
// for "geth attach" and "geth monitor" with no argument.
func dialRPC(endpoint string) (*rpc.Client, error) {
	if endpoint == "" {
149
		endpoint = node.DefaultIPCEndpoint(clientIdentifier)
150 151 152 153 154 155 156 157
	} else if strings.HasPrefix(endpoint, "rpc:") || strings.HasPrefix(endpoint, "ipc:") {
		// Backwards compatibility with geth < 1.5 which required
		// these prefixes.
		endpoint = endpoint[4:]
	}
	return rpc.Dial(endpoint)
}

158
// ephemeralConsole starts a new geth node, attaches an ephemeral JavaScript
159
// console to it, executes each of the files specified as arguments and tears
160
// everything down.
161
func ephemeralConsole(ctx *cli.Context) error {
162
	// Create and start the node based on the CLI flags
163
	node := makeFullNode(ctx)
164 165 166 167 168 169 170 171 172
	startNode(ctx, node)
	defer node.Stop()

	// Attach to the newly started node and start the JavaScript console
	client, err := node.Attach()
	if err != nil {
		utils.Fatalf("Failed to attach to the inproc geth: %v", err)
	}
	config := console.Config{
173
		DataDir: utils.MakeDataDir(ctx),
174 175 176 177
		DocRoot: ctx.GlobalString(utils.JSpathFlag.Name),
		Client:  client,
		Preload: utils.MakeConsolePreloads(ctx),
	}
178

179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199
	console, err := console.New(config)
	if err != nil {
		utils.Fatalf("Failed to start the JavaScript console: %v", err)
	}
	defer console.Stop(false)

	// Evaluate each of the specified JavaScript files
	for _, file := range ctx.Args() {
		if err = console.Execute(file); err != nil {
			utils.Fatalf("Failed to execute %s: %v", file, err)
		}
	}
	// Wait for pending callbacks, but stop for Ctrl-C.
	abort := make(chan os.Signal, 1)
	signal.Notify(abort, os.Interrupt)

	go func() {
		<-abort
		os.Exit(0)
	}()
	console.Stop(true)
200 201

	return nil
202
}