blockbook/bchain/coins/eth/ethrpc.go

210 lines
4.6 KiB
Go
Raw Normal View History

2018-03-15 01:19:02 -06:00
package eth
import (
"blockbook/bchain"
"blockbook/common"
2018-03-15 04:38:31 -06:00
"context"
2018-03-19 05:05:16 -06:00
"encoding/json"
2018-03-19 10:34:51 -06:00
"math/big"
2018-03-15 01:19:02 -06:00
"time"
2018-03-15 04:38:31 -06:00
"github.com/golang/glog"
2018-03-19 05:05:16 -06:00
"github.com/juju/errors"
2018-03-15 04:38:31 -06:00
2018-03-19 10:34:51 -06:00
ethcommon "github.com/ethereum/go-ethereum/common"
ethtypes "github.com/ethereum/go-ethereum/core/types"
2018-03-15 01:19:02 -06:00
"github.com/ethereum/go-ethereum/ethclient"
)
2018-03-19 10:34:51 -06:00
type EthereumNet uint32
const (
MainNet EthereumNet = 1
TestNet EthereumNet = 3
)
2018-03-15 01:19:02 -06:00
// EthRPC is an interface to JSON-RPC eth service.
type EthRPC struct {
2018-03-19 10:34:51 -06:00
client *ethclient.Client
timeout time.Duration
rpcURL string
Parser *EthParser
Testnet bool
Network string
Mempool *bchain.Mempool
metrics *common.Metrics
bestHeader *ethtypes.Header
2018-03-15 01:19:02 -06:00
}
2018-03-19 05:05:16 -06:00
type configuration struct {
RPCURL string `json:"rpcURL"`
RPCTimeout int `json:"rpcTimeout"`
}
2018-03-15 01:19:02 -06:00
// NewEthRPC returns new EthRPC instance.
2018-03-19 05:05:16 -06:00
func NewEthRPC(config json.RawMessage, pushHandler func(*bchain.MQMessage), metrics *common.Metrics) (bchain.BlockChain, error) {
var err error
var c configuration
err = json.Unmarshal(config, &c)
if err != nil {
return nil, errors.Annotatef(err, "Invalid configuration file")
}
ec, err := ethclient.Dial(c.RPCURL)
2018-03-15 01:19:02 -06:00
if err != nil {
return nil, err
}
s := &EthRPC{
2018-03-19 10:34:51 -06:00
client: ec,
rpcURL: c.RPCURL,
metrics: metrics,
2018-03-15 01:19:02 -06:00
}
// always create parser
s.Parser = &EthParser{}
2018-03-19 10:34:51 -06:00
s.timeout = time.Duration(c.RPCTimeout) * time.Second
2018-03-15 01:19:02 -06:00
2018-03-19 10:34:51 -06:00
ctx, cancel := context.WithTimeout(context.Background(), s.timeout)
defer cancel()
id, err := ec.NetworkID(ctx)
2018-03-15 04:38:31 -06:00
if err != nil {
return nil, err
}
2018-03-19 10:34:51 -06:00
// parameters for getInfo request
switch EthereumNet(id.Uint64()) {
case MainNet:
s.Testnet = false
s.Network = "livenet"
break
case TestNet:
s.Testnet = true
s.Network = "testnet"
break
default:
return nil, errors.Errorf("Unknown network id %v", id)
}
glog.Info("rpc: block chain ", s.Network)
2018-03-15 01:19:02 -06:00
// s.Mempool = bchain.NewMempool(s, metrics)
return s, nil
}
2018-03-19 05:05:16 -06:00
func (b *EthRPC) Shutdown() error {
return nil
}
2018-03-15 01:19:02 -06:00
func (b *EthRPC) IsTestnet() bool {
return b.Testnet
2018-03-15 01:19:02 -06:00
}
func (b *EthRPC) GetNetworkName() string {
return b.Network
}
func (b *EthRPC) getBestHeader() (*ethtypes.Header, error) {
// TODO lock
if b.bestHeader == nil {
var err error
ctx, cancel := context.WithTimeout(context.Background(), b.timeout)
defer cancel()
b.bestHeader, err = b.client.HeaderByNumber(ctx, nil)
if err != nil {
return nil, err
}
}
return b.bestHeader, nil
2018-03-15 01:19:02 -06:00
}
func (b *EthRPC) GetBestBlockHash() (string, error) {
h, err := b.getBestHeader()
if err != nil {
return "", err
}
return h.TxHash.Hex()[2:], nil
2018-03-15 01:19:02 -06:00
}
func (b *EthRPC) GetBestBlockHeight() (uint32, error) {
h, err := b.getBestHeader()
if err != nil {
return 0, err
}
// TODO - can it grow over 2^32 ?
return uint32(h.Number.Uint64()), nil
2018-03-15 01:19:02 -06:00
}
func (b *EthRPC) GetBlockHash(height uint32) (string, error) {
var n big.Int
n.SetUint64(uint64(height))
ctx, cancel := context.WithTimeout(context.Background(), b.timeout)
defer cancel()
h, err := b.client.HeaderByNumber(ctx, &n)
if err != nil {
return "", err
}
return h.TxHash.Hex()[2:], nil
2018-03-15 01:19:02 -06:00
}
func (b *EthRPC) GetBlockHeader(hash string) (*bchain.BlockHeader, error) {
bh, err := b.getBestHeader()
if err != nil {
return nil, err
}
ctx, cancel := context.WithTimeout(context.Background(), b.timeout)
defer cancel()
h, err := b.client.HeaderByHash(ctx, ethcommon.StringToHash(hash))
if err != nil {
return nil, err
}
hn := uint32(h.Number.Uint64())
bn := uint32(bh.Number.Uint64())
rv := bchain.BlockHeader{
Hash: h.TxHash.Hex()[2:],
Height: hn,
Confirmations: int(bn - hn),
// TODO Next tx hash
}
return &rv, nil
2018-03-15 01:19:02 -06:00
}
func (b *EthRPC) GetBlock(hash string, height uint32) (*bchain.Block, error) {
panic("not implemented")
}
func (b *EthRPC) GetMempool() ([]string, error) {
panic("not implemented")
}
func (b *EthRPC) GetTransaction(txid string) (*bchain.Tx, error) {
panic("not implemented")
}
func (b *EthRPC) EstimateSmartFee(blocks int, conservative bool) (float64, error) {
panic("not implemented")
}
func (b *EthRPC) SendRawTransaction(tx string) (string, error) {
panic("not implemented")
}
func (b *EthRPC) ResyncMempool(onNewTxAddr func(txid string, addr string)) error {
panic("not implemented")
}
func (b *EthRPC) GetMempoolTransactions(outputScript []byte) ([]string, error) {
panic("not implemented")
}
func (b *EthRPC) GetMempoolSpentOutput(outputTxid string, vout uint32) string {
panic("not implemented")
}
func (b *EthRPC) GetMempoolEntry(txid string) (*bchain.MempoolEntry, error) {
panic("not implemented")
}
func (b *EthRPC) GetChainParser() bchain.BlockChainParser {
return b.Parser
2018-03-15 01:19:02 -06:00
}