aboutsummaryrefslogtreecommitdiffstats
path: root/ethpipe/pipe.go
blob: 7c3f491d33f21eb6e865b18372a008eba617a39b (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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
package ethpipe

import (
    "fmt"
    "strings"

    "github.com/ethereum/eth-go/ethchain"
    "github.com/ethereum/eth-go/ethcrypto"
    "github.com/ethereum/eth-go/ethlog"
    "github.com/ethereum/eth-go/ethstate"
    "github.com/ethereum/eth-go/ethutil"
    "github.com/ethereum/eth-go/ethvm"
)

var logger = ethlog.NewLogger("PIPE")

type VmVars struct {
    State *ethstate.State
}

type Pipe struct {
    obj          ethchain.EthManager
    stateManager *ethchain.StateManager
    blockChain   *ethchain.BlockChain
    world        *World

    Vm VmVars
}

func New(obj ethchain.EthManager) *Pipe {
    pipe := &Pipe{
        obj:          obj,
        stateManager: obj.StateManager(),
        blockChain:   obj.BlockChain(),
    }
    pipe.world = NewWorld(pipe)

    return pipe
}

func (self *Pipe) Balance(addr []byte) *ethutil.Value {
    return ethutil.NewValue(self.World().safeGet(addr).Balance)
}

func (self *Pipe) Nonce(addr []byte) uint64 {
    return self.World().safeGet(addr).Nonce
}

func (self *Pipe) Execute(addr []byte, data []byte, value, gas, price *ethutil.Value) ([]byte, error) {
    return self.ExecuteObject(&Object{self.World().safeGet(addr)}, data, value, gas, price)
}

func (self *Pipe) ExecuteObject(object *Object, data []byte, value, gas, price *ethutil.Value) ([]byte, error) {
    var (
        initiator = ethstate.NewStateObject(self.obj.KeyManager().KeyPair().Address())
        block     = self.blockChain.CurrentBlock
    )

    self.Vm.State = self.World().State().Copy()

    vm := ethvm.New(NewEnv(self.Vm.State, block, value.BigInt(), initiator.Address()))
    vm.Verbose = true

    msg := ethvm.NewMessage(vm, object.Address(), data, gas.BigInt(), price.BigInt(), value.BigInt())
    ret, err := msg.Exec(object.Address(), initiator)

    fmt.Println("returned from call", ret, err)

    return ret, err
}

func (self *Pipe) Block(hash []byte) *ethchain.Block {
    return self.blockChain.GetBlock(hash)
}

func (self *Pipe) Storage(addr, storageAddr []byte) *ethutil.Value {
    return self.World().safeGet(addr).GetStorage(ethutil.BigD(storageAddr))
}

func (self *Pipe) ToAddress(priv []byte) []byte {
    pair, err := ethcrypto.NewKeyPairFromSec(priv)
    if err != nil {
        return nil
    }

    return pair.Address()
}

func (self *Pipe) Exists(addr []byte) bool {
    return self.World().Get(addr) != nil
}

func (self *Pipe) TransactString(key *ethcrypto.KeyPair, rec string, value, gas, price *ethutil.Value, data []byte) ([]byte, error) {
    // Check if an address is stored by this address
    var hash []byte
    addr := self.World().Config().Get("NameReg").StorageString(rec).Bytes()
    if len(addr) > 0 {
        hash = addr
    } else if ethutil.IsHex(rec) {
        hash = ethutil.Hex2Bytes(rec[2:])
    } else {
        hash = ethutil.Hex2Bytes(rec)
    }

    return self.Transact(key, hash, value, gas, price, data)
}

func (self *Pipe) Transact(key *ethcrypto.KeyPair, rec []byte, value, gas, price *ethutil.Value, data []byte) ([]byte, error) {
    var hash []byte
    var contractCreation bool
    if rec == nil {
        contractCreation = true
    }

    var tx *ethchain.Transaction
    // Compile and assemble the given data
    if contractCreation {
        script, err := ethutil.Compile(string(data), false)
        if err != nil {
            return nil, err
        }

        tx = ethchain.NewContractCreationTx(value.BigInt(), gas.BigInt(), price.BigInt(), script)
    } else {
        data := ethutil.StringToByteFunc(string(data), func(s string) (ret []byte) {
            slice := strings.Split(s, "\n")
            for _, dataItem := range slice {
                d := ethutil.FormatData(dataItem)
                ret = append(ret, d...)
            }
            return
        })

        tx = ethchain.NewTransactionMessage(hash, value.BigInt(), gas.BigInt(), price.BigInt(), data)
    }

    acc := self.stateManager.TransState().GetOrNewStateObject(key.Address())
    tx.Nonce = acc.Nonce
    acc.Nonce += 1
    self.stateManager.TransState().UpdateStateObject(acc)

    tx.Sign(key.PrivateKey)
    self.obj.TxPool().QueueTransaction(tx)

    if contractCreation {
        logger.Infof("Contract addr %x", tx.CreationAddress())

        return tx.CreationAddress(), nil
    }

    return tx.Hash(), nil
}

func (self *Pipe) PushTx(tx *ethchain.Transaction) ([]byte, error) {
    self.obj.TxPool().QueueTransaction(tx)
    if tx.Recipient == nil {
        logger.Infof("Contract addr %x", tx.CreationAddress())
        return tx.CreationAddress(), nil
    }
    return tx.Hash(), nil
}

func (self *Pipe) CompileMutan(code string) ([]byte, error) {
    data, err := ethutil.Compile(code, false)
    if err != nil {
        return nil, err
    }

    return data, nil
}