aboutsummaryrefslogtreecommitdiffstats
path: root/core/execution.go
blob: 1057089f1cae12674ce211736d2bdc060e3bc317 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
package core

import (
    "fmt"
    "math/big"
    "time"

    "github.com/ethereum/go-ethereum/state"
    "github.com/ethereum/go-ethereum/vm"
)

type Execution struct {
    env               vm.Environment
    address, input    []byte
    Gas, price, value *big.Int
}

func NewExecution(env vm.Environment, address, input []byte, gas, gasPrice, value *big.Int) *Execution {
    return &Execution{env: env, address: address, input: input, Gas: gas, price: gasPrice, value: value}
}

func (self *Execution) Addr() []byte {
    return self.address
}

func (self *Execution) Call(codeAddr []byte, caller vm.ContextRef) ([]byte, error) {
    // Retrieve the executing code
    code := self.env.State().GetCode(codeAddr)

    return self.exec(code, codeAddr, caller)
}

func (self *Execution) exec(code, contextAddr []byte, caller vm.ContextRef) (ret []byte, err error) {
    env := self.env
    evm := vm.New(env, vm.DebugVmTy)

    if env.Depth() == vm.MaxCallDepth {
        caller.ReturnGas(self.Gas, self.price)

        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
    err = env.Transfer(from, to, self.value)
    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()
    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
}

func (self *Execution) Create(caller vm.ContextRef) (ret []byte, err error, account *state.StateObject) {
    ret, err = self.exec(self.input, nil, caller)
    account = self.env.State().GetStateObject(self.address)

    return
}