quorum/core/execution.go

72 lines
1.9 KiB
Go
Raw Normal View History

2014-12-04 01:28:02 -08:00
package core
import (
"fmt"
"math/big"
"time"
"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
SkipTransfer bool
}
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
2014-12-18 15:23:00 -08: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
evm := vm.New(env, vm.DebugVmTy)
if env.Depth() == vm.MaxCallDepth {
// Consume all gas (by not returning it) and return a depth error
return nil, vm.DepthError{}
}
from, to := env.State().GetStateObject(caller.Address()), env.State().GetOrNewStateObject(self.address)
// Skipping transfer is used on testing for the initial call
if !self.SkipTransfer {
err = env.Transfer(from, to, self.value)
2014-12-17 03:57:35 -08:00
if err != nil {
caller.ReturnGas(self.Gas, self.price)
err = fmt.Errorf("Insufficient funds to transfer value. Req %v, has %v", self.value, from.Balance)
return
}
}
snapshot := env.State().Copy()
start := time.Now()
2014-12-18 15:23:00 -08:00
ret, err = evm.Run(to, caller, code, self.value, self.Gas, self.price, self.input)
if err != nil {
env.State().Set(snapshot)
}
chainlogger.Debugf("vm took %v\n", time.Since(start))
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
}