| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182 |
- package xeth
- /*
- * eXtended ETHereum
- */
- import (
- "github.com/ethereum/go-ethereum/core"
- "github.com/ethereum/go-ethereum/core/types"
- "github.com/ethereum/go-ethereum/crypto"
- "github.com/ethereum/go-ethereum/ethutil"
- "github.com/ethereum/go-ethereum/logger"
- "github.com/ethereum/go-ethereum/state"
- )
- var pipelogger = logger.NewLogger("XETH")
- type VmVars struct {
- State *state.State
- }
- type XEth struct {
- obj core.EthManager
- blockManager *core.BlockManager
- blockChain *core.ChainManager
- world *World
- Vm VmVars
- }
- func New(obj core.EthManager) *XEth {
- pipe := &XEth{
- obj: obj,
- blockManager: obj.BlockManager(),
- blockChain: obj.ChainManager(),
- }
- pipe.world = NewWorld(pipe)
- return pipe
- }
- func (self *XEth) Balance(addr []byte) *ethutil.Value {
- return ethutil.NewValue(self.World().safeGet(addr).Balance)
- }
- func (self *XEth) Nonce(addr []byte) uint64 {
- return self.World().safeGet(addr).Nonce
- }
- func (self *XEth) Execute(addr []byte, data []byte, value, gas, price *ethutil.Value) ([]byte, error) {
- return self.ExecuteObject(&Object{self.World().safeGet(addr)}, data, value, gas, price)
- }
- func (self *XEth) ExecuteObject(object *Object, data []byte, value, gas, price *ethutil.Value) ([]byte, error) {
- var (
- initiator = state.NewStateObject(self.obj.KeyManager().KeyPair().Address())
- block = self.blockChain.CurrentBlock
- )
- self.Vm.State = self.World().State().Copy()
- vmenv := NewEnv(self.Vm.State, block, value.BigInt(), initiator.Address())
- return vmenv.Call(initiator, object.Address(), data, gas.BigInt(), price.BigInt(), value.BigInt())
- /*
- evm := vm.New(, vm.Type(ethutil.Config.VmType))
- msg := vm.NewExecution(evm, object.Address(), data, gas.BigInt(), price.BigInt(), value.BigInt())
- ret, err := msg.Exec(object.Address(), initiator)
- fmt.Println("returned from call", ret, err)
- return ret, err
- */
- }
- func (self *XEth) Block(hash []byte) *types.Block {
- return self.blockChain.GetBlock(hash)
- }
- func (self *XEth) Storage(addr, storageAddr []byte) *ethutil.Value {
- return self.World().safeGet(addr).GetStorage(ethutil.BigD(storageAddr))
- }
- func (self *XEth) ToAddress(priv []byte) []byte {
- pair, err := crypto.NewKeyPairFromSec(priv)
- if err != nil {
- return nil
- }
- return pair.Address()
- }
- func (self *XEth) Exists(addr []byte) bool {
- return self.World().Get(addr) != nil
- }
- func (self *XEth) TransactString(key *crypto.KeyPair, rec string, value, gas, price *ethutil.Value, data []byte) (*types.Transaction, error) {
- // Check if an address is stored by this address
- var hash []byte
- addr := self.World().Config().Get("NameReg").StorageString(rec).Bytes()
- if len(addr) > 0 {
- hash = addr
- } else if ethutil.IsHex(rec) {
- hash = ethutil.Hex2Bytes(rec[2:])
- } else {
- hash = ethutil.Hex2Bytes(rec)
- }
- return self.Transact(key, hash, value, gas, price, data)
- }
- func (self *XEth) Transact(key *crypto.KeyPair, to []byte, value, gas, price *ethutil.Value, data []byte) (*types.Transaction, error) {
- var hash []byte
- var contractCreation bool
- if types.IsContractAddr(to) {
- contractCreation = true
- } else {
- // Check if an address is stored by this address
- addr := self.World().Config().Get("NameReg").Storage(to).Bytes()
- if len(addr) > 0 {
- hash = addr
- } else {
- hash = to
- }
- }
- var tx *types.Transaction
- if contractCreation {
- tx = types.NewContractCreationTx(value.BigInt(), gas.BigInt(), price.BigInt(), data)
- } else {
- tx = types.NewTransactionMessage(hash, value.BigInt(), gas.BigInt(), price.BigInt(), data)
- }
- state := self.blockManager.TransState()
- nonce := state.GetNonce(key.Address())
- tx.Nonce = nonce
- tx.Sign(key.PrivateKey)
- err := self.obj.TxPool().Add(tx)
- if err != nil {
- return nil, err
- }
- state.SetNonce(key.Address(), nonce+1)
- if contractCreation {
- addr := tx.CreationAddress(self.World().State())
- pipelogger.Infof("Contract addr %x\n", addr)
- }
- return tx, nil
- //acc := self.blockManager.TransState().GetOrNewStateObject(key.Address())
- //self.obj.TxPool().QueueTransaction(tx)
- //acc.Nonce += 1
- //self.blockManager.TransState().UpdateStateObject(acc)
- }
- func (self *XEth) PushTx(tx *types.Transaction) ([]byte, error) {
- err := self.obj.TxPool().Add(tx)
- if err != nil {
- return nil, err
- }
- if tx.Recipient == nil {
- addr := tx.CreationAddress(self.World().State())
- pipelogger.Infof("Contract addr %x\n", addr)
- return addr, nil
- }
- return tx.Hash(), nil
- }
- func (self *XEth) CompileMutan(code string) ([]byte, error) {
- data, err := ethutil.Compile(code, false)
- if err != nil {
- return nil, err
- }
- return data, nil
- }
|