quorum/vm/execution.go

94 lines
2.4 KiB
Go
Raw Normal View History

2014-10-18 04:31:20 -07:00
package vm
import (
"fmt"
"math/big"
"github.com/ethereum/eth-go/ethstate"
"github.com/ethereum/eth-go/ethutil"
)
type Execution struct {
vm VirtualMachine
address, input []byte
2014-10-16 09:27:05 -07:00
Gas, price, value *big.Int
object *ethstate.StateObject
}
func NewExecution(vm VirtualMachine, address, input []byte, gas, gasPrice, value *big.Int) *Execution {
2014-10-16 09:27:05 -07:00
return &Execution{vm: vm, address: address, input: input, Gas: gas, price: gasPrice, value: value}
}
func (self *Execution) Addr() []byte {
return self.address
}
2014-10-16 09:27:05 -07:00
func (self *Execution) Exec(codeAddr []byte, caller ClosureRef) ([]byte, error) {
// Retrieve the executing code
code := self.vm.Env().State().GetCode(codeAddr)
return self.exec(code, codeAddr, caller)
}
func (self *Execution) exec(code, caddr []byte, caller ClosureRef) (ret []byte, err error) {
env := self.vm.Env()
snapshot := env.State().Copy()
2014-10-16 04:39:30 -07:00
defer func() {
if err != nil {
env.State().Set(snapshot)
}
}()
msg := env.State().Manifest().AddMessage(&ethstate.Message{
To: self.address, From: caller.Address(),
Input: self.input,
Origin: env.Origin(),
Block: env.BlockHash(), Timestamp: env.Time(), Coinbase: env.Coinbase(), Number: env.BlockNumber(),
Value: self.value,
})
2014-10-22 06:22:21 -07:00
from, to := caller.Object(), env.State().GetOrNewStateObject(self.address)
err = env.Transfer(from, to, self.value)
if err != nil {
2014-10-16 09:27:05 -07:00
caller.ReturnGas(self.Gas, self.price)
2014-10-22 06:22:21 -07:00
err = fmt.Errorf("Insufficient funds to transfer value. Req %v, has %v", self.value, from.Balance)
} else {
2014-10-22 06:22:21 -07:00
self.object = to
2014-10-22 06:22:21 -07:00
//caller.Object().SubAmount(self.value)
//stateObject.AddAmount(self.value)
2014-10-16 04:39:30 -07:00
// Pre-compiled contracts (address.go) 1, 2 & 3.
2014-10-16 09:27:05 -07:00
naddr := ethutil.BigD(caddr).Uint64()
2014-10-14 04:37:26 -07:00
if p := Precompiled[naddr]; p != nil {
2014-10-16 09:27:05 -07:00
if self.Gas.Cmp(p.Gas) >= 0 {
ret = p.Call(self.input)
2014-10-14 04:37:26 -07:00
self.vm.Printf("NATIVE_FUNC(%x) => %x", naddr, ret)
}
} else {
2014-10-16 09:27:05 -07:00
// Create a new callable closure
2014-10-22 06:22:21 -07:00
c := NewClosure(msg, caller, to, code, self.Gas, self.price)
2014-10-16 09:27:05 -07:00
c.exe = self
if self.vm.Depth() == MaxCallDepth {
2014-10-16 09:27:05 -07:00
c.UseGas(c.Gas)
2014-10-16 09:27:05 -07:00
return c.Return(nil), fmt.Errorf("Max call depth exceeded (%d)", MaxCallDepth)
}
// Executer the closure and get the return value (if any)
ret, _, err = c.Call(self.vm, self.input)
msg.Output = ret
}
}
return
}
2014-10-16 09:27:05 -07:00
func (self *Execution) Create(caller ClosureRef) (ret []byte, err error) {
return self.exec(self.input, nil, caller)
}