cosmos-sdk/cmd/commands/utils.go

111 lines
2.6 KiB
Go
Raw Normal View History

package commands
2017-01-29 13:34:48 -08:00
import (
"encoding/hex"
"errors"
"os"
2017-01-29 13:34:48 -08:00
2017-01-29 18:41:37 -08:00
"github.com/urfave/cli"
"github.com/tendermint/basecoin/state"
2017-01-29 13:34:48 -08:00
"github.com/tendermint/basecoin/types"
2017-01-29 18:41:37 -08:00
abci "github.com/tendermint/abci/types"
2017-01-29 13:34:48 -08:00
cmn "github.com/tendermint/go-common"
client "github.com/tendermint/go-rpc/client"
2017-03-16 01:01:29 -07:00
wire "github.com/tendermint/go-wire"
2017-01-29 13:34:48 -08:00
ctypes "github.com/tendermint/tendermint/rpc/core/types"
2017-01-29 18:41:37 -08:00
tmtypes "github.com/tendermint/tendermint/types"
2017-01-29 13:34:48 -08:00
)
func BasecoinRoot(rootDir string) string {
if rootDir == "" {
2017-03-13 22:50:10 -07:00
rootDir = os.Getenv("BCHOME")
}
if rootDir == "" {
rootDir = os.Getenv("HOME") + "/.basecoin"
}
return rootDir
}
2017-01-29 13:34:48 -08:00
// Returns true for non-empty hex-string prefixed with "0x"
func isHex(s string) bool {
if len(s) > 2 && s[:2] == "0x" {
_, err := hex.DecodeString(s[2:])
if err != nil {
return false
}
return true
}
return false
}
2017-01-30 08:16:00 -08:00
func StripHex(s string) string {
2017-01-29 13:34:48 -08:00
if isHex(s) {
return s[2:]
}
return s
}
func Query(tmAddr string, key []byte) (*abci.ResponseQuery, error) {
2017-03-16 01:01:29 -07:00
uriClient := client.NewURIClient(tmAddr)
2017-01-29 13:34:48 -08:00
tmResult := new(ctypes.TMResult)
params := map[string]interface{}{
"path": "/key",
2017-01-29 18:41:37 -08:00
"data": key,
"prove": true,
2017-01-29 13:34:48 -08:00
}
2017-03-16 01:01:29 -07:00
_, err := uriClient.Call("abci_query", params, tmResult)
2017-01-29 13:34:48 -08:00
if err != nil {
return nil, errors.New(cmn.Fmt("Error calling /abci_query: %v", err))
}
res := (*tmResult).(*ctypes.ResultABCIQuery)
if !res.Response.Code.IsOK() {
return nil, errors.New(cmn.Fmt("Query got non-zero exit code: %v. %s", res.Response.Code, res.Response.Log))
}
2017-01-29 18:41:37 -08:00
return &res.Response, nil
}
// fetch the account by querying the app
func getAcc(tmAddr string, address []byte) (*types.Account, error) {
key := state.AccountKey(address)
response, err := Query(tmAddr, key)
2017-01-29 18:41:37 -08:00
if err != nil {
return nil, err
}
accountBytes := response.Value
2017-01-29 13:34:48 -08:00
if len(accountBytes) == 0 {
2017-01-29 18:41:37 -08:00
return nil, errors.New(cmn.Fmt("Account bytes are empty for address: %X ", address))
2017-01-29 13:34:48 -08:00
}
2017-01-29 18:41:37 -08:00
2017-01-29 13:34:48 -08:00
var acc *types.Account
err = wire.ReadBinaryBytes(accountBytes, &acc)
if err != nil {
return nil, errors.New(cmn.Fmt("Error reading account %X error: %v",
accountBytes, err.Error()))
}
return acc, nil
}
2017-01-29 18:41:37 -08:00
2017-02-13 20:22:31 -08:00
func getHeaderAndCommit(c *cli.Context, height int) (*tmtypes.Header, *tmtypes.Commit, error) {
2017-01-29 18:41:37 -08:00
tmResult := new(ctypes.TMResult)
tmAddr := c.String("node")
2017-03-16 01:01:29 -07:00
uriClient := client.NewURIClient(tmAddr)
2017-01-29 18:41:37 -08:00
2017-02-16 12:36:46 -08:00
method := "commit"
2017-03-16 01:01:29 -07:00
_, err := uriClient.Call(method, map[string]interface{}{"height": height}, tmResult)
2017-01-29 18:41:37 -08:00
if err != nil {
2017-02-16 12:36:46 -08:00
return nil, nil, errors.New(cmn.Fmt("Error on %s: %v", method, err))
2017-01-29 18:41:37 -08:00
}
2017-02-13 20:22:31 -08:00
resCommit := (*tmResult).(*ctypes.ResultCommit)
2017-02-14 14:31:59 -08:00
header := resCommit.Header
2017-02-13 20:22:31 -08:00
commit := resCommit.Commit
return header, commit, nil
2017-01-29 18:41:37 -08:00
}