quorum/core/execution.go

81 lines
2.2 KiB
Go
Raw Normal View History

2014-12-04 01:28:02 -08:00
package core
import (
"math/big"
"time"
2015-01-13 11:31:31 -08:00
"github.com/ethereum/go-ethereum/crypto"
"github.com/ethereum/go-ethereum/state"
"github.com/ethereum/go-ethereum/vm"
)
type Execution struct {
2014-12-18 15:23:00 -08:00
env vm.Environment
address, input []byte
Gas, price, value *big.Int
}
2014-12-18 15:18:52 -08:00
func NewExecution(env vm.Environment, address, input []byte, gas, gasPrice, value *big.Int) *Execution {
2014-12-18 15:23:00 -08:00
return &Execution{env: env, address: address, input: input, Gas: gas, price: gasPrice, value: value}
}
func (self *Execution) Addr() []byte {
return self.address
}
2015-01-02 07:14:12 -08:00
func (self *Execution) Call(codeAddr []byte, caller vm.ContextRef) ([]byte, error) {
// Retrieve the executing code
2015-03-12 15:26:58 -07:00
code := self.env.State().GetCode(codeAddr)
return self.exec(code, codeAddr, caller)
}
2015-01-02 07:14:12 -08:00
func (self *Execution) exec(code, contextAddr []byte, caller vm.ContextRef) (ret []byte, err error) {
2014-12-18 15:23:00 -08:00
env := self.env
2015-02-01 06:30:29 -08:00
evm := vm.NewVm(env)
2014-12-18 15:23:00 -08:00
if env.Depth() == vm.MaxCallDepth {
caller.ReturnGas(self.Gas, self.price)
return nil, vm.DepthError{}
}
2015-01-13 11:31:31 -08:00
vsnapshot := env.State().Copy()
if len(self.address) == 0 {
// Generate a new address
nonce := env.State().GetNonce(caller.Address())
self.address = crypto.CreateAddress(caller.Address(), nonce)
env.State().SetNonce(caller.Address(), nonce+1)
}
from, to := env.State().GetStateObject(caller.Address()), env.State().GetOrNewStateObject(self.address)
2015-01-12 05:40:40 -08:00
err = env.Transfer(from, to, self.value)
if err != nil {
2015-01-13 11:31:31 -08:00
env.State().Set(vsnapshot)
2015-01-12 05:40:40 -08:00
caller.ReturnGas(self.Gas, self.price)
return nil, ValueTransferErr("insufficient funds to transfer value. Req %v, has %v", self.value, from.Balance())
}
snapshot := env.State().Copy()
start := time.Now()
context := vm.NewContext(caller, to, self.value, self.Gas, self.price)
context.SetCallCode(contextAddr, code)
ret, err = evm.Run(context, self.input) //self.value, self.Gas, self.price, self.input)
2015-02-28 11:52:10 -08:00
chainlogger.Debugf("vm took %v\n", time.Since(start))
if err != nil {
env.State().Set(snapshot)
}
return
}
2015-01-02 07:14:12 -08:00
func (self *Execution) Create(caller vm.ContextRef) (ret []byte, err error, account *state.StateObject) {
ret, err = self.exec(self.input, nil, caller)
2014-12-18 15:23:00 -08:00
account = self.env.State().GetStateObject(self.address)
return
}