2017-11-27 15:39:53 +00:00
|
|
|
package geth
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
"path/filepath"
|
|
|
|
|
2017-11-27 22:18:42 +00:00
|
|
|
"sort"
|
|
|
|
|
2017-12-04 18:54:33 +00:00
|
|
|
"context"
|
|
|
|
"math/big"
|
|
|
|
|
2017-11-27 15:39:53 +00:00
|
|
|
"github.com/8thlight/vulcanizedb/pkg/config"
|
2017-11-27 22:18:42 +00:00
|
|
|
"github.com/8thlight/vulcanizedb/pkg/core"
|
2017-12-04 18:54:33 +00:00
|
|
|
"github.com/ethereum/go-ethereum"
|
|
|
|
"github.com/ethereum/go-ethereum/accounts/abi"
|
2017-11-27 15:39:53 +00:00
|
|
|
"github.com/ethereum/go-ethereum/common"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
ErrInvalidStateAttribute = errors.New("invalid state attribute")
|
|
|
|
)
|
|
|
|
|
2017-11-30 22:15:32 +00:00
|
|
|
func (blockchain *GethBlockchain) GetContract(contractHash string) (core.Contract, error) {
|
2017-12-04 21:31:39 +00:00
|
|
|
attributes, err := blockchain.GetContractAttributes(contractHash)
|
2017-11-30 22:15:32 +00:00
|
|
|
if err != nil {
|
|
|
|
return core.Contract{}, err
|
|
|
|
} else {
|
2017-11-30 22:36:18 +00:00
|
|
|
contract := core.Contract{
|
|
|
|
Attributes: attributes,
|
|
|
|
Hash: contractHash,
|
|
|
|
}
|
|
|
|
return contract, nil
|
2017-11-27 22:18:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-04 18:54:33 +00:00
|
|
|
func (blockchain *GethBlockchain) getParseAbi(contract core.Contract) (abi.ABI, error) {
|
|
|
|
abiFilePath := filepath.Join(config.ProjectRoot(), "contracts", "public", fmt.Sprintf("%s.json", contract.Hash))
|
|
|
|
parsed, err := ParseAbiFile(abiFilePath)
|
2017-11-27 15:39:53 +00:00
|
|
|
if err != nil {
|
2017-12-04 18:54:33 +00:00
|
|
|
return abi.ABI{}, err
|
2017-11-27 15:39:53 +00:00
|
|
|
}
|
2017-12-04 18:54:33 +00:00
|
|
|
return parsed, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (blockchain *GethBlockchain) GetAttribute(contract core.Contract, attributeName string, blockNumber *big.Int) (interface{}, error) {
|
|
|
|
parsed, err := blockchain.getParseAbi(contract)
|
2017-11-28 23:04:09 +00:00
|
|
|
var result interface{}
|
2017-12-04 18:54:33 +00:00
|
|
|
if err != nil {
|
|
|
|
return result, err
|
|
|
|
}
|
|
|
|
input, err := parsed.Pack(attributeName)
|
|
|
|
if err != nil {
|
2017-12-04 19:30:57 +00:00
|
|
|
return nil, ErrInvalidStateAttribute
|
2017-12-04 18:54:33 +00:00
|
|
|
}
|
|
|
|
output, err := callContract(contract, input, err, blockchain, blockNumber)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
err = parsed.Unpack(&result, attributeName, output)
|
2017-11-27 15:39:53 +00:00
|
|
|
if err != nil {
|
2017-12-04 19:30:57 +00:00
|
|
|
return nil, err
|
2017-11-27 15:39:53 +00:00
|
|
|
}
|
2017-11-29 15:31:23 +00:00
|
|
|
return result, nil
|
2017-11-27 15:39:53 +00:00
|
|
|
}
|
2017-12-04 18:54:33 +00:00
|
|
|
func callContract(contract core.Contract, input []byte, err error, blockchain *GethBlockchain, blockNumber *big.Int) ([]byte, error) {
|
|
|
|
to := common.HexToAddress(contract.Hash)
|
|
|
|
msg := ethereum.CallMsg{To: &to, Data: input}
|
|
|
|
return blockchain.client.CallContract(context.Background(), msg, blockNumber)
|
|
|
|
}
|
2017-11-27 15:39:53 +00:00
|
|
|
|
2017-12-04 21:31:39 +00:00
|
|
|
func (blockchain *GethBlockchain) GetContractAttributes(contractHash string) (core.ContractAttributes, error) {
|
2017-11-30 22:15:32 +00:00
|
|
|
abiFilePath := filepath.Join(config.ProjectRoot(), "contracts", "public", fmt.Sprintf("%s.json", contractHash))
|
|
|
|
parsed, _ := ParseAbiFile(abiFilePath)
|
|
|
|
var contractAttributes core.ContractAttributes
|
|
|
|
for _, abiElement := range parsed.Methods {
|
|
|
|
if (len(abiElement.Outputs) > 0) && (len(abiElement.Inputs) == 0) && abiElement.Const {
|
|
|
|
attributeType := abiElement.Outputs[0].Type.String()
|
|
|
|
contractAttributes = append(contractAttributes, core.ContractAttribute{abiElement.Name, attributeType})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
sort.Sort(contractAttributes)
|
|
|
|
return contractAttributes, nil
|
|
|
|
}
|