aboutsummaryrefslogtreecommitdiffstats
path: root/ethereal/ui/ext_app.go
blob: c02ffb7b2e97200c60dca378dee18fcc8da2da37 (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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
package ethui

import (
    "fmt"
    "github.com/ethereum/eth-go"
    "github.com/ethereum/eth-go/ethchain"
    "github.com/ethereum/eth-go/ethutil"
    "github.com/ethereum/go-ethereum/utils"
    "github.com/go-qml/qml"
    "math/big"
    "strings"
)

type AppContainer interface {
    Create() error
    Destroy()

    Window() *qml.Window
    Engine() *qml.Engine

    NewBlock(*ethchain.Block)
    ObjectChanged(*ethchain.StateObject)
    StorageChanged(*ethchain.StateObject, []byte, *big.Int)
}

type ExtApplication struct {
    *QEthereum

    blockChan  chan ethutil.React
    changeChan chan ethutil.React
    quitChan   chan bool

    container        AppContainer
    lib              *UiLib
    registeredEvents []string
}

func NewExtApplication(container AppContainer, lib *UiLib) *ExtApplication {
    app := &ExtApplication{
        NewQEthereum(lib.eth),
        make(chan ethutil.React, 1),
        make(chan ethutil.React, 1),
        make(chan bool),
        container,
        lib,
        nil,
    }

    return app
}

func (app *ExtApplication) run() {
    // Set the "eth" api on to the containers context
    context := app.container.Engine().Context()
    context.SetVar("eth", app)
    context.SetVar("ui", app.lib)

    err := app.container.Create()
    if err != nil {
        fmt.Println(err)

        return
    }

    // Call the main loop
    go app.mainLoop()

    // Subscribe to events
    reactor := app.lib.eth.Reactor()
    reactor.Subscribe("newBlock", app.blockChan)

    win := app.container.Window()
    win.Show()
    win.Wait()

    app.stop()
}

func (app *ExtApplication) stop() {
    // Clean up
    reactor := app.lib.eth.Reactor()
    reactor.Unsubscribe("newBlock", app.blockChan)
    for _, event := range app.registeredEvents {
        reactor.Unsubscribe(event, app.changeChan)
    }

    // Kill the main loop
    app.quitChan <- true

    close(app.blockChan)
    close(app.quitChan)
    close(app.changeChan)

    app.container.Destroy()
}

func (app *ExtApplication) mainLoop() {
out:
    for {
        select {
        case <-app.quitChan:
            break out
        case block := <-app.blockChan:
            if block, ok := block.Resource.(*ethchain.Block); ok {
                app.container.NewBlock(block)
            }
        case object := <-app.changeChan:
            if stateObject, ok := object.Resource.(*ethchain.StateObject); ok {
                app.container.ObjectChanged(stateObject)
            } else if _, ok := object.Resource.(*big.Int); ok {
                //
            }
        }
    }

}

func (app *ExtApplication) Watch(addr, storageAddr string) {
    var event string
    if len(storageAddr) == 0 {
        event = "object:" + string(ethutil.FromHex(addr))
        app.lib.eth.Reactor().Subscribe(event, app.changeChan)
    } else {
        event = "storage:" + string(ethutil.FromHex(addr)) + ":" + string(ethutil.FromHex(storageAddr))
        app.lib.eth.Reactor().Subscribe(event, app.changeChan)
    }

    app.registeredEvents = append(app.registeredEvents, event)
}

type QEthereum struct {
    stateManager *ethchain.StateManager
    blockChain   *ethchain.BlockChain
    txPool       *ethchain.TxPool
}

func NewQEthereum(eth *eth.Ethereum) *QEthereum {
    return &QEthereum{
        eth.StateManager(),
        eth.BlockChain(),
        eth.TxPool(),
    }
}

func (lib *QEthereum) GetBlock(hexHash string) *QBlock {
    hash := ethutil.FromHex(hexHash)

    block := lib.blockChain.GetBlock(hash)

    return &QBlock{Number: int(block.BlockInfo().Number), Hash: ethutil.Hex(block.Hash())}
}

func (lib *QEthereum) GetKey() string {
    return ethutil.Hex(ethutil.Config.Db.GetKeys()[0].Address())
}

func (lib *QEthereum) GetStateObject(address string) *QStateObject {
    stateObject := lib.stateManager.ProcState().GetContract(ethutil.FromHex(address))
    if stateObject != nil {
        return NewQStateObject(stateObject)
    }

    // See GetStorage for explanation on "nil"
    return NewQStateObject(nil)
}

func (lib *QEthereum) Watch(addr, storageAddr string) {
    //  lib.stateManager.Watch(ethutil.FromHex(addr), ethutil.FromHex(storageAddr))
}

func (lib *QEthereum) CreateTx(key, recipient, valueStr, gasStr, gasPriceStr, dataStr string) (string, error) {
    return lib.Transact(key, recipient, valueStr, gasStr, gasPriceStr, dataStr)
}

func (lib *QEthereum) Transact(key, recipient, valueStr, gasStr, gasPriceStr, dataStr string) (string, error) {
    var hash []byte
    var contractCreation bool
    if len(recipient) == 0 {
        contractCreation = true
    } else {
        hash = ethutil.FromHex(recipient)
    }

    keyPair := ethutil.Config.Db.GetKeys()[0]
    value := ethutil.Big(valueStr)
    gas := ethutil.Big(gasStr)
    gasPrice := ethutil.Big(gasPriceStr)
    var tx *ethchain.Transaction
    // Compile and assemble the given data
    if contractCreation {
        // Compile script
        mainScript, initScript, err := utils.CompileScript(dataStr)
        if err != nil {
            return "", err
        }

        tx = ethchain.NewContractCreationTx(value, gas, gasPrice, mainScript, initScript)
    } else {
        lines := strings.Split(dataStr, "\n")
        var data []byte
        for _, line := range lines {
            data = append(data, ethutil.BigToBytes(ethutil.Big(line), 256)...)
        }

        tx = ethchain.NewTransactionMessage(hash, value, gas, gasPrice, data)
    }
    acc := lib.stateManager.GetAddrState(keyPair.Address())
    tx.Nonce = acc.Nonce
    tx.Sign(keyPair.PrivateKey)
    lib.txPool.QueueTransaction(tx)

    if contractCreation {
        ethutil.Config.Log.Infof("Contract addr %x", tx.Hash()[12:])
    } else {
        ethutil.Config.Log.Infof("Tx hash %x", tx.Hash())
    }

    return ethutil.Hex(tx.Hash()), nil
}