quorum/core/execution.go

100 lines
2.5 KiB
Go
Raw Normal View History

2014-12-04 01:28:02 -08:00
package core
import (
"math/big"
"time"
2015-03-17 03:19:23 -07:00
"github.com/ethereum/go-ethereum/common"
2015-03-23 08:59:09 -07:00
"github.com/ethereum/go-ethereum/core/state"
"github.com/ethereum/go-ethereum/core/vm"
"github.com/ethereum/go-ethereum/crypto"
"github.com/ethereum/go-ethereum/params"
)
type Execution struct {
2015-03-28 12:03:25 -07:00
env vm.Environment
address *common.Address
input []byte
evm vm.VirtualMachine
Gas, price, value *big.Int
}
2015-03-17 03:19:23 -07:00
func NewExecution(env vm.Environment, address *common.Address, input []byte, gas, gasPrice, value *big.Int) *Execution {
2015-03-28 12:03:25 -07:00
exe := &Execution{env: env, address: address, input: input, Gas: gas, price: gasPrice, value: value}
exe.evm = vm.NewVm(env)
return exe
}
2015-03-17 03:19:23 -07:00
func (self *Execution) Call(codeAddr common.Address, caller vm.ContextRef) ([]byte, error) {
// Retrieve the executing code
2015-03-12 15:26:58 -07:00
code := self.env.State().GetCode(codeAddr)
2015-03-17 03:19:23 -07:00
return self.exec(&codeAddr, code, caller)
}
2015-03-28 12:03:25 -07:00
func (self *Execution) Create(caller vm.ContextRef) (ret []byte, err error, account *state.StateObject) {
2015-04-10 10:59:01 -07:00
// Input must be nil for create
code := self.input
self.input = nil
ret, err = self.exec(nil, code, caller)
2015-03-28 12:03:25 -07:00
account = self.env.State().GetStateObject(*self.address)
return
}
2015-03-17 03:19:23 -07:00
func (self *Execution) exec(contextAddr *common.Address, code []byte, caller vm.ContextRef) (ret []byte, err error) {
start := time.Now()
2014-12-18 15:23:00 -08:00
env := self.env
2015-03-28 12:03:25 -07:00
evm := self.evm
if env.Depth() > int(params.CallCreateDepth.Int64()) {
caller.ReturnGas(self.Gas, self.price)
return nil, vm.DepthError{}
}
vsnapshot := env.State().Copy()
var createAccount bool
2015-03-17 03:19:23 -07:00
if self.address == nil {
2015-01-13 11:31:31 -08:00
// Generate a new address
nonce := env.State().GetNonce(caller.Address())
env.State().SetNonce(caller.Address(), nonce+1)
addr := crypto.CreateAddress(caller.Address(), nonce)
self.address = &addr
createAccount = true
2015-01-13 11:31:31 -08:00
}
snapshot := env.State().Copy()
2015-01-13 11:31:31 -08:00
var (
from = env.State().GetStateObject(caller.Address())
to *state.StateObject
)
if createAccount {
to = env.State().CreateAccount(*self.address)
} else {
to = env.State().GetOrNewStateObject(*self.address)
}
2015-01-12 05:40:40 -08:00
err = env.Transfer(from, to, self.value)
if err != nil {
env.State().Set(vsnapshot)
caller.ReturnGas(self.Gas, self.price)
2015-01-12 05:40:40 -08:00
return nil, ValueTransferErr("insufficient funds to transfer value. Req %v, has %v", self.value, from.Balance())
}
context := vm.NewContext(caller, to, self.value, self.Gas, self.price)
context.SetCallCode(contextAddr, code)
ret, err = evm.Run(context, self.input)
evm.Printf("message call took %v", time.Since(start)).Endl()
if err != nil {
env.State().Set(snapshot)
}
return
}