aboutsummaryrefslogtreecommitdiffstats
path: root/ethchain/closure.go
blob: 204fbce0602c027d72930bd73c93d1c8c380b8ef (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
70
71
72
73
74
75
76
package ethchain

// TODO Re write VM to use values instead of big integers?

import (
    "github.com/ethereum/eth-go/ethutil"
    "math/big"
)

type Callee interface {
    ReturnGas(*big.Int, *State)
}

type ClosureBody interface {
    Callee
    ethutil.RlpEncodable
    GetMem(int64) *ethutil.Value
}

// Basic inline closure object which implement the 'closure' interface
type Closure struct {
    callee Callee
    object ClosureBody
    State  *State

    gas *big.Int
    val *big.Int

    args []byte
}

// Create a new closure for the given data items
func NewClosure(callee Callee, object ClosureBody, state *State, gas, val *big.Int) *Closure {
    return &Closure{callee, object, state, gas, val, nil}
}

// Retuns the x element in data slice
func (c *Closure) GetMem(x int64) *ethutil.Value {
    m := c.object.GetMem(x)
    if m == nil {
        return ethutil.EmptyValue()
    }

    return m
}

func (c *Closure) Call(vm *Vm, args []byte) []byte {
    c.args = args

    return vm.RunClosure(c)
}

func (c *Closure) Return(ret []byte) []byte {
    // Return the remaining gas to the callee
    // If no callee is present return it to
    // the origin (i.e. contract or tx)
    if c.callee != nil {
        c.callee.ReturnGas(c.gas, c.State)
    } else {
        c.object.ReturnGas(c.gas, c.State)
        // TODO incase it's a POST contract we gotta serialise the contract again.
        // But it's not yet defined
    }

    return ret
}

// Implement the Callee interface
func (c *Closure) ReturnGas(gas *big.Int, state *State) {
    // Return the gas to the closure
    c.gas.Add(c.gas, gas)
}

func (c *Closure) GetGas() *big.Int {
    return c.gas
}