2013-10-09 03:18:49 +02:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
"github.com/conformal/btcjson"
|
2013-10-17 01:19:26 +02:00
|
|
|
"github.com/conformal/go-flags"
|
2013-10-09 03:18:49 +02:00
|
|
|
"github.com/davecgh/go-spew/spew"
|
2013-10-17 01:19:26 +02:00
|
|
|
"os"
|
2013-10-09 03:18:49 +02:00
|
|
|
"strconv"
|
|
|
|
)
|
|
|
|
|
2013-10-17 01:19:26 +02:00
|
|
|
type config struct {
|
|
|
|
Help bool `short:"h" long:"help" description:"Help"`
|
|
|
|
RpcUser string `short:"u" description:"RPC username"`
|
|
|
|
RpcPassword string `short:"P" long:"rpcpass" description:"RPC password"`
|
|
|
|
RpcServer string `short:"s" long:"rpcserver" description:"RPC server to connect to"`
|
|
|
|
}
|
2013-10-09 03:18:49 +02:00
|
|
|
|
2013-10-22 05:56:02 +02:00
|
|
|
// conversionHandler is a handler that is used to convert parameters from the
|
|
|
|
// command line to a specific type. This is needed since the btcjson API
|
|
|
|
// expects certain types for various parameters.
|
|
|
|
type conversionHandler func(string) (interface{}, error)
|
|
|
|
|
|
|
|
// displayHandler is a handler that takes an interface and displays it to
|
|
|
|
// standard out. It is used by the handler data to type assert replies and
|
|
|
|
// show them formatted as desired.
|
|
|
|
type displayHandler func(interface{}) error
|
|
|
|
|
|
|
|
// handlerData contains information about how a command should be handled.
|
|
|
|
type handlerData struct {
|
|
|
|
requiredArgs int
|
|
|
|
optionalArgs int
|
|
|
|
displayHandler displayHandler
|
|
|
|
conversionHandlers []conversionHandler
|
|
|
|
}
|
|
|
|
|
2013-10-09 03:18:49 +02:00
|
|
|
var (
|
2013-10-22 05:56:02 +02:00
|
|
|
ErrNoData = errors.New("No data returned.")
|
|
|
|
ErrNoDisplayHandler = errors.New("No display handler specified.")
|
|
|
|
ErrUsage = errors.New("btcctl usage") // Real usage is shown.
|
2013-10-09 03:18:49 +02:00
|
|
|
)
|
|
|
|
|
2013-10-22 05:56:02 +02:00
|
|
|
// commandHandlers is a map of commands and associate handler data
|
|
|
|
// that is used to validate correctness and perform the command.
|
|
|
|
var commandHandlers = map[string]*handlerData{
|
|
|
|
"addnode": &handlerData{2, 0, displaySpewDump, nil},
|
|
|
|
"decoderawtransaction": &handlerData{1, 0, displaySpewDump, nil},
|
|
|
|
"getbestblockhash": &handlerData{0, 0, displayGeneric, nil},
|
|
|
|
"getblock": &handlerData{1, 0, displaySpewDump, nil},
|
|
|
|
"getblockcount": &handlerData{0, 0, displayFloat64, nil},
|
|
|
|
"getblockhash": &handlerData{1, 0, displayGeneric, []conversionHandler{toInt}},
|
|
|
|
"getconnectioncount": &handlerData{0, 0, displayFloat64, nil},
|
|
|
|
"getdifficulty": &handlerData{0, 0, displayFloat64, nil},
|
|
|
|
"getgenerate": &handlerData{0, 0, displayGeneric, nil},
|
|
|
|
"getpeerinfo": &handlerData{0, 0, displaySpewDump, nil},
|
|
|
|
"getrawmempool": &handlerData{0, 0, displaySpewDump, nil},
|
|
|
|
"getrawtransaction": &handlerData{1, 1, displaySpewDump, []conversionHandler{nil, toInt}},
|
|
|
|
"stop": &handlerData{0, 0, displayGeneric, nil},
|
|
|
|
}
|
2013-10-17 01:19:26 +02:00
|
|
|
|
2013-10-22 07:38:51 +02:00
|
|
|
// toInt attempts to convert the passed string to an integer. It returns the
|
|
|
|
// integer packed into an interface so it can be used in the calls which expect
|
2013-10-22 05:56:02 +02:00
|
|
|
// interfaces. An error will be returned if the string can't be converted to an
|
|
|
|
// integer.
|
|
|
|
func toInt(val string) (interface{}, error) {
|
|
|
|
idx, err := strconv.Atoi(val)
|
2013-10-17 01:19:26 +02:00
|
|
|
if err != nil {
|
2013-10-22 05:56:02 +02:00
|
|
|
return nil, err
|
2013-10-17 01:19:26 +02:00
|
|
|
}
|
2013-10-09 03:18:49 +02:00
|
|
|
|
2013-10-22 05:56:02 +02:00
|
|
|
return idx, nil
|
|
|
|
}
|
2013-10-09 03:18:49 +02:00
|
|
|
|
2013-10-22 05:56:02 +02:00
|
|
|
// displayGeneric is a displayHandler that simply displays the passed interface
|
|
|
|
// using fmt.Println.
|
|
|
|
func displayGeneric(reply interface{}) error {
|
|
|
|
fmt.Println(reply)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// displayFloat64 is a displayHandler that ensures the concrete type of the
|
|
|
|
// passed interface is a float64 and displays it using fmt.Println. An error
|
|
|
|
// is returned if a float64 is not passed.
|
|
|
|
func displayFloat64(reply interface{}) error {
|
|
|
|
if val, ok := reply.(float64); ok {
|
|
|
|
fmt.Println(val)
|
|
|
|
return nil
|
2013-10-09 03:18:49 +02:00
|
|
|
}
|
2013-10-22 05:56:02 +02:00
|
|
|
|
|
|
|
return fmt.Errorf("reply type is not a float64: %v", spew.Sdump(reply))
|
|
|
|
}
|
|
|
|
|
|
|
|
// displaySpewDump is a displayHandler that simply uses spew.Dump to display the
|
|
|
|
// passed interface.
|
|
|
|
func displaySpewDump(reply interface{}) error {
|
|
|
|
spew.Dump(reply)
|
|
|
|
return nil
|
2013-10-09 03:18:49 +02:00
|
|
|
}
|
|
|
|
|
2013-10-22 05:56:02 +02:00
|
|
|
// send sends a JSON-RPC command to the specified RPC server and examines the
|
|
|
|
// results for various error conditions. It either returns a valid result or
|
|
|
|
// an appropriate error.
|
2013-10-17 01:19:26 +02:00
|
|
|
func send(cfg *config, msg []byte) (interface{}, error) {
|
|
|
|
reply, err := btcjson.RpcCommand(cfg.RpcUser, cfg.RpcPassword, cfg.RpcServer, msg)
|
2013-10-09 03:18:49 +02:00
|
|
|
if err != nil {
|
2013-10-21 18:59:07 +02:00
|
|
|
return nil, err
|
|
|
|
}
|
2013-10-22 05:56:02 +02:00
|
|
|
|
2013-10-21 18:59:07 +02:00
|
|
|
if reply.Error != nil {
|
|
|
|
return nil, reply.Error
|
2013-10-09 03:18:49 +02:00
|
|
|
}
|
2013-10-22 05:56:02 +02:00
|
|
|
|
2013-10-09 03:18:49 +02:00
|
|
|
if reply.Result == nil {
|
2013-10-22 05:56:02 +02:00
|
|
|
return nil, ErrNoData
|
2013-10-09 03:18:49 +02:00
|
|
|
}
|
2013-10-22 05:56:02 +02:00
|
|
|
|
2013-10-09 03:18:49 +02:00
|
|
|
return reply.Result, nil
|
|
|
|
}
|
|
|
|
|
2013-10-22 05:56:02 +02:00
|
|
|
// sendCommand creates a JSON-RPC command using the passed command and arguments
|
|
|
|
// and then sends it. A prefix is added to any errors that occur indicating
|
|
|
|
// what step failed.
|
|
|
|
func sendCommand(cfg *config, command string, args ...interface{}) (interface{}, error) {
|
|
|
|
msg, err := btcjson.CreateMessage(command, args...)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("CreateMessage: %v", err.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
reply, err := send(cfg, msg)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("RpcCommand: %v", err.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
return reply, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// commandHandler handles commands provided via the cli using the specific
|
|
|
|
// handler data to instruct the handler what to do.
|
|
|
|
func commandHandler(cfg *config, command string, data *handlerData, args []string) error {
|
|
|
|
// Ensure the number of arguments are the expected value.
|
|
|
|
if len(args) < data.requiredArgs {
|
|
|
|
return ErrUsage
|
|
|
|
}
|
|
|
|
if len(args) > data.requiredArgs+data.optionalArgs {
|
|
|
|
return ErrUsage
|
|
|
|
}
|
|
|
|
|
2013-10-22 07:38:51 +02:00
|
|
|
// Ensure there is a display handler.
|
|
|
|
if data.displayHandler == nil {
|
|
|
|
return ErrNoDisplayHandler
|
|
|
|
}
|
|
|
|
|
2013-10-22 05:56:02 +02:00
|
|
|
// Ensure the number of conversion handlers is valid if any are
|
|
|
|
// specified.
|
|
|
|
convHandlers := data.conversionHandlers
|
|
|
|
if convHandlers != nil && len(convHandlers) < len(args) {
|
|
|
|
return fmt.Errorf("The number of conversion handlers is invalid.")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Convert input parameters per the conversion handlers.
|
|
|
|
iargs := make([]interface{}, len(args))
|
|
|
|
for i, arg := range args {
|
|
|
|
iargs[i] = arg
|
|
|
|
}
|
|
|
|
for i := range iargs {
|
2013-10-22 06:03:11 +02:00
|
|
|
if convHandlers != nil {
|
|
|
|
converter := convHandlers[i]
|
|
|
|
if converter != nil {
|
|
|
|
convertedArg, err := converter(args[i])
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
iargs[i] = convertedArg
|
2013-10-22 05:56:02 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create and send the appropriate JSON-RPC command.
|
|
|
|
reply, err := sendCommand(cfg, command, iargs...)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2013-10-22 07:38:51 +02:00
|
|
|
// Display the results of the JSON-RPC command using the provided
|
|
|
|
// display handler.
|
2013-10-22 05:56:02 +02:00
|
|
|
err = data.displayHandler(reply)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// usage displays the command usage.
|
2013-10-17 01:19:26 +02:00
|
|
|
func usage(parser *flags.Parser) {
|
|
|
|
parser.WriteHelp(os.Stderr)
|
|
|
|
fmt.Fprintf(os.Stderr,
|
|
|
|
"\nCommands:\n"+
|
2013-10-21 20:09:05 +02:00
|
|
|
"\taddnode <ip> <add/remove/onetry>\n"+
|
2013-10-17 18:35:27 +02:00
|
|
|
"\tdecoderawtransaction <txhash>\n"+
|
|
|
|
"\tgetbestblockhash\n"+
|
2013-10-17 01:19:26 +02:00
|
|
|
"\tgetblock <blockhash>\n"+
|
|
|
|
"\tgetblockcount\n"+
|
|
|
|
"\tgetblockhash <blocknumber>\n"+
|
2013-10-21 18:59:07 +02:00
|
|
|
"\tgetconnectioncount\n"+
|
2013-10-17 18:35:27 +02:00
|
|
|
"\tgetdifficulty\n"+
|
2013-10-17 01:19:26 +02:00
|
|
|
"\tgetgenerate\n"+
|
2013-10-21 19:26:40 +02:00
|
|
|
"\tgetpeerinfo\n"+
|
2013-10-17 18:35:27 +02:00
|
|
|
"\tgetrawmempool\n"+
|
2013-10-22 05:56:02 +02:00
|
|
|
"\tgetrawtransaction <txhash> [verbose=0]\n"+
|
2013-10-09 03:18:49 +02:00
|
|
|
"\tstop\n")
|
2013-10-22 05:56:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
// Parse command line and show usage if needed.
|
|
|
|
cfg := config{
|
|
|
|
RpcServer: "127.0.0.1:8334",
|
|
|
|
}
|
|
|
|
parser := flags.NewParser(&cfg, flags.PassDoubleDash)
|
|
|
|
args, err := parser.Parse()
|
|
|
|
if err != nil {
|
|
|
|
if e, ok := err.(*flags.Error); !ok || e.Type != flags.ErrHelp {
|
|
|
|
usage(parser)
|
|
|
|
}
|
2013-10-22 17:01:13 +02:00
|
|
|
os.Exit(1)
|
2013-10-22 05:56:02 +02:00
|
|
|
}
|
|
|
|
if cfg.Help {
|
|
|
|
usage(parser)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Display usage if the command is not supported.
|
|
|
|
data, exists := commandHandlers[args[0]]
|
|
|
|
if !exists {
|
|
|
|
fmt.Fprintf(os.Stderr, "Unrecognized command: %s\n", args[0])
|
|
|
|
usage(parser)
|
2013-10-22 17:01:13 +02:00
|
|
|
os.Exit(1)
|
2013-10-22 05:56:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Execute the command.
|
|
|
|
err = commandHandler(&cfg, args[0], data, args[1:])
|
|
|
|
if err != nil {
|
|
|
|
if err == ErrUsage {
|
|
|
|
usage(parser)
|
2013-10-22 17:01:13 +02:00
|
|
|
os.Exit(1)
|
2013-10-22 05:56:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
fmt.Fprintf(os.Stderr, "%v\n", err)
|
2013-10-22 17:01:13 +02:00
|
|
|
os.Exit(1)
|
2013-10-22 05:56:02 +02:00
|
|
|
}
|
2013-10-09 03:18:49 +02:00
|
|
|
}
|